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
209 M: Antti Palosaari <crope@iki.fi>
210 L: linux-media@vger.kernel.org
211 W: https://linuxtv.org
212 W: http://palosaari.fi/linux/
213 Q: http://patchwork.linuxtv.org/project/linux-media/list/
214 T: git git://linuxtv.org/anttip/media_tree.git
216 F: drivers/media/dvb-frontends/a8293*
218 AACRAID SCSI RAID DRIVER
219 M: Adaptec OEM Raid Solutions <aacraid@microsemi.com>
220 L: linux-scsi@vger.kernel.org
221 W: http://www.adaptec.com/
223 F: Documentation/scsi/aacraid.txt
224 F: drivers/scsi/aacraid/
227 L: linux-api@vger.kernel.org
228 F: include/linux/syscalls.h
231 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
232 M: Hans de Goede <hdegoede@redhat.com>
233 L: linux-hwmon@vger.kernel.org
235 F: drivers/hwmon/abituguru.c
237 ABIT UGURU 3 HARDWARE MONITOR DRIVER
238 M: Alistair John Strachan <alistair@devzero.co.uk>
239 L: linux-hwmon@vger.kernel.org
241 F: drivers/hwmon/abituguru3.c
243 ACCES 104-DIO-48E GPIO DRIVER
244 M: William Breathitt Gray <vilhelm.gray@gmail.com>
245 L: linux-gpio@vger.kernel.org
247 F: drivers/gpio/gpio-104-dio-48e.c
249 ACCES 104-IDI-48 GPIO DRIVER
250 M: "William Breathitt Gray" <vilhelm.gray@gmail.com>
251 L: linux-gpio@vger.kernel.org
253 F: drivers/gpio/gpio-104-idi-48.c
255 ACCES 104-IDIO-16 GPIO DRIVER
256 M: "William Breathitt Gray" <vilhelm.gray@gmail.com>
257 L: linux-gpio@vger.kernel.org
259 F: drivers/gpio/gpio-104-idio-16.c
261 ACCES 104-QUAD-8 IIO DRIVER
262 M: William Breathitt Gray <vilhelm.gray@gmail.com>
263 L: linux-iio@vger.kernel.org
265 F: drivers/iio/counter/104-quad-8.c
267 ACCES PCI-IDIO-16 GPIO DRIVER
268 M: William Breathitt Gray <vilhelm.gray@gmail.com>
269 L: linux-gpio@vger.kernel.org
271 F: drivers/gpio/gpio-pci-idio-16.c
274 M: Jes Sorensen <jes@trained-monkey.org>
275 L: linux-acenic@sunsite.dk
277 F: drivers/net/ethernet/alteon/acenic*
279 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
280 M: Peter Feuerer <peter@piie.net>
281 L: platform-driver-x86@vger.kernel.org
282 W: http://piie.net/?section=acerhdf
284 F: drivers/platform/x86/acerhdf.c
286 ACER WMI LAPTOP EXTRAS
287 M: "Lee, Chun-Yi" <jlee@suse.com>
288 L: platform-driver-x86@vger.kernel.org
290 F: drivers/platform/x86/acer-wmi.c
293 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
294 M: Len Brown <lenb@kernel.org>
295 L: linux-acpi@vger.kernel.org
296 W: https://01.org/linux-acpi
297 Q: https://patchwork.kernel.org/project/linux-acpi/list/
298 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
299 B: https://bugzilla.kernel.org
302 F: drivers/pnp/pnpacpi/
303 F: include/linux/acpi.h
304 F: include/linux/fwnode.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*
315 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
316 M: Len Brown <lenb@kernel.org>
317 L: linux-acpi@vger.kernel.org
318 R: Tony Luck <tony.luck@intel.com>
319 R: Borislav Petkov <bp@alien8.de>
320 F: drivers/acpi/apei/
322 ACPI COMPONENT ARCHITECTURE (ACPICA)
323 M: Robert Moore <robert.moore@intel.com>
324 M: Lv Zheng <lv.zheng@intel.com>
325 M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
326 L: linux-acpi@vger.kernel.org
328 W: https://acpica.org/
329 W: https://github.com/acpica/acpica/
330 Q: https://patchwork.kernel.org/project/linux-acpi/list/
331 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
332 B: https://bugzilla.kernel.org
333 B: https://bugs.acpica.org
335 F: drivers/acpi/acpica/
340 M: Zhang Rui <rui.zhang@intel.com>
341 L: linux-acpi@vger.kernel.org
342 W: https://01.org/linux-acpi
343 B: https://bugzilla.kernel.org
345 F: drivers/acpi/fan.c
347 ACPI FOR ARM64 (ACPI/arm64)
348 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
349 M: Hanjun Guo <hanjun.guo@linaro.org>
350 M: Sudeep Holla <sudeep.holla@arm.com>
351 L: linux-acpi@vger.kernel.org
353 F: drivers/acpi/arm64
356 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
357 M: Len Brown <lenb@kernel.org>
358 R: Andy Shevchenko <andy@infradead.org>
359 R: Mika Westerberg <mika.westerberg@linux.intel.com>
360 L: linux-acpi@vger.kernel.org
361 Q: https://patchwork.kernel.org/project/linux-acpi/list/
362 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
363 B: https://bugzilla.kernel.org
365 F: drivers/acpi/pmic/
368 M: Zhang Rui <rui.zhang@intel.com>
369 L: linux-acpi@vger.kernel.org
370 W: https://01.org/linux-acpi
371 B: https://bugzilla.kernel.org
373 F: drivers/acpi/*thermal*
376 M: Zhang Rui <rui.zhang@intel.com>
377 L: linux-acpi@vger.kernel.org
378 W: https://01.org/linux-acpi
379 B: https://bugzilla.kernel.org
381 F: drivers/acpi/acpi_video.c
384 L: platform-driver-x86@vger.kernel.org
386 F: drivers/platform/x86/wmi.c
388 AD1889 ALSA SOUND DRIVER
389 M: Thibaut Varene <T-Bone@parisc-linux.org>
390 W: http://wiki.parisc-linux.org/AD1889
391 L: linux-parisc@vger.kernel.org
393 F: sound/pci/ad1889.*
395 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
396 M: Michael Hennerich <michael.hennerich@analog.com>
397 W: http://wiki.analog.com/AD5254
398 W: http://ez.analog.com/community/linux-device-drivers
400 F: drivers/misc/ad525x_dpot.c
402 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
403 M: Michael Hennerich <michael.hennerich@analog.com>
404 W: http://wiki.analog.com/AD5398
405 W: http://ez.analog.com/community/linux-device-drivers
407 F: drivers/regulator/ad5398.c
409 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
410 M: Michael Hennerich <michael.hennerich@analog.com>
411 W: http://wiki.analog.com/AD7142
412 W: http://ez.analog.com/community/linux-device-drivers
414 F: drivers/input/misc/ad714x.c
416 AD7877 TOUCHSCREEN DRIVER
417 M: Michael Hennerich <michael.hennerich@analog.com>
418 W: http://wiki.analog.com/AD7877
419 W: http://ez.analog.com/community/linux-device-drivers
421 F: drivers/input/touchscreen/ad7877.c
423 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
424 M: Michael Hennerich <michael.hennerich@analog.com>
425 W: http://wiki.analog.com/AD7879
426 W: http://ez.analog.com/community/linux-device-drivers
428 F: drivers/input/touchscreen/ad7879.c
430 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
431 M: Jiri Kosina <jikos@kernel.org>
434 ADF7242 IEEE 802.15.4 RADIO DRIVER
435 M: Michael Hennerich <michael.hennerich@analog.com>
436 W: https://wiki.analog.com/ADF7242
437 W: http://ez.analog.com/community/linux-device-drivers
438 L: linux-wpan@vger.kernel.org
440 F: drivers/net/ieee802154/adf7242.c
441 F: Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
443 ADM1025 HARDWARE MONITOR DRIVER
444 M: Jean Delvare <jdelvare@suse.com>
445 L: linux-hwmon@vger.kernel.org
447 F: Documentation/hwmon/adm1025
448 F: drivers/hwmon/adm1025.c
450 ADM1029 HARDWARE MONITOR DRIVER
451 M: Corentin Labbe <clabbe.montjoie@gmail.com>
452 L: linux-hwmon@vger.kernel.org
454 F: drivers/hwmon/adm1029.c
456 ADM8211 WIRELESS DRIVER
457 L: linux-wireless@vger.kernel.org
458 W: http://wireless.kernel.org/
460 F: drivers/net/wireless/admtek/adm8211.*
462 ADP1653 FLASH CONTROLLER DRIVER
463 M: Sakari Ailus <sakari.ailus@iki.fi>
464 L: linux-media@vger.kernel.org
466 F: drivers/media/i2c/adp1653.c
467 F: include/media/i2c/adp1653.h
469 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
470 M: Michael Hennerich <michael.hennerich@analog.com>
471 W: http://wiki.analog.com/ADP5520
472 W: http://ez.analog.com/community/linux-device-drivers
474 F: drivers/mfd/adp5520.c
475 F: drivers/video/backlight/adp5520_bl.c
476 F: drivers/leds/leds-adp5520.c
477 F: drivers/gpio/gpio-adp5520.c
478 F: drivers/input/keyboard/adp5520-keys.c
480 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
481 M: Michael Hennerich <michael.hennerich@analog.com>
482 W: http://wiki.analog.com/ADP5588
483 W: http://ez.analog.com/community/linux-device-drivers
485 F: drivers/input/keyboard/adp5588-keys.c
486 F: drivers/gpio/gpio-adp5588.c
488 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
489 M: Michael Hennerich <michael.hennerich@analog.com>
490 W: http://wiki.analog.com/ADP8860
491 W: http://ez.analog.com/community/linux-device-drivers
493 F: drivers/video/backlight/adp8860_bl.c
495 ADS1015 HARDWARE MONITOR DRIVER
496 M: Dirk Eibach <eibach@gdsys.de>
497 L: linux-hwmon@vger.kernel.org
499 F: Documentation/hwmon/ads1015
500 F: drivers/hwmon/ads1015.c
501 F: include/linux/platform_data/ads1015.h
504 M: Colin Leroy <colin@colino.net>
506 F: drivers/macintosh/therm_adt746x.c
508 ADT7475 HARDWARE MONITOR DRIVER
509 M: Jean Delvare <jdelvare@suse.com>
510 L: linux-hwmon@vger.kernel.org
512 F: Documentation/hwmon/adt7475
513 F: drivers/hwmon/adt7475.c
516 M: Matthew Wilcox <matthew@wil.cx>
517 M: Hannes Reinecke <hare@suse.com>
518 L: linux-scsi@vger.kernel.org
520 F: Documentation/scsi/advansys.txt
521 F: drivers/scsi/advansys.c
523 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
524 M: Michael Hennerich <michael.hennerich@analog.com>
525 W: http://wiki.analog.com/ADXL345
526 W: http://ez.analog.com/community/linux-device-drivers
528 F: drivers/input/misc/adxl34x.c
531 M: Antti Palosaari <crope@iki.fi>
532 L: linux-media@vger.kernel.org
533 W: https://linuxtv.org
534 W: http://palosaari.fi/linux/
535 Q: http://patchwork.linuxtv.org/project/linux-media/list/
536 T: git git://linuxtv.org/anttip/media_tree.git
538 F: drivers/media/dvb-frontends/af9013*
541 M: Antti Palosaari <crope@iki.fi>
542 L: linux-media@vger.kernel.org
543 W: https://linuxtv.org
544 W: http://palosaari.fi/linux/
545 Q: http://patchwork.linuxtv.org/project/linux-media/list/
546 T: git git://linuxtv.org/anttip/media_tree.git
548 F: drivers/media/dvb-frontends/af9033*
551 L: linux-fsdevel@vger.kernel.org
553 F: Documentation/filesystems/affs.txt
556 AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
557 M: David Howells <dhowells@redhat.com>
558 L: linux-afs@lists.infradead.org
561 F: include/net/af_rxrpc.h
562 F: net/rxrpc/af_rxrpc.c
563 W: https://www.infradead.org/~dhowells/kafs/
566 M: David Airlie <airlied@linux.ie>
567 T: git git://people.freedesktop.org/~airlied/linux (part of drm maint)
570 F: include/linux/agp*
571 F: include/uapi/linux/agp*
574 M: "Juergen E. Fischer" <fischer@norbit.de>
575 L: linux-scsi@vger.kernel.org
577 F: drivers/scsi/aha152x*
578 F: drivers/scsi/pcmcia/aha152x*
580 AIC7XXX / AIC79XX SCSI DRIVER
581 M: Hannes Reinecke <hare@suse.com>
582 L: linux-scsi@vger.kernel.org
584 F: drivers/scsi/aic7xxx/
586 AIMSLAB FM RADIO RECEIVER DRIVER
587 M: Hans Verkuil <hverkuil@xs4all.nl>
588 L: linux-media@vger.kernel.org
589 T: git git://linuxtv.org/media_tree.git
590 W: https://linuxtv.org
592 F: drivers/media/radio/radio-aimslab*
595 M: Benjamin LaHaise <bcrl@kvack.org>
596 L: linux-aio@kvack.org
599 F: include/linux/*aio*.h
602 M: Antti Palosaari <crope@iki.fi>
603 L: linux-media@vger.kernel.org
604 W: https://linuxtv.org
605 W: http://palosaari.fi/linux/
606 Q: http://patchwork.linuxtv.org/project/linux-media/list/
607 T: git git://linuxtv.org/anttip/media_tree.git
609 F: drivers/media/usb/airspy/
611 ALACRITECH GIGABIT ETHERNET DRIVER
612 M: Lino Sanfilippo <LinoSanfilippo@gmx.de>
614 F: drivers/net/ethernet/alacritech/*
616 ALCATEL SPEEDTOUCH USB DRIVER
617 M: Duncan Sands <duncan.sands@free.fr>
618 L: linux-usb@vger.kernel.org
619 W: http://www.linux-usb.org/SpeedTouch/
621 F: drivers/usb/atm/speedtch.c
622 F: drivers/usb/atm/usbatm.c
624 ALCHEMY AU1XX0 MMC DRIVER
625 M: Manuel Lauss <manuel.lauss@gmail.com>
627 F: drivers/mmc/host/au1xmmc.c
630 M: Rudolf Marek <r.marek@assembler.cz>
631 L: linux-i2c@vger.kernel.org
633 F: Documentation/i2c/busses/i2c-ali1563
634 F: drivers/i2c/busses/i2c-ali1563.c
636 ALLWINNER SECURITY SYSTEM
637 M: Corentin Labbe <clabbe.montjoie@gmail.com>
638 L: linux-crypto@vger.kernel.org
640 F: drivers/crypto/sunxi-ss/
643 M: Richard Henderson <rth@twiddle.net>
644 M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
645 M: Matt Turner <mattst88@gmail.com>
647 L: linux-alpha@vger.kernel.org
650 ALPS PS/2 TOUCHPAD DRIVER
651 R: Pali Rohár <pali.rohar@gmail.com>
652 F: drivers/input/mouse/alps.*
654 ALTERA I2C CONTROLLER DRIVER
655 M: Thor Thayer <thor.thayer@linux.intel.com>
657 F: drivers/i2c/busses/i2c-altera.c
659 ALTERA MAILBOX DRIVER
660 M: Ley Foon Tan <lftan@altera.com>
661 L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
663 F: drivers/mailbox/mailbox-altera.c
666 M: Tien Hock Loh <thloh@altera.com>
667 L: linux-gpio@vger.kernel.org
669 F: drivers/gpio/gpio-altera.c
671 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
672 M: Thor Thayer <thor.thayer@linux.intel.com>
674 F: drivers/gpio/gpio-altera-a10sr.c
675 F: drivers/mfd/altera-a10sr.c
676 F: drivers/reset/reset-a10sr.c
677 F: include/linux/mfd/altera-a10sr.h
678 F: include/dt-bindings/reset/altr,rst-mgr-a10sr.h
680 ALTERA TRIPLE SPEED ETHERNET DRIVER
681 M: Vince Bridgers <vbridger@opensource.altera.com>
682 L: netdev@vger.kernel.org
683 L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
685 F: drivers/net/ethernet/altera/
687 ALTERA UART/JTAG UART SERIAL DRIVERS
688 M: Tobias Klauser <tklauser@distanz.ch>
689 L: linux-serial@vger.kernel.org
690 L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
692 F: drivers/tty/serial/altera_uart.c
693 F: drivers/tty/serial/altera_jtaguart.c
694 F: include/linux/altera_uart.h
695 F: include/linux/altera_jtaguart.h
697 AMAZON ETHERNET DRIVERS
698 M: Netanel Belgazal <netanel@annapurnalabs.com>
699 R: Saeed Bishara <saeed@annapurnalabs.com>
700 R: Zorik Machulsky <zorik@annapurnalabs.com>
701 L: netdev@vger.kernel.org
703 F: Documentation/networking/ena.txt
704 F: drivers/net/ethernet/amazon/
706 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
707 M: Tom Lendacky <thomas.lendacky@amd.com>
708 M: Gary Hook <gary.hook@amd.com>
709 L: linux-crypto@vger.kernel.org
711 F: drivers/crypto/ccp/
712 F: include/linux/ccp.h
714 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
715 M: Huang Rui <ray.huang@amd.com>
716 L: linux-hwmon@vger.kernel.org
718 F: Documentation/hwmon/fam15h_power
719 F: drivers/hwmon/fam15h_power.c
721 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
722 L: linux-geode@lists.infradead.org (moderated for non-subscribers)
724 F: drivers/usb/gadget/udc/amd5536udc.*
726 AMD GEODE PROCESSOR/CHIPSET SUPPORT
727 P: Andres Salomon <dilinger@queued.net>
728 L: linux-geode@lists.infradead.org (moderated for non-subscribers)
729 W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
731 F: drivers/char/hw_random/geode-rng.c
732 F: drivers/crypto/geode*
733 F: drivers/video/fbdev/geode/
734 F: arch/x86/include/asm/geode.h
737 M: Joerg Roedel <joro@8bytes.org>
738 L: iommu@lists.linux-foundation.org
739 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
741 F: drivers/iommu/amd_iommu*.[ch]
742 F: include/linux/amd-iommu.h
745 M: Oded Gabbay <oded.gabbay@gmail.com>
746 L: dri-devel@lists.freedesktop.org
747 T: git git://people.freedesktop.org/~gabbayo/linux.git
749 F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
750 F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
751 F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
752 F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
753 F: drivers/gpu/drm/amd/amdkfd/
754 F: drivers/gpu/drm/amd/include/cik_structs.h
755 F: drivers/gpu/drm/amd/include/kgd_kfd_interface.h
756 F: drivers/gpu/drm/amd/include/vi_structs.h
757 F: drivers/gpu/drm/radeon/radeon_kfd.c
758 F: drivers/gpu/drm/radeon/radeon_kfd.h
759 F: include/uapi/linux/kfd_ioctl.h
761 AMD SEATTLE DEVICE TREE SUPPORT
762 M: Brijesh Singh <brijeshkumar.singh@amd.com>
763 M: Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
764 M: Tom Lendacky <thomas.lendacky@amd.com>
766 F: arch/arm64/boot/dts/amd/
769 M: Tom Lendacky <thomas.lendacky@amd.com>
770 L: netdev@vger.kernel.org
772 F: drivers/net/ethernet/amd/xgbe/
773 F: arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
775 AMS (Apple Motion Sensor) DRIVER
776 M: Michael Hanselmann <linux-kernel@hansmi.ch>
778 F: drivers/macintosh/ams/
780 ANALOG DEVICES INC AD9389B DRIVER
781 M: Hans Verkuil <hans.verkuil@cisco.com>
782 L: linux-media@vger.kernel.org
784 F: drivers/media/i2c/ad9389b*
786 ANALOG DEVICES INC ADV7180 DRIVER
787 M: Lars-Peter Clausen <lars@metafoo.de>
788 L: linux-media@vger.kernel.org
789 W: http://ez.analog.com/community/linux-device-drivers
791 F: drivers/media/i2c/adv7180.c
793 ANALOG DEVICES INC ADV748X DRIVER
794 M: Kieran Bingham <kieran.bingham@ideasonboard.com>
795 L: linux-media@vger.kernel.org
797 F: drivers/media/i2c/adv748x/*
799 ANALOG DEVICES INC ADV7511 DRIVER
800 M: Hans Verkuil <hans.verkuil@cisco.com>
801 L: linux-media@vger.kernel.org
803 F: drivers/media/i2c/adv7511*
805 ANALOG DEVICES INC ADV7604 DRIVER
806 M: Hans Verkuil <hans.verkuil@cisco.com>
807 L: linux-media@vger.kernel.org
809 F: drivers/media/i2c/adv7604*
811 ANALOG DEVICES INC ADV7842 DRIVER
812 M: Hans Verkuil <hans.verkuil@cisco.com>
813 L: linux-media@vger.kernel.org
815 F: drivers/media/i2c/adv7842*
817 ANALOG DEVICES INC ASOC CODEC DRIVERS
818 M: Lars-Peter Clausen <lars@metafoo.de>
819 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
820 W: http://wiki.analog.com/
821 W: http://ez.analog.com/community/linux-device-drivers
823 F: sound/soc/codecs/adau*
824 F: sound/soc/codecs/adav*
825 F: sound/soc/codecs/ad1*
826 F: sound/soc/codecs/ad7*
827 F: sound/soc/codecs/ssm*
828 F: sound/soc/codecs/sigmadsp.*
830 ANALOG DEVICES INC ASOC DRIVERS
831 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
832 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
833 W: http://blackfin.uclinux.org/
835 F: sound/soc/blackfin/*
837 ANALOG DEVICES INC DMA DRIVERS
838 M: Lars-Peter Clausen <lars@metafoo.de>
839 W: http://ez.analog.com/community/linux-device-drivers
841 F: drivers/dma/dma-axi-dmac.c
843 ANALOG DEVICES INC IIO DRIVERS
844 M: Lars-Peter Clausen <lars@metafoo.de>
845 M: Michael Hennerich <Michael.Hennerich@analog.com>
846 W: http://wiki.analog.com/
847 W: http://ez.analog.com/community/linux-device-drivers
850 F: drivers/iio/adc/ltc2497*
851 X: drivers/iio/*/adjd*
852 F: drivers/staging/iio/*/ad*
853 F: drivers/staging/iio/trigger/iio-trig-bfin-timer.c
855 ANDROID CONFIG FRAGMENTS
856 M: Rob Herring <robh@kernel.org>
858 F: kernel/configs/android*
861 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
862 M: Arve Hjønnevåg <arve@android.com>
863 M: Riley Andrews <riandrews@android.com>
864 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
865 L: devel@driverdev.osuosl.org
868 F: drivers/staging/android/
870 ANDROID GOLDFISH RTC DRIVER
871 M: Miodrag Dinic <miodrag.dinic@mips.com>
873 F: Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
874 F: drivers/rtc/rtc-goldfish.c
877 M: Laura Abbott <labbott@redhat.com>
878 M: Sumit Semwal <sumit.semwal@linaro.org>
879 L: devel@driverdev.osuosl.org
881 F: drivers/staging/android/ion
882 F: drivers/staging/android/uapi/ion.h
883 F: drivers/staging/android/uapi/ion_test.h
885 AOA (Apple Onboard Audio) ALSA DRIVER
886 M: Johannes Berg <johannes@sipsolutions.net>
887 L: linuxppc-dev@lists.ozlabs.org
888 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
892 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
893 M: William Breathitt Gray <vilhelm.gray@gmail.com>
894 L: linux-iio@vger.kernel.org
896 F: drivers/iio/adc/stx104.c
899 M: Jiri Kosina <jikos@kernel.org>
901 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
902 F: arch/x86/kernel/apm_32.c
903 F: include/linux/apm_bios.h
904 F: include/uapi/linux/apm_bios.h
905 F: drivers/char/apm-emulation.c
907 APPARMOR SECURITY MODULE
908 M: John Johansen <john.johansen@canonical.com>
909 L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
910 W: apparmor.wiki.kernel.org
911 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
913 F: security/apparmor/
914 F: Documentation/admin-guide/LSM/apparmor.rst
916 APPLE BCM5974 MULTITOUCH DRIVER
917 M: Henrik Rydberg <rydberg@bitmath.org>
918 L: linux-input@vger.kernel.org
920 F: drivers/input/mouse/bcm5974.c
923 M: Henrik Rydberg <rydberg@bitmath.org>
924 L: linux-hwmon@vger.kernel.org
926 F: drivers/hwmon/applesmc.c
928 APPLETALK NETWORK LAYER
929 L: netdev@vger.kernel.org
931 F: drivers/net/appletalk/
934 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
935 M: Duc Dang <dhdang@apm.com>
937 F: arch/arm64/boot/dts/apm/
939 APPLIED MICRO (APM) X-GENE SOC EDAC
940 M: Loc Ho <lho@apm.com>
942 F: drivers/edac/xgene_edac.c
943 F: Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
945 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
946 M: Iyappan Subramanian <isubramanian@apm.com>
947 M: Keyur Chudgar <kchudgar@apm.com>
949 F: drivers/net/ethernet/apm/xgene-v2/
951 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
952 M: Iyappan Subramanian <isubramanian@apm.com>
953 M: Keyur Chudgar <kchudgar@apm.com>
954 M: Quan Nguyen <qnguyen@apm.com>
956 F: drivers/net/ethernet/apm/xgene/
957 F: drivers/net/phy/mdio-xgene.c
958 F: Documentation/devicetree/bindings/net/apm-xgene-enet.txt
959 F: Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
961 APPLIED MICRO (APM) X-GENE SOC PMU
962 M: Tai Nguyen <ttnguyen@apm.com>
964 F: drivers/perf/xgene_pmu.c
965 F: Documentation/perf/xgene-pmu.txt
966 F: Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
968 APTINA CAMERA SENSOR PLL
969 M: Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
970 L: linux-media@vger.kernel.org
972 F: drivers/media/i2c/aptina-pll.*
974 ARC FRAMEBUFFER DRIVER
975 M: Jaya Kumar <jayalk@intworks.biz>
977 F: drivers/video/fbdev/arcfb.c
978 F: drivers/video/fbdev/core/fb_defio.c
981 M: Alexey Brodkin <abrodkin@synopsys.com>
983 F: drivers/gpu/drm/arc/
984 F: Documentation/devicetree/bindings/display/snps,arcpgu.txt
987 M: Michael Grzeschik <m.grzeschik@pengutronix.de>
988 L: netdev@vger.kernel.org
990 F: drivers/net/arcnet/
991 F: include/uapi/linux/if_arcnet.h
993 ARM ARCHITECTED TIMER DRIVER
994 M: Mark Rutland <mark.rutland@arm.com>
995 M: Marc Zyngier <marc.zyngier@arm.com>
996 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
998 F: arch/arm/include/asm/arch_timer.h
999 F: arch/arm64/include/asm/arch_timer.h
1000 F: drivers/clocksource/arm_arch_timer.c
1002 ARM HDLCD DRM DRIVER
1003 M: Liviu Dudau <liviu.dudau@arm.com>
1005 F: drivers/gpu/drm/arm/hdlcd_*
1006 F: Documentation/devicetree/bindings/display/arm,hdlcd.txt
1008 ARM MALI-DP DRM DRIVER
1009 M: Liviu Dudau <liviu.dudau@arm.com>
1010 M: Brian Starkey <brian.starkey@arm.com>
1011 M: Mali DP Maintainers <malidp@foss.arm.com>
1013 F: drivers/gpu/drm/arm/
1014 F: Documentation/devicetree/bindings/display/arm,malidp.txt
1016 ARM MFM AND FLOPPY DRIVERS
1017 M: Ian Molton <spyro@f2s.com>
1019 F: arch/arm/lib/floppydma.S
1020 F: arch/arm/include/asm/floppy.h
1022 ARM PMU PROFILING AND DEBUGGING
1023 M: Will Deacon <will.deacon@arm.com>
1024 M: Mark Rutland <mark.rutland@arm.com>
1026 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1027 F: arch/arm*/kernel/perf_*
1028 F: arch/arm/oprofile/common.c
1029 F: arch/arm*/kernel/hw_breakpoint.c
1030 F: arch/arm*/include/asm/hw_breakpoint.h
1031 F: arch/arm*/include/asm/perf_event.h
1033 F: include/linux/perf/arm_pmu.h
1034 F: Documentation/devicetree/bindings/arm/pmu.txt
1035 F: Documentation/devicetree/bindings/perf/
1038 M: Russell King <linux@armlinux.org.uk>
1039 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1040 W: http://www.armlinux.org.uk/
1042 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git
1045 ARM PRIMECELL AACI PL041 DRIVER
1046 M: Russell King <linux@armlinux.org.uk>
1050 ARM PRIMECELL BUS SUPPORT
1051 M: Russell King <linux@armlinux.org.uk>
1054 F: include/linux/amba/bus.h
1056 ARM PRIMECELL CLCD PL110 DRIVER
1057 M: Russell King <linux@armlinux.org.uk>
1059 F: drivers/video/fbdev/amba-clcd.*
1061 ARM PRIMECELL KMI PL050 DRIVER
1062 M: Russell King <linux@armlinux.org.uk>
1064 F: drivers/input/serio/ambakmi.*
1065 F: include/linux/amba/kmi.h
1067 ARM PRIMECELL MMCI PL180/1 DRIVER
1068 M: Russell King <linux@armlinux.org.uk>
1070 F: drivers/mmc/host/mmci.*
1071 F: include/linux/amba/mmci.h
1073 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1074 M: Russell King <linux@armlinux.org.uk>
1076 F: drivers/tty/serial/amba-pl01*.c
1077 F: include/linux/amba/serial.h
1080 M: Will Deacon <will.deacon@arm.com>
1081 R: Robin Murphy <robin.murphy@arm.com>
1082 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1084 F: drivers/iommu/arm-smmu.c
1085 F: drivers/iommu/arm-smmu-v3.c
1086 F: drivers/iommu/io-pgtable-arm.c
1087 F: drivers/iommu/io-pgtable-arm-v7s.c
1089 ARM SUB-ARCHITECTURES
1090 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1094 T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
1096 ARM/ACTIONS SEMI ARCHITECTURE
1097 M: Andreas Färber <afaerber@suse.de>
1098 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1101 F: arch/arm/mach-actions/
1102 F: arch/arm/boot/dts/owl-*
1103 F: arch/arm64/boot/dts/actions/
1104 F: drivers/clocksource/owl-*
1105 F: drivers/soc/actions/
1106 F: include/dt-bindings/power/owl-*
1107 F: include/linux/soc/actions/
1108 F: Documentation/devicetree/bindings/arm/actions.txt
1109 F: Documentation/devicetree/bindings/power/actions,owl-sps.txt
1110 F: Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1112 ARM/ADS SPHERE MACHINE SUPPORT
1113 M: Lennert Buytenhek <kernel@wantstofly.org>
1114 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1117 ARM/AFEB9260 MACHINE SUPPORT
1118 M: Sergey Lapin <slapin@ossfans.org>
1119 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1122 ARM/AJECO 1ARM MACHINE SUPPORT
1123 M: Lennert Buytenhek <kernel@wantstofly.org>
1124 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1127 ARM/Allwinner SoC Clock Support
1128 M: Emilio López <emilio@elopez.com.ar>
1130 F: drivers/clk/sunxi/
1132 ARM/Allwinner sunXi SoC support
1133 M: Maxime Ripard <maxime.ripard@free-electrons.com>
1134 M: Chen-Yu Tsai <wens@csie.org>
1135 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1139 F: arch/arm/mach-sunxi/
1140 F: arch/arm64/boot/dts/allwinner/
1141 F: drivers/clk/sunxi-ng/
1142 F: drivers/pinctrl/sunxi/
1143 F: drivers/soc/sunxi/
1144 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1146 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1147 M: Neil Armstrong <narmstrong@baylibre.com>
1148 M: Jerome Brunet <jbrunet@baylibre.com>
1149 L: linux-amlogic@lists.infradead.org
1151 F: drivers/clk/meson/
1152 F: include/dt-bindings/clock/meson*
1153 F: include/dt-bindings/clock/gxbb*
1154 F: Documentation/devicetree/bindings/clock/amlogic*
1156 ARM/Amlogic Meson SoC support
1157 M: Carlo Caione <carlo@caione.org>
1158 M: Kevin Hilman <khilman@baylibre.com>
1159 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1160 L: linux-amlogic@lists.infradead.org
1161 W: http://linux-meson.com/
1163 F: arch/arm/mach-meson/
1164 F: arch/arm/boot/dts/meson*
1165 F: arch/arm64/boot/dts/amlogic/
1166 F: drivers/pinctrl/meson/
1167 F: drivers/mmc/host/meson*
1170 ARM/Annapurna Labs ALPINE ARCHITECTURE
1171 M: Tsahee Zidenberg <tsahee@annapurnalabs.com>
1172 M: Antoine Tenart <antoine.tenart@free-electrons.com>
1173 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1175 F: arch/arm/mach-alpine/
1176 F: arch/arm/boot/dts/alpine*
1177 F: arch/arm64/boot/dts/al/
1178 F: drivers/*/*alpine*
1180 ARM/ARTPEC MACHINE SUPPORT
1181 M: Jesper Nilsson <jesper.nilsson@axis.com>
1182 M: Lars Persson <lars.persson@axis.com>
1183 M: Niklas Cassel <niklas.cassel@axis.com>
1185 L: linux-arm-kernel@axis.com
1186 F: arch/arm/mach-artpec
1187 F: arch/arm/boot/dts/artpec6*
1189 F: drivers/crypto/axis
1190 F: drivers/pinctrl/pinctrl-artpec*
1191 F: Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1193 ARM/ASPEED I2C DRIVER
1194 M: Brendan Higgins <brendanhiggins@google.com>
1195 R: Benjamin Herrenschmidt <benh@kernel.crashing.org>
1196 R: Joel Stanley <joel@jms.id.au>
1197 L: linux-i2c@vger.kernel.org
1198 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
1200 F: drivers/irqchip/irq-aspeed-i2c-ic.c
1201 F: drivers/i2c/busses/i2c-aspeed.c
1202 F: Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1203 F: Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1205 ARM/ASPEED MACHINE SUPPORT
1206 M: Joel Stanley <joel@jms.id.au>
1208 F: arch/arm/mach-aspeed/
1209 F: arch/arm/boot/dts/aspeed-*
1210 F: drivers/*/*aspeed*
1212 ARM/ATMEL AT91 Clock Support
1213 M: Boris Brezillon <boris.brezillon@free-electrons.com>
1217 ARM/ATMEL AT91RM9200, AT91SAM9 AND SAMA5 SOC SUPPORT
1218 M: Nicolas Ferre <nicolas.ferre@microchip.com>
1219 M: Alexandre Belloni <alexandre.belloni@free-electrons.com>
1220 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1221 W: http://www.linux4sam.org
1222 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nferre/linux-at91.git
1224 F: arch/arm/mach-at91/
1225 F: include/soc/at91/
1226 F: arch/arm/boot/dts/at91*.dts
1227 F: arch/arm/boot/dts/at91*.dtsi
1228 F: arch/arm/boot/dts/sama*.dts
1229 F: arch/arm/boot/dts/sama*.dtsi
1230 F: arch/arm/include/debug/at91.S
1231 F: drivers/memory/atmel*
1233 ARM/CALXEDA HIGHBANK ARCHITECTURE
1234 M: Rob Herring <robh@kernel.org>
1235 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1237 F: arch/arm/mach-highbank/
1238 F: arch/arm/boot/dts/highbank.dts
1239 F: arch/arm/boot/dts/ecx-*.dts*
1241 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1242 M: Krzysztof Halasa <khalasa@piap.pl>
1244 F: arch/arm/mach-cns3xxx/
1246 ARM/CAVIUM THUNDER NETWORK DRIVER
1247 M: Sunil Goutham <sgoutham@cavium.com>
1248 M: Robert Richter <rric@kernel.org>
1249 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1251 F: drivers/net/ethernet/cavium/thunder/
1253 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1254 M: Alexander Shiyan <shc_work@mail.ru>
1255 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1259 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1260 M: Lennert Buytenhek <kernel@wantstofly.org>
1261 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1264 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1265 M: Hartley Sweeten <hsweeten@visionengravers.com>
1266 M: Alexander Sverdlin <alexander.sverdlin@gmail.com>
1267 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1269 F: arch/arm/mach-ep93xx/
1270 F: arch/arm/mach-ep93xx/include/mach/
1273 M: Russell King <linux@armlinux.org.uk>
1274 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1276 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1277 F: arch/arm/include/asm/clkdev.h
1278 F: drivers/clk/clkdev.c
1280 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
1281 M: Mike Rapoport <mike@compulab.co.il>
1282 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1285 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1286 M: Baruch Siach <baruch@tkos.co.il>
1287 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1289 F: arch/arm/boot/dts/cx92755*
1292 ARM/CONTEC MICRO9 MACHINE SUPPORT
1293 M: Hubert Feurstein <hubert.feurstein@contec.at>
1295 F: arch/arm/mach-ep93xx/micro9.c
1297 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1298 M: Mathieu Poirier <mathieu.poirier@linaro.org>
1299 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1301 F: drivers/hwtracing/coresight/*
1302 F: Documentation/trace/coresight.txt
1303 F: Documentation/trace/coresight-cpu-debug.txt
1304 F: Documentation/devicetree/bindings/arm/coresight.txt
1305 F: Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1306 F: Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1307 F: tools/perf/arch/arm/util/pmu.c
1308 F: tools/perf/arch/arm/util/auxtrace.c
1309 F: tools/perf/arch/arm/util/cs-etm.c
1310 F: tools/perf/arch/arm/util/cs-etm.h
1311 F: tools/perf/util/cs-etm.h
1313 ARM/CORGI MACHINE SUPPORT
1314 M: Richard Purdie <rpurdie@rpsys.net>
1317 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1318 M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
1319 M: Linus Walleij <linus.walleij@linaro.org>
1320 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1321 T: git git://github.com/ulli-kroll/linux.git
1323 F: Documentation/devicetree/bindings/arm/gemini.txt
1324 F: Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1325 F: Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1326 F: arch/arm/mach-gemini/
1327 F: drivers/pinctrl/pinctrl-gemini.c
1328 F: drivers/rtc/rtc-ftrtc010.c
1330 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1331 M: Barry Song <baohua@kernel.org>
1332 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1333 T: git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1335 F: arch/arm/boot/dts/prima2*
1336 F: arch/arm/mach-prima2/
1337 F: drivers/clk/sirf/
1338 F: drivers/clocksource/timer-prima2.c
1339 F: drivers/clocksource/timer-atlas7.c
1342 ARM/EBSA110 MACHINE SUPPORT
1343 M: Russell King <linux@armlinux.org.uk>
1344 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1345 W: http://www.armlinux.org.uk/
1347 F: arch/arm/mach-ebsa110/
1348 F: drivers/net/ethernet/amd/am79c961a.*
1350 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1351 M: Uwe Kleine-König <kernel@pengutronix.de>
1352 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1356 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1357 M: Robert Jarzmik <robert.jarzmik@free.fr>
1358 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1360 F: arch/arm/mach-pxa/ezx.c
1362 ARM/FARADAY FA526 PORT
1363 M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
1364 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1366 T: git git://git.berlios.de/gemini-board
1367 F: arch/arm/mm/*-fa*
1369 ARM/FOOTBRIDGE ARCHITECTURE
1370 M: Russell King <linux@armlinux.org.uk>
1371 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1372 W: http://www.armlinux.org.uk/
1374 F: arch/arm/include/asm/hardware/dec21285.h
1375 F: arch/arm/mach-footbridge/
1377 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1378 M: Shawn Guo <shawnguo@kernel.org>
1379 M: Sascha Hauer <kernel@pengutronix.de>
1380 R: Fabio Estevam <fabio.estevam@nxp.com>
1381 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1383 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1384 F: arch/arm/mach-imx/
1385 F: arch/arm/mach-mxs/
1386 F: arch/arm/boot/dts/imx*
1387 F: arch/arm/configs/imx*_defconfig
1392 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1393 M: Shawn Guo <shawnguo@kernel.org>
1394 M: Sascha Hauer <kernel@pengutronix.de>
1395 R: Stefan Agner <stefan@agner.ch>
1396 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1398 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1399 F: arch/arm/mach-imx/*vf610*
1400 F: arch/arm/boot/dts/vf*
1402 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1403 M: Lennert Buytenhek <kernel@wantstofly.org>
1404 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1407 ARM/GUMSTIX MACHINE SUPPORT
1408 M: Steve Sakoman <sakoman@gmail.com>
1409 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1412 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1413 M: Philipp Zabel <philipp.zabel@gmail.com>
1414 M: Paul Parsons <lost.distance@yahoo.com>
1415 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1417 F: arch/arm/mach-pxa/hx4700.c
1418 F: arch/arm/mach-pxa/include/mach/hx4700.h
1419 F: sound/soc/pxa/hx4700.c
1421 ARM/HISILICON SOC SUPPORT
1422 M: Wei Xu <xuwei5@hisilicon.com>
1423 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1424 W: http://www.hisilicon.com
1426 T: git git://github.com/hisilicon/linux-hisi.git
1427 F: arch/arm/mach-hisi/
1428 F: arch/arm/boot/dts/hi3*
1429 F: arch/arm/boot/dts/hip*
1430 F: arch/arm/boot/dts/hisi*
1431 F: arch/arm64/boot/dts/hisilicon/
1433 ARM/HP JORNADA 7XX MACHINE SUPPORT
1434 M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
1437 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1438 F: arch/arm/mach-sa1100/jornada720.c
1439 F: arch/arm/mach-sa1100/include/mach/jornada720.h
1441 ARM/IGEP MACHINE SUPPORT
1442 M: Enric Balletbo i Serra <eballetbo@gmail.com>
1443 M: Javier Martinez Canillas <javier@dowhile0.org>
1444 L: linux-omap@vger.kernel.org
1445 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1447 F: arch/arm/boot/dts/omap3-igep*
1449 ARM/INCOME PXA270 SUPPORT
1450 M: Marek Vasut <marek.vasut@gmail.com>
1451 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1453 F: arch/arm/mach-pxa/colibri-pxa270-income.c
1455 ARM/INTEL IOP13XX ARM ARCHITECTURE
1456 M: Lennert Buytenhek <kernel@wantstofly.org>
1457 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1460 ARM/INTEL IOP32X ARM ARCHITECTURE
1461 M: Lennert Buytenhek <kernel@wantstofly.org>
1462 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1465 ARM/INTEL IOP33X ARM ARCHITECTURE
1466 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1469 ARM/INTEL IQ81342EX MACHINE SUPPORT
1470 M: Lennert Buytenhek <kernel@wantstofly.org>
1471 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1474 ARM/INTEL IXDP2850 MACHINE SUPPORT
1475 M: Lennert Buytenhek <kernel@wantstofly.org>
1476 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1479 ARM/INTEL IXP4XX ARM ARCHITECTURE
1480 M: Imre Kaloz <kaloz@openwrt.org>
1481 M: Krzysztof Halasa <khalasa@piap.pl>
1482 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1484 F: arch/arm/mach-ixp4xx/
1486 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1487 M: Jonathan Cameron <jic23@cam.ac.uk>
1488 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1490 F: arch/arm/mach-pxa/stargate2.c
1491 F: drivers/pcmcia/pxa2xx_stargate2.c
1493 ARM/INTEL XSC3 (MANZANO) ARM CORE
1494 M: Lennert Buytenhek <kernel@wantstofly.org>
1495 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1498 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1499 M: Lennert Buytenhek <kernel@wantstofly.org>
1500 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1503 ARM/LG1K ARCHITECTURE
1504 M: Chanho Min <chanho.min@lge.com>
1505 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1507 F: arch/arm64/boot/dts/lg/
1509 ARM/LOGICPD PXA270 MACHINE SUPPORT
1510 M: Lennert Buytenhek <kernel@wantstofly.org>
1511 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1514 ARM/LPC18XX ARCHITECTURE
1515 M: Joachim Eastwood <manabian@gmail.com>
1516 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1518 F: arch/arm/boot/dts/lpc43*
1519 F: drivers/clk/nxp/clk-lpc18xx*
1520 F: drivers/clocksource/time-lpc32xx.c
1521 F: drivers/i2c/busses/i2c-lpc2k.c
1522 F: drivers/memory/pl172.c
1523 F: drivers/mtd/spi-nor/nxp-spifi.c
1524 F: drivers/rtc/rtc-lpc24xx.c
1527 ARM/LPC32XX SOC SUPPORT
1528 M: Vladimir Zapolskiy <vz@mleia.com>
1529 M: Sylvain Lemieux <slemieux.tyco@gmail.com>
1530 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1531 T: git git://github.com/vzapolskiy/linux-lpc32xx.git
1533 F: arch/arm/boot/dts/lpc32*
1534 F: arch/arm/mach-lpc32xx/
1535 F: drivers/i2c/busses/i2c-pnx.c
1536 F: drivers/net/ethernet/nxp/lpc_eth.c
1537 F: drivers/usb/host/ohci-nxp.c
1538 F: drivers/watchdog/pnx4008_wdt.c
1541 ARM/MAGICIAN MACHINE SUPPORT
1542 M: Philipp Zabel <philipp.zabel@gmail.com>
1545 ARM/Marvell Berlin SoC support
1546 M: Jisheng Zhang <jszhang@marvell.com>
1547 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1548 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1550 F: arch/arm/mach-berlin/
1551 F: arch/arm/boot/dts/berlin*
1552 F: arch/arm64/boot/dts/marvell/berlin*
1554 ARM/Marvell Dove/MV78xx0/Orion SOC support
1555 M: Jason Cooper <jason@lakedaemon.net>
1556 M: Andrew Lunn <andrew@lunn.ch>
1557 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1558 M: Gregory Clement <gregory.clement@free-electrons.com>
1559 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1561 F: Documentation/devicetree/bindings/soc/dove/
1562 F: arch/arm/mach-dove/
1563 F: arch/arm/mach-mv78xx0/
1564 F: arch/arm/mach-orion5x/
1565 F: arch/arm/plat-orion/
1566 F: arch/arm/boot/dts/dove*
1567 F: arch/arm/boot/dts/orion5x*
1569 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K SOC support
1570 M: Jason Cooper <jason@lakedaemon.net>
1571 M: Andrew Lunn <andrew@lunn.ch>
1572 M: Gregory Clement <gregory.clement@free-electrons.com>
1573 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1574 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1576 F: arch/arm/boot/dts/armada*
1577 F: arch/arm/boot/dts/kirkwood*
1578 F: arch/arm/configs/mvebu_*_defconfig
1579 F: arch/arm/mach-mvebu/
1580 F: arch/arm64/boot/dts/marvell/armada*
1581 F: drivers/cpufreq/mvebu-cpufreq.c
1582 F: drivers/irqchip/irq-armada-370-xp.c
1583 F: drivers/irqchip/irq-mvebu-*
1584 F: drivers/pinctrl/mvebu/
1585 F: drivers/rtc/rtc-armada38x.c
1587 ARM/Mediatek RTC DRIVER
1588 M: Eddie Huang <eddie.huang@mediatek.com>
1589 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1590 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1592 F: drivers/rtc/rtc-mt6397.c
1594 ARM/Mediatek SoC support
1595 M: Matthias Brugger <matthias.bgg@gmail.com>
1596 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1597 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1599 F: arch/arm/boot/dts/mt6*
1600 F: arch/arm/boot/dts/mt7*
1601 F: arch/arm/boot/dts/mt8*
1602 F: arch/arm/mach-mediatek/
1603 F: arch/arm64/boot/dts/mediatek/
1607 ARM/Mediatek USB3 PHY DRIVER
1608 M: Chunfeng Yun <chunfeng.yun@mediatek.com>
1609 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1610 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1612 F: drivers/phy/mediatek/phy-mtk-tphy.c
1614 ARM/MICREL KS8695 ARCHITECTURE
1615 M: Greg Ungerer <gerg@uclinux.org>
1616 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1617 F: arch/arm/mach-ks8695/
1620 ARM/MIOA701 MACHINE SUPPORT
1621 M: Robert Jarzmik <robert.jarzmik@free.fr>
1622 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1623 F: arch/arm/mach-pxa/mioa701.c
1626 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1627 M: Michael Petchkovsky <mkpetch@internode.on.net>
1630 ARM/NOMADIK ARCHITECTURE
1631 M: Alessandro Rubini <rubini@unipv.it>
1632 M: Linus Walleij <linus.walleij@linaro.org>
1633 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1635 F: arch/arm/mach-nomadik/
1636 F: drivers/pinctrl/nomadik/
1637 F: drivers/i2c/busses/i2c-nomadik.c
1638 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1640 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1641 M: Wan ZongShun <mcuos.com@gmail.com>
1642 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1643 W: http://www.mcuos.com
1645 F: arch/arm/mach-w90x900/
1646 F: drivers/input/keyboard/w90p910_keypad.c
1647 F: drivers/input/touchscreen/w90p910_ts.c
1648 F: drivers/watchdog/nuc900_wdt.c
1649 F: drivers/net/ethernet/nuvoton/w90p910_ether.c
1650 F: drivers/mtd/nand/nuc900_nand.c
1651 F: drivers/rtc/rtc-nuc900.c
1652 F: drivers/spi/spi-nuc900.c
1653 F: drivers/usb/host/ehci-w90x900.c
1654 F: drivers/video/fbdev/nuc900fb.c
1656 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1657 M: Nelson Castillo <arhuaco@freaks-unidos.net>
1658 L: openmoko-kernel@lists.openmoko.org (subscribers-only)
1659 W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
1662 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1663 M: Alexander Clouter <alex@digriz.org.uk>
1664 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1665 W: http://www.digriz.org.uk/ts78xx/kernel
1667 F: arch/arm/mach-orion5x/ts78xx-*
1669 ARM/OXNAS platform support
1670 M: Neil Armstrong <narmstrong@baylibre.com>
1671 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1672 L: linux-oxnas@lists.tuxfamily.org (moderated for non-subscribers)
1674 F: arch/arm/mach-oxnas/
1675 F: arch/arm/boot/dts/ox8*.dtsi
1676 F: arch/arm/boot/dts/wd-mbwe.dts
1677 F: arch/arm/boot/dts/cloudengines-pogoplug-series-3.dts
1680 ARM/PALM TREO SUPPORT
1681 M: Tomas Cech <sleep_walker@suse.com>
1682 L: linux-arm-kernel@lists.infradead.org
1683 W: http://hackndev.com
1685 F: arch/arm/mach-pxa/include/mach/palmtreo.h
1686 F: arch/arm/mach-pxa/palmtreo.c
1688 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1689 M: Marek Vasut <marek.vasut@gmail.com>
1690 L: linux-arm-kernel@lists.infradead.org
1691 W: http://hackndev.com
1693 F: arch/arm/mach-pxa/include/mach/palmtx.h
1694 F: arch/arm/mach-pxa/palmtx.c
1695 F: arch/arm/mach-pxa/include/mach/palmt5.h
1696 F: arch/arm/mach-pxa/palmt5.c
1697 F: arch/arm/mach-pxa/include/mach/palmld.h
1698 F: arch/arm/mach-pxa/palmld.c
1699 F: arch/arm/mach-pxa/include/mach/palmte2.h
1700 F: arch/arm/mach-pxa/palmte2.c
1701 F: arch/arm/mach-pxa/include/mach/palmtc.h
1702 F: arch/arm/mach-pxa/palmtc.c
1705 M: Sergey Lapin <slapin@ossfans.org>
1706 L: linux-arm-kernel@lists.infradead.org
1707 W: http://hackndev.com
1709 F: arch/arm/mach-pxa/include/mach/palmz72.h
1710 F: arch/arm/mach-pxa/palmz72.c
1713 M: Peter Chubb <pleb@gelato.unsw.edu.au>
1714 W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1717 ARM/PT DIGITAL BOARD PORT
1718 M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1719 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1720 W: http://www.armlinux.org.uk/
1723 ARM/QUALCOMM SUPPORT
1724 M: Andy Gross <andy.gross@linaro.org>
1725 M: David Brown <david.brown@linaro.org>
1726 L: linux-arm-msm@vger.kernel.org
1727 L: linux-soc@vger.kernel.org
1729 F: Documentation/devicetree/bindings/soc/qcom/
1730 F: arch/arm/boot/dts/qcom-*.dts
1731 F: arch/arm/boot/dts/qcom-*.dtsi
1732 F: arch/arm/mach-qcom/
1733 F: arch/arm64/boot/dts/qcom/*
1734 F: drivers/i2c/busses/i2c-qup.c
1735 F: drivers/clk/qcom/
1736 F: drivers/dma/qcom/
1737 F: drivers/soc/qcom/
1738 F: drivers/spi/spi-qup.c
1739 F: drivers/tty/serial/msm_serial.h
1740 F: drivers/tty/serial/msm_serial.c
1741 F: drivers/*/pm8???-*
1742 F: drivers/mfd/ssbi.c
1743 F: drivers/firmware/qcom_scm.c
1744 T: git git://git.kernel.org/pub/scm/linux/kernel/git/agross/linux.git
1746 ARM/RADISYS ENP2611 MACHINE SUPPORT
1747 M: Lennert Buytenhek <kernel@wantstofly.org>
1748 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1751 ARM/REALTEK ARCHITECTURE
1752 M: Andreas Färber <afaerber@suse.de>
1753 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1755 F: arch/arm64/boot/dts/realtek/
1756 F: Documentation/devicetree/bindings/arm/realtek.txt
1758 ARM/RENESAS ARM64 ARCHITECTURE
1759 M: Simon Horman <horms@verge.net.au>
1760 M: Magnus Damm <magnus.damm@gmail.com>
1761 L: linux-renesas-soc@vger.kernel.org
1762 Q: http://patchwork.kernel.org/project/linux-renesas-soc/list/
1763 T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1765 F: arch/arm64/boot/dts/renesas/
1766 F: drivers/soc/renesas/
1767 F: include/linux/soc/renesas/
1769 ARM/RISCPC ARCHITECTURE
1770 M: Russell King <linux@armlinux.org.uk>
1771 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1772 W: http://www.armlinux.org.uk/
1774 F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1775 F: arch/arm/include/asm/hardware/ioc.h
1776 F: arch/arm/include/asm/hardware/iomd.h
1777 F: arch/arm/include/asm/hardware/memc.h
1778 F: arch/arm/mach-rpc/
1779 F: drivers/net/ethernet/8390/etherh.c
1780 F: drivers/net/ethernet/i825xx/ether1*
1781 F: drivers/net/ethernet/seeq/ether3*
1782 F: drivers/scsi/arm/
1784 ARM/Rockchip SoC support
1785 M: Heiko Stuebner <heiko@sntech.de>
1786 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1787 L: linux-rockchip@lists.infradead.org
1788 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
1790 F: arch/arm/boot/dts/rk3*
1791 F: arch/arm/boot/dts/rv1108*
1792 F: arch/arm/mach-rockchip/
1793 F: drivers/clk/rockchip/
1794 F: drivers/i2c/busses/i2c-rk3x.c
1795 F: drivers/*/*rockchip*
1796 F: drivers/*/*/*rockchip*
1797 F: sound/soc/rockchip/
1800 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1801 M: Kukjin Kim <kgene@kernel.org>
1802 M: Krzysztof Kozlowski <krzk@kernel.org>
1803 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1804 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1805 Q: https://patchwork.kernel.org/project/linux-samsung-soc/list/
1807 F: arch/arm/boot/dts/s3c*
1808 F: arch/arm/boot/dts/s5p*
1809 F: arch/arm/boot/dts/samsung*
1810 F: arch/arm/boot/dts/exynos*
1811 F: arch/arm64/boot/dts/exynos/
1812 F: arch/arm/plat-samsung/
1813 F: arch/arm/mach-s3c24*/
1814 F: arch/arm/mach-s3c64xx/
1815 F: arch/arm/mach-s5p*/
1816 F: arch/arm/mach-exynos*/
1817 F: drivers/*/*s3c24*
1818 F: drivers/*/*/*s3c24*
1819 F: drivers/*/*s3c64xx*
1820 F: drivers/*/*s5pv210*
1821 F: drivers/memory/samsung/*
1822 F: drivers/soc/samsung/*
1823 F: Documentation/arm/Samsung/
1824 F: Documentation/devicetree/bindings/arm/samsung/
1825 F: Documentation/devicetree/bindings/sram/samsung-sram.txt
1826 F: Documentation/devicetree/bindings/power/pd-samsung.txt
1829 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1830 M: Kyungmin Park <kyungmin.park@samsung.com>
1831 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1833 F: arch/arm/mach-s5pv210/
1835 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1836 M: Kyungmin Park <kyungmin.park@samsung.com>
1837 M: Kamil Debski <kamil@wypas.org>
1838 M: Andrzej Hajda <a.hajda@samsung.com>
1839 L: linux-arm-kernel@lists.infradead.org
1840 L: linux-media@vger.kernel.org
1842 F: drivers/media/platform/s5p-g2d/
1844 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
1845 M: Marek Szyprowski <m.szyprowski@samsung.com>
1846 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1847 L: linux-media@vger.kernel.org
1849 F: drivers/media/platform/s5p-cec/
1850 F: Documentation/devicetree/bindings/media/s5p-cec.txt
1852 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
1853 M: Andrzej Pietrasiewicz <andrzej.p@samsung.com>
1854 M: Jacek Anaszewski <jacek.anaszewski@gmail.com>
1855 L: linux-arm-kernel@lists.infradead.org
1856 L: linux-media@vger.kernel.org
1858 F: drivers/media/platform/s5p-jpeg/
1860 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1861 M: Kyungmin Park <kyungmin.park@samsung.com>
1862 M: Kamil Debski <kamil@wypas.org>
1863 M: Jeongtae Park <jtp.park@samsung.com>
1864 M: Andrzej Hajda <a.hajda@samsung.com>
1865 L: linux-arm-kernel@lists.infradead.org
1866 L: linux-media@vger.kernel.org
1868 F: arch/arm/plat-samsung/s5p-dev-mfc.c
1869 F: drivers/media/platform/s5p-mfc/
1871 ARM/SHMOBILE ARM ARCHITECTURE
1872 M: Simon Horman <horms@verge.net.au>
1873 M: Magnus Damm <magnus.damm@gmail.com>
1874 L: linux-renesas-soc@vger.kernel.org
1875 Q: http://patchwork.kernel.org/project/linux-renesas-soc/list/
1876 T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1878 F: arch/arm/boot/dts/emev2*
1879 F: arch/arm/boot/dts/r7s*
1880 F: arch/arm/boot/dts/r8a*
1881 F: arch/arm/boot/dts/sh*
1882 F: arch/arm/configs/shmobile_defconfig
1883 F: arch/arm/include/debug/renesas-scif.S
1884 F: arch/arm/mach-shmobile/
1885 F: drivers/soc/renesas/
1886 F: include/linux/soc/renesas/
1888 ARM/SOCFPGA ARCHITECTURE
1889 M: Dinh Nguyen <dinguyen@kernel.org>
1891 F: arch/arm/mach-socfpga/
1892 F: arch/arm/boot/dts/socfpga*
1893 F: arch/arm/configs/socfpga_defconfig
1894 F: arch/arm64/boot/dts/altera/
1895 W: http://www.rocketboards.org
1896 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
1898 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1899 M: Dinh Nguyen <dinguyen@kernel.org>
1901 F: drivers/clk/socfpga/
1903 ARM/SOCFPGA EDAC SUPPORT
1904 M: Thor Thayer <thor.thayer@linux.intel.com>
1906 F: drivers/edac/altera_edac.
1908 ARM/STI ARCHITECTURE
1909 M: Patrice Chotard <patrice.chotard@st.com>
1910 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1911 W: http://www.stlinux.com
1913 F: arch/arm/mach-sti/
1914 F: arch/arm/boot/dts/sti*
1915 F: drivers/char/hw_random/st-rng.c
1916 F: drivers/clocksource/arm_global_timer.c
1917 F: drivers/clocksource/clksrc_st_lpc.c
1918 F: drivers/cpufreq/sti-cpufreq.c
1919 F: drivers/dma/st_fdma*
1920 F: drivers/i2c/busses/i2c-st.c
1921 F: drivers/media/rc/st_rc.c
1922 F: drivers/media/platform/sti/c8sectpfe/
1923 F: drivers/mmc/host/sdhci-st.c
1924 F: drivers/phy/st/phy-miphy28lp.c
1925 F: drivers/phy/st/phy-stih407-usb.c
1926 F: drivers/pinctrl/pinctrl-st.c
1927 F: drivers/remoteproc/st_remoteproc.c
1928 F: drivers/remoteproc/st_slim_rproc.c
1929 F: drivers/reset/sti/
1930 F: drivers/rtc/rtc-st-lpc.c
1931 F: drivers/tty/serial/st-asc.c
1932 F: drivers/usb/dwc3/dwc3-st.c
1933 F: drivers/usb/host/ehci-st.c
1934 F: drivers/usb/host/ohci-st.c
1935 F: drivers/watchdog/st_lpc_wdt.c
1936 F: drivers/ata/ahci_st.c
1937 F: include/linux/remoteproc/st_slim_rproc.h
1939 ARM/STM32 ARCHITECTURE
1940 M: Maxime Coquelin <mcoquelin.stm32@gmail.com>
1941 M: Alexandre Torgue <alexandre.torgue@st.com>
1942 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1944 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git
1946 F: drivers/clocksource/armv7m_systick.c
1948 ARM/TANGO ARCHITECTURE
1949 M: Marc Gonzalez <marc_gonzalez@sigmadesigns.com>
1950 L: linux-arm-kernel@lists.infradead.org
1954 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
1955 M: Lennert Buytenhek <kernel@wantstofly.org>
1956 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1959 ARM/TETON BGA MACHINE SUPPORT
1960 M: "Mark F. Brown" <mark.brown314@gmail.com>
1961 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1964 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
1965 M: Santosh Shilimkar <ssantosh@kernel.org>
1966 L: linux-kernel@vger.kernel.org
1968 F: drivers/memory/*emif*
1970 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
1971 M: Santosh Shilimkar <ssantosh@kernel.org>
1972 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1974 F: arch/arm/mach-keystone/
1975 F: arch/arm/boot/dts/keystone-*
1976 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
1978 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
1979 M: Santosh Shilimkar <ssantosh@kernel.org>
1980 L: linux-kernel@vger.kernel.org
1982 F: drivers/clk/keystone/
1984 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
1985 M: Santosh Shilimkar <ssantosh@kernel.org>
1986 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1987 L: linux-kernel@vger.kernel.org
1989 F: drivers/clocksource/timer-keystone.c
1991 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
1992 M: Santosh Shilimkar <ssantosh@kernel.org>
1993 L: linux-kernel@vger.kernel.org
1995 F: drivers/power/reset/keystone-reset.c
1997 ARM/THECUS N2100 MACHINE SUPPORT
1998 M: Lennert Buytenhek <kernel@wantstofly.org>
1999 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2002 ARM/TOSA MACHINE SUPPORT
2003 M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2004 M: Dirk Opfer <dirk@opfer-online.de>
2007 ARM/U300 MACHINE SUPPORT
2008 M: Linus Walleij <linus.walleij@linaro.org>
2009 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2011 F: arch/arm/mach-u300/
2012 F: drivers/clocksource/timer-u300.c
2013 F: drivers/i2c/busses/i2c-stu300.c
2014 F: drivers/rtc/rtc-coh901331.c
2015 F: drivers/watchdog/coh901327_wdt.c
2016 F: drivers/dma/coh901318*
2017 F: drivers/mfd/ab3100*
2018 F: drivers/rtc/rtc-ab3100.c
2019 F: drivers/rtc/rtc-coh901331.c
2020 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
2022 ARM/UNIPHIER ARCHITECTURE
2023 M: Masahiro Yamada <yamada.masahiro@socionext.com>
2024 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2025 T: git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-uniphier.git
2027 F: Documentation/devicetree/bindings/gpio/gpio-uniphier.txt
2028 F: arch/arm/boot/dts/uniphier*
2029 F: arch/arm/include/asm/hardware/cache-uniphier.h
2030 F: arch/arm/mach-uniphier/
2031 F: arch/arm/mm/cache-uniphier.c
2032 F: arch/arm64/boot/dts/socionext/
2033 F: drivers/bus/uniphier-system-bus.c
2034 F: drivers/clk/uniphier/
2035 F: drivers/gpio/gpio-uniphier.c
2036 F: drivers/i2c/busses/i2c-uniphier*
2037 F: drivers/irqchip/irq-uniphier-aidet.c
2038 F: drivers/pinctrl/uniphier/
2039 F: drivers/reset/reset-uniphier.c
2040 F: drivers/tty/serial/8250/8250_uniphier.c
2043 ARM/Ux500 ARM ARCHITECTURE
2044 M: Linus Walleij <linus.walleij@linaro.org>
2045 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2047 F: arch/arm/mach-ux500/
2048 F: drivers/clocksource/clksrc-dbx500-prcmu.c
2049 F: drivers/dma/ste_dma40*
2050 F: drivers/hwspinlock/u8500_hsem.c
2051 F: drivers/mfd/abx500*
2052 F: drivers/mfd/ab8500*
2053 F: drivers/mfd/dbx500*
2054 F: drivers/mfd/db8500*
2055 F: drivers/pinctrl/nomadik/pinctrl-ab*
2056 F: drivers/pinctrl/nomadik/pinctrl-nomadik*
2057 F: drivers/rtc/rtc-ab8500.c
2058 F: drivers/rtc/rtc-pl031.c
2059 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
2061 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
2062 M: Ulf Hansson <ulf.hansson@linaro.org>
2063 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2064 T: git git://git.linaro.org/people/ulfh/clk.git
2066 F: drivers/clk/ux500/
2068 ARM/VERSATILE EXPRESS PLATFORM
2069 M: Liviu Dudau <liviu.dudau@arm.com>
2070 M: Sudeep Holla <sudeep.holla@arm.com>
2071 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2072 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2074 F: arch/arm/boot/dts/vexpress*
2075 F: arch/arm64/boot/dts/arm/
2076 F: arch/arm/mach-vexpress/
2079 F: drivers/clk/versatile/clk-vexpress-osc.c
2080 F: drivers/clocksource/versatile.c
2084 M: Russell King <linux@armlinux.org.uk>
2085 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2086 W: http://www.armlinux.org.uk/
2090 ARM/VOIPAC PXA270 SUPPORT
2091 M: Marek Vasut <marek.vasut@gmail.com>
2092 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2094 F: arch/arm/mach-pxa/vpac270.c
2095 F: arch/arm/mach-pxa/include/mach/vpac270.h
2097 ARM/VT8500 ARM ARCHITECTURE
2098 M: Tony Prisk <linux@prisktech.co.nz>
2099 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2101 F: arch/arm/mach-vt8500/
2102 F: drivers/clocksource/vt8500_timer.c
2103 F: drivers/i2c/busses/i2c-wmt.c
2104 F: drivers/mmc/host/wmt-sdmmc.c
2105 F: drivers/pwm/pwm-vt8500.c
2106 F: drivers/rtc/rtc-vt8500.c
2107 F: drivers/tty/serial/vt8500_serial.c
2108 F: drivers/usb/host/ehci-platform.c
2109 F: drivers/usb/host/uhci-platform.c
2110 F: drivers/video/fbdev/vt8500lcdfb.*
2111 F: drivers/video/fbdev/wm8505fb*
2112 F: drivers/video/fbdev/wmt_ge_rops.*
2114 ARM/ZIPIT Z2 SUPPORT
2115 M: Marek Vasut <marek.vasut@gmail.com>
2116 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2118 F: arch/arm/mach-pxa/z2.c
2119 F: arch/arm/mach-pxa/include/mach/z2.h
2121 ARM/ZTE ARCHITECTURE
2122 M: Jun Nie <jun.nie@linaro.org>
2123 M: Baoyou Xie <baoyou.xie@linaro.org>
2124 M: Shawn Guo <shawnguo@kernel.org>
2125 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2127 F: arch/arm/boot/dts/zx2967*
2128 F: arch/arm/mach-zx/
2129 F: arch/arm64/boot/dts/zte/
2131 F: drivers/dma/zx_dma.c
2132 F: drivers/gpio/gpio-zx.c
2133 F: drivers/i2c/busses/i2c-zx2967.c
2134 F: drivers/mmc/host/dw_mmc-zx.*
2135 F: drivers/pinctrl/zte/
2136 F: drivers/reset/reset-zx2967.c
2138 F: drivers/thermal/zx2967_thermal.c
2139 F: drivers/watchdog/zx2967_wdt.c
2140 F: Documentation/devicetree/bindings/arm/zte.txt
2141 F: Documentation/devicetree/bindings/clock/zx2967*.txt
2142 F: Documentation/devicetree/bindings/dma/zxdma.txt
2143 F: Documentation/devicetree/bindings/gpio/zx296702-gpio.txt
2144 F: Documentation/devicetree/bindings/i2c/i2c-zx2967.txt
2145 F: Documentation/devicetree/bindings/mmc/zx-dw-mshc.txt
2146 F: Documentation/devicetree/bindings/pinctrl/pinctrl-zx.txt
2147 F: Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt
2148 F: Documentation/devicetree/bindings/soc/zte/
2149 F: Documentation/devicetree/bindings/sound/zte,*.txt
2150 F: Documentation/devicetree/bindings/thermal/zx2967-thermal.txt
2151 F: Documentation/devicetree/bindings/watchdog/zte,zx2967-wdt.txt
2152 F: include/dt-bindings/clock/zx2967*.h
2153 F: include/dt-bindings/soc/zte,*.h
2154 F: sound/soc/codecs/zx_aud96p22.c
2157 ARM/ZYNQ ARCHITECTURE
2158 M: Michal Simek <michal.simek@xilinx.com>
2159 R: Sören Brinkmann <soren.brinkmann@xilinx.com>
2160 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2161 W: http://wiki.xilinx.com
2162 T: git https://github.com/Xilinx/linux-xlnx.git
2164 F: arch/arm/mach-zynq/
2165 F: drivers/cpuidle/cpuidle-zynq.c
2166 F: drivers/block/xsysace.c
2169 F: drivers/clocksource/cadence_ttc_timer.c
2170 F: drivers/i2c/busses/i2c-cadence.c
2171 F: drivers/mmc/host/sdhci-of-arasan.c
2172 F: drivers/edac/synopsys_edac.c
2174 ARM64 PORT (AARCH64 ARCHITECTURE)
2175 M: Catalin Marinas <catalin.marinas@arm.com>
2176 M: Will Deacon <will.deacon@arm.com>
2177 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2178 T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2181 F: Documentation/arm64/
2183 AS3645A LED FLASH CONTROLLER DRIVER
2184 M: Sakari Ailus <sakari.ailus@iki.fi>
2185 L: linux-leds@vger.kernel.org
2187 F: drivers/leds/leds-as3645a.c
2189 AS3645A LED FLASH CONTROLLER DRIVER
2190 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2191 L: linux-media@vger.kernel.org
2192 T: git git://linuxtv.org/media_tree.git
2194 F: drivers/media/i2c/as3645a.c
2195 F: include/media/i2c/as3645a.h
2197 ASAHI KASEI AK8974 DRIVER
2198 M: Linus Walleij <linus.walleij@linaro.org>
2199 L: linux-iio@vger.kernel.org
2200 W: http://www.akm.com/
2202 F: drivers/iio/magnetometer/ak8974.c
2204 ASC7621 HARDWARE MONITOR DRIVER
2205 M: George Joseph <george.joseph@fairview5.com>
2206 L: linux-hwmon@vger.kernel.org
2208 F: Documentation/hwmon/asc7621
2209 F: drivers/hwmon/asc7621.c
2211 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2212 M: Corentin Chary <corentin.chary@gmail.com>
2213 L: acpi4asus-user@lists.sourceforge.net
2214 L: platform-driver-x86@vger.kernel.org
2215 W: http://acpi4asus.sf.net
2217 F: drivers/platform/x86/asus*.c
2218 F: drivers/platform/x86/eeepc*.c
2220 ASUS WIRELESS RADIO CONTROL DRIVER
2221 M: João Paulo Rechi Vita <jprvita@gmail.com>
2222 L: platform-driver-x86@vger.kernel.org
2224 F: drivers/platform/x86/asus-wireless.c
2227 M: David Howells <dhowells@redhat.com>
2228 L: keyrings@vger.kernel.org
2230 F: Documentation/crypto/asymmetric-keys.txt
2231 F: include/linux/verification.h
2232 F: include/crypto/public_key.h
2233 F: include/crypto/pkcs7.h
2234 F: crypto/asymmetric_keys/
2236 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2237 R: Dan Williams <dan.j.williams@intel.com>
2238 W: http://sourceforge.net/projects/xscaleiop
2240 F: Documentation/crypto/async-tx-api.txt
2243 F: include/linux/dmaengine.h
2244 F: include/linux/async_tx.h
2247 M: Bartosz Golaszewski <brgl@bgdev.pl>
2248 L: linux-i2c@vger.kernel.org
2250 F: drivers/misc/eeprom/at24.c
2251 F: include/linux/platform_data/at24.h
2253 ATA OVER ETHERNET (AOE) DRIVER
2254 M: "Ed L. Cashin" <ed.cashin@acm.org>
2255 W: http://www.openaoe.org/
2257 F: Documentation/aoe/
2258 F: drivers/block/aoe/
2260 ATHEROS 71XX/9XXX GPIO DRIVER
2261 M: Alban Bedel <albeu@free.fr>
2262 W: https://github.com/AlbanBedel/linux
2263 T: git git://github.com/AlbanBedel/linux
2265 F: drivers/gpio/gpio-ath79.c
2266 F: Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2268 ATHEROS ATH GENERIC UTILITIES
2269 M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
2270 L: linux-wireless@vger.kernel.org
2272 F: drivers/net/wireless/ath/*
2274 ATHEROS ATH5K WIRELESS DRIVER
2275 M: Jiri Slaby <jirislaby@gmail.com>
2276 M: Nick Kossifidis <mickflemm@gmail.com>
2277 M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
2278 L: linux-wireless@vger.kernel.org
2279 W: http://wireless.kernel.org/en/users/Drivers/ath5k
2281 F: drivers/net/wireless/ath/ath5k/
2283 ATHEROS ATH6KL WIRELESS DRIVER
2284 M: Kalle Valo <kvalo@qca.qualcomm.com>
2285 L: linux-wireless@vger.kernel.org
2286 W: http://wireless.kernel.org/en/users/Drivers/ath6kl
2287 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2289 F: drivers/net/wireless/ath/ath6kl/
2292 M: Ville Syrjala <syrjala@sci.fi>
2294 F: drivers/input/misc/ati_remote2.c
2296 ATK0110 HWMON DRIVER
2297 M: Luca Tettamanti <kronos.it@gmail.com>
2298 L: linux-hwmon@vger.kernel.org
2300 F: drivers/hwmon/asus_atk0110.c
2302 ATLX ETHERNET DRIVERS
2303 M: Jay Cliburn <jcliburn@gmail.com>
2304 M: Chris Snook <chris.snook@gmail.com>
2305 L: netdev@vger.kernel.org
2306 W: http://sourceforge.net/projects/atl1
2307 W: http://atl1.sourceforge.net
2309 F: drivers/net/ethernet/atheros/
2312 M: Chas Williams <3chas3@gmail.com>
2313 L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
2314 L: netdev@vger.kernel.org
2315 W: http://linux-atm.sourceforge.net
2318 F: include/linux/atm*
2319 F: include/uapi/linux/atm*
2321 ATMEL AT91 / AT32 MCI DRIVER
2322 M: Ludovic Desroches <ludovic.desroches@microchip.com>
2324 F: drivers/mmc/host/atmel-mci.c
2326 ATMEL AT91 SAMA5D2-Compatible Shutdown Controller
2327 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2329 F: drivers/power/reset/at91-sama5d2_shdwc.c
2331 ATMEL Audio ALSA driver
2332 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2333 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2338 M: Ludovic Desroches <ludovic.desroches@microchip.com>
2339 L: linux-i2c@vger.kernel.org
2341 F: drivers/i2c/busses/i2c-at91.c
2344 M: Ludovic Desroches <ludovic.desroches@microchip.com>
2345 L: linux-media@vger.kernel.org
2347 F: drivers/media/platform/atmel/atmel-isi.c
2348 F: include/media/atmel-isi.h
2351 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2352 L: linux-fbdev@vger.kernel.org
2354 F: drivers/video/fbdev/atmel_lcdfb.c
2355 F: include/video/atmel_lcdc.h
2357 ATMEL MACB ETHERNET DRIVER
2358 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2360 F: drivers/net/ethernet/cadence/
2362 ATMEL MAXTOUCH DRIVER
2363 M: Nick Dyer <nick@shmanahar.org>
2364 T: git git://github.com/ndyer/linux.git
2366 F: Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2367 F: drivers/input/touchscreen/atmel_mxt_ts.c
2368 F: include/linux/platform_data/atmel_mxt_ts.h
2371 M: Wenyou Yang <wenyou.yang@atmel.com>
2372 M: Josh Wu <rainyfeeling@outlook.com>
2373 L: linux-mtd@lists.infradead.org
2375 F: drivers/mtd/nand/atmel/*
2377 ATMEL SAMA5D2 ADC DRIVER
2378 M: Ludovic Desroches <ludovic.desroches@microchip.com>
2379 L: linux-iio@vger.kernel.org
2381 F: drivers/iio/adc/at91-sama5d2_adc.c
2384 M: Ludovic Desroches <ludovic.desroches@microchip.com>
2385 L: linux-mmc@vger.kernel.org
2387 F: drivers/mmc/host/sdhci-of-at91.c
2390 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2392 F: drivers/spi/spi-atmel.*
2395 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2396 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2398 F: drivers/misc/atmel-ssc.c
2399 F: include/linux/atmel-ssc.h
2401 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
2402 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2403 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2405 F: drivers/misc/atmel_tclib.c
2406 F: drivers/clocksource/tcb_clksrc.c
2408 ATMEL USBA UDC DRIVER
2409 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2410 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2412 F: drivers/usb/gadget/udc/atmel_usba_udc.*
2414 ATMEL WIRELESS DRIVER
2415 M: Simon Kelley <simon@thekelleys.org.uk>
2416 L: linux-wireless@vger.kernel.org
2417 W: http://www.thekelleys.org.uk/atmel
2418 W: http://atmelwlandriver.sourceforge.net/
2420 F: drivers/net/wireless/atmel/atmel*
2423 M: Ludovic Desroches <ludovic.desroches@microchip.com>
2424 L: linux-arm-kernel@lists.infradead.org
2425 L: dmaengine@vger.kernel.org
2427 F: drivers/dma/at_xdmac.c
2429 ATOMIC INFRASTRUCTURE
2430 M: Will Deacon <will.deacon@arm.com>
2431 M: Peter Zijlstra <peterz@infradead.org>
2432 R: Boqun Feng <boqun.feng@gmail.com>
2433 L: linux-kernel@vger.kernel.org
2435 F: arch/*/include/asm/atomic*.h
2436 F: include/*/atomic*.h
2438 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2439 M: Bradley Grove <linuxdrivers@attotech.com>
2440 L: linux-scsi@vger.kernel.org
2441 W: http://www.attotech.com
2443 F: drivers/scsi/esas2r
2445 ATUSB IEEE 802.15.4 RADIO DRIVER
2446 M: Stefan Schmidt <stefan@osg.samsung.com>
2447 L: linux-wpan@vger.kernel.org
2449 F: drivers/net/ieee802154/atusb.c
2450 F: drivers/net/ieee802154/atusb.h
2451 F: drivers/net/ieee802154/at86rf230.h
2454 M: Paul Moore <paul@paul-moore.com>
2455 M: Eric Paris <eparis@redhat.com>
2456 L: linux-audit@redhat.com (moderated for non-subscribers)
2457 W: https://github.com/linux-audit
2458 W: https://people.redhat.com/sgrubb/audit
2459 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
2461 F: include/linux/audit.h
2462 F: include/uapi/linux/audit.h
2465 AUXILIARY DISPLAY DRIVERS
2466 M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2467 W: http://miguelojeda.es/auxdisplay.htm
2468 W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2470 F: drivers/auxdisplay/
2471 F: include/linux/cfag12864b.h
2474 M: Ralf Baechle <ralf@linux-mips.org>
2475 L: linux-hams@vger.kernel.org
2476 W: http://www.linux-ax25.org/
2478 F: include/uapi/linux/ax25.h
2479 F: include/net/ax25.h
2483 M: Peter Rosin <peda@axentia.se>
2484 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2486 F: Documentation/devicetree/bindings/arm/axentia.txt
2487 F: arch/arm/boot/dts/at91-linea.dtsi
2488 F: arch/arm/boot/dts/at91-tse850-3.dts
2490 AXENTIA ASOC DRIVERS
2491 M: Peter Rosin <peda@axentia.se>
2492 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2494 F: Documentation/devicetree/bindings/sound/axentia,*
2495 F: sound/soc/atmel/tse850-pcm5142.c
2498 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
2499 M: Mauro Carvalho Chehab <mchehab@kernel.org>
2500 L: linux-media@vger.kernel.org
2501 W: https://linuxtv.org
2502 T: git git://linuxtv.org/media_tree.git
2504 F: drivers/media/usb/dvb-usb-v2/az6007.c
2506 AZTECH FM RADIO RECEIVER DRIVER
2507 M: Hans Verkuil <hverkuil@xs4all.nl>
2508 L: linux-media@vger.kernel.org
2509 T: git git://linuxtv.org/media_tree.git
2510 W: https://linuxtv.org
2512 F: drivers/media/radio/radio-aztech*
2515 L: linux-wireless@vger.kernel.org
2516 L: b43-dev@lists.infradead.org
2517 W: http://wireless.kernel.org/en/users/Drivers/b43
2519 F: drivers/net/wireless/broadcom/b43/
2521 B43LEGACY WIRELESS DRIVER
2522 M: Larry Finger <Larry.Finger@lwfinger.net>
2523 L: linux-wireless@vger.kernel.org
2524 L: b43-dev@lists.infradead.org
2525 W: http://wireless.kernel.org/en/users/Drivers/b43
2527 F: drivers/net/wireless/broadcom/b43legacy/
2529 BACKLIGHT CLASS/SUBSYSTEM
2530 M: Lee Jones <lee.jones@linaro.org>
2531 M: Daniel Thompson <daniel.thompson@linaro.org>
2532 M: Jingoo Han <jingoohan1@gmail.com>
2533 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
2535 F: drivers/video/backlight/
2536 F: include/linux/backlight.h
2537 F: include/linux/pwm_backlight.h
2538 F: Documentation/devicetree/bindings/leds/backlight
2541 M: Marek Lindner <mareklindner@neomailbox.ch>
2542 M: Simon Wunderlich <sw@simonwunderlich.de>
2543 M: Antonio Quartulli <a@unstable.cc>
2544 L: b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
2545 W: https://www.open-mesh.org/
2546 Q: https://patchwork.open-mesh.org/project/batman/list/
2548 F: Documentation/ABI/testing/sysfs-class-net-batman-adv
2549 F: Documentation/ABI/testing/sysfs-class-net-mesh
2550 F: Documentation/networking/batman-adv.rst
2551 F: include/uapi/linux/batman_adv.h
2554 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2555 M: Thomas Sailer <t.sailer@alumni.ethz.ch>
2556 L: linux-hams@vger.kernel.org
2557 W: http://www.baycom.org/~tom/ham/ham.html
2559 F: drivers/net/hamradio/baycom*
2561 BCACHE (BLOCK LAYER CACHE)
2562 M: Michael Lyle <mlyle@lyle.org>
2563 M: Kent Overstreet <kent.overstreet@gmail.com>
2564 L: linux-bcache@vger.kernel.org
2565 W: http://bcache.evilpiepirate.org
2566 C: irc://irc.oftc.net/bcache
2568 F: drivers/md/bcache/
2570 BDISP ST MEDIA DRIVER
2571 M: Fabien Dessenne <fabien.dessenne@st.com>
2572 L: linux-media@vger.kernel.org
2573 T: git git://linuxtv.org/media_tree.git
2574 W: https://linuxtv.org
2576 F: drivers/media/platform/sti/bdisp
2578 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2579 M: Dariusz Marcinkiewicz <reksio@newterm.pl>
2580 L: netdev@vger.kernel.org
2582 F: drivers/net/ethernet/ec_bhf.c
2585 M: Luis de Bethencourt <luisbg@kernel.org>
2586 M: Salah Triki <salah.triki@gmail.com>
2588 T: git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
2589 F: Documentation/filesystems/befs.txt
2593 M: Paolo Valente <paolo.valente@linaro.org>
2594 M: Jens Axboe <axboe@kernel.dk>
2595 L: linux-block@vger.kernel.org
2598 F: Documentation/block/bfq-iosched.txt
2601 M: "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
2603 F: Documentation/filesystems/bfs.txt
2605 F: include/uapi/linux/bfs_fs.h
2607 BLACKFIN ARCHITECTURE
2608 M: Steven Miao <realmz6@gmail.com>
2609 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2610 T: git git://git.code.sf.net/p/adi-linux/code
2611 W: http://blackfin.uclinux.org
2615 BLACKFIN EMAC DRIVER
2616 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2617 W: http://blackfin.uclinux.org
2619 F: drivers/net/ethernet/adi/
2621 BLACKFIN MEDIA DRIVER
2622 M: Scott Jiang <scott.jiang.linux@gmail.com>
2623 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2624 W: http://blackfin.uclinux.org/
2626 F: drivers/media/platform/blackfin/
2627 F: drivers/media/i2c/adv7183*
2628 F: drivers/media/i2c/vs6624*
2631 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2632 W: http://blackfin.uclinux.org
2634 F: drivers/rtc/rtc-bfin.c
2637 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2638 W: http://blackfin.uclinux.org
2640 F: drivers/mmc/host/bfin_sdh.c
2642 BLACKFIN SERIAL DRIVER
2643 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2644 W: http://blackfin.uclinux.org
2646 F: drivers/tty/serial/bfin_uart.c
2648 BLACKFIN WATCHDOG DRIVER
2649 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2650 W: http://blackfin.uclinux.org
2652 F: drivers/watchdog/bfin_wdt.c
2654 BLINKM RGB LED DRIVER
2655 M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
2657 F: drivers/leds/leds-blinkm.c
2660 M: Jens Axboe <axboe@kernel.dk>
2661 L: linux-block@vger.kernel.org
2662 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2665 F: kernel/trace/blktrace.c
2669 M: Joern Engel <joern@lazybastard.org>
2670 L: linux-mtd@lists.infradead.org
2672 F: drivers/mtd/devices/block2mtd.c
2675 M: Marcel Holtmann <marcel@holtmann.org>
2676 M: Gustavo Padovan <gustavo@padovan.org>
2677 M: Johan Hedberg <johan.hedberg@gmail.com>
2678 L: linux-bluetooth@vger.kernel.org
2679 W: http://www.bluez.org/
2680 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2681 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2683 F: drivers/bluetooth/
2686 M: Marcel Holtmann <marcel@holtmann.org>
2687 M: Gustavo Padovan <gustavo@padovan.org>
2688 M: Johan Hedberg <johan.hedberg@gmail.com>
2689 L: linux-bluetooth@vger.kernel.org
2690 W: http://www.bluez.org/
2691 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2692 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2695 F: include/net/bluetooth/
2698 M: Jay Vosburgh <j.vosburgh@gmail.com>
2699 M: Veaceslav Falico <vfalico@gmail.com>
2700 M: Andy Gospodarek <andy@greyhouse.net>
2701 L: netdev@vger.kernel.org
2702 W: http://sourceforge.net/projects/bonding/
2704 F: drivers/net/bonding/
2705 F: include/uapi/linux/if_bonding.h
2707 BPF (Safe dynamic programs and tools)
2708 M: Alexei Starovoitov <ast@kernel.org>
2709 M: Daniel Borkmann <daniel@iogearbox.net>
2710 L: netdev@vger.kernel.org
2711 L: linux-kernel@vger.kernel.org
2713 F: arch/x86/net/bpf_jit*
2714 F: Documentation/networking/filter.txt
2715 F: include/linux/bpf*
2716 F: include/linux/filter.h
2717 F: include/uapi/linux/bpf*
2718 F: include/uapi/linux/filter.h
2720 F: kernel/trace/bpf_trace.c
2723 F: net/core/filter.c
2724 F: net/sched/act_bpf.c
2725 F: net/sched/cls_bpf.c
2728 F: tools/testing/selftests/bpf/
2730 BROADCOM B44 10/100 ETHERNET DRIVER
2731 M: Michael Chan <michael.chan@broadcom.com>
2732 L: netdev@vger.kernel.org
2734 F: drivers/net/ethernet/broadcom/b44.*
2736 BROADCOM B53 ETHERNET SWITCH DRIVER
2737 M: Florian Fainelli <f.fainelli@gmail.com>
2738 L: netdev@vger.kernel.org
2739 L: openwrt-devel@lists.openwrt.org (subscribers-only)
2741 F: drivers/net/dsa/b53/*
2742 F: include/linux/platform_data/b53.h
2744 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2745 M: Florian Fainelli <f.fainelli@gmail.com>
2746 M: Ray Jui <rjui@broadcom.com>
2747 M: Scott Branden <sbranden@broadcom.com>
2748 M: bcm-kernel-feedback-list@broadcom.com
2749 T: git git://github.com/broadcom/mach-bcm
2755 F: arch/arm/mach-bcm/
2757 BROADCOM BCM2835 ARM ARCHITECTURE
2758 M: Eric Anholt <eric@anholt.net>
2759 M: Stefan Wahren <stefan.wahren@i2se.com>
2760 L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2761 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2762 T: git git://github.com/anholt/linux
2765 F: drivers/staging/vc04_services
2767 BROADCOM BCM47XX MIPS ARCHITECTURE
2768 M: Hauke Mehrtens <hauke@hauke-m.de>
2769 M: Rafał Miłecki <zajec5@gmail.com>
2770 L: linux-mips@linux-mips.org
2772 F: Documentation/devicetree/bindings/mips/brcm/
2773 F: arch/mips/bcm47xx/*
2774 F: arch/mips/include/asm/mach-bcm47xx/*
2776 BROADCOM BCM5301X ARM ARCHITECTURE
2777 M: Hauke Mehrtens <hauke@hauke-m.de>
2778 M: Rafał Miłecki <zajec5@gmail.com>
2779 M: Jon Mason <jonmason@broadcom.com>
2780 M: bcm-kernel-feedback-list@broadcom.com
2781 L: linux-arm-kernel@lists.infradead.org
2783 F: arch/arm/mach-bcm/bcm_5301x.c
2784 F: arch/arm/boot/dts/bcm5301x*.dtsi
2785 F: arch/arm/boot/dts/bcm470*
2786 F: arch/arm/boot/dts/bcm953012*
2788 BROADCOM BCM53573 ARM ARCHITECTURE
2789 M: Rafał Miłecki <rafal@milecki.pl>
2790 L: linux-arm-kernel@lists.infradead.org
2792 F: arch/arm/boot/dts/bcm53573*
2793 F: arch/arm/boot/dts/bcm47189*
2795 BROADCOM BCM63XX ARM ARCHITECTURE
2796 M: Florian Fainelli <f.fainelli@gmail.com>
2797 M: bcm-kernel-feedback-list@broadcom.com
2798 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2799 T: git git://github.com/broadcom/stblinux.git
2803 BROADCOM BCM63XX/BCM33XX UDC DRIVER
2804 M: Kevin Cernekee <cernekee@gmail.com>
2805 L: linux-usb@vger.kernel.org
2807 F: drivers/usb/gadget/udc/bcm63xx_udc.*
2809 BROADCOM BCM7XXX ARM ARCHITECTURE
2810 M: Brian Norris <computersforpeace@gmail.com>
2811 M: Gregory Fong <gregory.0xf0@gmail.com>
2812 M: Florian Fainelli <f.fainelli@gmail.com>
2813 M: bcm-kernel-feedback-list@broadcom.com
2814 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2815 T: git git://github.com/broadcom/stblinux.git
2817 F: arch/arm/mach-bcm/*brcmstb*
2818 F: arch/arm/boot/dts/bcm7*.dts*
2819 F: drivers/bus/brcmstb_gisb.c
2822 BROADCOM BMIPS CPUFREQ DRIVER
2823 M: Markus Mayer <mmayer@broadcom.com>
2824 M: bcm-kernel-feedback-list@broadcom.com
2825 L: linux-pm@vger.kernel.org
2827 F: drivers/cpufreq/bmips-cpufreq.c
2829 BROADCOM BMIPS MIPS ARCHITECTURE
2830 M: Kevin Cernekee <cernekee@gmail.com>
2831 M: Florian Fainelli <f.fainelli@gmail.com>
2832 L: linux-mips@linux-mips.org
2833 T: git git://github.com/broadcom/stblinux.git
2835 F: arch/mips/bmips/*
2836 F: arch/mips/include/asm/mach-bmips/*
2837 F: arch/mips/kernel/*bmips*
2838 F: arch/mips/boot/dts/brcm/bcm*.dts*
2839 F: drivers/irqchip/irq-bcm63*
2840 F: drivers/irqchip/irq-bcm7*
2841 F: drivers/irqchip/irq-brcmstb*
2842 F: include/linux/bcm963xx_nvram.h
2843 F: include/linux/bcm963xx_tag.h
2845 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
2846 M: Rasesh Mody <rasesh.mody@cavium.com>
2847 M: Harish Patil <harish.patil@cavium.com>
2848 M: Dept-GELinuxNICDev@cavium.com
2849 L: netdev@vger.kernel.org
2851 F: drivers/net/ethernet/broadcom/bnx2.*
2852 F: drivers/net/ethernet/broadcom/bnx2_*
2854 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2855 M: QLogic-Storage-Upstream@qlogic.com
2856 L: linux-scsi@vger.kernel.org
2858 F: drivers/scsi/bnx2fc/
2860 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2861 M: QLogic-Storage-Upstream@qlogic.com
2862 L: linux-scsi@vger.kernel.org
2864 F: drivers/scsi/bnx2i/
2866 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
2867 M: Ariel Elior <ariel.elior@cavium.com>
2868 M: everest-linux-l2@cavium.com
2869 L: netdev@vger.kernel.org
2871 F: drivers/net/ethernet/broadcom/bnx2x/
2873 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
2874 M: Michael Chan <michael.chan@broadcom.com>
2875 L: netdev@vger.kernel.org
2877 F: drivers/net/ethernet/broadcom/bnxt/
2879 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2880 M: Arend van Spriel <arend.vanspriel@broadcom.com>
2881 M: Franky Lin <franky.lin@broadcom.com>
2882 M: Hante Meuleman <hante.meuleman@broadcom.com>
2883 M: Chi-Hsien Lin <chi-hsien.lin@cypress.com>
2884 M: Wright Feng <wright.feng@cypress.com>
2885 L: linux-wireless@vger.kernel.org
2886 L: brcm80211-dev-list.pdl@broadcom.com
2887 L: brcm80211-dev-list@cypress.com
2889 F: drivers/net/wireless/broadcom/brcm80211/
2891 BROADCOM BRCMSTB GPIO DRIVER
2892 M: Gregory Fong <gregory.0xf0@gmail.com>
2893 L: bcm-kernel-feedback-list@broadcom.com
2895 F: drivers/gpio/gpio-brcmstb.c
2896 F: Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2898 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
2899 M: Al Cooper <alcooperx@gmail.com>
2900 L: linux-kernel@vger.kernel.org
2901 L: bcm-kernel-feedback-list@broadcom.com
2903 F: drivers/phy/broadcom/phy-brcm-usb*
2905 BROADCOM GENET ETHERNET DRIVER
2906 M: Florian Fainelli <f.fainelli@gmail.com>
2907 L: netdev@vger.kernel.org
2909 F: drivers/net/ethernet/broadcom/genet/
2911 BROADCOM IPROC ARM ARCHITECTURE
2912 M: Ray Jui <rjui@broadcom.com>
2913 M: Scott Branden <sbranden@broadcom.com>
2914 M: Jon Mason <jonmason@broadcom.com>
2915 M: bcm-kernel-feedback-list@broadcom.com
2916 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2917 T: git git://github.com/broadcom/cygnus-linux.git
2932 F: arch/arm64/boot/dts/broadcom/ns2*
2933 F: drivers/clk/bcm/clk-ns*
2934 F: drivers/pinctrl/bcm/pinctrl-ns*
2936 BROADCOM KONA GPIO DRIVER
2937 M: Ray Jui <rjui@broadcom.com>
2938 L: bcm-kernel-feedback-list@broadcom.com
2940 F: drivers/gpio/gpio-bcm-kona.c
2941 F: Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
2943 BROADCOM NETXTREME-E ROCE DRIVER
2944 M: Selvin Xavier <selvin.xavier@broadcom.com>
2945 M: Devesh Sharma <devesh.sharma@broadcom.com>
2946 M: Somnath Kotur <somnath.kotur@broadcom.com>
2947 M: Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
2948 L: linux-rdma@vger.kernel.org
2949 W: http://www.broadcom.com
2951 F: drivers/infiniband/hw/bnxt_re/
2952 F: include/uapi/rdma/bnxt_re-abi.h
2954 BROADCOM NVRAM DRIVER
2955 M: Rafał Miłecki <zajec5@gmail.com>
2956 L: linux-mips@linux-mips.org
2958 F: drivers/firmware/broadcom/*
2960 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2961 M: Rafał Miłecki <zajec5@gmail.com>
2962 L: linux-wireless@vger.kernel.org
2965 F: include/linux/bcma/
2967 BROADCOM STB AVS CPUFREQ DRIVER
2968 M: Markus Mayer <mmayer@broadcom.com>
2969 M: bcm-kernel-feedback-list@broadcom.com
2970 L: linux-pm@vger.kernel.org
2972 F: Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
2973 F: drivers/cpufreq/brcmstb*
2975 BROADCOM STB NAND FLASH DRIVER
2976 M: Brian Norris <computersforpeace@gmail.com>
2977 M: Kamal Dasu <kdasu.kdev@gmail.com>
2978 L: linux-mtd@lists.infradead.org
2979 L: bcm-kernel-feedback-list@broadcom.com
2981 F: drivers/mtd/nand/brcmnand/
2983 BROADCOM SYSTEMPORT ETHERNET DRIVER
2984 M: Florian Fainelli <f.fainelli@gmail.com>
2985 L: netdev@vger.kernel.org
2987 F: drivers/net/ethernet/broadcom/bcmsysport.*
2989 BROADCOM TG3 GIGABIT ETHERNET DRIVER
2990 M: Siva Reddy Kallam <siva.kallam@broadcom.com>
2991 M: Prashant Sreedharan <prashant@broadcom.com>
2992 M: Michael Chan <mchan@broadcom.com>
2993 L: netdev@vger.kernel.org
2995 F: drivers/net/ethernet/broadcom/tg3.*
2997 BROCADE BFA FC SCSI DRIVER
2998 M: Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2999 M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3000 L: linux-scsi@vger.kernel.org
3002 F: drivers/scsi/bfa/
3004 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3005 M: Rasesh Mody <rasesh.mody@cavium.com>
3006 M: Sudarsana Kalluru <sudarsana.kalluru@cavium.com>
3007 M: Dept-GELinuxNICDev@cavium.com
3008 L: netdev@vger.kernel.org
3010 F: drivers/net/ethernet/brocade/bna/
3012 BSG (block layer generic sg v4 driver)
3013 M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3014 L: linux-scsi@vger.kernel.org
3017 F: include/linux/bsg.h
3018 F: include/uapi/linux/bsg.h
3021 M: Clemens Ladisch <clemens@ladisch.de>
3022 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3023 T: git git://git.alsa-project.org/alsa-kernel.git
3025 F: Documentation/sound/alsa/Bt87x.txt
3026 F: sound/pci/bt87x.c
3029 M: Michael Buesch <m@bues.ch>
3030 W: http://bu3sch.de/btgpio.php
3032 F: drivers/gpio/gpio-bt8xx.c
3035 M: Chris Mason <clm@fb.com>
3036 M: Josef Bacik <jbacik@fb.com>
3037 M: David Sterba <dsterba@suse.com>
3038 L: linux-btrfs@vger.kernel.org
3039 W: http://btrfs.wiki.kernel.org/
3040 Q: http://patchwork.kernel.org/project/linux-btrfs/list/
3041 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
3043 F: Documentation/filesystems/btrfs.txt
3045 F: include/linux/btrfs*
3046 F: include/uapi/linux/btrfs*
3048 BTTV VIDEO4LINUX DRIVER
3049 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
3050 M: Mauro Carvalho Chehab <mchehab@kernel.org>
3051 L: linux-media@vger.kernel.org
3052 W: https://linuxtv.org
3053 T: git git://linuxtv.org/media_tree.git
3055 F: Documentation/media/v4l-drivers/bttv*
3056 F: drivers/media/pci/bt8xx/bttv*
3058 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3059 M: Chanwoo Choi <cw00.choi@samsung.com>
3060 L: linux-pm@vger.kernel.org
3061 L: linux-samsung-soc@vger.kernel.org
3062 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3064 F: drivers/devfreq/exynos-bus.c
3065 F: Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3067 BUSLOGIC SCSI DRIVER
3068 M: Khalid Aziz <khalid@gonehiking.org>
3069 L: linux-scsi@vger.kernel.org
3071 F: drivers/scsi/BusLogic.*
3072 F: drivers/scsi/FlashPoint.*
3074 C-MEDIA CMI8788 DRIVER
3075 M: Clemens Ladisch <clemens@ladisch.de>
3076 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3077 T: git git://git.alsa-project.org/alsa-kernel.git
3079 F: sound/pci/oxygen/
3082 M: Mark Salter <msalter@redhat.com>
3083 M: Aurelien Jacquiot <jacquiot.aurelien@gmail.com>
3084 L: linux-c6x-dev@linux-c6x.org
3085 W: http://www.linux-c6x.org/wiki/index.php/Main_Page
3089 CA8210 IEEE-802.15.4 RADIO DRIVER
3090 M: Harry Morris <h.morris@cascoda.com>
3091 M: linuxdev@cascoda.com
3092 L: linux-wpan@vger.kernel.org
3093 W: https://github.com/Cascoda/ca8210-linux.git
3095 F: drivers/net/ieee802154/ca8210.c
3096 F: Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3098 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3099 M: David Howells <dhowells@redhat.com>
3100 L: linux-cachefs@redhat.com (moderated for non-subscribers)
3102 F: Documentation/filesystems/caching/cachefiles.txt
3105 CADET FM/AM RADIO RECEIVER DRIVER
3106 M: Hans Verkuil <hverkuil@xs4all.nl>
3107 L: linux-media@vger.kernel.org
3108 T: git git://linuxtv.org/media_tree.git
3109 W: https://linuxtv.org
3111 F: drivers/media/radio/radio-cadet*
3113 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3114 M: Jonathan Corbet <corbet@lwn.net>
3115 L: linux-media@vger.kernel.org
3116 T: git git://linuxtv.org/media_tree.git
3118 F: Documentation/media/v4l-drivers/cafe_ccic*
3119 F: drivers/media/platform/marvell-ccic/
3122 M: Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
3123 L: netdev@vger.kernel.org
3125 F: Documentation/networking/caif/
3126 F: drivers/net/caif/
3127 F: include/uapi/linux/caif/
3128 F: include/net/caif/
3131 CALGARY x86-64 IOMMU
3132 M: Muli Ben-Yehuda <mulix@mulix.org>
3133 M: Jon Mason <jdmason@kudzu.us>
3134 L: iommu@lists.linux-foundation.org
3136 F: arch/x86/kernel/pci-calgary_64.c
3137 F: arch/x86/kernel/tce_64.c
3138 F: arch/x86/include/asm/calgary.h
3139 F: arch/x86/include/asm/tce.h
3142 M: Wolfgang Grandegger <wg@grandegger.com>
3143 M: Marc Kleine-Budde <mkl@pengutronix.de>
3144 L: linux-can@vger.kernel.org
3145 W: https://github.com/linux-can
3146 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3147 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3149 F: Documentation/devicetree/bindings/net/can/
3151 F: include/linux/can/dev.h
3152 F: include/linux/can/platform/
3153 F: include/uapi/linux/can/error.h
3154 F: include/uapi/linux/can/netlink.h
3157 M: Oliver Hartkopp <socketcan@hartkopp.net>
3158 M: Marc Kleine-Budde <mkl@pengutronix.de>
3159 L: linux-can@vger.kernel.org
3160 W: https://github.com/linux-can
3161 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3162 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3164 F: Documentation/networking/can.txt
3166 F: include/linux/can/core.h
3167 F: include/uapi/linux/can.h
3168 F: include/uapi/linux/can/bcm.h
3169 F: include/uapi/linux/can/raw.h
3170 F: include/uapi/linux/can/gw.h
3173 M: Serge Hallyn <serge@hallyn.com>
3174 L: linux-security-module@vger.kernel.org
3176 F: include/linux/capability.h
3177 F: include/uapi/linux/capability.h
3178 F: security/commoncap.c
3179 F: kernel/capability.c
3181 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3182 M: Kevin Tsai <ktsai@capellamicro.com>
3184 F: drivers/iio/light/cm*
3186 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
3187 M: Christian Lamparter <chunkeey@googlemail.com>
3188 L: linux-wireless@vger.kernel.org
3189 W: http://wireless.kernel.org/en/users/Drivers/carl9170
3191 F: drivers/net/wireless/ath/carl9170/
3194 M: Jan Glauber <jglauber@cavium.com>
3195 M: David Daney <david.daney@cavium.com>
3196 W: http://www.cavium.com
3198 F: drivers/i2c/busses/i2c-octeon*
3199 F: drivers/i2c/busses/i2c-thunderx*
3201 CAVIUM LIQUIDIO NETWORK DRIVER
3202 M: Derek Chickles <derek.chickles@caviumnetworks.com>
3203 M: Satanand Burla <satananda.burla@caviumnetworks.com>
3204 M: Felix Manlunas <felix.manlunas@caviumnetworks.com>
3205 M: Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
3206 L: netdev@vger.kernel.org
3207 W: http://www.cavium.com
3209 F: drivers/net/ethernet/cavium/liquidio/
3212 M: Jan Glauber <jglauber@cavium.com>
3213 M: David Daney <david.daney@cavium.com>
3214 M: Steven J. Hill <Steven.Hill@cavium.com>
3215 W: http://www.cavium.com
3217 F: drivers/mmc/host/cavium*
3219 CAVIUM OCTEON-TX CRYPTO DRIVER
3220 M: George Cherian <george.cherian@cavium.com>
3221 L: linux-crypto@vger.kernel.org
3222 W: http://www.cavium.com
3224 F: drivers/crypto/cavium/cpt/
3226 CAVIUM THUNDERX2 ARM64 SOC
3227 M: Robert Richter <rrichter@cavium.com>
3228 M: Jayachandran C <jnair@caviumnetworks.com>
3229 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3231 F: arch/arm64/boot/dts/cavium/thunder2-99xx*
3232 F: Documentation/devicetree/bindings/arm/cavium-thunder2.txt
3234 CC2520 IEEE-802.15.4 RADIO DRIVER
3235 M: Varka Bhadram <varkabhadram@gmail.com>
3236 L: linux-wpan@vger.kernel.org
3238 F: drivers/net/ieee802154/cc2520.c
3239 F: include/linux/spi/cc2520.h
3240 F: Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
3242 CCREE ARM TRUSTZONE CRYPTOCELL 700 REE DRIVER
3243 M: Gilad Ben-Yossef <gilad@benyossef.com>
3244 L: linux-crypto@vger.kernel.org
3245 L: driverdev-devel@linuxdriverproject.org
3247 F: drivers/staging/ccree/
3248 W: https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
3251 M: Hans Verkuil <hans.verkuil@cisco.com>
3252 L: linux-media@vger.kernel.org
3253 T: git git://linuxtv.org/media_tree.git
3254 W: http://linuxtv.org
3256 F: Documentation/media/kapi/cec-core.rst
3257 F: Documentation/media/uapi/cec
3258 F: drivers/media/cec/
3259 F: drivers/media/rc/keymaps/rc-cec.c
3260 F: include/media/cec.h
3261 F: include/media/cec-notifier.h
3262 F: include/uapi/linux/cec.h
3263 F: include/uapi/linux/cec-funcs.h
3264 F: Documentation/devicetree/bindings/media/cec.txt
3266 CELL BROADBAND ENGINE ARCHITECTURE
3267 M: Arnd Bergmann <arnd@arndb.de>
3268 L: linuxppc-dev@lists.ozlabs.org
3269 W: http://www.ibm.com/developerworks/power/cell/
3271 F: arch/powerpc/include/asm/cell*.h
3272 F: arch/powerpc/include/asm/spu*.h
3273 F: arch/powerpc/include/uapi/asm/spu*.h
3274 F: arch/powerpc/oprofile/*cell*
3275 F: arch/powerpc/platforms/cell/
3277 CEPH COMMON CODE (LIBCEPH)
3278 M: Ilya Dryomov <idryomov@gmail.com>
3279 M: "Yan, Zheng" <zyan@redhat.com>
3280 M: Sage Weil <sage@redhat.com>
3281 L: ceph-devel@vger.kernel.org
3283 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3284 T: git git://github.com/ceph/ceph-client.git
3287 F: include/linux/ceph/
3288 F: include/linux/crush/
3290 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
3291 M: "Yan, Zheng" <zyan@redhat.com>
3292 M: Sage Weil <sage@redhat.com>
3293 M: Ilya Dryomov <idryomov@gmail.com>
3294 L: ceph-devel@vger.kernel.org
3296 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3297 T: git git://github.com/ceph/ceph-client.git
3299 F: Documentation/filesystems/ceph.txt
3302 CERTIFICATE HANDLING:
3303 M: David Howells <dhowells@redhat.com>
3304 M: David Woodhouse <dwmw2@infradead.org>
3305 L: keyrings@vger.kernel.org
3307 F: Documentation/module-signing.txt
3309 F: scripts/sign-file.c
3310 F: scripts/extract-cert.c
3312 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
3313 L: linux-usb@vger.kernel.org
3315 F: Documentation/usb/WUSB-Design-overview.txt
3316 F: Documentation/usb/wusb-cbaf
3317 F: drivers/usb/host/hwa-hc.c
3318 F: drivers/usb/host/whci/
3319 F: drivers/usb/wusbcore/
3320 F: include/linux/usb/wusb*
3322 CFAG12864B LCD DRIVER
3323 M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3324 W: http://miguelojeda.es/auxdisplay.htm
3325 W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
3327 F: drivers/auxdisplay/cfag12864b.c
3328 F: include/linux/cfag12864b.h
3330 CFAG12864BFB LCD FRAMEBUFFER DRIVER
3331 M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3332 W: http://miguelojeda.es/auxdisplay.htm
3333 W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
3335 F: drivers/auxdisplay/cfag12864bfb.c
3336 F: include/linux/cfag12864b.h
3338 CFG80211 and NL80211
3339 M: Johannes Berg <johannes@sipsolutions.net>
3340 L: linux-wireless@vger.kernel.org
3341 W: http://wireless.kernel.org/
3342 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
3343 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
3345 F: include/uapi/linux/nl80211.h
3346 F: include/net/cfg80211.h
3348 X: net/wireless/wext*
3350 CHAR and MISC DRIVERS
3351 M: Arnd Bergmann <arnd@arndb.de>
3352 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3353 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
3357 F: include/linux/miscdevice.h
3360 M: Andy Whitcroft <apw@canonical.com>
3361 M: Joe Perches <joe@perches.com>
3363 F: scripts/checkpatch.pl
3365 CHINESE DOCUMENTATION
3366 M: Harry Wei <harryxiyou@gmail.com>
3367 L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
3368 L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
3370 F: Documentation/translations/zh_CN/
3372 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
3373 M: Peter Chen <Peter.Chen@nxp.com>
3374 T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
3375 L: linux-usb@vger.kernel.org
3377 F: drivers/usb/chipidea/
3379 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
3380 M: Hans de Goede <hdegoede@redhat.com>
3381 L: linux-input@vger.kernel.org
3383 F: Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
3384 F: drivers/input/touchscreen/chipone_icn8318.c
3386 CHROME HARDWARE PLATFORM SUPPORT
3387 M: Benson Leung <bleung@chromium.org>
3388 M: Olof Johansson <olof@lixom.net>
3390 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bleung/chrome-platform.git
3391 F: drivers/platform/chrome/
3393 CIRRUS LOGIC AUDIO CODEC DRIVERS
3394 M: Brian Austin <brian.austin@cirrus.com>
3395 M: Paul Handrigan <Paul.Handrigan@cirrus.com>
3396 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3398 F: sound/soc/codecs/cs*
3400 CIRRUS LOGIC EP93XX ETHERNET DRIVER
3401 M: Hartley Sweeten <hsweeten@visionengravers.com>
3402 L: netdev@vger.kernel.org
3404 F: drivers/net/ethernet/cirrus/ep93xx_eth.c
3406 CISCO FCOE HBA DRIVER
3407 M: Satish Kharat <satishkh@cisco.com>
3408 M: Sesidhar Baddela <sebaddel@cisco.com>
3409 M: Karan Tilak Kumar <kartilak@cisco.com>
3410 L: linux-scsi@vger.kernel.org
3412 F: drivers/scsi/fnic/
3414 CISCO SCSI HBA DRIVER
3415 M: Karan Tilak Kumar <kartilak@cisco.com>
3416 M: Sesidhar Baddela <sebaddel@cisco.com>
3417 L: linux-scsi@vger.kernel.org
3419 F: drivers/scsi/snic/
3421 CISCO VIC ETHERNET NIC DRIVER
3422 M: Christian Benvenuti <benve@cisco.com>
3423 M: Govindarajulu Varadarajan <_govind@gmx.com>
3424 M: Neel Patel <neepatel@cisco.com>
3426 F: drivers/net/ethernet/cisco/enic/
3428 CISCO VIC LOW LATENCY NIC DRIVER
3429 M: Christian Benvenuti <benve@cisco.com>
3430 M: Dave Goodell <dgoodell@cisco.com>
3432 F: drivers/infiniband/hw/usnic/
3435 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3436 L: linux-kernel@vger.kernel.org
3439 F: include/linux/cleancache.h
3442 M: Russell King <linux@armlinux.org.uk>
3443 L: linux-clk@vger.kernel.org
3445 F: include/linux/clk.h
3447 CLOCKSOURCE, CLOCKEVENT DRIVERS
3448 M: Daniel Lezcano <daniel.lezcano@linaro.org>
3449 M: Thomas Gleixner <tglx@linutronix.de>
3450 L: linux-kernel@vger.kernel.org
3451 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
3453 F: drivers/clocksource/
3454 F: Documentation/devicetree/bindings/timer/
3457 M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
3458 M: Daniel Oliveira Nascimento <don@syst.com.br>
3459 L: platform-driver-x86@vger.kernel.org
3461 F: drivers/platform/x86/classmate-laptop.c
3464 M: Hans Verkuil <hans.verkuil@cisco.com>
3465 L: linux-media@vger.kernel.org
3466 T: git git://linuxtv.org/media_tree.git
3467 W: https://linuxtv.org
3469 F: drivers/media/pci/cobalt/
3471 COCCINELLE/Semantic Patches (SmPL)
3472 M: Julia Lawall <Julia.Lawall@lip6.fr>
3473 M: Gilles Muller <Gilles.Muller@lip6.fr>
3474 M: Nicolas Palix <nicolas.palix@imag.fr>
3475 M: Michal Marek <michal.lkml@markovi.net>
3476 L: cocci@systeme.lip6.fr (moderated for non-subscribers)
3477 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
3478 W: http://coccinelle.lip6.fr/
3480 F: Documentation/dev-tools/coccinelle.rst
3481 F: scripts/coccinelle/
3482 F: scripts/coccicheck
3485 M: Jan Harkes <jaharkes@cs.cmu.edu>
3487 L: codalist@coda.cs.cmu.edu
3488 W: http://www.coda.cs.cmu.edu/
3490 F: Documentation/filesystems/coda.txt
3492 F: include/linux/coda*.h
3493 F: include/uapi/linux/coda*.h
3495 CODA V4L2 MEM2MEM DRIVER
3496 M: Philipp Zabel <p.zabel@pengutronix.de>
3497 L: linux-media@vger.kernel.org
3499 F: Documentation/devicetree/bindings/media/coda.txt
3500 F: drivers/media/platform/coda/
3502 COMMON CLK FRAMEWORK
3503 M: Michael Turquette <mturquette@baylibre.com>
3504 M: Stephen Boyd <sboyd@codeaurora.org>
3505 L: linux-clk@vger.kernel.org
3506 Q: http://patchwork.kernel.org/project/linux-clk/list/
3507 T: git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
3509 F: Documentation/devicetree/bindings/clock/
3511 X: drivers/clk/clkdev.c
3512 F: include/linux/clk-pr*
3513 F: include/linux/clk/
3515 COMMON INTERNET FILE SYSTEM (CIFS)
3516 M: Steve French <sfrench@samba.org>
3517 L: linux-cifs@vger.kernel.org
3518 L: samba-technical@lists.samba.org (moderated for non-subscribers)
3519 W: http://linux-cifs.samba.org/
3520 T: git git://git.samba.org/sfrench/cifs-2.6.git
3522 F: Documentation/filesystems/cifs/
3525 COMPACTPCI HOTPLUG CORE
3526 M: Scott Murray <scott@spiteful.org>
3527 L: linux-pci@vger.kernel.org
3529 F: drivers/pci/hotplug/cpci_hotplug*
3531 COMPACTPCI HOTPLUG GENERIC DRIVER
3532 M: Scott Murray <scott@spiteful.org>
3533 L: linux-pci@vger.kernel.org
3535 F: drivers/pci/hotplug/cpcihp_generic.c
3537 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
3538 M: Scott Murray <scott@spiteful.org>
3539 L: linux-pci@vger.kernel.org
3541 F: drivers/pci/hotplug/cpcihp_zt5550.*
3543 COMPAL LAPTOP SUPPORT
3544 M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
3545 L: platform-driver-x86@vger.kernel.org
3547 F: drivers/platform/x86/compal-laptop.c
3549 CONEXANT ACCESSRUNNER USB DRIVER
3550 L: accessrunner-general@lists.sourceforge.net
3551 W: http://accessrunner.sourceforge.net/
3553 F: drivers/usb/atm/cxacru.c
3556 M: Joel Becker <jlbec@evilplan.org>
3557 M: Christoph Hellwig <hch@lst.de>
3558 T: git git://git.infradead.org/users/hch/configfs.git
3561 F: include/linux/configfs.h
3564 M: Evgeniy Polyakov <zbr@ioremap.net>
3565 L: netdev@vger.kernel.org
3567 F: drivers/connector/
3569 CONTROL GROUP (CGROUP)
3570 M: Tejun Heo <tj@kernel.org>
3571 M: Li Zefan <lizefan@huawei.com>
3572 M: Johannes Weiner <hannes@cmpxchg.org>
3573 L: cgroups@vger.kernel.org
3574 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3576 F: Documentation/cgroup*
3577 F: include/linux/cgroup*
3580 CONTROL GROUP - CPUSET
3581 M: Li Zefan <lizefan@huawei.com>
3582 L: cgroups@vger.kernel.org
3583 W: http://www.bullopensource.org/cpuset/
3584 W: http://oss.sgi.com/projects/cpusets/
3585 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3587 F: Documentation/cgroup-v1/cpusets.txt
3588 F: include/linux/cpuset.h
3591 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
3592 M: Johannes Weiner <hannes@cmpxchg.org>
3593 M: Michal Hocko <mhocko@kernel.org>
3594 M: Vladimir Davydov <vdavydov.dev@gmail.com>
3595 L: cgroups@vger.kernel.org
3596 L: linux-mm@kvack.org
3601 CORETEMP HARDWARE MONITORING DRIVER
3602 M: Fenghua Yu <fenghua.yu@intel.com>
3603 L: linux-hwmon@vger.kernel.org
3605 F: Documentation/hwmon/coretemp
3606 F: drivers/hwmon/coretemp.c
3608 COSA/SRP SYNC SERIAL DRIVER
3609 M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
3610 W: http://www.fi.muni.cz/~kas/cosa/
3612 F: drivers/net/wan/cosa*
3614 CPMAC ETHERNET DRIVER
3615 M: Florian Fainelli <f.fainelli@gmail.com>
3616 L: netdev@vger.kernel.org
3618 F: drivers/net/ethernet/ti/cpmac.c
3620 CPU FREQUENCY DRIVERS
3621 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
3622 M: Viresh Kumar <viresh.kumar@linaro.org>
3623 L: linux-pm@vger.kernel.org
3625 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3626 T: git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
3627 B: https://bugzilla.kernel.org
3628 F: Documentation/cpu-freq/
3629 F: Documentation/devicetree/bindings/cpufreq/
3631 F: include/linux/cpufreq.h
3632 F: tools/testing/selftests/cpufreq/
3634 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
3635 M: Viresh Kumar <viresh.kumar@linaro.org>
3636 M: Sudeep Holla <sudeep.holla@arm.com>
3637 L: linux-pm@vger.kernel.org
3638 W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php
3640 F: drivers/cpufreq/arm_big_little.h
3641 F: drivers/cpufreq/arm_big_little.c
3642 F: drivers/cpufreq/arm_big_little_dt.c
3644 CPU POWER MONITORING SUBSYSTEM
3645 M: Thomas Renninger <trenn@suse.com>
3646 M: Shuah Khan <shuahkh@osg.samsung.com>
3647 M: Shuah Khan <shuah@kernel.org>
3648 L: linux-pm@vger.kernel.org
3650 F: tools/power/cpupower/
3653 M: "H. Peter Anvin" <hpa@zytor.com>
3655 F: arch/x86/kernel/cpuid.c
3656 F: arch/x86/kernel/msr.c
3658 CPUIDLE DRIVER - ARM BIG LITTLE
3659 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
3660 M: Daniel Lezcano <daniel.lezcano@linaro.org>
3661 L: linux-pm@vger.kernel.org
3662 L: linux-arm-kernel@lists.infradead.org
3663 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3665 F: drivers/cpuidle/cpuidle-big_little.c
3667 CPUIDLE DRIVER - ARM EXYNOS
3668 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
3669 M: Daniel Lezcano <daniel.lezcano@linaro.org>
3670 M: Kukjin Kim <kgene@kernel.org>
3671 L: linux-pm@vger.kernel.org
3672 L: linux-samsung-soc@vger.kernel.org
3674 F: drivers/cpuidle/cpuidle-exynos.c
3675 F: arch/arm/mach-exynos/pm.c
3678 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
3679 M: Daniel Lezcano <daniel.lezcano@linaro.org>
3680 L: linux-pm@vger.kernel.org
3682 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3683 B: https://bugzilla.kernel.org
3684 F: drivers/cpuidle/*
3685 F: include/linux/cpuidle.h
3688 W: http://sourceforge.net/projects/cramfs/
3689 S: Orphan / Obsolete
3690 F: Documentation/filesystems/cramfs.txt
3694 M: Mikael Starvik <starvik@axis.com>
3695 M: Jesper Nilsson <jesper.nilsson@axis.com>
3696 L: linux-cris-kernel@axis.com
3697 W: http://developer.axis.com
3698 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesper/cris.git
3701 F: drivers/tty/serial/crisv10.*
3704 M: Herbert Xu <herbert@gondor.apana.org.au>
3705 M: "David S. Miller" <davem@davemloft.net>
3706 L: linux-crypto@vger.kernel.org
3707 T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
3708 T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
3710 F: Documentation/crypto/
3711 F: Documentation/devicetree/bindings/crypto/
3716 F: include/linux/crypto*
3718 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
3719 M: Neil Horman <nhorman@tuxdriver.com>
3720 L: linux-crypto@vger.kernel.org
3722 F: crypto/ansi_cprng.c
3726 M: Hans Verkuil <hverkuil@xs4all.nl>
3727 L: linux-media@vger.kernel.org
3728 T: git git://linuxtv.org/media_tree.git
3729 W: http://linuxtv.org
3731 F: drivers/media/i2c/cs3308.c
3732 F: drivers/media/i2c/cs3308.h
3734 CS5535 Audio ALSA driver
3735 M: Jaya Kumar <jayakumar.alsa@gmail.com>
3737 F: sound/pci/cs5535audio/
3740 M: Solomon Peachy <pizza@shaftnet.org>
3742 F: drivers/net/wireless/st/cw1200/
3744 CX18 VIDEO4LINUX DRIVER
3745 M: Andy Walls <awalls@md.metrocast.net>
3746 L: ivtv-devel@ivtvdriver.org (subscribers-only)
3747 L: linux-media@vger.kernel.org
3748 T: git git://linuxtv.org/media_tree.git
3749 W: https://linuxtv.org
3750 W: http://www.ivtvdriver.org/index.php/Cx18
3752 F: Documentation/media/v4l-drivers/cx18*
3753 F: drivers/media/pci/cx18/
3754 F: include/uapi/linux/ivtv*
3756 CX2341X MPEG ENCODER HELPER MODULE
3757 M: Hans Verkuil <hverkuil@xs4all.nl>
3758 L: linux-media@vger.kernel.org
3759 T: git git://linuxtv.org/media_tree.git
3760 W: https://linuxtv.org
3762 F: drivers/media/common/cx2341x*
3763 F: include/media/cx2341x*
3765 CX24120 MEDIA DRIVER
3766 M: Jemma Denson <jdenson@gmail.com>
3767 M: Patrick Boettcher <patrick.boettcher@posteo.de>
3768 L: linux-media@vger.kernel.org
3769 W: https://linuxtv.org
3770 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3772 F: drivers/media/dvb-frontends/cx24120*
3774 CX88 VIDEO4LINUX DRIVER
3775 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
3776 M: Mauro Carvalho Chehab <mchehab@kernel.org>
3777 L: linux-media@vger.kernel.org
3778 W: https://linuxtv.org
3779 T: git git://linuxtv.org/media_tree.git
3781 F: Documentation/media/v4l-drivers/cx88*
3782 F: drivers/media/pci/cx88/
3784 CXD2820R MEDIA DRIVER
3785 M: Antti Palosaari <crope@iki.fi>
3786 L: linux-media@vger.kernel.org
3787 W: https://linuxtv.org
3788 W: http://palosaari.fi/linux/
3789 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3790 T: git git://linuxtv.org/anttip/media_tree.git
3792 F: drivers/media/dvb-frontends/cxd2820r*
3794 CXGB3 ETHERNET DRIVER (CXGB3)
3795 M: Santosh Raspatur <santosh@chelsio.com>
3796 L: netdev@vger.kernel.org
3797 W: http://www.chelsio.com
3799 F: drivers/net/ethernet/chelsio/cxgb3/
3801 CXGB3 ISCSI DRIVER (CXGB3I)
3802 M: Karen Xie <kxie@chelsio.com>
3803 L: linux-scsi@vger.kernel.org
3804 W: http://www.chelsio.com
3806 F: drivers/scsi/cxgbi/cxgb3i
3808 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
3809 M: Steve Wise <swise@chelsio.com>
3810 L: linux-rdma@vger.kernel.org
3811 W: http://www.openfabrics.org
3813 F: drivers/infiniband/hw/cxgb3/
3814 F: include/uapi/rdma/cxgb3-abi.h
3816 CXGB4 CRYPTO DRIVER (chcr)
3817 M: Harsh Jain <harsh@chelsio.com>
3818 L: linux-crypto@vger.kernel.org
3819 W: http://www.chelsio.com
3821 F: drivers/crypto/chelsio
3823 CXGB4 ETHERNET DRIVER (CXGB4)
3824 M: Ganesh Goudar <ganeshgr@chelsio.com>
3825 L: netdev@vger.kernel.org
3826 W: http://www.chelsio.com
3828 F: drivers/net/ethernet/chelsio/cxgb4/
3830 CXGB4 ISCSI DRIVER (CXGB4I)
3831 M: Karen Xie <kxie@chelsio.com>
3832 L: linux-scsi@vger.kernel.org
3833 W: http://www.chelsio.com
3835 F: drivers/scsi/cxgbi/cxgb4i
3837 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3838 M: Steve Wise <swise@chelsio.com>
3839 L: linux-rdma@vger.kernel.org
3840 W: http://www.openfabrics.org
3842 F: drivers/infiniband/hw/cxgb4/
3843 F: include/uapi/rdma/cxgb4-abi.h
3845 CXGB4VF ETHERNET DRIVER (CXGB4VF)
3846 M: Casey Leedom <leedom@chelsio.com>
3847 L: netdev@vger.kernel.org
3848 W: http://www.chelsio.com
3850 F: drivers/net/ethernet/chelsio/cxgb4vf/
3852 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3853 M: Frederic Barrat <fbarrat@linux.vnet.ibm.com>
3854 M: Andrew Donnellan <andrew.donnellan@au1.ibm.com>
3855 L: linuxppc-dev@lists.ozlabs.org
3857 F: arch/powerpc/platforms/powernv/pci-cxl.c
3858 F: drivers/misc/cxl/
3859 F: include/misc/cxl*
3860 F: include/uapi/misc/cxl.h
3861 F: Documentation/powerpc/cxl.txt
3862 F: Documentation/ABI/testing/sysfs-class-cxl
3864 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
3865 M: Manoj N. Kumar <manoj@linux.vnet.ibm.com>
3866 M: Matthew R. Ochs <mrochs@linux.vnet.ibm.com>
3867 M: Uma Krishnan <ukrishn@linux.vnet.ibm.com>
3868 L: linux-scsi@vger.kernel.org
3870 F: drivers/scsi/cxlflash/
3871 F: include/uapi/scsi/cxlflash_ioctls.h
3872 F: Documentation/powerpc/cxlflash.txt
3875 M: Russell King <linux@armlinux.org.uk>
3876 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3877 W: http://www.armlinux.org.uk/
3879 F: drivers/video/fbdev/cyber2000fb.*
3881 CYCLADES ASYNC MUX DRIVER
3882 W: http://www.cyclades.com/
3884 F: drivers/tty/cyclades.c
3885 F: include/linux/cyclades.h
3886 F: include/uapi/linux/cyclades.h
3888 CYCLADES PC300 DRIVER
3889 W: http://www.cyclades.com/
3891 F: drivers/net/wan/pc300*
3893 CYPRESS_FIRMWARE MEDIA DRIVER
3894 M: Antti Palosaari <crope@iki.fi>
3895 L: linux-media@vger.kernel.org
3896 W: https://linuxtv.org
3897 W: http://palosaari.fi/linux/
3898 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3899 T: git git://linuxtv.org/anttip/media_tree.git
3901 F: drivers/media/common/cypress_firmware*
3903 CYTTSP TOUCHSCREEN DRIVER
3904 M: Ferruh Yigit <fery@cypress.com>
3905 L: linux-input@vger.kernel.org
3907 F: drivers/input/touchscreen/cyttsp*
3908 F: include/linux/input/cyttsp.h
3910 D-LINK DIR-685 TOUCHKEYS DRIVER
3911 M: Linus Walleij <linus.walleij@linaro.org>
3912 L: linux-input@vger.kernel.org
3914 F: drivers/input/dlink-dir685-touchkeys.c
3916 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3917 M: Joshua Kinard <kumba@gentoo.org>
3919 F: drivers/rtc/rtc-ds1685.c
3920 F: include/linux/rtc/ds1685.h
3922 DAMA SLAVE for AX.25
3923 M: Joerg Reuter <jreuter@yaina.de>
3924 W: http://yaina.de/jreuter/
3925 W: http://www.qsl.net/dl1bke/
3926 L: linux-hams@vger.kernel.org
3928 F: net/ax25/af_ax25.c
3929 F: net/ax25/ax25_dev.c
3930 F: net/ax25/ax25_ds_*
3931 F: net/ax25/ax25_in.c
3932 F: net/ax25/ax25_out.c
3933 F: net/ax25/ax25_timer.c
3934 F: net/ax25/sysctl_net_ax25.c
3936 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
3937 L: netdev@vger.kernel.org
3939 F: Documentation/networking/dmfe.txt
3940 F: drivers/net/ethernet/dec/tulip/dmfe.c
3942 DC390/AM53C974 SCSI driver
3943 M: Hannes Reinecke <hare@suse.com>
3944 L: linux-scsi@vger.kernel.org
3946 F: drivers/scsi/am53c974.c
3949 M: Oliver Neukum <oliver@neukum.org>
3950 M: Ali Akcaagac <aliakc@web.de>
3951 M: Jamie Lenehan <lenehan@twibble.org>
3952 L: dc395x@twibble.org
3953 W: http://twibble.org/dist/dc395x/
3954 W: http://lists.twibble.org/mailman/listinfo/dc395x/
3956 F: Documentation/scsi/dc395x.txt
3957 F: drivers/scsi/dc395x.*
3960 M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
3961 L: dccp@vger.kernel.org
3962 W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
3964 F: include/linux/dccp.h
3965 F: include/uapi/linux/dccp.h
3966 F: include/linux/tfrc.h
3969 DECnet NETWORK LAYER
3970 W: http://linux-decnet.sourceforge.net
3971 L: linux-decnet-user@lists.sourceforge.net
3973 F: Documentation/networking/decnet.txt
3976 DECSTATION PLATFORM SUPPORT
3977 M: "Maciej W. Rozycki" <macro@linux-mips.org>
3978 L: linux-mips@linux-mips.org
3979 W: http://www.linux-mips.org/wiki/DECstation
3982 F: arch/mips/include/asm/dec/
3983 F: arch/mips/include/asm/mach-dec/
3985 DEFXX FDDI NETWORK DRIVER
3986 M: "Maciej W. Rozycki" <macro@linux-mips.org>
3988 F: drivers/net/fddi/defxx.*
3991 M: Matthew Garrett <mjg59@srcf.ucam.org>
3992 M: Pali Rohár <pali.rohar@gmail.com>
3993 L: platform-driver-x86@vger.kernel.org
3995 F: drivers/platform/x86/dell-laptop.c
3997 DELL LAPTOP FREEFALL DRIVER
3998 M: Pali Rohár <pali.rohar@gmail.com>
4000 F: drivers/platform/x86/dell-smo8800.c
4002 DELL LAPTOP RBTN DRIVER
4003 M: Pali Rohár <pali.rohar@gmail.com>
4005 F: drivers/platform/x86/dell-rbtn.*
4007 DELL LAPTOP SMM DRIVER
4008 M: Pali Rohár <pali.rohar@gmail.com>
4010 F: drivers/hwmon/dell-smm-hwmon.c
4011 F: include/uapi/linux/i8k.h
4013 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
4014 M: Doug Warzecha <Douglas_Warzecha@dell.com>
4016 F: Documentation/dcdbas.txt
4017 F: drivers/firmware/dcdbas.*
4019 DELL WMI EXTRAS DRIVER
4020 M: Matthew Garrett <mjg59@srcf.ucam.org>
4021 M: Pali Rohár <pali.rohar@gmail.com>
4023 F: drivers/platform/x86/dell-wmi.c
4025 DELTA ST MEDIA DRIVER
4026 M: Hugues Fruchet <hugues.fruchet@st.com>
4027 L: linux-media@vger.kernel.org
4028 T: git git://linuxtv.org/media_tree.git
4029 W: https://linuxtv.org
4031 F: drivers/media/platform/sti/delta
4034 M: Masahiro Yamada <yamada.masahiro@socionext.com>
4035 L: linux-mtd@lists.infradead.org
4037 F: drivers/mtd/nand/denali*
4039 DESIGNWARE USB2 DRD IP DRIVER
4040 M: John Youn <johnyoun@synopsys.com>
4041 L: linux-usb@vger.kernel.org
4042 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4044 F: drivers/usb/dwc2/
4046 DESIGNWARE USB3 DRD IP DRIVER
4047 M: Felipe Balbi <balbi@kernel.org>
4048 L: linux-usb@vger.kernel.org
4049 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4051 F: drivers/usb/dwc3/
4053 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
4054 M: Andreas Klinger <ak@it-klinger.de>
4055 L: linux-iio@vger.kernel.org
4057 F: drivers/iio/proximity/srf*.c
4059 DEVICE COREDUMP (DEV_COREDUMP)
4060 M: Johannes Berg <johannes@sipsolutions.net>
4061 L: linux-kernel@vger.kernel.org
4063 F: drivers/base/devcoredump.c
4064 F: include/linux/devcoredump.h
4066 DEVICE FREQUENCY (DEVFREQ)
4067 M: MyungJoo Ham <myungjoo.ham@samsung.com>
4068 M: Kyungmin Park <kyungmin.park@samsung.com>
4069 R: Chanwoo Choi <cw00.choi@samsung.com>
4070 L: linux-pm@vger.kernel.org
4071 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
4074 F: include/linux/devfreq.h
4075 F: Documentation/devicetree/bindings/devfreq/
4077 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
4078 M: Chanwoo Choi <cw00.choi@samsung.com>
4079 L: linux-pm@vger.kernel.org
4080 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
4082 F: drivers/devfreq/event/
4083 F: drivers/devfreq/devfreq-event.c
4084 F: include/linux/devfreq-event.h
4085 F: Documentation/devicetree/bindings/devfreq/event/
4087 DEVICE NUMBER REGISTRY
4088 M: Torben Mathiasen <device@lanana.org>
4089 W: http://lanana.org/docs/device-list/index.html
4093 M: Alasdair Kergon <agk@redhat.com>
4094 M: Mike Snitzer <snitzer@redhat.com>
4095 M: dm-devel@redhat.com
4096 L: dm-devel@redhat.com
4097 W: http://sources.redhat.com/dm
4098 Q: http://patchwork.kernel.org/project/dm-devel/list/
4099 T: git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
4100 T: quilt http://people.redhat.com/agk/patches/linux/editing/
4102 F: Documentation/device-mapper/
4103 F: drivers/md/Makefile
4104 F: drivers/md/Kconfig
4106 F: drivers/md/persistent-data/
4107 F: include/linux/device-mapper.h
4108 F: include/linux/dm-*.h
4109 F: include/uapi/linux/dm-*.h
4112 M: Jiri Pirko <jiri@mellanox.com>
4113 L: netdev@vger.kernel.org
4115 F: net/core/devlink.c
4116 F: include/net/devlink.h
4117 F: include/uapi/linux/devlink.h
4119 DIALOG SEMICONDUCTOR DRIVERS
4120 M: Support Opensource <support.opensource@diasemi.com>
4121 W: http://www.dialog-semiconductor.com/products
4123 F: Documentation/hwmon/da90??
4124 F: Documentation/devicetree/bindings/mfd/da90*.txt
4125 F: Documentation/devicetree/bindings/input/da90??-onkey.txt
4126 F: Documentation/devicetree/bindings/thermal/da90??-thermal.txt
4127 F: Documentation/devicetree/bindings/regulator/da92*.txt
4128 F: Documentation/devicetree/bindings/watchdog/da92??-wdt.txt
4129 F: Documentation/devicetree/bindings/sound/da[79]*.txt
4130 F: drivers/gpio/gpio-da90??.c
4131 F: drivers/hwmon/da90??-hwmon.c
4132 F: drivers/iio/adc/da91??-*.c
4133 F: drivers/input/misc/da90??_onkey.c
4134 F: drivers/input/touchscreen/da9052_tsi.c
4135 F: drivers/leds/leds-da90??.c
4136 F: drivers/mfd/da903x.c
4137 F: drivers/mfd/da90??-*.c
4138 F: drivers/mfd/da91??-*.c
4139 F: drivers/power/supply/da9052-battery.c
4140 F: drivers/power/supply/da91??-*.c
4141 F: drivers/regulator/da903x.c
4142 F: drivers/regulator/da9???-regulator.[ch]
4143 F: drivers/thermal/da90??-thermal.c
4144 F: drivers/rtc/rtc-da90??.c
4145 F: drivers/video/backlight/da90??_bl.c
4146 F: drivers/watchdog/da90??_wdt.c
4147 F: include/linux/mfd/da903x.h
4148 F: include/linux/mfd/da9052/
4149 F: include/linux/mfd/da9055/
4150 F: include/linux/mfd/da9062/
4151 F: include/linux/mfd/da9063/
4152 F: include/linux/mfd/da9150/
4153 F: include/linux/regulator/da9211.h
4154 F: include/sound/da[79]*.h
4155 F: sound/soc/codecs/da[79]*.[ch]
4157 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
4158 M: William Breathitt Gray <vilhelm.gray@gmail.com>
4159 L: linux-gpio@vger.kernel.org
4161 F: drivers/gpio/gpio-gpio-mm.c
4163 DIGI NEO AND CLASSIC PCI PRODUCTS
4164 M: Lidza Louina <lidza.louina@gmail.com>
4165 M: Mark Hounschell <markh@compro.net>
4166 L: driverdev-devel@linuxdriverproject.org
4168 F: drivers/staging/dgnc/
4170 DIOLAN U2C-12 I2C DRIVER
4171 M: Guenter Roeck <linux@roeck-us.net>
4172 L: linux-i2c@vger.kernel.org
4174 F: drivers/i2c/busses/i2c-diolan-u2c.c
4177 M: Matthew Wilcox <mawilcox@microsoft.com>
4178 M: Ross Zwisler <ross.zwisler@linux.intel.com>
4179 L: linux-fsdevel@vger.kernel.org
4182 F: include/linux/dax.h
4183 F: include/trace/events/fs_dax.h
4185 DIRECTORY NOTIFICATION (DNOTIFY)
4186 M: Jan Kara <jack@suse.cz>
4187 R: Amir Goldstein <amir73il@gmail.com>
4188 L: linux-fsdevel@vger.kernel.org
4190 F: Documentation/filesystems/dnotify.txt
4191 F: fs/notify/dnotify/
4192 F: include/linux/dnotify.h
4194 DISK GEOMETRY AND PARTITION HANDLING
4195 M: Andries Brouwer <aeb@cwi.nl>
4196 W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
4197 W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
4198 W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
4202 M: Jan Kara <jack@suse.com>
4204 F: Documentation/filesystems/quota.txt
4206 F: include/linux/quota*.h
4207 F: include/uapi/linux/quota*.h
4209 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
4210 M: Bernie Thompson <bernie@plugable.com>
4211 L: linux-fbdev@vger.kernel.org
4213 W: http://plugable.com/category/projects/udlfb/
4214 F: drivers/video/fbdev/udlfb.c
4215 F: include/video/udlfb.h
4216 F: Documentation/fb/udlfb.txt
4218 DISTRIBUTED LOCK MANAGER (DLM)
4219 M: Christine Caulfield <ccaulfie@redhat.com>
4220 M: David Teigland <teigland@redhat.com>
4221 L: cluster-devel@redhat.com
4222 W: http://sources.redhat.com/cluster/
4223 T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
4227 DMA BUFFER SHARING FRAMEWORK
4228 M: Sumit Semwal <sumit.semwal@linaro.org>
4230 L: linux-media@vger.kernel.org
4231 L: dri-devel@lists.freedesktop.org
4232 L: linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
4234 F: include/linux/dma-buf*
4235 F: include/linux/reservation.h
4236 F: include/linux/*fence.h
4237 F: Documentation/driver-api/dma-buf.rst
4238 T: git git://anongit.freedesktop.org/drm/drm-misc
4240 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
4241 M: Vinod Koul <vinod.koul@intel.com>
4242 L: dmaengine@vger.kernel.org
4243 Q: https://patchwork.kernel.org/project/linux-dmaengine/list/
4246 F: include/linux/dmaengine.h
4247 F: Documentation/devicetree/bindings/dma/
4248 F: Documentation/driver-api/dmaengine/
4249 T: git git://git.infradead.org/users/vkoul/slave-dma.git
4252 M: Christoph Hellwig <hch@lst.de>
4253 M: Marek Szyprowski <m.szyprowski@samsung.com>
4254 R: Robin Murphy <robin.murphy@arm.com>
4255 L: iommu@lists.linux-foundation.org
4256 T: git git://git.infradead.org/users/hch/dma-mapping.git
4257 W: http://git.infradead.org/users/hch/dma-mapping.git
4262 F: drivers/base/dma-mapping.c
4263 F: drivers/base/dma-coherent.c
4264 F: include/linux/dma-mapping.h
4266 DME1737 HARDWARE MONITOR DRIVER
4267 M: Juerg Haefliger <juergh@gmail.com>
4268 L: linux-hwmon@vger.kernel.org
4270 F: Documentation/hwmon/dme1737
4271 F: drivers/hwmon/dme1737.c
4274 M: Jean Delvare <jdelvare@suse.com>
4276 T: quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
4277 F: Documentation/ABI/testing/sysfs-firmware-dmi-tables
4278 F: drivers/firmware/dmi-id.c
4279 F: drivers/firmware/dmi_scan.c
4280 F: include/linux/dmi.h
4283 M: Jonathan Corbet <corbet@lwn.net>
4284 L: linux-doc@vger.kernel.org
4287 F: scripts/kernel-doc
4288 X: Documentation/ABI/
4289 X: Documentation/devicetree/
4290 X: Documentation/acpi
4291 X: Documentation/power
4292 X: Documentation/spi
4293 X: Documentation/media
4294 T: git git://git.lwn.net/linux.git docs-next
4296 DONGWOON DW9714 LENS VOICE COIL DRIVER
4297 M: Sakari Ailus <sakari.ailus@linux.intel.com>
4298 L: linux-media@vger.kernel.org
4299 T: git git://linuxtv.org/media_tree.git
4301 F: drivers/media/i2c/dw9714.c
4304 M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
4305 L: blinux-list@redhat.com
4307 F: drivers/char/dtlk.c
4308 F: include/linux/dtlk.h
4310 DPAA2 DATAPATH I/O (DPIO) DRIVER
4311 M: Roy Pledge <Roy.Pledge@nxp.com>
4312 L: linux-kernel@vger.kernel.org
4314 F: drivers/staging/fsl-mc/bus/dpio
4316 DPAA2 ETHERNET DRIVER
4317 M: Ioana Radulescu <ruxandra.radulescu@nxp.com>
4318 L: linux-kernel@vger.kernel.org
4320 F: drivers/staging/fsl-dpaa2/ethernet
4322 DPT_I2O SCSI RAID DRIVER
4323 M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
4324 L: linux-scsi@vger.kernel.org
4325 W: http://www.adaptec.com/
4327 F: drivers/scsi/dpt*
4328 F: drivers/scsi/dpt/
4331 M: Philipp Reisner <philipp.reisner@linbit.com>
4332 M: Lars Ellenberg <lars.ellenberg@linbit.com>
4333 L: drbd-dev@lists.linbit.com
4334 W: http://www.drbd.org
4335 T: git git://git.linbit.com/linux-drbd.git
4336 T: git git://git.linbit.com/drbd-8.4.git
4338 F: drivers/block/drbd/
4340 F: Documentation/blockdev/drbd/
4342 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
4343 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4344 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
4346 F: Documentation/kobject.txt
4350 F: include/linux/debugfs.h
4351 F: include/linux/kobj*
4354 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
4355 M: Kevin Hilman <khilman@kernel.org>
4356 M: Nishanth Menon <nm@ti.com>
4358 F: drivers/power/avs/
4359 F: include/linux/power/smartreflex.h
4360 L: linux-pm@vger.kernel.org
4362 DRM DRIVER FOR ARM PL111 CLCD
4363 M: Eric Anholt <eric@anholt.net>
4364 T: git git://anongit.freedesktop.org/drm/drm-misc
4366 F: drivers/gpu/drm/pl111/
4368 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
4369 M: Dave Airlie <airlied@redhat.com>
4371 F: drivers/gpu/drm/ast/
4373 DRM DRIVER FOR BOCHS VIRTUAL GPU
4374 M: Gerd Hoffmann <kraxel@redhat.com>
4375 L: virtualization@lists.linux-foundation.org
4376 T: git git://anongit.freedesktop.org/drm/drm-misc
4378 F: drivers/gpu/drm/bochs/
4380 DRM DRIVER FOR INTEL I810 VIDEO CARDS
4381 S: Orphan / Obsolete
4382 F: drivers/gpu/drm/i810/
4383 F: include/uapi/drm/i810_drm.h
4385 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
4386 S: Orphan / Obsolete
4387 F: drivers/gpu/drm/mga/
4388 F: include/uapi/drm/mga_drm.h
4390 DRM DRIVER FOR MGA G200 SERVER GRAPHICS CHIPS
4391 M: Dave Airlie <airlied@redhat.com>
4393 F: drivers/gpu/drm/mgag200/
4395 DRM DRIVER FOR MI0283QT
4396 M: Noralf Trønnes <noralf@tronnes.org>
4398 F: drivers/gpu/drm/tinydrm/mi0283qt.c
4399 F: Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
4401 DRM DRIVER FOR MSM ADRENO GPU
4402 M: Rob Clark <robdclark@gmail.com>
4403 L: linux-arm-msm@vger.kernel.org
4404 L: dri-devel@lists.freedesktop.org
4405 L: freedreno@lists.freedesktop.org
4406 T: git git://people.freedesktop.org/~robclark/linux
4408 F: drivers/gpu/drm/msm/
4409 F: include/uapi/drm/msm_drm.h
4410 F: Documentation/devicetree/bindings/display/msm/
4412 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
4413 M: Ben Skeggs <bskeggs@redhat.com>
4414 L: dri-devel@lists.freedesktop.org
4415 L: nouveau@lists.freedesktop.org
4416 T: git git://github.com/skeggsb/linux
4418 F: drivers/gpu/drm/nouveau/
4419 F: include/uapi/drm/nouveau_drm.h
4421 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
4422 M: Noralf Trønnes <noralf@tronnes.org>
4424 F: drivers/gpu/drm/tinydrm/repaper.c
4425 F: Documentation/devicetree/bindings/display/repaper.txt
4427 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
4428 M: Dave Airlie <airlied@redhat.com>
4429 M: Gerd Hoffmann <kraxel@redhat.com>
4430 L: virtualization@lists.linux-foundation.org
4431 T: git git://anongit.freedesktop.org/drm/drm-misc
4433 W: https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
4434 F: drivers/gpu/drm/cirrus/
4436 DRM DRIVER FOR QXL VIRTUAL GPU
4437 M: Dave Airlie <airlied@redhat.com>
4438 M: Gerd Hoffmann <kraxel@redhat.com>
4439 L: virtualization@lists.linux-foundation.org
4440 T: git git://anongit.freedesktop.org/drm/drm-misc
4442 F: drivers/gpu/drm/qxl/
4443 F: include/uapi/drm/qxl_drm.h
4445 DRM DRIVER FOR RAGE 128 VIDEO CARDS
4446 S: Orphan / Obsolete
4447 F: drivers/gpu/drm/r128/
4448 F: include/uapi/drm/r128_drm.h
4450 DRM DRIVER FOR SAVAGE VIDEO CARDS
4451 S: Orphan / Obsolete
4452 F: drivers/gpu/drm/savage/
4453 F: include/uapi/drm/savage_drm.h
4455 DRM DRIVER FOR SIS VIDEO CARDS
4456 S: Orphan / Obsolete
4457 F: drivers/gpu/drm/sis/
4458 F: include/uapi/drm/sis_drm.h
4460 DRM DRIVER FOR SITRONIX ST7586 PANELS
4461 M: David Lechner <david@lechnology.com>
4463 F: drivers/gpu/drm/tinydrm/st7586.c
4464 F: Documentation/devicetree/bindings/display/st7586.txt
4466 DRM DRIVER FOR TDFX VIDEO CARDS
4467 S: Orphan / Obsolete
4468 F: drivers/gpu/drm/tdfx/
4470 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
4471 M: Dave Airlie <airlied@redhat.com>
4473 F: drivers/gpu/drm/udl/
4475 DRM DRIVER FOR VMWARE VIRTUAL GPU
4476 M: "VMware Graphics" <linux-graphics-maintainer@vmware.com>
4477 M: Sinclair Yeh <syeh@vmware.com>
4478 M: Thomas Hellstrom <thellstrom@vmware.com>
4479 L: dri-devel@lists.freedesktop.org
4480 T: git git://people.freedesktop.org/~syeh/repos_linux
4481 T: git git://people.freedesktop.org/~thomash/linux
4483 F: drivers/gpu/drm/vmwgfx/
4484 F: include/uapi/drm/vmwgfx_drm.h
4487 M: David Airlie <airlied@linux.ie>
4488 L: dri-devel@lists.freedesktop.org
4489 T: git git://people.freedesktop.org/~airlied/linux
4490 B: https://bugs.freedesktop.org/
4491 C: irc://chat.freenode.net/dri-devel
4495 F: Documentation/devicetree/bindings/display/
4496 F: Documentation/devicetree/bindings/gpu/
4497 F: Documentation/devicetree/bindings/video/
4498 F: Documentation/gpu/
4500 F: include/uapi/drm/
4501 F: include/linux/vga*
4503 DRM DRIVERS AND MISC GPU PATCHES
4504 M: Daniel Vetter <daniel.vetter@intel.com>
4505 M: Jani Nikula <jani.nikula@linux.intel.com>
4506 M: Sean Paul <seanpaul@chromium.org>
4507 W: https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
4509 T: git git://anongit.freedesktop.org/drm/drm-misc
4510 F: Documentation/gpu/
4512 F: drivers/gpu/drm/*
4514 F: include/uapi/drm/drm*
4515 F: include/linux/vga*
4517 DRM DRIVERS FOR ALLWINNER A10
4518 M: Maxime Ripard <maxime.ripard@free-electrons.com>
4519 L: dri-devel@lists.freedesktop.org
4521 F: drivers/gpu/drm/sun4i/
4522 F: Documentation/devicetree/bindings/display/sunxi/sun4i-drm.txt
4523 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mripard/linux.git
4525 DRM DRIVERS FOR AMLOGIC SOCS
4526 M: Neil Armstrong <narmstrong@baylibre.com>
4527 L: dri-devel@lists.freedesktop.org
4528 L: linux-amlogic@lists.infradead.org
4529 W: http://linux-meson.com/
4531 F: drivers/gpu/drm/meson/
4532 F: Documentation/devicetree/bindings/display/amlogic,meson-vpu.txt
4533 F: Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.txt
4534 F: Documentation/gpu/meson.rst
4535 T: git git://anongit.freedesktop.org/drm/drm-misc
4537 DRM DRIVERS FOR ATMEL HLCDC
4538 M: Boris Brezillon <boris.brezillon@free-electrons.com>
4539 L: dri-devel@lists.freedesktop.org
4541 F: drivers/gpu/drm/atmel-hlcdc/
4542 F: Documentation/devicetree/bindings/drm/atmel/
4543 T: git git://anongit.freedesktop.org/drm/drm-misc
4545 DRM DRIVERS FOR BRIDGE CHIPS
4546 M: Archit Taneja <architt@codeaurora.org>
4547 M: Andrzej Hajda <a.hajda@samsung.com>
4548 R: Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
4550 T: git git://anongit.freedesktop.org/drm/drm-misc
4551 F: drivers/gpu/drm/bridge/
4553 DRM DRIVERS FOR EXYNOS
4554 M: Inki Dae <inki.dae@samsung.com>
4555 M: Joonyoung Shim <jy0922.shim@samsung.com>
4556 M: Seung-Woo Kim <sw0312.kim@samsung.com>
4557 M: Kyungmin Park <kyungmin.park@samsung.com>
4558 L: dri-devel@lists.freedesktop.org
4559 T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
4561 F: drivers/gpu/drm/exynos/
4562 F: include/uapi/drm/exynos_drm.h
4563 F: Documentation/devicetree/bindings/display/exynos/
4565 DRM DRIVERS FOR FREESCALE DCU
4566 M: Stefan Agner <stefan@agner.ch>
4567 M: Alison Wang <alison.wang@freescale.com>
4568 L: dri-devel@lists.freedesktop.org
4570 F: drivers/gpu/drm/fsl-dcu/
4571 F: Documentation/devicetree/bindings/display/fsl,dcu.txt
4572 F: Documentation/devicetree/bindings/display/fsl,tcon.txt
4573 F: Documentation/devicetree/bindings/display/panel/nec,nl4827hc19_05b.txt
4575 DRM DRIVERS FOR FREESCALE IMX
4576 M: Philipp Zabel <p.zabel@pengutronix.de>
4577 L: dri-devel@lists.freedesktop.org
4579 F: drivers/gpu/drm/imx/
4580 F: drivers/gpu/ipu-v3/
4581 F: Documentation/devicetree/bindings/display/imx/
4583 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
4584 M: Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
4585 L: dri-devel@lists.freedesktop.org
4586 T: git git://github.com/patjak/drm-gma500
4588 F: drivers/gpu/drm/gma500/
4590 DRM DRIVERS FOR HISILICON
4591 M: Xinliang Liu <z.liuxinliang@hisilicon.com>
4592 M: Rongrong Zou <zourongrong@gmail.com>
4593 R: Xinwei Kong <kong.kongxinwei@hisilicon.com>
4594 R: Chen Feng <puck.chen@hisilicon.com>
4595 L: dri-devel@lists.freedesktop.org
4596 T: git git://github.com/xin3liang/linux.git
4598 F: drivers/gpu/drm/hisilicon/
4599 F: Documentation/devicetree/bindings/display/hisilicon/
4601 DRM DRIVERS FOR MEDIATEK
4602 M: CK Hu <ck.hu@mediatek.com>
4603 M: Philipp Zabel <p.zabel@pengutronix.de>
4604 L: dri-devel@lists.freedesktop.org
4606 F: drivers/gpu/drm/mediatek/
4607 F: Documentation/devicetree/bindings/display/mediatek/
4609 DRM DRIVERS FOR NVIDIA TEGRA
4610 M: Thierry Reding <thierry.reding@gmail.com>
4611 L: dri-devel@lists.freedesktop.org
4612 L: linux-tegra@vger.kernel.org
4613 T: git git://anongit.freedesktop.org/tegra/linux.git
4615 F: drivers/gpu/drm/tegra/
4616 F: drivers/gpu/host1x/
4617 F: include/linux/host1x.h
4618 F: include/uapi/drm/tegra_drm.h
4619 F: Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
4621 DRM DRIVERS FOR RENESAS
4622 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
4623 L: dri-devel@lists.freedesktop.org
4624 L: linux-renesas-soc@vger.kernel.org
4625 T: git git://linuxtv.org/pinchartl/fbdev
4627 F: drivers/gpu/drm/rcar-du/
4628 F: drivers/gpu/drm/shmobile/
4629 F: include/linux/platform_data/shmob_drm.h
4630 F: Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt
4631 F: Documentation/devicetree/bindings/display/renesas,du.txt
4633 DRM DRIVERS FOR ROCKCHIP
4634 M: Mark Yao <mark.yao@rock-chips.com>
4635 L: dri-devel@lists.freedesktop.org
4637 F: drivers/gpu/drm/rockchip/
4638 F: Documentation/devicetree/bindings/display/rockchip/
4639 T: git git://anongit.freedesktop.org/drm/drm-misc
4642 M: Benjamin Gaignard <benjamin.gaignard@linaro.org>
4643 M: Vincent Abriou <vincent.abriou@st.com>
4644 L: dri-devel@lists.freedesktop.org
4645 T: git git://anongit.freedesktop.org/drm/drm-misc
4647 F: drivers/gpu/drm/sti
4648 F: Documentation/devicetree/bindings/display/st,stih4xx.txt
4651 M: Yannick Fertre <yannick.fertre@st.com>
4652 M: Philippe Cornu <philippe.cornu@st.com>
4653 M: Benjamin Gaignard <benjamin.gaignard@linaro.org>
4654 M: Vincent Abriou <vincent.abriou@st.com>
4655 L: dri-devel@lists.freedesktop.org
4656 T: git git://anongit.freedesktop.org/drm/drm-misc
4658 F: drivers/gpu/drm/stm
4659 F: Documentation/devicetree/bindings/display/st,stm32-ltdc.txt
4661 DRM DRIVERS FOR TI LCDC
4662 M: Jyri Sarha <jsarha@ti.com>
4663 R: Tomi Valkeinen <tomi.valkeinen@ti.com>
4664 L: dri-devel@lists.freedesktop.org
4666 F: drivers/gpu/drm/tilcdc/
4667 F: Documentation/devicetree/bindings/display/tilcdc/
4669 DRM DRIVERS FOR TI OMAP
4670 M: Tomi Valkeinen <tomi.valkeinen@ti.com>
4671 L: dri-devel@lists.freedesktop.org
4673 F: drivers/gpu/drm/omapdrm/
4674 F: Documentation/devicetree/bindings/display/ti/
4677 M: Eric Anholt <eric@anholt.net>
4678 T: git git://github.com/anholt/linux
4680 F: drivers/gpu/drm/vc4/
4681 F: include/uapi/drm/vc4_drm.h
4682 F: Documentation/devicetree/bindings/display/brcm,bcm-vc4.txt
4683 T: git git://anongit.freedesktop.org/drm/drm-misc
4685 DRM DRIVERS FOR VIVANTE GPU IP
4686 M: Lucas Stach <l.stach@pengutronix.de>
4687 R: Russell King <linux+etnaviv@armlinux.org.uk>
4688 R: Christian Gmeiner <christian.gmeiner@gmail.com>
4689 L: etnaviv@lists.freedesktop.org
4690 L: dri-devel@lists.freedesktop.org
4692 F: drivers/gpu/drm/etnaviv/
4693 F: include/uapi/drm/etnaviv_drm.h
4694 F: Documentation/devicetree/bindings/display/etnaviv/
4696 DRM DRIVERS FOR ZTE ZX
4697 M: Shawn Guo <shawnguo@kernel.org>
4698 L: dri-devel@lists.freedesktop.org
4700 F: drivers/gpu/drm/zte/
4701 F: Documentation/devicetree/bindings/display/zte,vou.txt
4702 T: git git://anongit.freedesktop.org/drm/drm-misc
4705 M: Thierry Reding <thierry.reding@gmail.com>
4706 L: dri-devel@lists.freedesktop.org
4707 T: git git://anongit.freedesktop.org/tegra/linux.git
4709 F: drivers/gpu/drm/drm_panel.c
4710 F: drivers/gpu/drm/panel/
4711 F: include/drm/drm_panel.h
4712 F: Documentation/devicetree/bindings/display/panel/
4715 M: Noralf Trønnes <noralf@tronnes.org>
4716 W: https://github.com/notro/tinydrm/wiki/Development
4717 T: git git://anongit.freedesktop.org/drm/drm-misc
4719 F: drivers/gpu/drm/tinydrm/
4720 F: include/drm/tinydrm/
4722 DSBR100 USB FM RADIO DRIVER
4723 M: Alexey Klimov <klimov.linux@gmail.com>
4724 L: linux-media@vger.kernel.org
4725 T: git git://linuxtv.org/media_tree.git
4727 F: drivers/media/radio/dsbr100.c
4730 M: Francois Romieu <romieu@fr.zoreil.com>
4731 L: netdev@vger.kernel.org
4733 F: drivers/net/wan/dscc4.c
4736 M: Hans Verkuil <hverkuil@xs4all.nl>
4737 L: linux-media@vger.kernel.org
4738 T: git git://linuxtv.org/media_tree.git
4739 W: https://linuxtv.org
4741 F: drivers/media/pci/dt3155/
4743 DVB_USB_AF9015 MEDIA DRIVER
4744 M: Antti Palosaari <crope@iki.fi>
4745 L: linux-media@vger.kernel.org
4746 W: https://linuxtv.org
4747 W: http://palosaari.fi/linux/
4748 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4749 T: git git://linuxtv.org/anttip/media_tree.git
4751 F: drivers/media/usb/dvb-usb-v2/af9015*
4753 DVB_USB_AF9035 MEDIA DRIVER
4754 M: Antti Palosaari <crope@iki.fi>
4755 L: linux-media@vger.kernel.org
4756 W: https://linuxtv.org
4757 W: http://palosaari.fi/linux/
4758 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4759 T: git git://linuxtv.org/anttip/media_tree.git
4761 F: drivers/media/usb/dvb-usb-v2/af9035*
4763 DVB_USB_ANYSEE MEDIA DRIVER
4764 M: Antti Palosaari <crope@iki.fi>
4765 L: linux-media@vger.kernel.org
4766 W: https://linuxtv.org
4767 W: http://palosaari.fi/linux/
4768 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4769 T: git git://linuxtv.org/anttip/media_tree.git
4771 F: drivers/media/usb/dvb-usb-v2/anysee*
4773 DVB_USB_AU6610 MEDIA DRIVER
4774 M: Antti Palosaari <crope@iki.fi>
4775 L: linux-media@vger.kernel.org
4776 W: https://linuxtv.org
4777 W: http://palosaari.fi/linux/
4778 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4779 T: git git://linuxtv.org/anttip/media_tree.git
4781 F: drivers/media/usb/dvb-usb-v2/au6610*
4783 DVB_USB_CE6230 MEDIA DRIVER
4784 M: Antti Palosaari <crope@iki.fi>
4785 L: linux-media@vger.kernel.org
4786 W: https://linuxtv.org
4787 W: http://palosaari.fi/linux/
4788 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4789 T: git git://linuxtv.org/anttip/media_tree.git
4791 F: drivers/media/usb/dvb-usb-v2/ce6230*
4793 DVB_USB_CXUSB MEDIA DRIVER
4794 M: Michael Krufky <mkrufky@linuxtv.org>
4795 L: linux-media@vger.kernel.org
4796 W: https://linuxtv.org
4797 W: http://github.com/mkrufky
4798 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4799 T: git git://linuxtv.org/media_tree.git
4801 F: drivers/media/usb/dvb-usb/cxusb*
4803 DVB_USB_EC168 MEDIA DRIVER
4804 M: Antti Palosaari <crope@iki.fi>
4805 L: linux-media@vger.kernel.org
4806 W: https://linuxtv.org
4807 W: http://palosaari.fi/linux/
4808 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4809 T: git git://linuxtv.org/anttip/media_tree.git
4811 F: drivers/media/usb/dvb-usb-v2/ec168*
4813 DVB_USB_GL861 MEDIA DRIVER
4814 M: Antti Palosaari <crope@iki.fi>
4815 L: linux-media@vger.kernel.org
4816 W: https://linuxtv.org
4817 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4818 T: git git://linuxtv.org/anttip/media_tree.git
4820 F: drivers/media/usb/dvb-usb-v2/gl861*
4822 DVB_USB_MXL111SF MEDIA DRIVER
4823 M: Michael Krufky <mkrufky@linuxtv.org>
4824 L: linux-media@vger.kernel.org
4825 W: https://linuxtv.org
4826 W: http://github.com/mkrufky
4827 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4828 T: git git://linuxtv.org/mkrufky/mxl111sf.git
4830 F: drivers/media/usb/dvb-usb-v2/mxl111sf*
4832 DVB_USB_RTL28XXU MEDIA DRIVER
4833 M: Antti Palosaari <crope@iki.fi>
4834 L: linux-media@vger.kernel.org
4835 W: https://linuxtv.org
4836 W: http://palosaari.fi/linux/
4837 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4838 T: git git://linuxtv.org/anttip/media_tree.git
4840 F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
4842 DVB_USB_V2 MEDIA DRIVER
4843 M: Antti Palosaari <crope@iki.fi>
4844 L: linux-media@vger.kernel.org
4845 W: https://linuxtv.org
4846 W: http://palosaari.fi/linux/
4847 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4848 T: git git://linuxtv.org/anttip/media_tree.git
4850 F: drivers/media/usb/dvb-usb-v2/dvb_usb*
4851 F: drivers/media/usb/dvb-usb-v2/usb_urb.c
4854 M: Jason Baron <jbaron@akamai.com>
4856 F: lib/dynamic_debug.c
4857 F: include/linux/dynamic_debug.h
4859 DZ DECSTATION DZ11 SERIAL DRIVER
4860 M: "Maciej W. Rozycki" <macro@linux-mips.org>
4862 F: drivers/tty/serial/dz.*
4864 E3X0 POWER BUTTON DRIVER
4865 M: Moritz Fischer <moritz.fischer@ettus.com>
4866 L: usrp-users@lists.ettus.com
4867 W: http://www.ettus.com
4869 F: drivers/input/misc/e3x0-button.c
4870 F: Documentation/devicetree/bindings/input/e3x0-button.txt
4873 M: Antti Palosaari <crope@iki.fi>
4874 L: linux-media@vger.kernel.org
4875 W: https://linuxtv.org
4876 W: http://palosaari.fi/linux/
4877 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4878 T: git git://linuxtv.org/anttip/media_tree.git
4880 F: drivers/media/tuners/e4000*
4882 EATA ISA/EISA/PCI SCSI DRIVER
4883 M: Dario Ballabio <ballabio_dario@emc.com>
4884 L: linux-scsi@vger.kernel.org
4886 F: drivers/scsi/eata.c
4889 M: Antti Palosaari <crope@iki.fi>
4890 L: linux-media@vger.kernel.org
4891 W: https://linuxtv.org
4892 W: http://palosaari.fi/linux/
4893 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4894 T: git git://linuxtv.org/anttip/media_tree.git
4896 F: drivers/media/dvb-frontends/ec100*
4899 M: Tyler Hicks <tyhicks@canonical.com>
4900 L: ecryptfs@vger.kernel.org
4901 W: http://ecryptfs.org
4902 W: https://launchpad.net/ecryptfs
4903 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
4905 F: Documentation/filesystems/ecryptfs.txt
4909 M: Borislav Petkov <bp@alien8.de>
4910 L: linux-edac@vger.kernel.org
4912 F: drivers/edac/amd64_edac*
4915 M: Robert Richter <rric@kernel.org>
4916 L: linux-edac@vger.kernel.org
4918 F: drivers/edac/highbank*
4921 M: Ralf Baechle <ralf@linux-mips.org>
4922 M: David Daney <david.daney@cavium.com>
4923 L: linux-edac@vger.kernel.org
4924 L: linux-mips@linux-mips.org
4926 F: drivers/edac/octeon_edac*
4928 EDAC-CAVIUM THUNDERX
4929 M: David Daney <david.daney@cavium.com>
4930 M: Jan Glauber <jglauber@cavium.com>
4931 L: linux-edac@vger.kernel.org
4933 F: drivers/edac/thunderx_edac*
4936 M: Borislav Petkov <bp@alien8.de>
4937 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
4938 M: Mauro Carvalho Chehab <mchehab@kernel.org>
4939 L: linux-edac@vger.kernel.org
4940 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git for-next
4941 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-edac.git linux_next
4943 F: Documentation/admin-guide/ras.rst
4944 F: Documentation/driver-api/edac.rst
4946 F: include/linux/edac.h
4949 M: Mark Gross <mark.gross@intel.com>
4950 L: linux-edac@vger.kernel.org
4952 F: drivers/edac/e752x_edac.c
4955 L: linux-edac@vger.kernel.org
4957 F: drivers/edac/e7xxx_edac.c
4960 M: York Sun <york.sun@nxp.com>
4961 L: linux-edac@vger.kernel.org
4963 F: drivers/edac/fsl_ddr_edac.*
4966 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
4967 M: Mauro Carvalho Chehab <mchehab@kernel.org>
4968 L: linux-edac@vger.kernel.org
4970 F: drivers/edac/ghes_edac.c
4973 L: linux-edac@vger.kernel.org
4975 F: drivers/edac/i3000_edac.c
4978 L: linux-edac@vger.kernel.org
4980 F: drivers/edac/i5000_edac.c
4983 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
4984 M: Mauro Carvalho Chehab <mchehab@kernel.org>
4985 L: linux-edac@vger.kernel.org
4987 F: drivers/edac/i5400_edac.c
4990 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
4991 M: Mauro Carvalho Chehab <mchehab@kernel.org>
4992 L: linux-edac@vger.kernel.org
4994 F: drivers/edac/i7300_edac.c
4997 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
4998 M: Mauro Carvalho Chehab <mchehab@kernel.org>
4999 L: linux-edac@vger.kernel.org
5001 F: drivers/edac/i7core_edac.c
5004 M: Tim Small <tim@buttersideup.com>
5005 L: linux-edac@vger.kernel.org
5007 F: drivers/edac/i82443bxgx_edac.c
5010 M: Ranganathan Desikan <ravi@jetztechnologies.com>
5011 M: "Arvind R." <arvino55@gmail.com>
5012 L: linux-edac@vger.kernel.org
5014 F: drivers/edac/i82975x_edac.c
5017 M: Jason Baron <jbaron@akamai.com>
5018 L: linux-edac@vger.kernel.org
5020 F: drivers/edac/ie31200_edac.c
5023 M: Johannes Thumshirn <morbidrsa@gmail.com>
5024 L: linux-edac@vger.kernel.org
5026 F: drivers/edac/mpc85xx_edac.[ch]
5029 M: Egor Martovetsky <egor@pasemi.com>
5030 L: linux-edac@vger.kernel.org
5032 F: drivers/edac/pasemi_edac.c
5035 M: Tony Luck <tony.luck@intel.com>
5036 L: linux-edac@vger.kernel.org
5038 F: drivers/edac/pnd2_edac.[ch]
5041 M: Tim Small <tim@buttersideup.com>
5042 L: linux-edac@vger.kernel.org
5044 F: drivers/edac/r82600_edac.c
5047 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
5048 M: Mauro Carvalho Chehab <mchehab@kernel.org>
5049 L: linux-edac@vger.kernel.org
5051 F: drivers/edac/sb_edac.c
5054 M: Tony Luck <tony.luck@intel.com>
5055 L: linux-edac@vger.kernel.org
5057 F: drivers/edac/skx_edac.c
5059 EDIROL UA-101/UA-1000 DRIVER
5060 M: Clemens Ladisch <clemens@ladisch.de>
5061 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5062 T: git git://git.alsa-project.org/alsa-kernel.git
5064 F: sound/usb/misc/ua101.c
5067 L: linux-efi@vger.kernel.org
5068 M: Ivan Hu <ivan.hu@canonical.com>
5069 M: Matt Fleming <matt@codeblueprint.co.uk>
5071 F: drivers/firmware/efi/test/
5073 EFI VARIABLE FILESYSTEM
5074 M: Matthew Garrett <matthew.garrett@nebula.com>
5075 M: Jeremy Kerr <jk@ozlabs.org>
5076 M: Matt Fleming <matt@codeblueprint.co.uk>
5077 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
5078 L: linux-efi@vger.kernel.org
5082 EFIFB FRAMEBUFFER DRIVER
5083 L: linux-fbdev@vger.kernel.org
5084 M: Peter Jones <pjones@redhat.com>
5086 F: drivers/video/fbdev/efifb.c
5089 W: http://aeschi.ch.eu.org/efs/
5093 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
5094 M: Douglas Miller <dougmill@linux.vnet.ibm.com>
5095 L: netdev@vger.kernel.org
5097 F: drivers/net/ethernet/ibm/ehea/
5099 EM28XX VIDEO4LINUX DRIVER
5100 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
5101 M: Mauro Carvalho Chehab <mchehab@kernel.org>
5102 L: linux-media@vger.kernel.org
5103 W: https://linuxtv.org
5104 T: git git://linuxtv.org/media_tree.git
5106 F: drivers/media/usb/em28xx/
5107 F: Documentation/media/v4l-drivers/em28xx*
5110 M: Paul Gortmaker <paul.gortmaker@windriver.com>
5111 M: Matt Mackall <mpm@selenic.com>
5112 M: David Woodhouse <dwmw2@infradead.org>
5113 L: linux-embedded@vger.kernel.org
5116 Emulex 10Gbps iSCSI - OneConnect DRIVER
5117 M: Subbu Seetharaman <subbu.seetharaman@broadcom.com>
5118 M: Ketan Mukadam <ketan.mukadam@broadcom.com>
5119 M: Jitendra Bhivare <jitendra.bhivare@broadcom.com>
5120 L: linux-scsi@vger.kernel.org
5121 W: http://www.broadcom.com
5123 F: drivers/scsi/be2iscsi/
5125 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
5126 M: Sathya Perla <sathya.perla@broadcom.com>
5127 M: Ajit Khaparde <ajit.khaparde@broadcom.com>
5128 M: Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
5129 M: Somnath Kotur <somnath.kotur@broadcom.com>
5130 L: netdev@vger.kernel.org
5131 W: http://www.emulex.com
5133 F: drivers/net/ethernet/emulex/benet/
5135 EMULEX ONECONNECT ROCE DRIVER
5136 M: Selvin Xavier <selvin.xavier@broadcom.com>
5137 M: Devesh Sharma <devesh.sharma@broadcom.com>
5138 L: linux-rdma@vger.kernel.org
5139 W: http://www.broadcom.com
5141 F: drivers/infiniband/hw/ocrdma/
5142 F: include/uapi/rdma/ocrdma-abi.h
5144 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
5145 M: James Smart <james.smart@broadcom.com>
5146 M: Dick Kennedy <dick.kennedy@broadcom.com>
5147 L: linux-scsi@vger.kernel.org
5148 W: http://www.broadcom.com
5150 F: drivers/scsi/lpfc/
5152 ENE CB710 FLASH CARD READER DRIVER
5153 M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
5155 F: drivers/misc/cb710/
5156 F: drivers/mmc/host/cb710-mmc.*
5157 F: include/linux/cb710.h
5159 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
5160 M: Maxim Levitsky <maximlevitsky@gmail.com>
5162 F: drivers/media/rc/ene_ir.*
5164 EPSON S1D13XXX FRAMEBUFFER DRIVER
5165 M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
5167 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
5168 F: drivers/video/fbdev/s1d13xxxfb.c
5169 F: include/video/s1d13xxxfb.h
5171 ERRSEQ ERROR TRACKING INFRASTRUCTURE
5172 M: Jeff Layton <jlayton@poochiereds.net>
5175 F: include/linux/errseq.h
5177 ET131X NETWORK DRIVER
5178 M: Mark Einon <mark.einon@gmail.com>
5180 F: drivers/net/ethernet/agere/
5183 M: Stephen Hemminger <stephen@networkplumber.org>
5184 L: bridge@lists.linux-foundation.org (moderated for non-subscribers)
5185 L: netdev@vger.kernel.org
5186 W: http://www.linuxfoundation.org/en/Net:Bridge
5188 F: include/linux/netfilter_bridge/
5191 ETHERNET PHY LIBRARY
5192 M: Andrew Lunn <andrew@lunn.ch>
5193 M: Florian Fainelli <f.fainelli@gmail.com>
5194 L: netdev@vger.kernel.org
5196 F: Documentation/ABI/testing/sysfs-bus-mdio
5197 F: Documentation/devicetree/bindings/net/mdio*
5198 F: Documentation/networking/phy.txt
5200 F: drivers/of/of_mdio.c
5201 F: drivers/of/of_net.c
5202 F: include/linux/*mdio*.h
5203 F: include/linux/of_net.h
5204 F: include/linux/phy.h
5205 F: include/linux/phy_fixed.h
5206 F: include/linux/platform_data/mdio-gpio.h
5207 F: include/linux/platform_data/mdio-bcm-unimac.h
5208 F: include/trace/events/mdio.h
5209 F: include/uapi/linux/mdio.h
5210 F: include/uapi/linux/mii.h
5213 M: Jan Kara <jack@suse.com>
5214 L: linux-ext4@vger.kernel.org
5216 F: Documentation/filesystems/ext2.txt
5218 F: include/linux/ext2*
5221 M: "Theodore Ts'o" <tytso@mit.edu>
5222 M: Andreas Dilger <adilger.kernel@dilger.ca>
5223 L: linux-ext4@vger.kernel.org
5224 W: http://ext4.wiki.kernel.org
5225 Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
5226 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
5228 F: Documentation/filesystems/ext4.txt
5231 Extended Verification Module (EVM)
5232 M: Mimi Zohar <zohar@linux.vnet.ibm.com>
5233 L: linux-integrity@vger.kernel.org
5235 F: security/integrity/evm/
5237 EXTENSIBLE FIRMWARE INTERFACE (EFI)
5238 M: Matt Fleming <matt@codeblueprint.co.uk>
5239 M: Ard Biesheuvel <ard.biesheuvel@linaro.org>
5240 L: linux-efi@vger.kernel.org
5241 T: git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
5243 F: Documentation/efi-stub.txt
5244 F: arch/*/kernel/efi.c
5245 F: arch/x86/boot/compressed/eboot.[ch]
5246 F: arch/*/include/asm/efi.h
5247 F: arch/x86/platform/efi/
5248 F: drivers/firmware/efi/
5249 F: include/linux/efi*.h
5250 F: arch/arm/boot/compressed/efi-header.S
5251 F: arch/arm64/kernel/efi-entry.S
5253 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
5254 M: MyungJoo Ham <myungjoo.ham@samsung.com>
5255 M: Chanwoo Choi <cw00.choi@samsung.com>
5256 L: linux-kernel@vger.kernel.org
5257 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
5260 F: include/linux/extcon/
5261 F: include/linux/extcon.h
5262 F: Documentation/extcon/
5263 F: Documentation/devicetree/bindings/extcon/
5266 M: Jingoo Han <jingoohan1@gmail.com>
5267 L: dri-devel@lists.freedesktop.org
5269 F: drivers/gpu/drm/exynos/exynos_dp*
5271 EXYNOS SYSMMU (IOMMU) driver
5272 M: Marek Szyprowski <m.szyprowski@samsung.com>
5273 L: iommu@lists.linux-foundation.org
5275 F: drivers/iommu/exynos-iommu.c
5277 EZchip NPS platform support
5278 M: Elad Kanfi <eladkan@mellanox.com>
5279 M: Vineet Gupta <vgupta@synopsys.com>
5281 F: arch/arc/plat-eznps
5282 F: arch/arc/boot/dts/eznps.dts
5285 M: Jaegeuk Kim <jaegeuk@kernel.org>
5286 M: Chao Yu <yuchao0@huawei.com>
5287 L: linux-f2fs-devel@lists.sourceforge.net
5288 W: https://f2fs.wiki.kernel.org/
5289 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
5291 F: Documentation/filesystems/f2fs.txt
5292 F: Documentation/ABI/testing/sysfs-fs-f2fs
5294 F: include/linux/f2fs_fs.h
5295 F: include/trace/events/f2fs.h
5297 F71805F HARDWARE MONITORING DRIVER
5298 M: Jean Delvare <jdelvare@suse.com>
5299 L: linux-hwmon@vger.kernel.org
5301 F: Documentation/hwmon/f71805f
5302 F: drivers/hwmon/f71805f.c
5305 M: Jan Kara <jack@suse.cz>
5306 R: Amir Goldstein <amir73il@gmail.com>
5307 L: linux-fsdevel@vger.kernel.org
5309 F: fs/notify/fanotify/
5310 F: include/linux/fanotify.h
5311 F: include/uapi/linux/fanotify.h
5313 FARSYNC SYNCHRONOUS DRIVER
5314 M: Kevin Curtis <kevin.curtis@farsite.co.uk>
5315 W: http://www.farsite.co.uk/
5317 F: drivers/net/wan/farsync.*
5319 FAULT INJECTION SUPPORT
5320 M: Akinobu Mita <akinobu.mita@gmail.com>
5322 F: Documentation/fault-injection/
5323 F: lib/fault-inject.c
5325 FBTFT Framebuffer drivers
5326 M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
5328 F: drivers/staging/fbtft/
5331 M: Michael Buesch <m@bues.ch>
5332 L: linux-media@vger.kernel.org
5334 F: drivers/media/tuners/fc0011.h
5335 F: drivers/media/tuners/fc0011.c
5338 M: Antti Palosaari <crope@iki.fi>
5339 L: linux-media@vger.kernel.org
5340 W: https://linuxtv.org
5341 W: http://palosaari.fi/linux/
5342 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5343 T: git git://linuxtv.org/anttip/media_tree.git
5345 F: drivers/media/tuners/fc2580*
5347 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
5348 M: Johannes Thumshirn <jth@kernel.org>
5349 L: fcoe-devel@open-fcoe.org
5350 W: www.Open-FCoE.org
5352 F: drivers/scsi/libfc/
5353 F: drivers/scsi/fcoe/
5355 F: include/scsi/libfc.h
5356 F: include/scsi/libfcoe.h
5357 F: include/uapi/scsi/fc/
5359 FILE LOCKING (flock() and fcntl()/lockf())
5360 M: Jeff Layton <jlayton@poochiereds.net>
5361 M: "J. Bruce Fields" <bfields@fieldses.org>
5362 L: linux-fsdevel@vger.kernel.org
5364 F: include/linux/fcntl.h
5365 F: include/uapi/linux/fcntl.h
5369 FILESYSTEMS (VFS and infrastructure)
5370 M: Alexander Viro <viro@zeniv.linux.org.uk>
5371 L: linux-fsdevel@vger.kernel.org
5374 F: include/linux/fs.h
5375 F: include/uapi/linux/fs.h
5377 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
5378 M: Riku Voipio <riku.voipio@iki.fi>
5379 L: linux-hwmon@vger.kernel.org
5381 F: drivers/hwmon/f75375s.c
5382 F: include/linux/f75375s.h
5384 FIREWIRE AUDIO DRIVERS
5385 M: Clemens Ladisch <clemens@ladisch.de>
5386 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5387 T: git git://git.alsa-project.org/alsa-kernel.git
5391 FIREWIRE MEDIA DRIVERS (firedtv)
5392 M: Stefan Richter <stefanr@s5r6.in-berlin.de>
5393 L: linux-media@vger.kernel.org
5394 L: linux1394-devel@lists.sourceforge.net
5395 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
5397 F: drivers/media/firewire/
5399 FIREWIRE SBP-2 TARGET
5400 M: Chris Boot <bootc@bootc.net>
5401 L: linux-scsi@vger.kernel.org
5402 L: target-devel@vger.kernel.org
5403 L: linux1394-devel@lists.sourceforge.net
5404 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
5406 F: drivers/target/sbp/
5409 M: Stefan Richter <stefanr@s5r6.in-berlin.de>
5410 L: linux1394-devel@lists.sourceforge.net
5411 W: http://ieee1394.wiki.kernel.org/
5412 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
5414 F: drivers/firewire/
5415 F: include/linux/firewire.h
5416 F: include/uapi/linux/firewire*.h
5419 FIRMWARE LOADER (request_firmware)
5420 M: Luis R. Rodriguez <mcgrof@kernel.org>
5421 L: linux-kernel@vger.kernel.org
5423 F: Documentation/firmware_class/
5424 F: drivers/base/firmware*.c
5425 F: include/linux/firmware.h
5427 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
5428 M: Joshua Morris <josh.h.morris@us.ibm.com>
5429 M: Philip Kelleher <pjk1939@linux.vnet.ibm.com>
5431 F: drivers/block/rsxx/
5434 M: Jiri Kosina <jikos@kernel.org>
5435 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
5437 F: drivers/block/floppy.c
5440 M: Alessandro Rubini <rubini@gnudd.com>
5441 W: http://www.ohwr.org/projects/fmc-bus
5444 F: include/linux/fmc*.h
5445 F: include/linux/ipmi-fru.h
5448 FPGA MANAGER FRAMEWORK
5449 M: Alan Tull <atull@kernel.org>
5450 R: Moritz Fischer <mdf@kernel.org>
5451 L: linux-fpga@vger.kernel.org
5453 T: git git://git.kernel.org/pub/scm/linux/kernel/git/atull/linux-fpga.git
5454 Q: http://patchwork.kernel.org/project/linux-fpga/list/
5455 F: Documentation/fpga/
5456 F: Documentation/devicetree/bindings/fpga/
5458 F: include/linux/fpga/
5459 W: http://www.rocketboards.org
5462 M: Bill Metzenthen <billm@melbpc.org.au>
5463 W: http://floatingpoint.sourceforge.net/emulator/index.html
5465 F: arch/x86/math-emu/
5467 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
5468 L: netdev@vger.kernel.org
5470 F: drivers/net/wan/dlci.c
5471 F: drivers/net/wan/sdla.c
5474 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
5475 L: linux-fbdev@vger.kernel.org
5476 T: git git://github.com/bzolnier/linux.git
5477 Q: http://patchwork.kernel.org/project/linux-fbdev/list/
5479 F: Documentation/fb/
5482 F: include/linux/fb.h
5483 F: include/uapi/video/
5484 F: include/uapi/linux/fb.h
5486 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
5487 M: Horia Geantă <horia.geanta@nxp.com>
5488 M: Aymen Sghaier <aymen.sghaier@nxp.com>
5489 L: linux-crypto@vger.kernel.org
5491 F: drivers/crypto/caam/
5492 F: Documentation/devicetree/bindings/crypto/fsl-sec4.txt
5494 FREESCALE DIU FRAMEBUFFER DRIVER
5495 M: Timur Tabi <timur@tabi.org>
5496 L: linux-fbdev@vger.kernel.org
5498 F: drivers/video/fbdev/fsl-diu-fb.*
5500 FREESCALE DMA DRIVER
5501 M: Li Yang <leoyang.li@nxp.com>
5502 M: Zhang Wei <zw@zh-kernel.org>
5503 L: linuxppc-dev@lists.ozlabs.org
5505 F: drivers/dma/fsldma.*
5507 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
5508 M: Claudiu Manoil <claudiu.manoil@freescale.com>
5509 L: netdev@vger.kernel.org
5511 F: drivers/net/ethernet/freescale/gianfar*
5512 X: drivers/net/ethernet/freescale/gianfar_ptp.c
5513 F: Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
5515 FREESCALE GPMI NAND DRIVER
5516 M: Han Xu <han.xu@nxp.com>
5517 L: linux-mtd@lists.infradead.org
5519 F: drivers/mtd/nand/gpmi-nand/*
5521 FREESCALE I2C CPM DRIVER
5522 M: Jochen Friedrich <jochen@scram.de>
5523 L: linuxppc-dev@lists.ozlabs.org
5524 L: linux-i2c@vger.kernel.org
5526 F: drivers/i2c/busses/i2c-cpm.c
5528 FREESCALE IMX / MXC FEC DRIVER
5529 M: Fugang Duan <fugang.duan@nxp.com>
5530 L: netdev@vger.kernel.org
5532 F: drivers/net/ethernet/freescale/fec_main.c
5533 F: drivers/net/ethernet/freescale/fec_ptp.c
5534 F: drivers/net/ethernet/freescale/fec.h
5535 F: Documentation/devicetree/bindings/net/fsl-fec.txt
5537 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
5538 M: Sascha Hauer <kernel@pengutronix.de>
5539 L: linux-fbdev@vger.kernel.org
5540 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5542 F: include/linux/platform_data/video-imxfb.h
5543 F: drivers/video/fbdev/imxfb.c
5545 FREESCALE QORIQ DPAA ETHERNET DRIVER
5546 M: Madalin Bucur <madalin.bucur@nxp.com>
5547 L: netdev@vger.kernel.org
5549 F: drivers/net/ethernet/freescale/dpaa
5551 FREESCALE QORIQ DPAA FMAN DRIVER
5552 M: Madalin Bucur <madalin.bucur@nxp.com>
5553 L: netdev@vger.kernel.org
5555 F: drivers/net/ethernet/freescale/fman
5556 F: Documentation/devicetree/bindings/powerpc/fsl/fman.txt
5558 FREESCALE QUAD SPI DRIVER
5559 M: Han Xu <han.xu@nxp.com>
5560 L: linux-mtd@lists.infradead.org
5562 F: drivers/mtd/spi-nor/fsl-quadspi.c
5564 FREESCALE QUICC ENGINE LIBRARY
5565 M: Qiang Zhao <qiang.zhao@nxp.com>
5566 L: linuxppc-dev@lists.ozlabs.org
5568 F: drivers/soc/fsl/qe/
5569 F: include/soc/fsl/*qe*.h
5570 F: include/soc/fsl/*ucc*.h
5572 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
5573 M: Li Yang <leoyang.li@nxp.com>
5574 L: netdev@vger.kernel.org
5575 L: linuxppc-dev@lists.ozlabs.org
5577 F: drivers/net/ethernet/freescale/ucc_geth*
5579 FREESCALE QUICC ENGINE UCC HDLC DRIVER
5580 M: Zhao Qiang <qiang.zhao@nxp.com>
5581 L: netdev@vger.kernel.org
5582 L: linuxppc-dev@lists.ozlabs.org
5584 F: drivers/net/wan/fsl_ucc_hdlc*
5586 FREESCALE QUICC ENGINE UCC UART DRIVER
5587 M: Timur Tabi <timur@tabi.org>
5588 L: linuxppc-dev@lists.ozlabs.org
5590 F: drivers/tty/serial/ucc_uart.c
5592 FREESCALE SOC DRIVERS
5593 M: Li Yang <leoyang.li@nxp.com>
5594 L: linuxppc-dev@lists.ozlabs.org
5595 L: linux-arm-kernel@lists.infradead.org
5597 F: Documentation/devicetree/bindings/soc/fsl/
5599 F: include/linux/fsl/
5601 FREESCALE SOC FS_ENET DRIVER
5602 M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
5603 M: Vitaly Bordug <vbordug@ru.mvista.com>
5604 L: linuxppc-dev@lists.ozlabs.org
5605 L: netdev@vger.kernel.org
5607 F: drivers/net/ethernet/freescale/fs_enet/
5608 F: include/linux/fs_enet_pd.h
5610 FREESCALE SOC SOUND DRIVERS
5611 M: Timur Tabi <timur@tabi.org>
5612 M: Nicolin Chen <nicoleotsuka@gmail.com>
5613 M: Xiubo Li <Xiubo.Lee@gmail.com>
5614 R: Fabio Estevam <fabio.estevam@nxp.com>
5615 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5616 L: linuxppc-dev@lists.ozlabs.org
5618 F: sound/soc/fsl/fsl*
5619 F: sound/soc/fsl/imx*
5620 F: sound/soc/fsl/mpc8610_hpcd.c
5622 FREESCALE USB PERIPHERAL DRIVERS
5623 M: Li Yang <leoyang.li@nxp.com>
5624 L: linux-usb@vger.kernel.org
5625 L: linuxppc-dev@lists.ozlabs.org
5627 F: drivers/usb/gadget/udc/fsl*
5630 M: Christoph Hellwig <hch@infradead.org>
5631 W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
5636 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
5637 M: Pavel Machek <pavel@ucw.cz>
5638 L: linux-pm@vger.kernel.org
5640 F: Documentation/power/freezing-of-tasks.txt
5641 F: include/linux/freezer.h
5645 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
5646 L: linux-kernel@vger.kernel.org
5649 F: include/linux/frontswap.h
5651 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
5652 M: David Howells <dhowells@redhat.com>
5653 L: linux-cachefs@redhat.com (moderated for non-subscribers)
5655 F: Documentation/filesystems/caching/
5657 F: include/linux/fscache*.h
5659 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
5660 M: Theodore Y. Ts'o <tytso@mit.edu>
5661 M: Jaegeuk Kim <jaegeuk@kernel.org>
5662 L: linux-fscrypt@vger.kernel.org
5663 Q: https://patchwork.kernel.org/project/linux-fscrypt/list/
5664 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/fscrypt.git
5667 F: include/linux/fscrypt*.h
5668 F: Documentation/filesystems/fscrypt.rst
5670 FUJITSU FR-V (FRV) PORT
5674 FUJITSU LAPTOP EXTRAS
5675 M: Jonathan Woithe <jwoithe@just42.net>
5676 L: platform-driver-x86@vger.kernel.org
5678 F: drivers/platform/x86/fujitsu-laptop.c
5680 FUJITSU M-5MO LS CAMERA ISP DRIVER
5681 M: Kyungmin Park <kyungmin.park@samsung.com>
5682 M: Heungjun Kim <riverful.kim@samsung.com>
5683 L: linux-media@vger.kernel.org
5685 F: drivers/media/i2c/m5mols/
5686 F: include/media/i2c/m5mols.h
5688 FUJITSU TABLET EXTRAS
5689 M: Robert Gerlach <khnz@gmx.de>
5690 L: platform-driver-x86@vger.kernel.org
5692 F: drivers/platform/x86/fujitsu-tablet.c
5694 FUSE: FILESYSTEM IN USERSPACE
5695 M: Miklos Szeredi <miklos@szeredi.hu>
5696 L: linux-fsdevel@vger.kernel.org
5697 W: http://fuse.sourceforge.net/
5698 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
5701 F: include/uapi/linux/fuse.h
5702 F: Documentation/filesystems/fuse.txt
5705 M: Thomas Gleixner <tglx@linutronix.de>
5706 M: Ingo Molnar <mingo@redhat.com>
5707 R: Peter Zijlstra <peterz@infradead.org>
5708 R: Darren Hart <dvhart@infradead.org>
5709 L: linux-kernel@vger.kernel.org
5710 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
5713 F: kernel/futex_compat.c
5714 F: include/asm-generic/futex.h
5715 F: include/linux/futex.h
5716 F: include/uapi/linux/futex.h
5717 F: tools/testing/selftests/futex/
5718 F: tools/perf/bench/futex*
5719 F: Documentation/*futex*
5721 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
5722 M: Rik Faith <faith@cs.unc.edu>
5723 L: linux-scsi@vger.kernel.org
5724 S: Odd Fixes (e.g., new signatures)
5725 F: drivers/scsi/fdomain.*
5728 M: Kees Cook <keescook@chromium.org>
5729 R: Emese Revfy <re.emese@gmail.com>
5730 L: kernel-hardening@lists.openwall.com
5732 F: scripts/gcc-plugins/
5733 F: scripts/gcc-plugin.sh
5734 F: scripts/Makefile.gcc-plugins
5735 F: Documentation/gcc-plugins.txt
5737 GCOV BASED KERNEL PROFILING
5738 M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
5741 F: Documentation/dev-tools/gcov.rst
5743 GDB KERNEL DEBUGGING HELPER SCRIPTS
5744 M: Jan Kiszka <jan.kiszka@siemens.com>
5745 M: Kieran Bingham <kieran@bingham.xyz>
5749 GDT SCSI DISK ARRAY CONTROLLER DRIVER
5750 M: Achim Leubner <achim_leubner@adaptec.com>
5751 L: linux-scsi@vger.kernel.org
5752 W: http://www.icp-vortex.com/
5754 F: drivers/scsi/gdt*
5756 GEMTEK FM RADIO RECEIVER DRIVER
5757 M: Hans Verkuil <hverkuil@xs4all.nl>
5758 L: linux-media@vger.kernel.org
5759 T: git git://linuxtv.org/media_tree.git
5760 W: https://linuxtv.org
5762 F: drivers/media/radio/radio-gemtek*
5764 GENERIC GPIO I2C DRIVER
5765 M: Haavard Skinnemoen <hskinnemoen@gmail.com>
5767 F: drivers/i2c/busses/i2c-gpio.c
5768 F: include/linux/i2c-gpio.h
5770 GENERIC GPIO I2C MULTIPLEXER DRIVER
5771 M: Peter Korsgaard <peter.korsgaard@barco.com>
5772 L: linux-i2c@vger.kernel.org
5774 F: drivers/i2c/muxes/i2c-mux-gpio.c
5775 F: include/linux/i2c-mux-gpio.h
5776 F: Documentation/i2c/muxes/i2c-mux-gpio
5778 GENERIC HDLC (WAN) DRIVERS
5779 M: Krzysztof Halasa <khc@pm.waw.pl>
5780 W: http://www.kernel.org/pub/linux/utils/net/hdlc/
5782 F: drivers/net/wan/c101.c
5783 F: drivers/net/wan/hd6457*
5784 F: drivers/net/wan/hdlc*
5785 F: drivers/net/wan/n2.c
5786 F: drivers/net/wan/pc300too.c
5787 F: drivers/net/wan/pci200syn.c
5788 F: drivers/net/wan/wanxl*
5790 GENERIC INCLUDE/ASM HEADER FILES
5791 M: Arnd Bergmann <arnd@arndb.de>
5792 L: linux-arch@vger.kernel.org
5793 T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
5795 F: include/asm-generic/
5796 F: include/uapi/asm-generic/
5798 GENERIC PHY FRAMEWORK
5799 M: Kishon Vijay Abraham I <kishon@ti.com>
5800 L: linux-kernel@vger.kernel.org
5801 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
5804 F: include/linux/phy/
5807 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
5808 M: Kevin Hilman <khilman@kernel.org>
5809 M: Ulf Hansson <ulf.hansson@linaro.org>
5810 L: linux-pm@vger.kernel.org
5812 F: drivers/base/power/domain*.c
5813 F: include/linux/pm_domain.h
5814 F: Documentation/devicetree/bindings/power/power_domain.txt
5816 GENERIC UIO DRIVER FOR PCI DEVICES
5817 M: "Michael S. Tsirkin" <mst@redhat.com>
5818 L: kvm@vger.kernel.org
5820 F: drivers/uio/uio_pci_generic.c
5822 GENWQE (IBM Generic Workqueue Card)
5823 M: Frank Haverkamp <haver@linux.vnet.ibm.com>
5824 M: Guilherme G. Piccoli <gpiccoli@linux.vnet.ibm.com>
5826 F: drivers/misc/genwqe/
5828 GET_MAINTAINER SCRIPT
5829 M: Joe Perches <joe@perches.com>
5831 F: scripts/get_maintainer.pl
5834 M: Steven Whitehouse <swhiteho@redhat.com>
5835 M: Bob Peterson <rpeterso@redhat.com>
5836 L: cluster-devel@redhat.com
5837 W: http://sources.redhat.com/cluster/
5838 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
5840 F: Documentation/filesystems/gfs2*.txt
5842 F: include/uapi/linux/gfs2_ondisk.h
5844 GIGASET ISDN DRIVERS
5845 M: Paul Bolle <pebolle@tiscali.nl>
5846 L: gigaset307x-common@lists.sourceforge.net
5847 W: http://gigaset307x.sourceforge.net/
5849 F: Documentation/isdn/README.gigaset
5850 F: drivers/isdn/gigaset/
5851 F: include/uapi/linux/gigaset_dev.h
5854 M: Hans Verkuil <hans.verkuil@cisco.com>
5855 L: linux-media@vger.kernel.org
5857 F: drivers/media/usb/go7007/
5860 M: Bastien Nocera <hadess@hadess.net>
5861 L: linux-input@vger.kernel.org
5863 F: drivers/input/touchscreen/goodix.c
5866 M: Mika Westerberg <mika.westerberg@linux.intel.com>
5867 M: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
5868 L: linux-gpio@vger.kernel.org
5869 L: linux-acpi@vger.kernel.org
5871 F: Documentation/acpi/gpio-properties.txt
5872 F: drivers/gpio/gpiolib-acpi.c
5875 M: Sean Young <sean@mess.org>
5876 L: linux-media@vger.kernel.org
5878 F: drivers/media/rc/gpio-ir-tx.c
5881 M: Bamvor Jian Zhang <bamvor.zhangjian@linaro.org>
5882 L: linux-gpio@vger.kernel.org
5884 F: drivers/gpio/gpio-mockup.c
5885 F: tools/testing/selftests/gpio/
5888 M: Linus Walleij <linus.walleij@linaro.org>
5889 L: linux-gpio@vger.kernel.org
5890 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
5892 F: Documentation/devicetree/bindings/gpio/
5893 F: Documentation/gpio/
5894 F: Documentation/ABI/testing/gpio-cdev
5895 F: Documentation/ABI/obsolete/sysfs-gpio
5897 F: include/linux/gpio/
5898 F: include/linux/gpio.h
5899 F: include/asm-generic/gpio.h
5900 F: include/uapi/linux/gpio.h
5903 GRE DEMULTIPLEXER DRIVER
5904 M: Dmitry Kozlov <xeb@mail.ru>
5905 L: netdev@vger.kernel.org
5907 F: net/ipv4/gre_demux.c
5908 F: net/ipv4/gre_offload.c
5909 F: include/net/gre.h
5911 GRETH 10/100/1G Ethernet MAC device driver
5912 M: Andreas Larsson <andreas@gaisler.com>
5913 L: netdev@vger.kernel.org
5915 F: drivers/net/ethernet/aeroflex/
5917 GREYBUS AUDIO PROTOCOLS DRIVERS
5918 M: Vaibhav Agarwal <vaibhav.sr@gmail.com>
5919 M: Mark Greer <mgreer@animalcreek.com>
5921 F: drivers/staging/greybus/audio_apbridgea.c
5922 F: drivers/staging/greybus/audio_apbridgea.h
5923 F: drivers/staging/greybus/audio_codec.c
5924 F: drivers/staging/greybus/audio_codec.h
5925 F: drivers/staging/greybus/audio_gb.c
5926 F: drivers/staging/greybus/audio_manager.c
5927 F: drivers/staging/greybus/audio_manager.h
5928 F: drivers/staging/greybus/audio_manager_module.c
5929 F: drivers/staging/greybus/audio_manager_private.h
5930 F: drivers/staging/greybus/audio_manager_sysfs.c
5931 F: drivers/staging/greybus/audio_module.c
5932 F: drivers/staging/greybus/audio_topology.c
5934 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
5935 M: Viresh Kumar <vireshk@kernel.org>
5937 F: drivers/staging/greybus/authentication.c
5938 F: drivers/staging/greybus/bootrom.c
5939 F: drivers/staging/greybus/firmware.h
5940 F: drivers/staging/greybus/fw-core.c
5941 F: drivers/staging/greybus/fw-download.c
5942 F: drivers/staging/greybus/fw-managament.c
5943 F: drivers/staging/greybus/greybus_authentication.h
5944 F: drivers/staging/greybus/greybus_firmware.h
5945 F: drivers/staging/greybus/hid.c
5946 F: drivers/staging/greybus/i2c.c
5947 F: drivers/staging/greybus/spi.c
5948 F: drivers/staging/greybus/spilib.c
5949 F: drivers/staging/greybus/spilib.h
5951 GREYBUS LOOPBACK/TIME PROTOCOLS DRIVERS
5952 M: Bryan O'Donoghue <pure.logic@nexus-software.ie>
5954 F: drivers/staging/greybus/loopback.c
5955 F: drivers/staging/greybus/timesync.c
5956 F: drivers/staging/greybus/timesync_platform.c
5958 GREYBUS PLATFORM DRIVERS
5959 M: Vaibhav Hiremath <hvaibhav.linux@gmail.com>
5961 F: drivers/staging/greybus/arche-platform.c
5962 F: drivers/staging/greybus/arche-apb-ctrl.c
5963 F: drivers/staging/greybus/arche_platform.h
5965 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
5966 M: Rui Miguel Silva <rmfrfs@gmail.com>
5968 F: drivers/staging/greybus/sdio.c
5969 F: drivers/staging/greybus/light.c
5970 F: drivers/staging/greybus/gpio.c
5971 F: drivers/staging/greybus/power_supply.c
5972 F: drivers/staging/greybus/spi.c
5973 F: drivers/staging/greybus/spilib.c
5976 M: Johan Hovold <johan@kernel.org>
5977 M: Alex Elder <elder@kernel.org>
5978 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5980 F: drivers/staging/greybus/
5981 L: greybus-dev@lists.linaro.org (moderated for non-subscribers)
5983 GREYBUS UART PROTOCOLS DRIVERS
5984 M: David Lin <dtwlin@gmail.com>
5986 F: drivers/staging/greybus/uart.c
5987 F: drivers/staging/greybus/log.c
5989 GS1662 VIDEO SERIALIZER
5990 M: Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
5991 L: linux-media@vger.kernel.org
5992 T: git git://linuxtv.org/media_tree.git
5994 F: drivers/media/spi/gs1662.c
5996 GSPCA FINEPIX SUBDRIVER
5997 M: Frank Zago <frank@zago.net>
5998 L: linux-media@vger.kernel.org
5999 T: git git://linuxtv.org/media_tree.git
6001 F: drivers/media/usb/gspca/finepix.c
6003 GSPCA GL860 SUBDRIVER
6004 M: Olivier Lorin <o.lorin@laposte.net>
6005 L: linux-media@vger.kernel.org
6006 T: git git://linuxtv.org/media_tree.git
6008 F: drivers/media/usb/gspca/gl860/
6010 GSPCA M5602 SUBDRIVER
6011 M: Erik Andren <erik.andren@gmail.com>
6012 L: linux-media@vger.kernel.org
6013 T: git git://linuxtv.org/media_tree.git
6015 F: drivers/media/usb/gspca/m5602/
6017 GSPCA PAC207 SONIXB SUBDRIVER
6018 M: Hans Verkuil <hverkuil@xs4all.nl>
6019 L: linux-media@vger.kernel.org
6020 T: git git://linuxtv.org/media_tree.git
6022 F: drivers/media/usb/gspca/pac207.c
6024 GSPCA SN9C20X SUBDRIVER
6025 M: Brian Johnson <brijohn@gmail.com>
6026 L: linux-media@vger.kernel.org
6027 T: git git://linuxtv.org/media_tree.git
6029 F: drivers/media/usb/gspca/sn9c20x.c
6031 GSPCA T613 SUBDRIVER
6032 M: Leandro Costantino <lcostantino@gmail.com>
6033 L: linux-media@vger.kernel.org
6034 T: git git://linuxtv.org/media_tree.git
6036 F: drivers/media/usb/gspca/t613.c
6038 GSPCA USB WEBCAM DRIVER
6039 M: Hans Verkuil <hverkuil@xs4all.nl>
6040 L: linux-media@vger.kernel.org
6041 T: git git://linuxtv.org/media_tree.git
6043 F: drivers/media/usb/gspca/
6045 GTP (GPRS Tunneling Protocol)
6046 M: Pablo Neira Ayuso <pablo@netfilter.org>
6047 M: Harald Welte <laforge@gnumonks.org>
6048 L: osmocom-net-gprs@lists.osmocom.org
6049 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
6051 F: drivers/net/gtp.c
6053 GUID PARTITION TABLE (GPT)
6054 M: Davidlohr Bueso <dave@stgolabs.net>
6055 L: linux-efi@vger.kernel.org
6057 F: block/partitions/efi.*
6060 M: Yoshinori Sato <ysato@users.sourceforge.jp>
6061 L: uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
6062 W: http://uclinux-h8.sourceforge.jp
6063 T: git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
6066 F: drivers/clocksource/h8300_*.c
6067 F: drivers/clk/h8300/
6068 F: drivers/irqchip/irq-renesas-h8*.c
6071 M: Antti Palosaari <crope@iki.fi>
6072 L: linux-media@vger.kernel.org
6073 W: https://linuxtv.org
6074 W: http://palosaari.fi/linux/
6075 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6076 T: git git://linuxtv.org/anttip/media_tree.git
6078 F: drivers/media/usb/hackrf/
6080 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
6081 M: Frank Seidel <frank@f-seidel.de>
6082 L: platform-driver-x86@vger.kernel.org
6083 W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
6085 F: drivers/platform/x86/hdaps.c
6088 M: Jean Delvare <jdelvare@suse.com>
6089 M: Guenter Roeck <linux@roeck-us.net>
6090 L: linux-hwmon@vger.kernel.org
6091 W: http://hwmon.wiki.kernel.org/
6092 T: quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/
6093 T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
6095 F: Documentation/hwmon/
6097 F: include/linux/hwmon*.h
6099 HARDWARE RANDOM NUMBER GENERATOR CORE
6100 M: Matt Mackall <mpm@selenic.com>
6101 M: Herbert Xu <herbert@gondor.apana.org.au>
6102 L: linux-crypto@vger.kernel.org
6104 F: Documentation/devicetree/bindings/rng/
6105 F: Documentation/hw_random.txt
6106 F: drivers/char/hw_random/
6107 F: include/linux/hw_random.h
6109 HARDWARE SPINLOCK CORE
6110 M: Ohad Ben-Cohen <ohad@wizery.com>
6111 M: Bjorn Andersson <bjorn.andersson@linaro.org>
6112 L: linux-remoteproc@vger.kernel.org
6114 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/hwspinlock.git
6115 F: Documentation/devicetree/bindings/hwlock/
6116 F: Documentation/hwspinlock.txt
6117 F: drivers/hwspinlock/
6118 F: include/linux/hwspinlock.h
6120 HARMONY SOUND DRIVER
6121 L: linux-parisc@vger.kernel.org
6123 F: sound/parisc/harmony.*
6125 HDPVR USB VIDEO ENCODER DRIVER
6126 M: Hans Verkuil <hverkuil@xs4all.nl>
6127 L: linux-media@vger.kernel.org
6128 T: git git://linuxtv.org/media_tree.git
6129 W: https://linuxtv.org
6131 F: drivers/media/usb/hdpvr/
6133 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
6134 M: Jimmy Vance <jimmy.vance@hpe.com>
6136 F: Documentation/watchdog/hpwdt.txt
6137 F: drivers/watchdog/hpwdt.c
6139 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
6140 M: Don Brace <don.brace@microsemi.com>
6141 L: esc.storagedev@microsemi.com
6142 L: linux-scsi@vger.kernel.org
6144 F: Documentation/scsi/hpsa.txt
6145 F: drivers/scsi/hpsa*.[ch]
6146 F: include/linux/cciss*.h
6147 F: include/uapi/linux/cciss*.h
6150 M: Mike Marciniszyn <mike.marciniszyn@intel.com>
6151 M: Dennis Dalessandro <dennis.dalessandro@intel.com>
6152 L: linux-rdma@vger.kernel.org
6154 F: drivers/infiniband/hw/hfi1
6157 L: linux-fsdevel@vger.kernel.org
6159 F: Documentation/filesystems/hfs.txt
6163 L: linux-fsdevel@vger.kernel.org
6165 F: Documentation/filesystems/hfsplus.txt
6168 HGA FRAMEBUFFER DRIVER
6169 M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
6170 L: linux-nvidia@lists.surfsouth.com
6171 W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
6173 F: drivers/video/fbdev/hgafb.c
6175 HIBERNATION (aka Software Suspend, aka swsusp)
6176 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
6177 M: Pavel Machek <pavel@ucw.cz>
6178 L: linux-pm@vger.kernel.org
6179 B: https://bugzilla.kernel.org
6182 F: drivers/base/power/
6184 F: include/linux/suspend.h
6185 F: include/linux/freezer.h
6186 F: include/linux/pm.h
6187 F: arch/*/include/asm/suspend*.h
6190 M: Jiri Kosina <jikos@kernel.org>
6191 R: Benjamin Tissoires <benjamin.tissoires@redhat.com>
6192 L: linux-input@vger.kernel.org
6193 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
6196 F: include/linux/hid*
6197 F: include/uapi/linux/hid*
6199 HID SENSOR HUB DRIVERS
6200 M: Jiri Kosina <jikos@kernel.org>
6201 M: Jonathan Cameron <jic23@kernel.org>
6202 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
6203 L: linux-input@vger.kernel.org
6204 L: linux-iio@vger.kernel.org
6206 F: Documentation/hid/hid-sensor*
6207 F: drivers/hid/hid-sensor-*
6208 F: drivers/iio/*/hid-*
6209 F: include/linux/hid-sensor-*
6211 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
6212 M: Thomas Gleixner <tglx@linutronix.de>
6213 L: linux-kernel@vger.kernel.org
6214 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
6216 F: Documentation/timers/
6217 F: kernel/time/hrtimer.c
6218 F: kernel/time/clockevents.c
6219 F: kernel/time/timer_*.c
6220 F: include/linux/clockchips.h
6221 F: include/linux/hrtimer.h
6223 HIGH-SPEED SCC DRIVER FOR AX.25
6224 L: linux-hams@vger.kernel.org
6226 F: drivers/net/hamradio/dmascc.c
6227 F: drivers/net/hamradio/scc.c
6229 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
6230 M: HighPoint Linux Team <linux@highpoint-tech.com>
6231 W: http://www.highpoint-tech.com
6233 F: Documentation/scsi/hptiop.txt
6234 F: drivers/scsi/hptiop.c
6237 M: Jes Sorensen <jes@trained-monkey.org>
6238 L: linux-hippi@sunsite.dk
6240 F: include/linux/hippidevice.h
6241 F: include/uapi/linux/if_hippi.h
6243 F: drivers/net/hippi/
6245 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
6246 M: Yisen Zhuang <yisen.zhuang@huawei.com>
6247 M: Salil Mehta <salil.mehta@huawei.com>
6248 L: netdev@vger.kernel.org
6249 W: http://www.hisilicon.com
6251 F: drivers/net/ethernet/hisilicon/hns3/
6253 HISILICON NETWORK SUBSYSTEM DRIVER
6254 M: Yisen Zhuang <yisen.zhuang@huawei.com>
6255 M: Salil Mehta <salil.mehta@huawei.com>
6256 L: netdev@vger.kernel.org
6257 W: http://www.hisilicon.com
6259 F: drivers/net/ethernet/hisilicon/
6260 F: Documentation/devicetree/bindings/net/hisilicon*.txt
6262 HISILICON PMU DRIVER
6263 M: Shaokun Zhang <zhangshaokun@hisilicon.com>
6264 W: http://www.hisilicon.com
6266 F: drivers/perf/hisilicon
6267 F: Documentation/perf/hisi-pmu.txt
6269 HISILICON ROCE DRIVER
6270 M: Lijun Ou <oulijun@huawei.com>
6271 M: Wei Hu(Xavier) <xavier.huwei@huawei.com>
6272 L: linux-rdma@vger.kernel.org
6274 F: drivers/infiniband/hw/hns/
6275 F: Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
6277 HISILICON SAS Controller
6278 M: John Garry <john.garry@huawei.com>
6279 W: http://www.hisilicon.com
6281 F: drivers/scsi/hisi_sas/
6282 F: Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
6284 HMM - Heterogeneous Memory Management
6285 M: Jérôme Glisse <jglisse@redhat.com>
6286 L: linux-mm@kvack.org
6289 F: include/linux/hmm*
6292 M: Jouni Malinen <j@w1.fi>
6293 L: linux-wireless@vger.kernel.org
6294 W: http://w1.fi/hostap-driver.html
6296 F: drivers/net/wireless/intersil/hostap/
6298 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
6299 L: platform-driver-x86@vger.kernel.org
6301 F: drivers/platform/x86/tc1100-wmi.c
6303 HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
6304 M: Jaroslav Kysela <perex@perex.cz>
6306 F: drivers/net/ethernet/hp/hp100.*
6308 HPET: High Precision Event Timers driver
6309 M: Clemens Ladisch <clemens@ladisch.de>
6311 F: Documentation/timers/hpet.txt
6312 F: drivers/char/hpet.c
6313 F: include/linux/hpet.h
6314 F: include/uapi/linux/hpet.h
6318 F: arch/x86/kernel/hpet.c
6319 F: arch/x86/include/asm/hpet.h
6322 M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
6323 W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
6328 M: Sebastian Reichel <sre@kernel.org>
6329 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
6331 F: Documentation/ABI/testing/sysfs-bus-hsi
6332 F: Documentation/driver-api/hsi.rst
6334 F: include/linux/hsi/
6335 F: include/uapi/linux/hsi/
6338 L: linux-usb@vger.kernel.org
6340 F: drivers/net/usb/hso.c
6342 HSR NETWORK PROTOCOL
6343 M: Arvid Brodin <arvid.brodin@alten.se>
6344 L: netdev@vger.kernel.org
6348 HT16K33 LED CONTROLLER DRIVER
6349 M: Robin van der Gracht <robin@protonic.nl>
6351 F: drivers/auxdisplay/ht16k33.c
6352 F: Documentation/devicetree/bindings/display/ht16k33.txt
6354 HTCPEN TOUCHSCREEN DRIVER
6355 M: Pau Oliva Fora <pof@eslack.org>
6356 L: linux-input@vger.kernel.org
6358 F: drivers/input/touchscreen/htcpen.c
6360 HUAWEI ETHERNET DRIVER
6361 M: Aviad Krawczyk <aviad.krawczyk@huawei.com>
6362 L: netdev@vger.kernel.org
6364 F: Documentation/networking/hinic.txt
6365 F: drivers/net/ethernet/huawei/hinic/
6368 M: Nadia Yvette Chambers <nyc@holomorphy.com>
6373 M: Jean-Christophe Trotin <jean-christophe.trotin@st.com>
6374 L: linux-media@vger.kernel.org
6375 T: git git://linuxtv.org/media_tree.git
6376 W: https://linuxtv.org
6378 F: drivers/media/platform/sti/hva
6380 HWPOISON MEMORY FAILURE HANDLING
6381 M: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
6382 L: linux-mm@kvack.org
6384 F: mm/memory-failure.c
6385 F: mm/hwpoison-inject.c
6387 Hyper-V CORE AND DRIVERS
6388 M: "K. Y. Srinivasan" <kys@microsoft.com>
6389 M: Haiyang Zhang <haiyangz@microsoft.com>
6390 M: Stephen Hemminger <sthemmin@microsoft.com>
6391 L: devel@linuxdriverproject.org
6393 F: Documentation/networking/netvsc.txt
6394 F: arch/x86/include/asm/mshyperv.h
6395 F: arch/x86/include/asm/trace/hyperv.h
6396 F: arch/x86/include/uapi/asm/hyperv.h
6397 F: arch/x86/kernel/cpu/mshyperv.c
6399 F: drivers/hid/hid-hyperv.c
6401 F: drivers/input/serio/hyperv-keyboard.c
6402 F: drivers/pci/host/pci-hyperv.c
6403 F: drivers/net/hyperv/
6404 F: drivers/scsi/storvsc_drv.c
6405 F: drivers/uio/uio_hv_generic.c
6406 F: drivers/video/fbdev/hyperv_fb.c
6407 F: net/vmw_vsock/hyperv_transport.c
6408 F: include/linux/hyperv.h
6409 F: include/uapi/linux/hyperv.h
6411 F: Documentation/ABI/stable/sysfs-bus-vmbus
6413 HYPERVISOR VIRTUAL CONSOLE DRIVER
6414 L: linuxppc-dev@lists.ozlabs.org
6419 M: Mika Westerberg <mika.westerberg@linux.intel.com>
6420 L: linux-i2c@vger.kernel.org
6421 L: linux-acpi@vger.kernel.org
6423 F: drivers/i2c/i2c-core-acpi.c
6426 M: Peter Rosin <peda@axentia.se>
6427 L: linux-i2c@vger.kernel.org
6429 F: Documentation/i2c/i2c-topology
6430 F: Documentation/i2c/muxes/
6431 F: Documentation/devicetree/bindings/i2c/i2c-mux*
6432 F: Documentation/devicetree/bindings/i2c/i2c-arb*
6433 F: Documentation/devicetree/bindings/i2c/i2c-gate*
6434 F: drivers/i2c/i2c-mux.c
6435 F: drivers/i2c/muxes/
6436 F: include/linux/i2c-mux.h
6438 I2C OVER PARALLEL PORT
6439 M: Jean Delvare <jdelvare@suse.com>
6440 L: linux-i2c@vger.kernel.org
6442 F: Documentation/i2c/busses/i2c-parport
6443 F: Documentation/i2c/busses/i2c-parport-light
6444 F: drivers/i2c/busses/i2c-parport.c
6445 F: drivers/i2c/busses/i2c-parport-light.c
6448 M: Wolfram Sang <wsa@the-dreams.de>
6449 L: linux-i2c@vger.kernel.org
6450 W: https://i2c.wiki.kernel.org/
6451 Q: https://patchwork.ozlabs.org/project/linux-i2c/list/
6452 T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
6454 F: Documentation/devicetree/bindings/i2c/
6455 F: Documentation/i2c/
6458 F: include/linux/i2c.h
6459 F: include/linux/i2c-*.h
6460 F: include/uapi/linux/i2c.h
6461 F: include/uapi/linux/i2c-*.h
6464 M: Jean Delvare <jdelvare@suse.com>
6465 L: linux-i2c@vger.kernel.org
6467 F: Documentation/i2c/busses/i2c-taos-evm
6468 F: drivers/i2c/busses/i2c-taos-evm.c
6471 M: Till Harbaum <till@harbaum.org>
6472 L: linux-i2c@vger.kernel.org
6473 W: http://www.harbaum.org/till/i2c_tiny_usb
6475 F: drivers/i2c/busses/i2c-tiny-usb.c
6477 I2C/SMBUS CONTROLLER DRIVERS FOR PC
6478 M: Jean Delvare <jdelvare@suse.com>
6479 L: linux-i2c@vger.kernel.org
6481 F: Documentation/i2c/busses/i2c-ali1535
6482 F: Documentation/i2c/busses/i2c-ali1563
6483 F: Documentation/i2c/busses/i2c-ali15x3
6484 F: Documentation/i2c/busses/i2c-amd756
6485 F: Documentation/i2c/busses/i2c-amd8111
6486 F: Documentation/i2c/busses/i2c-i801
6487 F: Documentation/i2c/busses/i2c-nforce2
6488 F: Documentation/i2c/busses/i2c-piix4
6489 F: Documentation/i2c/busses/i2c-sis5595
6490 F: Documentation/i2c/busses/i2c-sis630
6491 F: Documentation/i2c/busses/i2c-sis96x
6492 F: Documentation/i2c/busses/i2c-via
6493 F: Documentation/i2c/busses/i2c-viapro
6494 F: drivers/i2c/busses/i2c-ali1535.c
6495 F: drivers/i2c/busses/i2c-ali1563.c
6496 F: drivers/i2c/busses/i2c-ali15x3.c
6497 F: drivers/i2c/busses/i2c-amd756.c
6498 F: drivers/i2c/busses/i2c-amd756-s4882.c
6499 F: drivers/i2c/busses/i2c-amd8111.c
6500 F: drivers/i2c/busses/i2c-i801.c
6501 F: drivers/i2c/busses/i2c-isch.c
6502 F: drivers/i2c/busses/i2c-nforce2.c
6503 F: drivers/i2c/busses/i2c-nforce2-s4985.c
6504 F: drivers/i2c/busses/i2c-piix4.c
6505 F: drivers/i2c/busses/i2c-sis5595.c
6506 F: drivers/i2c/busses/i2c-sis630.c
6507 F: drivers/i2c/busses/i2c-sis96x.c
6508 F: drivers/i2c/busses/i2c-via.c
6509 F: drivers/i2c/busses/i2c-viapro.c
6511 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
6512 M: Hans de Goede <hdegoede@redhat.com>
6513 L: linux-i2c@vger.kernel.org
6515 F: drivers/i2c/busses/i2c-cht-wc.c
6517 I2C/SMBUS ISMT DRIVER
6518 M: Seth Heasley <seth.heasley@intel.com>
6519 M: Neil Horman <nhorman@tuxdriver.com>
6520 L: linux-i2c@vger.kernel.org
6521 F: drivers/i2c/busses/i2c-ismt.c
6522 F: Documentation/i2c/busses/i2c-ismt
6524 I2C/SMBUS STUB DRIVER
6525 M: Jean Delvare <jdelvare@suse.com>
6526 L: linux-i2c@vger.kernel.org
6528 F: drivers/i2c/i2c-stub.c
6531 M: "H. Peter Anvin" <hpa@zytor.com>
6535 i386 SETUP CODE / CPU ERRATA WORKAROUNDS
6536 M: "H. Peter Anvin" <hpa@zytor.com>
6537 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
6540 IA64 (Itanium) PLATFORM
6541 M: Tony Luck <tony.luck@intel.com>
6542 M: Fenghua Yu <fenghua.yu@intel.com>
6543 L: linux-ia64@vger.kernel.org
6544 T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
6548 IBM Power 842 compression accelerator
6549 M: Haren Myneni <haren@us.ibm.com>
6551 F: drivers/crypto/nx/Makefile
6552 F: drivers/crypto/nx/Kconfig
6553 F: drivers/crypto/nx/nx-842*
6554 F: include/linux/sw842.h
6558 IBM Power in-Nest Crypto Acceleration
6559 M: Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
6560 M: Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
6561 L: linux-crypto@vger.kernel.org
6563 F: drivers/crypto/nx/Makefile
6564 F: drivers/crypto/nx/Kconfig
6565 F: drivers/crypto/nx/nx-aes*
6566 F: drivers/crypto/nx/nx-sha*
6567 F: drivers/crypto/nx/nx.*
6568 F: drivers/crypto/nx/nx_csbcpb.h
6569 F: drivers/crypto/nx/nx_debugfs.h
6571 IBM Power Linux RAID adapter
6572 M: Brian King <brking@us.ibm.com>
6574 F: drivers/scsi/ipr.*
6576 IBM Power SRIOV Virtual NIC Device Driver
6577 M: Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
6578 M: John Allen <jallen@linux.vnet.ibm.com>
6579 L: netdev@vger.kernel.org
6581 F: drivers/net/ethernet/ibm/ibmvnic.*
6583 IBM Power Virtual Accelerator Switchboard
6584 M: Sukadev Bhattiprolu
6585 L: linuxppc-dev@lists.ozlabs.org
6587 F: arch/powerpc/platforms/powernv/vas*
6588 F: arch/powerpc/platforms/powernv/copy-paste.h
6589 F: arch/powerpc/include/asm/vas.h
6590 F: arch/powerpc/include/uapi/asm/vas.h
6592 IBM Power Virtual Ethernet Device Driver
6593 M: Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
6594 L: netdev@vger.kernel.org
6596 F: drivers/net/ethernet/ibm/ibmveth.*
6598 IBM Power Virtual FC Device Drivers
6599 M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
6600 L: linux-scsi@vger.kernel.org
6602 F: drivers/scsi/ibmvscsi/ibmvfc*
6604 IBM Power Virtual SCSI Device Drivers
6605 M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
6606 L: linux-scsi@vger.kernel.org
6608 F: drivers/scsi/ibmvscsi/ibmvscsi*
6609 F: include/scsi/viosrp.h
6611 IBM Power Virtual SCSI Device Target Driver
6612 M: Bryant G. Ly <bryantly@linux.vnet.ibm.com>
6613 M: Michael Cyr <mikecyr@linux.vnet.ibm.com>
6614 L: linux-scsi@vger.kernel.org
6615 L: target-devel@vger.kernel.org
6617 F: drivers/scsi/ibmvscsi_tgt/
6619 IBM Power VMX Cryptographic instructions
6620 M: Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
6621 M: Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
6622 L: linux-crypto@vger.kernel.org
6624 F: drivers/crypto/vmx/Makefile
6625 F: drivers/crypto/vmx/Kconfig
6626 F: drivers/crypto/vmx/vmx.c
6627 F: drivers/crypto/vmx/aes*
6628 F: drivers/crypto/vmx/ghash*
6629 F: drivers/crypto/vmx/ppc-xlate.pl
6631 IBM ServeRAID RAID DRIVER
6633 F: drivers/scsi/ips.*
6635 ICH LPC AND GPIO DRIVER
6636 M: Peter Tyser <ptyser@xes-inc.com>
6638 F: drivers/mfd/lpc_ich.c
6639 F: drivers/gpio/gpio-ich.c
6642 M: "David S. Miller" <davem@davemloft.net>
6643 L: linux-ide@vger.kernel.org
6644 Q: http://patchwork.ozlabs.org/project/linux-ide/list/
6645 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
6647 F: Documentation/ide/
6649 F: include/linux/ide.h
6652 M: Borislav Petkov <bp@alien8.de>
6653 L: linux-ide@vger.kernel.org
6655 F: Documentation/cdrom/ide-cd
6656 F: drivers/ide/ide-cd*
6658 IDEAPAD LAPTOP EXTRAS DRIVER
6659 M: Ike Panhc <ike.pan@canonical.com>
6660 L: platform-driver-x86@vger.kernel.org
6661 W: http://launchpad.net/ideapad-laptop
6663 F: drivers/platform/x86/ideapad-laptop.c
6665 IDEAPAD LAPTOP SLIDEBAR DRIVER
6666 M: Andrey Moiseev <o2g.org.ru@gmail.com>
6667 L: linux-input@vger.kernel.org
6668 W: https://github.com/o2genum/ideapad-slidebar
6670 F: drivers/input/misc/ideapad_slidebar.c
6672 IDT VersaClock 5 CLOCK DRIVER
6673 M: Marek Vasut <marek.vasut@gmail.com>
6675 F: drivers/clk/clk-versaclock5.c
6677 IEEE 802.15.4 SUBSYSTEM
6678 M: Alexander Aring <alex.aring@gmail.com>
6679 M: Stefan Schmidt <stefan@osg.samsung.com>
6680 L: linux-wpan@vger.kernel.org
6681 W: http://wpan.cakelab.org/
6682 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
6683 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
6687 F: drivers/net/ieee802154/
6688 F: include/linux/nl802154.h
6689 F: include/linux/ieee802154.h
6690 F: include/net/nl802154.h
6691 F: include/net/mac802154.h
6692 F: include/net/af_ieee802154.h
6693 F: include/net/cfg802154.h
6694 F: include/net/ieee802154_netdev.h
6695 F: Documentation/networking/ieee802154.txt
6698 M: Yotam Gigi <yotam.gi@gmail.com>
6699 M: Jamal Hadi Salim <jhs@mojatatu.com>
6701 F: include/net/ife.h
6702 F: include/uapi/linux/ife.h
6704 IGORPLUG-USB IR RECEIVER
6705 M: Sean Young <sean@mess.org>
6706 L: linux-media@vger.kernel.org
6708 F: drivers/media/rc/igorplugusb.c
6710 IGUANAWORKS USB IR TRANSCEIVER
6711 M: Sean Young <sean@mess.org>
6712 L: linux-media@vger.kernel.org
6714 F: drivers/media/rc/iguanair.c
6716 IIO DIGITAL POTENTIOMETER DAC
6717 M: Peter Rosin <peda@axentia.se>
6718 L: linux-iio@vger.kernel.org
6720 F: Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
6721 F: Documentation/devicetree/bindings/iio/dac/dpot-dac.txt
6722 F: drivers/iio/dac/dpot-dac.c
6724 IIO ENVELOPE DETECTOR
6725 M: Peter Rosin <peda@axentia.se>
6726 L: linux-iio@vger.kernel.org
6728 F: Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
6729 F: Documentation/devicetree/bindings/iio/adc/envelope-detector.txt
6730 F: drivers/iio/adc/envelope-detector.c
6733 M: Peter Rosin <peda@axentia.se>
6734 L: linux-iio@vger.kernel.org
6736 F: Documentation/devicetree/bindings/iio/multiplexer/iio-mux.txt
6737 F: drivers/iio/multiplexer/iio-mux.c
6739 IIO SUBSYSTEM AND DRIVERS
6740 M: Jonathan Cameron <jic23@kernel.org>
6741 R: Hartmut Knaack <knaack.h@gmx.de>
6742 R: Lars-Peter Clausen <lars@metafoo.de>
6743 R: Peter Meerwald-Stadler <pmeerw@pmeerw.net>
6744 L: linux-iio@vger.kernel.org
6745 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
6747 F: Documentation/devicetree/bindings/iio/
6749 F: drivers/staging/iio/
6750 F: include/linux/iio/
6753 IKANOS/ADI EAGLE ADSL USB DRIVER
6754 M: Matthieu Castet <castet.matthieu@free.fr>
6755 M: Stanislaw Gruszka <stf_xl@wp.pl>
6757 F: drivers/usb/atm/ueagle-atm.c
6759 IMGTEC ASCII LCD DRIVER
6760 M: Paul Burton <paul.burton@mips.com>
6762 F: Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
6763 F: drivers/auxdisplay/img-ascii-lcd.c
6765 IMGTEC IR DECODER DRIVER
6766 M: James Hogan <jhogan@kernel.org>
6768 F: drivers/media/rc/img-ir/
6770 IMS TWINTURBO FRAMEBUFFER DRIVER
6771 L: linux-fbdev@vger.kernel.org
6773 F: drivers/video/fbdev/imsttfb.c
6775 INA209 HARDWARE MONITOR DRIVER
6776 M: Guenter Roeck <linux@roeck-us.net>
6777 L: linux-hwmon@vger.kernel.org
6779 F: Documentation/hwmon/ina209
6780 F: Documentation/devicetree/bindings/i2c/ina209.txt
6781 F: drivers/hwmon/ina209.c
6783 INA2XX HARDWARE MONITOR DRIVER
6784 M: Guenter Roeck <linux@roeck-us.net>
6785 L: linux-hwmon@vger.kernel.org
6787 F: Documentation/hwmon/ina2xx
6788 F: drivers/hwmon/ina2xx.c
6789 F: include/linux/platform_data/ina2xx.h
6791 INDUSTRY PACK SUBSYSTEM (IPACK)
6792 M: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
6793 M: Jens Taprogge <jens.taprogge@taprogge.org>
6794 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
6795 L: industrypack-devel@lists.sourceforge.net
6796 W: http://industrypack.sourceforge.net
6800 INFINIBAND SUBSYSTEM
6801 M: Doug Ledford <dledford@redhat.com>
6802 M: Sean Hefty <sean.hefty@intel.com>
6803 M: Hal Rosenstock <hal.rosenstock@gmail.com>
6804 L: linux-rdma@vger.kernel.org
6805 W: http://www.openfabrics.org/
6806 Q: http://patchwork.kernel.org/project/linux-rdma/list/
6807 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git
6809 F: Documentation/devicetree/bindings/infiniband/
6810 F: Documentation/infiniband/
6811 F: drivers/infiniband/
6812 F: include/uapi/linux/if_infiniband.h
6813 F: include/uapi/rdma/
6816 INGENIC JZ4780 DMA Driver
6817 M: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
6819 F: drivers/dma/dma-jz4780.c
6821 INGENIC JZ4780 NAND DRIVER
6822 M: Harvey Hunt <harveyhuntnexus@gmail.com>
6823 L: linux-mtd@lists.infradead.org
6825 F: drivers/mtd/nand/jz4780_*
6828 M: Jan Kara <jack@suse.cz>
6829 R: Amir Goldstein <amir73il@gmail.com>
6830 L: linux-fsdevel@vger.kernel.org
6832 F: Documentation/filesystems/inotify.txt
6833 F: fs/notify/inotify/
6834 F: include/linux/inotify.h
6835 F: include/uapi/linux/inotify.h
6837 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
6838 M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
6839 L: linux-input@vger.kernel.org
6840 Q: http://patchwork.kernel.org/project/linux-input/list/
6841 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
6844 F: include/linux/input.h
6845 F: include/uapi/linux/input.h
6846 F: include/uapi/linux/input-event-codes.h
6847 F: include/linux/input/
6848 F: Documentation/devicetree/bindings/input/
6849 F: Documentation/input/
6851 INPUT MULTITOUCH (MT) PROTOCOL
6852 M: Henrik Rydberg <rydberg@bitmath.org>
6853 L: linux-input@vger.kernel.org
6855 F: Documentation/input/multi-touch-protocol.rst
6856 F: drivers/input/input-mt.c
6859 INSIDE SECURE CRYPTO DRIVER
6860 M: Antoine Tenart <antoine.tenart@free-electrons.com>
6861 F: drivers/crypto/inside-secure/
6863 L: linux-crypto@vger.kernel.org
6865 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
6866 M: Mimi Zohar <zohar@linux.vnet.ibm.com>
6867 M: Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
6868 L: linux-integrity@vger.kernel.org
6869 T: git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
6871 F: security/integrity/ima/
6873 INTEL 810/815 FRAMEBUFFER DRIVER
6874 M: Antonino Daplas <adaplas@gmail.com>
6875 L: linux-fbdev@vger.kernel.org
6877 F: drivers/video/fbdev/i810/
6879 INTEL ASoC BDW/HSW DRIVERS
6880 M: Jie Yang <yang.jie@linux.intel.com>
6881 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6883 F: sound/soc/intel/common/sst-dsp*
6884 F: sound/soc/intel/common/sst-firmware.c
6885 F: sound/soc/intel/boards/broadwell.c
6886 F: sound/soc/intel/haswell/
6888 INTEL C600 SERIES SAS CONTROLLER DRIVER
6889 M: Intel SCU Linux support <intel-linux-scu@intel.com>
6890 M: Artur Paszkiewicz <artur.paszkiewicz@intel.com>
6891 L: linux-scsi@vger.kernel.org
6892 T: git git://git.code.sf.net/p/intel-sas/isci
6894 F: drivers/scsi/isci/
6896 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
6897 M: Jani Nikula <jani.nikula@linux.intel.com>
6898 M: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
6899 M: Rodrigo Vivi <rodrigo.vivi@intel.com>
6900 L: intel-gfx@lists.freedesktop.org
6901 W: https://01.org/linuxgraphics/
6902 B: https://01.org/linuxgraphics/documentation/how-report-bugs
6903 C: irc://chat.freenode.net/intel-gfx
6904 Q: http://patchwork.freedesktop.org/project/intel-gfx/
6905 T: git git://anongit.freedesktop.org/drm-intel
6907 F: drivers/gpu/drm/i915/
6908 F: include/drm/i915*
6909 F: include/uapi/drm/i915_drm.h
6910 F: Documentation/gpu/i915.rst
6912 INTEL ETHERNET DRIVERS
6913 M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
6914 L: intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
6915 W: http://www.intel.com/support/feedback.htm
6916 W: http://e1000.sourceforge.net/
6917 Q: http://patchwork.ozlabs.org/project/intel-wired-lan/list/
6918 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
6919 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
6921 F: Documentation/networking/e100.txt
6922 F: Documentation/networking/e1000.txt
6923 F: Documentation/networking/e1000e.txt
6924 F: Documentation/networking/igb.txt
6925 F: Documentation/networking/igbvf.txt
6926 F: Documentation/networking/ixgb.txt
6927 F: Documentation/networking/ixgbe.txt
6928 F: Documentation/networking/ixgbevf.txt
6929 F: Documentation/networking/i40e.txt
6930 F: Documentation/networking/i40evf.txt
6931 F: drivers/net/ethernet/intel/
6932 F: drivers/net/ethernet/intel/*/
6933 F: include/linux/avf/virtchnl.h
6935 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
6936 M: Maik Broemme <mbroemme@libmpq.org>
6937 L: linux-fbdev@vger.kernel.org
6939 F: Documentation/fb/intelfb.txt
6940 F: drivers/video/fbdev/intelfb/
6942 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
6943 M: Zhenyu Wang <zhenyuw@linux.intel.com>
6944 M: Zhi Wang <zhi.a.wang@intel.com>
6945 L: intel-gvt-dev@lists.freedesktop.org
6946 L: intel-gfx@lists.freedesktop.org
6947 W: https://01.org/igvt-g
6948 T: git https://github.com/01org/gvt-linux.git
6950 F: drivers/gpu/drm/i915/gvt/
6952 INTEL HID EVENT DRIVER
6953 M: Alex Hung <alex.hung@canonical.com>
6954 L: platform-driver-x86@vger.kernel.org
6956 F: drivers/platform/x86/intel-hid.c
6958 INTEL I/OAT DMA DRIVER
6959 M: Dave Jiang <dave.jiang@intel.com>
6960 R: Dan Williams <dan.j.williams@intel.com>
6961 L: dmaengine@vger.kernel.org
6962 Q: https://patchwork.kernel.org/project/linux-dmaengine/list/
6964 F: drivers/dma/ioat*
6967 M: Jacob Pan <jacob.jun.pan@linux.intel.com>
6968 M: Len Brown <lenb@kernel.org>
6969 L: linux-pm@vger.kernel.org
6970 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
6971 B: https://bugzilla.kernel.org
6973 F: drivers/idle/intel_idle.c
6975 INTEL INTEGRATED SENSOR HUB DRIVER
6976 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
6977 M: Jiri Kosina <jikos@kernel.org>
6978 L: linux-input@vger.kernel.org
6980 F: drivers/hid/intel-ish-hid/
6983 M: David Woodhouse <dwmw2@infradead.org>
6984 L: iommu@lists.linux-foundation.org
6985 T: git git://git.infradead.org/iommu-2.6.git
6987 F: drivers/iommu/intel-iommu.c
6988 F: include/linux/intel-iommu.h
6990 INTEL IOP-ADMA DMA DRIVER
6991 R: Dan Williams <dan.j.williams@intel.com>
6993 F: drivers/dma/iop-adma.c
6995 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
6996 M: Krzysztof Halasa <khalasa@piap.pl>
6998 F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
6999 F: arch/arm/mach-ixp4xx/include/mach/npe.h
7000 F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
7001 F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
7002 F: drivers/net/ethernet/xscale/ixp4xx_eth.c
7003 F: drivers/net/wan/ixp4xx_hss.c
7005 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
7006 M: Deepak Saxena <dsaxena@plexity.net>
7008 F: drivers/char/hw_random/ixp4xx-rng.c
7010 INTEL MANAGEMENT ENGINE (mei)
7011 M: Tomas Winkler <tomas.winkler@intel.com>
7012 L: linux-kernel@vger.kernel.org
7014 F: include/uapi/linux/mei.h
7015 F: include/linux/mei_cl_bus.h
7016 F: drivers/misc/mei/*
7017 F: drivers/watchdog/mei_wdt.c
7018 F: Documentation/misc-devices/mei/*
7021 INTEL MENLOW THERMAL DRIVER
7022 M: Sujith Thomas <sujith.thomas@intel.com>
7023 L: platform-driver-x86@vger.kernel.org
7024 W: https://01.org/linux-acpi
7026 F: drivers/platform/x86/intel_menlow.c
7028 INTEL MERRIFIELD GPIO DRIVER
7029 M: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
7030 L: linux-gpio@vger.kernel.org
7032 F: drivers/gpio/gpio-merrifield.c
7034 INTEL MIC DRIVERS (mic)
7035 M: Sudeep Dutt <sudeep.dutt@intel.com>
7036 M: Ashutosh Dixit <ashutosh.dixit@intel.com>
7038 W: https://github.com/sudeepdutt/mic
7039 W: http://software.intel.com/en-us/mic-developer
7040 F: include/linux/mic_bus.h
7041 F: include/linux/scif.h
7042 F: include/uapi/linux/mic_common.h
7043 F: include/uapi/linux/mic_ioctl.h
7044 F: include/uapi/linux/scif_ioctl.h
7045 F: drivers/misc/mic/
7046 F: drivers/dma/mic_x100_dma.c
7047 F: drivers/dma/mic_x100_dma.h
7048 F: Documentation/mic/
7050 INTEL PMC CORE DRIVER
7051 M: Rajneesh Bhardwaj <rajneesh.bhardwaj@intel.com>
7052 M: Vishwanath Somayaji <vishwanath.somayaji@intel.com>
7053 L: platform-driver-x86@vger.kernel.org
7055 F: arch/x86/include/asm/pmc_core.h
7056 F: drivers/platform/x86/intel_pmc_core*
7058 INTEL PMC/P-Unit IPC DRIVER
7059 M: Zha Qipeng<qipeng.zha@intel.com>
7060 L: platform-driver-x86@vger.kernel.org
7062 F: drivers/platform/x86/intel_pmc_ipc.c
7063 F: drivers/platform/x86/intel_punit_ipc.c
7064 F: arch/x86/include/asm/intel_pmc_ipc.h
7065 F: arch/x86/include/asm/intel_punit_ipc.h
7067 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
7068 M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
7069 L: linux-wireless@vger.kernel.org
7071 F: Documentation/networking/README.ipw2100
7072 F: Documentation/networking/README.ipw2200
7073 F: drivers/net/wireless/intel/ipw2x00/
7076 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
7077 M: Len Brown <lenb@kernel.org>
7078 L: linux-pm@vger.kernel.org
7080 F: drivers/cpufreq/intel_pstate.c
7082 INTEL RDMA RNIC DRIVER
7083 M: Faisal Latif <faisal.latif@intel.com>
7084 M: Shiraz Saleem <shiraz.saleem@intel.com>
7085 L: linux-rdma@vger.kernel.org
7087 F: drivers/infiniband/hw/i40iw/
7089 INTEL TELEMETRY DRIVER
7090 M: Souvik Kumar Chakravarty <souvik.k.chakravarty@intel.com>
7091 L: platform-driver-x86@vger.kernel.org
7093 F: arch/x86/include/asm/intel_telemetry.h
7094 F: drivers/platform/x86/intel_telemetry*
7096 INTEL VIRTUAL BUTTON DRIVER
7097 M: AceLan Kao <acelan.kao@canonical.com>
7098 L: platform-driver-x86@vger.kernel.org
7100 F: drivers/platform/x86/intel-vbtn.c
7102 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
7103 M: Stanislaw Gruszka <sgruszka@redhat.com>
7104 L: linux-wireless@vger.kernel.org
7106 F: drivers/net/wireless/intel/iwlegacy/
7108 INTEL WIRELESS WIFI LINK (iwlwifi)
7109 M: Johannes Berg <johannes.berg@intel.com>
7110 M: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
7111 M: Luca Coelho <luciano.coelho@intel.com>
7112 M: Intel Linux Wireless <linuxwifi@intel.com>
7113 L: linux-wireless@vger.kernel.org
7114 W: http://intellinuxwireless.org
7115 T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
7117 F: drivers/net/wireless/intel/iwlwifi/
7119 INTEL WIRELESS WIMAX CONNECTION 2400
7120 M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
7121 M: linux-wimax@intel.com
7122 L: wimax@linuxwimax.org (subscribers-only)
7124 W: http://linuxwimax.org
7125 F: Documentation/wimax/README.i2400m
7126 F: drivers/net/wimax/i2400m/
7127 F: include/uapi/linux/wimax/i2400m.h
7130 M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
7132 F: Documentation/trace/intel_th.txt
7133 F: drivers/hwtracing/intel_th/
7135 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
7136 M: Ning Sun <ning.sun@intel.com>
7137 L: tboot-devel@lists.sourceforge.net
7138 W: http://tboot.sourceforge.net
7139 T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
7141 F: Documentation/intel_txt.txt
7142 F: include/linux/tboot.h
7143 F: arch/x86/kernel/tboot.c
7145 INTEL-MID GPIO DRIVER
7146 M: David Cohen <david.a.cohen@linux.intel.com>
7147 L: linux-gpio@vger.kernel.org
7149 F: drivers/gpio/gpio-intel-mid.c
7151 INVENSENSE MPU-3050 GYROSCOPE DRIVER
7152 M: Linus Walleij <linus.walleij@linaro.org>
7153 L: linux-iio@vger.kernel.org
7155 F: drivers/iio/gyro/mpu3050*
7156 F: Documentation/devicetree/bindings/iio/gyroscope/inv,mpu3050.txt
7158 IOC3 ETHERNET DRIVER
7159 M: Ralf Baechle <ralf@linux-mips.org>
7160 L: linux-mips@linux-mips.org
7162 F: drivers/net/ethernet/sgi/ioc3-eth.c
7165 M: Pat Gefre <pfg@sgi.com>
7166 L: linux-serial@vger.kernel.org
7168 F: drivers/tty/serial/ioc3_serial.c
7171 M: Joerg Roedel <joro@8bytes.org>
7172 L: iommu@lists.linux-foundation.org
7173 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
7175 F: Documentation/devicetree/bindings/iommu/
7177 F: include/linux/iommu.h
7178 F: include/linux/iova.h
7181 M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
7183 F: net/ipv4/netfilter/ipt_MASQUERADE.c
7186 M: Corey Minyard <minyard@acm.org>
7187 L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
7188 W: http://openipmi.sourceforge.net/
7190 F: Documentation/IPMI.txt
7191 F: drivers/char/ipmi/
7192 F: include/linux/ipmi*
7193 F: include/uapi/linux/ipmi*
7195 IPS SCSI RAID DRIVER
7196 M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
7197 L: linux-scsi@vger.kernel.org
7198 W: http://www.adaptec.com/
7200 F: drivers/scsi/ips*
7203 M: Wensong Zhang <wensong@linux-vs.org>
7204 M: Simon Horman <horms@verge.net.au>
7205 M: Julian Anastasov <ja@ssi.bg>
7206 L: netdev@vger.kernel.org
7207 L: lvs-devel@vger.kernel.org
7209 T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
7210 T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
7211 F: Documentation/networking/ipvs-sysctl.txt
7212 F: include/net/ip_vs.h
7213 F: include/uapi/linux/ip_vs.h
7214 F: net/netfilter/ipvs/
7217 M: Jiri Kosina <jikos@kernel.org>
7218 M: David Sterba <dsterba@suse.com>
7220 F: drivers/tty/ipwireless/
7223 L: netdev@vger.kernel.org
7225 F: include/net/ipx.h
7226 F: include/uapi/linux/ipx.h
7230 M: Samuel Ortiz <samuel@sortiz.org>
7231 L: irda-users@lists.sourceforge.net (subscribers-only)
7232 L: netdev@vger.kernel.org
7233 W: http://irda.sourceforge.net/
7235 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
7236 F: Documentation/networking/irda.txt
7237 F: drivers/staging/irda/
7239 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
7240 M: Marc Zyngier <marc.zyngier@arm.com>
7242 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
7243 F: Documentation/IRQ-domain.txt
7244 F: include/linux/irqdomain.h
7245 F: kernel/irq/irqdomain.c
7249 M: Thomas Gleixner <tglx@linutronix.de>
7250 L: linux-kernel@vger.kernel.org
7252 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
7256 M: Thomas Gleixner <tglx@linutronix.de>
7257 M: Jason Cooper <jason@lakedaemon.net>
7258 M: Marc Zyngier <marc.zyngier@arm.com>
7259 L: linux-kernel@vger.kernel.org
7261 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
7262 F: Documentation/devicetree/bindings/interrupt-controller/
7266 M: William Breathitt Gray <vilhelm.gray@gmail.com>
7268 F: Documentation/isa.txt
7269 F: drivers/base/isa.c
7270 F: include/linux/isa.h
7273 M: Hans Verkuil <hverkuil@xs4all.nl>
7274 L: linux-media@vger.kernel.org
7275 T: git git://linuxtv.org/media_tree.git
7276 W: https://linuxtv.org
7278 F: drivers/media/radio/radio-isa*
7281 M: Jaroslav Kysela <perex@perex.cz>
7283 F: Documentation/isapnp.txt
7284 F: drivers/pnp/isapnp/
7285 F: include/linux/isapnp.h
7288 M: Lee Duncan <lduncan@suse.com>
7289 M: Chris Leech <cleech@redhat.com>
7290 L: open-iscsi@googlegroups.com
7291 W: www.open-iscsi.com
7293 F: drivers/scsi/*iscsi*
7294 F: include/scsi/*iscsi*
7296 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
7297 M: Peter Jones <pjones@redhat.com>
7298 M: Konrad Rzeszutek Wilk <konrad@kernel.org>
7300 F: drivers/firmware/iscsi_ibft*
7302 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
7303 M: Or Gerlitz <ogerlitz@mellanox.com>
7304 M: Sagi Grimberg <sagi@grimberg.me>
7305 M: Roi Dayan <roid@mellanox.com>
7306 L: linux-rdma@vger.kernel.org
7308 W: http://www.openfabrics.org
7309 W: www.open-iscsi.org
7310 Q: http://patchwork.kernel.org/project/linux-rdma/list/
7311 F: drivers/infiniband/ulp/iser/
7313 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
7314 M: Sagi Grimberg <sagi@grimberg.me>
7315 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
7316 L: linux-rdma@vger.kernel.org
7317 L: target-devel@vger.kernel.org
7319 W: http://www.linux-iscsi.org
7320 F: drivers/infiniband/ulp/isert
7323 M: Karsten Keil <isdn@linux-pingi.de>
7324 L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
7325 L: netdev@vger.kernel.org
7326 W: http://www.isdn4linux.de
7327 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
7329 F: Documentation/isdn/
7331 F: include/linux/isdn.h
7332 F: include/linux/isdn/
7333 F: include/uapi/linux/isdn.h
7334 F: include/uapi/linux/isdn/
7336 ISDN SUBSYSTEM (Eicon active card driver)
7337 M: Armin Schindler <mac@melware.de>
7338 L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
7339 W: http://www.melware.de
7341 F: drivers/isdn/hardware/eicon/
7343 IT87 HARDWARE MONITORING DRIVER
7344 M: Jean Delvare <jdelvare@suse.com>
7345 L: linux-hwmon@vger.kernel.org
7347 F: Documentation/hwmon/it87
7348 F: drivers/hwmon/it87.c
7351 M: Antti Palosaari <crope@iki.fi>
7352 L: linux-media@vger.kernel.org
7353 W: https://linuxtv.org
7354 W: http://palosaari.fi/linux/
7355 Q: http://patchwork.linuxtv.org/project/linux-media/list/
7356 T: git git://linuxtv.org/anttip/media_tree.git
7358 F: drivers/media/tuners/it913x*
7360 IVTV VIDEO4LINUX DRIVER
7361 M: Andy Walls <awalls@md.metrocast.net>
7362 L: ivtv-devel@ivtvdriver.org (subscribers-only)
7363 L: linux-media@vger.kernel.org
7364 T: git git://linuxtv.org/media_tree.git
7365 W: http://www.ivtvdriver.org
7367 F: Documentation/media/v4l-drivers/ivtv*
7368 F: drivers/media/pci/ivtv/
7369 F: include/uapi/linux/ivtv*
7371 IX2505V MEDIA DRIVER
7372 M: Malcolm Priestley <tvboxspy@gmail.com>
7373 L: linux-media@vger.kernel.org
7374 W: https://linuxtv.org
7375 Q: http://patchwork.linuxtv.org/project/linux-media/list/
7377 F: drivers/media/dvb-frontends/ix2505v*
7379 JC42.4 TEMPERATURE SENSOR DRIVER
7380 M: Guenter Roeck <linux@roeck-us.net>
7381 L: linux-hwmon@vger.kernel.org
7383 F: drivers/hwmon/jc42.c
7384 F: Documentation/hwmon/jc42
7387 M: Dave Kleikamp <shaggy@kernel.org>
7388 L: jfs-discussion@lists.sourceforge.net
7389 W: http://jfs.sourceforge.net/
7390 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
7392 F: Documentation/filesystems/jfs.txt
7396 M: Guo-Fu Tseng <cooldavid@cooldavid.org>
7397 L: netdev@vger.kernel.org
7399 F: drivers/net/ethernet/jme.*
7401 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
7402 M: David Woodhouse <dwmw2@infradead.org>
7403 L: linux-mtd@lists.infradead.org
7404 W: http://www.linux-mtd.infradead.org/doc/jffs2.html
7407 F: include/uapi/linux/jffs2.h
7409 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
7410 M: "Theodore Ts'o" <tytso@mit.edu>
7411 M: Jan Kara <jack@suse.com>
7412 L: linux-ext4@vger.kernel.org
7415 F: include/linux/jbd2.h
7417 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
7418 M: Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
7419 L: linux-media@vger.kernel.org
7421 F: drivers/media/platform/rcar_jpu.c
7423 JSM Neo PCI based serial card
7424 M: Guilherme G. Piccoli <gpiccoli@linux.vnet.ibm.com>
7425 L: linux-serial@vger.kernel.org
7427 F: drivers/tty/serial/jsm/
7429 K10TEMP HARDWARE MONITORING DRIVER
7430 M: Clemens Ladisch <clemens@ladisch.de>
7431 L: linux-hwmon@vger.kernel.org
7433 F: Documentation/hwmon/k10temp
7434 F: drivers/hwmon/k10temp.c
7436 K8TEMP HARDWARE MONITORING DRIVER
7437 M: Rudolf Marek <r.marek@assembler.cz>
7438 L: linux-hwmon@vger.kernel.org
7440 F: Documentation/hwmon/k8temp
7441 F: drivers/hwmon/k8temp.c
7444 M: Andrey Ryabinin <aryabinin@virtuozzo.com>
7445 R: Alexander Potapenko <glider@google.com>
7446 R: Dmitry Vyukov <dvyukov@google.com>
7447 L: kasan-dev@googlegroups.com
7449 F: arch/*/include/asm/kasan.h
7450 F: arch/*/mm/kasan_init*
7451 F: Documentation/dev-tools/kasan.rst
7452 F: include/linux/kasan*.h
7455 F: scripts/Makefile.kasan
7458 L: linux-kbuild@vger.kernel.org
7460 F: Documentation/kbuild/kconfig-language.txt
7464 M: Dave Young <dyoung@redhat.com>
7465 M: Baoquan He <bhe@redhat.com>
7466 R: Vivek Goyal <vgoyal@redhat.com>
7467 L: kexec@lists.infradead.org
7468 W: http://lse.sourceforge.net/kdump/
7470 F: Documentation/kdump/
7472 KEENE FM RADIO TRANSMITTER DRIVER
7473 M: Hans Verkuil <hverkuil@xs4all.nl>
7474 L: linux-media@vger.kernel.org
7475 T: git git://linuxtv.org/media_tree.git
7476 W: https://linuxtv.org
7478 F: drivers/media/radio/radio-keene*
7480 KERNEL AUTOMOUNTER v4 (AUTOFS4)
7481 M: Ian Kent <raven@themaw.net>
7482 L: autofs@vger.kernel.org
7486 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
7487 M: Masahiro Yamada <yamada.masahiro@socionext.com>
7488 M: Michal Marek <michal.lkml@markovi.net>
7489 T: git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
7490 L: linux-kbuild@vger.kernel.org
7492 F: Documentation/kbuild/
7494 F: scripts/Makefile.*
7500 L: kernel-janitors@vger.kernel.org
7501 W: http://kernelnewbies.org/KernelJanitors
7504 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
7505 M: "J. Bruce Fields" <bfields@fieldses.org>
7506 M: Jeff Layton <jlayton@poochiereds.net>
7507 L: linux-nfs@vger.kernel.org
7508 W: http://nfs.sourceforge.net/
7509 T: git git://linux-nfs.org/~bfields/linux.git
7512 F: include/uapi/linux/nfsd/
7516 F: include/linux/lockd/
7517 F: include/linux/sunrpc/
7518 F: include/uapi/linux/sunrpc/
7520 KERNEL SELFTEST FRAMEWORK
7521 M: Shuah Khan <shuahkh@osg.samsung.com>
7522 M: Shuah Khan <shuah@kernel.org>
7523 L: linux-kselftest@vger.kernel.org
7524 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
7526 F: tools/testing/selftests/
7527 F: Documentation/dev-tools/kselftest*
7529 KERNEL USERMODE HELPER
7530 M: "Luis R. Rodriguez" <mcgrof@kernel.org>
7531 L: linux-kernel@vger.kernel.org
7534 F: include/linux/umh.h
7536 KERNEL VIRTUAL MACHINE (KVM)
7537 M: Paolo Bonzini <pbonzini@redhat.com>
7538 M: Radim Krčmář <rkrcmar@redhat.com>
7539 L: kvm@vger.kernel.org
7540 W: http://www.linux-kvm.org
7541 T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
7543 F: Documentation/virtual/kvm/
7544 F: include/trace/events/kvm.h
7545 F: include/uapi/asm-generic/kvm*
7546 F: include/uapi/linux/kvm*
7547 F: include/asm-generic/kvm*
7548 F: include/linux/kvm*
7549 F: include/kvm/iodev.h
7553 KERNEL VIRTUAL MACHINE FOR AMD-V (KVM/amd)
7554 M: Joerg Roedel <joro@8bytes.org>
7555 L: kvm@vger.kernel.org
7556 W: http://www.linux-kvm.org/
7558 F: arch/x86/include/asm/svm.h
7559 F: arch/x86/kvm/svm.c
7561 KERNEL VIRTUAL MACHINE FOR ARM (KVM/arm)
7562 M: Christoffer Dall <christoffer.dall@linaro.org>
7563 M: Marc Zyngier <marc.zyngier@arm.com>
7564 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7565 L: kvmarm@lists.cs.columbia.edu
7566 W: http://systems.cs.columbia.edu/projects/kvm-arm
7567 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
7569 F: arch/arm/include/uapi/asm/kvm*
7570 F: arch/arm/include/asm/kvm*
7573 F: include/kvm/arm_*
7575 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
7576 M: Christoffer Dall <christoffer.dall@linaro.org>
7577 M: Marc Zyngier <marc.zyngier@arm.com>
7578 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7579 L: kvmarm@lists.cs.columbia.edu
7581 F: arch/arm64/include/uapi/asm/kvm*
7582 F: arch/arm64/include/asm/kvm*
7585 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
7586 M: James Hogan <jhogan@kernel.org>
7587 L: linux-mips@linux-mips.org
7589 F: arch/mips/include/uapi/asm/kvm*
7590 F: arch/mips/include/asm/kvm*
7593 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
7594 M: Paul Mackerras <paulus@ozlabs.org>
7595 L: kvm-ppc@vger.kernel.org
7596 W: http://www.linux-kvm.org/
7597 T: git git://github.com/agraf/linux-2.6.git
7599 F: arch/powerpc/include/uapi/asm/kvm*
7600 F: arch/powerpc/include/asm/kvm*
7601 F: arch/powerpc/kvm/
7602 F: arch/powerpc/kernel/kvm*
7604 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
7605 M: Christian Borntraeger <borntraeger@de.ibm.com>
7606 M: Cornelia Huck <cohuck@redhat.com>
7607 L: linux-s390@vger.kernel.org
7608 W: http://www.ibm.com/developerworks/linux/linux390/
7609 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
7611 F: arch/s390/include/uapi/asm/kvm*
7612 F: arch/s390/include/asm/gmap.h
7613 F: arch/s390/include/asm/kvm*
7615 F: arch/s390/mm/gmap.c
7617 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
7618 M: Paolo Bonzini <pbonzini@redhat.com>
7619 M: Radim Krčmář <rkrcmar@redhat.com>
7620 L: kvm@vger.kernel.org
7621 W: http://www.linux-kvm.org
7622 T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
7625 F: arch/x86/include/uapi/asm/kvm*
7626 F: arch/x86/include/asm/kvm*
7627 F: arch/x86/kernel/kvm.c
7628 F: arch/x86/kernel/kvmclock.c
7631 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7632 M: Tejun Heo <tj@kernel.org>
7633 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
7635 F: include/linux/kernfs.h
7639 M: Eric Biederman <ebiederm@xmission.com>
7640 W: http://kernel.org/pub/linux/utils/kernel/kexec/
7641 L: kexec@lists.infradead.org
7643 F: include/linux/kexec.h
7644 F: include/uapi/linux/kexec.h
7648 M: Mimi Zohar <zohar@linux.vnet.ibm.com>
7649 L: linux-integrity@vger.kernel.org
7650 L: keyrings@vger.kernel.org
7652 F: Documentation/security/keys/trusted-encrypted.rst
7653 F: include/keys/encrypted-type.h
7654 F: security/keys/encrypted-keys/
7657 M: Mimi Zohar <zohar@linux.vnet.ibm.com>
7658 L: linux-integrity@vger.kernel.org
7659 L: keyrings@vger.kernel.org
7661 F: Documentation/security/keys/trusted-encrypted.rst
7662 F: include/keys/trusted-type.h
7663 F: security/keys/trusted.c
7664 F: security/keys/trusted.h
7667 M: David Howells <dhowells@redhat.com>
7668 L: keyrings@vger.kernel.org
7670 F: Documentation/security/keys/core.rst
7671 F: include/linux/key.h
7672 F: include/linux/key-type.h
7673 F: include/linux/keyctl.h
7674 F: include/uapi/linux/keyctl.h
7678 KGDB / KDB /debug_core
7679 M: Jason Wessel <jason.wessel@windriver.com>
7680 W: http://kgdb.wiki.kernel.org/
7681 L: kgdb-bugreport@lists.sourceforge.net
7682 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
7684 F: Documentation/dev-tools/kgdb.rst
7685 F: drivers/misc/kgdbts.c
7686 F: drivers/tty/serial/kgdboc.c
7687 F: include/linux/kdb.h
7688 F: include/linux/kgdb.h
7692 M: Vegard Nossum <vegardno@ifi.uio.no>
7693 M: Pekka Enberg <penberg@kernel.org>
7695 F: Documentation/dev-tools/kmemcheck.rst
7696 F: arch/x86/include/asm/kmemcheck.h
7697 F: arch/x86/mm/kmemcheck/
7698 F: include/linux/kmemcheck.h
7702 M: Catalin Marinas <catalin.marinas@arm.com>
7704 F: Documentation/dev-tools/kmemleak.rst
7705 F: include/linux/kmemleak.h
7707 F: mm/kmemleak-test.c
7709 KMOD KERNEL MODULE LOADER - USERMODE HELPER
7710 M: "Luis R. Rodriguez" <mcgrof@kernel.org>
7711 L: linux-kernel@vger.kernel.org
7714 F: include/linux/kmod.h
7716 F: tools/testing/selftests/kmod/
7719 M: Ananth N Mavinakayanahalli <ananth@linux.vnet.ibm.com>
7720 M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
7721 M: "David S. Miller" <davem@davemloft.net>
7722 M: Masami Hiramatsu <mhiramat@kernel.org>
7724 F: Documentation/kprobes.txt
7725 F: include/linux/kprobes.h
7726 F: include/asm-generic/kprobes.h
7729 KS0108 LCD CONTROLLER DRIVER
7730 M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
7731 W: http://miguelojeda.es/auxdisplay.htm
7732 W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
7734 F: Documentation/auxdisplay/ks0108
7735 F: drivers/auxdisplay/ks0108.c
7736 F: include/linux/ks0108.h
7739 M: David Ahern <dsa@cumulusnetworks.com>
7740 L: netdev@vger.kernel.org
7743 F: include/net/l3mdev.h
7745 LANTIQ MIPS ARCHITECTURE
7746 M: John Crispin <john@phrozen.org>
7747 L: linux-mips@linux-mips.org
7750 F: drivers/soc/lantiq
7753 L: linux-x25@vger.kernel.org
7755 F: Documentation/networking/lapb-module.txt
7759 LASI 53c700 driver for PARISC
7760 M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
7761 L: linux-scsi@vger.kernel.org
7763 F: Documentation/scsi/53c700.txt
7764 F: drivers/scsi/53c700*
7767 M: Tobin C. Harding <me@tobin.cc>
7769 F: scripts/leaking_addresses.pl
7772 M: Richard Purdie <rpurdie@rpsys.net>
7773 M: Jacek Anaszewski <jacek.anaszewski@gmail.com>
7774 M: Pavel Machek <pavel@ucw.cz>
7775 L: linux-leds@vger.kernel.org
7776 T: git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
7778 F: Documentation/devicetree/bindings/leds/
7780 F: include/linux/leds.h
7782 LEGACY EEPROM DRIVER
7783 M: Jean Delvare <jdelvare@suse.com>
7785 F: Documentation/misc-devices/eeprom
7786 F: drivers/misc/eeprom/eeprom.c
7788 LEGO USB Tower driver
7789 M: Juergen Stuber <starblue@users.sourceforge.net>
7790 L: legousb-devel@lists.sourceforge.net
7791 W: http://legousb.sourceforge.net/
7793 F: drivers/usb/misc/legousbtower.c
7796 M: Michael Krufky <mkrufky@linuxtv.org>
7797 L: linux-media@vger.kernel.org
7798 W: https://linuxtv.org
7799 W: http://github.com/mkrufky
7800 Q: http://patchwork.linuxtv.org/project/linux-media/list/
7801 T: git git://linuxtv.org/mkrufky/tuners.git
7803 F: drivers/media/dvb-frontends/lg2160.*
7805 LGDT3305 MEDIA DRIVER
7806 M: Michael Krufky <mkrufky@linuxtv.org>
7807 L: linux-media@vger.kernel.org
7808 W: https://linuxtv.org
7809 W: http://github.com/mkrufky
7810 Q: http://patchwork.linuxtv.org/project/linux-media/list/
7811 T: git git://linuxtv.org/mkrufky/tuners.git
7813 F: drivers/media/dvb-frontends/lgdt3305.*
7815 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
7816 M: Viresh Kumar <vireshk@kernel.org>
7817 L: linux-ide@vger.kernel.org
7818 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7820 F: include/linux/pata_arasan_cf_data.h
7821 F: drivers/ata/pata_arasan_cf.c
7824 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
7825 M: Tejun Heo <tj@kernel.org>
7826 L: linux-ide@vger.kernel.org
7827 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7829 F: drivers/ata/pata_*.c
7830 F: drivers/ata/ata_generic.c
7832 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
7833 M: Linus Walleij <linus.walleij@linaro.org>
7834 L: linux-ide@vger.kernel.org
7835 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7837 F: drivers/ata/pata_ftide010.c
7838 F: drivers/ata/sata_gemini.c
7839 F: drivers/ata/sata_gemini.h
7841 LIBATA SATA AHCI PLATFORM devices support
7842 M: Hans de Goede <hdegoede@redhat.com>
7843 M: Tejun Heo <tj@kernel.org>
7844 L: linux-ide@vger.kernel.org
7845 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7847 F: drivers/ata/ahci_platform.c
7848 F: drivers/ata/libahci_platform.c
7849 F: include/linux/ahci_platform.h
7851 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
7852 M: Mikael Pettersson <mikpelinux@gmail.com>
7853 L: linux-ide@vger.kernel.org
7854 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7856 F: drivers/ata/sata_promise.*
7858 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
7859 M: Tejun Heo <tj@kernel.org>
7860 L: linux-ide@vger.kernel.org
7861 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7864 F: include/linux/ata.h
7865 F: include/linux/libata.h
7866 F: Documentation/devicetree/bindings/ata/
7869 M: Sasha Levin <alexander.levin@verizon.com>
7871 F: tools/lib/lockdep/
7873 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
7874 M: Ross Zwisler <ross.zwisler@linux.intel.com>
7875 L: linux-nvdimm@lists.01.org
7876 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
7878 F: drivers/nvdimm/blk.c
7879 F: drivers/nvdimm/region_devs.c
7881 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
7882 M: Vishal Verma <vishal.l.verma@intel.com>
7883 L: linux-nvdimm@lists.01.org
7884 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
7886 F: drivers/nvdimm/btt*
7888 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
7889 M: Ross Zwisler <ross.zwisler@linux.intel.com>
7890 L: linux-nvdimm@lists.01.org
7891 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
7893 F: drivers/nvdimm/pmem*
7895 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
7896 M: Dan Williams <dan.j.williams@intel.com>
7897 L: linux-nvdimm@lists.01.org
7898 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
7899 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
7902 F: drivers/acpi/nfit/*
7903 F: include/linux/nd.h
7904 F: include/linux/libnvdimm.h
7905 F: include/uapi/linux/ndctl.h
7907 LIGHTNVM PLATFORM SUPPORT
7908 M: Matias Bjorling <mb@lightnvm.io>
7909 W: http://github/OpenChannelSSD
7910 L: linux-block@vger.kernel.org
7912 F: drivers/lightnvm/
7913 F: include/linux/lightnvm.h
7914 F: include/uapi/linux/lightnvm.h
7916 LINUX FOR POWER MACINTOSH
7917 M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
7918 W: http://www.penguinppc.org/
7919 L: linuxppc-dev@lists.ozlabs.org
7921 F: arch/powerpc/platforms/powermac/
7922 F: drivers/macintosh/
7924 LINUX FOR POWERPC (32-BIT AND 64-BIT)
7925 M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
7926 M: Paul Mackerras <paulus@samba.org>
7927 M: Michael Ellerman <mpe@ellerman.id.au>
7928 W: https://github.com/linuxppc/linux/wiki
7929 L: linuxppc-dev@lists.ozlabs.org
7930 Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
7931 T: git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
7933 F: Documentation/ABI/stable/sysfs-firmware-opal-*
7934 F: Documentation/devicetree/bindings/powerpc/
7935 F: Documentation/devicetree/bindings/rtc/rtc-opal.txt
7936 F: Documentation/devicetree/bindings/i2c/i2c-opal.txt
7937 F: Documentation/powerpc/
7939 F: drivers/char/tpm/tpm_ibmvtpm*
7940 F: drivers/crypto/nx/
7941 F: drivers/crypto/vmx/
7942 F: drivers/i2c/busses/i2c-opal.c
7943 F: drivers/net/ethernet/ibm/ibmveth.*
7944 F: drivers/net/ethernet/ibm/ibmvnic.*
7945 F: drivers/pci/hotplug/pnv_php.c
7946 F: drivers/pci/hotplug/rpa*
7947 F: drivers/rtc/rtc-opal.c
7948 F: drivers/scsi/ibmvscsi/
7949 F: drivers/tty/hvc/hvc_opal.c
7950 F: drivers/watchdog/wdrtas.c
7951 F: tools/testing/selftests/powerpc
7958 LINUX FOR POWERPC EMBEDDED MPC5XXX
7959 M: Anatolij Gustschin <agust@denx.de>
7960 L: linuxppc-dev@lists.ozlabs.org
7961 T: git git://git.denx.de/linux-denx-agust.git
7963 F: arch/powerpc/platforms/512x/
7964 F: arch/powerpc/platforms/52xx/
7966 LINUX FOR POWERPC EMBEDDED PPC4XX
7967 M: Alistair Popple <alistair@popple.id.au>
7968 M: Matt Porter <mporter@kernel.crashing.org>
7969 W: http://www.penguinppc.org/
7970 L: linuxppc-dev@lists.ozlabs.org
7972 F: arch/powerpc/platforms/40x/
7973 F: arch/powerpc/platforms/44x/
7975 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
7976 M: Scott Wood <oss@buserror.net>
7977 M: Kumar Gala <galak@kernel.crashing.org>
7978 W: http://www.penguinppc.org/
7979 L: linuxppc-dev@lists.ozlabs.org
7980 T: git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
7982 F: arch/powerpc/platforms/83xx/
7983 F: arch/powerpc/platforms/85xx/
7984 F: Documentation/devicetree/bindings/powerpc/fsl/
7986 LINUX FOR POWERPC EMBEDDED PPC8XX
7987 M: Vitaly Bordug <vitb@kernel.crashing.org>
7988 W: http://www.penguinppc.org/
7989 L: linuxppc-dev@lists.ozlabs.org
7991 F: arch/powerpc/platforms/8xx/
7993 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
7994 L: linuxppc-dev@lists.ozlabs.org
7996 F: arch/powerpc/*/*virtex*
7997 F: arch/powerpc/*/*/*virtex*
7999 LINUX FOR POWERPC PA SEMI PWRFICIENT
8000 L: linuxppc-dev@lists.ozlabs.org
8002 F: arch/powerpc/platforms/pasemi/
8003 F: drivers/*/*pasemi*
8004 F: drivers/*/*/*pasemi*
8006 LINUX KERNEL DUMP TEST MODULE (LKDTM)
8007 M: Kees Cook <keescook@chromium.org>
8009 F: drivers/misc/lkdtm*
8011 LINUX SECURITY MODULE (LSM) FRAMEWORK
8012 M: Chris Wright <chrisw@sous-sol.org>
8013 L: linux-security-module@vger.kernel.org
8016 LIS3LV02D ACCELEROMETER DRIVER
8017 M: Eric Piel <eric.piel@tremplin-utc.net>
8019 F: Documentation/misc-devices/lis3lv02d
8020 F: drivers/misc/lis3lv02d/
8021 F: drivers/platform/x86/hp_accel.c
8024 M: Josh Poimboeuf <jpoimboe@redhat.com>
8025 M: Jessica Yu <jeyu@kernel.org>
8026 M: Jiri Kosina <jikos@kernel.org>
8027 M: Miroslav Benes <mbenes@suse.cz>
8028 R: Petr Mladek <pmladek@suse.com>
8030 F: kernel/livepatch/
8031 F: include/linux/livepatch.h
8032 F: arch/x86/include/asm/livepatch.h
8033 F: arch/x86/kernel/livepatch.c
8034 F: Documentation/livepatch/
8035 F: Documentation/ABI/testing/sysfs-kernel-livepatch
8036 F: samples/livepatch/
8037 L: live-patching@vger.kernel.org
8038 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
8041 L: netdev@vger.kernel.org
8043 F: include/linux/llc.h
8044 F: include/uapi/linux/llc.h
8048 LM73 HARDWARE MONITOR DRIVER
8049 M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
8050 L: linux-hwmon@vger.kernel.org
8052 F: drivers/hwmon/lm73.c
8054 LM78 HARDWARE MONITOR DRIVER
8055 M: Jean Delvare <jdelvare@suse.com>
8056 L: linux-hwmon@vger.kernel.org
8058 F: Documentation/hwmon/lm78
8059 F: drivers/hwmon/lm78.c
8061 LM83 HARDWARE MONITOR DRIVER
8062 M: Jean Delvare <jdelvare@suse.com>
8063 L: linux-hwmon@vger.kernel.org
8065 F: Documentation/hwmon/lm83
8066 F: drivers/hwmon/lm83.c
8068 LM90 HARDWARE MONITOR DRIVER
8069 M: Jean Delvare <jdelvare@suse.com>
8070 L: linux-hwmon@vger.kernel.org
8072 F: Documentation/hwmon/lm90
8073 F: Documentation/devicetree/bindings/hwmon/lm90.txt
8074 F: drivers/hwmon/lm90.c
8075 F: include/dt-bindings/thermal/lm90.h
8077 LM95234 HARDWARE MONITOR DRIVER
8078 M: Guenter Roeck <linux@roeck-us.net>
8079 L: linux-hwmon@vger.kernel.org
8081 F: Documentation/hwmon/lm95234
8082 F: drivers/hwmon/lm95234.c
8084 LME2510 MEDIA DRIVER
8085 M: Malcolm Priestley <tvboxspy@gmail.com>
8086 L: linux-media@vger.kernel.org
8087 W: https://linuxtv.org
8088 Q: http://patchwork.linuxtv.org/project/linux-media/list/
8090 F: drivers/media/usb/dvb-usb-v2/lmedm04*
8092 LOADPIN SECURITY MODULE
8093 M: Kees Cook <keescook@chromium.org>
8094 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
8096 F: security/loadpin/
8097 F: Documentation/admin-guide/LSM/LoadPin.rst
8100 M: Peter Zijlstra <peterz@infradead.org>
8101 M: Ingo Molnar <mingo@redhat.com>
8102 L: linux-kernel@vger.kernel.org
8103 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
8105 F: Documentation/locking/
8106 F: include/linux/lockdep.h
8107 F: include/linux/spinlock*.h
8108 F: arch/*/include/asm/spinlock*.h
8109 F: include/linux/rwlock*.h
8110 F: include/linux/mutex*.h
8111 F: arch/*/include/asm/mutex*.h
8112 F: include/linux/rwsem*.h
8113 F: arch/*/include/asm/rwsem.h
8114 F: include/linux/seqlock.h
8115 F: lib/locking*.[ch]
8118 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
8119 M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
8120 L: linux-ntfs-dev@lists.sourceforge.net
8121 W: http://www.linux-ntfs.org/content/view/19/37/
8123 F: Documentation/ldm.txt
8124 F: block/partitions/ldm.*
8126 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
8127 M: Sathya Prakash <sathya.prakash@broadcom.com>
8128 M: Chaitra P B <chaitra.basappa@broadcom.com>
8129 M: Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
8130 L: MPT-FusionLinux.pdl@broadcom.com
8131 L: linux-scsi@vger.kernel.org
8132 W: http://www.avagotech.com/support/
8134 F: drivers/message/fusion/
8135 F: drivers/scsi/mpt2sas/
8136 F: drivers/scsi/mpt3sas/
8138 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
8139 M: Matthew Wilcox <matthew@wil.cx>
8140 L: linux-scsi@vger.kernel.org
8142 F: drivers/scsi/sym53c8xx_2/
8144 LTC4261 HARDWARE MONITOR DRIVER
8145 M: Guenter Roeck <linux@roeck-us.net>
8146 L: linux-hwmon@vger.kernel.org
8148 F: Documentation/hwmon/ltc4261
8149 F: drivers/hwmon/ltc4261.c
8151 LTC4306 I2C MULTIPLEXER DRIVER
8152 M: Michael Hennerich <michael.hennerich@analog.com>
8153 W: http://ez.analog.com/community/linux-device-drivers
8154 L: linux-i2c@vger.kernel.org
8156 F: drivers/i2c/muxes/i2c-mux-ltc4306.c
8157 F: Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
8159 LTP (Linux Test Project)
8160 M: Mike Frysinger <vapier@gentoo.org>
8161 M: Cyril Hrubis <chrubis@suse.cz>
8162 M: Wanlong Gao <wanlong.gao@gmail.com>
8163 M: Jan Stancek <jstancek@redhat.com>
8164 M: Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
8165 M: Alexey Kodanev <alexey.kodanev@oracle.com>
8166 L: ltp@lists.linux.it (subscribers-only)
8167 W: http://linux-test-project.github.io/
8168 T: git git://github.com/linux-test-project/ltp.git
8172 W: http://www.linux-m32r.org/
8177 M: Geert Uytterhoeven <geert@linux-m68k.org>
8178 L: linux-m68k@lists.linux-m68k.org
8179 W: http://www.linux-m68k.org/
8180 T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
8185 M68K ON APPLE MACINTOSH
8186 M: Joshua Thompson <funaho@jurai.org>
8187 W: http://www.mac.linux-m68k.org/
8188 L: linux-m68k@lists.linux-m68k.org
8193 M: Philip Blundell <philb@gnu.org>
8194 W: http://www.tazenda.demon.co.uk/phil/linux-hp
8198 M88DS3103 MEDIA DRIVER
8199 M: Antti Palosaari <crope@iki.fi>
8200 L: linux-media@vger.kernel.org
8201 W: https://linuxtv.org
8202 W: http://palosaari.fi/linux/
8203 Q: http://patchwork.linuxtv.org/project/linux-media/list/
8204 T: git git://linuxtv.org/anttip/media_tree.git
8206 F: drivers/media/dvb-frontends/m88ds3103*
8208 M88RS2000 MEDIA DRIVER
8209 M: Malcolm Priestley <tvboxspy@gmail.com>
8210 L: linux-media@vger.kernel.org
8211 W: https://linuxtv.org
8212 Q: http://patchwork.linuxtv.org/project/linux-media/list/
8214 F: drivers/media/dvb-frontends/m88rs2000*
8216 MA901 MASTERKIT USB FM RADIO DRIVER
8217 M: Alexey Klimov <klimov.linux@gmail.com>
8218 L: linux-media@vger.kernel.org
8219 T: git git://linuxtv.org/media_tree.git
8221 F: drivers/media/radio/radio-ma901.c
8224 M: Johannes Berg <johannes@sipsolutions.net>
8225 L: linux-wireless@vger.kernel.org
8226 W: http://wireless.kernel.org/
8227 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
8228 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
8230 F: Documentation/networking/mac80211-injection.txt
8231 F: include/net/mac80211.h
8233 F: drivers/net/wireless/mac80211_hwsim.[ch]
8236 M: Jassi Brar <jassisinghbrar@gmail.com>
8237 L: linux-kernel@vger.kernel.org
8240 F: include/linux/mailbox_client.h
8241 F: include/linux/mailbox_controller.h
8243 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
8244 M: Michael Kerrisk <mtk.manpages@gmail.com>
8245 W: http://www.kernel.org/doc/man-pages
8246 L: linux-man@vger.kernel.org
8249 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
8250 M: Rahul Bedarkar <rahulbedarkar89@gmail.com>
8251 L: linux-mips@linux-mips.org
8253 F: arch/mips/boot/dts/img/pistachio_marduk.dts
8255 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
8256 M: Andrew Lunn <andrew@lunn.ch>
8257 M: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
8258 L: netdev@vger.kernel.org
8260 F: drivers/net/dsa/mv88e6xxx/
8261 F: Documentation/devicetree/bindings/net/dsa/marvell.txt
8263 MARVELL ARMADA DRM SUPPORT
8264 M: Russell King <linux@armlinux.org.uk>
8266 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
8267 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
8268 F: drivers/gpu/drm/armada/
8269 F: include/uapi/drm/armada_drm.h
8270 F: Documentation/devicetree/bindings/display/armada/
8272 MARVELL CRYPTO DRIVER
8273 M: Boris Brezillon <boris.brezillon@free-electrons.com>
8274 M: Arnaud Ebalard <arno@natisbad.org>
8275 F: drivers/crypto/marvell/
8277 L: linux-crypto@vger.kernel.org
8279 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
8280 M: Mirko Lindner <mlindner@marvell.com>
8281 M: Stephen Hemminger <stephen@networkplumber.org>
8282 L: netdev@vger.kernel.org
8284 F: drivers/net/ethernet/marvell/sk*
8286 MARVELL LIBERTAS WIRELESS DRIVER
8287 L: libertas-dev@lists.infradead.org
8289 F: drivers/net/wireless/marvell/libertas/
8291 MARVELL MACCHIATOBIN SUPPORT
8292 M: Russell King <rmk@armlinux.org.uk>
8293 L: linux-arm-kernel@lists.infradead.org
8295 F: arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
8297 MARVELL MV643XX ETHERNET DRIVER
8298 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
8299 L: netdev@vger.kernel.org
8301 F: drivers/net/ethernet/marvell/mv643xx_eth.*
8302 F: include/linux/mv643xx.h
8304 MARVELL MV88X3310 PHY DRIVER
8305 M: Russell King <rmk@armlinux.org.uk>
8306 L: netdev@vger.kernel.org
8308 F: drivers/net/phy/marvell10g.c
8310 MARVELL MVNETA ETHERNET DRIVER
8311 M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8312 L: netdev@vger.kernel.org
8314 F: drivers/net/ethernet/marvell/mvneta.*
8316 MARVELL MWIFIEX WIRELESS DRIVER
8317 M: Amitkumar Karwar <amitkarwar@gmail.com>
8318 M: Nishant Sarmukadam <nishants@marvell.com>
8319 M: Ganapathi Bhat <gbhat@marvell.com>
8320 M: Xinming Hu <huxm@marvell.com>
8321 L: linux-wireless@vger.kernel.org
8323 F: drivers/net/wireless/marvell/mwifiex/
8325 MARVELL MWL8K WIRELESS DRIVER
8326 M: Lennert Buytenhek <buytenh@wantstofly.org>
8327 L: linux-wireless@vger.kernel.org
8329 F: drivers/net/wireless/marvell/mwl8k.c
8331 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
8332 M: Nicolas Pitre <nico@fluxnic.net>
8334 F: drivers/mmc/host/mvsdio.*
8336 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
8337 M: Hu Ziji <huziji@marvell.com>
8338 L: linux-mmc@vger.kernel.org
8340 F: drivers/mmc/host/sdhci-xenon*
8341 F: Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
8343 MATROX FRAMEBUFFER DRIVER
8344 L: linux-fbdev@vger.kernel.org
8346 F: drivers/video/fbdev/matrox/matroxfb_*
8347 F: include/uapi/linux/matroxfb.h
8349 MAX16065 HARDWARE MONITOR DRIVER
8350 M: Guenter Roeck <linux@roeck-us.net>
8351 L: linux-hwmon@vger.kernel.org
8353 F: Documentation/hwmon/max16065
8354 F: drivers/hwmon/max16065.c
8356 MAX20751 HARDWARE MONITOR DRIVER
8357 M: Guenter Roeck <linux@roeck-us.net>
8358 L: linux-hwmon@vger.kernel.org
8360 F: Documentation/hwmon/max20751
8361 F: drivers/hwmon/max20751.c
8363 MAX2175 SDR TUNER DRIVER
8364 M: Ramesh Shanmugasundaram <ramesh.shanmugasundaram@bp.renesas.com>
8365 L: linux-media@vger.kernel.org
8366 T: git git://linuxtv.org/media_tree.git
8368 F: Documentation/devicetree/bindings/media/i2c/max2175.txt
8369 F: Documentation/media/v4l-drivers/max2175.rst
8370 F: drivers/media/i2c/max2175*
8371 F: include/uapi/linux/max2175.h
8373 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
8374 L: linux-hwmon@vger.kernel.org
8376 F: Documentation/hwmon/max6650
8377 F: drivers/hwmon/max6650.c
8379 MAX6697 HARDWARE MONITOR DRIVER
8380 M: Guenter Roeck <linux@roeck-us.net>
8381 L: linux-hwmon@vger.kernel.org
8383 F: Documentation/hwmon/max6697
8384 F: Documentation/devicetree/bindings/i2c/max6697.txt
8385 F: drivers/hwmon/max6697.c
8386 F: include/linux/platform_data/max6697.h
8388 MAX9860 MONO AUDIO VOICE CODEC DRIVER
8389 M: Peter Rosin <peda@axentia.se>
8390 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8392 F: Documentation/devicetree/bindings/sound/max9860.txt
8393 F: sound/soc/codecs/max9860.*
8395 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
8396 M: Javier Martinez Canillas <javier@dowhile0.org>
8397 L: linux-kernel@vger.kernel.org
8399 F: drivers/regulator/max77802-regulator.c
8400 F: Documentation/devicetree/bindings/*/*max77802.txt
8401 F: include/dt-bindings/*/*max77802.h
8403 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
8404 M: Krzysztof Kozlowski <krzk@kernel.org>
8405 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
8406 L: linux-pm@vger.kernel.org
8408 F: drivers/power/supply/max14577_charger.c
8409 F: drivers/power/supply/max77693_charger.c
8411 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
8412 M: Chanwoo Choi <cw00.choi@samsung.com>
8413 M: Krzysztof Kozlowski <krzk@kernel.org>
8414 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
8415 L: linux-kernel@vger.kernel.org
8417 F: drivers/*/max14577*.c
8418 F: drivers/*/max77686*.c
8419 F: drivers/*/max77693*.c
8420 F: drivers/extcon/extcon-max14577.c
8421 F: drivers/extcon/extcon-max77693.c
8422 F: drivers/rtc/rtc-max77686.c
8423 F: drivers/clk/clk-max77686.c
8424 F: Documentation/devicetree/bindings/mfd/max14577.txt
8425 F: Documentation/devicetree/bindings/*/max77686.txt
8426 F: Documentation/devicetree/bindings/mfd/max77693.txt
8427 F: Documentation/devicetree/bindings/clock/maxim,max77686.txt
8428 F: include/linux/mfd/max14577*.h
8429 F: include/linux/mfd/max77686*.h
8430 F: include/linux/mfd/max77693*.h
8432 MAXIRADIO FM RADIO RECEIVER DRIVER
8433 M: Hans Verkuil <hverkuil@xs4all.nl>
8434 L: linux-media@vger.kernel.org
8435 T: git git://linuxtv.org/media_tree.git
8436 W: https://linuxtv.org
8438 F: drivers/media/radio/radio-maxiradio*
8440 MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVER
8441 M: Peter Rosin <peda@axentia.se>
8442 L: linux-iio@vger.kernel.org
8444 F: Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
8445 F: drivers/iio/potentiometer/mcp4531.c
8447 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
8448 M: William Breathitt Gray <vilhelm.gray@gmail.com>
8449 L: linux-iio@vger.kernel.org
8451 F: drivers/iio/dac/cio-dac.c
8453 MEDIA DRIVERS FOR ASCOT2E
8454 M: Sergey Kozlov <serjk@netup.ru>
8455 M: Abylay Ospan <aospan@netup.ru>
8456 L: linux-media@vger.kernel.org
8457 W: https://linuxtv.org
8459 T: git git://linuxtv.org/media_tree.git
8461 F: drivers/media/dvb-frontends/ascot2e*
8463 MEDIA DRIVERS FOR CXD2841ER
8464 M: Sergey Kozlov <serjk@netup.ru>
8465 M: Abylay Ospan <aospan@netup.ru>
8466 L: linux-media@vger.kernel.org
8467 W: https://linuxtv.org
8469 T: git git://linuxtv.org/media_tree.git
8471 F: drivers/media/dvb-frontends/cxd2841er*
8473 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
8474 M: Daniel Scheller <d.scheller.oss@gmail.com>
8475 L: linux-media@vger.kernel.org
8476 W: https://linuxtv.org
8477 T: git git://linuxtv.org/media_tree.git
8479 F: drivers/media/pci/ddbridge/*
8481 MEDIA DRIVERS FOR FREESCALE IMX
8482 M: Steve Longerbeam <slongerbeam@gmail.com>
8483 M: Philipp Zabel <p.zabel@pengutronix.de>
8484 L: linux-media@vger.kernel.org
8485 T: git git://linuxtv.org/media_tree.git
8487 F: Documentation/devicetree/bindings/media/imx.txt
8488 F: Documentation/media/v4l-drivers/imx.rst
8489 F: drivers/staging/media/imx/
8490 F: include/linux/imx-media.h
8491 F: include/media/imx.h
8493 MEDIA DRIVERS FOR HELENE
8494 M: Abylay Ospan <aospan@netup.ru>
8495 L: linux-media@vger.kernel.org
8496 W: https://linuxtv.org
8498 T: git git://linuxtv.org/media_tree.git
8500 F: drivers/media/dvb-frontends/helene*
8502 MEDIA DRIVERS FOR HORUS3A
8503 M: Sergey Kozlov <serjk@netup.ru>
8504 M: Abylay Ospan <aospan@netup.ru>
8505 L: linux-media@vger.kernel.org
8506 W: https://linuxtv.org
8508 T: git git://linuxtv.org/media_tree.git
8510 F: drivers/media/dvb-frontends/horus3a*
8512 MEDIA DRIVERS FOR LNBH25
8513 M: Sergey Kozlov <serjk@netup.ru>
8514 M: Abylay Ospan <aospan@netup.ru>
8515 L: linux-media@vger.kernel.org
8516 W: https://linuxtv.org
8518 T: git git://linuxtv.org/media_tree.git
8520 F: drivers/media/dvb-frontends/lnbh25*
8522 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
8523 M: Daniel Scheller <d.scheller.oss@gmail.com>
8524 L: linux-media@vger.kernel.org
8525 W: https://linuxtv.org
8526 T: git git://linuxtv.org/media_tree.git
8528 F: drivers/media/dvb-frontends/mxl5xx*
8530 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
8531 M: Sergey Kozlov <serjk@netup.ru>
8532 M: Abylay Ospan <aospan@netup.ru>
8533 L: linux-media@vger.kernel.org
8534 W: https://linuxtv.org
8536 T: git git://linuxtv.org/media_tree.git
8538 F: drivers/media/pci/netup_unidvb/*
8540 MEDIA DRIVERS FOR RENESAS - DRIF
8541 M: Ramesh Shanmugasundaram <ramesh.shanmugasundaram@bp.renesas.com>
8542 L: linux-media@vger.kernel.org
8543 L: linux-renesas-soc@vger.kernel.org
8544 T: git git://linuxtv.org/media_tree.git
8546 F: Documentation/devicetree/bindings/media/renesas,drif.txt
8547 F: drivers/media/platform/rcar_drif.c
8549 MEDIA DRIVERS FOR RENESAS - FCP
8550 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8551 L: linux-media@vger.kernel.org
8552 L: linux-renesas-soc@vger.kernel.org
8553 T: git git://linuxtv.org/media_tree.git
8555 F: Documentation/devicetree/bindings/media/renesas,fcp.txt
8556 F: drivers/media/platform/rcar-fcp.c
8557 F: include/media/rcar-fcp.h
8559 MEDIA DRIVERS FOR RENESAS - FDP1
8560 M: Kieran Bingham <kieran@bingham.xyz>
8561 L: linux-media@vger.kernel.org
8562 L: linux-renesas-soc@vger.kernel.org
8563 T: git git://linuxtv.org/media_tree.git
8565 F: Documentation/devicetree/bindings/media/renesas,fdp1.txt
8566 F: drivers/media/platform/rcar_fdp1.c
8568 MEDIA DRIVERS FOR RENESAS - VIN
8569 M: Niklas Söderlund <niklas.soderlund@ragnatech.se>
8570 L: linux-media@vger.kernel.org
8571 L: linux-renesas-soc@vger.kernel.org
8572 T: git git://linuxtv.org/media_tree.git
8574 F: Documentation/devicetree/bindings/media/rcar_vin.txt
8575 F: drivers/media/platform/rcar-vin/
8577 MEDIA DRIVERS FOR RENESAS - VSP1
8578 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8579 L: linux-media@vger.kernel.org
8580 L: linux-renesas-soc@vger.kernel.org
8581 T: git git://linuxtv.org/media_tree.git
8583 F: Documentation/devicetree/bindings/media/renesas,vsp1.txt
8584 F: drivers/media/platform/vsp1/
8586 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
8587 M: Daniel Scheller <d.scheller.oss@gmail.com>
8588 L: linux-media@vger.kernel.org
8589 W: https://linuxtv.org
8590 T: git git://linuxtv.org/media_tree.git
8592 F: drivers/media/dvb-frontends/stv0910*
8594 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
8595 M: Daniel Scheller <d.scheller.oss@gmail.com>
8596 L: linux-media@vger.kernel.org
8597 W: https://linuxtv.org
8598 T: git git://linuxtv.org/media_tree.git
8600 F: drivers/media/dvb-frontends/stv6111*
8602 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
8603 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
8604 M: Mauro Carvalho Chehab <mchehab@kernel.org>
8605 P: LinuxTV.org Project
8606 L: linux-media@vger.kernel.org
8607 W: https://linuxtv.org
8608 Q: http://patchwork.kernel.org/project/linux-media/list/
8609 T: git git://linuxtv.org/media_tree.git
8611 F: Documentation/devicetree/bindings/media/
8612 F: Documentation/media/
8614 F: drivers/staging/media/
8615 F: include/linux/platform_data/media/
8617 F: include/uapi/linux/dvb/
8618 F: include/uapi/linux/videodev2.h
8619 F: include/uapi/linux/media.h
8620 F: include/uapi/linux/v4l2-*
8621 F: include/uapi/linux/meye.h
8622 F: include/uapi/linux/ivtv*
8623 F: include/uapi/linux/uvcvideo.h
8626 M: Sean Wang <sean.wang@mediatek.com>
8628 F: drivers/media/rc/mtk-cir.c
8630 MEDIATEK PMIC LED DRIVER
8631 M: Sean Wang <sean.wang@mediatek.com>
8633 F: drivers/leds/leds-mt6323.c
8634 F: Documentation/devicetree/bindings/leds/leds-mt6323.txt
8636 MEDIATEK ETHERNET DRIVER
8637 M: Felix Fietkau <nbd@openwrt.org>
8638 M: John Crispin <john@phrozen.org>
8639 M: Sean Wang <sean.wang@mediatek.com>
8640 M: Nelson Chang <nelson.chang@mediatek.com>
8641 L: netdev@vger.kernel.org
8643 F: drivers/net/ethernet/mediatek/
8645 MEDIATEK JPEG DRIVER
8646 M: Rick Chang <rick.chang@mediatek.com>
8647 M: Bin Liu <bin.liu@mediatek.com>
8649 F: drivers/media/platform/mtk-jpeg/
8650 F: Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
8653 M: Minghsiu Tsai <minghsiu.tsai@mediatek.com>
8654 M: Houlong Wei <houlong.wei@mediatek.com>
8655 M: Andrew-CT Chen <andrew-ct.chen@mediatek.com>
8657 F: drivers/media/platform/mtk-mdp/
8658 F: drivers/media/platform/mtk-vpu/
8659 F: Documentation/devicetree/bindings/media/mediatek-mdp.txt
8661 MEDIATEK MEDIA DRIVER
8662 M: Tiffany Lin <tiffany.lin@mediatek.com>
8663 M: Andrew-CT Chen <andrew-ct.chen@mediatek.com>
8665 F: drivers/media/platform/mtk-vcodec/
8666 F: drivers/media/platform/mtk-vpu/
8667 F: Documentation/devicetree/bindings/media/mediatek-vcodec.txt
8668 F: Documentation/devicetree/bindings/media/mediatek-vpu.txt
8670 MEDIATEK MT7601U WIRELESS LAN DRIVER
8671 M: Jakub Kicinski <kubakici@wp.pl>
8672 L: linux-wireless@vger.kernel.org
8674 F: drivers/net/wireless/mediatek/mt7601u/
8676 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
8677 M: Sean Wang <sean.wang@mediatek.com>
8679 F: drivers/char/hw_random/mtk-rng.c
8681 MEDIATEK USB3 DRD IP DRIVER
8682 M: Chunfeng Yun <chunfeng.yun@mediatek.com>
8683 L: linux-usb@vger.kernel.org (moderated for non-subscribers)
8684 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8685 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
8687 F: drivers/usb/mtu3/
8689 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
8690 M: Peter Senna Tschudin <peter.senna@collabora.com>
8691 M: Martin Donnelly <martin.donnelly@ge.com>
8692 M: Martyn Welch <martyn.welch@collabora.co.uk>
8694 F: drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
8695 F: Documentation/devicetree/bindings/video/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
8697 MEGARAID SCSI/SAS DRIVERS
8698 M: Kashyap Desai <kashyap.desai@broadcom.com>
8699 M: Sumit Saxena <sumit.saxena@broadcom.com>
8700 M: Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
8701 L: megaraidlinux.pdl@broadcom.com
8702 L: linux-scsi@vger.kernel.org
8703 W: http://www.avagotech.com/support/
8705 F: Documentation/scsi/megaraid.txt
8706 F: drivers/scsi/megaraid.*
8707 F: drivers/scsi/megaraid/
8709 MELEXIS MLX90614 DRIVER
8710 M: Crt Mori <cmo@melexis.com>
8711 L: linux-iio@vger.kernel.org
8712 W: http://www.melexis.com
8714 F: drivers/iio/temperature/mlx90614.c
8716 MELFAS MIP4 TOUCHSCREEN DRIVER
8717 M: Sangwon Jee <jeesw@melfas.com>
8718 W: http://www.melfas.com
8720 F: drivers/input/touchscreen/melfas_mip4.c
8721 F: Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
8723 MELLANOX ETHERNET DRIVER (mlx4_en)
8724 M: Tariq Toukan <tariqt@mellanox.com>
8725 L: netdev@vger.kernel.org
8727 W: http://www.mellanox.com
8728 Q: http://patchwork.ozlabs.org/project/netdev/list/
8729 F: drivers/net/ethernet/mellanox/mlx4/en_*
8731 MELLANOX ETHERNET DRIVER (mlx5e)
8732 M: Saeed Mahameed <saeedm@mellanox.com>
8733 L: netdev@vger.kernel.org
8735 W: http://www.mellanox.com
8736 Q: http://patchwork.ozlabs.org/project/netdev/list/
8737 F: drivers/net/ethernet/mellanox/mlx5/core/en_*
8739 MELLANOX ETHERNET INNOVA DRIVER
8740 M: Ilan Tayari <ilant@mellanox.com>
8741 R: Boris Pismenny <borisp@mellanox.com>
8742 L: netdev@vger.kernel.org
8744 W: http://www.mellanox.com
8745 Q: http://patchwork.ozlabs.org/project/netdev/list/
8746 F: drivers/net/ethernet/mellanox/mlx5/core/fpga/*
8747 F: include/linux/mlx5/mlx5_ifc_fpga.h
8749 MELLANOX ETHERNET INNOVA IPSEC DRIVER
8750 M: Ilan Tayari <ilant@mellanox.com>
8751 R: Boris Pismenny <borisp@mellanox.com>
8752 L: netdev@vger.kernel.org
8754 W: http://www.mellanox.com
8755 Q: http://patchwork.ozlabs.org/project/netdev/list/
8756 F: drivers/net/ethernet/mellanox/mlx5/core/en_ipsec/*
8757 F: drivers/net/ethernet/mellanox/mlx5/core/ipsec*
8759 MELLANOX ETHERNET SWITCH DRIVERS
8760 M: Jiri Pirko <jiri@mellanox.com>
8761 M: Ido Schimmel <idosch@mellanox.com>
8762 L: netdev@vger.kernel.org
8764 W: http://www.mellanox.com
8765 Q: http://patchwork.ozlabs.org/project/netdev/list/
8766 F: drivers/net/ethernet/mellanox/mlxsw/
8768 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
8769 M: mlxsw@mellanox.com
8770 L: netdev@vger.kernel.org
8772 W: http://www.mellanox.com
8773 Q: http://patchwork.ozlabs.org/project/netdev/list/
8774 F: drivers/net/ethernet/mellanox/mlxfw/
8776 MELLANOX MLX CPLD HOTPLUG DRIVER
8777 M: Vadim Pasternak <vadimp@mellanox.com>
8778 L: platform-driver-x86@vger.kernel.org
8780 F: drivers/platform/x86/mlxcpld-hotplug.c
8781 F: include/linux/platform_data/mlxcpld-hotplug.h
8783 MELLANOX MLX4 core VPI driver
8784 M: Tariq Toukan <tariqt@mellanox.com>
8785 L: netdev@vger.kernel.org
8786 L: linux-rdma@vger.kernel.org
8787 W: http://www.mellanox.com
8788 Q: http://patchwork.ozlabs.org/project/netdev/list/
8790 F: drivers/net/ethernet/mellanox/mlx4/
8791 F: include/linux/mlx4/
8793 MELLANOX MLX4 IB driver
8794 M: Yishai Hadas <yishaih@mellanox.com>
8795 L: linux-rdma@vger.kernel.org
8796 W: http://www.mellanox.com
8797 Q: http://patchwork.kernel.org/project/linux-rdma/list/
8799 F: drivers/infiniband/hw/mlx4/
8800 F: include/linux/mlx4/
8801 F: include/uapi/rdma/mlx4-abi.h
8803 MELLANOX MLX5 core VPI driver
8804 M: Saeed Mahameed <saeedm@mellanox.com>
8805 M: Matan Barak <matanb@mellanox.com>
8806 M: Leon Romanovsky <leonro@mellanox.com>
8807 L: netdev@vger.kernel.org
8808 L: linux-rdma@vger.kernel.org
8809 W: http://www.mellanox.com
8810 Q: http://patchwork.ozlabs.org/project/netdev/list/
8812 F: drivers/net/ethernet/mellanox/mlx5/core/
8813 F: include/linux/mlx5/
8815 MELLANOX MLX5 IB driver
8816 M: Matan Barak <matanb@mellanox.com>
8817 M: Leon Romanovsky <leonro@mellanox.com>
8818 L: linux-rdma@vger.kernel.org
8819 W: http://www.mellanox.com
8820 Q: http://patchwork.kernel.org/project/linux-rdma/list/
8822 F: drivers/infiniband/hw/mlx5/
8823 F: include/linux/mlx5/
8824 F: include/uapi/rdma/mlx5-abi.h
8826 MELLANOX MLXCPLD I2C AND MUX DRIVER
8827 M: Vadim Pasternak <vadimp@mellanox.com>
8828 M: Michael Shych <michaelsh@mellanox.com>
8829 L: linux-i2c@vger.kernel.org
8831 F: drivers/i2c/busses/i2c-mlxcpld.c
8832 F: drivers/i2c/muxes/i2c-mux-mlxcpld.c
8833 F: Documentation/i2c/busses/i2c-mlxcpld
8835 MELLANOX MLXCPLD LED DRIVER
8836 M: Vadim Pasternak <vadimp@mellanox.com>
8837 L: linux-leds@vger.kernel.org
8839 F: drivers/leds/leds-mlxcpld.c
8840 F: Documentation/leds/leds-mlxcpld.txt
8842 MELLANOX PLATFORM DRIVER
8843 M: Vadim Pasternak <vadimp@mellanox.com>
8844 L: platform-driver-x86@vger.kernel.org
8846 F: drivers/platform/x86/mlx-platform.c
8849 M: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8850 M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8851 L: linux-kernel@vger.kernel.org
8853 F: kernel/sched/membarrier.c
8854 F: include/uapi/linux/membarrier.h
8857 L: linux-mm@kvack.org
8858 W: http://www.linux-mm.org
8860 F: include/linux/mm.h
8861 F: include/linux/gfp.h
8862 F: include/linux/mmzone.h
8863 F: include/linux/memory_hotplug.h
8864 F: include/linux/vmalloc.h
8867 MEMORY TECHNOLOGY DEVICES (MTD)
8868 M: David Woodhouse <dwmw2@infradead.org>
8869 M: Brian Norris <computersforpeace@gmail.com>
8870 M: Boris Brezillon <boris.brezillon@free-electrons.com>
8871 M: Marek Vasut <marek.vasut@gmail.com>
8872 M: Richard Weinberger <richard@nod.at>
8873 M: Cyrille Pitchen <cyrille.pitchen@wedev4u.fr>
8874 L: linux-mtd@lists.infradead.org
8875 W: http://www.linux-mtd.infradead.org/
8876 Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
8877 T: git git://git.infradead.org/linux-mtd.git master
8878 T: git git://git.infradead.org/l2-mtd.git master
8880 F: Documentation/devicetree/bindings/mtd/
8882 F: include/linux/mtd/
8883 F: include/uapi/mtd/
8885 MEN A21 WATCHDOG DRIVER
8886 M: Johannes Thumshirn <morbidrsa@gmail.com>
8887 L: linux-watchdog@vger.kernel.org
8889 F: drivers/watchdog/mena21_wdt.c
8891 MEN CHAMELEON BUS (mcb)
8892 M: Johannes Thumshirn <morbidrsa@gmail.com>
8895 F: include/linux/mcb.h
8896 F: Documentation/men-chameleon-bus.txt
8898 MEN F21BMC (Board Management Controller)
8899 M: Andreas Werner <andreas.werner@men.de>
8901 F: drivers/mfd/menf21bmc.c
8902 F: drivers/watchdog/menf21bmc_wdt.c
8903 F: drivers/leds/leds-menf21bmc.c
8904 F: drivers/hwmon/menf21bmc_hwmon.c
8905 F: Documentation/hwmon/menf21bmc
8907 MESON AO CEC DRIVER FOR AMLOGIC SOCS
8908 M: Neil Armstrong <narmstrong@baylibre.com>
8909 L: linux-media@lists.freedesktop.org
8910 L: linux-amlogic@lists.infradead.org
8911 W: http://linux-meson.com/
8913 F: drivers/media/platform/meson/ao-cec.c
8914 F: Documentation/devicetree/bindings/media/meson-ao-cec.txt
8915 T: git git://linuxtv.org/media_tree.git
8918 M: James Hogan <jhogan@kernel.org>
8919 L: linux-metag@vger.kernel.org
8920 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jhogan/metag.git
8923 F: Documentation/metag/
8924 F: Documentation/devicetree/bindings/metag/
8925 F: Documentation/devicetree/bindings/interrupt-controller/img,*
8926 F: drivers/clocksource/metag_generic.c
8927 F: drivers/irqchip/irq-metag.c
8928 F: drivers/irqchip/irq-metag-ext.c
8929 F: drivers/tty/metag_da.c
8931 MICROBLAZE ARCHITECTURE
8932 M: Michal Simek <monstr@monstr.eu>
8933 W: http://www.monstr.eu/fdt/
8934 T: git git://git.monstr.eu/linux-2.6-microblaze.git
8938 MICROCHIP / ATMEL AT91 SERIAL DRIVER
8939 M: Richard Genoud <richard.genoud@gmail.com>
8941 F: drivers/tty/serial/atmel_serial.c
8942 F: drivers/tty/serial/atmel_serial.h
8944 MICROCHIP / ATMEL DMA DRIVER
8945 M: Ludovic Desroches <ludovic.desroches@microchip.com>
8946 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8947 L: dmaengine@vger.kernel.org
8949 F: drivers/dma/at_hdmac.c
8950 F: drivers/dma/at_hdmac_regs.h
8951 F: include/linux/platform_data/dma-atmel.h
8953 MICROCHIP / ATMEL ECC DRIVER
8954 M: Tudor Ambarus <tudor.ambarus@microchip.com>
8955 L: linux-crypto@vger.kernel.org
8957 F: drivers/crypto/atmel-ecc.*
8959 MICROCHIP / ATMEL ISC DRIVER
8960 M: Songjun Wu <songjun.wu@microchip.com>
8961 L: linux-media@vger.kernel.org
8963 F: drivers/media/platform/atmel/atmel-isc.c
8964 F: drivers/media/platform/atmel/atmel-isc-regs.h
8965 F: devicetree/bindings/media/atmel-isc.txt
8967 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
8968 M: Woojung Huh <Woojung.Huh@microchip.com>
8969 M: Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
8970 L: netdev@vger.kernel.org
8972 F: net/dsa/tag_ksz.c
8973 F: drivers/net/dsa/microchip/*
8974 F: include/linux/platform_data/microchip-ksz.h
8975 F: Documentation/devicetree/bindings/net/dsa/ksz.txt
8977 MICROCHIP USB251XB DRIVER
8978 M: Richard Leitner <richard.leitner@skidata.com>
8979 L: linux-usb@vger.kernel.org
8981 F: drivers/usb/misc/usb251xb.c
8982 F: Documentation/devicetree/bindings/usb/usb251xb.txt
8984 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
8985 M: Don Brace <don.brace@microsemi.com>
8986 L: esc.storagedev@microsemi.com
8987 L: linux-scsi@vger.kernel.org
8989 F: drivers/scsi/smartpqi/smartpqi*.[ch]
8990 F: drivers/scsi/smartpqi/Kconfig
8991 F: drivers/scsi/smartpqi/Makefile
8992 F: include/linux/cciss*.h
8993 F: include/uapi/linux/cciss*.h
8994 F: Documentation/scsi/smartpqi.txt
8996 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
8997 M: Chen Yu <yu.c.chen@intel.com>
8998 L: platform-driver-x86@vger.kernel.org
9000 F: drivers/platform/x86/surfacepro3_button.c
9003 M: Oliver Neukum <oliver@neukum.org>
9005 F: drivers/usb/image/microtek.*
9008 M: Ralf Baechle <ralf@linux-mips.org>
9009 L: linux-mips@linux-mips.org
9010 W: http://www.linux-mips.org/
9011 T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
9012 Q: http://patchwork.linux-mips.org/project/linux-mips/list/
9014 F: Documentation/devicetree/bindings/mips/
9015 F: Documentation/mips/
9018 MIPS BOSTON DEVELOPMENT BOARD
9019 M: Paul Burton <paul.burton@mips.com>
9020 L: linux-mips@linux-mips.org
9022 F: Documentation/devicetree/bindings/clock/img,boston-clock.txt
9023 F: arch/mips/boot/dts/img/boston.dts
9024 F: arch/mips/configs/generic/board-boston.config
9025 F: drivers/clk/imgtec/clk-boston.c
9026 F: include/dt-bindings/clock/boston-clock.h
9028 MIPS GENERIC PLATFORM
9029 M: Paul Burton <paul.burton@mips.com>
9030 L: linux-mips@linux-mips.org
9032 F: arch/mips/generic/
9033 F: arch/mips/tools/generic-board-config.sh
9035 MIPS/LOONGSON1 ARCHITECTURE
9036 M: Keguang Zhang <keguang.zhang@gmail.com>
9037 L: linux-mips@linux-mips.org
9039 F: arch/mips/loongson32/
9040 F: arch/mips/include/asm/mach-loongson32/
9041 F: drivers/*/*loongson1*
9042 F: drivers/*/*/*loongson1*
9044 MIPS RINT INSTRUCTION EMULATION
9045 M: Aleksandar Markovic <aleksandar.markovic@mips.com>
9046 L: linux-mips@linux-mips.org
9048 F: arch/mips/math-emu/sp_rint.c
9049 F: arch/mips/math-emu/dp_rint.c
9051 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
9052 M: Hans Verkuil <hverkuil@xs4all.nl>
9053 L: linux-media@vger.kernel.org
9054 T: git git://linuxtv.org/media_tree.git
9055 W: https://linuxtv.org
9057 F: drivers/media/radio/radio-miropcm20*
9060 M: Eric Miao <eric.y.miao@gmail.com>
9061 M: Haojian Zhuang <haojian.zhuang@gmail.com>
9062 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9063 T: git git://github.com/hzhuang1/linux.git
9064 T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
9066 F: arch/arm/boot/dts/mmp*
9067 F: arch/arm/mach-mmp/
9069 MN88472 MEDIA DRIVER
9070 M: Antti Palosaari <crope@iki.fi>
9071 L: linux-media@vger.kernel.org
9072 W: https://linuxtv.org
9073 W: http://palosaari.fi/linux/
9074 Q: http://patchwork.linuxtv.org/project/linux-media/list/
9076 F: drivers/media/dvb-frontends/mn88472*
9078 MN88473 MEDIA DRIVER
9079 M: Antti Palosaari <crope@iki.fi>
9080 L: linux-media@vger.kernel.org
9081 W: https://linuxtv.org
9082 W: http://palosaari.fi/linux/
9083 Q: http://patchwork.linuxtv.org/project/linux-media/list/
9085 F: drivers/media/dvb-frontends/mn88473*
9088 M: Jessica Yu <jeyu@kernel.org>
9089 M: Rusty Russell <rusty@rustcorp.com.au>
9090 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
9092 F: include/linux/module.h
9095 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
9096 W: http://popies.net/meye/
9098 F: Documentation/media/v4l-drivers/meye*
9099 F: drivers/media/pci/meye/
9100 F: include/uapi/linux/meye.h
9102 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
9103 M: Jiri Slaby <jirislaby@gmail.com>
9105 F: Documentation/serial/moxa-smartio
9106 F: drivers/tty/mxser.*
9108 MR800 AVERMEDIA USB FM RADIO DRIVER
9109 M: Alexey Klimov <klimov.linux@gmail.com>
9110 L: linux-media@vger.kernel.org
9111 T: git git://linuxtv.org/media_tree.git
9113 F: drivers/media/radio/radio-mr800.c
9115 MRF24J40 IEEE 802.15.4 RADIO DRIVER
9116 M: Alan Ott <alan@signal11.us>
9117 L: linux-wpan@vger.kernel.org
9119 F: drivers/net/ieee802154/mrf24j40.c
9120 F: Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
9123 M: "Lee, Chun-Yi" <jlee@suse.com>
9124 L: platform-driver-x86@vger.kernel.org
9126 F: drivers/platform/x86/msi-laptop.c
9129 L: platform-driver-x86@vger.kernel.org
9131 F: drivers/platform/x86/msi-wmi.c
9134 M: Antti Palosaari <crope@iki.fi>
9135 L: linux-media@vger.kernel.org
9136 W: https://linuxtv.org
9137 W: http://palosaari.fi/linux/
9138 Q: http://patchwork.linuxtv.org/project/linux-media/list/
9139 T: git git://linuxtv.org/anttip/media_tree.git
9141 F: drivers/media/tuners/msi001*
9143 MSI2500 MEDIA DRIVER
9144 M: Antti Palosaari <crope@iki.fi>
9145 L: linux-media@vger.kernel.org
9146 W: https://linuxtv.org
9147 W: http://palosaari.fi/linux/
9148 Q: http://patchwork.linuxtv.org/project/linux-media/list/
9149 T: git git://linuxtv.org/anttip/media_tree.git
9151 F: drivers/media/usb/msi2500/
9153 MSYSTEMS DISKONCHIP G3 MTD DRIVER
9154 M: Robert Jarzmik <robert.jarzmik@free.fr>
9155 L: linux-mtd@lists.infradead.org
9157 F: drivers/mtd/devices/docg3*
9159 MT9M032 APTINA SENSOR DRIVER
9160 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
9161 L: linux-media@vger.kernel.org
9162 T: git git://linuxtv.org/media_tree.git
9164 F: drivers/media/i2c/mt9m032.c
9165 F: include/media/i2c/mt9m032.h
9167 MT9P031 APTINA CAMERA SENSOR
9168 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
9169 L: linux-media@vger.kernel.org
9170 T: git git://linuxtv.org/media_tree.git
9172 F: drivers/media/i2c/mt9p031.c
9173 F: include/media/i2c/mt9p031.h
9175 MT9T001 APTINA CAMERA SENSOR
9176 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
9177 L: linux-media@vger.kernel.org
9178 T: git git://linuxtv.org/media_tree.git
9180 F: drivers/media/i2c/mt9t001.c
9181 F: include/media/i2c/mt9t001.h
9183 MT9V032 APTINA CAMERA SENSOR
9184 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
9185 L: linux-media@vger.kernel.org
9186 T: git git://linuxtv.org/media_tree.git
9188 F: Documentation/devicetree/bindings/media/i2c/mt9v032.txt
9189 F: drivers/media/i2c/mt9v032.c
9190 F: include/media/i2c/mt9v032.h
9192 MULTIFUNCTION DEVICES (MFD)
9193 M: Lee Jones <lee.jones@linaro.org>
9194 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
9196 F: Documentation/devicetree/bindings/mfd/
9198 F: include/linux/mfd/
9199 F: include/dt-bindings/mfd/
9201 MULTIMEDIA CARD (MMC) ETC. OVER SPI
9203 F: drivers/mmc/host/mmc_spi.c
9204 F: include/linux/spi/mmc_spi.h
9206 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
9207 M: Ulf Hansson <ulf.hansson@linaro.org>
9208 L: linux-mmc@vger.kernel.org
9209 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
9211 F: Documentation/devicetree/bindings/mmc/
9213 F: include/linux/mmc/
9214 F: include/uapi/linux/mmc/
9216 MULTIPLEXER SUBSYSTEM
9217 M: Peter Rosin <peda@axentia.se>
9219 F: Documentation/ABI/testing/mux/sysfs-class-mux*
9220 F: Documentation/devicetree/bindings/mux/
9221 F: include/linux/dt-bindings/mux/
9222 F: include/linux/mux/
9225 MULTITECH MULTIPORT CARD (ISICOM)
9227 F: drivers/tty/isicom.c
9228 F: include/linux/isicom.h
9230 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
9231 M: Bin Liu <b-liu@ti.com>
9232 L: linux-usb@vger.kernel.org
9234 F: drivers/usb/musb/
9236 MXL5007T MEDIA DRIVER
9237 M: Michael Krufky <mkrufky@linuxtv.org>
9238 L: linux-media@vger.kernel.org
9239 W: https://linuxtv.org
9240 W: http://github.com/mkrufky
9241 Q: http://patchwork.linuxtv.org/project/linux-media/list/
9242 T: git git://linuxtv.org/mkrufky/tuners.git
9244 F: drivers/media/tuners/mxl5007t.*
9247 M: Marek Vasut <marex@denx.de>
9249 F: drivers/gpu/drm/mxsfb/
9250 F: Documentation/devicetree/bindings/display/mxsfb-drm.txt
9252 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
9253 M: Hyong-Youb Kim <hykim@myri.com>
9254 L: netdev@vger.kernel.org
9255 W: https://www.myricom.com/support/downloads/myri10ge.html
9257 F: drivers/net/ethernet/myricom/myri10ge/
9259 NAND FLASH SUBSYSTEM
9260 M: Boris Brezillon <boris.brezillon@free-electrons.com>
9261 R: Richard Weinberger <richard@nod.at>
9262 L: linux-mtd@lists.infradead.org
9263 W: http://www.linux-mtd.infradead.org/
9264 Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
9265 T: git git://git.infradead.org/linux-mtd.git nand/fixes
9266 T: git git://git.infradead.org/l2-mtd.git nand/next
9268 F: drivers/mtd/nand/
9269 F: include/linux/mtd/*nand*.h
9271 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
9272 M: Daniel Mack <zonque@gmail.com>
9274 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
9275 W: http://www.native-instruments.com
9278 NATSEMI ETHERNET DRIVER (DP8381x)
9280 F: drivers/net/ethernet/natsemi/natsemi.c
9283 M: Petr Vandrovec <petr@vandrovec.name>
9287 NCR 5380 SCSI DRIVERS
9288 M: Finn Thain <fthain@telegraphics.com.au>
9289 M: Michael Schmitz <schmitzmic@gmail.com>
9290 L: linux-scsi@vger.kernel.org
9292 F: Documentation/scsi/g_NCR5380.txt
9293 F: drivers/scsi/NCR5380.*
9294 F: drivers/scsi/arm/cumana_1.c
9295 F: drivers/scsi/arm/oak.c
9296 F: drivers/scsi/atari_scsi.*
9297 F: drivers/scsi/dmx3191d.c
9298 F: drivers/scsi/g_NCR5380.*
9299 F: drivers/scsi/mac_scsi.*
9300 F: drivers/scsi/sun3_scsi.*
9301 F: drivers/scsi/sun3_scsi_vme.c
9303 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
9304 M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
9305 L: linux-scsi@vger.kernel.org
9307 F: drivers/scsi/NCR_D700.*
9309 NCT6775 HARDWARE MONITOR DRIVER
9310 M: Guenter Roeck <linux@roeck-us.net>
9311 L: linux-hwmon@vger.kernel.org
9313 F: Documentation/hwmon/nct6775
9314 F: drivers/hwmon/nct6775.c
9316 NETEFFECT IWARP RNIC DRIVER (IW_NES)
9317 M: Faisal Latif <faisal.latif@intel.com>
9318 L: linux-rdma@vger.kernel.org
9319 W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
9321 F: drivers/infiniband/hw/nes/
9322 F: include/uapi/rdma/nes-abi.h
9324 NETEM NETWORK EMULATOR
9325 M: Stephen Hemminger <stephen@networkplumber.org>
9326 L: netem@lists.linux-foundation.org (moderated for non-subscribers)
9328 F: net/sched/sch_netem.c
9330 NETERION 10GbE DRIVERS (s2io/vxge)
9331 M: Jon Mason <jdmason@kudzu.us>
9332 L: netdev@vger.kernel.org
9334 F: Documentation/networking/s2io.txt
9335 F: Documentation/networking/vxge.txt
9336 F: drivers/net/ethernet/neterion/
9339 M: Pablo Neira Ayuso <pablo@netfilter.org>
9340 M: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
9341 M: Florian Westphal <fw@strlen.de>
9342 L: netfilter-devel@vger.kernel.org
9343 L: coreteam@netfilter.org
9344 W: http://www.netfilter.org/
9345 W: http://www.iptables.org/
9346 W: http://www.nftables.org/
9347 Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/
9348 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
9349 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
9351 F: include/linux/netfilter*
9352 F: include/linux/netfilter/
9353 F: include/net/netfilter/
9354 F: include/uapi/linux/netfilter*
9355 F: include/uapi/linux/netfilter/
9356 F: net/*/netfilter.c
9359 F: net/bridge/br_netfilter*.c
9361 NETROM NETWORK LAYER
9362 M: Ralf Baechle <ralf@linux-mips.org>
9363 L: linux-hams@vger.kernel.org
9364 W: http://www.linux-ax25.org/
9366 F: include/net/netrom.h
9367 F: include/uapi/linux/netrom.h
9370 NETRONOME ETHERNET DRIVERS
9371 M: Jakub Kicinski <jakub.kicinski@netronome.com>
9372 L: oss-drivers@netronome.com
9374 F: drivers/net/ethernet/netronome/
9376 NETWORK BLOCK DEVICE (NBD)
9377 M: Josef Bacik <jbacik@fb.com>
9379 L: linux-block@vger.kernel.org
9380 L: nbd@other.debian.org
9381 F: Documentation/blockdev/nbd.txt
9382 F: drivers/block/nbd.c
9383 F: include/uapi/linux/nbd.h
9385 NETWORK DROP MONITOR
9386 M: Neil Horman <nhorman@tuxdriver.com>
9387 L: netdev@vger.kernel.org
9389 W: https://fedorahosted.org/dropwatch/
9390 F: net/core/drop_monitor.c
9393 L: netdev@vger.kernel.org
9394 W: http://www.linuxfoundation.org/en/Net
9395 Q: http://patchwork.ozlabs.org/project/netdev/list/
9396 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
9397 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
9399 F: Documentation/devicetree/bindings/net/
9401 F: include/linux/if_*
9402 F: include/linux/netdevice.h
9403 F: include/linux/etherdevice.h
9404 F: include/linux/fcdevice.h
9405 F: include/linux/fddidevice.h
9406 F: include/linux/hippidevice.h
9407 F: include/linux/inetdevice.h
9408 F: include/uapi/linux/if_*
9409 F: include/uapi/linux/netdevice.h
9411 NETWORKING DRIVERS (WIRELESS)
9412 M: Kalle Valo <kvalo@codeaurora.org>
9413 L: linux-wireless@vger.kernel.org
9414 Q: http://patchwork.kernel.org/project/linux-wireless/list/
9415 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
9416 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
9418 F: Documentation/devicetree/bindings/net/wireless/
9419 F: drivers/net/wireless/
9422 M: Andrew Lunn <andrew@lunn.ch>
9423 M: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
9424 M: Florian Fainelli <f.fainelli@gmail.com>
9427 F: include/net/dsa.h
9430 NETWORKING [GENERAL]
9431 M: "David S. Miller" <davem@davemloft.net>
9432 L: netdev@vger.kernel.org
9433 W: http://www.linuxfoundation.org/en/Net
9434 Q: http://patchwork.ozlabs.org/project/netdev/list/
9435 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
9436 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
9437 B: mailto:netdev@vger.kernel.org
9441 F: include/linux/in.h
9442 F: include/linux/net.h
9443 F: include/linux/netdevice.h
9444 F: include/uapi/linux/in.h
9445 F: include/uapi/linux/net.h
9446 F: include/uapi/linux/netdevice.h
9447 F: include/uapi/linux/net_namespace.h
9449 F: tools/testing/selftests/net/
9453 M: Steffen Klassert <steffen.klassert@secunet.com>
9454 M: Herbert Xu <herbert@gondor.apana.org.au>
9455 M: "David S. Miller" <davem@davemloft.net>
9456 L: netdev@vger.kernel.org
9457 T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
9458 T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
9466 F: net/ipv4/ipcomp.c
9467 F: net/ipv4/ip_vti.c
9471 F: net/ipv6/ipcomp6.c
9472 F: net/ipv6/ip6_vti.c
9473 F: include/uapi/linux/xfrm.h
9474 F: include/net/xfrm.h
9476 NETWORKING [IPv4/IPv6]
9477 M: "David S. Miller" <davem@davemloft.net>
9478 M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
9479 M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
9480 L: netdev@vger.kernel.org
9481 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
9488 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
9489 M: Paul Moore <paul@paul-moore.com>
9490 W: https://github.com/netlabel
9491 L: netdev@vger.kernel.org
9492 L: linux-security-module@vger.kernel.org
9494 F: Documentation/netlabel/
9495 F: include/net/calipso.h
9496 F: include/net/cipso_ipv4.h
9497 F: include/net/netlabel.h
9498 F: include/uapi/linux/netfilter/xt_SECMARK.h
9499 F: include/uapi/linux/netfilter/xt_CONNSECMARK.h
9501 F: net/ipv4/cipso_ipv4.c
9502 F: net/ipv6/calipso.c
9503 F: net/netfilter/xt_CONNSECMARK.c
9504 F: net/netfilter/xt_SECMARK.c
9507 M: Ilya Lesokhin <ilyal@mellanox.com>
9508 M: Aviad Yehezkel <aviadye@mellanox.com>
9509 M: Dave Watson <davejwatson@fb.com>
9510 L: netdev@vger.kernel.org
9513 F: include/uapi/linux/tls.h
9514 F: include/net/tls.h
9516 NETWORKING [WIRELESS]
9517 L: linux-wireless@vger.kernel.org
9518 Q: http://patchwork.kernel.org/project/linux-wireless/list/
9520 NETXEN (1/10) GbE SUPPORT
9521 M: Manish Chopra <manish.chopra@cavium.com>
9522 M: Rahul Verma <rahul.verma@cavium.com>
9523 M: Dept-GELinuxNICDev@cavium.com
9524 L: netdev@vger.kernel.org
9526 F: drivers/net/ethernet/qlogic/netxen/
9529 M: Samuel Ortiz <sameo@linux.intel.com>
9530 L: linux-wireless@vger.kernel.org
9531 L: linux-nfc@lists.01.org (subscribers-only)
9535 F: include/uapi/linux/nfc.h
9537 F: include/linux/platform_data/nfcmrvl.h
9538 F: include/linux/platform_data/nxp-nci.h
9539 F: Documentation/devicetree/bindings/net/nfc/
9541 NFS, SUNRPC, AND LOCKD CLIENTS
9542 M: Trond Myklebust <trond.myklebust@primarydata.com>
9543 M: Anna Schumaker <anna.schumaker@netapp.com>
9544 L: linux-nfs@vger.kernel.org
9545 W: http://client.linux-nfs.org
9546 T: git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
9552 F: include/linux/lockd/
9553 F: include/linux/nfs*
9554 F: include/linux/sunrpc/
9555 F: include/uapi/linux/nfs*
9556 F: include/uapi/linux/sunrpc/
9559 M: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
9560 L: linux-nilfs@vger.kernel.org
9561 W: http://nilfs.sourceforge.net/
9562 W: http://nilfs.osdn.jp/
9563 T: git git://github.com/konis/nilfs2.git
9565 F: Documentation/filesystems/nilfs2.txt
9567 F: include/trace/events/nilfs2.h
9568 F: include/uapi/linux/nilfs2_api.h
9569 F: include/uapi/linux/nilfs2_ondisk.h
9571 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
9572 M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
9573 W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
9575 F: Documentation/scsi/NinjaSCSI.txt
9576 F: drivers/scsi/pcmcia/nsp_*
9578 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
9579 M: GOTO Masanori <gotom@debian.or.jp>
9580 M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
9581 W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
9583 F: Documentation/scsi/NinjaSCSI.txt
9584 F: drivers/scsi/nsp32*
9587 M: Ley Foon Tan <lftan@altera.com>
9588 L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
9589 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
9593 NOHZ, DYNTICKS SUPPORT
9594 M: Frederic Weisbecker <fweisbec@gmail.com>
9595 M: Thomas Gleixner <tglx@linutronix.de>
9596 M: Ingo Molnar <mingo@kernel.org>
9597 L: linux-kernel@vger.kernel.org
9598 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
9600 F: kernel/time/tick*.*
9601 F: include/linux/tick.h
9602 F: include/linux/sched/nohz.h
9604 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
9605 M: Pavel Machek <pavel@ucw.cz>
9606 M: Sakari Ailus <sakari.ailus@iki.fi>
9607 L: linux-media@vger.kernel.org
9609 F: drivers/media/i2c/et8ek8
9610 F: drivers/media/i2c/ad5820.c
9612 NOKIA N900 POWER SUPPLY DRIVERS
9613 R: Pali Rohár <pali.rohar@gmail.com>
9614 F: include/linux/power/bq2415x_charger.h
9615 F: include/linux/power/bq27xxx_battery.h
9616 F: include/linux/power/isp1704_charger.h
9617 F: drivers/power/supply/bq2415x_charger.c
9618 F: drivers/power/supply/bq27xxx_battery.c
9619 F: drivers/power/supply/bq27xxx_battery_i2c.c
9620 F: drivers/power/supply/isp1704_charger.c
9621 F: drivers/power/supply/rx51_battery.c
9624 M: Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
9625 L: linux-ntb@googlegroups.com
9627 F: drivers/ntb/hw/amd/
9630 M: Jon Mason <jdmason@kudzu.us>
9631 M: Dave Jiang <dave.jiang@intel.com>
9632 M: Allen Hubbe <Allen.Hubbe@emc.com>
9633 L: linux-ntb@googlegroups.com
9635 W: https://github.com/jonmason/ntb/wiki
9636 T: git git://github.com/jonmason/ntb.git
9638 F: drivers/net/ntb_netdev.c
9639 F: include/linux/ntb.h
9640 F: include/linux/ntb_transport.h
9641 F: tools/testing/selftests/ntb/
9644 M: Serge Semin <fancer.lancer@gmail.com>
9645 L: linux-ntb@googlegroups.com
9647 F: drivers/ntb/hw/idt/
9650 M: Jon Mason <jdmason@kudzu.us>
9651 M: Dave Jiang <dave.jiang@intel.com>
9652 L: linux-ntb@googlegroups.com
9654 W: https://github.com/jonmason/ntb/wiki
9655 T: git git://github.com/jonmason/ntb.git
9656 F: drivers/ntb/hw/intel/
9659 M: Anton Altaparmakov <anton@tuxera.com>
9660 L: linux-ntfs-dev@lists.sourceforge.net
9661 W: http://www.tuxera.com/
9662 T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
9664 F: Documentation/filesystems/ntfs.txt
9667 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
9668 M: Antonino Daplas <adaplas@gmail.com>
9669 L: linux-fbdev@vger.kernel.org
9671 F: drivers/video/fbdev/riva/
9672 F: drivers/video/fbdev/nvidia/
9675 M: Keith Busch <keith.busch@intel.com>
9676 M: Jens Axboe <axboe@fb.com>
9677 M: Christoph Hellwig <hch@lst.de>
9678 M: Sagi Grimberg <sagi@grimberg.me>
9679 L: linux-nvme@lists.infradead.org
9680 T: git://git.infradead.org/nvme.git
9681 W: http://git.infradead.org/nvme.git
9683 F: drivers/nvme/host/
9684 F: include/linux/nvme.h
9685 F: include/uapi/linux/nvme_ioctl.h
9687 NVM EXPRESS FC TRANSPORT DRIVERS
9688 M: James Smart <james.smart@broadcom.com>
9689 L: linux-nvme@lists.infradead.org
9691 F: include/linux/nvme-fc.h
9692 F: include/linux/nvme-fc-driver.h
9693 F: drivers/nvme/host/fc.c
9694 F: drivers/nvme/target/fc.c
9695 F: drivers/nvme/target/fcloop.c
9697 NVM EXPRESS TARGET DRIVER
9698 M: Christoph Hellwig <hch@lst.de>
9699 M: Sagi Grimberg <sagi@grimberg.me>
9700 L: linux-nvme@lists.infradead.org
9701 T: git://git.infradead.org/nvme.git
9702 W: http://git.infradead.org/nvme.git
9704 F: drivers/nvme/target/
9707 M: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
9710 F: Documentation/devicetree/bindings/nvmem/
9711 F: Documentation/ABI/stable/sysfs-bus-nvmem
9712 F: include/linux/nvmem-consumer.h
9713 F: include/linux/nvmem-provider.h
9715 NXP TDA998X DRM DRIVER
9716 M: Russell King <linux@armlinux.org.uk>
9718 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
9719 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
9720 F: drivers/gpu/drm/i2c/tda998x_drv.c
9721 F: include/drm/i2c/tda998x.h
9724 M: Peter Rosin <peda@axentia.se>
9725 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
9727 F: sound/soc/codecs/tfa9879*
9730 M: Clément Perrochaud <clement.perrochaud@effinnov.com>
9731 R: Charles Gorand <charles.gorand@effinnov.com>
9732 L: linux-nfc@lists.01.org (moderated for non-subscribers)
9734 F: drivers/nfc/nxp-nci
9737 M: Josh Poimboeuf <jpoimboe@redhat.com>
9742 M: Peter Ujfalusi <peter.ujfalusi@ti.com>
9743 M: Jarkko Nikula <jarkko.nikula@bitmer.com>
9744 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
9745 L: linux-omap@vger.kernel.org
9749 OMAP CLOCK FRAMEWORK SUPPORT
9750 M: Paul Walmsley <paul@pwsan.com>
9751 L: linux-omap@vger.kernel.org
9753 F: arch/arm/*omap*/*clock*
9755 OMAP DEVICE TREE SUPPORT
9756 M: Benoît Cousson <bcousson@baylibre.com>
9757 M: Tony Lindgren <tony@atomide.com>
9758 L: linux-omap@vger.kernel.org
9759 L: devicetree@vger.kernel.org
9761 F: arch/arm/boot/dts/*omap*
9762 F: arch/arm/boot/dts/*am3*
9763 F: arch/arm/boot/dts/*am4*
9764 F: arch/arm/boot/dts/*am5*
9765 F: arch/arm/boot/dts/*dra7*
9767 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
9768 M: Tomi Valkeinen <tomi.valkeinen@ti.com>
9769 L: linux-omap@vger.kernel.org
9770 L: linux-fbdev@vger.kernel.org
9772 F: drivers/video/fbdev/omap2/
9773 F: Documentation/arm/OMAP/DSS
9775 OMAP FRAMEBUFFER SUPPORT
9776 M: Tomi Valkeinen <tomi.valkeinen@ti.com>
9777 L: linux-fbdev@vger.kernel.org
9778 L: linux-omap@vger.kernel.org
9780 F: drivers/video/fbdev/omap/
9782 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
9783 M: Roger Quadros <rogerq@ti.com>
9784 M: Tony Lindgren <tony@atomide.com>
9785 L: linux-omap@vger.kernel.org
9787 F: drivers/memory/omap-gpmc.c
9788 F: arch/arm/mach-omap2/*gpmc*
9791 M: Grygorii Strashko <grygorii.strashko@ti.com>
9792 M: Santosh Shilimkar <ssantosh@kernel.org>
9793 M: Kevin Hilman <khilman@kernel.org>
9794 L: linux-omap@vger.kernel.org
9796 F: Documentation/devicetree/bindings/gpio/gpio-omap.txt
9797 F: drivers/gpio/gpio-omap.c
9799 OMAP HARDWARE SPINLOCK SUPPORT
9800 M: Ohad Ben-Cohen <ohad@wizery.com>
9801 L: linux-omap@vger.kernel.org
9803 F: drivers/hwspinlock/omap_hwspinlock.c
9806 L: linux-mmc@vger.kernel.org
9807 L: linux-omap@vger.kernel.org
9809 F: drivers/mmc/host/omap_hsmmc.c
9812 M: Paul Walmsley <paul@pwsan.com>
9813 L: linux-omap@vger.kernel.org
9815 F: arch/arm/mach-omap2/omap_hwmod*data*
9817 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
9818 M: Benoît Cousson <bcousson@baylibre.com>
9819 L: linux-omap@vger.kernel.org
9821 F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
9824 M: Benoît Cousson <bcousson@baylibre.com>
9825 M: Paul Walmsley <paul@pwsan.com>
9826 L: linux-omap@vger.kernel.org
9828 F: arch/arm/mach-omap2/omap_hwmod.*
9830 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
9831 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
9832 L: linux-media@vger.kernel.org
9834 F: Documentation/devicetree/bindings/media/ti,omap3isp.txt
9835 F: drivers/media/platform/omap3isp/
9836 F: drivers/staging/media/omap4iss/
9839 M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
9840 L: linux-omap@vger.kernel.org
9842 F: drivers/mmc/host/omap.c
9844 OMAP POWER MANAGEMENT SUPPORT
9845 M: Kevin Hilman <khilman@kernel.org>
9846 L: linux-omap@vger.kernel.org
9848 F: arch/arm/*omap*/*pm*
9849 F: drivers/cpufreq/omap-cpufreq.c
9851 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
9852 M: Rajendra Nayak <rnayak@codeaurora.org>
9853 M: Paul Walmsley <paul@pwsan.com>
9854 L: linux-omap@vger.kernel.org
9856 F: arch/arm/mach-omap2/prm*
9858 OMAP RANDOM NUMBER GENERATOR SUPPORT
9859 M: Deepak Saxena <dsaxena@plexity.net>
9861 F: drivers/char/hw_random/omap-rng.c
9864 L: linux-usb@vger.kernel.org
9865 L: linux-omap@vger.kernel.org
9867 F: drivers/usb/*/*omap*
9868 F: arch/arm/*omap*/usb*
9870 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
9871 M: Mark Jackson <mpfj@newflow.co.uk>
9872 L: linux-omap@vger.kernel.org
9874 F: arch/arm/boot/dts/am335x-nano.dts
9877 M: Aaro Koskinen <aaro.koskinen@iki.fi>
9878 M: Tony Lindgren <tony@atomide.com>
9879 L: linux-omap@vger.kernel.org
9880 Q: http://patchwork.kernel.org/project/linux-omap/list/
9881 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
9883 F: arch/arm/mach-omap1/
9884 F: arch/arm/plat-omap/
9885 F: arch/arm/configs/omap1_defconfig
9886 F: drivers/i2c/busses/i2c-omap.c
9887 F: include/linux/i2c-omap.h
9890 M: Tony Lindgren <tony@atomide.com>
9891 L: linux-omap@vger.kernel.org
9892 W: http://www.muru.com/linux/omap/
9893 W: http://linux.omap.com/
9894 Q: http://patchwork.kernel.org/project/linux-omap/list/
9895 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
9897 F: arch/arm/mach-omap2/
9898 F: arch/arm/plat-omap/
9899 F: arch/arm/configs/omap2plus_defconfig
9900 F: drivers/i2c/busses/i2c-omap.c
9901 F: drivers/irqchip/irq-omap-intc.c
9902 F: drivers/mfd/*omap*.c
9903 F: drivers/mfd/menelaus.c
9904 F: drivers/mfd/palmas.c
9905 F: drivers/mfd/tps65217.c
9906 F: drivers/mfd/tps65218.c
9907 F: drivers/mfd/tps65910.c
9908 F: drivers/mfd/twl-core.[ch]
9909 F: drivers/mfd/twl4030*.c
9910 F: drivers/mfd/twl6030*.c
9911 F: drivers/mfd/twl6040*.c
9912 F: drivers/regulator/palmas-regulator*.c
9913 F: drivers/regulator/pbias-regulator.c
9914 F: drivers/regulator/tps65217-regulator.c
9915 F: drivers/regulator/tps65218-regulator.c
9916 F: drivers/regulator/tps65910-regulator.c
9917 F: drivers/regulator/twl-regulator.c
9918 F: drivers/regulator/twl6030-regulator.c
9919 F: include/linux/i2c-omap.h
9922 M: Harvey Hunt <harveyhuntnexus@gmail.com>
9923 L: linux-mips@linux-mips.org
9925 F: arch/mips/boot/dts/ralink/omega2p.dts
9928 M: Bob Copeland <me@bobcopeland.com>
9929 L: linux-karma-devel@lists.sourceforge.net
9931 F: Documentation/filesystems/omfs.txt
9934 OMNIKEY CARDMAN 4000 DRIVER
9935 M: Harald Welte <laforge@gnumonks.org>
9937 F: drivers/char/pcmcia/cm4000_cs.c
9938 F: include/linux/cm4000_cs.h
9939 F: include/uapi/linux/cm4000_cs.h
9941 OMNIKEY CARDMAN 4040 DRIVER
9942 M: Harald Welte <laforge@gnumonks.org>
9944 F: drivers/char/pcmcia/cm4040_cs.*
9946 OMNIVISION OV13858 SENSOR DRIVER
9947 M: Sakari Ailus <sakari.ailus@linux.intel.com>
9948 L: linux-media@vger.kernel.org
9949 T: git git://linuxtv.org/media_tree.git
9951 F: drivers/media/i2c/ov13858.c
9953 OMNIVISION OV5640 SENSOR DRIVER
9954 M: Steve Longerbeam <slongerbeam@gmail.com>
9955 L: linux-media@vger.kernel.org
9956 T: git git://linuxtv.org/media_tree.git
9958 F: drivers/media/i2c/ov5640.c
9960 OMNIVISION OV5647 SENSOR DRIVER
9961 M: Luis Oliveira <lolivei@synopsys.com>
9962 L: linux-media@vger.kernel.org
9963 T: git git://linuxtv.org/media_tree.git
9965 F: drivers/media/i2c/ov5647.c
9967 OMNIVISION OV7670 SENSOR DRIVER
9968 M: Jonathan Corbet <corbet@lwn.net>
9969 L: linux-media@vger.kernel.org
9970 T: git git://linuxtv.org/media_tree.git
9972 F: drivers/media/i2c/ov7670.c
9973 F: Documentation/devicetree/bindings/media/i2c/ov7670.txt
9975 ONENAND FLASH DRIVER
9976 M: Kyungmin Park <kyungmin.park@samsung.com>
9977 L: linux-mtd@lists.infradead.org
9979 F: drivers/mtd/onenand/
9980 F: include/linux/mtd/onenand*.h
9982 ONSTREAM SCSI TAPE DRIVER
9983 M: Willem Riede <osst@riede.org>
9984 L: osst-users@lists.sourceforge.net
9985 L: linux-scsi@vger.kernel.org
9987 F: Documentation/scsi/osst.txt
9988 F: drivers/scsi/osst.*
9989 F: drivers/scsi/osst_*.h
9990 F: drivers/scsi/st.h
9993 M: Jens Wiklander <jens.wiklander@linaro.org>
9995 F: drivers/tee/optee/
9998 M: Dennis Dalessandro <dennis.dalessandro@intel.com>
9999 M: Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com>
10000 L: linux-rdma@vger.kernel.org
10002 F: drivers/infiniband/ulp/opa_vnic
10004 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
10005 M: Pantelis Antoniou <pantelis.antoniou@konsulko.com>
10006 L: devicetree@vger.kernel.org
10008 F: Documentation/devicetree/dynamic-resolution-notes.txt
10009 F: Documentation/devicetree/overlay-notes.txt
10010 F: drivers/of/overlay.c
10011 F: drivers/of/resolver.c
10013 OPEN FIRMWARE AND FLATTENED DEVICE TREE
10014 M: Rob Herring <robh+dt@kernel.org>
10015 M: Frank Rowand <frowand.list@gmail.com>
10016 L: devicetree@vger.kernel.org
10017 W: http://www.devicetree.org/
10018 T: git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
10021 F: include/linux/of*.h
10023 F: Documentation/ABI/testing/sysfs-firmware-ofw
10025 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
10026 M: Rob Herring <robh+dt@kernel.org>
10027 M: Mark Rutland <mark.rutland@arm.com>
10028 L: devicetree@vger.kernel.org
10029 T: git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
10030 Q: http://patchwork.ozlabs.org/project/devicetree-bindings/list/
10032 F: Documentation/devicetree/
10033 F: arch/*/boot/dts/
10034 F: include/dt-bindings/
10036 OPENCORES I2C BUS DRIVER
10037 M: Peter Korsgaard <jacmet@sunsite.dk>
10038 L: linux-i2c@vger.kernel.org
10040 F: Documentation/i2c/busses/i2c-ocores
10041 F: drivers/i2c/busses/i2c-ocores.c
10043 OPENRISC ARCHITECTURE
10044 M: Jonas Bonn <jonas@southpole.se>
10045 M: Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
10046 M: Stafford Horne <shorne@gmail.com>
10047 T: git git://github.com/openrisc/linux.git
10048 L: openrisc@lists.librecores.org
10049 W: http://openrisc.io
10051 F: Documentation/devicetree/bindings/openrisc/
10052 F: Documentation/openrisc/
10054 F: drivers/irqchip/irq-ompic.c
10055 F: drivers/irqchip/irq-or1k-*
10058 M: Pravin Shelar <pshelar@nicira.com>
10059 L: netdev@vger.kernel.org
10060 L: dev@openvswitch.org
10061 W: http://openvswitch.org
10063 F: net/openvswitch/
10064 F: include/uapi/linux/openvswitch.h
10066 OPERATING PERFORMANCE POINTS (OPP)
10067 M: Viresh Kumar <vireshk@kernel.org>
10068 M: Nishanth Menon <nm@ti.com>
10069 M: Stephen Boyd <sboyd@codeaurora.org>
10070 L: linux-pm@vger.kernel.org
10072 T: git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
10074 F: include/linux/pm_opp.h
10075 F: Documentation/power/opp.txt
10076 F: Documentation/devicetree/bindings/opp/
10079 M: Clemens Ladisch <clemens@ladisch.de>
10080 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
10081 T: git git://git.alsa-project.org/alsa-kernel.git
10083 F: sound/drivers/opl4/
10086 M: Robert Richter <rric@kernel.org>
10087 L: oprofile-list@lists.sf.net
10089 F: arch/*/include/asm/oprofile*.h
10090 F: arch/*/oprofile/
10091 F: drivers/oprofile/
10092 F: include/linux/oprofile.h
10094 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
10095 M: Mark Fasheh <mfasheh@versity.com>
10096 M: Joel Becker <jlbec@evilplan.org>
10097 L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
10098 W: http://ocfs2.wiki.kernel.org
10100 F: Documentation/filesystems/ocfs2.txt
10101 F: Documentation/filesystems/dlmfs.txt
10104 ORANGEFS FILESYSTEM
10105 M: Mike Marshall <hubcap@omnibond.com>
10106 L: pvfs2-developers@beowulf-underground.org (subscribers-only)
10107 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
10110 F: Documentation/filesystems/orangefs.txt
10113 L: linux-wireless@vger.kernel.org
10114 W: http://wireless.kernel.org/en/users/Drivers/orinoco
10115 W: http://www.nongnu.org/orinoco/
10117 F: drivers/net/wireless/intersil/orinoco/
10119 OSD LIBRARY and FILESYSTEM
10120 M: Boaz Harrosh <ooo@electrozaur.com>
10122 F: drivers/scsi/osd/
10123 F: include/scsi/osd_*
10126 OV2659 OMNIVISION SENSOR DRIVER
10127 M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
10128 L: linux-media@vger.kernel.org
10129 W: https://linuxtv.org
10130 Q: http://patchwork.linuxtv.org/project/linux-media/list/
10131 T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
10133 F: drivers/media/i2c/ov2659.c
10134 F: include/media/i2c/ov2659.h
10137 M: Miklos Szeredi <miklos@szeredi.hu>
10138 L: linux-unionfs@vger.kernel.org
10139 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
10142 F: Documentation/filesystems/overlayfs.txt
10144 P54 WIRELESS DRIVER
10145 M: Christian Lamparter <chunkeey@googlemail.com>
10146 L: linux-wireless@vger.kernel.org
10147 W: http://wireless.kernel.org/en/users/Drivers/p54
10149 F: drivers/net/wireless/intersil/p54/
10151 PA SEMI ETHERNET DRIVER
10152 L: netdev@vger.kernel.org
10154 F: drivers/net/ethernet/pasemi/*
10156 PA SEMI SMBUS DRIVER
10157 L: linux-i2c@vger.kernel.org
10159 F: drivers/i2c/busses/i2c-pasemi.c
10161 PADATA PARALLEL EXECUTION MECHANISM
10162 M: Steffen Klassert <steffen.klassert@secunet.com>
10163 L: linux-crypto@vger.kernel.org
10166 F: include/linux/padata.h
10167 F: Documentation/padata.txt
10169 PANASONIC LAPTOP ACPI EXTRAS DRIVER
10170 M: Harald Welte <laforge@gnumonks.org>
10171 L: platform-driver-x86@vger.kernel.org
10173 F: drivers/platform/x86/panasonic-laptop.c
10175 PANASONIC MN10300/AM33/AM34 PORT
10176 M: David Howells <dhowells@redhat.com>
10177 L: linux-am33-list@redhat.com (moderated for non-subscribers)
10178 W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
10180 F: Documentation/mn10300/
10183 PARALLEL LCD/KEYPAD PANEL DRIVER
10184 M: Willy Tarreau <willy@haproxy.com>
10185 M: Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
10187 F: Documentation/misc-devices/lcd-panel-cgram.txt
10188 F: drivers/misc/panel.c
10190 PARALLEL PORT SUBSYSTEM
10191 M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10192 M: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
10193 L: linux-parport@lists.infradead.org (subscribers-only)
10195 F: drivers/parport/
10196 F: include/linux/parport*.h
10197 F: drivers/char/ppdev.c
10198 F: include/uapi/linux/ppdev.h
10199 F: Documentation/parport*.txt
10201 PARAVIRT_OPS INTERFACE
10202 M: Juergen Gross <jgross@suse.com>
10203 M: Alok Kataria <akataria@vmware.com>
10204 M: Rusty Russell <rusty@rustcorp.com.au>
10205 L: virtualization@lists.linux-foundation.org
10207 F: Documentation/virtual/paravirt_ops.txt
10208 F: arch/*/kernel/paravirt*
10209 F: arch/*/include/asm/paravirt*.h
10210 F: include/linux/hypervisor.h
10212 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
10213 M: Tim Waugh <tim@cyberelk.net>
10214 L: linux-parport@lists.infradead.org (subscribers-only)
10216 F: Documentation/blockdev/paride.txt
10217 F: drivers/block/paride/
10219 PARISC ARCHITECTURE
10220 M: "James E.J. Bottomley" <jejb@parisc-linux.org>
10221 M: Helge Deller <deller@gmx.de>
10222 L: linux-parisc@vger.kernel.org
10223 W: http://www.parisc-linux.org/
10224 Q: http://patchwork.kernel.org/project/linux-parisc/list/
10225 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
10226 T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
10229 F: Documentation/parisc/
10231 F: drivers/char/agp/parisc-agp.c
10232 F: drivers/input/serio/gscps2.c
10233 F: drivers/parport/parport_gsc.*
10234 F: drivers/tty/serial/8250/8250_gsc.c
10235 F: drivers/video/fbdev/sti*
10236 F: drivers/video/console/sti*
10237 F: drivers/video/logo/logo_parisc*
10240 M: Jiri Pirko <jiri@mellanox.com>
10241 L: netdev@vger.kernel.org
10244 F: lib/test_parman.c
10245 F: include/linux/parman.h
10247 PC87360 HARDWARE MONITORING DRIVER
10248 M: Jim Cromie <jim.cromie@gmail.com>
10249 L: linux-hwmon@vger.kernel.org
10251 F: Documentation/hwmon/pc87360
10252 F: drivers/hwmon/pc87360.c
10254 PC8736x GPIO DRIVER
10255 M: Jim Cromie <jim.cromie@gmail.com>
10257 F: drivers/char/pc8736x_gpio.c
10259 PC87427 HARDWARE MONITORING DRIVER
10260 M: Jean Delvare <jdelvare@suse.com>
10261 L: linux-hwmon@vger.kernel.org
10263 F: Documentation/hwmon/pc87427
10264 F: drivers/hwmon/pc87427.c
10267 M: Riku Voipio <riku.voipio@iki.fi>
10269 F: drivers/leds/leds-pca9532.c
10270 F: include/linux/leds-pca9532.h
10272 PCA9541 I2C BUS MASTER SELECTOR DRIVER
10273 M: Guenter Roeck <linux@roeck-us.net>
10274 L: linux-i2c@vger.kernel.org
10276 F: drivers/i2c/muxes/i2c-mux-pca9541.c
10278 PCDP - PRIMARY CONSOLE AND DEBUG PORT
10279 M: Khalid Aziz <khalid@gonehiking.org>
10281 F: drivers/firmware/pcdp.*
10283 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
10284 M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10285 L: linux-pci@vger.kernel.org
10286 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10288 F: Documentation/devicetree/bindings/pci/aardvark-pci.txt
10289 F: drivers/pci/host/pci-aardvark.c
10291 PCI DRIVER FOR ALTERA PCIE IP
10292 M: Ley Foon Tan <lftan@altera.com>
10293 L: rfi@lists.rocketboards.org (moderated for non-subscribers)
10294 L: linux-pci@vger.kernel.org
10296 F: Documentation/devicetree/bindings/pci/altera-pcie.txt
10297 F: drivers/pci/host/pcie-altera.c
10299 PCI DRIVER FOR APPLIEDMICRO XGENE
10300 M: Tanmay Inamdar <tinamdar@apm.com>
10301 L: linux-pci@vger.kernel.org
10302 L: linux-arm-kernel@lists.infradead.org
10304 F: Documentation/devicetree/bindings/pci/xgene-pci.txt
10305 F: drivers/pci/host/pci-xgene.c
10307 PCI DRIVER FOR ARM VERSATILE PLATFORM
10308 M: Rob Herring <robh@kernel.org>
10309 L: linux-pci@vger.kernel.org
10310 L: linux-arm-kernel@lists.infradead.org
10312 F: Documentation/devicetree/bindings/pci/versatile.txt
10313 F: drivers/pci/host/pci-versatile.c
10315 PCI DRIVER FOR ARMADA 8K
10316 M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10317 L: linux-pci@vger.kernel.org
10318 L: linux-arm-kernel@lists.infradead.org
10320 F: Documentation/devicetree/bindings/pci/pci-armada8k.txt
10321 F: drivers/pci/dwc/pcie-armada8k.c
10323 PCI DRIVER FOR FREESCALE LAYERSCAPE
10324 M: Minghuan Lian <minghuan.Lian@freescale.com>
10325 M: Mingkai Hu <mingkai.hu@freescale.com>
10326 M: Roy Zang <tie-fei.zang@freescale.com>
10327 L: linuxppc-dev@lists.ozlabs.org
10328 L: linux-pci@vger.kernel.org
10329 L: linux-arm-kernel@lists.infradead.org
10331 F: drivers/pci/dwc/*layerscape*
10333 PCI DRIVER FOR GENERIC OF HOSTS
10334 M: Will Deacon <will.deacon@arm.com>
10335 L: linux-pci@vger.kernel.org
10336 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10338 F: Documentation/devicetree/bindings/pci/host-generic-pci.txt
10339 F: drivers/pci/host/pci-host-common.c
10340 F: drivers/pci/host/pci-host-generic.c
10342 PCI DRIVER FOR IMX6
10343 M: Richard Zhu <hongxing.zhu@nxp.com>
10344 M: Lucas Stach <l.stach@pengutronix.de>
10345 L: linux-pci@vger.kernel.org
10346 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10348 F: Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
10349 F: drivers/pci/dwc/*imx6*
10351 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
10352 M: Keith Busch <keith.busch@intel.com>
10353 M: Jonathan Derrick <jonathan.derrick@intel.com>
10354 L: linux-pci@vger.kernel.org
10356 F: drivers/pci/host/vmd.c
10358 PCI DRIVER FOR MICROSEMI SWITCHTEC
10359 M: Kurt Schwemmer <kurt.schwemmer@microsemi.com>
10360 M: Logan Gunthorpe <logang@deltatee.com>
10361 L: linux-pci@vger.kernel.org
10363 F: Documentation/switchtec.txt
10364 F: Documentation/ABI/testing/sysfs-class-switchtec
10365 F: drivers/pci/switch/switchtec*
10366 F: include/uapi/linux/switchtec_ioctl.h
10368 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
10369 M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10370 M: Jason Cooper <jason@lakedaemon.net>
10371 L: linux-pci@vger.kernel.org
10372 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10374 F: drivers/pci/host/*mvebu*
10376 PCI DRIVER FOR NVIDIA TEGRA
10377 M: Thierry Reding <thierry.reding@gmail.com>
10378 L: linux-tegra@vger.kernel.org
10379 L: linux-pci@vger.kernel.org
10381 F: Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
10382 F: drivers/pci/host/pci-tegra.c
10384 PCI DRIVER FOR RENESAS R-CAR
10385 M: Simon Horman <horms@verge.net.au>
10386 L: linux-pci@vger.kernel.org
10387 L: linux-renesas-soc@vger.kernel.org
10389 F: drivers/pci/host/*rcar*
10391 PCI DRIVER FOR SAMSUNG EXYNOS
10392 M: Jingoo Han <jingoohan1@gmail.com>
10393 L: linux-pci@vger.kernel.org
10394 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10395 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
10397 F: drivers/pci/dwc/pci-exynos.c
10399 PCI DRIVER FOR SYNOPSYS DESIGNWARE
10400 M: Jingoo Han <jingoohan1@gmail.com>
10401 M: Joao Pinto <Joao.Pinto@synopsys.com>
10402 L: linux-pci@vger.kernel.org
10404 F: Documentation/devicetree/bindings/pci/designware-pcie.txt
10405 F: drivers/pci/dwc/*designware*
10407 PCI DRIVER FOR TI DRA7XX
10408 M: Kishon Vijay Abraham I <kishon@ti.com>
10409 L: linux-omap@vger.kernel.org
10410 L: linux-pci@vger.kernel.org
10412 F: Documentation/devicetree/bindings/pci/ti-pci.txt
10413 F: drivers/pci/dwc/pci-dra7xx.c
10415 PCI DRIVER FOR TI KEYSTONE
10416 M: Murali Karicheri <m-karicheri2@ti.com>
10417 L: linux-pci@vger.kernel.org
10418 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10420 F: drivers/pci/dwc/*keystone*
10422 PCI ENDPOINT SUBSYSTEM
10423 M: Kishon Vijay Abraham I <kishon@ti.com>
10424 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
10425 L: linux-pci@vger.kernel.org
10426 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
10428 F: drivers/pci/endpoint/
10429 F: drivers/misc/pci_endpoint_test.c
10432 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
10433 M: Russell Currey <ruscur@russell.cc>
10434 L: linuxppc-dev@lists.ozlabs.org
10436 F: Documentation/powerpc/eeh-pci-error-recovery.txt
10437 F: arch/powerpc/kernel/eeh*.c
10438 F: arch/powerpc/platforms/*/eeh*.c
10439 F: arch/powerpc/include/*/eeh*.h
10442 M: Linas Vepstas <linasvepstas@gmail.com>
10443 L: linux-pci@vger.kernel.org
10445 F: Documentation/PCI/pci-error-recovery.txt
10447 PCI MSI DRIVER FOR ALTERA MSI IP
10448 M: Ley Foon Tan <lftan@altera.com>
10449 L: rfi@lists.rocketboards.org (moderated for non-subscribers)
10450 L: linux-pci@vger.kernel.org
10452 F: Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
10453 F: drivers/pci/host/pcie-altera-msi.c
10455 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
10456 M: Duc Dang <dhdang@apm.com>
10457 L: linux-pci@vger.kernel.org
10458 L: linux-arm-kernel@lists.infradead.org
10460 F: Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
10461 F: drivers/pci/host/pci-xgene-msi.c
10464 M: Bjorn Helgaas <bhelgaas@google.com>
10465 L: linux-pci@vger.kernel.org
10466 Q: http://patchwork.ozlabs.org/project/linux-pci/list/
10467 T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
10469 F: Documentation/devicetree/bindings/pci/
10470 F: Documentation/PCI/
10472 F: include/linux/pci*
10474 F: arch/x86/kernel/quirks.c
10476 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
10477 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
10478 L: linux-pci@vger.kernel.org
10479 Q: http://patchwork.ozlabs.org/project/linux-pci/list/
10480 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
10482 F: drivers/pci/host/
10483 F: drivers/pci/dwc/
10485 PCIE DRIVER FOR AXIS ARTPEC
10486 M: Niklas Cassel <niklas.cassel@axis.com>
10487 M: Jesper Nilsson <jesper.nilsson@axis.com>
10488 L: linux-arm-kernel@axis.com
10489 L: linux-pci@vger.kernel.org
10491 F: Documentation/devicetree/bindings/pci/axis,artpec*
10492 F: drivers/pci/dwc/*artpec*
10494 PCIE DRIVER FOR CAVIUM THUNDERX
10495 M: David Daney <david.daney@cavium.com>
10496 L: linux-pci@vger.kernel.org
10497 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10499 F: Documentation/devicetree/bindings/pci/pci-thunder-*
10500 F: drivers/pci/host/pci-thunder-*
10502 PCIE DRIVER FOR HISILICON
10503 M: Zhou Wang <wangzhou1@hisilicon.com>
10504 L: linux-pci@vger.kernel.org
10506 F: Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
10507 F: drivers/pci/dwc/pcie-hisi.c
10509 PCIE DRIVER FOR HISILICON KIRIN
10510 M: Xiaowei Song <songxiaowei@hisilicon.com>
10511 M: Binghui Wang <wangbinghui@hisilicon.com>
10512 L: linux-pci@vger.kernel.org
10514 F: Documentation/devicetree/bindings/pci/pcie-kirin.txt
10515 F: drivers/pci/dwc/pcie-kirin.c
10517 PCIE DRIVER FOR MEDIATEK
10518 M: Ryder Lee <ryder.lee@mediatek.com>
10519 L: linux-pci@vger.kernel.org
10520 L: linux-mediatek@lists.infradead.org
10522 F: Documentation/devicetree/bindings/pci/mediatek*
10523 F: drivers/pci/host/*mediatek*
10525 PCIE DRIVER FOR QUALCOMM MSM
10526 M: Stanimir Varbanov <svarbanov@mm-sol.com>
10527 L: linux-pci@vger.kernel.org
10528 L: linux-arm-msm@vger.kernel.org
10530 F: drivers/pci/dwc/*qcom*
10532 PCIE DRIVER FOR ROCKCHIP
10533 M: Shawn Lin <shawn.lin@rock-chips.com>
10534 L: linux-pci@vger.kernel.org
10535 L: linux-rockchip@lists.infradead.org
10537 F: Documentation/devicetree/bindings/pci/rockchip-pcie.txt
10538 F: drivers/pci/host/pcie-rockchip.c
10540 PCIE DRIVER FOR ST SPEAR13XX
10541 M: Pratyush Anand <pratyush.anand@gmail.com>
10542 L: linux-pci@vger.kernel.org
10544 F: drivers/pci/dwc/*spear*
10547 P: Linux PCMCIA Team
10548 L: linux-pcmcia@lists.infradead.org
10549 W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
10550 T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
10552 F: Documentation/pcmcia/
10557 PCNET32 NETWORK DRIVER
10558 M: Don Fry <pcnet32@frontier.com>
10559 L: netdev@vger.kernel.org
10561 F: drivers/net/ethernet/amd/pcnet32.c
10563 PCRYPT PARALLEL CRYPTO ENGINE
10564 M: Steffen Klassert <steffen.klassert@secunet.com>
10565 L: linux-crypto@vger.kernel.org
10568 F: include/crypto/pcrypt.h
10570 PER-CPU MEMORY ALLOCATOR
10571 M: Tejun Heo <tj@kernel.org>
10572 M: Christoph Lameter <cl@linux.com>
10573 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
10575 F: include/linux/percpu*.h
10577 F: arch/*/include/asm/percpu.h
10579 PER-TASK DELAY ACCOUNTING
10580 M: Balbir Singh <bsingharora@gmail.com>
10582 F: include/linux/delayacct.h
10583 F: kernel/delayacct.c
10585 PERFORMANCE EVENTS SUBSYSTEM
10586 M: Peter Zijlstra <peterz@infradead.org>
10587 M: Ingo Molnar <mingo@redhat.com>
10588 M: Arnaldo Carvalho de Melo <acme@kernel.org>
10589 R: Alexander Shishkin <alexander.shishkin@linux.intel.com>
10590 R: Jiri Olsa <jolsa@redhat.com>
10591 R: Namhyung Kim <namhyung@kernel.org>
10592 L: linux-kernel@vger.kernel.org
10593 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
10596 F: include/linux/perf_event.h
10597 F: include/uapi/linux/perf_event.h
10598 F: arch/*/kernel/perf_event*.c
10599 F: arch/*/kernel/*/perf_event*.c
10600 F: arch/*/kernel/*/*/perf_event*.c
10601 F: arch/*/include/asm/perf_event.h
10602 F: arch/*/kernel/perf_callchain.c
10606 PERSONALITY HANDLING
10607 M: Christoph Hellwig <hch@infradead.org>
10608 L: linux-abi-devel@lists.sourceforge.net
10610 F: include/linux/personality.h
10611 F: include/uapi/linux/personality.h
10614 M: Remi Denis-Courmont <courmisch@gmail.com>
10616 F: Documentation/networking/phonet.txt
10617 F: include/linux/phonet.h
10618 F: include/net/phonet/
10619 F: include/uapi/linux/phonet.h
10623 M: Joern Engel <joern@lazybastard.org>
10624 L: linux-mtd@lists.infradead.org
10626 F: drivers/mtd/devices/phram.c
10629 M: Bruno Prémont <bonbons@linux-vserver.org>
10630 L: linux-input@vger.kernel.org
10632 F: drivers/hid/hid-picolcd*
10635 M: Jamie Iles <jamie@jamieiles.com>
10636 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10637 T: git git://github.com/jamieiles/linux-2.6-ji.git
10639 F: arch/arm/boot/dts/picoxcell*
10640 F: arch/arm/mach-picoxcell/
10641 F: drivers/crypto/picoxcell*
10643 PIN CONTROL SUBSYSTEM
10644 M: Linus Walleij <linus.walleij@linaro.org>
10645 L: linux-gpio@vger.kernel.org
10646 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
10648 F: Documentation/devicetree/bindings/pinctrl/
10649 F: Documentation/driver-api/pinctl.rst
10650 F: drivers/pinctrl/
10651 F: include/linux/pinctrl/
10653 PIN CONTROLLER - ATMEL AT91
10654 M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
10655 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10657 F: drivers/pinctrl/pinctrl-at91.*
10659 PIN CONTROLLER - ATMEL AT91 PIO4
10660 M: Ludovic Desroches <ludovic.desroches@microchip.com>
10661 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10662 L: linux-gpio@vger.kernel.org
10664 F: drivers/pinctrl/pinctrl-at91-pio4.*
10666 PIN CONTROLLER - INTEL
10667 M: Mika Westerberg <mika.westerberg@linux.intel.com>
10668 M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
10670 F: drivers/pinctrl/intel/
10672 PIN CONTROLLER - QUALCOMM
10673 M: Bjorn Andersson <bjorn.andersson@linaro.org>
10675 L: linux-arm-msm@vger.kernel.org
10676 F: Documentation/devicetree/bindings/pinctrl/qcom,*.txt
10677 F: drivers/pinctrl/qcom/
10679 PIN CONTROLLER - RENESAS
10680 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10681 M: Geert Uytterhoeven <geert+renesas@glider.be>
10682 L: linux-renesas-soc@vger.kernel.org
10684 F: drivers/pinctrl/sh-pfc/
10686 PIN CONTROLLER - SAMSUNG
10687 M: Tomasz Figa <tomasz.figa@gmail.com>
10688 M: Krzysztof Kozlowski <krzk@kernel.org>
10689 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
10690 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10691 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
10692 Q: https://patchwork.kernel.org/project/linux-samsung-soc/list/
10693 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
10695 F: drivers/pinctrl/samsung/
10696 F: include/dt-bindings/pinctrl/samsung.h
10697 F: Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
10699 PIN CONTROLLER - SINGLE
10700 M: Tony Lindgren <tony@atomide.com>
10701 M: Haojian Zhuang <haojian.zhuang@linaro.org>
10702 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10703 L: linux-omap@vger.kernel.org
10705 F: drivers/pinctrl/pinctrl-single.c
10707 PIN CONTROLLER - ST SPEAR
10708 M: Viresh Kumar <vireshk@kernel.org>
10709 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10710 W: http://www.st.com/spear
10712 F: drivers/pinctrl/spear/
10714 PISTACHIO SOC SUPPORT
10715 M: James Hartley <james.hartley@sondrel.com>
10716 L: linux-mips@linux-mips.org
10718 F: arch/mips/pistachio/
10719 F: arch/mips/include/asm/mach-pistachio/
10720 F: arch/mips/boot/dts/img/pistachio*
10721 F: arch/mips/configs/pistachio*_defconfig
10725 M: linux-block@vger.kernel.org
10726 F: drivers/block/pktcdvd.c
10727 F: include/linux/pktcdvd.h
10728 F: include/uapi/linux/pktcdvd.h
10730 PKUNITY SOC DRIVERS
10731 M: Guan Xuetao <gxt@mprc.pku.edu.cn>
10732 W: http://mprc.pku.edu.cn/~guanxuetao/linux
10734 T: git git://github.com/gxt/linux.git
10735 F: drivers/input/serio/i8042-unicore32io.h
10736 F: drivers/i2c/busses/i2c-puv3.c
10737 F: drivers/video/fbdev/fb-puv3.c
10738 F: drivers/rtc/rtc-puv3.c
10740 PMBUS HARDWARE MONITORING DRIVERS
10741 M: Guenter Roeck <linux@roeck-us.net>
10742 L: linux-hwmon@vger.kernel.org
10743 W: http://hwmon.wiki.kernel.org/
10744 W: http://www.roeck-us.net/linux/drivers/
10745 T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
10747 F: Documentation/hwmon/pmbus
10748 F: drivers/hwmon/pmbus/
10749 F: include/linux/pmbus.h
10751 PMC SIERRA MaxRAID DRIVER
10752 L: linux-scsi@vger.kernel.org
10753 W: http://www.pmc-sierra.com/
10755 F: drivers/scsi/pmcraid.*
10757 PMC SIERRA PM8001 DRIVER
10758 M: Jack Wang <jinpu.wang@profitbricks.com>
10759 M: lindar_liu@usish.com
10760 L: linux-scsi@vger.kernel.org
10762 F: drivers/scsi/pm8001/
10765 M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
10769 POSIX CLOCKS and TIMERS
10770 M: Thomas Gleixner <tglx@linutronix.de>
10771 L: linux-kernel@vger.kernel.org
10772 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
10775 F: include/linux/timer*
10776 F: kernel/time/*timer*
10778 POWER MANAGEMENT CORE
10779 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
10780 L: linux-pm@vger.kernel.org
10781 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
10782 B: https://bugzilla.kernel.org
10784 F: drivers/base/power/
10785 F: include/linux/pm.h
10786 F: include/linux/pm_*
10787 F: include/linux/powercap.h
10788 F: drivers/powercap/
10790 POWER STATE COORDINATION INTERFACE (PSCI)
10791 M: Mark Rutland <mark.rutland@arm.com>
10792 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
10793 L: linux-arm-kernel@lists.infradead.org
10795 F: drivers/firmware/psci*.c
10796 F: include/linux/psci.h
10797 F: include/uapi/linux/psci.h
10799 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
10800 M: Sebastian Reichel <sre@kernel.org>
10801 L: linux-pm@vger.kernel.org
10802 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
10804 F: Documentation/devicetree/bindings/power/supply/
10805 F: include/linux/power_supply.h
10806 F: drivers/power/supply/
10808 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
10809 M: Suraj Jitindar Singh <sjitindarsingh@gmail.com>
10810 L: linuxppc-dev@lists.ozlabs.org
10812 F: drivers/char/powernv-op-panel.c
10814 PPP OVER ATM (RFC 2364)
10815 M: Mitchell Blank Jr <mitch@sfgoth.com>
10817 F: net/atm/pppoatm.c
10818 F: include/uapi/linux/atmppp.h
10821 M: Michal Ostrowski <mostrows@earthlink.net>
10823 F: drivers/net/ppp/pppoe.c
10824 F: drivers/net/ppp/pppox.c
10827 M: James Chapman <jchapman@katalix.com>
10829 F: net/l2tp/l2tp_ppp.c
10830 F: include/linux/if_pppol2tp.h
10831 F: include/uapi/linux/if_pppol2tp.h
10833 PPP PROTOCOL DRIVERS AND COMPRESSORS
10834 M: Paul Mackerras <paulus@samba.org>
10835 L: linux-ppp@vger.kernel.org
10837 F: drivers/net/ppp/ppp_*
10840 M: Rodolfo Giometti <giometti@enneenne.com>
10841 W: http://wiki.enneenne.com/index.php/LinuxPPS_support
10842 L: linuxpps@ml.enneenne.com (subscribers-only)
10844 F: Documentation/pps/
10845 F: Documentation/devicetree/bindings/pps/pps-gpio.txt
10846 F: Documentation/ABI/testing/sysfs-pps
10848 F: include/linux/pps*.h
10849 F: include/uapi/linux/pps.h
10852 M: Dmitry Kozlov <xeb@mail.ru>
10853 L: netdev@vger.kernel.org
10855 F: drivers/net/ppp/pptp.c
10856 W: http://sourceforge.net/projects/accel-pptp
10859 M: Robert Love <rml@tech9.net>
10860 L: kpreempt-tech@lists.sourceforge.net
10861 W: https://www.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
10863 F: Documentation/preempt-locking.txt
10864 F: include/linux/preempt.h
10867 M: Petr Mladek <pmladek@suse.com>
10868 M: Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
10869 R: Steven Rostedt <rostedt@goodmis.org>
10872 F: include/linux/printk.h
10874 PRISM54 WIRELESS DRIVER
10875 M: "Luis R. Rodriguez" <mcgrof@gmail.com>
10876 L: linux-wireless@vger.kernel.org
10877 W: http://wireless.kernel.org/en/users/Drivers/p54
10879 F: drivers/net/wireless/intersil/prism54/
10882 M: "Luis R. Rodriguez" <mcgrof@kernel.org>
10883 M: Kees Cook <keescook@chromium.org>
10884 L: linux-kernel@vger.kernel.org
10885 L: linux-fsdevel@vger.kernel.org
10887 F: fs/proc/proc_sysctl.c
10888 F: include/linux/sysctl.h
10890 F: tools/testing/selftests/sysctl/
10892 PS3 NETWORK SUPPORT
10893 M: Geoff Levand <geoff@infradead.org>
10894 L: netdev@vger.kernel.org
10895 L: linuxppc-dev@lists.ozlabs.org
10897 F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
10899 PS3 PLATFORM SUPPORT
10900 M: Geoff Levand <geoff@infradead.org>
10901 L: linuxppc-dev@lists.ozlabs.org
10903 F: arch/powerpc/boot/ps3*
10904 F: arch/powerpc/include/asm/lv1call.h
10905 F: arch/powerpc/include/asm/ps3*.h
10906 F: arch/powerpc/platforms/ps3/
10909 F: drivers/rtc/rtc-ps3.c
10910 F: drivers/usb/host/*ps3.c
10911 F: sound/ppc/snd_ps3*
10914 M: Jim Paris <jim@jtan.com>
10915 M: Geoff Levand <geoff@infradead.org>
10916 L: linuxppc-dev@lists.ozlabs.org
10918 F: drivers/block/ps3vram.c
10920 PSAMPLE PACKET SAMPLING SUPPORT:
10921 M: Yotam Gigi <yotam.gi@gmail.com>
10924 F: include/net/psample.h
10925 F: include/uapi/linux/psample.h
10928 M: Kees Cook <keescook@chromium.org>
10929 M: Anton Vorontsov <anton@enomsg.org>
10930 M: Colin Cross <ccross@android.com>
10931 M: Tony Luck <tony.luck@intel.com>
10933 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
10935 F: include/linux/pstore*
10936 F: drivers/firmware/efi/efi-pstore.c
10937 F: drivers/acpi/apei/erst.c
10938 F: Documentation/admin-guide/ramoops.rst
10939 F: Documentation/devicetree/bindings/reserved-memory/ramoops.txt
10940 K: \b(pstore|ramoops)
10942 PTP HARDWARE CLOCK SUPPORT
10943 M: Richard Cochran <richardcochran@gmail.com>
10944 L: netdev@vger.kernel.org
10946 W: http://linuxptp.sourceforge.net/
10947 F: Documentation/ABI/testing/sysfs-ptp
10948 F: Documentation/ptp/*
10949 F: drivers/net/ethernet/freescale/gianfar_ptp.c
10950 F: drivers/net/phy/dp83640*
10952 F: include/linux/ptp_cl*
10955 M: Oleg Nesterov <oleg@redhat.com>
10957 F: include/asm-generic/syscall.h
10958 F: include/linux/ptrace.h
10959 F: include/linux/regset.h
10960 F: include/linux/tracehook.h
10961 F: include/uapi/linux/ptrace.h
10962 F: include/uapi/linux/ptrace.h
10963 F: include/asm-generic/ptrace.h
10965 F: arch/*/ptrace*.c
10966 F: arch/*/*/ptrace*.c
10967 F: arch/*/include/asm/ptrace*.h
10970 M: Hans Verkuil <hverkuil@xs4all.nl>
10971 L: linux-media@vger.kernel.org
10972 T: git git://linuxtv.org/media_tree.git
10974 F: drivers/media/usb/pulse8-cec/*
10975 F: Documentation/media/cec-drivers/pulse8-cec.rst
10977 PVRUSB2 VIDEO4LINUX DRIVER
10978 M: Mike Isely <isely@pobox.com>
10979 L: pvrusb2@isely.net (subscribers-only)
10980 L: linux-media@vger.kernel.org
10981 W: http://www.isely.net/pvrusb2/
10982 T: git git://linuxtv.org/media_tree.git
10984 F: Documentation/media/v4l-drivers/pvrusb2*
10985 F: drivers/media/usb/pvrusb2/
10988 M: Hans Verkuil <hverkuil@xs4all.nl>
10989 L: linux-media@vger.kernel.org
10990 T: git git://linuxtv.org/media_tree.git
10992 F: drivers/media/usb/pwc/*
10995 M: Kamil Debski <kamil@wypas.org>
10996 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10997 L: linux-hwmon@vger.kernel.org
10999 F: Documentation/devicetree/bindings/hwmon/pwm-fan.txt
11000 F: Documentation/hwmon/pwm-fan
11001 F: drivers/hwmon/pwm-fan.c
11004 M: Sean Young <sean@mess.org>
11005 L: linux-media@vger.kernel.org
11007 F: drivers/media/rc/pwm-ir-tx.c
11010 M: Thierry Reding <thierry.reding@gmail.com>
11011 L: linux-pwm@vger.kernel.org
11013 T: git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
11014 F: Documentation/pwm.txt
11015 F: Documentation/devicetree/bindings/pwm/
11016 F: include/linux/pwm.h
11018 F: drivers/video/backlight/pwm_bl.c
11019 F: include/linux/pwm_backlight.h
11020 F: drivers/gpio/gpio-mvebu.c
11021 F: Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
11024 M: Robert Jarzmik <robert.jarzmik@free.fr>
11025 L: linux-gpio@vger.kernel.org
11027 F: drivers/gpio/gpio-pxa.c
11033 M: Robert Jarzmik <robert.jarzmik@free.fr>
11034 L: linux-rtc@vger.kernel.org
11037 PXA2xx/PXA3xx SUPPORT
11038 M: Daniel Mack <daniel@zonque.org>
11039 M: Haojian Zhuang <haojian.zhuang@gmail.com>
11040 M: Robert Jarzmik <robert.jarzmik@free.fr>
11041 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11042 T: git git://github.com/hzhuang1/linux.git
11043 T: git git://github.com/rjarzmik/linux.git
11045 F: arch/arm/boot/dts/pxa*
11046 F: arch/arm/mach-pxa/
11047 F: drivers/dma/pxa*
11048 F: drivers/pcmcia/pxa2xx*
11049 F: drivers/pinctrl/pxa/
11050 F: drivers/spi/spi-pxa2xx*
11051 F: drivers/usb/gadget/udc/pxa2*
11052 F: include/sound/pxa2xx-lib.h
11056 PXA3xx NAND FLASH DRIVER
11057 M: Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
11058 L: linux-mtd@lists.infradead.org
11060 F: drivers/mtd/nand/pxa3xx_nand.c
11063 M: Giovanni Cabiddu <giovanni.cabiddu@intel.com>
11064 L: qat-linux@intel.com
11066 F: drivers/crypto/qat/
11068 QCOM AUDIO (ASoC) DRIVERS
11069 M: Patrick Lai <plai@codeaurora.org>
11070 M: Banajit Goswami <bgoswami@codeaurora.org>
11071 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
11075 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
11076 M: Gabriel Somlo <somlo@cmu.edu>
11077 M: "Michael S. Tsirkin" <mst@redhat.com>
11078 L: qemu-devel@nongnu.org
11080 F: drivers/firmware/qemu_fw_cfg.c
11083 M: Mike Marciniszyn <infinipath@intel.com>
11084 L: linux-rdma@vger.kernel.org
11086 F: drivers/infiniband/hw/qib/
11088 QLOGIC QL41xxx FCOE DRIVER
11089 M: QLogic-Storage-Upstream@cavium.com
11090 L: linux-scsi@vger.kernel.org
11092 F: drivers/scsi/qedf/
11094 QLOGIC QL41xxx ISCSI DRIVER
11095 M: QLogic-Storage-Upstream@cavium.com
11096 L: linux-scsi@vger.kernel.org
11098 F: drivers/scsi/qedi/
11100 QLOGIC QL4xxx ETHERNET DRIVER
11101 M: Ariel Elior <Ariel.Elior@cavium.com>
11102 M: everest-linux-l2@cavium.com
11103 L: netdev@vger.kernel.org
11105 F: drivers/net/ethernet/qlogic/qed/
11106 F: include/linux/qed/
11107 F: drivers/net/ethernet/qlogic/qede/
11109 QLOGIC QL4xxx RDMA DRIVER
11110 M: Ram Amrani <Ram.Amrani@cavium.com>
11111 M: Ariel Elior <Ariel.Elior@cavium.com>
11112 L: linux-rdma@vger.kernel.org
11114 F: drivers/infiniband/hw/qedr/
11115 F: include/uapi/rdma/qedr-abi.h
11117 QLOGIC QLA1280 SCSI DRIVER
11118 M: Michael Reed <mdr@sgi.com>
11119 L: linux-scsi@vger.kernel.org
11121 F: drivers/scsi/qla1280.[ch]
11123 QLOGIC QLA2XXX FC-SCSI DRIVER
11124 M: qla2xxx-upstream@qlogic.com
11125 L: linux-scsi@vger.kernel.org
11127 F: Documentation/scsi/LICENSE.qla2xxx
11128 F: drivers/scsi/qla2xxx/
11130 QLOGIC QLA3XXX NETWORK DRIVER
11131 M: Dept-GELinuxNICDev@cavium.com
11132 L: netdev@vger.kernel.org
11134 F: Documentation/networking/LICENSE.qla3xxx
11135 F: drivers/net/ethernet/qlogic/qla3xxx.*
11137 QLOGIC QLA4XXX iSCSI DRIVER
11138 M: QLogic-Storage-Upstream@qlogic.com
11139 L: linux-scsi@vger.kernel.org
11141 F: Documentation/scsi/LICENSE.qla4xxx
11142 F: drivers/scsi/qla4xxx/
11144 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
11145 M: Harish Patil <harish.patil@cavium.com>
11146 M: Manish Chopra <manish.chopra@cavium.com>
11147 M: Dept-GELinuxNICDev@cavium.com
11148 L: netdev@vger.kernel.org
11150 F: drivers/net/ethernet/qlogic/qlcnic/
11152 QLOGIC QLGE 10Gb ETHERNET DRIVER
11153 M: Harish Patil <harish.patil@cavium.com>
11154 M: Manish Chopra <manish.chopra@cavium.com>
11155 M: Dept-GELinuxNICDev@cavium.com
11156 L: netdev@vger.kernel.org
11158 F: drivers/net/ethernet/qlogic/qlge/
11161 M: Anders Larsen <al@alarsen.net>
11162 W: http://www.alarsen.net/linux/qnx4fs/
11165 F: include/uapi/linux/qnx4_fs.h
11166 F: include/uapi/linux/qnxtypes.h
11168 QORIQ DPAA2 FSL-MC BUS DRIVER
11169 M: Stuart Yoder <stuyoder@gmail.com>
11170 M: Laurentiu Tudor <laurentiu.tudor@nxp.com>
11171 L: linux-kernel@vger.kernel.org
11173 F: drivers/staging/fsl-mc/
11174 F: Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
11176 QT1010 MEDIA DRIVER
11177 M: Antti Palosaari <crope@iki.fi>
11178 L: linux-media@vger.kernel.org
11179 W: https://linuxtv.org
11180 W: http://palosaari.fi/linux/
11181 Q: http://patchwork.linuxtv.org/project/linux-media/list/
11182 T: git git://linuxtv.org/anttip/media_tree.git
11184 F: drivers/media/tuners/qt1010*
11186 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
11187 M: Kalle Valo <kvalo@qca.qualcomm.com>
11188 L: ath10k@lists.infradead.org
11189 W: http://wireless.kernel.org/en/users/Drivers/ath10k
11190 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
11192 F: drivers/net/wireless/ath/ath10k/
11194 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
11195 M: QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
11196 L: linux-wireless@vger.kernel.org
11197 W: http://wireless.kernel.org/en/users/Drivers/ath9k
11199 F: drivers/net/wireless/ath/ath9k/
11201 QUALCOMM CAMERA SUBSYSTEM DRIVER
11202 M: Todor Tomov <todor.tomov@linaro.org>
11203 L: linux-media@vger.kernel.org
11205 F: Documentation/devicetree/bindings/media/qcom,camss.txt
11206 F: Documentation/media/v4l-drivers/qcom_camss.rst
11207 F: drivers/media/platform/qcom/camss-8x16/
11209 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
11210 M: Timur Tabi <timur@codeaurora.org>
11211 L: netdev@vger.kernel.org
11213 F: drivers/net/ethernet/qualcomm/emac/
11215 QUALCOMM HEXAGON ARCHITECTURE
11216 M: Richard Kuo <rkuo@codeaurora.org>
11217 L: linux-hexagon@vger.kernel.org
11218 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rkuo/linux-hexagon-kernel.git
11223 M: Rob Clark <robdclark@gmail.com>
11224 L: iommu@lists.linux-foundation.org
11225 L: linux-arm-msm@vger.kernel.org
11227 F: drivers/iommu/qcom_iommu.c
11229 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
11230 M: Stanimir Varbanov <stanimir.varbanov@linaro.org>
11231 L: linux-media@vger.kernel.org
11232 L: linux-arm-msm@vger.kernel.org
11233 T: git git://linuxtv.org/media_tree.git
11235 F: drivers/media/platform/qcom/venus/
11237 QUALCOMM WCN36XX WIRELESS DRIVER
11238 M: Eugene Krasnikov <k.eugene.e@gmail.com>
11239 L: wcn36xx@lists.infradead.org
11240 W: http://wireless.kernel.org/en/users/Drivers/wcn36xx
11241 T: git git://github.com/KrasnikovEugene/wcn36xx.git
11243 F: drivers/net/wireless/ath/wcn36xx/
11245 QUANTENNA QTNFMAC WIRELESS DRIVER
11246 M: Igor Mitsyanko <imitsyanko@quantenna.com>
11247 M: Avinash Patil <avinashp@quantenna.com>
11248 M: Sergey Matyukevich <smatyukevich@quantenna.com>
11249 L: linux-wireless@vger.kernel.org
11251 F: drivers/net/wireless/quantenna
11253 RADEON and AMDGPU DRM DRIVERS
11254 M: Alex Deucher <alexander.deucher@amd.com>
11255 M: Christian König <christian.koenig@amd.com>
11256 L: amd-gfx@lists.freedesktop.org
11257 T: git git://people.freedesktop.org/~agd5f/linux
11259 F: drivers/gpu/drm/radeon/
11260 F: include/uapi/drm/radeon_drm.h
11261 F: drivers/gpu/drm/amd/
11262 F: include/uapi/drm/amdgpu_drm.h
11264 RADEON FRAMEBUFFER DISPLAY DRIVER
11265 M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
11266 L: linux-fbdev@vger.kernel.org
11268 F: drivers/video/fbdev/aty/radeon*
11269 F: include/uapi/linux/radeonfb.h
11271 RADIOSHARK RADIO DRIVER
11272 M: Hans Verkuil <hverkuil@xs4all.nl>
11273 L: linux-media@vger.kernel.org
11274 T: git git://linuxtv.org/media_tree.git
11276 F: drivers/media/radio/radio-shark.c
11278 RADIOSHARK2 RADIO DRIVER
11279 M: Hans Verkuil <hverkuil@xs4all.nl>
11280 L: linux-media@vger.kernel.org
11281 T: git git://linuxtv.org/media_tree.git
11283 F: drivers/media/radio/radio-shark2.c
11284 F: drivers/media/radio/radio-tea5777.c
11286 RADOS BLOCK DEVICE (RBD)
11287 M: Ilya Dryomov <idryomov@gmail.com>
11288 M: Sage Weil <sage@redhat.com>
11289 M: Alex Elder <elder@kernel.org>
11290 L: ceph-devel@vger.kernel.org
11291 W: http://ceph.com/
11292 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
11293 T: git git://github.com/ceph/ceph-client.git
11295 F: Documentation/ABI/testing/sysfs-bus-rbd
11296 F: drivers/block/rbd.c
11297 F: drivers/block/rbd_types.h
11299 RAGE128 FRAMEBUFFER DISPLAY DRIVER
11300 M: Paul Mackerras <paulus@samba.org>
11301 L: linux-fbdev@vger.kernel.org
11303 F: drivers/video/fbdev/aty/aty128fb.c
11305 RAINSHADOW-CEC DRIVER
11306 M: Hans Verkuil <hverkuil@xs4all.nl>
11307 L: linux-media@vger.kernel.org
11308 T: git git://linuxtv.org/media_tree.git
11310 F: drivers/media/usb/rainshadow-cec/*
11312 RALINK MIPS ARCHITECTURE
11313 M: John Crispin <john@phrozen.org>
11314 L: linux-mips@linux-mips.org
11316 F: arch/mips/ralink
11318 RALINK RT2X00 WIRELESS LAN DRIVER
11320 M: Stanislaw Gruszka <sgruszka@redhat.com>
11321 M: Helmut Schaa <helmut.schaa@googlemail.com>
11322 L: linux-wireless@vger.kernel.org
11324 F: drivers/net/wireless/ralink/rt2x00/
11326 RAMDISK RAM BLOCK DEVICE DRIVER
11327 M: Jens Axboe <axboe@kernel.dk>
11329 F: Documentation/blockdev/ramdisk.txt
11330 F: drivers/block/brd.c
11332 RANDOM NUMBER DRIVER
11333 M: "Theodore Ts'o" <tytso@mit.edu>
11335 F: drivers/char/random.c
11338 M: Matt Porter <mporter@kernel.crashing.org>
11339 M: Alexandre Bounine <alexandre.bounine@idt.com>
11341 F: drivers/rapidio/
11343 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
11344 L: linux-wireless@vger.kernel.org
11346 F: drivers/net/wireless/ray*
11349 M: Josh Triplett <josh@joshtriplett.org>
11350 M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
11351 L: linux-kernel@vger.kernel.org
11353 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
11354 F: Documentation/RCU/torture.txt
11355 F: kernel/rcu/rcutorture.c
11357 RCUTORTURE TEST FRAMEWORK
11358 M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
11359 M: Josh Triplett <josh@joshtriplett.org>
11360 R: Steven Rostedt <rostedt@goodmis.org>
11361 R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
11362 R: Lai Jiangshan <jiangshanlai@gmail.com>
11363 L: linux-kernel@vger.kernel.org
11365 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
11366 F: tools/testing/selftests/rcutorture
11369 M: Florian Fainelli <florian@openwrt.org>
11372 RDC R6040 FAST ETHERNET DRIVER
11373 M: Florian Fainelli <f.fainelli@gmail.com>
11374 L: netdev@vger.kernel.org
11376 F: drivers/net/ethernet/rdc/r6040.c
11378 RDMAVT - RDMA verbs software
11379 M: Dennis Dalessandro <dennis.dalessandro@intel.com>
11380 L: linux-rdma@vger.kernel.org
11382 F: drivers/infiniband/sw/rdmavt
11384 RDS - RELIABLE DATAGRAM SOCKETS
11385 M: Santosh Shilimkar <santosh.shilimkar@oracle.com>
11386 L: netdev@vger.kernel.org
11387 L: linux-rdma@vger.kernel.org
11388 L: rds-devel@oss.oracle.com (moderated for non-subscribers)
11389 W: https://oss.oracle.com/projects/rds/
11392 F: Documentation/networking/rds.txt
11394 RDT - RESOURCE ALLOCATION
11395 M: Fenghua Yu <fenghua.yu@intel.com>
11396 L: linux-kernel@vger.kernel.org
11398 F: arch/x86/kernel/cpu/intel_rdt*
11399 F: arch/x86/include/asm/intel_rdt_sched.h
11400 F: Documentation/x86/intel_rdt*
11402 READ-COPY UPDATE (RCU)
11403 M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
11404 M: Josh Triplett <josh@joshtriplett.org>
11405 R: Steven Rostedt <rostedt@goodmis.org>
11406 R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
11407 R: Lai Jiangshan <jiangshanlai@gmail.com>
11408 L: linux-kernel@vger.kernel.org
11409 W: http://www.rdrop.com/users/paulmck/RCU/
11411 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
11412 F: Documentation/RCU/
11413 X: Documentation/RCU/torture.txt
11414 F: include/linux/rcu*
11415 X: include/linux/srcu.h
11417 X: kernel/torture.c
11419 REAL TIME CLOCK (RTC) SUBSYSTEM
11420 M: Alessandro Zummo <a.zummo@towertech.it>
11421 M: Alexandre Belloni <alexandre.belloni@free-electrons.com>
11422 L: linux-rtc@vger.kernel.org
11423 Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
11424 T: git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
11426 F: Documentation/devicetree/bindings/rtc/
11427 F: Documentation/rtc.txt
11429 F: include/linux/rtc.h
11430 F: include/uapi/linux/rtc.h
11431 F: include/linux/rtc/
11432 F: include/linux/platform_data/rtc-*
11433 F: tools/testing/selftests/timers/rtctest.c
11435 REALTEK AUDIO CODECS
11436 M: Bard Liao <bardliao@realtek.com>
11437 M: Oder Chiou <oder_chiou@realtek.com>
11439 F: sound/soc/codecs/rt*
11440 F: include/sound/rt*.h
11442 REGISTER MAP ABSTRACTION
11443 M: Mark Brown <broonie@kernel.org>
11444 L: linux-kernel@vger.kernel.org
11445 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
11447 F: Documentation/devicetree/bindings/regmap/
11448 F: drivers/base/regmap/
11449 F: include/linux/regmap.h
11451 REISERFS FILE SYSTEM
11452 L: reiserfs-devel@vger.kernel.org
11456 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
11457 M: Ohad Ben-Cohen <ohad@wizery.com>
11458 M: Bjorn Andersson <bjorn.andersson@linaro.org>
11459 L: linux-remoteproc@vger.kernel.org
11460 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
11462 F: Documentation/devicetree/bindings/remoteproc/
11463 F: Documentation/remoteproc.txt
11464 F: drivers/remoteproc/
11465 F: include/linux/remoteproc.h
11467 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
11468 M: Ohad Ben-Cohen <ohad@wizery.com>
11469 M: Bjorn Andersson <bjorn.andersson@linaro.org>
11470 L: linux-remoteproc@vger.kernel.org
11471 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
11474 F: Documentation/rpmsg.txt
11475 F: include/linux/rpmsg.h
11476 F: include/linux/rpmsg/
11478 RENESAS CLOCK DRIVERS
11479 M: Geert Uytterhoeven <geert+renesas@glider.be>
11480 L: linux-renesas-soc@vger.kernel.org
11482 F: drivers/clk/renesas/
11484 RENESAS ETHERNET DRIVERS
11485 R: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
11486 L: netdev@vger.kernel.org
11487 L: linux-renesas-soc@vger.kernel.org
11488 F: Documentation/devicetree/bindings/net/renesas,*.txt
11489 F: Documentation/devicetree/bindings/net/sh_eth.txt
11490 F: drivers/net/ethernet/renesas/
11491 F: include/linux/sh_eth.h
11493 RENESAS R-CAR GYROADC DRIVER
11494 M: Marek Vasut <marek.vasut@gmail.com>
11495 L: linux-iio@vger.kernel.org
11497 F: drivers/iio/adc/rcar_gyro_adc.c
11499 RENESAS USB PHY DRIVER
11500 M: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
11501 L: linux-renesas-soc@vger.kernel.org
11503 F: drivers/phy/renesas/phy-rcar-gen3-usb*.c
11505 RESET CONTROLLER FRAMEWORK
11506 M: Philipp Zabel <p.zabel@pengutronix.de>
11507 T: git git://git.pengutronix.de/git/pza/linux
11510 F: Documentation/devicetree/bindings/reset/
11511 F: include/dt-bindings/reset/
11512 F: include/linux/reset.h
11513 F: include/linux/reset-controller.h
11516 M: Johannes Berg <johannes@sipsolutions.net>
11517 L: linux-wireless@vger.kernel.org
11518 W: http://wireless.kernel.org/
11519 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
11520 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
11522 F: Documentation/rfkill.txt
11526 M: Thomas Graf <tgraf@suug.ch>
11527 M: Herbert Xu <herbert@gondor.apana.org.au>
11528 L: netdev@vger.kernel.org
11530 F: lib/rhashtable.c
11531 F: include/linux/rhashtable.h
11533 RICOH R5C592 MEMORYSTICK DRIVER
11534 M: Maxim Levitsky <maximlevitsky@gmail.com>
11536 F: drivers/memstick/host/r592.*
11538 RICOH SMARTMEDIA/XD DRIVER
11539 M: Maxim Levitsky <maximlevitsky@gmail.com>
11541 F: drivers/mtd/nand/r852.c
11542 F: drivers/mtd/nand/r852.h
11544 RISC-V ARCHITECTURE
11545 M: Palmer Dabbelt <palmer@sifive.com>
11546 M: Albert Ou <albert@sifive.com>
11547 L: patches@groups.riscv.org
11548 T: git https://github.com/riscv/riscv-linux
11555 M: Stefan Achatz <erazor_de@users.sourceforge.net>
11556 W: http://sourceforge.net/projects/roccat/
11558 F: drivers/hid/hid-roccat*
11559 F: include/linux/hid-roccat*
11560 F: Documentation/ABI/*/sysfs-driver-hid-roccat*
11563 M: Jiri Pirko <jiri@resnulli.us>
11564 L: netdev@vger.kernel.org
11566 F: drivers/net/ethernet/rocker/
11570 W: http://www.comtrol.com
11572 F: Documentation/serial/rocket.txt
11573 F: drivers/tty/rocket*
11575 ROCKETPORT EXPRESS/INFINITY DRIVER
11576 M: Kevin Cernekee <cernekee@gmail.com>
11577 L: linux-serial@vger.kernel.org
11579 F: drivers/tty/serial/rp2.*
11581 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
11582 M: Marek Vasut <marek.vasut+renesas@gmail.com>
11583 L: linux-kernel@vger.kernel.org
11584 L: linux-renesas-soc@vger.kernel.org
11586 F: drivers/mfd/bd9571mwv.c
11587 F: drivers/regulator/bd9571mwv-regulator.c
11588 F: drivers/gpio/gpio-bd9571mwv.c
11589 F: include/linux/mfd/bd9571mwv.h
11590 F: Documentation/devicetree/bindings/mfd/bd9571mwv.txt
11593 M: Ralf Baechle <ralf@linux-mips.org>
11594 L: linux-hams@vger.kernel.org
11595 W: http://www.linux-ax25.org/
11597 F: include/net/rose.h
11598 F: include/uapi/linux/rose.h
11601 RTL2830 MEDIA DRIVER
11602 M: Antti Palosaari <crope@iki.fi>
11603 L: linux-media@vger.kernel.org
11604 W: https://linuxtv.org
11605 W: http://palosaari.fi/linux/
11606 Q: http://patchwork.linuxtv.org/project/linux-media/list/
11607 T: git git://linuxtv.org/anttip/media_tree.git
11609 F: drivers/media/dvb-frontends/rtl2830*
11611 RTL2832 MEDIA DRIVER
11612 M: Antti Palosaari <crope@iki.fi>
11613 L: linux-media@vger.kernel.org
11614 W: https://linuxtv.org
11615 W: http://palosaari.fi/linux/
11616 Q: http://patchwork.linuxtv.org/project/linux-media/list/
11617 T: git git://linuxtv.org/anttip/media_tree.git
11619 F: drivers/media/dvb-frontends/rtl2832*
11621 RTL2832_SDR MEDIA DRIVER
11622 M: Antti Palosaari <crope@iki.fi>
11623 L: linux-media@vger.kernel.org
11624 W: https://linuxtv.org
11625 W: http://palosaari.fi/linux/
11626 Q: http://patchwork.linuxtv.org/project/linux-media/list/
11627 T: git git://linuxtv.org/anttip/media_tree.git
11629 F: drivers/media/dvb-frontends/rtl2832_sdr*
11631 RTL8180 WIRELESS DRIVER
11632 L: linux-wireless@vger.kernel.org
11633 W: http://wireless.kernel.org/
11634 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
11636 F: drivers/net/wireless/realtek/rtl818x/rtl8180/
11638 RTL8187 WIRELESS DRIVER
11639 M: Herton Ronaldo Krzesinski <herton@canonical.com>
11640 M: Hin-Tak Leung <htl10@users.sourceforge.net>
11641 M: Larry Finger <Larry.Finger@lwfinger.net>
11642 L: linux-wireless@vger.kernel.org
11643 W: http://wireless.kernel.org/
11644 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
11646 F: drivers/net/wireless/realtek/rtl818x/rtl8187/
11648 RTL8192CE WIRELESS DRIVER
11649 M: Larry Finger <Larry.Finger@lwfinger.net>
11650 M: Chaoming Li <chaoming_li@realsil.com.cn>
11651 L: linux-wireless@vger.kernel.org
11652 W: http://wireless.kernel.org/
11653 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
11655 F: drivers/net/wireless/realtek/rtlwifi/
11656 F: drivers/net/wireless/realtek/rtlwifi/rtl8192ce/
11658 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
11659 M: Jes Sorensen <Jes.Sorensen@gmail.com>
11660 L: linux-wireless@vger.kernel.org
11661 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
11663 F: drivers/net/wireless/realtek/rtl8xxxu/
11665 S3 SAVAGE FRAMEBUFFER DRIVER
11666 M: Antonino Daplas <adaplas@gmail.com>
11667 L: linux-fbdev@vger.kernel.org
11669 F: drivers/video/fbdev/savage/
11672 M: Martin Schwidefsky <schwidefsky@de.ibm.com>
11673 M: Heiko Carstens <heiko.carstens@de.ibm.com>
11674 L: linux-s390@vger.kernel.org
11675 W: http://www.ibm.com/developerworks/linux/linux390/
11676 T: git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
11680 F: Documentation/s390/
11681 F: Documentation/driver-api/s390-drivers.rst
11683 S390 COMMON I/O LAYER
11684 M: Sebastian Ott <sebott@linux.vnet.ibm.com>
11685 M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
11686 L: linux-s390@vger.kernel.org
11687 W: http://www.ibm.com/developerworks/linux/linux390/
11689 F: drivers/s390/cio/
11692 M: Stefan Haberland <sth@linux.vnet.ibm.com>
11693 M: Jan Hoeppner <hoeppner@linux.vnet.ibm.com>
11694 L: linux-s390@vger.kernel.org
11695 W: http://www.ibm.com/developerworks/linux/linux390/
11697 F: drivers/s390/block/dasd*
11698 F: block/partitions/ibm.c
11701 M: Gerald Schaefer <gerald.schaefer@de.ibm.com>
11702 L: linux-s390@vger.kernel.org
11703 W: http://www.ibm.com/developerworks/linux/linux390/
11705 F: drivers/iommu/s390-iommu.c
11707 S390 IUCV NETWORK LAYER
11708 M: Julian Wiedmann <jwi@linux.vnet.ibm.com>
11709 M: Ursula Braun <ubraun@linux.vnet.ibm.com>
11710 L: linux-s390@vger.kernel.org
11711 W: http://www.ibm.com/developerworks/linux/linux390/
11713 F: drivers/s390/net/*iucv*
11714 F: include/net/iucv/
11717 S390 NETWORK DRIVERS
11718 M: Julian Wiedmann <jwi@linux.vnet.ibm.com>
11719 M: Ursula Braun <ubraun@linux.vnet.ibm.com>
11720 L: linux-s390@vger.kernel.org
11721 W: http://www.ibm.com/developerworks/linux/linux390/
11723 F: drivers/s390/net/
11726 M: Sebastian Ott <sebott@linux.vnet.ibm.com>
11727 M: Gerald Schaefer <gerald.schaefer@de.ibm.com>
11728 L: linux-s390@vger.kernel.org
11729 W: http://www.ibm.com/developerworks/linux/linux390/
11732 F: drivers/pci/hotplug/s390_pci_hpc.c
11734 S390 VFIO-CCW DRIVER
11735 M: Cornelia Huck <cohuck@redhat.com>
11736 M: Dong Jia Shi <bjsdjshi@linux.vnet.ibm.com>
11737 L: linux-s390@vger.kernel.org
11738 L: kvm@vger.kernel.org
11740 F: drivers/s390/cio/vfio_ccw*
11741 F: Documentation/s390/vfio-ccw.txt
11742 F: include/uapi/linux/vfio_ccw.h
11745 M: Harald Freudenberger <freude@de.ibm.com>
11746 L: linux-s390@vger.kernel.org
11747 W: http://www.ibm.com/developerworks/linux/linux390/
11749 F: drivers/s390/crypto/
11752 M: Steffen Maier <maier@linux.vnet.ibm.com>
11753 M: Benjamin Block <bblock@linux.vnet.ibm.com>
11754 L: linux-s390@vger.kernel.org
11755 W: http://www.ibm.com/developerworks/linux/linux390/
11757 F: drivers/s390/scsi/zfcp_*
11759 S3C24XX SD/MMC Driver
11760 M: Ben Dooks <ben-linux@fluff.org>
11761 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11763 F: drivers/mmc/host/s3cmci.*
11765 SAA6588 RDS RECEIVER DRIVER
11766 M: Hans Verkuil <hverkuil@xs4all.nl>
11767 L: linux-media@vger.kernel.org
11768 T: git git://linuxtv.org/media_tree.git
11769 W: https://linuxtv.org
11771 F: drivers/media/i2c/saa6588*
11773 SAA7134 VIDEO4LINUX DRIVER
11774 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
11775 M: Mauro Carvalho Chehab <mchehab@kernel.org>
11776 L: linux-media@vger.kernel.org
11777 W: https://linuxtv.org
11778 T: git git://linuxtv.org/media_tree.git
11780 F: Documentation/media/v4l-drivers/saa7134*
11781 F: drivers/media/pci/saa7134/
11783 SAA7146 VIDEO4LINUX-2 DRIVER
11784 M: Hans Verkuil <hverkuil@xs4all.nl>
11785 L: linux-media@vger.kernel.org
11786 T: git git://linuxtv.org/media_tree.git
11788 F: drivers/media/common/saa7146/
11789 F: drivers/media/pci/saa7146/
11790 F: include/media/saa7146*
11792 SAMSUNG AUDIO (ASoC) DRIVERS
11793 M: Krzysztof Kozlowski <krzk@kernel.org>
11794 M: Sangbeom Kim <sbkim73@samsung.com>
11795 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
11796 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
11798 F: sound/soc/samsung/
11800 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
11801 M: Krzysztof Kozlowski <krzk@kernel.org>
11802 L: linux-crypto@vger.kernel.org
11803 L: linux-samsung-soc@vger.kernel.org
11805 F: drivers/crypto/exynos-rng.c
11806 F: Documentation/devicetree/bindings/crypto/samsung,exynos-rng4.txt
11808 SAMSUNG FRAMEBUFFER DRIVER
11809 M: Jingoo Han <jingoohan1@gmail.com>
11810 L: linux-fbdev@vger.kernel.org
11812 F: drivers/video/fbdev/s3c-fb.c
11814 SAMSUNG LAPTOP DRIVER
11815 M: Corentin Chary <corentin.chary@gmail.com>
11816 L: platform-driver-x86@vger.kernel.org
11818 F: drivers/platform/x86/samsung-laptop.c
11820 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
11821 M: Sangbeom Kim <sbkim73@samsung.com>
11822 M: Krzysztof Kozlowski <krzk@kernel.org>
11823 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11824 L: linux-kernel@vger.kernel.org
11825 L: linux-samsung-soc@vger.kernel.org
11827 F: drivers/mfd/sec*.c
11828 F: drivers/regulator/s2m*.c
11829 F: drivers/regulator/s5m*.c
11830 F: drivers/clk/clk-s2mps11.c
11831 F: drivers/rtc/rtc-s5m.c
11832 F: include/linux/mfd/samsung/
11833 F: Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
11834 F: Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
11835 F: Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
11836 F: Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
11838 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
11839 M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
11840 L: linux-media@vger.kernel.org
11841 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
11843 F: drivers/media/platform/s3c-camif/
11844 F: include/media/drv-intf/s3c_camif.h
11846 SAMSUNG S3FWRN5 NFC DRIVER
11847 M: Robert Baldyga <r.baldyga@samsung.com>
11848 M: Krzysztof Opasiak <k.opasiak@samsung.com>
11849 L: linux-nfc@lists.01.org (moderated for non-subscribers)
11851 F: drivers/nfc/s3fwrn5
11853 SAMSUNG S5C73M3 CAMERA DRIVER
11854 M: Kyungmin Park <kyungmin.park@samsung.com>
11855 M: Andrzej Hajda <a.hajda@samsung.com>
11856 L: linux-media@vger.kernel.org
11858 F: drivers/media/i2c/s5c73m3/*
11860 SAMSUNG S5K5BAF CAMERA DRIVER
11861 M: Kyungmin Park <kyungmin.park@samsung.com>
11862 M: Andrzej Hajda <a.hajda@samsung.com>
11863 L: linux-media@vger.kernel.org
11865 F: drivers/media/i2c/s5k5baf.c
11867 SAMSUNG S5P Security SubSystem (SSS) DRIVER
11868 M: Krzysztof Kozlowski <krzk@kernel.org>
11869 M: Vladimir Zapolskiy <vz@mleia.com>
11870 L: linux-crypto@vger.kernel.org
11871 L: linux-samsung-soc@vger.kernel.org
11873 F: drivers/crypto/s5p-sss.c
11875 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
11876 M: Kyungmin Park <kyungmin.park@samsung.com>
11877 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
11878 L: linux-media@vger.kernel.org
11879 Q: https://patchwork.linuxtv.org/project/linux-media/list/
11881 F: drivers/media/platform/exynos4-is/
11883 SAMSUNG SOC CLOCK DRIVERS
11884 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
11885 M: Tomasz Figa <tomasz.figa@gmail.com>
11886 M: Chanwoo Choi <cw00.choi@samsung.com>
11888 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
11889 F: drivers/clk/samsung/
11890 F: include/dt-bindings/clock/exynos*.h
11891 F: Documentation/devicetree/bindings/clock/exynos*.txt
11893 SAMSUNG SPI DRIVERS
11894 M: Kukjin Kim <kgene@kernel.org>
11895 M: Krzysztof Kozlowski <krzk@kernel.org>
11896 M: Andi Shyti <andi.shyti@samsung.com>
11897 L: linux-spi@vger.kernel.org
11898 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
11900 F: Documentation/devicetree/bindings/spi/spi-samsung.txt
11901 F: drivers/spi/spi-s3c*
11902 F: include/linux/platform_data/spi-s3c64xx.h
11904 SAMSUNG SXGBE DRIVERS
11905 M: Byungho An <bh74.an@samsung.com>
11906 M: Girish K S <ks.giri@samsung.com>
11907 M: Vipul Pandya <vipul.pandya@samsung.com>
11909 L: netdev@vger.kernel.org
11910 F: drivers/net/ethernet/samsung/sxgbe/
11912 SAMSUNG THERMAL DRIVER
11913 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11914 L: linux-pm@vger.kernel.org
11915 L: linux-samsung-soc@vger.kernel.org
11917 T: git https://github.com/lmajewski/linux-samsung-thermal.git
11918 F: drivers/thermal/samsung/
11920 SAMSUNG USB2 PHY DRIVER
11921 M: Kamil Debski <kamil@wypas.org>
11922 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
11923 L: linux-kernel@vger.kernel.org
11925 F: Documentation/devicetree/bindings/phy/samsung-phy.txt
11926 F: Documentation/phy/samsung-usb2.txt
11927 F: drivers/phy/samsung/phy-exynos4210-usb2.c
11928 F: drivers/phy/samsung/phy-exynos4x12-usb2.c
11929 F: drivers/phy/samsung/phy-exynos5250-usb2.c
11930 F: drivers/phy/samsung/phy-s5pv210-usb2.c
11931 F: drivers/phy/samsung/phy-samsung-usb2.c
11932 F: drivers/phy/samsung/phy-samsung-usb2.h
11935 M: Zwane Mwaikambo <zwanem@gmail.com>
11937 F: drivers/watchdog/sc1200wdt.c
11940 M: Ingo Molnar <mingo@redhat.com>
11941 M: Peter Zijlstra <peterz@infradead.org>
11942 L: linux-kernel@vger.kernel.org
11943 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
11946 F: include/linux/sched.h
11947 F: include/uapi/linux/sched.h
11948 F: include/linux/wait.h
11951 M: Chen Liqin <liqin.linux@gmail.com>
11952 M: Lennox Wu <lennox.wu@gmail.com>
11953 W: http://www.sunplus.com
11957 SCR24X CHIP CARD INTERFACE DRIVER
11958 M: Lubomir Rintel <lkundrak@v3.sk>
11960 F: drivers/char/pcmcia/scr24x_cs.c
11963 M: Jens Axboe <axboe@kernel.dk>
11964 L: linux-scsi@vger.kernel.org
11965 W: http://www.kernel.dk
11967 F: drivers/scsi/sr*
11969 SCSI RDMA PROTOCOL (SRP) INITIATOR
11970 M: Bart Van Assche <bart.vanassche@sandisk.com>
11971 L: linux-rdma@vger.kernel.org
11973 W: http://www.openfabrics.org
11974 Q: http://patchwork.kernel.org/project/linux-rdma/list/
11975 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
11976 F: drivers/infiniband/ulp/srp/
11977 F: include/scsi/srp.h
11980 M: Doug Gilbert <dgilbert@interlog.com>
11981 L: linux-scsi@vger.kernel.org
11982 W: http://sg.danny.cz/sg
11984 F: Documentation/scsi/scsi-generic.txt
11985 F: drivers/scsi/sg.c
11986 F: include/scsi/sg.h
11989 M: "James E.J. Bottomley" <jejb@linux.vnet.ibm.com>
11990 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
11991 M: "Martin K. Petersen" <martin.petersen@oracle.com>
11992 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
11993 L: linux-scsi@vger.kernel.org
11995 F: Documentation/devicetree/bindings/scsi/
12000 M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
12001 L: linux-scsi@vger.kernel.org
12003 F: Documentation/scsi/st.txt
12004 F: drivers/scsi/st.*
12005 F: drivers/scsi/st_*.h
12008 M: Vlad Yasevich <vyasevich@gmail.com>
12009 M: Neil Horman <nhorman@tuxdriver.com>
12010 L: linux-sctp@vger.kernel.org
12011 W: http://lksctp.sourceforge.net
12013 F: Documentation/networking/sctp.txt
12014 F: include/linux/sctp.h
12015 F: include/uapi/linux/sctp.h
12016 F: include/net/sctp/
12020 M: Jim Cromie <jim.cromie@gmail.com>
12022 F: Documentation/i2c/busses/scx200_acb
12023 F: arch/x86/platform/scx200/
12024 F: drivers/watchdog/scx200_wdt.c
12025 F: drivers/i2c/busses/scx200*
12026 F: drivers/mtd/maps/scx200_docflash.c
12027 F: include/linux/scx200.h
12030 M: Jim Cromie <jim.cromie@gmail.com>
12032 F: drivers/char/scx200_gpio.c
12033 F: include/linux/scx200_gpio.h
12035 SCx200 HRT CLOCKSOURCE DRIVER
12036 M: Jim Cromie <jim.cromie@gmail.com>
12038 F: drivers/clocksource/scx200_hrt.c
12040 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
12041 M: Sascha Sommer <saschasommer@freenet.de>
12042 L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
12044 F: drivers/mmc/host/sdricoh_cs.c
12047 M: Kees Cook <keescook@chromium.org>
12048 R: Andy Lutomirski <luto@amacapital.net>
12049 R: Will Drewry <wad@chromium.org>
12050 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
12052 F: kernel/seccomp.c
12053 F: include/uapi/linux/seccomp.h
12054 F: include/linux/seccomp.h
12055 F: tools/testing/selftests/seccomp/*
12056 F: tools/testing/selftests/kselftest_harness.h
12057 F: Documentation/userspace-api/seccomp_filter.rst
12058 K: \bsecure_computing
12061 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
12062 M: Al Cooper <alcooperx@gmail.com>
12063 L: linux-mmc@vger.kernel.org
12064 L: bcm-kernel-feedback-list@broadcom.com
12066 F: drivers/mmc/host/sdhci-brcmstb*
12068 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
12069 M: Adrian Hunter <adrian.hunter@intel.com>
12070 L: linux-mmc@vger.kernel.org
12071 T: git git://git.infradead.org/users/ahunter/linux-sdhci.git
12073 F: drivers/mmc/host/sdhci*
12074 F: include/linux/mmc/sdhci*
12076 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
12077 M: Ben Dooks <ben-linux@fluff.org>
12078 M: Jaehoon Chung <jh80.chung@samsung.com>
12079 L: linux-mmc@vger.kernel.org
12081 F: drivers/mmc/host/sdhci-s3c*
12083 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
12084 M: Viresh Kumar <vireshk@kernel.org>
12085 L: linux-mmc@vger.kernel.org
12087 F: drivers/mmc/host/sdhci-spear.c
12089 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
12090 M: Kishon Vijay Abraham I <kishon@ti.com>
12091 L: linux-mmc@vger.kernel.org
12093 F: drivers/mmc/host/sdhci-omap.c
12095 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
12096 M: Scott Bauer <scott.bauer@intel.com>
12097 M: Jonathan Derrick <jonathan.derrick@intel.com>
12098 L: linux-block@vger.kernel.org
12101 F: block/opal_proto.h
12102 F: include/linux/sed*
12103 F: include/uapi/linux/sed*
12106 M: Security Officers <security@kernel.org>
12110 M: James Morris <james.l.morris@oracle.com>
12111 M: "Serge E. Hallyn" <serge@hallyn.com>
12112 L: linux-security-module@vger.kernel.org (suggested Cc:)
12113 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
12114 W: http://kernsec.org/
12118 SELINUX SECURITY MODULE
12119 M: Paul Moore <paul@paul-moore.com>
12120 M: Stephen Smalley <sds@tycho.nsa.gov>
12121 M: Eric Paris <eparis@parisplace.org>
12122 L: selinux@tycho.nsa.gov (moderated for non-subscribers)
12123 W: https://selinuxproject.org
12124 W: https://github.com/SELinuxProject
12125 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
12127 F: include/linux/selinux*
12128 F: security/selinux/
12129 F: scripts/selinux/
12130 F: Documentation/admin-guide/LSM/SELinux.rst
12133 M: Jiri Slaby <jirislaby@gmail.com>
12135 F: drivers/misc/phantom.c
12136 F: include/uapi/linux/phantom.h
12139 M: Rob Herring <robh@kernel.org>
12140 L: linux-serial@vger.kernel.org
12142 F: Documentation/devicetree/bindings/serial/slave-device.txt
12143 F: drivers/tty/serdev/
12144 F: include/linux/serdev.h
12147 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
12148 L: linux-serial@vger.kernel.org
12150 F: Documentation/devicetree/bindings/serial/
12151 F: drivers/tty/serial/
12154 M: Sean Young <sean@mess.org>
12155 L: linux-media@vger.kernel.org
12157 F: drivers/media/rc/serial_ir.c
12160 M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
12161 M: Edward Cree <ecree@solarflare.com>
12162 M: Bert Kenward <bkenward@solarflare.com>
12163 L: netdev@vger.kernel.org
12165 F: drivers/net/ethernet/sfc/
12168 M: Dimitri Sivanich <sivanich@sgi.com>
12170 F: drivers/misc/sgi-gru/
12172 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
12173 M: Pat Gefre <pfg@sgi.com>
12174 L: linux-ia64@vger.kernel.org
12176 F: Documentation/ia64/serial.txt
12177 F: drivers/tty/serial/ioc?_serial.c
12178 F: include/linux/ioc?.h
12180 SGI XP/XPC/XPNET DRIVER
12181 M: Cliff Whickman <cpw@sgi.com>
12182 M: Robin Holt <robinmholt@gmail.com>
12184 F: drivers/misc/sgi-xp/
12186 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
12187 M: Ursula Braun <ubraun@linux.vnet.ibm.com>
12188 L: linux-s390@vger.kernel.org
12189 W: http://www.ibm.com/developerworks/linux/linux390/
12193 SH_VEU V4L2 MEM2MEM DRIVER
12194 L: linux-media@vger.kernel.org
12196 F: drivers/media/platform/sh_veu.c
12198 SH_VOU V4L2 OUTPUT DRIVER
12199 L: linux-media@vger.kernel.org
12201 F: drivers/media/platform/sh_vou.c
12202 F: include/media/drv-intf/sh_vou.h
12204 SI2157 MEDIA DRIVER
12205 M: Antti Palosaari <crope@iki.fi>
12206 L: linux-media@vger.kernel.org
12207 W: https://linuxtv.org
12208 W: http://palosaari.fi/linux/
12209 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12210 T: git git://linuxtv.org/anttip/media_tree.git
12212 F: drivers/media/tuners/si2157*
12214 SI2168 MEDIA DRIVER
12215 M: Antti Palosaari <crope@iki.fi>
12216 L: linux-media@vger.kernel.org
12217 W: https://linuxtv.org
12218 W: http://palosaari.fi/linux/
12219 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12220 T: git git://linuxtv.org/anttip/media_tree.git
12222 F: drivers/media/dvb-frontends/si2168*
12224 SI470X FM RADIO RECEIVER I2C DRIVER
12225 M: Hans Verkuil <hverkuil@xs4all.nl>
12226 L: linux-media@vger.kernel.org
12227 T: git git://linuxtv.org/media_tree.git
12228 W: https://linuxtv.org
12230 F: drivers/media/radio/si470x/radio-si470x-i2c.c
12232 SI470X FM RADIO RECEIVER USB DRIVER
12233 M: Hans Verkuil <hverkuil@xs4all.nl>
12234 L: linux-media@vger.kernel.org
12235 T: git git://linuxtv.org/media_tree.git
12236 W: https://linuxtv.org
12238 F: drivers/media/radio/si470x/radio-si470x-common.c
12239 F: drivers/media/radio/si470x/radio-si470x.h
12240 F: drivers/media/radio/si470x/radio-si470x-usb.c
12242 SI4713 FM RADIO TRANSMITTER I2C DRIVER
12243 M: Eduardo Valentin <edubezval@gmail.com>
12244 L: linux-media@vger.kernel.org
12245 T: git git://linuxtv.org/media_tree.git
12246 W: https://linuxtv.org
12248 F: drivers/media/radio/si4713/si4713.?
12250 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
12251 M: Eduardo Valentin <edubezval@gmail.com>
12252 L: linux-media@vger.kernel.org
12253 T: git git://linuxtv.org/media_tree.git
12254 W: https://linuxtv.org
12256 F: drivers/media/radio/si4713/radio-platform-si4713.c
12258 SI4713 FM RADIO TRANSMITTER USB DRIVER
12259 M: Hans Verkuil <hverkuil@xs4all.nl>
12260 L: linux-media@vger.kernel.org
12261 T: git git://linuxtv.org/media_tree.git
12262 W: https://linuxtv.org
12264 F: drivers/media/radio/si4713/radio-usb-si4713.c
12267 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
12268 M: Mauro Carvalho Chehab <mchehab@kernel.org>
12269 L: linux-media@vger.kernel.org
12270 W: https://linuxtv.org
12271 T: git git://linuxtv.org/media_tree.git
12273 F: drivers/media/common/siano/
12274 F: drivers/media/usb/siano/
12275 F: drivers/media/usb/siano/
12276 F: drivers/media/mmc/siano/
12278 SILEAD TOUCHSCREEN DRIVER
12279 M: Hans de Goede <hdegoede@redhat.com>
12280 L: linux-input@vger.kernel.org
12281 L: platform-driver-x86@vger.kernel.org
12283 F: drivers/input/touchscreen/silead.c
12284 F: drivers/platform/x86/silead_dmi.c
12286 SILICON MOTION SM712 FRAME BUFFER DRIVER
12287 M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
12288 M: Teddy Wang <teddy.wang@siliconmotion.com>
12289 M: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
12290 L: linux-fbdev@vger.kernel.org
12292 F: drivers/video/fbdev/sm712*
12293 F: Documentation/fb/sm712fb.txt
12295 SIMPLE FIRMWARE INTERFACE (SFI)
12296 M: Len Brown <lenb@kernel.org>
12297 L: sfi-devel@simplefirmware.org
12298 W: http://simplefirmware.org/
12299 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
12301 F: arch/x86/platform/sfi/
12303 F: include/linux/sfi*.h
12306 M: Hans de Goede <hdegoede@redhat.com>
12307 L: linux-fbdev@vger.kernel.org
12309 F: Documentation/devicetree/bindings/display/simple-framebuffer.txt
12310 F: drivers/video/fbdev/simplefb.c
12311 F: include/linux/platform_data/simplefb.h
12313 SIMTEC EB110ATX (Chalice CATS)
12315 P: Vincent Sanders <vince@simtec.co.uk>
12316 M: Simtec Linux Team <linux@simtec.co.uk>
12317 W: http://www.simtec.co.uk/products/EB110ATX/
12320 SIMTEC EB2410ITX (BAST)
12322 P: Vincent Sanders <vince@simtec.co.uk>
12323 M: Simtec Linux Team <linux@simtec.co.uk>
12324 W: http://www.simtec.co.uk/products/EB2410ITX/
12326 F: arch/arm/mach-s3c24xx/mach-bast.c
12327 F: arch/arm/mach-s3c24xx/bast-ide.c
12328 F: arch/arm/mach-s3c24xx/bast-irq.c
12330 SIPHASH PRF ROUTINES
12331 M: Jason A. Donenfeld <Jason@zx2c4.com>
12334 F: lib/test_siphash.c
12335 F: include/linux/siphash.h
12337 SIS 190 ETHERNET DRIVER
12338 M: Francois Romieu <romieu@fr.zoreil.com>
12339 L: netdev@vger.kernel.org
12341 F: drivers/net/ethernet/sis/sis190.c
12343 SIS 900/7016 FAST ETHERNET DRIVER
12344 M: Daniele Venzano <venza@brownhat.org>
12345 W: http://www.brownhat.org/sis900.html
12346 L: netdev@vger.kernel.org
12348 F: drivers/net/ethernet/sis/sis900.*
12350 SIS FRAMEBUFFER DRIVER
12351 M: Thomas Winischhofer <thomas@winischhofer.net>
12352 W: http://www.winischhofer.net/linuxsisvga.shtml
12354 F: Documentation/fb/sisfb.txt
12355 F: drivers/video/fbdev/sis/
12356 F: include/video/sisfb.h
12359 M: Thomas Winischhofer <thomas@winischhofer.net>
12360 W: http://www.winischhofer.at/linuxsisusbvga.shtml
12362 F: drivers/usb/misc/sisusbvga/
12365 M: Christoph Lameter <cl@linux.com>
12366 M: Pekka Enberg <penberg@kernel.org>
12367 M: David Rientjes <rientjes@google.com>
12368 M: Joonsoo Kim <iamjoonsoo.kim@lge.com>
12369 M: Andrew Morton <akpm@linux-foundation.org>
12370 L: linux-mm@kvack.org
12372 F: include/linux/sl?b*.h
12375 SLEEPABLE READ-COPY UPDATE (SRCU)
12376 M: Lai Jiangshan <jiangshanlai@gmail.com>
12377 M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
12378 M: Josh Triplett <josh@joshtriplett.org>
12379 R: Steven Rostedt <rostedt@goodmis.org>
12380 R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
12381 L: linux-kernel@vger.kernel.org
12382 W: http://www.rdrop.com/users/paulmck/RCU/
12384 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
12385 F: include/linux/srcu.h
12386 F: kernel/rcu/srcu.c
12388 SMACK SECURITY MODULE
12389 M: Casey Schaufler <casey@schaufler-ca.com>
12390 L: linux-security-module@vger.kernel.org
12391 W: http://schaufler-ca.com
12392 T: git git://github.com/cschaufler/smack-next
12394 F: Documentation/admin-guide/LSM/Smack.rst
12397 SMC91x ETHERNET DRIVER
12398 M: Nicolas Pitre <nico@fluxnic.net>
12400 F: drivers/net/ethernet/smsc/smc91x.*
12402 SMIA AND SMIA++ IMAGE SENSOR DRIVER
12403 M: Sakari Ailus <sakari.ailus@iki.fi>
12404 L: linux-media@vger.kernel.org
12406 F: drivers/media/i2c/smiapp/
12407 F: include/media/i2c/smiapp.h
12408 F: drivers/media/i2c/smiapp-pll.c
12409 F: drivers/media/i2c/smiapp-pll.h
12410 F: include/uapi/linux/smiapp.h
12411 F: Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
12413 SMM665 HARDWARE MONITOR DRIVER
12414 M: Guenter Roeck <linux@roeck-us.net>
12415 L: linux-hwmon@vger.kernel.org
12417 F: Documentation/hwmon/smm665
12418 F: drivers/hwmon/smm665.c
12420 SMSC EMC2103 HARDWARE MONITOR DRIVER
12421 M: Steve Glendinning <steve.glendinning@shawell.net>
12422 L: linux-hwmon@vger.kernel.org
12424 F: Documentation/hwmon/emc2103
12425 F: drivers/hwmon/emc2103.c
12427 SMSC SCH5627 HARDWARE MONITOR DRIVER
12428 M: Hans de Goede <hdegoede@redhat.com>
12429 L: linux-hwmon@vger.kernel.org
12431 F: Documentation/hwmon/sch5627
12432 F: drivers/hwmon/sch5627.c
12434 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
12435 M: Steve Glendinning <steve.glendinning@shawell.net>
12436 L: linux-fbdev@vger.kernel.org
12438 F: drivers/video/fbdev/smscufx.c
12440 SMSC47B397 HARDWARE MONITOR DRIVER
12441 M: Jean Delvare <jdelvare@suse.com>
12442 L: linux-hwmon@vger.kernel.org
12444 F: Documentation/hwmon/smsc47b397
12445 F: drivers/hwmon/smsc47b397.c
12447 SMSC911x ETHERNET DRIVER
12448 M: Steve Glendinning <steve.glendinning@shawell.net>
12449 L: netdev@vger.kernel.org
12451 F: include/linux/smsc911x.h
12452 F: drivers/net/ethernet/smsc/smsc911x.*
12454 SMSC9420 PCI ETHERNET DRIVER
12455 M: Steve Glendinning <steve.glendinning@shawell.net>
12456 L: netdev@vger.kernel.org
12458 F: drivers/net/ethernet/smsc/smsc9420.*
12460 SOC-CAMERA V4L2 SUBSYSTEM
12461 M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
12462 L: linux-media@vger.kernel.org
12463 T: git git://linuxtv.org/media_tree.git
12465 F: include/media/soc*
12466 F: drivers/media/i2c/soc_camera/
12467 F: drivers/media/platform/soc_camera/
12469 SOEKRIS NET48XX LED SUPPORT
12470 M: Chris Boot <bootc@bootc.net>
12472 F: drivers/leds/leds-net48xx.c
12474 SOFT-ROCE DRIVER (rxe)
12475 M: Moni Shoua <monis@mellanox.com>
12476 L: linux-rdma@vger.kernel.org
12478 W: https://github.com/SoftRoCE/rxe-dev/wiki/rxe-dev:-Home
12479 Q: http://patchwork.kernel.org/project/linux-rdma/list/
12480 F: drivers/infiniband/sw/rxe/
12481 F: include/uapi/rdma/rdma_user_rxe.h
12483 SOFTLOGIC 6x10 MPEG CODEC
12484 M: Bluecherry Maintainers <maintainers@bluecherrydvr.com>
12485 M: Anton Sviridenko <anton@corp.bluecherry.net>
12486 M: Andrey Utkin <andrey.utkin@corp.bluecherry.net>
12487 M: Andrey Utkin <andrey_utkin@fastmail.com>
12488 M: Ismael Luceno <ismael@iodev.co.uk>
12489 L: linux-media@vger.kernel.org
12491 F: drivers/media/pci/solo6x10/
12493 SOFTWARE RAID (Multiple Disks) SUPPORT
12494 M: Shaohua Li <shli@kernel.org>
12495 L: linux-raid@vger.kernel.org
12496 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shli/md.git
12498 F: drivers/md/Makefile
12499 F: drivers/md/Kconfig
12501 F: drivers/md/raid*
12502 F: include/linux/raid/
12503 F: include/uapi/linux/raid/
12505 SONIC NETWORK DRIVER
12506 M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12507 L: netdev@vger.kernel.org
12509 F: drivers/net/ethernet/natsemi/sonic.*
12511 SONICS SILICON BACKPLANE DRIVER (SSB)
12512 M: Michael Buesch <m@bues.ch>
12513 L: linux-wireless@vger.kernel.org
12516 F: include/linux/ssb/
12518 SONY MEMORYSTICK CARD SUPPORT
12519 M: Alex Dubov <oakad@yahoo.com>
12520 W: http://tifmxx.berlios.de/
12522 F: drivers/memstick/host/tifm_ms.c
12524 SONY MEMORYSTICK STANDARD SUPPORT
12525 M: Maxim Levitsky <maximlevitsky@gmail.com>
12527 F: drivers/memstick/core/ms_block.*
12529 SONY VAIO CONTROL DEVICE DRIVER
12530 M: Mattia Dongili <malattia@linux.it>
12531 L: platform-driver-x86@vger.kernel.org
12532 W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
12534 F: Documentation/laptops/sony-laptop.txt
12535 F: drivers/char/sonypi.c
12536 F: drivers/platform/x86/sony-laptop.c
12537 F: include/linux/sony-laptop.h
12540 M: Jaroslav Kysela <perex@perex.cz>
12541 M: Takashi Iwai <tiwai@suse.com>
12542 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
12543 W: http://www.alsa-project.org/
12544 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
12545 T: git git://git.alsa-project.org/alsa-kernel.git
12546 Q: http://patchwork.kernel.org/project/alsa-devel/list/
12548 F: Documentation/sound/
12550 F: include/uapi/sound/
12553 SOUND - COMPRESSED AUDIO
12554 M: Vinod Koul <vinod.koul@intel.com>
12555 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
12556 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
12558 F: Documentation/sound/alsa/compress_offload.txt
12559 F: include/sound/compress_driver.h
12560 F: include/uapi/sound/compress_*
12561 F: sound/core/compress_offload.c
12562 F: sound/soc/soc-compress.c
12564 SOUND - DMAENGINE HELPERS
12565 M: Lars-Peter Clausen <lars@metafoo.de>
12567 F: include/sound/dmaengine_pcm.h
12568 F: sound/core/pcm_dmaengine.c
12569 F: sound/soc/soc-generic-dmaengine-pcm.c
12571 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
12572 M: Liam Girdwood <lgirdwood@gmail.com>
12573 M: Mark Brown <broonie@kernel.org>
12574 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
12575 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
12576 W: http://alsa-project.org/main/index.php/ASoC
12578 F: Documentation/devicetree/bindings/sound/
12579 F: Documentation/sound/alsa/soc/
12581 F: include/sound/soc*
12584 M: Olli Salonen <olli.salonen@iki.fi>
12585 L: linux-media@vger.kernel.org
12586 W: https://linuxtv.org
12587 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12589 F: drivers/media/dvb-frontends/sp2*
12591 SPARC + UltraSPARC (sparc/sparc64)
12592 M: "David S. Miller" <davem@davemloft.net>
12593 L: sparclinux@vger.kernel.org
12594 Q: http://patchwork.ozlabs.org/project/sparclinux/list/
12595 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
12596 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
12601 SPARC SERIAL DRIVERS
12602 M: "David S. Miller" <davem@davemloft.net>
12603 L: sparclinux@vger.kernel.org
12604 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
12605 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
12607 F: include/linux/sunserialcore.h
12608 F: drivers/tty/serial/suncore.c
12609 F: drivers/tty/serial/sunhv.c
12610 F: drivers/tty/serial/sunsab.c
12611 F: drivers/tty/serial/sunsab.h
12612 F: drivers/tty/serial/sunsu.c
12613 F: drivers/tty/serial/sunzilog.c
12614 F: drivers/tty/serial/sunzilog.h
12615 F: drivers/tty/vcc.c
12618 M: "Christopher Li" <sparse@chrisli.org>
12619 L: linux-sparse@vger.kernel.org
12620 W: https://sparse.wiki.kernel.org/
12621 T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
12622 T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
12624 F: include/linux/compiler.h
12626 SPEAR CLOCK FRAMEWORK SUPPORT
12627 M: Viresh Kumar <vireshk@kernel.org>
12628 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12629 W: http://www.st.com/spear
12631 F: drivers/clk/spear/
12633 SPEAR PLATFORM SUPPORT
12634 M: Viresh Kumar <vireshk@kernel.org>
12635 M: Shiraz Hashim <shiraz.linux.kernel@gmail.com>
12636 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12637 W: http://www.st.com/spear
12639 F: arch/arm/boot/dts/spear*
12640 F: arch/arm/mach-spear/
12643 M: Cyrille Pitchen <cyrille.pitchen@wedev4u.fr>
12644 M: Marek Vasut <marek.vasut@gmail.com>
12645 L: linux-mtd@lists.infradead.org
12646 W: http://www.linux-mtd.infradead.org/
12647 Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
12648 T: git git://git.infradead.org/linux-mtd.git spi-nor/fixes
12649 T: git git://git.infradead.org/l2-mtd.git spi-nor/next
12651 F: drivers/mtd/spi-nor/
12652 F: include/linux/mtd/spi-nor.h
12655 M: Mark Brown <broonie@kernel.org>
12656 L: linux-spi@vger.kernel.org
12657 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
12658 Q: http://patchwork.kernel.org/project/spi-devel-general/list/
12660 F: Documentation/devicetree/bindings/spi/
12661 F: Documentation/spi/
12663 F: include/linux/spi/
12664 F: include/uapi/linux/spi/
12667 SPIDERNET NETWORK DRIVER for CELL
12668 M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
12669 L: netdev@vger.kernel.org
12671 F: Documentation/networking/spider_net.txt
12672 F: drivers/net/ethernet/toshiba/spider_net*
12675 R: Stephen Boyd <sboyd@codeaurora.org>
12676 L: linux-arm-msm@vger.kernel.org
12677 F: Documentation/devicetree/bindings/spmi/
12679 F: include/dt-bindings/spmi/spmi.h
12680 F: include/linux/spmi.h
12681 F: include/trace/events/spmi.h
12684 M: Jeremy Kerr <jk@ozlabs.org>
12685 L: linuxppc-dev@lists.ozlabs.org
12686 W: http://www.ibm.com/developerworks/power/cell/
12688 F: Documentation/filesystems/spufs.txt
12689 F: arch/powerpc/platforms/cell/spufs/
12691 SQUASHFS FILE SYSTEM
12692 M: Phillip Lougher <phillip@squashfs.org.uk>
12693 L: squashfs-devel@lists.sourceforge.net (subscribers-only)
12694 W: http://squashfs.org.uk
12695 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
12697 F: Documentation/filesystems/squashfs.txt
12700 SRM (Alpha) environment access
12701 M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
12703 F: arch/alpha/kernel/srm_env.c
12706 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
12707 L: stable@vger.kernel.org
12709 F: Documentation/process/stable-kernel-rules.rst
12712 M: Ian Abbott <abbotti@mev.co.uk>
12713 M: H Hartley Sweeten <hsweeten@visionengravers.com>
12715 F: drivers/staging/comedi/
12717 STAGING - FLARION FT1000 DRIVERS
12718 M: Marek Belisko <marek.belisko@gmail.com>
12720 F: drivers/staging/ft1000/
12722 STAGING - INDUSTRIAL IO
12723 M: Jonathan Cameron <jic23@kernel.org>
12724 L: linux-iio@vger.kernel.org
12726 F: Documentation/devicetree/bindings/staging/iio/
12727 F: drivers/staging/iio/
12729 STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
12730 M: Jarod Wilson <jarod@wilsonet.com>
12731 W: http://www.lirc.org/
12733 F: drivers/staging/media/lirc/
12735 STAGING - LUSTRE PARALLEL FILESYSTEM
12736 M: Oleg Drokin <oleg.drokin@intel.com>
12737 M: Andreas Dilger <andreas.dilger@intel.com>
12738 M: James Simmons <jsimmons@infradead.org>
12739 L: lustre-devel@lists.lustre.org (moderated for non-subscribers)
12740 W: http://wiki.lustre.org/
12742 F: drivers/staging/lustre
12744 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
12745 M: Marc Dietrich <marvin24@gmx.de>
12746 L: ac100@lists.launchpad.net (moderated for non-subscribers)
12747 L: linux-tegra@vger.kernel.org
12749 F: drivers/staging/nvec/
12751 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
12752 M: Jens Frederich <jfrederich@gmail.com>
12753 M: Daniel Drake <dsd@laptop.org>
12754 M: Jon Nettleton <jon.nettleton@gmail.com>
12755 W: http://wiki.laptop.org/go/DCON
12757 F: drivers/staging/olpc_dcon/
12759 STAGING - REALTEK RTL8712U DRIVERS
12760 M: Larry Finger <Larry.Finger@lwfinger.net>
12761 M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
12763 F: drivers/staging/rtl8712/
12765 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
12766 M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
12767 M: Teddy Wang <teddy.wang@siliconmotion.com>
12768 M: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
12769 L: linux-fbdev@vger.kernel.org
12771 F: drivers/staging/sm750fb/
12773 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
12774 M: William Hubbs <w.d.hubbs@gmail.com>
12775 M: Chris Brannon <chris@the-brannons.com>
12776 M: Kirk Reiser <kirk@reisers.ca>
12777 M: Samuel Thibault <samuel.thibault@ens-lyon.org>
12778 L: speakup@linux-speakup.org
12779 W: http://www.linux-speakup.org/
12781 F: drivers/staging/speakup/
12783 STAGING - VIA VT665X DRIVERS
12784 M: Forest Bond <forest@alittletooquiet.net>
12786 F: drivers/staging/vt665?/
12788 STAGING - WILC1000 WIFI DRIVER
12789 M: Aditya Shankar <aditya.shankar@microchip.com>
12790 M: Ganesh Krishna <ganesh.krishna@microchip.com>
12791 L: linux-wireless@vger.kernel.org
12793 F: drivers/staging/wilc1000/
12795 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
12796 M: Arnaud Patard <arnaud.patard@rtp-net.org>
12798 F: drivers/staging/xgifb/
12801 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
12802 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
12803 L: devel@driverdev.osuosl.org
12805 F: drivers/staging/
12807 STARFIRE/DURALAN NETWORK DRIVER
12808 M: Ion Badulescu <ionut@badula.org>
12810 F: drivers/net/ethernet/adaptec/starfire*
12812 STEC S1220 SKD DRIVER
12813 M: Bart Van Assche <bart.vanassche@wdc.com>
12814 L: linux-block@vger.kernel.org
12816 F: drivers/block/skd*[ch]
12819 M: Benjamin Gaignard <benjamin.gaignard@linaro.org>
12821 F: drivers/staging/media/st-cec/
12822 F: Documentation/devicetree/bindings/media/stih-cec.txt
12824 STK1160 USB VIDEO CAPTURE DRIVER
12825 M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
12826 L: linux-media@vger.kernel.org
12827 T: git git://linuxtv.org/media_tree.git
12829 F: drivers/media/usb/stk1160/
12831 STMMAC ETHERNET DRIVER
12832 M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
12833 M: Alexandre Torgue <alexandre.torgue@st.com>
12834 L: netdev@vger.kernel.org
12835 W: http://www.stlinux.com
12837 F: drivers/net/ethernet/stmicro/stmmac/
12840 M: Sam Creasey <sammy@sammy.net>
12841 W: http://sammy.net/sun3/
12843 F: arch/m68k/kernel/*sun3*
12844 F: arch/m68k/sun3*/
12845 F: arch/m68k/include/asm/sun3*
12846 F: drivers/net/ethernet/i825xx/sun3*
12848 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
12849 M: Hans de Goede <hdegoede@redhat.com>
12850 L: linux-input@vger.kernel.org
12852 F: Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
12853 F: drivers/input/keyboard/sun4i-lradc-keys.c
12855 SUNDANCE NETWORK DRIVER
12856 M: Denis Kirjanov <kda@linux-powerpc.org>
12857 L: netdev@vger.kernel.org
12859 F: drivers/net/ethernet/dlink/sundance.c
12862 M: Yoshinori Sato <ysato@users.sourceforge.jp>
12863 M: Rich Felker <dalias@libc.org>
12864 L: linux-sh@vger.kernel.org
12865 Q: http://patchwork.kernel.org/project/linux-sh/list/
12867 F: Documentation/sh/
12872 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
12873 M: Len Brown <len.brown@intel.com>
12874 M: Pavel Machek <pavel@ucw.cz>
12875 L: linux-pm@vger.kernel.org
12876 B: https://bugzilla.kernel.org
12878 F: Documentation/power/
12879 F: arch/x86/kernel/acpi/
12880 F: drivers/base/power/
12882 F: include/linux/suspend.h
12883 F: include/linux/freezer.h
12884 F: include/linux/pm.h
12887 M: Martin Mares <mj@ucw.cz>
12888 L: linux-video@atrey.karlin.mff.cuni.cz
12890 F: Documentation/svga.txt
12891 F: arch/x86/boot/video*
12894 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
12895 L: linux-kernel@vger.kernel.org
12896 T: git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
12899 F: arch/*/kernel/pci-swiotlb.c
12900 F: include/linux/swiotlb.h
12903 M: Jiri Pirko <jiri@resnulli.us>
12904 M: Ivan Vecera <ivecera@redhat.com>
12905 L: netdev@vger.kernel.org
12908 F: include/net/switchdev.h
12910 SYNC FILE FRAMEWORK
12911 M: Sumit Semwal <sumit.semwal@linaro.org>
12912 R: Gustavo Padovan <gustavo@padovan.org>
12914 L: linux-media@vger.kernel.org
12915 L: dri-devel@lists.freedesktop.org
12916 F: drivers/dma-buf/sync_*
12917 F: drivers/dma-buf/dma-fence*
12918 F: drivers/dma-buf/sw_sync.c
12919 F: include/linux/sync_file.h
12920 F: include/uapi/linux/sync_file.h
12921 F: Documentation/sync_file.txt
12922 T: git git://anongit.freedesktop.org/drm/drm-misc
12924 SYNOPSYS ARC ARCHITECTURE
12925 M: Vineet Gupta <vgupta@synopsys.com>
12926 L: linux-snps-arc@lists.infradead.org
12929 F: Documentation/devicetree/bindings/arc/*
12930 F: Documentation/devicetree/bindings/interrupt-controller/snps,arc*
12931 F: drivers/clocksource/arc_timer.c
12932 F: drivers/tty/serial/arc_uart.c
12933 T: git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
12935 SYNOPSYS ARC HSDK SDP pll clock driver
12936 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
12938 F: drivers/clk/clk-hsdk-pll.c
12939 F: Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
12941 SYNOPSYS ARC SDP clock driver
12942 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
12944 F: drivers/clk/axs10x/*
12945 F: Documentation/devicetree/bindings/clock/snps,pll-clock.txt
12947 SYNOPSYS ARC SDP platform support
12948 M: Alexey Brodkin <abrodkin@synopsys.com>
12950 F: arch/arc/plat-axs10x
12951 F: arch/arc/boot/dts/ax*
12952 F: Documentation/devicetree/bindings/arc/axs10*
12954 SYNOPSYS DESIGNWARE APB GPIO DRIVER
12955 M: Hoan Tran <hotran@apm.com>
12956 L: linux-gpio@vger.kernel.org
12958 F: drivers/gpio/gpio-dwapb.c
12959 F: Documentation/devicetree/bindings/gpio/snps-dwapb-gpio.txt
12961 SYNOPSYS DESIGNWARE DMAC DRIVER
12962 M: Viresh Kumar <vireshk@kernel.org>
12963 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
12965 F: include/linux/dma/dw.h
12966 F: include/linux/platform_data/dma-dw.h
12969 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
12970 M: Jie Deng <jiedeng@synopsys.com>
12971 L: netdev@vger.kernel.org
12973 F: drivers/net/ethernet/synopsys/
12975 SYNOPSYS DESIGNWARE I2C DRIVER
12976 M: Jarkko Nikula <jarkko.nikula@linux.intel.com>
12977 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
12978 R: Mika Westerberg <mika.westerberg@linux.intel.com>
12979 L: linux-i2c@vger.kernel.org
12981 F: drivers/i2c/busses/i2c-designware-*
12982 F: include/linux/platform_data/i2c-designware.h
12984 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
12985 M: Jaehoon Chung <jh80.chung@samsung.com>
12986 L: linux-mmc@vger.kernel.org
12988 F: drivers/mmc/host/dw_mmc*
12990 SYNOPSYS HSDK RESET CONTROLLER DRIVER
12991 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
12993 F: drivers/reset/reset-hsdk.c
12994 F: include/dt-bindings/reset/snps,hsdk-reset.h
12995 F: Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
12997 SYSTEM CONFIGURATION (SYSCON)
12998 M: Lee Jones <lee.jones@linaro.org>
12999 M: Arnd Bergmann <arnd@arndb.de>
13000 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
13002 F: drivers/mfd/syscon.c
13004 SYSTEM CONTROL & POWER INTERFACE (SCPI) Message Protocol drivers
13005 M: Sudeep Holla <sudeep.holla@arm.com>
13006 L: linux-arm-kernel@lists.infradead.org
13008 F: Documentation/devicetree/bindings/arm/arm,scpi.txt
13009 F: drivers/clk/clk-scpi.c
13010 F: drivers/cpufreq/scpi-cpufreq.c
13011 F: drivers/firmware/arm_scpi.c
13012 F: include/linux/scpi_protocol.h
13014 SYSTEM RESET/SHUTDOWN DRIVERS
13015 M: Sebastian Reichel <sre@kernel.org>
13016 L: linux-pm@vger.kernel.org
13017 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
13019 F: Documentation/devicetree/bindings/power/reset/
13020 F: drivers/power/reset/
13022 SYSTEM TRACE MODULE CLASS
13023 M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
13025 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
13026 F: Documentation/trace/stm.txt
13027 F: drivers/hwtracing/stm/
13028 F: include/linux/stm.h
13029 F: include/uapi/linux/stm.h
13032 M: Christoph Hellwig <hch@infradead.org>
13034 F: Documentation/filesystems/sysv-fs.txt
13036 F: include/linux/sysv_fs.h
13039 M: "Nicholas A. Bellinger" <nab@linux-iscsi.org>
13040 L: linux-scsi@vger.kernel.org
13041 L: target-devel@vger.kernel.org
13042 W: http://www.linux-iscsi.org
13043 W: http://groups.google.com/group/linux-iscsi-target-dev
13044 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
13048 F: Documentation/target/
13050 TASKSTATS STATISTICS INTERFACE
13051 M: Balbir Singh <bsingharora@gmail.com>
13053 F: Documentation/accounting/taskstats*
13054 F: include/linux/taskstats*
13055 F: kernel/taskstats.c
13058 M: Jamal Hadi Salim <jhs@mojatatu.com>
13059 M: Cong Wang <xiyou.wangcong@gmail.com>
13060 M: Jiri Pirko <jiri@resnulli.us>
13061 L: netdev@vger.kernel.org
13063 F: include/net/pkt_cls.h
13064 F: include/net/pkt_sched.h
13065 F: include/net/tc_act/
13066 F: include/uapi/linux/pkt_cls.h
13067 F: include/uapi/linux/pkt_sched.h
13068 F: include/uapi/linux/tc_act/
13069 F: include/uapi/linux/tc_ematch/
13072 TCP LOW PRIORITY MODULE
13073 M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
13074 M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
13075 W: http://tcp-lp-mod.sourceforge.net/
13077 F: net/ipv4/tcp_lp.c
13079 TDA10071 MEDIA DRIVER
13080 M: Antti Palosaari <crope@iki.fi>
13081 L: linux-media@vger.kernel.org
13082 W: https://linuxtv.org
13083 W: http://palosaari.fi/linux/
13084 Q: http://patchwork.linuxtv.org/project/linux-media/list/
13085 T: git git://linuxtv.org/anttip/media_tree.git
13087 F: drivers/media/dvb-frontends/tda10071*
13089 TDA18212 MEDIA DRIVER
13090 M: Antti Palosaari <crope@iki.fi>
13091 L: linux-media@vger.kernel.org
13092 W: https://linuxtv.org
13093 W: http://palosaari.fi/linux/
13094 Q: http://patchwork.linuxtv.org/project/linux-media/list/
13095 T: git git://linuxtv.org/anttip/media_tree.git
13097 F: drivers/media/tuners/tda18212*
13099 TDA18218 MEDIA DRIVER
13100 M: Antti Palosaari <crope@iki.fi>
13101 L: linux-media@vger.kernel.org
13102 W: https://linuxtv.org
13103 W: http://palosaari.fi/linux/
13104 Q: http://patchwork.linuxtv.org/project/linux-media/list/
13105 T: git git://linuxtv.org/anttip/media_tree.git
13107 F: drivers/media/tuners/tda18218*
13109 TDA18271 MEDIA DRIVER
13110 M: Michael Krufky <mkrufky@linuxtv.org>
13111 L: linux-media@vger.kernel.org
13112 W: https://linuxtv.org
13113 W: http://github.com/mkrufky
13114 Q: http://patchwork.linuxtv.org/project/linux-media/list/
13115 T: git git://linuxtv.org/mkrufky/tuners.git
13117 F: drivers/media/tuners/tda18271*
13119 TDA827x MEDIA DRIVER
13120 M: Michael Krufky <mkrufky@linuxtv.org>
13121 L: linux-media@vger.kernel.org
13122 W: https://linuxtv.org
13123 W: http://github.com/mkrufky
13124 Q: http://patchwork.linuxtv.org/project/linux-media/list/
13125 T: git git://linuxtv.org/mkrufky/tuners.git
13127 F: drivers/media/tuners/tda8290.*
13129 TDA8290 MEDIA DRIVER
13130 M: Michael Krufky <mkrufky@linuxtv.org>
13131 L: linux-media@vger.kernel.org
13132 W: https://linuxtv.org
13133 W: http://github.com/mkrufky
13134 Q: http://patchwork.linuxtv.org/project/linux-media/list/
13135 T: git git://linuxtv.org/mkrufky/tuners.git
13137 F: drivers/media/tuners/tda8290.*
13139 TDA9840 MEDIA DRIVER
13140 M: Hans Verkuil <hverkuil@xs4all.nl>
13141 L: linux-media@vger.kernel.org
13142 T: git git://linuxtv.org/media_tree.git
13143 W: https://linuxtv.org
13145 F: drivers/media/i2c/tda9840*
13147 TEA5761 TUNER DRIVER
13148 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
13149 M: Mauro Carvalho Chehab <mchehab@kernel.org>
13150 L: linux-media@vger.kernel.org
13151 W: https://linuxtv.org
13152 T: git git://linuxtv.org/media_tree.git
13154 F: drivers/media/tuners/tea5761.*
13156 TEA5767 TUNER DRIVER
13157 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
13158 M: Mauro Carvalho Chehab <mchehab@kernel.org>
13159 L: linux-media@vger.kernel.org
13160 W: https://linuxtv.org
13161 T: git git://linuxtv.org/media_tree.git
13163 F: drivers/media/tuners/tea5767.*
13165 TEA6415C MEDIA DRIVER
13166 M: Hans Verkuil <hverkuil@xs4all.nl>
13167 L: linux-media@vger.kernel.org
13168 T: git git://linuxtv.org/media_tree.git
13169 W: https://linuxtv.org
13171 F: drivers/media/i2c/tea6415c*
13173 TEA6420 MEDIA DRIVER
13174 M: Hans Verkuil <hverkuil@xs4all.nl>
13175 L: linux-media@vger.kernel.org
13176 T: git git://linuxtv.org/media_tree.git
13177 W: https://linuxtv.org
13179 F: drivers/media/i2c/tea6420*
13182 M: Jiri Pirko <jiri@resnulli.us>
13183 L: netdev@vger.kernel.org
13185 F: drivers/net/team/
13186 F: include/linux/if_team.h
13187 F: include/uapi/linux/if_team.h
13189 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
13190 M: "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
13192 F: arch/x86/platform/ts5500/
13194 TECHNOTREND USB IR RECEIVER
13195 M: Sean Young <sean@mess.org>
13196 L: linux-media@vger.kernel.org
13198 F: drivers/media/rc/ttusbir.c
13201 M: Jens Wiklander <jens.wiklander@linaro.org>
13203 F: include/linux/tee_drv.h
13204 F: include/uapi/linux/tee.h
13206 F: Documentation/tee.txt
13208 TEGRA ARCHITECTURE SUPPORT
13209 M: Thierry Reding <thierry.reding@gmail.com>
13210 M: Jonathan Hunter <jonathanh@nvidia.com>
13211 L: linux-tegra@vger.kernel.org
13212 Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
13213 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
13218 M: Peter De Schrijver <pdeschrijver@nvidia.com>
13219 M: Prashant Gaikwad <pgaikwad@nvidia.com>
13221 F: drivers/clk/tegra/
13224 M: Laxman Dewangan <ldewangan@nvidia.com>
13225 M: Jon Hunter <jonathanh@nvidia.com>
13227 F: drivers/dma/tegra*
13230 M: Laxman Dewangan <ldewangan@nvidia.com>
13232 F: drivers/i2c/busses/i2c-tegra.c
13234 TEGRA IOMMU DRIVERS
13235 M: Hiroshi Doyu <hdoyu@nvidia.com>
13237 F: drivers/iommu/tegra*
13240 M: Rakesh Iyer <riyer@nvidia.com>
13241 M: Laxman Dewangan <ldewangan@nvidia.com>
13243 F: drivers/input/keyboard/tegra-kbc.c
13246 M: Thierry Reding <thierry.reding@gmail.com>
13248 F: drivers/pwm/pwm-tegra.c
13250 TEGRA SERIAL DRIVER
13251 M: Laxman Dewangan <ldewangan@nvidia.com>
13253 F: drivers/tty/serial/serial-tegra.c
13256 M: Laxman Dewangan <ldewangan@nvidia.com>
13258 F: drivers/spi/spi-tegra*
13260 TEHUTI ETHERNET DRIVER
13261 M: Andy Gospodarek <andy@greyhouse.net>
13262 L: netdev@vger.kernel.org
13264 F: drivers/net/ethernet/tehuti/*
13266 Telecom Clock Driver for MCPL0010
13267 M: Mark Gross <mark.gross@intel.com>
13269 F: drivers/char/tlclk.c
13271 TENSILICA XTENSA PORT (xtensa)
13272 M: Chris Zankel <chris@zankel.net>
13273 M: Max Filippov <jcmvbkbc@gmail.com>
13274 L: linux-xtensa@linux-xtensa.org
13275 T: git git://github.com/czankel/xtensa-linux.git
13278 F: drivers/irqchip/irq-xtensa-*
13280 Texas Instruments' System Control Interface (TISCI) Protocol Driver
13281 M: Nishanth Menon <nm@ti.com>
13282 M: Tero Kristo <t-kristo@ti.com>
13283 M: Santosh Shilimkar <ssantosh@kernel.org>
13284 L: linux-arm-kernel@lists.infradead.org
13286 F: Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
13287 F: drivers/firmware/ti_sci*
13288 F: include/linux/soc/ti/ti_sci_protocol.h
13289 F: Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
13290 F: include/dt-bindings/genpd/k2g.h
13291 F: drivers/soc/ti/ti_sci_pm_domains.c
13292 F: Documentation/devicetree/bindings/reset/ti,sci-reset.txt
13293 F: Documentation/devicetree/bindings/clock/ti,sci-clk.txt
13294 F: drivers/clk/keystone/sci-clk.c
13295 F: drivers/reset/reset-ti-sci.c
13297 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
13298 M: Hans Verkuil <hverkuil@xs4all.nl>
13299 L: linux-media@vger.kernel.org
13300 T: git git://linuxtv.org/media_tree.git
13301 W: https://linuxtv.org
13303 F: drivers/media/radio/radio-raremono.c
13306 M: Zhang Rui <rui.zhang@intel.com>
13307 M: Eduardo Valentin <edubezval@gmail.com>
13308 L: linux-pm@vger.kernel.org
13309 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
13310 T: git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
13311 Q: https://patchwork.kernel.org/project/linux-pm/list/
13313 F: drivers/thermal/
13314 F: include/linux/thermal.h
13315 F: include/uapi/linux/thermal.h
13316 F: include/linux/cpu_cooling.h
13317 F: Documentation/devicetree/bindings/thermal/
13319 THERMAL/CPU_COOLING
13320 M: Amit Daniel Kachhap <amit.kachhap@gmail.com>
13321 M: Viresh Kumar <viresh.kumar@linaro.org>
13322 M: Javi Merino <javi.merino@kernel.org>
13323 L: linux-pm@vger.kernel.org
13325 F: Documentation/thermal/cpu-cooling-api.txt
13326 F: drivers/thermal/cpu_cooling.c
13327 F: include/linux/cpu_cooling.h
13329 THINKPAD ACPI EXTRAS DRIVER
13330 M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
13331 L: ibm-acpi-devel@lists.sourceforge.net
13332 L: platform-driver-x86@vger.kernel.org
13333 W: http://ibm-acpi.sourceforge.net
13334 W: http://thinkwiki.org/wiki/Ibm-acpi
13335 T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
13337 F: drivers/platform/x86/thinkpad_acpi.c
13340 M: Andreas Noever <andreas.noever@gmail.com>
13341 M: Michael Jamet <michael.jamet@intel.com>
13342 M: Mika Westerberg <mika.westerberg@linux.intel.com>
13343 M: Yehezkel Bernat <yehezkel.bernat@intel.com>
13345 F: drivers/thunderbolt/
13347 THUNDERX GPIO DRIVER
13348 M: David Daney <david.daney@cavium.com>
13350 F: drivers/gpio/gpio-thunderx.c
13352 TI AM437X VPFE DRIVER
13353 M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
13354 L: linux-media@vger.kernel.org
13355 W: https://linuxtv.org
13356 Q: http://patchwork.linuxtv.org/project/linux-media/list/
13357 T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
13359 F: drivers/media/platform/am437x/
13361 TI BANDGAP AND THERMAL DRIVER
13362 M: Eduardo Valentin <edubezval@gmail.com>
13363 M: Keerthy <j-keerthy@ti.com>
13364 L: linux-pm@vger.kernel.org
13365 L: linux-omap@vger.kernel.org
13367 F: drivers/thermal/ti-soc-thermal/
13369 TI BQ27XXX POWER SUPPLY DRIVER
13370 R: Andrew F. Davis <afd@ti.com>
13371 F: include/linux/power/bq27xxx_battery.h
13372 F: drivers/power/supply/bq27xxx_battery.c
13373 F: drivers/power/supply/bq27xxx_battery_i2c.c
13375 TI CDCE706 CLOCK DRIVER
13376 M: Max Filippov <jcmvbkbc@gmail.com>
13378 F: drivers/clk/clk-cdce706.c
13381 M: Tero Kristo <t-kristo@ti.com>
13382 L: linux-omap@vger.kernel.org
13385 F: include/linux/clk/ti.h
13387 TI DAVINCI MACHINE SUPPORT
13388 M: Sekhar Nori <nsekhar@ti.com>
13389 M: Kevin Hilman <khilman@kernel.org>
13390 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13391 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
13393 F: arch/arm/mach-davinci/
13394 F: drivers/i2c/busses/i2c-davinci.c
13395 F: arch/arm/boot/dts/da850*
13397 TI DAVINCI SERIES GPIO DRIVER
13398 M: Keerthy <j-keerthy@ti.com>
13399 L: linux-gpio@vger.kernel.org
13401 F: Documentation/devicetree/bindings/gpio/gpio-davinci.txt
13402 F: drivers/gpio/gpio-davinci.c
13404 TI DAVINCI SERIES MEDIA DRIVER
13405 M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
13406 L: linux-media@vger.kernel.org
13407 W: https://linuxtv.org
13408 Q: http://patchwork.linuxtv.org/project/linux-media/list/
13409 T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
13411 F: drivers/media/platform/davinci/
13412 F: include/media/davinci/
13414 TI ETHERNET SWITCH DRIVER (CPSW)
13415 R: Grygorii Strashko <grygorii.strashko@ti.com>
13416 L: linux-omap@vger.kernel.org
13417 L: netdev@vger.kernel.org
13419 F: drivers/net/ethernet/ti/cpsw*
13420 F: drivers/net/ethernet/ti/davinci*
13422 TI FLASH MEDIA INTERFACE DRIVER
13423 M: Alex Dubov <oakad@yahoo.com>
13425 F: drivers/misc/tifm*
13426 F: drivers/mmc/host/tifm_sd.c
13427 F: include/linux/tifm.h
13429 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
13430 M: Santosh Shilimkar <ssantosh@kernel.org>
13431 L: linux-kernel@vger.kernel.org
13432 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13434 F: drivers/soc/ti/*
13435 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
13437 TI LM49xxx FAMILY ASoC CODEC DRIVERS
13438 M: M R Swami Reddy <mr.swami.reddy@ti.com>
13439 M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
13440 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
13442 F: sound/soc/codecs/lm49453*
13443 F: sound/soc/codecs/isabelle*
13445 TI LP855x BACKLIGHT DRIVER
13446 M: Milo Kim <milo.kim@ti.com>
13448 F: Documentation/backlight/lp855x-driver.txt
13449 F: drivers/video/backlight/lp855x_bl.c
13450 F: include/linux/platform_data/lp855x.h
13452 TI LP8727 CHARGER DRIVER
13453 M: Milo Kim <milo.kim@ti.com>
13455 F: drivers/power/supply/lp8727_charger.c
13456 F: include/linux/platform_data/lp8727.h
13458 TI LP8788 MFD DRIVER
13459 M: Milo Kim <milo.kim@ti.com>
13461 F: drivers/iio/adc/lp8788_adc.c
13462 F: drivers/leds/leds-lp8788.c
13463 F: drivers/mfd/lp8788*.c
13464 F: drivers/power/supply/lp8788-charger.c
13465 F: drivers/regulator/lp8788-*.c
13466 F: include/linux/mfd/lp8788*.h
13468 TI NETCP ETHERNET DRIVER
13469 M: Wingman Kwok <w-kwok2@ti.com>
13470 M: Murali Karicheri <m-karicheri2@ti.com>
13471 L: netdev@vger.kernel.org
13473 F: drivers/net/ethernet/ti/netcp*
13475 TI TAS571X FAMILY ASoC CODEC DRIVER
13476 M: Kevin Cernekee <cernekee@chromium.org>
13477 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
13479 F: sound/soc/codecs/tas571x*
13481 TI TRF7970A NFC DRIVER
13482 M: Mark Greer <mgreer@animalcreek.com>
13483 L: linux-wireless@vger.kernel.org
13484 L: linux-nfc@lists.01.org (moderated for non-subscribers)
13486 F: drivers/nfc/trf7970a.c
13487 F: Documentation/devicetree/bindings/net/nfc/trf7970a.txt
13489 TI TWL4030 SERIES SOC CODEC DRIVER
13490 M: Peter Ujfalusi <peter.ujfalusi@ti.com>
13491 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
13493 F: sound/soc/codecs/twl4030*
13496 M: Benoit Parrot <bparrot@ti.com>
13497 L: linux-media@vger.kernel.org
13498 W: http://linuxtv.org/
13499 Q: http://patchwork.linuxtv.org/project/linux-media/list/
13501 F: drivers/media/platform/ti-vpe/
13503 TI WILINK WIRELESS DRIVERS
13504 L: linux-wireless@vger.kernel.org
13505 W: http://wireless.kernel.org/en/users/Drivers/wl12xx
13506 W: http://wireless.kernel.org/en/users/Drivers/wl1251
13507 T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
13509 F: drivers/net/wireless/ti/
13510 F: include/linux/wl12xx.h
13513 M: Chris Metcalf <cmetcalf@mellanox.com>
13514 W: http://www.mellanox.com/repository/solutions/tile-scm/
13515 T: git git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile.git
13518 F: drivers/char/tile-srom.c
13519 F: drivers/edac/tile_edac.c
13520 F: drivers/net/ethernet/tile/
13521 F: drivers/rtc/rtc-tile.c
13522 F: drivers/tty/hvc/hvc_tile.c
13523 F: drivers/tty/serial/tilegx.c
13524 F: drivers/usb/host/*-tilegx.c
13525 F: include/linux/usb/tilegx.h
13527 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
13528 M: John Stultz <john.stultz@linaro.org>
13529 M: Thomas Gleixner <tglx@linutronix.de>
13530 R: Stephen Boyd <sboyd@codeaurora.org>
13531 L: linux-kernel@vger.kernel.org
13532 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
13534 F: include/linux/clocksource.h
13535 F: include/linux/time.h
13536 F: include/linux/timex.h
13537 F: include/uapi/linux/time.h
13538 F: include/uapi/linux/timex.h
13539 F: kernel/time/clocksource.c
13540 F: kernel/time/time*.c
13541 F: kernel/time/alarmtimer.c
13542 F: kernel/time/ntp.c
13543 F: tools/testing/selftests/timers/
13546 M: Jon Maloy <jon.maloy@ericsson.com>
13547 M: Ying Xue <ying.xue@windriver.com>
13548 L: netdev@vger.kernel.org (core kernel code)
13549 L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
13550 W: http://tipc.sourceforge.net/
13552 F: include/uapi/linux/tipc*.h
13555 TLAN NETWORK DRIVER
13556 M: Samuel Chessman <chessman@tux.org>
13557 L: tlan-devel@lists.sourceforge.net (subscribers-only)
13558 W: http://sourceforge.net/projects/tlan/
13560 F: Documentation/networking/tlan.txt
13561 F: drivers/net/ethernet/ti/tlan.*
13563 TM6000 VIDEO4LINUX DRIVER
13564 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
13565 M: Mauro Carvalho Chehab <mchehab@kernel.org>
13566 L: linux-media@vger.kernel.org
13567 W: https://linuxtv.org
13568 T: git git://linuxtv.org/media_tree.git
13570 F: drivers/media/usb/tm6000/
13571 F: Documentation/media/v4l-drivers/tm6000*
13573 TMIO/SDHI MMC DRIVER
13574 M: Wolfram Sang <wsa+renesas@sang-engineering.com>
13575 L: linux-mmc@vger.kernel.org
13577 F: drivers/mmc/host/tmio_mmc*
13578 F: drivers/mmc/host/renesas_sdhi*
13579 F: include/linux/mfd/tmio.h
13581 TMP401 HARDWARE MONITOR DRIVER
13582 M: Guenter Roeck <linux@roeck-us.net>
13583 L: linux-hwmon@vger.kernel.org
13585 F: Documentation/hwmon/tmp401
13586 F: drivers/hwmon/tmp401.c
13588 TMPFS (SHMEM FILESYSTEM)
13589 M: Hugh Dickins <hughd@google.com>
13590 L: linux-mm@kvack.org
13592 F: include/linux/shmem_fs.h
13595 TOMOYO SECURITY MODULE
13596 M: Kentaro Takeda <takedakn@nttdata.co.jp>
13597 M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
13598 L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
13599 L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
13600 L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
13601 L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
13602 W: http://tomoyo.sourceforge.jp/
13603 T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
13605 F: security/tomoyo/
13607 TOPSTAR LAPTOP EXTRAS DRIVER
13608 M: Herton Ronaldo Krzesinski <herton@canonical.com>
13609 L: platform-driver-x86@vger.kernel.org
13611 F: drivers/platform/x86/topstar-laptop.c
13613 TOSHIBA ACPI EXTRAS DRIVER
13614 M: Azael Avalos <coproscefalo@gmail.com>
13615 L: platform-driver-x86@vger.kernel.org
13617 F: drivers/platform/x86/toshiba_acpi.c
13619 TOSHIBA BLUETOOTH DRIVER
13620 M: Azael Avalos <coproscefalo@gmail.com>
13621 L: platform-driver-x86@vger.kernel.org
13623 F: drivers/platform/x86/toshiba_bluetooth.c
13625 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
13626 M: Azael Avalos <coproscefalo@gmail.com>
13627 L: platform-driver-x86@vger.kernel.org
13629 F: drivers/platform/x86/toshiba_haps.c
13632 M: Jonathan Buzzard <jonathan@buzzard.org.uk>
13633 W: http://www.buzzard.org.uk/toshiba/
13635 F: drivers/char/toshiba.c
13636 F: include/linux/toshiba.h
13637 F: include/uapi/linux/toshiba.h
13639 TOSHIBA TC358743 DRIVER
13640 M: Mats Randgaard <matrandg@cisco.com>
13641 L: linux-media@vger.kernel.org
13643 F: drivers/media/i2c/tc358743*
13644 F: include/media/i2c/tc358743.h
13646 TOSHIBA WMI HOTKEYS DRIVER
13647 M: Azael Avalos <coproscefalo@gmail.com>
13648 L: platform-driver-x86@vger.kernel.org
13650 F: drivers/platform/x86/toshiba-wmi.c
13653 M: Peter Huewe <peterhuewe@gmx.de>
13654 M: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
13655 R: Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
13656 L: linux-integrity@vger.kernel.org
13657 Q: https://patchwork.kernel.org/project/linux-integrity/list/
13658 T: git git://git.infradead.org/users/jjs/linux-tpmdd.git
13660 F: drivers/char/tpm/
13663 M: Steven Rostedt <rostedt@goodmis.org>
13664 M: Ingo Molnar <mingo@redhat.com>
13665 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
13667 F: Documentation/trace/ftrace.txt
13668 F: arch/*/*/*/ftrace.h
13669 F: arch/*/kernel/ftrace.c
13670 F: include/*/ftrace.h
13671 F: include/linux/trace*.h
13674 F: tools/testing/selftests/ftrace/
13676 TRACING MMIO ACCESSES (MMIOTRACE)
13677 M: Steven Rostedt <rostedt@goodmis.org>
13678 M: Ingo Molnar <mingo@kernel.org>
13679 R: Karol Herbst <karolherbst@gmail.com>
13680 R: Pekka Paalanen <ppaalanen@gmail.com>
13682 L: linux-kernel@vger.kernel.org
13683 L: nouveau@lists.freedesktop.org
13684 F: kernel/trace/trace_mmiotrace.c
13685 F: include/linux/mmiotrace.h
13686 F: arch/x86/mm/kmmio.c
13687 F: arch/x86/mm/mmio-mod.c
13688 F: arch/x86/mm/testmmiotrace.c
13691 M: Jiri Kosina <trivial@kernel.org>
13692 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
13694 K: ^Subject:.*(?i)trivial
13697 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
13698 M: Jiri Slaby <jslaby@suse.com>
13700 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
13701 F: Documentation/serial/
13703 F: drivers/tty/serial/serial_core.c
13704 F: include/linux/serial_core.h
13705 F: include/linux/serial.h
13706 F: include/linux/tty.h
13707 F: include/uapi/linux/serial_core.h
13708 F: include/uapi/linux/serial.h
13709 F: include/uapi/linux/tty.h
13711 TUA9001 MEDIA DRIVER
13712 M: Antti Palosaari <crope@iki.fi>
13713 L: linux-media@vger.kernel.org
13714 W: https://linuxtv.org
13715 W: http://palosaari.fi/linux/
13716 Q: http://patchwork.linuxtv.org/project/linux-media/list/
13717 T: git git://linuxtv.org/anttip/media_tree.git
13719 F: drivers/media/tuners/tua9001*
13721 TULIP NETWORK DRIVERS
13722 L: netdev@vger.kernel.org
13723 L: linux-parisc@vger.kernel.org
13725 F: drivers/net/ethernet/dec/tulip/
13728 M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
13729 W: http://vtun.sourceforge.net/tun
13731 F: Documentation/networking/tuntap.txt
13732 F: arch/um/os-Linux/drivers/
13734 TURBOCHANNEL SUBSYSTEM
13735 M: "Maciej W. Rozycki" <macro@linux-mips.org>
13736 M: Ralf Baechle <ralf@linux-mips.org>
13737 L: linux-mips@linux-mips.org
13738 Q: http://patchwork.linux-mips.org/project/linux-mips/list/
13741 F: include/linux/tc.h
13743 TW5864 VIDEO4LINUX DRIVER
13744 M: Bluecherry Maintainers <maintainers@bluecherrydvr.com>
13745 M: Anton Sviridenko <anton@corp.bluecherry.net>
13746 M: Andrey Utkin <andrey.utkin@corp.bluecherry.net>
13747 M: Andrey Utkin <andrey_utkin@fastmail.com>
13748 L: linux-media@vger.kernel.org
13750 F: drivers/media/pci/tw5864/
13752 TW68 VIDEO4LINUX DRIVER
13753 M: Hans Verkuil <hverkuil@xs4all.nl>
13754 L: linux-media@vger.kernel.org
13755 T: git git://linuxtv.org/media_tree.git
13756 W: https://linuxtv.org
13758 F: drivers/media/pci/tw68/
13760 TW686X VIDEO4LINUX DRIVER
13761 M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
13762 L: linux-media@vger.kernel.org
13763 T: git git://linuxtv.org/media_tree.git
13764 W: http://linuxtv.org
13766 F: drivers/media/pci/tw686x/
13768 UBI FILE SYSTEM (UBIFS)
13769 M: Richard Weinberger <richard@nod.at>
13770 M: Artem Bityutskiy <dedekind1@gmail.com>
13771 M: Adrian Hunter <adrian.hunter@intel.com>
13772 L: linux-mtd@lists.infradead.org
13773 T: git git://git.infradead.org/ubifs-2.6.git
13774 W: http://www.linux-mtd.infradead.org/doc/ubifs.html
13776 F: Documentation/filesystems/ubifs.txt
13779 UCLINUX (M68KNOMMU AND COLDFIRE)
13780 M: Greg Ungerer <gerg@linux-m68k.org>
13781 W: http://www.linux-m68k.org/
13782 W: http://www.uclinux.org/
13783 L: linux-m68k@lists.linux-m68k.org
13784 L: uclinux-dev@uclinux.org (subscribers-only)
13785 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
13787 F: arch/m68k/coldfire/
13789 F: arch/m68k/*/*_no.*
13790 F: arch/m68k/include/asm/*_no.*
13793 M: Jan Kara <jack@suse.com>
13795 F: Documentation/filesystems/udf.txt
13799 M: Bastien Nocera <hadess@hadess.net>
13800 L: linux-input@vger.kernel.org
13802 F: drivers/hid/hid-udraw-ps3.c
13805 M: Evgeniy Dushistov <dushistov@mail.ru>
13807 F: Documentation/filesystems/ufs.txt
13810 UHID USERSPACE HID IO DRIVER:
13811 M: David Herrmann <dh.herrmann@googlemail.com>
13812 L: linux-input@vger.kernel.org
13814 F: drivers/hid/uhid.c
13815 F: include/uapi/linux/uhid.h
13818 M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
13819 L: linux-usb@vger.kernel.org
13821 F: drivers/usb/common/ulpi.c
13822 F: include/linux/ulpi/
13824 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
13825 L: linux-usb@vger.kernel.org
13828 F: include/linux/uwb.h
13829 F: include/linux/uwb/
13831 UNICORE32 ARCHITECTURE:
13832 M: Guan Xuetao <gxt@mprc.pku.edu.cn>
13833 W: http://mprc.pku.edu.cn/~guanxuetao/linux
13835 T: git git://github.com/gxt/linux.git
13839 M: Tony Finch <dot@dotat.at>
13840 W: http://dotat.at/prog/unifdef
13842 F: scripts/unifdef.c
13844 UNIFORM CDROM DRIVER
13845 M: Jens Axboe <axboe@kernel.dk>
13846 W: http://www.kernel.dk
13848 F: Documentation/cdrom/
13849 F: drivers/cdrom/cdrom.c
13850 F: include/linux/cdrom.h
13851 F: include/uapi/linux/cdrom.h
13853 UNISYS S-PAR DRIVERS
13854 M: David Kershner <david.kershner@unisys.com>
13855 L: sparmaintainer@unisys.com (Unisys internal)
13857 F: drivers/staging/unisys/
13859 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
13860 M: Vinayak Holikatti <vinholikatti@gmail.com>
13861 L: linux-scsi@vger.kernel.org
13863 F: Documentation/scsi/ufs.txt
13864 F: drivers/scsi/ufs/
13866 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
13867 M: Joao Pinto <jpinto@synopsys.com>
13868 L: linux-scsi@vger.kernel.org
13870 F: drivers/scsi/ufs/*dwc*
13872 UNSORTED BLOCK IMAGES (UBI)
13873 M: Artem Bityutskiy <dedekind1@gmail.com>
13874 M: Richard Weinberger <richard@nod.at>
13875 W: http://www.linux-mtd.infradead.org/
13876 L: linux-mtd@lists.infradead.org
13877 T: git git://git.infradead.org/ubifs-2.6.git
13879 F: drivers/mtd/ubi/
13880 F: include/linux/mtd/ubi.h
13881 F: include/uapi/mtd/ubi-user.h
13883 USB "USBNET" DRIVER FRAMEWORK
13884 M: Oliver Neukum <oneukum@suse.com>
13885 L: netdev@vger.kernel.org
13886 W: http://www.linux-usb.org/usbnet
13888 F: drivers/net/usb/usbnet.c
13889 F: include/linux/usb/usbnet.h
13892 M: Oliver Neukum <oneukum@suse.com>
13893 L: linux-usb@vger.kernel.org
13895 F: Documentation/usb/acm.txt
13896 F: drivers/usb/class/cdc-acm.*
13898 USB AR5523 WIRELESS DRIVER
13899 M: Pontus Fuchs <pontus.fuchs@gmail.com>
13900 L: linux-wireless@vger.kernel.org
13902 F: drivers/net/wireless/ath/ar5523/
13905 M: Oliver Neukum <oneukum@suse.com>
13906 L: linux-usb@vger.kernel.org
13907 L: linux-scsi@vger.kernel.org
13909 F: drivers/usb/storage/uas.c
13911 USB CDC ETHERNET DRIVER
13912 M: Oliver Neukum <oliver@neukum.org>
13913 L: linux-usb@vger.kernel.org
13915 F: drivers/net/usb/cdc_*.c
13916 F: include/uapi/linux/usb/cdc.h
13918 USB CHAOSKEY DRIVER
13919 M: Keith Packard <keithp@keithp.com>
13920 L: linux-usb@vger.kernel.org
13922 F: drivers/usb/misc/chaoskey.c
13924 USB CYPRESS C67X00 DRIVER
13925 M: Peter Korsgaard <jacmet@sunsite.dk>
13926 L: linux-usb@vger.kernel.org
13928 F: drivers/usb/c67x00/
13930 USB DAVICOM DM9601 DRIVER
13931 M: Peter Korsgaard <jacmet@sunsite.dk>
13932 L: netdev@vger.kernel.org
13933 W: http://www.linux-usb.org/usbnet
13935 F: drivers/net/usb/dm9601.c
13937 USB DIAMOND RIO500 DRIVER
13938 M: Cesar Miquel <miquel@df.uba.ar>
13939 L: rio500-users@lists.sourceforge.net
13940 W: http://rio500.sourceforge.net
13942 F: drivers/usb/misc/rio500*
13945 M: Alan Stern <stern@rowland.harvard.edu>
13946 L: linux-usb@vger.kernel.org
13948 F: Documentation/usb/ehci.txt
13949 F: drivers/usb/host/ehci*
13951 USB GADGET/PERIPHERAL SUBSYSTEM
13952 M: Felipe Balbi <balbi@kernel.org>
13953 L: linux-usb@vger.kernel.org
13954 W: http://www.linux-usb.org/gadget
13955 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
13957 F: drivers/usb/gadget/
13958 F: include/linux/usb/gadget*
13960 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
13961 M: Jiri Kosina <jikos@kernel.org>
13962 R: Benjamin Tissoires <benjamin.tissoires@redhat.com>
13963 L: linux-usb@vger.kernel.org
13964 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
13966 F: Documentation/hid/hiddev.txt
13967 F: drivers/hid/usbhid/
13970 M: Olav Kongas <ok@artecdesign.ee>
13971 L: linux-usb@vger.kernel.org
13973 F: drivers/usb/host/isp116x*
13974 F: include/linux/usb/isp116x.h
13976 USB LAN78XX ETHERNET DRIVER
13977 M: Woojung Huh <woojung.huh@microchip.com>
13978 M: Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
13979 L: netdev@vger.kernel.org
13981 F: drivers/net/usb/lan78xx.*
13983 USB MASS STORAGE DRIVER
13984 M: Alan Stern <stern@rowland.harvard.edu>
13985 L: linux-usb@vger.kernel.org
13986 L: usb-storage@lists.one-eyed-alien.net
13988 W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
13989 F: drivers/usb/storage/
13992 M: Clemens Ladisch <clemens@ladisch.de>
13993 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
13994 T: git git://git.alsa-project.org/alsa-kernel.git
13996 F: sound/usb/midi.*
13998 USB NETWORKING DRIVERS
13999 L: linux-usb@vger.kernel.org
14001 F: drivers/net/usb/
14004 M: Alan Stern <stern@rowland.harvard.edu>
14005 L: linux-usb@vger.kernel.org
14007 F: Documentation/usb/ohci.txt
14008 F: drivers/usb/host/ohci*
14010 USB OTG FSM (Finite State Machine)
14011 M: Peter Chen <Peter.Chen@nxp.com>
14012 T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
14013 L: linux-usb@vger.kernel.org
14015 F: drivers/usb/common/usb-otg-fsm.c
14018 M: Valentina Manea <valentina.manea.m@gmail.com>
14019 M: Shuah Khan <shuahkh@osg.samsung.com>
14020 M: Shuah Khan <shuah@kernel.org>
14021 L: linux-usb@vger.kernel.org
14023 F: Documentation/usb/usbip_protocol.txt
14024 F: drivers/usb/usbip/
14025 F: tools/usb/usbip/
14028 M: Petko Manolov <petkan@nucleusys.com>
14029 L: linux-usb@vger.kernel.org
14030 L: netdev@vger.kernel.org
14031 T: git git://github.com/petkan/pegasus.git
14032 W: https://github.com/petkan/pegasus
14034 F: drivers/net/usb/pegasus.*
14037 M: Felipe Balbi <balbi@kernel.org>
14038 L: linux-usb@vger.kernel.org
14039 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
14041 F: drivers/usb/phy/
14043 USB PRINTER DRIVER (usblp)
14044 M: Pete Zaitcev <zaitcev@redhat.com>
14045 L: linux-usb@vger.kernel.org
14047 F: drivers/usb/class/usblp.c
14049 USB QMI WWAN NETWORK DRIVER
14050 M: Bjørn Mork <bjorn@mork.no>
14051 L: netdev@vger.kernel.org
14053 F: Documentation/ABI/testing/sysfs-class-net-qmi
14054 F: drivers/net/usb/qmi_wwan.c
14057 M: Petko Manolov <petkan@nucleusys.com>
14058 L: linux-usb@vger.kernel.org
14059 L: netdev@vger.kernel.org
14060 T: git git://github.com/petkan/rtl8150.git
14061 W: https://github.com/petkan/rtl8150
14063 F: drivers/net/usb/rtl8150.c
14065 USB SERIAL SUBSYSTEM
14066 M: Johan Hovold <johan@kernel.org>
14067 L: linux-usb@vger.kernel.org
14068 T: git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
14070 F: Documentation/usb/usb-serial.txt
14071 F: drivers/usb/serial/
14072 F: include/linux/usb/serial.h
14074 USB SMSC75XX ETHERNET DRIVER
14075 M: Steve Glendinning <steve.glendinning@shawell.net>
14076 L: netdev@vger.kernel.org
14078 F: drivers/net/usb/smsc75xx.*
14080 USB SMSC95XX ETHERNET DRIVER
14081 M: Steve Glendinning <steve.glendinning@shawell.net>
14082 M: Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
14083 L: netdev@vger.kernel.org
14085 F: drivers/net/usb/smsc95xx.*
14088 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
14089 L: linux-usb@vger.kernel.org
14090 W: http://www.linux-usb.org
14091 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
14093 F: Documentation/devicetree/bindings/usb/
14094 F: Documentation/usb/
14096 F: include/linux/usb.h
14097 F: include/linux/usb/
14099 USB TYPEC SUBSYSTEM
14100 M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
14101 L: linux-usb@vger.kernel.org
14103 F: Documentation/ABI/testing/sysfs-class-typec
14104 F: Documentation/usb/typec.rst
14105 F: drivers/usb/typec/
14106 F: include/linux/usb/typec.h
14109 M: Alan Stern <stern@rowland.harvard.edu>
14110 L: linux-usb@vger.kernel.org
14112 F: drivers/usb/host/uhci*
14115 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14116 L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
14117 L: linux-media@vger.kernel.org
14118 T: git git://linuxtv.org/media_tree.git
14119 W: http://www.ideasonboard.org/uvc/
14121 F: drivers/media/usb/uvc/
14122 F: include/uapi/linux/uvcvideo.h
14125 M: Hans Verkuil <hverkuil@xs4all.nl>
14126 L: linux-media@vger.kernel.org
14127 T: git git://linuxtv.org/media_tree.git
14128 W: https://linuxtv.org
14130 F: drivers/media/usb/usbvision/
14133 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14134 L: linux-usb@vger.kernel.org
14136 F: drivers/usb/gadget/function/*uvc*
14137 F: drivers/usb/gadget/legacy/webcam.c
14139 USB WIRELESS RNDIS DRIVER (rndis_wlan)
14140 M: Jussi Kivilinna <jussi.kivilinna@iki.fi>
14141 L: linux-wireless@vger.kernel.org
14143 F: drivers/net/wireless/rndis_wlan.c
14146 M: Mathias Nyman <mathias.nyman@intel.com>
14147 L: linux-usb@vger.kernel.org
14149 F: drivers/usb/host/xhci*
14150 F: drivers/usb/host/pci-quirks*
14153 L: linux-wireless@vger.kernel.org
14154 W: http://linux-lc100020.sourceforge.net
14156 F: drivers/net/wireless/zydas/zd1201.*
14159 M: Antoine Jacquet <royale@zerezo.com>
14160 L: linux-usb@vger.kernel.org
14161 L: linux-media@vger.kernel.org
14162 T: git git://linuxtv.org/media_tree.git
14163 W: http://royale.zerezo.com/zr364xx/
14165 F: Documentation/media/v4l-drivers/zr364xx*
14166 F: drivers/media/usb/zr364xx/
14168 USER-MODE LINUX (UML)
14169 M: Jeff Dike <jdike@addtoit.com>
14170 M: Richard Weinberger <richard@nod.at>
14171 L: user-mode-linux-devel@lists.sourceforge.net
14172 L: user-mode-linux-user@lists.sourceforge.net
14173 W: http://user-mode-linux.sourceforge.net
14174 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
14176 F: Documentation/virtual/uml/
14182 USERSPACE I/O (UIO)
14183 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
14185 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
14186 F: Documentation/driver-api/uio-howto.rst
14188 F: include/linux/uio*.h
14191 M: Karel Zak <kzak@redhat.com>
14192 L: util-linux@vger.kernel.org
14193 W: http://en.wikipedia.org/wiki/Util-linux
14194 T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
14198 M: Christoph Hellwig <hch@lst.de>
14199 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
14200 L: linux-kernel@vger.kernel.org
14201 T: git git://git.infradead.org/users/hch/uuid.git
14204 F: include/linux/uuid.h
14205 F: include/uapi/linux/uuid.h
14209 M: Michal Januszewski <spock@gentoo.org>
14210 L: linux-fbdev@vger.kernel.org
14211 W: http://dev.gentoo.org/~spock/projects/uvesafb/
14213 F: Documentation/fb/uvesafb.txt
14214 F: drivers/video/fbdev/uvesafb.*
14217 M: Stefan Agner <stefan@agner.ch>
14218 L: linux-mtd@lists.infradead.org
14220 F: drivers/mtd/nand/vf610_nfc.c
14222 VFAT/FAT/MSDOS FILESYSTEM
14223 M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
14225 F: Documentation/filesystems/vfat.txt
14229 M: Alex Williamson <alex.williamson@redhat.com>
14230 L: kvm@vger.kernel.org
14231 T: git git://github.com/awilliam/linux-vfio.git
14233 F: Documentation/vfio.txt
14235 F: include/linux/vfio.h
14236 F: include/uapi/linux/vfio.h
14238 VFIO MEDIATED DEVICE DRIVERS
14239 M: Kirti Wankhede <kwankhede@nvidia.com>
14240 L: kvm@vger.kernel.org
14242 F: Documentation/vfio-mediated-device.txt
14243 F: drivers/vfio/mdev/
14244 F: include/linux/mdev.h
14245 F: samples/vfio-mdev/
14247 VFIO PLATFORM DRIVER
14248 M: Baptiste Reynal <b.reynal@virtualopensystems.com>
14249 L: kvm@vger.kernel.org
14251 F: drivers/vfio/platform/
14254 R: Lukas Wunner <lukas@wunner.de>
14256 F: Documentation/gpu/vga-switcheroo.rst
14257 F: drivers/gpu/vga/vga_switcheroo.c
14258 F: include/linux/vga_switcheroo.h
14259 T: git git://anongit.freedesktop.org/drm/drm-misc
14261 VIA RHINE NETWORK DRIVER
14263 F: drivers/net/ethernet/via/via-rhine.c
14265 VIA SD/MMC CARD CONTROLLER DRIVER
14266 M: Bruce Chang <brucechang@via.com.tw>
14267 M: Harald Welte <HaraldWelte@viatech.com>
14269 F: drivers/mmc/host/via-sdmmc.c
14271 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
14272 M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
14273 L: linux-fbdev@vger.kernel.org
14275 F: include/linux/via-core.h
14276 F: include/linux/via-gpio.h
14277 F: include/linux/via_i2c.h
14278 F: drivers/video/fbdev/via/
14280 VIA VELOCITY NETWORK DRIVER
14281 M: Francois Romieu <romieu@fr.zoreil.com>
14282 L: netdev@vger.kernel.org
14284 F: drivers/net/ethernet/via/via-velocity.*
14286 VIDEO MULTIPLEXER DRIVER
14287 M: Philipp Zabel <p.zabel@pengutronix.de>
14288 L: linux-media@vger.kernel.org
14290 F: drivers/media/platform/video-mux.c
14292 VIDEOBUF2 FRAMEWORK
14293 M: Pawel Osciak <pawel@osciak.com>
14294 M: Marek Szyprowski <m.szyprowski@samsung.com>
14295 M: Kyungmin Park <kyungmin.park@samsung.com>
14296 L: linux-media@vger.kernel.org
14298 F: drivers/media/v4l2-core/videobuf2-*
14299 F: include/media/videobuf2-*
14301 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
14302 M: Helen Koike <helen.koike@collabora.com>
14303 L: linux-media@vger.kernel.org
14304 T: git git://linuxtv.org/media_tree.git
14305 W: https://linuxtv.org
14307 F: drivers/media/platform/vimc/*
14310 M: Alex Williamson <alex.williamson@redhat.com>
14311 M: Paolo Bonzini <pbonzini@redhat.com>
14312 L: kvm@vger.kernel.org
14316 VIRTIO AND VHOST VSOCK DRIVER
14317 M: Stefan Hajnoczi <stefanha@redhat.com>
14318 L: kvm@vger.kernel.org
14319 L: virtualization@lists.linux-foundation.org
14320 L: netdev@vger.kernel.org
14322 F: include/linux/virtio_vsock.h
14323 F: include/uapi/linux/virtio_vsock.h
14324 F: include/uapi/linux/vsockmon.h
14325 F: net/vmw_vsock/af_vsock_tap.c
14326 F: net/vmw_vsock/virtio_transport_common.c
14327 F: net/vmw_vsock/virtio_transport.c
14328 F: drivers/net/vsockmon.c
14329 F: drivers/vhost/vsock.c
14330 F: drivers/vhost/vsock.h
14332 VIRTIO CONSOLE DRIVER
14333 M: Amit Shah <amit@kernel.org>
14334 L: virtualization@lists.linux-foundation.org
14336 F: drivers/char/virtio_console.c
14337 F: include/linux/virtio_console.h
14338 F: include/uapi/linux/virtio_console.h
14340 VIRTIO CORE, NET AND BLOCK DRIVERS
14341 M: "Michael S. Tsirkin" <mst@redhat.com>
14342 M: Jason Wang <jasowang@redhat.com>
14343 L: virtualization@lists.linux-foundation.org
14345 F: Documentation/devicetree/bindings/virtio/
14348 F: drivers/net/virtio_net.c
14349 F: drivers/block/virtio_blk.c
14350 F: include/linux/virtio*.h
14351 F: include/uapi/linux/virtio_*.h
14352 F: drivers/crypto/virtio/
14353 F: mm/balloon_compaction.c
14355 VIRTIO CRYPTO DRIVER
14356 M: Gonglei <arei.gonglei@huawei.com>
14357 L: virtualization@lists.linux-foundation.org
14358 L: linux-crypto@vger.kernel.org
14360 F: drivers/crypto/virtio/
14361 F: include/uapi/linux/virtio_crypto.h
14363 VIRTIO DRIVERS FOR S390
14364 M: Cornelia Huck <cohuck@redhat.com>
14365 M: Halil Pasic <pasic@linux.vnet.ibm.com>
14366 L: linux-s390@vger.kernel.org
14367 L: virtualization@lists.linux-foundation.org
14368 L: kvm@vger.kernel.org
14370 F: drivers/s390/virtio/
14371 F: arch/s390/include/uapi/asm/virtio-ccw.h
14374 M: David Airlie <airlied@linux.ie>
14375 M: Gerd Hoffmann <kraxel@redhat.com>
14376 L: dri-devel@lists.freedesktop.org
14377 L: virtualization@lists.linux-foundation.org
14378 T: git git://anongit.freedesktop.org/drm/drm-misc
14380 F: drivers/gpu/drm/virtio/
14381 F: include/uapi/linux/virtio_gpu.h
14383 VIRTIO HOST (VHOST)
14384 M: "Michael S. Tsirkin" <mst@redhat.com>
14385 M: Jason Wang <jasowang@redhat.com>
14386 L: kvm@vger.kernel.org
14387 L: virtualization@lists.linux-foundation.org
14388 L: netdev@vger.kernel.org
14389 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
14392 F: include/uapi/linux/vhost.h
14394 VIRTIO INPUT DRIVER
14395 M: Gerd Hoffmann <kraxel@redhat.com>
14397 F: drivers/virtio/virtio_input.c
14398 F: include/uapi/linux/virtio_input.h
14400 VIRTUAL SERIO DEVICE DRIVER
14401 M: Stephen Chandler Paul <thatslyude@gmail.com>
14403 F: drivers/input/serio/userio.c
14404 F: include/uapi/linux/userio.h
14406 VIVID VIRTUAL VIDEO DRIVER
14407 M: Hans Verkuil <hverkuil@xs4all.nl>
14408 L: linux-media@vger.kernel.org
14409 T: git git://linuxtv.org/media_tree.git
14410 W: https://linuxtv.org
14412 F: drivers/media/platform/vivid/*
14415 M: Florian Fainelli <f.fainelli@gmail.com>
14416 L: openwrt-devel@lists.openwrt.org (subscribers-only)
14418 F: drivers/vlynq/vlynq.c
14419 F: include/linux/vlynq.h
14422 M: Martyn Welch <martyn@welchs.me.uk>
14423 M: Manohar Vanga <manohar.vanga@gmail.com>
14424 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
14425 L: devel@driverdev.osuosl.org
14427 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
14428 F: Documentation/driver-api/vme.rst
14429 F: drivers/staging/vme/
14431 F: include/linux/vme*
14433 VMWARE BALLOON DRIVER
14434 M: Xavier Deguillard <xdeguillard@vmware.com>
14435 M: Philip Moltmann <moltmann@vmware.com>
14436 M: "VMware, Inc." <pv-drivers@vmware.com>
14437 L: linux-kernel@vger.kernel.org
14439 F: drivers/misc/vmw_balloon.c
14441 VMWARE HYPERVISOR INTERFACE
14442 M: Alok Kataria <akataria@vmware.com>
14443 L: virtualization@lists.linux-foundation.org
14445 F: arch/x86/kernel/cpu/vmware.c
14447 VMWARE PVRDMA DRIVER
14448 M: Adit Ranadive <aditr@vmware.com>
14449 M: VMware PV-Drivers <pv-drivers@vmware.com>
14450 L: linux-rdma@vger.kernel.org
14452 F: drivers/infiniband/hw/vmw_pvrdma/
14454 VMware PVSCSI driver
14455 M: Jim Gill <jgill@vmware.com>
14456 M: VMware PV-Drivers <pv-drivers@vmware.com>
14457 L: linux-scsi@vger.kernel.org
14459 F: drivers/scsi/vmw_pvscsi.c
14460 F: drivers/scsi/vmw_pvscsi.h
14462 VMWARE VMMOUSE SUBDRIVER
14463 M: "VMware Graphics" <linux-graphics-maintainer@vmware.com>
14464 M: "VMware, Inc." <pv-drivers@vmware.com>
14465 L: linux-input@vger.kernel.org
14467 F: drivers/input/mouse/vmmouse.c
14468 F: drivers/input/mouse/vmmouse.h
14470 VMWARE VMXNET3 ETHERNET DRIVER
14471 M: Shrikrishna Khare <skhare@vmware.com>
14472 M: "VMware, Inc." <pv-drivers@vmware.com>
14473 L: netdev@vger.kernel.org
14475 F: drivers/net/vmxnet3/
14477 VOCORE VOCORE2 BOARD
14478 M: Harvey Hunt <harveyhuntnexus@gmail.com>
14479 L: linux-mips@linux-mips.org
14481 F: arch/mips/boot/dts/ralink/vocore2.dts
14483 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
14484 M: Liam Girdwood <lgirdwood@gmail.com>
14485 M: Mark Brown <broonie@kernel.org>
14486 L: linux-kernel@vger.kernel.org
14487 W: http://www.slimlogic.co.uk/?p=48
14488 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
14490 F: Documentation/devicetree/bindings/regulator/
14491 F: drivers/regulator/
14492 F: include/dt-bindings/regulator/
14493 F: include/linux/regulator/
14496 M: David Ahern <dsa@cumulusnetworks.com>
14497 M: Shrijeet Mukherjee <shm@cumulusnetworks.com>
14498 L: netdev@vger.kernel.org
14500 F: drivers/net/vrf.c
14501 F: Documentation/networking/vrf.txt
14503 VT1211 HARDWARE MONITOR DRIVER
14504 M: Juerg Haefliger <juergh@gmail.com>
14505 L: linux-hwmon@vger.kernel.org
14507 F: Documentation/hwmon/vt1211
14508 F: drivers/hwmon/vt1211.c
14510 VT8231 HARDWARE MONITOR DRIVER
14511 M: Roger Lucas <vt8231@hiddenengine.co.uk>
14512 L: linux-hwmon@vger.kernel.org
14514 F: drivers/hwmon/vt8231.c
14516 VUB300 USB to SDIO/SD/MMC bridge chip
14517 M: Tony Olech <tony.olech@elandigitalsystems.com>
14518 L: linux-mmc@vger.kernel.org
14519 L: linux-usb@vger.kernel.org
14521 F: drivers/mmc/host/vub300.c
14523 W1 DALLAS'S 1-WIRE BUS
14524 M: Evgeniy Polyakov <zbr@ioremap.net>
14526 F: Documentation/w1/
14528 F: include/linux/w1.h
14530 W83791D HARDWARE MONITORING DRIVER
14531 M: Marc Hulsman <m.hulsman@tudelft.nl>
14532 L: linux-hwmon@vger.kernel.org
14534 F: Documentation/hwmon/w83791d
14535 F: drivers/hwmon/w83791d.c
14537 W83793 HARDWARE MONITORING DRIVER
14538 M: Rudolf Marek <r.marek@assembler.cz>
14539 L: linux-hwmon@vger.kernel.org
14541 F: Documentation/hwmon/w83793
14542 F: drivers/hwmon/w83793.c
14544 W83795 HARDWARE MONITORING DRIVER
14545 M: Jean Delvare <jdelvare@suse.com>
14546 L: linux-hwmon@vger.kernel.org
14548 F: drivers/hwmon/w83795.c
14550 W83L51xD SD/MMC CARD INTERFACE DRIVER
14551 M: Pierre Ossman <pierre@ossman.eu>
14553 F: drivers/mmc/host/wbsd.*
14555 WACOM PROTOCOL 4 SERIAL TABLETS
14556 M: Julian Squires <julian@cipht.net>
14557 M: Hans de Goede <hdegoede@redhat.com>
14558 L: linux-input@vger.kernel.org
14560 F: drivers/input/tablet/wacom_serial4.c
14562 WATCHDOG DEVICE DRIVERS
14563 M: Wim Van Sebroeck <wim@iguana.be>
14564 R: Guenter Roeck <linux@roeck-us.net>
14565 L: linux-watchdog@vger.kernel.org
14566 W: http://www.linux-watchdog.org/
14567 T: git git://www.linux-watchdog.org/linux-watchdog.git
14569 F: Documentation/devicetree/bindings/watchdog/
14570 F: Documentation/watchdog/
14571 F: drivers/watchdog/
14572 F: include/linux/watchdog.h
14573 F: include/uapi/linux/watchdog.h
14575 WHISKEYCOVE PMIC GPIO DRIVER
14576 M: Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
14577 L: linux-gpio@vger.kernel.org
14579 F: drivers/gpio/gpio-wcove.c
14582 M: David Herrmann <dh.herrmann@googlemail.com>
14583 L: linux-input@vger.kernel.org
14585 F: drivers/hid/hid-wiimote*
14587 WILOCITY WIL6210 WIRELESS DRIVER
14588 M: Maya Erez <qca_merez@qca.qualcomm.com>
14589 L: linux-wireless@vger.kernel.org
14590 L: wil6210@qca.qualcomm.com
14592 W: http://wireless.kernel.org/en/users/Drivers/wil6210
14593 F: drivers/net/wireless/ath/wil6210/
14594 F: include/uapi/linux/wil6210_uapi.h
14597 M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
14598 M: linux-wimax@intel.com
14599 L: wimax@linuxwimax.org (subscribers-only)
14601 W: http://linuxwimax.org
14602 F: Documentation/wimax/README.wimax
14603 F: include/linux/wimax/debug.h
14604 F: include/net/wimax.h
14605 F: include/uapi/linux/wimax.h
14609 M: David Härdeman <david@hardeman.nu>
14611 F: drivers/media/rc/winbond-cir.c
14613 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
14614 M: William Breathitt Gray <vilhelm.gray@gmail.com>
14615 L: linux-watchdog@vger.kernel.org
14617 F: drivers/watchdog/ebc-c384_wdt.c
14619 WINSYSTEMS WS16C48 GPIO DRIVER
14620 M: William Breathitt Gray <vilhelm.gray@gmail.com>
14621 L: linux-gpio@vger.kernel.org
14623 F: drivers/gpio/gpio-ws16c48.c
14625 WISTRON LAPTOP BUTTON DRIVER
14626 M: Miloslav Trmac <mitr@volny.cz>
14628 F: drivers/input/misc/wistron_btns.c
14630 WL3501 WIRELESS PCMCIA CARD DRIVER
14631 L: linux-wireless@vger.kernel.org
14633 F: drivers/net/wireless/wl3501*
14635 WOLFSON MICROELECTRONICS DRIVERS
14636 L: patches@opensource.cirrus.com
14637 T: git https://github.com/CirrusLogic/linux-drivers.git
14638 W: https://github.com/CirrusLogic/linux-drivers/wiki
14640 F: Documentation/hwmon/wm83??
14641 F: Documentation/devicetree/bindings/extcon/extcon-arizona.txt
14642 F: Documentation/devicetree/bindings/regulator/arizona-regulator.txt
14643 F: Documentation/devicetree/bindings/mfd/arizona.txt
14644 F: Documentation/devicetree/bindings/mfd/wm831x.txt
14645 F: Documentation/devicetree/bindings/sound/wlf,arizona.txt
14646 F: arch/arm/mach-s3c64xx/mach-crag6410*
14647 F: drivers/clk/clk-wm83*.c
14648 F: drivers/extcon/extcon-arizona.c
14649 F: drivers/leds/leds-wm83*.c
14650 F: drivers/gpio/gpio-*wm*.c
14651 F: drivers/gpio/gpio-arizona.c
14652 F: drivers/hwmon/wm83??-hwmon.c
14653 F: drivers/input/misc/wm831x-on.c
14654 F: drivers/input/touchscreen/wm831x-ts.c
14655 F: drivers/input/touchscreen/wm97*.c
14656 F: drivers/mfd/arizona*
14657 F: drivers/mfd/wm*.c
14658 F: drivers/mfd/cs47l24*
14659 F: drivers/power/supply/wm83*.c
14660 F: drivers/rtc/rtc-wm83*.c
14661 F: drivers/regulator/wm8*.c
14662 F: drivers/regulator/arizona*
14663 F: drivers/video/backlight/wm83*_bl.c
14664 F: drivers/watchdog/wm83*_wdt.c
14665 F: include/linux/mfd/arizona/
14666 F: include/linux/mfd/wm831x/
14667 F: include/linux/mfd/wm8350/
14668 F: include/linux/mfd/wm8400*
14669 F: include/linux/regulator/arizona*
14670 F: include/linux/wm97xx.h
14671 F: include/sound/wm????.h
14672 F: sound/soc/codecs/arizona.?
14673 F: sound/soc/codecs/wm*
14674 F: sound/soc/codecs/cs47l24*
14677 M: Tejun Heo <tj@kernel.org>
14678 R: Lai Jiangshan <jiangshanlai@gmail.com>
14679 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
14681 F: include/linux/workqueue.h
14682 F: kernel/workqueue.c
14683 F: Documentation/core-api/workqueue.rst
14685 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
14686 M: Chen-Yu Tsai <wens@csie.org>
14687 L: linux-kernel@vger.kernel.org
14692 M: Andrew Hendry <andrew.hendry@gmail.com>
14693 L: linux-x25@vger.kernel.org
14695 F: Documentation/networking/x25*
14696 F: include/net/x25*
14699 X86 ARCHITECTURE (32-BIT AND 64-BIT)
14700 M: Thomas Gleixner <tglx@linutronix.de>
14701 M: Ingo Molnar <mingo@redhat.com>
14702 M: "H. Peter Anvin" <hpa@zytor.com>
14704 L: linux-kernel@vger.kernel.org
14705 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
14707 F: Documentation/x86/
14710 X86 MCE INFRASTRUCTURE
14711 M: Tony Luck <tony.luck@intel.com>
14712 M: Borislav Petkov <bp@alien8.de>
14713 L: linux-edac@vger.kernel.org
14715 F: arch/x86/kernel/cpu/mcheck/*
14717 X86 MICROCODE UPDATE SUPPORT
14718 M: Borislav Petkov <bp@alien8.de>
14720 F: arch/x86/kernel/cpu/microcode/*
14722 X86 PLATFORM DRIVERS
14723 M: Darren Hart <dvhart@infradead.org>
14724 M: Andy Shevchenko <andy@infradead.org>
14725 L: platform-driver-x86@vger.kernel.org
14726 T: git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
14728 F: drivers/platform/x86/
14729 F: drivers/platform/olpc/
14732 M: Andy Lutomirski <luto@amacapital.net>
14733 L: linux-kernel@vger.kernel.org
14734 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
14736 F: arch/x86/entry/vdso/
14738 XC2028/3028 TUNER DRIVER
14739 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
14740 M: Mauro Carvalho Chehab <mchehab@kernel.org>
14741 L: linux-media@vger.kernel.org
14742 W: https://linuxtv.org
14743 T: git git://linuxtv.org/media_tree.git
14745 F: drivers/media/tuners/tuner-xc2028.*
14747 XEN BLOCK SUBSYSTEM
14748 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
14749 M: Roger Pau Monné <roger.pau@citrix.com>
14750 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
14752 F: drivers/block/xen-blkback/*
14753 F: drivers/block/xen*
14756 M: Stefano Stabellini <sstabellini@kernel.org>
14757 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
14760 F: arch/arm/include/asm/xen/
14762 XEN HYPERVISOR ARM64
14763 M: Stefano Stabellini <sstabellini@kernel.org>
14764 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
14767 F: arch/arm64/include/asm/xen/
14769 XEN HYPERVISOR INTERFACE
14770 M: Boris Ostrovsky <boris.ostrovsky@oracle.com>
14771 M: Juergen Gross <jgross@suse.com>
14772 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
14773 T: git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
14776 F: drivers/*/xen-*front.c
14778 F: arch/x86/include/asm/xen/
14780 F: include/uapi/xen/
14781 F: Documentation/ABI/stable/sysfs-hypervisor-xen
14782 F: Documentation/ABI/testing/sysfs-hypervisor-xen
14784 XEN NETWORK BACKEND DRIVER
14785 M: Wei Liu <wei.liu2@citrix.com>
14786 M: Paul Durrant <paul.durrant@citrix.com>
14787 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
14788 L: netdev@vger.kernel.org
14790 F: drivers/net/xen-netback/*
14793 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
14794 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
14796 F: arch/x86/pci/*xen*
14797 F: drivers/pci/*xen*
14800 M: Juergen Gross <jgross@suse.com>
14801 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
14802 L: linux-scsi@vger.kernel.org
14804 F: drivers/scsi/xen-scsifront.c
14805 F: drivers/xen/xen-scsiback.c
14806 F: include/xen/interface/io/vscsiif.h
14808 XEN SWIOTLB SUBSYSTEM
14809 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
14810 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
14812 F: arch/x86/xen/*swiotlb*
14813 F: drivers/xen/*swiotlb*
14816 M: Darrick J. Wong <darrick.wong@oracle.com>
14817 M: linux-xfs@vger.kernel.org
14818 L: linux-xfs@vger.kernel.org
14820 T: git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
14822 F: Documentation/filesystems/xfs.txt
14825 XILINX AXI ETHERNET DRIVER
14826 M: Anirudha Sarangi <anirudh@xilinx.com>
14827 M: John Linn <John.Linn@xilinx.com>
14829 F: drivers/net/ethernet/xilinx/xilinx_axienet*
14831 XILINX UARTLITE SERIAL DRIVER
14832 M: Peter Korsgaard <jacmet@sunsite.dk>
14833 L: linux-serial@vger.kernel.org
14835 F: drivers/tty/serial/uartlite.c
14837 XILINX VIDEO IP CORES
14838 M: Hyun Kwon <hyun.kwon@xilinx.com>
14839 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14840 L: linux-media@vger.kernel.org
14841 T: git git://linuxtv.org/media_tree.git
14843 F: Documentation/devicetree/bindings/media/xilinx/
14844 F: drivers/media/platform/xilinx/
14845 F: include/uapi/linux/xilinx-v4l2-controls.h
14848 M: Eli Billauer <eli.billauer@gmail.com>
14849 L: linux-kernel@vger.kernel.org
14851 F: drivers/char/xillybus/
14853 XRA1403 GPIO EXPANDER
14854 M: Nandor Han <nandor.han@ge.com>
14855 M: Semi Malinen <semi.malinen@ge.com>
14856 L: linux-gpio@vger.kernel.org
14858 F: drivers/gpio/gpio-xra1403.c
14859 F: Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
14861 XTENSA XTFPGA PLATFORM SUPPORT
14862 M: Max Filippov <jcmvbkbc@gmail.com>
14863 L: linux-xtensa@linux-xtensa.org
14865 F: drivers/spi/spi-xtensa-xtfpga.c
14866 F: sound/soc/xtensa/xtfpga-i2s.c
14868 YAM DRIVER FOR AX.25
14869 M: Jean-Paul Roubelat <jpr@f6fbb.org>
14870 L: linux-hams@vger.kernel.org
14872 F: drivers/net/hamradio/yam*
14873 F: include/linux/yam.h
14875 YAMA SECURITY MODULE
14876 M: Kees Cook <keescook@chromium.org>
14877 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
14880 F: Documentation/admin-guide/LSM/Yama.rst
14882 YEALINK PHONE DRIVER
14883 M: Henk Vergonet <Henk.Vergonet@gmail.com>
14884 L: usbb2k-api-dev@nongnu.org
14886 F: Documentation/input/yealink.rst
14887 F: drivers/input/misc/yealink.*
14889 Z8530 DRIVER FOR AX.25
14890 M: Joerg Reuter <jreuter@yaina.de>
14891 W: http://yaina.de/jreuter/
14892 W: http://www.qsl.net/dl1bke/
14893 L: linux-hams@vger.kernel.org
14895 F: Documentation/networking/z8530drv.txt
14896 F: drivers/net/hamradio/*scc.c
14897 F: drivers/net/hamradio/z8530.h
14899 ZBUD COMPRESSED PAGE ALLOCATOR
14900 M: Seth Jennings <sjenning@redhat.com>
14901 M: Dan Streetman <ddstreet@ieee.org>
14902 L: linux-mm@kvack.org
14905 F: include/linux/zbud.h
14907 ZD1211RW WIRELESS DRIVER
14908 M: Daniel Drake <dsd@gentoo.org>
14909 M: Ulrich Kunitz <kune@deine-taler.de>
14910 W: http://zd1211.ath.cx/wiki/DriverRewrite
14911 L: linux-wireless@vger.kernel.org
14912 L: zd1211-devs@lists.sourceforge.net (subscribers-only)
14914 F: drivers/net/wireless/zydas/zd1211rw/
14916 ZD1301 MEDIA DRIVER
14917 M: Antti Palosaari <crope@iki.fi>
14918 L: linux-media@vger.kernel.org
14919 W: https://linuxtv.org/
14920 W: http://palosaari.fi/linux/
14921 Q: https://patchwork.linuxtv.org/project/linux-media/list/
14923 F: drivers/media/usb/dvb-usb-v2/zd1301*
14925 ZD1301_DEMOD MEDIA DRIVER
14926 M: Antti Palosaari <crope@iki.fi>
14927 L: linux-media@vger.kernel.org
14928 W: https://linuxtv.org/
14929 W: http://palosaari.fi/linux/
14930 Q: https://patchwork.linuxtv.org/project/linux-media/list/
14932 F: drivers/media/dvb-frontends/zd1301_demod*
14934 ZPOOL COMPRESSED PAGE STORAGE API
14935 M: Dan Streetman <ddstreet@ieee.org>
14936 L: linux-mm@kvack.org
14939 F: include/linux/zpool.h
14941 ZR36067 VIDEO FOR LINUX DRIVER
14942 L: mjpeg-users@lists.sourceforge.net
14943 L: linux-media@vger.kernel.org
14944 W: http://mjpeg.sourceforge.net/driver-zoran/
14945 T: hg https://linuxtv.org/hg/v4l-dvb
14947 F: drivers/media/pci/zoran/
14949 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
14950 M: Minchan Kim <minchan@kernel.org>
14951 M: Nitin Gupta <ngupta@vflare.org>
14952 R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
14953 L: linux-kernel@vger.kernel.org
14955 F: drivers/block/zram/
14956 F: Documentation/blockdev/zram.txt
14958 ZS DECSTATION Z85C30 SERIAL DRIVER
14959 M: "Maciej W. Rozycki" <macro@linux-mips.org>
14961 F: drivers/tty/serial/zs.*
14963 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
14964 M: Minchan Kim <minchan@kernel.org>
14965 M: Nitin Gupta <ngupta@vflare.org>
14966 R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
14967 L: linux-mm@kvack.org
14970 F: include/linux/zsmalloc.h
14971 F: Documentation/vm/zsmalloc.txt
14973 ZSWAP COMPRESSED SWAP CACHING
14974 M: Seth Jennings <sjenning@redhat.com>
14975 M: Dan Streetman <ddstreet@ieee.org>
14976 L: linux-mm@kvack.org
14981 M: Linus Torvalds <torvalds@linux-foundation.org>
14982 L: linux-kernel@vger.kernel.org
14983 Q: http://patchwork.kernel.org/project/LKML/list/
14984 T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
14985 S: Buried alive in reporters