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: Zhang Rui <rui.zhang@intel.com>
357 L: linux-acpi@vger.kernel.org
358 W: https://01.org/linux-acpi
359 B: https://bugzilla.kernel.org
361 F: drivers/acpi/*thermal*
364 M: Zhang Rui <rui.zhang@intel.com>
365 L: linux-acpi@vger.kernel.org
366 W: https://01.org/linux-acpi
367 B: https://bugzilla.kernel.org
369 F: drivers/acpi/acpi_video.c
372 L: platform-driver-x86@vger.kernel.org
374 F: drivers/platform/x86/wmi.c
376 AD1889 ALSA SOUND DRIVER
377 M: Thibaut Varene <T-Bone@parisc-linux.org>
378 W: http://wiki.parisc-linux.org/AD1889
379 L: linux-parisc@vger.kernel.org
381 F: sound/pci/ad1889.*
383 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
384 M: Michael Hennerich <michael.hennerich@analog.com>
385 W: http://wiki.analog.com/AD5254
386 W: http://ez.analog.com/community/linux-device-drivers
388 F: drivers/misc/ad525x_dpot.c
390 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
391 M: Michael Hennerich <michael.hennerich@analog.com>
392 W: http://wiki.analog.com/AD5398
393 W: http://ez.analog.com/community/linux-device-drivers
395 F: drivers/regulator/ad5398.c
397 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
398 M: Michael Hennerich <michael.hennerich@analog.com>
399 W: http://wiki.analog.com/AD7142
400 W: http://ez.analog.com/community/linux-device-drivers
402 F: drivers/input/misc/ad714x.c
404 AD7877 TOUCHSCREEN DRIVER
405 M: Michael Hennerich <michael.hennerich@analog.com>
406 W: http://wiki.analog.com/AD7877
407 W: http://ez.analog.com/community/linux-device-drivers
409 F: drivers/input/touchscreen/ad7877.c
411 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
412 M: Michael Hennerich <michael.hennerich@analog.com>
413 W: http://wiki.analog.com/AD7879
414 W: http://ez.analog.com/community/linux-device-drivers
416 F: drivers/input/touchscreen/ad7879.c
418 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
419 M: Jiri Kosina <jikos@kernel.org>
422 ADF7242 IEEE 802.15.4 RADIO DRIVER
423 M: Michael Hennerich <michael.hennerich@analog.com>
424 W: https://wiki.analog.com/ADF7242
425 W: http://ez.analog.com/community/linux-device-drivers
426 L: linux-wpan@vger.kernel.org
428 F: drivers/net/ieee802154/adf7242.c
429 F: Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
431 ADM1025 HARDWARE MONITOR DRIVER
432 M: Jean Delvare <jdelvare@suse.com>
433 L: linux-hwmon@vger.kernel.org
435 F: Documentation/hwmon/adm1025
436 F: drivers/hwmon/adm1025.c
438 ADM1029 HARDWARE MONITOR DRIVER
439 M: Corentin Labbe <clabbe.montjoie@gmail.com>
440 L: linux-hwmon@vger.kernel.org
442 F: drivers/hwmon/adm1029.c
444 ADM8211 WIRELESS DRIVER
445 L: linux-wireless@vger.kernel.org
446 W: http://wireless.kernel.org/
448 F: drivers/net/wireless/admtek/adm8211.*
450 ADP1653 FLASH CONTROLLER DRIVER
451 M: Sakari Ailus <sakari.ailus@iki.fi>
452 L: linux-media@vger.kernel.org
454 F: drivers/media/i2c/adp1653.c
455 F: include/media/i2c/adp1653.h
457 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
458 M: Michael Hennerich <michael.hennerich@analog.com>
459 W: http://wiki.analog.com/ADP5520
460 W: http://ez.analog.com/community/linux-device-drivers
462 F: drivers/mfd/adp5520.c
463 F: drivers/video/backlight/adp5520_bl.c
464 F: drivers/leds/leds-adp5520.c
465 F: drivers/gpio/gpio-adp5520.c
466 F: drivers/input/keyboard/adp5520-keys.c
468 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
469 M: Michael Hennerich <michael.hennerich@analog.com>
470 W: http://wiki.analog.com/ADP5588
471 W: http://ez.analog.com/community/linux-device-drivers
473 F: drivers/input/keyboard/adp5588-keys.c
474 F: drivers/gpio/gpio-adp5588.c
476 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
477 M: Michael Hennerich <michael.hennerich@analog.com>
478 W: http://wiki.analog.com/ADP8860
479 W: http://ez.analog.com/community/linux-device-drivers
481 F: drivers/video/backlight/adp8860_bl.c
483 ADS1015 HARDWARE MONITOR DRIVER
484 M: Dirk Eibach <eibach@gdsys.de>
485 L: linux-hwmon@vger.kernel.org
487 F: Documentation/hwmon/ads1015
488 F: drivers/hwmon/ads1015.c
489 F: include/linux/platform_data/ads1015.h
492 M: Colin Leroy <colin@colino.net>
494 F: drivers/macintosh/therm_adt746x.c
496 ADT7475 HARDWARE MONITOR DRIVER
497 M: Jean Delvare <jdelvare@suse.com>
498 L: linux-hwmon@vger.kernel.org
500 F: Documentation/hwmon/adt7475
501 F: drivers/hwmon/adt7475.c
504 M: Matthew Wilcox <matthew@wil.cx>
505 M: Hannes Reinecke <hare@suse.com>
506 L: linux-scsi@vger.kernel.org
508 F: Documentation/scsi/advansys.txt
509 F: drivers/scsi/advansys.c
511 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
512 M: Michael Hennerich <michael.hennerich@analog.com>
513 W: http://wiki.analog.com/ADXL345
514 W: http://ez.analog.com/community/linux-device-drivers
516 F: drivers/input/misc/adxl34x.c
519 M: Riccardo Facchetti <fizban@tin.it>
521 F: sound/oss/aedsp16.c
524 M: Antti Palosaari <crope@iki.fi>
525 L: linux-media@vger.kernel.org
526 W: https://linuxtv.org
527 W: http://palosaari.fi/linux/
528 Q: http://patchwork.linuxtv.org/project/linux-media/list/
529 T: git git://linuxtv.org/anttip/media_tree.git
531 F: drivers/media/dvb-frontends/af9013*
534 M: Antti Palosaari <crope@iki.fi>
535 L: linux-media@vger.kernel.org
536 W: https://linuxtv.org
537 W: http://palosaari.fi/linux/
538 Q: http://patchwork.linuxtv.org/project/linux-media/list/
539 T: git git://linuxtv.org/anttip/media_tree.git
541 F: drivers/media/dvb-frontends/af9033*
544 L: linux-fsdevel@vger.kernel.org
546 F: Documentation/filesystems/affs.txt
549 AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
550 M: David Howells <dhowells@redhat.com>
551 L: linux-afs@lists.infradead.org
554 F: include/net/af_rxrpc.h
555 F: net/rxrpc/af_rxrpc.c
556 W: https://www.infradead.org/~dhowells/kafs/
559 M: David Airlie <airlied@linux.ie>
560 T: git git://people.freedesktop.org/~airlied/linux (part of drm maint)
563 F: include/linux/agp*
564 F: include/uapi/linux/agp*
567 M: "Juergen E. Fischer" <fischer@norbit.de>
568 L: linux-scsi@vger.kernel.org
570 F: drivers/scsi/aha152x*
571 F: drivers/scsi/pcmcia/aha152x*
573 AIC7XXX / AIC79XX SCSI DRIVER
574 M: Hannes Reinecke <hare@suse.com>
575 L: linux-scsi@vger.kernel.org
577 F: drivers/scsi/aic7xxx/
579 AIMSLAB FM RADIO RECEIVER DRIVER
580 M: Hans Verkuil <hverkuil@xs4all.nl>
581 L: linux-media@vger.kernel.org
582 T: git git://linuxtv.org/media_tree.git
583 W: https://linuxtv.org
585 F: drivers/media/radio/radio-aimslab*
588 M: Benjamin LaHaise <bcrl@kvack.org>
589 L: linux-aio@kvack.org
592 F: include/linux/*aio*.h
595 M: Antti Palosaari <crope@iki.fi>
596 L: linux-media@vger.kernel.org
597 W: https://linuxtv.org
598 W: http://palosaari.fi/linux/
599 Q: http://patchwork.linuxtv.org/project/linux-media/list/
600 T: git git://linuxtv.org/anttip/media_tree.git
602 F: drivers/media/usb/airspy/
604 ALACRITECH GIGABIT ETHERNET DRIVER
605 M: Lino Sanfilippo <LinoSanfilippo@gmx.de>
607 F: drivers/net/ethernet/alacritech/*
609 ALCATEL SPEEDTOUCH USB DRIVER
610 M: Duncan Sands <duncan.sands@free.fr>
611 L: linux-usb@vger.kernel.org
612 W: http://www.linux-usb.org/SpeedTouch/
614 F: drivers/usb/atm/speedtch.c
615 F: drivers/usb/atm/usbatm.c
617 ALCHEMY AU1XX0 MMC DRIVER
618 M: Manuel Lauss <manuel.lauss@gmail.com>
620 F: drivers/mmc/host/au1xmmc.c
623 M: Rudolf Marek <r.marek@assembler.cz>
624 L: linux-i2c@vger.kernel.org
626 F: Documentation/i2c/busses/i2c-ali1563
627 F: drivers/i2c/busses/i2c-ali1563.c
629 ALLWINNER SECURITY SYSTEM
630 M: Corentin Labbe <clabbe.montjoie@gmail.com>
631 L: linux-crypto@vger.kernel.org
633 F: drivers/crypto/sunxi-ss/
636 M: Richard Henderson <rth@twiddle.net>
637 M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
638 M: Matt Turner <mattst88@gmail.com>
640 L: linux-alpha@vger.kernel.org
643 ALPS PS/2 TOUCHPAD DRIVER
644 R: Pali Rohár <pali.rohar@gmail.com>
645 F: drivers/input/mouse/alps.*
647 ALTERA MAILBOX DRIVER
648 M: Ley Foon Tan <lftan@altera.com>
649 L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
651 F: drivers/mailbox/mailbox-altera.c
654 M: Tien Hock Loh <thloh@altera.com>
655 L: linux-gpio@vger.kernel.org
657 F: drivers/gpio/gpio-altera.c
659 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
660 M: Thor Thayer <thor.thayer@linux.intel.com>
662 F: drivers/gpio/gpio-altera-a10sr.c
663 F: drivers/mfd/altera-a10sr.c
664 F: drivers/reset/reset-a10sr.c
665 F: include/linux/mfd/altera-a10sr.h
666 F: include/dt-bindings/reset/altr,rst-mgr-a10sr.h
668 ALTERA TRIPLE SPEED ETHERNET DRIVER
669 M: Vince Bridgers <vbridger@opensource.altera.com>
670 L: netdev@vger.kernel.org
671 L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
673 F: drivers/net/ethernet/altera/
675 ALTERA UART/JTAG UART SERIAL DRIVERS
676 M: Tobias Klauser <tklauser@distanz.ch>
677 L: linux-serial@vger.kernel.org
678 L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
680 F: drivers/tty/serial/altera_uart.c
681 F: drivers/tty/serial/altera_jtaguart.c
682 F: include/linux/altera_uart.h
683 F: include/linux/altera_jtaguart.h
685 AMAZON ETHERNET DRIVERS
686 M: Netanel Belgazal <netanel@annapurnalabs.com>
687 R: Saeed Bishara <saeed@annapurnalabs.com>
688 R: Zorik Machulsky <zorik@annapurnalabs.com>
689 L: netdev@vger.kernel.org
691 F: Documentation/networking/ena.txt
692 F: drivers/net/ethernet/amazon/
694 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
695 M: Tom Lendacky <thomas.lendacky@amd.com>
696 M: Gary Hook <gary.hook@amd.com>
697 L: linux-crypto@vger.kernel.org
699 F: drivers/crypto/ccp/
700 F: include/linux/ccp.h
702 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
703 M: Huang Rui <ray.huang@amd.com>
704 L: linux-hwmon@vger.kernel.org
706 F: Documentation/hwmon/fam15h_power
707 F: drivers/hwmon/fam15h_power.c
709 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
710 L: linux-geode@lists.infradead.org (moderated for non-subscribers)
712 F: drivers/usb/gadget/udc/amd5536udc.*
714 AMD GEODE PROCESSOR/CHIPSET SUPPORT
715 P: Andres Salomon <dilinger@queued.net>
716 L: linux-geode@lists.infradead.org (moderated for non-subscribers)
717 W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
719 F: drivers/char/hw_random/geode-rng.c
720 F: drivers/crypto/geode*
721 F: drivers/video/fbdev/geode/
722 F: arch/x86/include/asm/geode.h
725 M: Joerg Roedel <joro@8bytes.org>
726 L: iommu@lists.linux-foundation.org
727 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
729 F: drivers/iommu/amd_iommu*.[ch]
730 F: include/linux/amd-iommu.h
733 M: Oded Gabbay <oded.gabbay@gmail.com>
734 L: dri-devel@lists.freedesktop.org
735 T: git git://people.freedesktop.org/~gabbayo/linux.git
737 F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
738 F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
739 F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
740 F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
741 F: drivers/gpu/drm/amd/amdkfd/
742 F: drivers/gpu/drm/amd/include/cik_structs.h
743 F: drivers/gpu/drm/amd/include/kgd_kfd_interface.h
744 F: drivers/gpu/drm/amd/include/vi_structs.h
745 F: drivers/gpu/drm/radeon/radeon_kfd.c
746 F: drivers/gpu/drm/radeon/radeon_kfd.h
747 F: include/uapi/linux/kfd_ioctl.h
749 AMD SEATTLE DEVICE TREE SUPPORT
750 M: Brijesh Singh <brijeshkumar.singh@amd.com>
751 M: Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
752 M: Tom Lendacky <thomas.lendacky@amd.com>
754 F: arch/arm64/boot/dts/amd/
757 M: Tom Lendacky <thomas.lendacky@amd.com>
758 L: netdev@vger.kernel.org
760 F: drivers/net/ethernet/amd/xgbe/
761 F: arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
763 AMS (Apple Motion Sensor) DRIVER
764 M: Michael Hanselmann <linux-kernel@hansmi.ch>
766 F: drivers/macintosh/ams/
768 ANALOG DEVICES INC AD9389B DRIVER
769 M: Hans Verkuil <hans.verkuil@cisco.com>
770 L: linux-media@vger.kernel.org
772 F: drivers/media/i2c/ad9389b*
774 ANALOG DEVICES INC ADV7180 DRIVER
775 M: Lars-Peter Clausen <lars@metafoo.de>
776 L: linux-media@vger.kernel.org
777 W: http://ez.analog.com/community/linux-device-drivers
779 F: drivers/media/i2c/adv7180.c
781 ANALOG DEVICES INC ADV748X DRIVER
782 M: Kieran Bingham <kieran.bingham@ideasonboard.com>
783 L: linux-media@vger.kernel.org
785 F: drivers/media/i2c/adv748x/*
787 ANALOG DEVICES INC ADV7511 DRIVER
788 M: Hans Verkuil <hans.verkuil@cisco.com>
789 L: linux-media@vger.kernel.org
791 F: drivers/media/i2c/adv7511*
793 ANALOG DEVICES INC ADV7604 DRIVER
794 M: Hans Verkuil <hans.verkuil@cisco.com>
795 L: linux-media@vger.kernel.org
797 F: drivers/media/i2c/adv7604*
799 ANALOG DEVICES INC ADV7842 DRIVER
800 M: Hans Verkuil <hans.verkuil@cisco.com>
801 L: linux-media@vger.kernel.org
803 F: drivers/media/i2c/adv7842*
805 ANALOG DEVICES INC ASOC CODEC DRIVERS
806 M: Lars-Peter Clausen <lars@metafoo.de>
807 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
808 W: http://wiki.analog.com/
809 W: http://ez.analog.com/community/linux-device-drivers
811 F: sound/soc/codecs/adau*
812 F: sound/soc/codecs/adav*
813 F: sound/soc/codecs/ad1*
814 F: sound/soc/codecs/ad7*
815 F: sound/soc/codecs/ssm*
816 F: sound/soc/codecs/sigmadsp.*
818 ANALOG DEVICES INC ASOC DRIVERS
819 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
820 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
821 W: http://blackfin.uclinux.org/
823 F: sound/soc/blackfin/*
825 ANALOG DEVICES INC DMA DRIVERS
826 M: Lars-Peter Clausen <lars@metafoo.de>
827 W: http://ez.analog.com/community/linux-device-drivers
829 F: drivers/dma/dma-axi-dmac.c
831 ANALOG DEVICES INC IIO DRIVERS
832 M: Lars-Peter Clausen <lars@metafoo.de>
833 M: Michael Hennerich <Michael.Hennerich@analog.com>
834 W: http://wiki.analog.com/
835 W: http://ez.analog.com/community/linux-device-drivers
838 F: drivers/iio/adc/ltc2497*
839 X: drivers/iio/*/adjd*
840 F: drivers/staging/iio/*/ad*
841 F: drivers/staging/iio/trigger/iio-trig-bfin-timer.c
843 ANDROID CONFIG FRAGMENTS
844 M: Rob Herring <robh@kernel.org>
846 F: kernel/configs/android*
849 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
850 M: Arve Hjønnevåg <arve@android.com>
851 M: Riley Andrews <riandrews@android.com>
852 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
853 L: devel@driverdev.osuosl.org
856 F: drivers/staging/android/
858 ANDROID GOLDFISH RTC DRIVER
859 M: Miodrag Dinic <miodrag.dinic@imgtec.com>
861 F: Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
862 F: drivers/rtc/rtc-goldfish.c
865 M: Laura Abbott <labbott@redhat.com>
866 M: Sumit Semwal <sumit.semwal@linaro.org>
867 L: devel@driverdev.osuosl.org
869 F: drivers/staging/android/ion
870 F: drivers/staging/android/uapi/ion.h
871 F: drivers/staging/android/uapi/ion_test.h
873 AOA (Apple Onboard Audio) ALSA DRIVER
874 M: Johannes Berg <johannes@sipsolutions.net>
875 L: linuxppc-dev@lists.ozlabs.org
876 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
880 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
881 M: William Breathitt Gray <vilhelm.gray@gmail.com>
882 L: linux-iio@vger.kernel.org
884 F: drivers/iio/adc/stx104.c
887 M: Jiri Kosina <jikos@kernel.org>
889 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
890 F: arch/x86/kernel/apm_32.c
891 F: include/linux/apm_bios.h
892 F: include/uapi/linux/apm_bios.h
893 F: drivers/char/apm-emulation.c
895 APPARMOR SECURITY MODULE
896 M: John Johansen <john.johansen@canonical.com>
897 L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
898 W: apparmor.wiki.kernel.org
899 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
901 F: security/apparmor/
902 F: Documentation/admin-guide/LSM/apparmor.rst
904 APPLE BCM5974 MULTITOUCH DRIVER
905 M: Henrik Rydberg <rydberg@bitmath.org>
906 L: linux-input@vger.kernel.org
908 F: drivers/input/mouse/bcm5974.c
911 M: Henrik Rydberg <rydberg@bitmath.org>
912 L: linux-hwmon@vger.kernel.org
914 F: drivers/hwmon/applesmc.c
916 APPLETALK NETWORK LAYER
917 L: netdev@vger.kernel.org
919 F: drivers/net/appletalk/
922 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
923 M: Duc Dang <dhdang@apm.com>
925 F: arch/arm64/boot/dts/apm/
927 APPLIED MICRO (APM) X-GENE SOC EDAC
928 M: Loc Ho <lho@apm.com>
930 F: drivers/edac/xgene_edac.c
931 F: Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
933 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
934 M: Iyappan Subramanian <isubramanian@apm.com>
935 M: Keyur Chudgar <kchudgar@apm.com>
937 F: drivers/net/ethernet/apm/xgene-v2/
939 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
940 M: Iyappan Subramanian <isubramanian@apm.com>
941 M: Keyur Chudgar <kchudgar@apm.com>
942 M: Quan Nguyen <qnguyen@apm.com>
944 F: drivers/net/ethernet/apm/xgene/
945 F: drivers/net/phy/mdio-xgene.c
946 F: Documentation/devicetree/bindings/net/apm-xgene-enet.txt
947 F: Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
949 APPLIED MICRO (APM) X-GENE SOC PMU
950 M: Tai Nguyen <ttnguyen@apm.com>
952 F: drivers/perf/xgene_pmu.c
953 F: Documentation/perf/xgene-pmu.txt
954 F: Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
956 APTINA CAMERA SENSOR PLL
957 M: Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
958 L: linux-media@vger.kernel.org
960 F: drivers/media/i2c/aptina-pll.*
962 ARC FRAMEBUFFER DRIVER
963 M: Jaya Kumar <jayalk@intworks.biz>
965 F: drivers/video/fbdev/arcfb.c
966 F: drivers/video/fbdev/core/fb_defio.c
969 M: Alexey Brodkin <abrodkin@synopsys.com>
971 F: drivers/gpu/drm/arc/
972 F: Documentation/devicetree/bindings/display/snps,arcpgu.txt
975 M: Michael Grzeschik <m.grzeschik@pengutronix.de>
976 L: netdev@vger.kernel.org
978 F: drivers/net/arcnet/
979 F: include/uapi/linux/if_arcnet.h
981 ARM ARCHITECTED TIMER DRIVER
982 M: Mark Rutland <mark.rutland@arm.com>
983 M: Marc Zyngier <marc.zyngier@arm.com>
984 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
986 F: arch/arm/include/asm/arch_timer.h
987 F: arch/arm64/include/asm/arch_timer.h
988 F: drivers/clocksource/arm_arch_timer.c
991 M: Liviu Dudau <liviu.dudau@arm.com>
993 F: drivers/gpu/drm/arm/hdlcd_*
994 F: Documentation/devicetree/bindings/display/arm,hdlcd.txt
996 ARM MALI-DP DRM DRIVER
997 M: Liviu Dudau <liviu.dudau@arm.com>
998 M: Brian Starkey <brian.starkey@arm.com>
999 M: Mali DP Maintainers <malidp@foss.arm.com>
1001 F: drivers/gpu/drm/arm/
1002 F: Documentation/devicetree/bindings/display/arm,malidp.txt
1004 ARM MFM AND FLOPPY DRIVERS
1005 M: Ian Molton <spyro@f2s.com>
1007 F: arch/arm/lib/floppydma.S
1008 F: arch/arm/include/asm/floppy.h
1010 ARM PMU PROFILING AND DEBUGGING
1011 M: Will Deacon <will.deacon@arm.com>
1012 M: Mark Rutland <mark.rutland@arm.com>
1014 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1015 F: arch/arm*/kernel/perf_*
1016 F: arch/arm/oprofile/common.c
1017 F: arch/arm*/kernel/hw_breakpoint.c
1018 F: arch/arm*/include/asm/hw_breakpoint.h
1019 F: arch/arm*/include/asm/perf_event.h
1021 F: include/linux/perf/arm_pmu.h
1022 F: Documentation/devicetree/bindings/arm/pmu.txt
1023 F: Documentation/devicetree/bindings/perf/
1026 M: Russell King <linux@armlinux.org.uk>
1027 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1028 W: http://www.armlinux.org.uk/
1030 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git
1033 ARM PRIMECELL AACI PL041 DRIVER
1034 M: Russell King <linux@armlinux.org.uk>
1038 ARM PRIMECELL BUS SUPPORT
1039 M: Russell King <linux@armlinux.org.uk>
1042 F: include/linux/amba/bus.h
1044 ARM PRIMECELL CLCD PL110 DRIVER
1045 M: Russell King <linux@armlinux.org.uk>
1047 F: drivers/video/fbdev/amba-clcd.*
1049 ARM PRIMECELL KMI PL050 DRIVER
1050 M: Russell King <linux@armlinux.org.uk>
1052 F: drivers/input/serio/ambakmi.*
1053 F: include/linux/amba/kmi.h
1055 ARM PRIMECELL MMCI PL180/1 DRIVER
1056 M: Russell King <linux@armlinux.org.uk>
1058 F: drivers/mmc/host/mmci.*
1059 F: include/linux/amba/mmci.h
1061 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1062 M: Russell King <linux@armlinux.org.uk>
1064 F: drivers/tty/serial/amba-pl01*.c
1065 F: include/linux/amba/serial.h
1068 M: Will Deacon <will.deacon@arm.com>
1069 R: Robin Murphy <robin.murphy@arm.com>
1070 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1072 F: drivers/iommu/arm-smmu.c
1073 F: drivers/iommu/arm-smmu-v3.c
1074 F: drivers/iommu/io-pgtable-arm.c
1075 F: drivers/iommu/io-pgtable-arm-v7s.c
1077 ARM SUB-ARCHITECTURES
1078 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1082 T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
1084 ARM/ACTIONS SEMI ARCHITECTURE
1085 M: Andreas Färber <afaerber@suse.de>
1086 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1089 F: arch/arm/mach-actions/
1090 F: arch/arm/boot/dts/owl-*
1091 F: arch/arm64/boot/dts/actions/
1092 F: drivers/clocksource/owl-*
1093 F: drivers/soc/actions/
1094 F: include/dt-bindings/power/owl-*
1095 F: include/linux/soc/actions/
1096 F: Documentation/devicetree/bindings/arm/actions.txt
1097 F: Documentation/devicetree/bindings/power/actions,owl-sps.txt
1098 F: Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1100 ARM/ADS SPHERE MACHINE SUPPORT
1101 M: Lennert Buytenhek <kernel@wantstofly.org>
1102 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1105 ARM/AFEB9260 MACHINE SUPPORT
1106 M: Sergey Lapin <slapin@ossfans.org>
1107 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1110 ARM/AJECO 1ARM MACHINE SUPPORT
1111 M: Lennert Buytenhek <kernel@wantstofly.org>
1112 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1115 ARM/Allwinner SoC Clock Support
1116 M: Emilio López <emilio@elopez.com.ar>
1118 F: drivers/clk/sunxi/
1120 ARM/Allwinner sunXi SoC support
1121 M: Maxime Ripard <maxime.ripard@free-electrons.com>
1122 M: Chen-Yu Tsai <wens@csie.org>
1123 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1127 F: arch/arm/mach-sunxi/
1128 F: arch/arm64/boot/dts/allwinner/
1129 F: drivers/clk/sunxi-ng/
1130 F: drivers/pinctrl/sunxi/
1131 F: drivers/soc/sunxi/
1132 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1134 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1135 M: Neil Armstrong <narmstrong@baylibre.com>
1136 M: Jerome Brunet <jbrunet@baylibre.com>
1137 L: linux-amlogic@lists.infradead.org
1139 F: drivers/clk/meson/
1140 F: include/dt-bindings/clock/meson*
1141 F: include/dt-bindings/clock/gxbb*
1142 F: Documentation/devicetree/bindings/clock/amlogic*
1144 ARM/Amlogic Meson SoC support
1145 M: Carlo Caione <carlo@caione.org>
1146 M: Kevin Hilman <khilman@baylibre.com>
1147 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1148 L: linux-amlogic@lists.infradead.org
1149 W: http://linux-meson.com/
1151 F: arch/arm/mach-meson/
1152 F: arch/arm/boot/dts/meson*
1153 F: arch/arm64/boot/dts/amlogic/
1154 F: drivers/pinctrl/meson/
1155 F: drivers/mmc/host/meson*
1158 ARM/Annapurna Labs ALPINE ARCHITECTURE
1159 M: Tsahee Zidenberg <tsahee@annapurnalabs.com>
1160 M: Antoine Tenart <antoine.tenart@free-electrons.com>
1161 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1163 F: arch/arm/mach-alpine/
1164 F: arch/arm/boot/dts/alpine*
1165 F: arch/arm64/boot/dts/al/
1166 F: drivers/*/*alpine*
1168 ARM/ARTPEC MACHINE SUPPORT
1169 M: Jesper Nilsson <jesper.nilsson@axis.com>
1170 M: Lars Persson <lars.persson@axis.com>
1171 M: Niklas Cassel <niklas.cassel@axis.com>
1173 L: linux-arm-kernel@axis.com
1174 F: arch/arm/mach-artpec
1175 F: arch/arm/boot/dts/artpec6*
1177 F: drivers/crypto/axis
1178 F: drivers/pinctrl/pinctrl-artpec*
1179 F: Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1181 ARM/ASPEED I2C DRIVER
1182 M: Brendan Higgins <brendanhiggins@google.com>
1183 R: Benjamin Herrenschmidt <benh@kernel.crashing.org>
1184 R: Joel Stanley <joel@jms.id.au>
1185 L: linux-i2c@vger.kernel.org
1186 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
1188 F: drivers/irqchip/irq-aspeed-i2c-ic.c
1189 F: drivers/i2c/busses/i2c-aspeed.c
1190 F: Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1191 F: Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1193 ARM/ASPEED MACHINE SUPPORT
1194 M: Joel Stanley <joel@jms.id.au>
1196 F: arch/arm/mach-aspeed/
1197 F: arch/arm/boot/dts/aspeed-*
1198 F: drivers/*/*aspeed*
1200 ARM/ATMEL AT91 Clock Support
1201 M: Boris Brezillon <boris.brezillon@free-electrons.com>
1205 ARM/ATMEL AT91RM9200, AT91SAM9 AND SAMA5 SOC SUPPORT
1206 M: Nicolas Ferre <nicolas.ferre@microchip.com>
1207 M: Alexandre Belloni <alexandre.belloni@free-electrons.com>
1208 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1209 W: http://www.linux4sam.org
1210 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nferre/linux-at91.git
1212 F: arch/arm/mach-at91/
1213 F: include/soc/at91/
1214 F: arch/arm/boot/dts/at91*.dts
1215 F: arch/arm/boot/dts/at91*.dtsi
1216 F: arch/arm/boot/dts/sama*.dts
1217 F: arch/arm/boot/dts/sama*.dtsi
1218 F: arch/arm/include/debug/at91.S
1219 F: drivers/memory/atmel*
1221 ARM/CALXEDA HIGHBANK ARCHITECTURE
1222 M: Rob Herring <robh@kernel.org>
1223 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1225 F: arch/arm/mach-highbank/
1226 F: arch/arm/boot/dts/highbank.dts
1227 F: arch/arm/boot/dts/ecx-*.dts*
1229 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1230 M: Krzysztof Halasa <khalasa@piap.pl>
1232 F: arch/arm/mach-cns3xxx/
1234 ARM/CAVIUM THUNDER NETWORK DRIVER
1235 M: Sunil Goutham <sgoutham@cavium.com>
1236 M: Robert Richter <rric@kernel.org>
1237 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1239 F: drivers/net/ethernet/cavium/thunder/
1241 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1242 M: Alexander Shiyan <shc_work@mail.ru>
1243 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1247 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1248 M: Lennert Buytenhek <kernel@wantstofly.org>
1249 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1252 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1253 M: Hartley Sweeten <hsweeten@visionengravers.com>
1254 M: Alexander Sverdlin <alexander.sverdlin@gmail.com>
1255 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1257 F: arch/arm/mach-ep93xx/
1258 F: arch/arm/mach-ep93xx/include/mach/
1261 M: Russell King <linux@armlinux.org.uk>
1262 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1264 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1265 F: arch/arm/include/asm/clkdev.h
1266 F: drivers/clk/clkdev.c
1268 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
1269 M: Mike Rapoport <mike@compulab.co.il>
1270 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1273 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1274 M: Baruch Siach <baruch@tkos.co.il>
1275 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1277 F: arch/arm/boot/dts/cx92755*
1280 ARM/CONTEC MICRO9 MACHINE SUPPORT
1281 M: Hubert Feurstein <hubert.feurstein@contec.at>
1283 F: arch/arm/mach-ep93xx/micro9.c
1285 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1286 M: Mathieu Poirier <mathieu.poirier@linaro.org>
1287 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1289 F: drivers/hwtracing/coresight/*
1290 F: Documentation/trace/coresight.txt
1291 F: Documentation/trace/coresight-cpu-debug.txt
1292 F: Documentation/devicetree/bindings/arm/coresight.txt
1293 F: Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1294 F: Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1295 F: tools/perf/arch/arm/util/pmu.c
1296 F: tools/perf/arch/arm/util/auxtrace.c
1297 F: tools/perf/arch/arm/util/cs-etm.c
1298 F: tools/perf/arch/arm/util/cs-etm.h
1299 F: tools/perf/util/cs-etm.h
1301 ARM/CORGI MACHINE SUPPORT
1302 M: Richard Purdie <rpurdie@rpsys.net>
1305 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1306 M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
1307 M: Linus Walleij <linus.walleij@linaro.org>
1308 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1309 T: git git://github.com/ulli-kroll/linux.git
1311 F: Documentation/devicetree/bindings/arm/gemini.txt
1312 F: Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1313 F: Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1314 F: arch/arm/mach-gemini/
1315 F: drivers/pinctrl/pinctrl-gemini.c
1316 F: drivers/rtc/rtc-ftrtc010.c
1318 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1319 M: Barry Song <baohua@kernel.org>
1320 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1321 T: git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1323 F: arch/arm/boot/dts/prima2*
1324 F: arch/arm/mach-prima2/
1325 F: drivers/clk/sirf/
1326 F: drivers/clocksource/timer-prima2.c
1327 F: drivers/clocksource/timer-atlas7.c
1330 ARM/EBSA110 MACHINE SUPPORT
1331 M: Russell King <linux@armlinux.org.uk>
1332 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1333 W: http://www.armlinux.org.uk/
1335 F: arch/arm/mach-ebsa110/
1336 F: drivers/net/ethernet/amd/am79c961a.*
1338 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1339 M: Uwe Kleine-König <kernel@pengutronix.de>
1340 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1344 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1345 M: Robert Jarzmik <robert.jarzmik@free.fr>
1346 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1348 F: arch/arm/mach-pxa/ezx.c
1350 ARM/FARADAY FA526 PORT
1351 M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
1352 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1354 T: git git://git.berlios.de/gemini-board
1355 F: arch/arm/mm/*-fa*
1357 ARM/FOOTBRIDGE ARCHITECTURE
1358 M: Russell King <linux@armlinux.org.uk>
1359 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1360 W: http://www.armlinux.org.uk/
1362 F: arch/arm/include/asm/hardware/dec21285.h
1363 F: arch/arm/mach-footbridge/
1365 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1366 M: Shawn Guo <shawnguo@kernel.org>
1367 M: Sascha Hauer <kernel@pengutronix.de>
1368 R: Fabio Estevam <fabio.estevam@nxp.com>
1369 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1371 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1372 F: arch/arm/mach-imx/
1373 F: arch/arm/mach-mxs/
1374 F: arch/arm/boot/dts/imx*
1375 F: arch/arm/configs/imx*_defconfig
1380 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1381 M: Shawn Guo <shawnguo@kernel.org>
1382 M: Sascha Hauer <kernel@pengutronix.de>
1383 R: Stefan Agner <stefan@agner.ch>
1384 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1386 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1387 F: arch/arm/mach-imx/*vf610*
1388 F: arch/arm/boot/dts/vf*
1390 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1391 M: Lennert Buytenhek <kernel@wantstofly.org>
1392 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1395 ARM/GUMSTIX MACHINE SUPPORT
1396 M: Steve Sakoman <sakoman@gmail.com>
1397 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1400 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1401 M: Philipp Zabel <philipp.zabel@gmail.com>
1402 M: Paul Parsons <lost.distance@yahoo.com>
1403 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1405 F: arch/arm/mach-pxa/hx4700.c
1406 F: arch/arm/mach-pxa/include/mach/hx4700.h
1407 F: sound/soc/pxa/hx4700.c
1409 ARM/HISILICON SOC SUPPORT
1410 M: Wei Xu <xuwei5@hisilicon.com>
1411 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1412 W: http://www.hisilicon.com
1414 T: git git://github.com/hisilicon/linux-hisi.git
1415 F: arch/arm/mach-hisi/
1416 F: arch/arm/boot/dts/hi3*
1417 F: arch/arm/boot/dts/hip*
1418 F: arch/arm/boot/dts/hisi*
1419 F: arch/arm64/boot/dts/hisilicon/
1421 ARM/HP JORNADA 7XX MACHINE SUPPORT
1422 M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
1425 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1426 F: arch/arm/mach-sa1100/jornada720.c
1427 F: arch/arm/mach-sa1100/include/mach/jornada720.h
1429 ARM/IGEP MACHINE SUPPORT
1430 M: Enric Balletbo i Serra <eballetbo@gmail.com>
1431 M: Javier Martinez Canillas <javier@dowhile0.org>
1432 L: linux-omap@vger.kernel.org
1433 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1435 F: arch/arm/boot/dts/omap3-igep*
1437 ARM/INCOME PXA270 SUPPORT
1438 M: Marek Vasut <marek.vasut@gmail.com>
1439 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1441 F: arch/arm/mach-pxa/colibri-pxa270-income.c
1443 ARM/INTEL IOP13XX ARM ARCHITECTURE
1444 M: Lennert Buytenhek <kernel@wantstofly.org>
1445 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1448 ARM/INTEL IOP32X ARM ARCHITECTURE
1449 M: Lennert Buytenhek <kernel@wantstofly.org>
1450 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1453 ARM/INTEL IOP33X ARM ARCHITECTURE
1454 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1457 ARM/INTEL IQ81342EX MACHINE SUPPORT
1458 M: Lennert Buytenhek <kernel@wantstofly.org>
1459 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1462 ARM/INTEL IXDP2850 MACHINE SUPPORT
1463 M: Lennert Buytenhek <kernel@wantstofly.org>
1464 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1467 ARM/INTEL IXP4XX ARM ARCHITECTURE
1468 M: Imre Kaloz <kaloz@openwrt.org>
1469 M: Krzysztof Halasa <khalasa@piap.pl>
1470 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1472 F: arch/arm/mach-ixp4xx/
1474 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1475 M: Jonathan Cameron <jic23@cam.ac.uk>
1476 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1478 F: arch/arm/mach-pxa/stargate2.c
1479 F: drivers/pcmcia/pxa2xx_stargate2.c
1481 ARM/INTEL XSC3 (MANZANO) ARM CORE
1482 M: Lennert Buytenhek <kernel@wantstofly.org>
1483 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1486 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1487 M: Lennert Buytenhek <kernel@wantstofly.org>
1488 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1491 ARM/LG1K ARCHITECTURE
1492 M: Chanho Min <chanho.min@lge.com>
1493 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1495 F: arch/arm64/boot/dts/lg/
1497 ARM/LOGICPD PXA270 MACHINE SUPPORT
1498 M: Lennert Buytenhek <kernel@wantstofly.org>
1499 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1502 ARM/LPC18XX ARCHITECTURE
1503 M: Joachim Eastwood <manabian@gmail.com>
1504 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1506 F: arch/arm/boot/dts/lpc43*
1507 F: drivers/clk/nxp/clk-lpc18xx*
1508 F: drivers/clocksource/time-lpc32xx.c
1509 F: drivers/i2c/busses/i2c-lpc2k.c
1510 F: drivers/memory/pl172.c
1511 F: drivers/mtd/spi-nor/nxp-spifi.c
1512 F: drivers/rtc/rtc-lpc24xx.c
1515 ARM/LPC32XX SOC SUPPORT
1516 M: Vladimir Zapolskiy <vz@mleia.com>
1517 M: Sylvain Lemieux <slemieux.tyco@gmail.com>
1518 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1519 T: git git://github.com/vzapolskiy/linux-lpc32xx.git
1521 F: arch/arm/boot/dts/lpc32*
1522 F: arch/arm/mach-lpc32xx/
1523 F: drivers/i2c/busses/i2c-pnx.c
1524 F: drivers/net/ethernet/nxp/lpc_eth.c
1525 F: drivers/usb/host/ohci-nxp.c
1526 F: drivers/watchdog/pnx4008_wdt.c
1529 ARM/MAGICIAN MACHINE SUPPORT
1530 M: Philipp Zabel <philipp.zabel@gmail.com>
1533 ARM/Marvell Berlin SoC support
1534 M: Jisheng Zhang <jszhang@marvell.com>
1535 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1536 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1538 F: arch/arm/mach-berlin/
1539 F: arch/arm/boot/dts/berlin*
1540 F: arch/arm64/boot/dts/marvell/berlin*
1542 ARM/Marvell Dove/MV78xx0/Orion SOC support
1543 M: Jason Cooper <jason@lakedaemon.net>
1544 M: Andrew Lunn <andrew@lunn.ch>
1545 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1546 M: Gregory Clement <gregory.clement@free-electrons.com>
1547 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1549 F: Documentation/devicetree/bindings/soc/dove/
1550 F: arch/arm/mach-dove/
1551 F: arch/arm/mach-mv78xx0/
1552 F: arch/arm/mach-orion5x/
1553 F: arch/arm/plat-orion/
1554 F: arch/arm/boot/dts/dove*
1555 F: arch/arm/boot/dts/orion5x*
1557 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K SOC support
1558 M: Jason Cooper <jason@lakedaemon.net>
1559 M: Andrew Lunn <andrew@lunn.ch>
1560 M: Gregory Clement <gregory.clement@free-electrons.com>
1561 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1562 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1564 F: arch/arm/boot/dts/armada*
1565 F: arch/arm/boot/dts/kirkwood*
1566 F: arch/arm/configs/mvebu_*_defconfig
1567 F: arch/arm/mach-mvebu/
1568 F: arch/arm64/boot/dts/marvell/armada*
1569 F: drivers/cpufreq/mvebu-cpufreq.c
1570 F: drivers/irqchip/irq-armada-370-xp.c
1571 F: drivers/irqchip/irq-mvebu-*
1572 F: drivers/pinctrl/mvebu/
1573 F: drivers/rtc/rtc-armada38x.c
1575 ARM/Mediatek RTC DRIVER
1576 M: Eddie Huang <eddie.huang@mediatek.com>
1577 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1578 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1580 F: drivers/rtc/rtc-mt6397.c
1582 ARM/Mediatek SoC support
1583 M: Matthias Brugger <matthias.bgg@gmail.com>
1584 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1585 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1587 F: arch/arm/boot/dts/mt6*
1588 F: arch/arm/boot/dts/mt7*
1589 F: arch/arm/boot/dts/mt8*
1590 F: arch/arm/mach-mediatek/
1591 F: arch/arm64/boot/dts/mediatek/
1595 ARM/Mediatek USB3 PHY DRIVER
1596 M: Chunfeng Yun <chunfeng.yun@mediatek.com>
1597 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1598 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1600 F: drivers/phy/mediatek/phy-mtk-tphy.c
1602 ARM/MICREL KS8695 ARCHITECTURE
1603 M: Greg Ungerer <gerg@uclinux.org>
1604 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1605 F: arch/arm/mach-ks8695/
1608 ARM/MIOA701 MACHINE SUPPORT
1609 M: Robert Jarzmik <robert.jarzmik@free.fr>
1610 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1611 F: arch/arm/mach-pxa/mioa701.c
1614 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1615 M: Michael Petchkovsky <mkpetch@internode.on.net>
1618 ARM/NOMADIK ARCHITECTURE
1619 M: Alessandro Rubini <rubini@unipv.it>
1620 M: Linus Walleij <linus.walleij@linaro.org>
1621 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1623 F: arch/arm/mach-nomadik/
1624 F: drivers/pinctrl/nomadik/
1625 F: drivers/i2c/busses/i2c-nomadik.c
1626 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1628 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1629 M: Wan ZongShun <mcuos.com@gmail.com>
1630 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1631 W: http://www.mcuos.com
1633 F: arch/arm/mach-w90x900/
1634 F: drivers/input/keyboard/w90p910_keypad.c
1635 F: drivers/input/touchscreen/w90p910_ts.c
1636 F: drivers/watchdog/nuc900_wdt.c
1637 F: drivers/net/ethernet/nuvoton/w90p910_ether.c
1638 F: drivers/mtd/nand/nuc900_nand.c
1639 F: drivers/rtc/rtc-nuc900.c
1640 F: drivers/spi/spi-nuc900.c
1641 F: drivers/usb/host/ehci-w90x900.c
1642 F: drivers/video/fbdev/nuc900fb.c
1644 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1645 M: Nelson Castillo <arhuaco@freaks-unidos.net>
1646 L: openmoko-kernel@lists.openmoko.org (subscribers-only)
1647 W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
1650 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1651 M: Alexander Clouter <alex@digriz.org.uk>
1652 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1653 W: http://www.digriz.org.uk/ts78xx/kernel
1655 F: arch/arm/mach-orion5x/ts78xx-*
1657 ARM/OXNAS platform support
1658 M: Neil Armstrong <narmstrong@baylibre.com>
1659 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1660 L: linux-oxnas@lists.tuxfamily.org (moderated for non-subscribers)
1662 F: arch/arm/mach-oxnas/
1663 F: arch/arm/boot/dts/ox8*.dtsi
1664 F: arch/arm/boot/dts/wd-mbwe.dts
1665 F: arch/arm/boot/dts/cloudengines-pogoplug-series-3.dts
1668 ARM/PALM TREO SUPPORT
1669 M: Tomas Cech <sleep_walker@suse.com>
1670 L: linux-arm-kernel@lists.infradead.org
1671 W: http://hackndev.com
1673 F: arch/arm/mach-pxa/include/mach/palmtreo.h
1674 F: arch/arm/mach-pxa/palmtreo.c
1676 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1677 M: Marek Vasut <marek.vasut@gmail.com>
1678 L: linux-arm-kernel@lists.infradead.org
1679 W: http://hackndev.com
1681 F: arch/arm/mach-pxa/include/mach/palmtx.h
1682 F: arch/arm/mach-pxa/palmtx.c
1683 F: arch/arm/mach-pxa/include/mach/palmt5.h
1684 F: arch/arm/mach-pxa/palmt5.c
1685 F: arch/arm/mach-pxa/include/mach/palmld.h
1686 F: arch/arm/mach-pxa/palmld.c
1687 F: arch/arm/mach-pxa/include/mach/palmte2.h
1688 F: arch/arm/mach-pxa/palmte2.c
1689 F: arch/arm/mach-pxa/include/mach/palmtc.h
1690 F: arch/arm/mach-pxa/palmtc.c
1693 M: Sergey Lapin <slapin@ossfans.org>
1694 L: linux-arm-kernel@lists.infradead.org
1695 W: http://hackndev.com
1697 F: arch/arm/mach-pxa/include/mach/palmz72.h
1698 F: arch/arm/mach-pxa/palmz72.c
1701 M: Peter Chubb <pleb@gelato.unsw.edu.au>
1702 W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1705 ARM/PT DIGITAL BOARD PORT
1706 M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1707 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1708 W: http://www.armlinux.org.uk/
1711 ARM/QUALCOMM SUPPORT
1712 M: Andy Gross <andy.gross@linaro.org>
1713 M: David Brown <david.brown@linaro.org>
1714 L: linux-arm-msm@vger.kernel.org
1715 L: linux-soc@vger.kernel.org
1717 F: Documentation/devicetree/bindings/soc/qcom/
1718 F: arch/arm/boot/dts/qcom-*.dts
1719 F: arch/arm/boot/dts/qcom-*.dtsi
1720 F: arch/arm/mach-qcom/
1721 F: arch/arm64/boot/dts/qcom/*
1722 F: drivers/i2c/busses/i2c-qup.c
1723 F: drivers/clk/qcom/
1724 F: drivers/dma/qcom/
1725 F: drivers/soc/qcom/
1726 F: drivers/spi/spi-qup.c
1727 F: drivers/tty/serial/msm_serial.h
1728 F: drivers/tty/serial/msm_serial.c
1729 F: drivers/*/pm8???-*
1730 F: drivers/mfd/ssbi.c
1731 F: drivers/firmware/qcom_scm.c
1732 T: git git://git.kernel.org/pub/scm/linux/kernel/git/agross/linux.git
1734 ARM/RADISYS ENP2611 MACHINE SUPPORT
1735 M: Lennert Buytenhek <kernel@wantstofly.org>
1736 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1739 ARM/REALTEK ARCHITECTURE
1740 M: Andreas Färber <afaerber@suse.de>
1741 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1743 F: arch/arm64/boot/dts/realtek/
1744 F: Documentation/devicetree/bindings/arm/realtek.txt
1746 ARM/RENESAS ARM64 ARCHITECTURE
1747 M: Simon Horman <horms@verge.net.au>
1748 M: Magnus Damm <magnus.damm@gmail.com>
1749 L: linux-renesas-soc@vger.kernel.org
1750 Q: http://patchwork.kernel.org/project/linux-renesas-soc/list/
1751 T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1753 F: arch/arm64/boot/dts/renesas/
1754 F: drivers/soc/renesas/
1755 F: include/linux/soc/renesas/
1757 ARM/RISCPC ARCHITECTURE
1758 M: Russell King <linux@armlinux.org.uk>
1759 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1760 W: http://www.armlinux.org.uk/
1762 F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1763 F: arch/arm/include/asm/hardware/ioc.h
1764 F: arch/arm/include/asm/hardware/iomd.h
1765 F: arch/arm/include/asm/hardware/memc.h
1766 F: arch/arm/mach-rpc/
1767 F: drivers/net/ethernet/8390/etherh.c
1768 F: drivers/net/ethernet/i825xx/ether1*
1769 F: drivers/net/ethernet/seeq/ether3*
1770 F: drivers/scsi/arm/
1772 ARM/Rockchip SoC support
1773 M: Heiko Stuebner <heiko@sntech.de>
1774 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1775 L: linux-rockchip@lists.infradead.org
1776 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
1778 F: arch/arm/boot/dts/rk3*
1779 F: arch/arm/boot/dts/rv1108*
1780 F: arch/arm/mach-rockchip/
1781 F: drivers/clk/rockchip/
1782 F: drivers/i2c/busses/i2c-rk3x.c
1783 F: drivers/*/*rockchip*
1784 F: drivers/*/*/*rockchip*
1785 F: sound/soc/rockchip/
1788 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1789 M: Kukjin Kim <kgene@kernel.org>
1790 M: Krzysztof Kozlowski <krzk@kernel.org>
1791 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1792 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1793 Q: https://patchwork.kernel.org/project/linux-samsung-soc/list/
1795 F: arch/arm/boot/dts/s3c*
1796 F: arch/arm/boot/dts/s5p*
1797 F: arch/arm/boot/dts/samsung*
1798 F: arch/arm/boot/dts/exynos*
1799 F: arch/arm64/boot/dts/exynos/
1800 F: arch/arm/plat-samsung/
1801 F: arch/arm/mach-s3c24*/
1802 F: arch/arm/mach-s3c64xx/
1803 F: arch/arm/mach-s5p*/
1804 F: arch/arm/mach-exynos*/
1805 F: drivers/*/*s3c24*
1806 F: drivers/*/*/*s3c24*
1807 F: drivers/*/*s3c64xx*
1808 F: drivers/*/*s5pv210*
1809 F: drivers/memory/samsung/*
1810 F: drivers/soc/samsung/*
1811 F: Documentation/arm/Samsung/
1812 F: Documentation/devicetree/bindings/arm/samsung/
1813 F: Documentation/devicetree/bindings/sram/samsung-sram.txt
1814 F: Documentation/devicetree/bindings/power/pd-samsung.txt
1817 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1818 M: Kyungmin Park <kyungmin.park@samsung.com>
1819 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1821 F: arch/arm/mach-s5pv210/
1823 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1824 M: Kyungmin Park <kyungmin.park@samsung.com>
1825 M: Kamil Debski <kamil@wypas.org>
1826 M: Andrzej Hajda <a.hajda@samsung.com>
1827 L: linux-arm-kernel@lists.infradead.org
1828 L: linux-media@vger.kernel.org
1830 F: drivers/media/platform/s5p-g2d/
1832 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
1833 M: Marek Szyprowski <m.szyprowski@samsung.com>
1834 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1835 L: linux-media@vger.kernel.org
1837 F: drivers/media/platform/s5p-cec/
1838 F: Documentation/devicetree/bindings/media/s5p-cec.txt
1840 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
1841 M: Andrzej Pietrasiewicz <andrzej.p@samsung.com>
1842 M: Jacek Anaszewski <jacek.anaszewski@gmail.com>
1843 L: linux-arm-kernel@lists.infradead.org
1844 L: linux-media@vger.kernel.org
1846 F: drivers/media/platform/s5p-jpeg/
1848 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1849 M: Kyungmin Park <kyungmin.park@samsung.com>
1850 M: Kamil Debski <kamil@wypas.org>
1851 M: Jeongtae Park <jtp.park@samsung.com>
1852 M: Andrzej Hajda <a.hajda@samsung.com>
1853 L: linux-arm-kernel@lists.infradead.org
1854 L: linux-media@vger.kernel.org
1856 F: arch/arm/plat-samsung/s5p-dev-mfc.c
1857 F: drivers/media/platform/s5p-mfc/
1859 ARM/SHMOBILE ARM ARCHITECTURE
1860 M: Simon Horman <horms@verge.net.au>
1861 M: Magnus Damm <magnus.damm@gmail.com>
1862 L: linux-renesas-soc@vger.kernel.org
1863 Q: http://patchwork.kernel.org/project/linux-renesas-soc/list/
1864 T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1866 F: arch/arm/boot/dts/emev2*
1867 F: arch/arm/boot/dts/r7s*
1868 F: arch/arm/boot/dts/r8a*
1869 F: arch/arm/boot/dts/sh*
1870 F: arch/arm/configs/shmobile_defconfig
1871 F: arch/arm/include/debug/renesas-scif.S
1872 F: arch/arm/mach-shmobile/
1873 F: drivers/soc/renesas/
1874 F: include/linux/soc/renesas/
1876 ARM/SOCFPGA ARCHITECTURE
1877 M: Dinh Nguyen <dinguyen@kernel.org>
1879 F: arch/arm/mach-socfpga/
1880 F: arch/arm/boot/dts/socfpga*
1881 F: arch/arm/configs/socfpga_defconfig
1882 F: arch/arm64/boot/dts/altera/
1883 W: http://www.rocketboards.org
1884 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
1886 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1887 M: Dinh Nguyen <dinguyen@kernel.org>
1889 F: drivers/clk/socfpga/
1891 ARM/SOCFPGA EDAC SUPPORT
1892 M: Thor Thayer <thor.thayer@linux.intel.com>
1894 F: drivers/edac/altera_edac.
1896 ARM/STI ARCHITECTURE
1897 M: Patrice Chotard <patrice.chotard@st.com>
1898 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1899 W: http://www.stlinux.com
1901 F: arch/arm/mach-sti/
1902 F: arch/arm/boot/dts/sti*
1903 F: drivers/char/hw_random/st-rng.c
1904 F: drivers/clocksource/arm_global_timer.c
1905 F: drivers/clocksource/clksrc_st_lpc.c
1906 F: drivers/cpufreq/sti-cpufreq.c
1907 F: drivers/dma/st_fdma*
1908 F: drivers/i2c/busses/i2c-st.c
1909 F: drivers/media/rc/st_rc.c
1910 F: drivers/media/platform/sti/c8sectpfe/
1911 F: drivers/mmc/host/sdhci-st.c
1912 F: drivers/phy/st/phy-miphy28lp.c
1913 F: drivers/phy/st/phy-stih407-usb.c
1914 F: drivers/pinctrl/pinctrl-st.c
1915 F: drivers/remoteproc/st_remoteproc.c
1916 F: drivers/remoteproc/st_slim_rproc.c
1917 F: drivers/reset/sti/
1918 F: drivers/rtc/rtc-st-lpc.c
1919 F: drivers/tty/serial/st-asc.c
1920 F: drivers/usb/dwc3/dwc3-st.c
1921 F: drivers/usb/host/ehci-st.c
1922 F: drivers/usb/host/ohci-st.c
1923 F: drivers/watchdog/st_lpc_wdt.c
1924 F: drivers/ata/ahci_st.c
1925 F: include/linux/remoteproc/st_slim_rproc.h
1927 ARM/STM32 ARCHITECTURE
1928 M: Maxime Coquelin <mcoquelin.stm32@gmail.com>
1929 M: Alexandre Torgue <alexandre.torgue@st.com>
1930 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1932 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git
1934 F: drivers/clocksource/armv7m_systick.c
1936 ARM/TANGO ARCHITECTURE
1937 M: Marc Gonzalez <marc_gonzalez@sigmadesigns.com>
1938 L: linux-arm-kernel@lists.infradead.org
1942 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
1943 M: Lennert Buytenhek <kernel@wantstofly.org>
1944 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1947 ARM/TETON BGA MACHINE SUPPORT
1948 M: "Mark F. Brown" <mark.brown314@gmail.com>
1949 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1952 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
1953 M: Santosh Shilimkar <ssantosh@kernel.org>
1954 L: linux-kernel@vger.kernel.org
1956 F: drivers/memory/*emif*
1958 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
1959 M: Santosh Shilimkar <ssantosh@kernel.org>
1960 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1962 F: arch/arm/mach-keystone/
1963 F: arch/arm/boot/dts/keystone-*
1964 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
1966 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
1967 M: Santosh Shilimkar <ssantosh@kernel.org>
1968 L: linux-kernel@vger.kernel.org
1970 F: drivers/clk/keystone/
1972 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
1973 M: Santosh Shilimkar <ssantosh@kernel.org>
1974 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1975 L: linux-kernel@vger.kernel.org
1977 F: drivers/clocksource/timer-keystone.c
1979 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
1980 M: Santosh Shilimkar <ssantosh@kernel.org>
1981 L: linux-kernel@vger.kernel.org
1983 F: drivers/power/reset/keystone-reset.c
1985 ARM/THECUS N2100 MACHINE SUPPORT
1986 M: Lennert Buytenhek <kernel@wantstofly.org>
1987 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1990 ARM/TOSA MACHINE SUPPORT
1991 M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1992 M: Dirk Opfer <dirk@opfer-online.de>
1995 ARM/U300 MACHINE SUPPORT
1996 M: Linus Walleij <linus.walleij@linaro.org>
1997 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1999 F: arch/arm/mach-u300/
2000 F: drivers/clocksource/timer-u300.c
2001 F: drivers/i2c/busses/i2c-stu300.c
2002 F: drivers/rtc/rtc-coh901331.c
2003 F: drivers/watchdog/coh901327_wdt.c
2004 F: drivers/dma/coh901318*
2005 F: drivers/mfd/ab3100*
2006 F: drivers/rtc/rtc-ab3100.c
2007 F: drivers/rtc/rtc-coh901331.c
2008 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
2010 ARM/UNIPHIER ARCHITECTURE
2011 M: Masahiro Yamada <yamada.masahiro@socionext.com>
2012 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2013 T: git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-uniphier.git
2015 F: arch/arm/boot/dts/uniphier*
2016 F: arch/arm/include/asm/hardware/cache-uniphier.h
2017 F: arch/arm/mach-uniphier/
2018 F: arch/arm/mm/cache-uniphier.c
2019 F: arch/arm64/boot/dts/socionext/
2020 F: drivers/bus/uniphier-system-bus.c
2021 F: drivers/clk/uniphier/
2022 F: drivers/i2c/busses/i2c-uniphier*
2023 F: drivers/irqchip/irq-uniphier-aidet.c
2024 F: drivers/pinctrl/uniphier/
2025 F: drivers/reset/reset-uniphier.c
2026 F: drivers/tty/serial/8250/8250_uniphier.c
2029 ARM/Ux500 ARM ARCHITECTURE
2030 M: Linus Walleij <linus.walleij@linaro.org>
2031 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2033 F: arch/arm/mach-ux500/
2034 F: drivers/clocksource/clksrc-dbx500-prcmu.c
2035 F: drivers/dma/ste_dma40*
2036 F: drivers/hwspinlock/u8500_hsem.c
2037 F: drivers/mfd/abx500*
2038 F: drivers/mfd/ab8500*
2039 F: drivers/mfd/dbx500*
2040 F: drivers/mfd/db8500*
2041 F: drivers/pinctrl/nomadik/pinctrl-ab*
2042 F: drivers/pinctrl/nomadik/pinctrl-nomadik*
2043 F: drivers/rtc/rtc-ab8500.c
2044 F: drivers/rtc/rtc-pl031.c
2045 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
2047 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
2048 M: Ulf Hansson <ulf.hansson@linaro.org>
2049 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2050 T: git git://git.linaro.org/people/ulfh/clk.git
2052 F: drivers/clk/ux500/
2054 ARM/VERSATILE EXPRESS PLATFORM
2055 M: Liviu Dudau <liviu.dudau@arm.com>
2056 M: Sudeep Holla <sudeep.holla@arm.com>
2057 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2058 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2060 F: arch/arm/boot/dts/vexpress*
2061 F: arch/arm64/boot/dts/arm/
2062 F: arch/arm/mach-vexpress/
2065 F: drivers/clk/versatile/clk-vexpress-osc.c
2066 F: drivers/clocksource/versatile.c
2070 M: Russell King <linux@armlinux.org.uk>
2071 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2072 W: http://www.armlinux.org.uk/
2076 ARM/VOIPAC PXA270 SUPPORT
2077 M: Marek Vasut <marek.vasut@gmail.com>
2078 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2080 F: arch/arm/mach-pxa/vpac270.c
2081 F: arch/arm/mach-pxa/include/mach/vpac270.h
2083 ARM/VT8500 ARM ARCHITECTURE
2084 M: Tony Prisk <linux@prisktech.co.nz>
2085 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2087 F: arch/arm/mach-vt8500/
2088 F: drivers/clocksource/vt8500_timer.c
2089 F: drivers/i2c/busses/i2c-wmt.c
2090 F: drivers/mmc/host/wmt-sdmmc.c
2091 F: drivers/pwm/pwm-vt8500.c
2092 F: drivers/rtc/rtc-vt8500.c
2093 F: drivers/tty/serial/vt8500_serial.c
2094 F: drivers/usb/host/ehci-platform.c
2095 F: drivers/usb/host/uhci-platform.c
2096 F: drivers/video/fbdev/vt8500lcdfb.*
2097 F: drivers/video/fbdev/wm8505fb*
2098 F: drivers/video/fbdev/wmt_ge_rops.*
2100 ARM/ZIPIT Z2 SUPPORT
2101 M: Marek Vasut <marek.vasut@gmail.com>
2102 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2104 F: arch/arm/mach-pxa/z2.c
2105 F: arch/arm/mach-pxa/include/mach/z2.h
2107 ARM/ZTE ARCHITECTURE
2108 M: Jun Nie <jun.nie@linaro.org>
2109 M: Baoyou Xie <baoyou.xie@linaro.org>
2110 M: Shawn Guo <shawnguo@kernel.org>
2111 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2113 F: arch/arm/boot/dts/zx2967*
2114 F: arch/arm/mach-zx/
2115 F: arch/arm64/boot/dts/zte/
2117 F: drivers/dma/zx_dma.c
2118 F: drivers/gpio/gpio-zx.c
2119 F: drivers/i2c/busses/i2c-zx2967.c
2120 F: drivers/mmc/host/dw_mmc-zx.*
2121 F: drivers/pinctrl/zte/
2122 F: drivers/reset/reset-zx2967.c
2124 F: drivers/thermal/zx2967_thermal.c
2125 F: drivers/watchdog/zx2967_wdt.c
2126 F: Documentation/devicetree/bindings/arm/zte.txt
2127 F: Documentation/devicetree/bindings/clock/zx2967*.txt
2128 F: Documentation/devicetree/bindings/dma/zxdma.txt
2129 F: Documentation/devicetree/bindings/gpio/zx296702-gpio.txt
2130 F: Documentation/devicetree/bindings/i2c/i2c-zx2967.txt
2131 F: Documentation/devicetree/bindings/mmc/zx-dw-mshc.txt
2132 F: Documentation/devicetree/bindings/pinctrl/pinctrl-zx.txt
2133 F: Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt
2134 F: Documentation/devicetree/bindings/soc/zte/
2135 F: Documentation/devicetree/bindings/sound/zte,*.txt
2136 F: Documentation/devicetree/bindings/thermal/zx2967-thermal.txt
2137 F: Documentation/devicetree/bindings/watchdog/zte,zx2967-wdt.txt
2138 F: include/dt-bindings/clock/zx2967*.h
2139 F: include/dt-bindings/soc/zte,*.h
2140 F: sound/soc/codecs/zx_aud96p22.c
2143 ARM/ZYNQ ARCHITECTURE
2144 M: Michal Simek <michal.simek@xilinx.com>
2145 R: Sören Brinkmann <soren.brinkmann@xilinx.com>
2146 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2147 W: http://wiki.xilinx.com
2148 T: git https://github.com/Xilinx/linux-xlnx.git
2150 F: arch/arm/mach-zynq/
2151 F: drivers/cpuidle/cpuidle-zynq.c
2152 F: drivers/block/xsysace.c
2155 F: drivers/clocksource/cadence_ttc_timer.c
2156 F: drivers/i2c/busses/i2c-cadence.c
2157 F: drivers/mmc/host/sdhci-of-arasan.c
2158 F: drivers/edac/synopsys_edac.c
2160 ARM64 PORT (AARCH64 ARCHITECTURE)
2161 M: Catalin Marinas <catalin.marinas@arm.com>
2162 M: Will Deacon <will.deacon@arm.com>
2163 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2164 T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2167 F: Documentation/arm64/
2169 AS3645A LED FLASH CONTROLLER DRIVER
2170 M: Sakari Ailus <sakari.ailus@iki.fi>
2171 L: linux-leds@vger.kernel.org
2173 F: drivers/leds/leds-as3645a.c
2175 AS3645A LED FLASH CONTROLLER DRIVER
2176 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2177 L: linux-media@vger.kernel.org
2178 T: git git://linuxtv.org/media_tree.git
2180 F: drivers/media/i2c/as3645a.c
2181 F: include/media/i2c/as3645a.h
2183 ASAHI KASEI AK8974 DRIVER
2184 M: Linus Walleij <linus.walleij@linaro.org>
2185 L: linux-iio@vger.kernel.org
2186 W: http://www.akm.com/
2188 F: drivers/iio/magnetometer/ak8974.c
2190 ASC7621 HARDWARE MONITOR DRIVER
2191 M: George Joseph <george.joseph@fairview5.com>
2192 L: linux-hwmon@vger.kernel.org
2194 F: Documentation/hwmon/asc7621
2195 F: drivers/hwmon/asc7621.c
2197 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2198 M: Corentin Chary <corentin.chary@gmail.com>
2199 L: acpi4asus-user@lists.sourceforge.net
2200 L: platform-driver-x86@vger.kernel.org
2201 W: http://acpi4asus.sf.net
2203 F: drivers/platform/x86/asus*.c
2204 F: drivers/platform/x86/eeepc*.c
2206 ASUS WIRELESS RADIO CONTROL DRIVER
2207 M: João Paulo Rechi Vita <jprvita@gmail.com>
2208 L: platform-driver-x86@vger.kernel.org
2210 F: drivers/platform/x86/asus-wireless.c
2213 M: David Howells <dhowells@redhat.com>
2214 L: keyrings@vger.kernel.org
2216 F: Documentation/crypto/asymmetric-keys.txt
2217 F: include/linux/verification.h
2218 F: include/crypto/public_key.h
2219 F: include/crypto/pkcs7.h
2220 F: crypto/asymmetric_keys/
2222 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2223 R: Dan Williams <dan.j.williams@intel.com>
2224 W: http://sourceforge.net/projects/xscaleiop
2226 F: Documentation/crypto/async-tx-api.txt
2229 F: include/linux/dmaengine.h
2230 F: include/linux/async_tx.h
2233 M: Wolfram Sang <wsa@the-dreams.de>
2234 L: linux-i2c@vger.kernel.org
2236 F: drivers/misc/eeprom/at24.c
2237 F: include/linux/platform_data/at24.h
2239 ATA OVER ETHERNET (AOE) DRIVER
2240 M: "Ed L. Cashin" <ed.cashin@acm.org>
2241 W: http://www.openaoe.org/
2243 F: Documentation/aoe/
2244 F: drivers/block/aoe/
2246 ATHEROS 71XX/9XXX GPIO DRIVER
2247 M: Alban Bedel <albeu@free.fr>
2248 W: https://github.com/AlbanBedel/linux
2249 T: git git://github.com/AlbanBedel/linux
2251 F: drivers/gpio/gpio-ath79.c
2252 F: Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2254 ATHEROS ATH GENERIC UTILITIES
2255 M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
2256 L: linux-wireless@vger.kernel.org
2258 F: drivers/net/wireless/ath/*
2260 ATHEROS ATH5K WIRELESS DRIVER
2261 M: Jiri Slaby <jirislaby@gmail.com>
2262 M: Nick Kossifidis <mickflemm@gmail.com>
2263 M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
2264 L: linux-wireless@vger.kernel.org
2265 W: http://wireless.kernel.org/en/users/Drivers/ath5k
2267 F: drivers/net/wireless/ath/ath5k/
2269 ATHEROS ATH6KL WIRELESS DRIVER
2270 M: Kalle Valo <kvalo@qca.qualcomm.com>
2271 L: linux-wireless@vger.kernel.org
2272 W: http://wireless.kernel.org/en/users/Drivers/ath6kl
2273 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2275 F: drivers/net/wireless/ath/ath6kl/
2278 M: Ville Syrjala <syrjala@sci.fi>
2280 F: drivers/input/misc/ati_remote2.c
2282 ATK0110 HWMON DRIVER
2283 M: Luca Tettamanti <kronos.it@gmail.com>
2284 L: linux-hwmon@vger.kernel.org
2286 F: drivers/hwmon/asus_atk0110.c
2288 ATLX ETHERNET DRIVERS
2289 M: Jay Cliburn <jcliburn@gmail.com>
2290 M: Chris Snook <chris.snook@gmail.com>
2291 L: netdev@vger.kernel.org
2292 W: http://sourceforge.net/projects/atl1
2293 W: http://atl1.sourceforge.net
2295 F: drivers/net/ethernet/atheros/
2298 M: Chas Williams <3chas3@gmail.com>
2299 L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
2300 L: netdev@vger.kernel.org
2301 W: http://linux-atm.sourceforge.net
2304 F: include/linux/atm*
2305 F: include/uapi/linux/atm*
2307 ATMEL AT91 / AT32 MCI DRIVER
2308 M: Ludovic Desroches <ludovic.desroches@microchip.com>
2310 F: drivers/mmc/host/atmel-mci.c
2312 ATMEL AT91 SAMA5D2-Compatible Shutdown Controller
2313 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2315 F: drivers/power/reset/at91-sama5d2_shdwc.c
2317 ATMEL Audio ALSA driver
2318 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2319 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2324 M: Ludovic Desroches <ludovic.desroches@microchip.com>
2325 L: linux-i2c@vger.kernel.org
2327 F: drivers/i2c/busses/i2c-at91.c
2330 M: Ludovic Desroches <ludovic.desroches@microchip.com>
2331 L: linux-media@vger.kernel.org
2333 F: drivers/media/platform/atmel/atmel-isi.c
2334 F: include/media/atmel-isi.h
2337 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2338 L: linux-fbdev@vger.kernel.org
2340 F: drivers/video/fbdev/atmel_lcdfb.c
2341 F: include/video/atmel_lcdc.h
2343 ATMEL MACB ETHERNET DRIVER
2344 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2346 F: drivers/net/ethernet/cadence/
2348 ATMEL MAXTOUCH DRIVER
2349 M: Nick Dyer <nick@shmanahar.org>
2350 T: git git://github.com/ndyer/linux.git
2352 F: Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2353 F: drivers/input/touchscreen/atmel_mxt_ts.c
2354 F: include/linux/platform_data/atmel_mxt_ts.h
2357 M: Wenyou Yang <wenyou.yang@atmel.com>
2358 M: Josh Wu <rainyfeeling@outlook.com>
2359 L: linux-mtd@lists.infradead.org
2361 F: drivers/mtd/nand/atmel/*
2363 ATMEL SAMA5D2 ADC DRIVER
2364 M: Ludovic Desroches <ludovic.desroches@microchip.com>
2365 L: linux-iio@vger.kernel.org
2367 F: drivers/iio/adc/at91-sama5d2_adc.c
2370 M: Ludovic Desroches <ludovic.desroches@microchip.com>
2371 L: linux-mmc@vger.kernel.org
2373 F: drivers/mmc/host/sdhci-of-at91.c
2376 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2378 F: drivers/spi/spi-atmel.*
2381 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2382 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2384 F: drivers/misc/atmel-ssc.c
2385 F: include/linux/atmel-ssc.h
2387 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
2388 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2389 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2391 F: drivers/misc/atmel_tclib.c
2392 F: drivers/clocksource/tcb_clksrc.c
2394 ATMEL USBA UDC DRIVER
2395 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2396 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2398 F: drivers/usb/gadget/udc/atmel_usba_udc.*
2400 ATMEL WIRELESS DRIVER
2401 M: Simon Kelley <simon@thekelleys.org.uk>
2402 L: linux-wireless@vger.kernel.org
2403 W: http://www.thekelleys.org.uk/atmel
2404 W: http://atmelwlandriver.sourceforge.net/
2406 F: drivers/net/wireless/atmel/atmel*
2409 M: Ludovic Desroches <ludovic.desroches@microchip.com>
2410 L: linux-arm-kernel@lists.infradead.org
2411 L: dmaengine@vger.kernel.org
2413 F: drivers/dma/at_xdmac.c
2415 ATOMIC INFRASTRUCTURE
2416 M: Will Deacon <will.deacon@arm.com>
2417 M: Peter Zijlstra <peterz@infradead.org>
2418 R: Boqun Feng <boqun.feng@gmail.com>
2419 L: linux-kernel@vger.kernel.org
2421 F: arch/*/include/asm/atomic*.h
2422 F: include/*/atomic*.h
2424 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2425 M: Bradley Grove <linuxdrivers@attotech.com>
2426 L: linux-scsi@vger.kernel.org
2427 W: http://www.attotech.com
2429 F: drivers/scsi/esas2r
2431 ATUSB IEEE 802.15.4 RADIO DRIVER
2432 M: Stefan Schmidt <stefan@osg.samsung.com>
2433 L: linux-wpan@vger.kernel.org
2435 F: drivers/net/ieee802154/atusb.c
2436 F: drivers/net/ieee802154/atusb.h
2437 F: drivers/net/ieee802154/at86rf230.h
2440 M: Paul Moore <paul@paul-moore.com>
2441 M: Eric Paris <eparis@redhat.com>
2442 L: linux-audit@redhat.com (moderated for non-subscribers)
2443 W: https://github.com/linux-audit
2444 W: https://people.redhat.com/sgrubb/audit
2445 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
2447 F: include/linux/audit.h
2448 F: include/uapi/linux/audit.h
2451 AUXILIARY DISPLAY DRIVERS
2452 M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2453 W: http://miguelojeda.es/auxdisplay.htm
2454 W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2456 F: drivers/auxdisplay/
2457 F: include/linux/cfag12864b.h
2460 M: Ralf Baechle <ralf@linux-mips.org>
2461 L: linux-hams@vger.kernel.org
2462 W: http://www.linux-ax25.org/
2464 F: include/uapi/linux/ax25.h
2465 F: include/net/ax25.h
2469 M: Peter Rosin <peda@axentia.se>
2470 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2472 F: Documentation/devicetree/bindings/arm/axentia.txt
2473 F: arch/arm/boot/dts/at91-linea.dtsi
2474 F: arch/arm/boot/dts/at91-tse850-3.dts
2476 AXENTIA ASOC DRIVERS
2477 M: Peter Rosin <peda@axentia.se>
2478 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2480 F: Documentation/devicetree/bindings/sound/axentia,*
2481 F: sound/soc/atmel/tse850-pcm5142.c
2484 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
2485 M: Mauro Carvalho Chehab <mchehab@kernel.org>
2486 L: linux-media@vger.kernel.org
2487 W: https://linuxtv.org
2488 T: git git://linuxtv.org/media_tree.git
2490 F: drivers/media/usb/dvb-usb-v2/az6007.c
2492 AZTECH FM RADIO RECEIVER DRIVER
2493 M: Hans Verkuil <hverkuil@xs4all.nl>
2494 L: linux-media@vger.kernel.org
2495 T: git git://linuxtv.org/media_tree.git
2496 W: https://linuxtv.org
2498 F: drivers/media/radio/radio-aztech*
2501 L: linux-wireless@vger.kernel.org
2502 L: b43-dev@lists.infradead.org
2503 W: http://wireless.kernel.org/en/users/Drivers/b43
2505 F: drivers/net/wireless/broadcom/b43/
2507 B43LEGACY WIRELESS DRIVER
2508 M: Larry Finger <Larry.Finger@lwfinger.net>
2509 L: linux-wireless@vger.kernel.org
2510 L: b43-dev@lists.infradead.org
2511 W: http://wireless.kernel.org/en/users/Drivers/b43
2513 F: drivers/net/wireless/broadcom/b43legacy/
2515 BACKLIGHT CLASS/SUBSYSTEM
2516 M: Lee Jones <lee.jones@linaro.org>
2517 M: Daniel Thompson <daniel.thompson@linaro.org>
2518 M: Jingoo Han <jingoohan1@gmail.com>
2519 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
2521 F: drivers/video/backlight/
2522 F: include/linux/backlight.h
2523 F: include/linux/pwm_backlight.h
2524 F: Documentation/devicetree/bindings/leds/backlight
2527 M: Marek Lindner <mareklindner@neomailbox.ch>
2528 M: Simon Wunderlich <sw@simonwunderlich.de>
2529 M: Antonio Quartulli <a@unstable.cc>
2530 L: b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
2531 W: https://www.open-mesh.org/
2532 Q: https://patchwork.open-mesh.org/project/batman/list/
2534 F: Documentation/ABI/testing/sysfs-class-net-batman-adv
2535 F: Documentation/ABI/testing/sysfs-class-net-mesh
2536 F: Documentation/networking/batman-adv.rst
2537 F: include/uapi/linux/batman_adv.h
2540 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2541 M: Thomas Sailer <t.sailer@alumni.ethz.ch>
2542 L: linux-hams@vger.kernel.org
2543 W: http://www.baycom.org/~tom/ham/ham.html
2545 F: drivers/net/hamradio/baycom*
2547 BCACHE (BLOCK LAYER CACHE)
2548 M: Kent Overstreet <kent.overstreet@gmail.com>
2549 L: linux-bcache@vger.kernel.org
2550 W: http://bcache.evilpiepirate.org
2552 F: drivers/md/bcache/
2554 BDISP ST MEDIA DRIVER
2555 M: Fabien Dessenne <fabien.dessenne@st.com>
2556 L: linux-media@vger.kernel.org
2557 T: git git://linuxtv.org/media_tree.git
2558 W: https://linuxtv.org
2560 F: drivers/media/platform/sti/bdisp
2562 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2563 M: Dariusz Marcinkiewicz <reksio@newterm.pl>
2564 L: netdev@vger.kernel.org
2566 F: drivers/net/ethernet/ec_bhf.c
2569 M: Luis de Bethencourt <luisbg@kernel.org>
2570 M: Salah Triki <salah.triki@gmail.com>
2572 T: git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
2573 F: Documentation/filesystems/befs.txt
2577 M: Paolo Valente <paolo.valente@linaro.org>
2578 M: Jens Axboe <axboe@kernel.dk>
2579 L: linux-block@vger.kernel.org
2582 F: Documentation/block/bfq-iosched.txt
2585 M: "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
2587 F: Documentation/filesystems/bfs.txt
2589 F: include/uapi/linux/bfs_fs.h
2591 BLACKFIN ARCHITECTURE
2592 M: Steven Miao <realmz6@gmail.com>
2593 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2594 T: git git://git.code.sf.net/p/adi-linux/code
2595 W: http://blackfin.uclinux.org
2599 BLACKFIN EMAC DRIVER
2600 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2601 W: http://blackfin.uclinux.org
2603 F: drivers/net/ethernet/adi/
2605 BLACKFIN MEDIA DRIVER
2606 M: Scott Jiang <scott.jiang.linux@gmail.com>
2607 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2608 W: http://blackfin.uclinux.org/
2610 F: drivers/media/platform/blackfin/
2611 F: drivers/media/i2c/adv7183*
2612 F: drivers/media/i2c/vs6624*
2615 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2616 W: http://blackfin.uclinux.org
2618 F: drivers/rtc/rtc-bfin.c
2621 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2622 W: http://blackfin.uclinux.org
2624 F: drivers/mmc/host/bfin_sdh.c
2626 BLACKFIN SERIAL DRIVER
2627 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2628 W: http://blackfin.uclinux.org
2630 F: drivers/tty/serial/bfin_uart.c
2632 BLACKFIN WATCHDOG DRIVER
2633 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2634 W: http://blackfin.uclinux.org
2636 F: drivers/watchdog/bfin_wdt.c
2638 BLINKM RGB LED DRIVER
2639 M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
2641 F: drivers/leds/leds-blinkm.c
2644 M: Jens Axboe <axboe@kernel.dk>
2645 L: linux-block@vger.kernel.org
2646 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2649 F: kernel/trace/blktrace.c
2653 M: Joern Engel <joern@lazybastard.org>
2654 L: linux-mtd@lists.infradead.org
2656 F: drivers/mtd/devices/block2mtd.c
2659 M: Marcel Holtmann <marcel@holtmann.org>
2660 M: Gustavo Padovan <gustavo@padovan.org>
2661 M: Johan Hedberg <johan.hedberg@gmail.com>
2662 L: linux-bluetooth@vger.kernel.org
2663 W: http://www.bluez.org/
2664 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2665 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2667 F: drivers/bluetooth/
2670 M: Marcel Holtmann <marcel@holtmann.org>
2671 M: Gustavo Padovan <gustavo@padovan.org>
2672 M: Johan Hedberg <johan.hedberg@gmail.com>
2673 L: linux-bluetooth@vger.kernel.org
2674 W: http://www.bluez.org/
2675 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2676 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2679 F: include/net/bluetooth/
2682 M: Jay Vosburgh <j.vosburgh@gmail.com>
2683 M: Veaceslav Falico <vfalico@gmail.com>
2684 M: Andy Gospodarek <andy@greyhouse.net>
2685 L: netdev@vger.kernel.org
2686 W: http://sourceforge.net/projects/bonding/
2688 F: drivers/net/bonding/
2689 F: include/uapi/linux/if_bonding.h
2691 BPF (Safe dynamic programs and tools)
2692 M: Alexei Starovoitov <ast@kernel.org>
2693 M: Daniel Borkmann <daniel@iogearbox.net>
2694 L: netdev@vger.kernel.org
2695 L: linux-kernel@vger.kernel.org
2697 F: arch/x86/net/bpf_jit*
2698 F: Documentation/networking/filter.txt
2699 F: include/linux/bpf*
2700 F: include/linux/filter.h
2701 F: include/uapi/linux/bpf*
2702 F: include/uapi/linux/filter.h
2704 F: kernel/trace/bpf_trace.c
2707 F: net/core/filter.c
2708 F: net/sched/act_bpf.c
2709 F: net/sched/cls_bpf.c
2712 F: tools/testing/selftests/bpf/
2714 BROADCOM B44 10/100 ETHERNET DRIVER
2715 M: Michael Chan <michael.chan@broadcom.com>
2716 L: netdev@vger.kernel.org
2718 F: drivers/net/ethernet/broadcom/b44.*
2720 BROADCOM B53 ETHERNET SWITCH DRIVER
2721 M: Florian Fainelli <f.fainelli@gmail.com>
2722 L: netdev@vger.kernel.org
2723 L: openwrt-devel@lists.openwrt.org (subscribers-only)
2725 F: drivers/net/dsa/b53/*
2726 F: include/linux/platform_data/b53.h
2728 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2729 M: Florian Fainelli <f.fainelli@gmail.com>
2730 M: Ray Jui <rjui@broadcom.com>
2731 M: Scott Branden <sbranden@broadcom.com>
2732 M: bcm-kernel-feedback-list@broadcom.com
2733 T: git git://github.com/broadcom/mach-bcm
2739 F: arch/arm/mach-bcm/
2741 BROADCOM BCM2835 ARM ARCHITECTURE
2742 M: Eric Anholt <eric@anholt.net>
2743 M: Stefan Wahren <stefan.wahren@i2se.com>
2744 L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2745 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2746 T: git git://github.com/anholt/linux
2749 F: drivers/staging/vc04_services
2751 BROADCOM BCM47XX MIPS ARCHITECTURE
2752 M: Hauke Mehrtens <hauke@hauke-m.de>
2753 M: Rafał Miłecki <zajec5@gmail.com>
2754 L: linux-mips@linux-mips.org
2756 F: Documentation/devicetree/bindings/mips/brcm/
2757 F: arch/mips/bcm47xx/*
2758 F: arch/mips/include/asm/mach-bcm47xx/*
2760 BROADCOM BCM5301X ARM ARCHITECTURE
2761 M: Hauke Mehrtens <hauke@hauke-m.de>
2762 M: Rafał Miłecki <zajec5@gmail.com>
2763 M: Jon Mason <jonmason@broadcom.com>
2764 M: bcm-kernel-feedback-list@broadcom.com
2765 L: linux-arm-kernel@lists.infradead.org
2767 F: arch/arm/mach-bcm/bcm_5301x.c
2768 F: arch/arm/boot/dts/bcm5301x*.dtsi
2769 F: arch/arm/boot/dts/bcm470*
2770 F: arch/arm/boot/dts/bcm953012*
2772 BROADCOM BCM53573 ARM ARCHITECTURE
2773 M: Rafał Miłecki <rafal@milecki.pl>
2774 L: linux-arm-kernel@lists.infradead.org
2776 F: arch/arm/boot/dts/bcm53573*
2777 F: arch/arm/boot/dts/bcm47189*
2779 BROADCOM BCM63XX ARM ARCHITECTURE
2780 M: Florian Fainelli <f.fainelli@gmail.com>
2781 M: bcm-kernel-feedback-list@broadcom.com
2782 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2783 T: git git://github.com/broadcom/stblinux.git
2787 BROADCOM BCM63XX/BCM33XX UDC DRIVER
2788 M: Kevin Cernekee <cernekee@gmail.com>
2789 L: linux-usb@vger.kernel.org
2791 F: drivers/usb/gadget/udc/bcm63xx_udc.*
2793 BROADCOM BCM7XXX ARM ARCHITECTURE
2794 M: Brian Norris <computersforpeace@gmail.com>
2795 M: Gregory Fong <gregory.0xf0@gmail.com>
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
2801 F: arch/arm/mach-bcm/*brcmstb*
2802 F: arch/arm/boot/dts/bcm7*.dts*
2803 F: drivers/bus/brcmstb_gisb.c
2806 BROADCOM BMIPS CPUFREQ DRIVER
2807 M: Markus Mayer <mmayer@broadcom.com>
2808 M: bcm-kernel-feedback-list@broadcom.com
2809 L: linux-pm@vger.kernel.org
2811 F: drivers/cpufreq/bmips-cpufreq.c
2813 BROADCOM BMIPS MIPS ARCHITECTURE
2814 M: Kevin Cernekee <cernekee@gmail.com>
2815 M: Florian Fainelli <f.fainelli@gmail.com>
2816 L: linux-mips@linux-mips.org
2817 T: git git://github.com/broadcom/stblinux.git
2819 F: arch/mips/bmips/*
2820 F: arch/mips/include/asm/mach-bmips/*
2821 F: arch/mips/kernel/*bmips*
2822 F: arch/mips/boot/dts/brcm/bcm*.dts*
2823 F: drivers/irqchip/irq-bcm63*
2824 F: drivers/irqchip/irq-bcm7*
2825 F: drivers/irqchip/irq-brcmstb*
2826 F: include/linux/bcm963xx_nvram.h
2827 F: include/linux/bcm963xx_tag.h
2829 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
2830 M: Rasesh Mody <rasesh.mody@cavium.com>
2831 M: Harish Patil <harish.patil@cavium.com>
2832 M: Dept-GELinuxNICDev@cavium.com
2833 L: netdev@vger.kernel.org
2835 F: drivers/net/ethernet/broadcom/bnx2.*
2836 F: drivers/net/ethernet/broadcom/bnx2_*
2838 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2839 M: QLogic-Storage-Upstream@qlogic.com
2840 L: linux-scsi@vger.kernel.org
2842 F: drivers/scsi/bnx2fc/
2844 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2845 M: QLogic-Storage-Upstream@qlogic.com
2846 L: linux-scsi@vger.kernel.org
2848 F: drivers/scsi/bnx2i/
2850 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
2851 M: Yuval Mintz <Yuval.Mintz@cavium.com>
2852 M: Ariel Elior <ariel.elior@cavium.com>
2853 M: everest-linux-l2@cavium.com
2854 L: netdev@vger.kernel.org
2856 F: drivers/net/ethernet/broadcom/bnx2x/
2858 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
2859 M: Michael Chan <michael.chan@broadcom.com>
2860 L: netdev@vger.kernel.org
2862 F: drivers/net/ethernet/broadcom/bnxt/
2864 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2865 M: Arend van Spriel <arend.vanspriel@broadcom.com>
2866 M: Franky Lin <franky.lin@broadcom.com>
2867 M: Hante Meuleman <hante.meuleman@broadcom.com>
2868 M: Chi-Hsien Lin <chi-hsien.lin@cypress.com>
2869 M: Wright Feng <wright.feng@cypress.com>
2870 L: linux-wireless@vger.kernel.org
2871 L: brcm80211-dev-list.pdl@broadcom.com
2872 L: brcm80211-dev-list@cypress.com
2874 F: drivers/net/wireless/broadcom/brcm80211/
2876 BROADCOM BRCMSTB GPIO DRIVER
2877 M: Gregory Fong <gregory.0xf0@gmail.com>
2878 L: bcm-kernel-feedback-list@broadcom.com
2880 F: drivers/gpio/gpio-brcmstb.c
2881 F: Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2883 BROADCOM GENET ETHERNET DRIVER
2884 M: Florian Fainelli <f.fainelli@gmail.com>
2885 L: netdev@vger.kernel.org
2887 F: drivers/net/ethernet/broadcom/genet/
2889 BROADCOM IPROC ARM ARCHITECTURE
2890 M: Ray Jui <rjui@broadcom.com>
2891 M: Scott Branden <sbranden@broadcom.com>
2892 M: Jon Mason <jonmason@broadcom.com>
2893 M: bcm-kernel-feedback-list@broadcom.com
2894 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2895 T: git git://github.com/broadcom/cygnus-linux.git
2910 F: arch/arm64/boot/dts/broadcom/ns2*
2911 F: drivers/clk/bcm/clk-ns*
2912 F: drivers/pinctrl/bcm/pinctrl-ns*
2914 BROADCOM KONA GPIO DRIVER
2915 M: Ray Jui <rjui@broadcom.com>
2916 L: bcm-kernel-feedback-list@broadcom.com
2918 F: drivers/gpio/gpio-bcm-kona.c
2919 F: Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
2921 BROADCOM NETXTREME-E ROCE DRIVER
2922 M: Selvin Xavier <selvin.xavier@broadcom.com>
2923 M: Devesh Sharma <devesh.sharma@broadcom.com>
2924 M: Somnath Kotur <somnath.kotur@broadcom.com>
2925 M: Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
2926 L: linux-rdma@vger.kernel.org
2927 W: http://www.broadcom.com
2929 F: drivers/infiniband/hw/bnxt_re/
2930 F: include/uapi/rdma/bnxt_re-abi.h
2932 BROADCOM NVRAM DRIVER
2933 M: Rafał Miłecki <zajec5@gmail.com>
2934 L: linux-mips@linux-mips.org
2936 F: drivers/firmware/broadcom/*
2938 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2939 M: Rafał Miłecki <zajec5@gmail.com>
2940 L: linux-wireless@vger.kernel.org
2943 F: include/linux/bcma/
2945 BROADCOM STB AVS CPUFREQ DRIVER
2946 M: Markus Mayer <mmayer@broadcom.com>
2947 M: bcm-kernel-feedback-list@broadcom.com
2948 L: linux-pm@vger.kernel.org
2950 F: Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
2951 F: drivers/cpufreq/brcmstb*
2953 BROADCOM STB NAND FLASH DRIVER
2954 M: Brian Norris <computersforpeace@gmail.com>
2955 M: Kamal Dasu <kdasu.kdev@gmail.com>
2956 L: linux-mtd@lists.infradead.org
2957 L: bcm-kernel-feedback-list@broadcom.com
2959 F: drivers/mtd/nand/brcmnand/
2961 BROADCOM SYSTEMPORT ETHERNET DRIVER
2962 M: Florian Fainelli <f.fainelli@gmail.com>
2963 L: netdev@vger.kernel.org
2965 F: drivers/net/ethernet/broadcom/bcmsysport.*
2967 BROADCOM TG3 GIGABIT ETHERNET DRIVER
2968 M: Siva Reddy Kallam <siva.kallam@broadcom.com>
2969 M: Prashant Sreedharan <prashant@broadcom.com>
2970 M: Michael Chan <mchan@broadcom.com>
2971 L: netdev@vger.kernel.org
2973 F: drivers/net/ethernet/broadcom/tg3.*
2975 BROCADE BFA FC SCSI DRIVER
2976 M: Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2977 M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
2978 L: linux-scsi@vger.kernel.org
2980 F: drivers/scsi/bfa/
2982 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
2983 M: Rasesh Mody <rasesh.mody@cavium.com>
2984 M: Sudarsana Kalluru <sudarsana.kalluru@cavium.com>
2985 M: Dept-GELinuxNICDev@cavium.com
2986 L: netdev@vger.kernel.org
2988 F: drivers/net/ethernet/brocade/bna/
2990 BSG (block layer generic sg v4 driver)
2991 M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
2992 L: linux-scsi@vger.kernel.org
2995 F: include/linux/bsg.h
2996 F: include/uapi/linux/bsg.h
2999 M: Clemens Ladisch <clemens@ladisch.de>
3000 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3001 T: git git://git.alsa-project.org/alsa-kernel.git
3003 F: Documentation/sound/alsa/Bt87x.txt
3004 F: sound/pci/bt87x.c
3007 M: Michael Buesch <m@bues.ch>
3008 W: http://bu3sch.de/btgpio.php
3010 F: drivers/gpio/gpio-bt8xx.c
3013 M: Chris Mason <clm@fb.com>
3014 M: Josef Bacik <jbacik@fb.com>
3015 M: David Sterba <dsterba@suse.com>
3016 L: linux-btrfs@vger.kernel.org
3017 W: http://btrfs.wiki.kernel.org/
3018 Q: http://patchwork.kernel.org/project/linux-btrfs/list/
3019 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
3021 F: Documentation/filesystems/btrfs.txt
3023 F: include/linux/btrfs*
3024 F: include/uapi/linux/btrfs*
3026 BTTV VIDEO4LINUX DRIVER
3027 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
3028 M: Mauro Carvalho Chehab <mchehab@kernel.org>
3029 L: linux-media@vger.kernel.org
3030 W: https://linuxtv.org
3031 T: git git://linuxtv.org/media_tree.git
3033 F: Documentation/media/v4l-drivers/bttv*
3034 F: drivers/media/pci/bt8xx/bttv*
3036 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3037 M: Chanwoo Choi <cw00.choi@samsung.com>
3038 L: linux-pm@vger.kernel.org
3039 L: linux-samsung-soc@vger.kernel.org
3040 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3042 F: drivers/devfreq/exynos-bus.c
3043 F: Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3045 BUSLOGIC SCSI DRIVER
3046 M: Khalid Aziz <khalid@gonehiking.org>
3047 L: linux-scsi@vger.kernel.org
3049 F: drivers/scsi/BusLogic.*
3050 F: drivers/scsi/FlashPoint.*
3052 C-MEDIA CMI8788 DRIVER
3053 M: Clemens Ladisch <clemens@ladisch.de>
3054 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3055 T: git git://git.alsa-project.org/alsa-kernel.git
3057 F: sound/pci/oxygen/
3060 M: Mark Salter <msalter@redhat.com>
3061 M: Aurelien Jacquiot <jacquiot.aurelien@gmail.com>
3062 L: linux-c6x-dev@linux-c6x.org
3063 W: http://www.linux-c6x.org/wiki/index.php/Main_Page
3067 CA8210 IEEE-802.15.4 RADIO DRIVER
3068 M: Harry Morris <h.morris@cascoda.com>
3069 M: linuxdev@cascoda.com
3070 L: linux-wpan@vger.kernel.org
3071 W: https://github.com/Cascoda/ca8210-linux.git
3073 F: drivers/net/ieee802154/ca8210.c
3074 F: Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3076 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3077 M: David Howells <dhowells@redhat.com>
3078 L: linux-cachefs@redhat.com (moderated for non-subscribers)
3080 F: Documentation/filesystems/caching/cachefiles.txt
3083 CADET FM/AM RADIO RECEIVER DRIVER
3084 M: Hans Verkuil <hverkuil@xs4all.nl>
3085 L: linux-media@vger.kernel.org
3086 T: git git://linuxtv.org/media_tree.git
3087 W: https://linuxtv.org
3089 F: drivers/media/radio/radio-cadet*
3091 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3092 M: Jonathan Corbet <corbet@lwn.net>
3093 L: linux-media@vger.kernel.org
3094 T: git git://linuxtv.org/media_tree.git
3096 F: Documentation/media/v4l-drivers/cafe_ccic*
3097 F: drivers/media/platform/marvell-ccic/
3100 M: Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
3101 L: netdev@vger.kernel.org
3103 F: Documentation/networking/caif/
3104 F: drivers/net/caif/
3105 F: include/uapi/linux/caif/
3106 F: include/net/caif/
3109 CALGARY x86-64 IOMMU
3110 M: Muli Ben-Yehuda <mulix@mulix.org>
3111 M: Jon Mason <jdmason@kudzu.us>
3112 L: iommu@lists.linux-foundation.org
3114 F: arch/x86/kernel/pci-calgary_64.c
3115 F: arch/x86/kernel/tce_64.c
3116 F: arch/x86/include/asm/calgary.h
3117 F: arch/x86/include/asm/tce.h
3120 M: Wolfgang Grandegger <wg@grandegger.com>
3121 M: Marc Kleine-Budde <mkl@pengutronix.de>
3122 L: linux-can@vger.kernel.org
3123 W: https://github.com/linux-can
3124 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3125 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3127 F: Documentation/devicetree/bindings/net/can/
3129 F: include/linux/can/dev.h
3130 F: include/linux/can/platform/
3131 F: include/uapi/linux/can/error.h
3132 F: include/uapi/linux/can/netlink.h
3135 M: Oliver Hartkopp <socketcan@hartkopp.net>
3136 M: Marc Kleine-Budde <mkl@pengutronix.de>
3137 L: linux-can@vger.kernel.org
3138 W: https://github.com/linux-can
3139 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3140 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3142 F: Documentation/networking/can.txt
3144 F: include/linux/can/core.h
3145 F: include/uapi/linux/can.h
3146 F: include/uapi/linux/can/bcm.h
3147 F: include/uapi/linux/can/raw.h
3148 F: include/uapi/linux/can/gw.h
3151 M: Serge Hallyn <serge@hallyn.com>
3152 L: linux-security-module@vger.kernel.org
3154 F: include/linux/capability.h
3155 F: include/uapi/linux/capability.h
3156 F: security/commoncap.c
3157 F: kernel/capability.c
3159 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3160 M: Kevin Tsai <ktsai@capellamicro.com>
3162 F: drivers/iio/light/cm*
3164 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
3165 M: Christian Lamparter <chunkeey@googlemail.com>
3166 L: linux-wireless@vger.kernel.org
3167 W: http://wireless.kernel.org/en/users/Drivers/carl9170
3169 F: drivers/net/wireless/ath/carl9170/
3172 M: Jan Glauber <jglauber@cavium.com>
3173 M: David Daney <david.daney@cavium.com>
3174 W: http://www.cavium.com
3176 F: drivers/i2c/busses/i2c-octeon*
3177 F: drivers/i2c/busses/i2c-thunderx*
3179 CAVIUM LIQUIDIO NETWORK DRIVER
3180 M: Derek Chickles <derek.chickles@caviumnetworks.com>
3181 M: Satanand Burla <satananda.burla@caviumnetworks.com>
3182 M: Felix Manlunas <felix.manlunas@caviumnetworks.com>
3183 M: Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
3184 L: netdev@vger.kernel.org
3185 W: http://www.cavium.com
3187 F: drivers/net/ethernet/cavium/liquidio/
3190 M: Jan Glauber <jglauber@cavium.com>
3191 M: David Daney <david.daney@cavium.com>
3192 M: Steven J. Hill <Steven.Hill@cavium.com>
3193 W: http://www.cavium.com
3195 F: drivers/mmc/host/cavium*
3197 CAVIUM OCTEON-TX CRYPTO DRIVER
3198 M: George Cherian <george.cherian@cavium.com>
3199 L: linux-crypto@vger.kernel.org
3200 W: http://www.cavium.com
3202 F: drivers/crypto/cavium/cpt/
3204 CAVIUM THUNDERX2 ARM64 SOC
3205 M: Robert Richter <rrichter@cavium.com>
3206 M: Jayachandran C <jnair@caviumnetworks.com>
3207 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3209 F: arch/arm64/boot/dts/cavium/thunder2-99xx*
3210 F: Documentation/devicetree/bindings/arm/cavium-thunder2.txt
3212 CC2520 IEEE-802.15.4 RADIO DRIVER
3213 M: Varka Bhadram <varkabhadram@gmail.com>
3214 L: linux-wpan@vger.kernel.org
3216 F: drivers/net/ieee802154/cc2520.c
3217 F: include/linux/spi/cc2520.h
3218 F: Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
3220 CCREE ARM TRUSTZONE CRYPTOCELL 700 REE DRIVER
3221 M: Gilad Ben-Yossef <gilad@benyossef.com>
3222 L: linux-crypto@vger.kernel.org
3223 L: driverdev-devel@linuxdriverproject.org
3225 F: drivers/staging/ccree/
3226 W: https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
3229 M: Hans Verkuil <hans.verkuil@cisco.com>
3230 L: linux-media@vger.kernel.org
3231 T: git git://linuxtv.org/media_tree.git
3232 W: http://linuxtv.org
3234 F: Documentation/media/kapi/cec-core.rst
3235 F: Documentation/media/uapi/cec
3236 F: drivers/media/cec/
3237 F: drivers/media/rc/keymaps/rc-cec.c
3238 F: include/media/cec.h
3239 F: include/media/cec-notifier.h
3240 F: include/uapi/linux/cec.h
3241 F: include/uapi/linux/cec-funcs.h
3242 F: Documentation/devicetree/bindings/media/cec.txt
3244 CELL BROADBAND ENGINE ARCHITECTURE
3245 M: Arnd Bergmann <arnd@arndb.de>
3246 L: linuxppc-dev@lists.ozlabs.org
3247 W: http://www.ibm.com/developerworks/power/cell/
3249 F: arch/powerpc/include/asm/cell*.h
3250 F: arch/powerpc/include/asm/spu*.h
3251 F: arch/powerpc/include/uapi/asm/spu*.h
3252 F: arch/powerpc/oprofile/*cell*
3253 F: arch/powerpc/platforms/cell/
3255 CEPH COMMON CODE (LIBCEPH)
3256 M: Ilya Dryomov <idryomov@gmail.com>
3257 M: "Yan, Zheng" <zyan@redhat.com>
3258 M: Sage Weil <sage@redhat.com>
3259 L: ceph-devel@vger.kernel.org
3261 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3262 T: git git://github.com/ceph/ceph-client.git
3265 F: include/linux/ceph/
3266 F: include/linux/crush/
3268 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
3269 M: "Yan, Zheng" <zyan@redhat.com>
3270 M: Sage Weil <sage@redhat.com>
3271 M: Ilya Dryomov <idryomov@gmail.com>
3272 L: ceph-devel@vger.kernel.org
3274 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3275 T: git git://github.com/ceph/ceph-client.git
3277 F: Documentation/filesystems/ceph.txt
3280 CERTIFICATE HANDLING:
3281 M: David Howells <dhowells@redhat.com>
3282 M: David Woodhouse <dwmw2@infradead.org>
3283 L: keyrings@vger.kernel.org
3285 F: Documentation/module-signing.txt
3287 F: scripts/sign-file.c
3288 F: scripts/extract-cert.c
3290 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
3291 L: linux-usb@vger.kernel.org
3293 F: Documentation/usb/WUSB-Design-overview.txt
3294 F: Documentation/usb/wusb-cbaf
3295 F: drivers/usb/host/hwa-hc.c
3296 F: drivers/usb/host/whci/
3297 F: drivers/usb/wusbcore/
3298 F: include/linux/usb/wusb*
3300 CFAG12864B LCD DRIVER
3301 M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3302 W: http://miguelojeda.es/auxdisplay.htm
3303 W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
3305 F: drivers/auxdisplay/cfag12864b.c
3306 F: include/linux/cfag12864b.h
3308 CFAG12864BFB LCD FRAMEBUFFER DRIVER
3309 M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3310 W: http://miguelojeda.es/auxdisplay.htm
3311 W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
3313 F: drivers/auxdisplay/cfag12864bfb.c
3314 F: include/linux/cfag12864b.h
3316 CFG80211 and NL80211
3317 M: Johannes Berg <johannes@sipsolutions.net>
3318 L: linux-wireless@vger.kernel.org
3319 W: http://wireless.kernel.org/
3320 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
3321 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
3323 F: include/uapi/linux/nl80211.h
3324 F: include/net/cfg80211.h
3326 X: net/wireless/wext*
3328 CHAR and MISC DRIVERS
3329 M: Arnd Bergmann <arnd@arndb.de>
3330 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3331 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
3335 F: include/linux/miscdevice.h
3338 M: Andy Whitcroft <apw@canonical.com>
3339 M: Joe Perches <joe@perches.com>
3341 F: scripts/checkpatch.pl
3343 CHINESE DOCUMENTATION
3344 M: Harry Wei <harryxiyou@gmail.com>
3345 L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
3346 L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
3348 F: Documentation/translations/zh_CN/
3350 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
3351 M: Peter Chen <Peter.Chen@nxp.com>
3352 T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
3353 L: linux-usb@vger.kernel.org
3355 F: drivers/usb/chipidea/
3357 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
3358 M: Hans de Goede <hdegoede@redhat.com>
3359 L: linux-input@vger.kernel.org
3361 F: Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
3362 F: drivers/input/touchscreen/chipone_icn8318.c
3364 CHROME HARDWARE PLATFORM SUPPORT
3365 M: Benson Leung <bleung@chromium.org>
3366 M: Olof Johansson <olof@lixom.net>
3368 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bleung/chrome-platform.git
3369 F: drivers/platform/chrome/
3371 CIRRUS LOGIC AUDIO CODEC DRIVERS
3372 M: Brian Austin <brian.austin@cirrus.com>
3373 M: Paul Handrigan <Paul.Handrigan@cirrus.com>
3374 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3376 F: sound/soc/codecs/cs*
3378 CIRRUS LOGIC EP93XX ETHERNET DRIVER
3379 M: Hartley Sweeten <hsweeten@visionengravers.com>
3380 L: netdev@vger.kernel.org
3382 F: drivers/net/ethernet/cirrus/ep93xx_eth.c
3384 CISCO FCOE HBA DRIVER
3385 M: Satish Kharat <satishkh@cisco.com>
3386 M: Sesidhar Baddela <sebaddel@cisco.com>
3387 M: Karan Tilak Kumar <kartilak@cisco.com>
3388 L: linux-scsi@vger.kernel.org
3390 F: drivers/scsi/fnic/
3392 CISCO SCSI HBA DRIVER
3393 M: Karan Tilak Kumar <kartilak@cisco.com>
3394 M: Sesidhar Baddela <sebaddel@cisco.com>
3395 L: linux-scsi@vger.kernel.org
3397 F: drivers/scsi/snic/
3399 CISCO VIC ETHERNET NIC DRIVER
3400 M: Christian Benvenuti <benve@cisco.com>
3401 M: Govindarajulu Varadarajan <_govind@gmx.com>
3402 M: Neel Patel <neepatel@cisco.com>
3404 F: drivers/net/ethernet/cisco/enic/
3406 CISCO VIC LOW LATENCY NIC DRIVER
3407 M: Christian Benvenuti <benve@cisco.com>
3408 M: Dave Goodell <dgoodell@cisco.com>
3410 F: drivers/infiniband/hw/usnic/
3413 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3414 L: linux-kernel@vger.kernel.org
3417 F: include/linux/cleancache.h
3420 M: Russell King <linux@armlinux.org.uk>
3421 L: linux-clk@vger.kernel.org
3423 F: include/linux/clk.h
3425 CLOCKSOURCE, CLOCKEVENT DRIVERS
3426 M: Daniel Lezcano <daniel.lezcano@linaro.org>
3427 M: Thomas Gleixner <tglx@linutronix.de>
3428 L: linux-kernel@vger.kernel.org
3429 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
3431 F: drivers/clocksource
3434 M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
3435 M: Daniel Oliveira Nascimento <don@syst.com.br>
3436 L: platform-driver-x86@vger.kernel.org
3438 F: drivers/platform/x86/classmate-laptop.c
3441 M: Hans Verkuil <hans.verkuil@cisco.com>
3442 L: linux-media@vger.kernel.org
3443 T: git git://linuxtv.org/media_tree.git
3444 W: https://linuxtv.org
3446 F: drivers/media/pci/cobalt/
3448 COCCINELLE/Semantic Patches (SmPL)
3449 M: Julia Lawall <Julia.Lawall@lip6.fr>
3450 M: Gilles Muller <Gilles.Muller@lip6.fr>
3451 M: Nicolas Palix <nicolas.palix@imag.fr>
3452 M: Michal Marek <mmarek@suse.com>
3453 L: cocci@systeme.lip6.fr (moderated for non-subscribers)
3454 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
3455 W: http://coccinelle.lip6.fr/
3457 F: Documentation/dev-tools/coccinelle.rst
3458 F: scripts/coccinelle/
3459 F: scripts/coccicheck
3462 M: Jan Harkes <jaharkes@cs.cmu.edu>
3464 L: codalist@coda.cs.cmu.edu
3465 W: http://www.coda.cs.cmu.edu/
3467 F: Documentation/filesystems/coda.txt
3469 F: include/linux/coda*.h
3470 F: include/uapi/linux/coda*.h
3472 CODA V4L2 MEM2MEM DRIVER
3473 M: Philipp Zabel <p.zabel@pengutronix.de>
3474 L: linux-media@vger.kernel.org
3476 F: Documentation/devicetree/bindings/media/coda.txt
3477 F: drivers/media/platform/coda/
3479 COMMON CLK FRAMEWORK
3480 M: Michael Turquette <mturquette@baylibre.com>
3481 M: Stephen Boyd <sboyd@codeaurora.org>
3482 L: linux-clk@vger.kernel.org
3483 Q: http://patchwork.kernel.org/project/linux-clk/list/
3484 T: git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
3486 F: Documentation/devicetree/bindings/clock/
3488 X: drivers/clk/clkdev.c
3489 F: include/linux/clk-pr*
3490 F: include/linux/clk/
3492 COMMON INTERNET FILE SYSTEM (CIFS)
3493 M: Steve French <sfrench@samba.org>
3494 L: linux-cifs@vger.kernel.org
3495 L: samba-technical@lists.samba.org (moderated for non-subscribers)
3496 W: http://linux-cifs.samba.org/
3497 T: git git://git.samba.org/sfrench/cifs-2.6.git
3499 F: Documentation/filesystems/cifs/
3502 COMPACTPCI HOTPLUG CORE
3503 M: Scott Murray <scott@spiteful.org>
3504 L: linux-pci@vger.kernel.org
3506 F: drivers/pci/hotplug/cpci_hotplug*
3508 COMPACTPCI HOTPLUG GENERIC DRIVER
3509 M: Scott Murray <scott@spiteful.org>
3510 L: linux-pci@vger.kernel.org
3512 F: drivers/pci/hotplug/cpcihp_generic.c
3514 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
3515 M: Scott Murray <scott@spiteful.org>
3516 L: linux-pci@vger.kernel.org
3518 F: drivers/pci/hotplug/cpcihp_zt5550.*
3520 COMPAL LAPTOP SUPPORT
3521 M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
3522 L: platform-driver-x86@vger.kernel.org
3524 F: drivers/platform/x86/compal-laptop.c
3526 CONEXANT ACCESSRUNNER USB DRIVER
3527 L: accessrunner-general@lists.sourceforge.net
3528 W: http://accessrunner.sourceforge.net/
3530 F: drivers/usb/atm/cxacru.c
3533 M: Joel Becker <jlbec@evilplan.org>
3534 M: Christoph Hellwig <hch@lst.de>
3535 T: git git://git.infradead.org/users/hch/configfs.git
3538 F: include/linux/configfs.h
3541 M: Evgeniy Polyakov <zbr@ioremap.net>
3542 L: netdev@vger.kernel.org
3544 F: drivers/connector/
3546 CONTROL GROUP (CGROUP)
3547 M: Tejun Heo <tj@kernel.org>
3548 M: Li Zefan <lizefan@huawei.com>
3549 M: Johannes Weiner <hannes@cmpxchg.org>
3550 L: cgroups@vger.kernel.org
3551 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3553 F: Documentation/cgroup*
3554 F: include/linux/cgroup*
3557 CONTROL GROUP - CPUSET
3558 M: Li Zefan <lizefan@huawei.com>
3559 L: cgroups@vger.kernel.org
3560 W: http://www.bullopensource.org/cpuset/
3561 W: http://oss.sgi.com/projects/cpusets/
3562 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3564 F: Documentation/cgroup-v1/cpusets.txt
3565 F: include/linux/cpuset.h
3568 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
3569 M: Johannes Weiner <hannes@cmpxchg.org>
3570 M: Michal Hocko <mhocko@kernel.org>
3571 M: Vladimir Davydov <vdavydov.dev@gmail.com>
3572 L: cgroups@vger.kernel.org
3573 L: linux-mm@kvack.org
3578 CORETEMP HARDWARE MONITORING DRIVER
3579 M: Fenghua Yu <fenghua.yu@intel.com>
3580 L: linux-hwmon@vger.kernel.org
3582 F: Documentation/hwmon/coretemp
3583 F: drivers/hwmon/coretemp.c
3585 COSA/SRP SYNC SERIAL DRIVER
3586 M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
3587 W: http://www.fi.muni.cz/~kas/cosa/
3589 F: drivers/net/wan/cosa*
3591 CPMAC ETHERNET DRIVER
3592 M: Florian Fainelli <f.fainelli@gmail.com>
3593 L: netdev@vger.kernel.org
3595 F: drivers/net/ethernet/ti/cpmac.c
3597 CPU FREQUENCY DRIVERS
3598 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
3599 M: Viresh Kumar <viresh.kumar@linaro.org>
3600 L: linux-pm@vger.kernel.org
3602 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3603 T: git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
3604 B: https://bugzilla.kernel.org
3605 F: Documentation/cpu-freq/
3606 F: Documentation/devicetree/bindings/cpufreq/
3608 F: include/linux/cpufreq.h
3609 F: tools/testing/selftests/cpufreq/
3611 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
3612 M: Viresh Kumar <viresh.kumar@linaro.org>
3613 M: Sudeep Holla <sudeep.holla@arm.com>
3614 L: linux-pm@vger.kernel.org
3615 W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php
3617 F: drivers/cpufreq/arm_big_little.h
3618 F: drivers/cpufreq/arm_big_little.c
3619 F: drivers/cpufreq/arm_big_little_dt.c
3621 CPU POWER MONITORING SUBSYSTEM
3622 M: Thomas Renninger <trenn@suse.com>
3623 L: linux-pm@vger.kernel.org
3625 F: tools/power/cpupower/
3628 M: "H. Peter Anvin" <hpa@zytor.com>
3630 F: arch/x86/kernel/cpuid.c
3631 F: arch/x86/kernel/msr.c
3633 CPUIDLE DRIVER - ARM BIG LITTLE
3634 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
3635 M: Daniel Lezcano <daniel.lezcano@linaro.org>
3636 L: linux-pm@vger.kernel.org
3637 L: linux-arm-kernel@lists.infradead.org
3638 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3640 F: drivers/cpuidle/cpuidle-big_little.c
3642 CPUIDLE DRIVER - ARM EXYNOS
3643 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
3644 M: Daniel Lezcano <daniel.lezcano@linaro.org>
3645 M: Kukjin Kim <kgene@kernel.org>
3646 L: linux-pm@vger.kernel.org
3647 L: linux-samsung-soc@vger.kernel.org
3649 F: drivers/cpuidle/cpuidle-exynos.c
3650 F: arch/arm/mach-exynos/pm.c
3653 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
3654 M: Daniel Lezcano <daniel.lezcano@linaro.org>
3655 L: linux-pm@vger.kernel.org
3657 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3658 B: https://bugzilla.kernel.org
3659 F: drivers/cpuidle/*
3660 F: include/linux/cpuidle.h
3663 W: http://sourceforge.net/projects/cramfs/
3664 S: Orphan / Obsolete
3665 F: Documentation/filesystems/cramfs.txt
3669 M: Mikael Starvik <starvik@axis.com>
3670 M: Jesper Nilsson <jesper.nilsson@axis.com>
3671 L: linux-cris-kernel@axis.com
3672 W: http://developer.axis.com
3673 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesper/cris.git
3676 F: drivers/tty/serial/crisv10.*
3679 M: Herbert Xu <herbert@gondor.apana.org.au>
3680 M: "David S. Miller" <davem@davemloft.net>
3681 L: linux-crypto@vger.kernel.org
3682 T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
3683 T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
3685 F: Documentation/crypto/
3686 F: Documentation/devicetree/bindings/crypto/
3691 F: include/linux/crypto*
3693 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
3694 M: Neil Horman <nhorman@tuxdriver.com>
3695 L: linux-crypto@vger.kernel.org
3697 F: crypto/ansi_cprng.c
3701 M: Hans Verkuil <hverkuil@xs4all.nl>
3702 L: linux-media@vger.kernel.org
3703 T: git git://linuxtv.org/media_tree.git
3704 W: http://linuxtv.org
3706 F: drivers/media/i2c/cs3308.c
3707 F: drivers/media/i2c/cs3308.h
3709 CS5535 Audio ALSA driver
3710 M: Jaya Kumar <jayakumar.alsa@gmail.com>
3712 F: sound/pci/cs5535audio/
3715 M: Solomon Peachy <pizza@shaftnet.org>
3717 F: drivers/net/wireless/st/cw1200/
3719 CX18 VIDEO4LINUX DRIVER
3720 M: Andy Walls <awalls@md.metrocast.net>
3721 L: ivtv-devel@ivtvdriver.org (subscribers-only)
3722 L: linux-media@vger.kernel.org
3723 T: git git://linuxtv.org/media_tree.git
3724 W: https://linuxtv.org
3725 W: http://www.ivtvdriver.org/index.php/Cx18
3727 F: Documentation/media/v4l-drivers/cx18*
3728 F: drivers/media/pci/cx18/
3729 F: include/uapi/linux/ivtv*
3731 CX2341X MPEG ENCODER HELPER MODULE
3732 M: Hans Verkuil <hverkuil@xs4all.nl>
3733 L: linux-media@vger.kernel.org
3734 T: git git://linuxtv.org/media_tree.git
3735 W: https://linuxtv.org
3737 F: drivers/media/common/cx2341x*
3738 F: include/media/cx2341x*
3740 CX24120 MEDIA DRIVER
3741 M: Jemma Denson <jdenson@gmail.com>
3742 M: Patrick Boettcher <patrick.boettcher@posteo.de>
3743 L: linux-media@vger.kernel.org
3744 W: https://linuxtv.org
3745 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3747 F: drivers/media/dvb-frontends/cx24120*
3749 CX88 VIDEO4LINUX DRIVER
3750 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
3751 M: Mauro Carvalho Chehab <mchehab@kernel.org>
3752 L: linux-media@vger.kernel.org
3753 W: https://linuxtv.org
3754 T: git git://linuxtv.org/media_tree.git
3756 F: Documentation/media/v4l-drivers/cx88*
3757 F: drivers/media/pci/cx88/
3759 CXD2820R MEDIA DRIVER
3760 M: Antti Palosaari <crope@iki.fi>
3761 L: linux-media@vger.kernel.org
3762 W: https://linuxtv.org
3763 W: http://palosaari.fi/linux/
3764 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3765 T: git git://linuxtv.org/anttip/media_tree.git
3767 F: drivers/media/dvb-frontends/cxd2820r*
3769 CXGB3 ETHERNET DRIVER (CXGB3)
3770 M: Santosh Raspatur <santosh@chelsio.com>
3771 L: netdev@vger.kernel.org
3772 W: http://www.chelsio.com
3774 F: drivers/net/ethernet/chelsio/cxgb3/
3776 CXGB3 ISCSI DRIVER (CXGB3I)
3777 M: Karen Xie <kxie@chelsio.com>
3778 L: linux-scsi@vger.kernel.org
3779 W: http://www.chelsio.com
3781 F: drivers/scsi/cxgbi/cxgb3i
3783 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
3784 M: Steve Wise <swise@chelsio.com>
3785 L: linux-rdma@vger.kernel.org
3786 W: http://www.openfabrics.org
3788 F: drivers/infiniband/hw/cxgb3/
3789 F: include/uapi/rdma/cxgb3-abi.h
3791 CXGB4 CRYPTO DRIVER (chcr)
3792 M: Harsh Jain <harsh@chelsio.com>
3793 L: linux-crypto@vger.kernel.org
3794 W: http://www.chelsio.com
3796 F: drivers/crypto/chelsio
3798 CXGB4 ETHERNET DRIVER (CXGB4)
3799 M: Ganesh Goudar <ganeshgr@chelsio.com>
3800 L: netdev@vger.kernel.org
3801 W: http://www.chelsio.com
3803 F: drivers/net/ethernet/chelsio/cxgb4/
3805 CXGB4 ISCSI DRIVER (CXGB4I)
3806 M: Karen Xie <kxie@chelsio.com>
3807 L: linux-scsi@vger.kernel.org
3808 W: http://www.chelsio.com
3810 F: drivers/scsi/cxgbi/cxgb4i
3812 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3813 M: Steve Wise <swise@chelsio.com>
3814 L: linux-rdma@vger.kernel.org
3815 W: http://www.openfabrics.org
3817 F: drivers/infiniband/hw/cxgb4/
3818 F: include/uapi/rdma/cxgb4-abi.h
3820 CXGB4VF ETHERNET DRIVER (CXGB4VF)
3821 M: Casey Leedom <leedom@chelsio.com>
3822 L: netdev@vger.kernel.org
3823 W: http://www.chelsio.com
3825 F: drivers/net/ethernet/chelsio/cxgb4vf/
3827 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3828 M: Frederic Barrat <fbarrat@linux.vnet.ibm.com>
3829 M: Andrew Donnellan <andrew.donnellan@au1.ibm.com>
3830 L: linuxppc-dev@lists.ozlabs.org
3832 F: arch/powerpc/platforms/powernv/pci-cxl.c
3833 F: drivers/misc/cxl/
3834 F: include/misc/cxl*
3835 F: include/uapi/misc/cxl.h
3836 F: Documentation/powerpc/cxl.txt
3837 F: Documentation/ABI/testing/sysfs-class-cxl
3839 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
3840 M: Manoj N. Kumar <manoj@linux.vnet.ibm.com>
3841 M: Matthew R. Ochs <mrochs@linux.vnet.ibm.com>
3842 M: Uma Krishnan <ukrishn@linux.vnet.ibm.com>
3843 L: linux-scsi@vger.kernel.org
3845 F: drivers/scsi/cxlflash/
3846 F: include/uapi/scsi/cxlflash_ioctls.h
3847 F: Documentation/powerpc/cxlflash.txt
3850 M: Russell King <linux@armlinux.org.uk>
3851 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3852 W: http://www.armlinux.org.uk/
3854 F: drivers/video/fbdev/cyber2000fb.*
3856 CYCLADES ASYNC MUX DRIVER
3857 W: http://www.cyclades.com/
3859 F: drivers/tty/cyclades.c
3860 F: include/linux/cyclades.h
3861 F: include/uapi/linux/cyclades.h
3863 CYCLADES PC300 DRIVER
3864 W: http://www.cyclades.com/
3866 F: drivers/net/wan/pc300*
3868 CYPRESS_FIRMWARE MEDIA DRIVER
3869 M: Antti Palosaari <crope@iki.fi>
3870 L: linux-media@vger.kernel.org
3871 W: https://linuxtv.org
3872 W: http://palosaari.fi/linux/
3873 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3874 T: git git://linuxtv.org/anttip/media_tree.git
3876 F: drivers/media/common/cypress_firmware*
3878 CYTTSP TOUCHSCREEN DRIVER
3879 M: Ferruh Yigit <fery@cypress.com>
3880 L: linux-input@vger.kernel.org
3882 F: drivers/input/touchscreen/cyttsp*
3883 F: include/linux/input/cyttsp.h
3885 D-LINK DIR-685 TOUCHKEYS DRIVER
3886 M: Linus Walleij <linus.walleij@linaro.org>
3887 L: linux-input@vger.kernel.org
3889 F: drivers/input/dlink-dir685-touchkeys.c
3891 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3892 M: Joshua Kinard <kumba@gentoo.org>
3894 F: drivers/rtc/rtc-ds1685.c
3895 F: include/linux/rtc/ds1685.h
3897 DAMA SLAVE for AX.25
3898 M: Joerg Reuter <jreuter@yaina.de>
3899 W: http://yaina.de/jreuter/
3900 W: http://www.qsl.net/dl1bke/
3901 L: linux-hams@vger.kernel.org
3903 F: net/ax25/af_ax25.c
3904 F: net/ax25/ax25_dev.c
3905 F: net/ax25/ax25_ds_*
3906 F: net/ax25/ax25_in.c
3907 F: net/ax25/ax25_out.c
3908 F: net/ax25/ax25_timer.c
3909 F: net/ax25/sysctl_net_ax25.c
3911 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
3912 L: netdev@vger.kernel.org
3914 F: Documentation/networking/dmfe.txt
3915 F: drivers/net/ethernet/dec/tulip/dmfe.c
3917 DC390/AM53C974 SCSI driver
3918 M: Hannes Reinecke <hare@suse.com>
3919 L: linux-scsi@vger.kernel.org
3921 F: drivers/scsi/am53c974.c
3924 M: Oliver Neukum <oliver@neukum.org>
3925 M: Ali Akcaagac <aliakc@web.de>
3926 M: Jamie Lenehan <lenehan@twibble.org>
3927 L: dc395x@twibble.org
3928 W: http://twibble.org/dist/dc395x/
3929 W: http://lists.twibble.org/mailman/listinfo/dc395x/
3931 F: Documentation/scsi/dc395x.txt
3932 F: drivers/scsi/dc395x.*
3935 M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
3936 L: dccp@vger.kernel.org
3937 W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
3939 F: include/linux/dccp.h
3940 F: include/uapi/linux/dccp.h
3941 F: include/linux/tfrc.h
3944 DECnet NETWORK LAYER
3945 W: http://linux-decnet.sourceforge.net
3946 L: linux-decnet-user@lists.sourceforge.net
3948 F: Documentation/networking/decnet.txt
3951 DECSTATION PLATFORM SUPPORT
3952 M: "Maciej W. Rozycki" <macro@linux-mips.org>
3953 L: linux-mips@linux-mips.org
3954 W: http://www.linux-mips.org/wiki/DECstation
3957 F: arch/mips/include/asm/dec/
3958 F: arch/mips/include/asm/mach-dec/
3960 DEFXX FDDI NETWORK DRIVER
3961 M: "Maciej W. Rozycki" <macro@linux-mips.org>
3963 F: drivers/net/fddi/defxx.*
3966 M: Matthew Garrett <mjg59@srcf.ucam.org>
3967 M: Pali Rohár <pali.rohar@gmail.com>
3968 L: platform-driver-x86@vger.kernel.org
3970 F: drivers/platform/x86/dell-laptop.c
3972 DELL LAPTOP FREEFALL DRIVER
3973 M: Pali Rohár <pali.rohar@gmail.com>
3975 F: drivers/platform/x86/dell-smo8800.c
3977 DELL LAPTOP RBTN DRIVER
3978 M: Pali Rohár <pali.rohar@gmail.com>
3980 F: drivers/platform/x86/dell-rbtn.*
3982 DELL LAPTOP SMM DRIVER
3983 M: Pali Rohár <pali.rohar@gmail.com>
3985 F: drivers/hwmon/dell-smm-hwmon.c
3986 F: include/uapi/linux/i8k.h
3988 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
3989 M: Doug Warzecha <Douglas_Warzecha@dell.com>
3991 F: Documentation/dcdbas.txt
3992 F: drivers/firmware/dcdbas.*
3994 DELL WMI EXTRAS DRIVER
3995 M: Matthew Garrett <mjg59@srcf.ucam.org>
3996 M: Pali Rohár <pali.rohar@gmail.com>
3998 F: drivers/platform/x86/dell-wmi.c
4000 DELTA ST MEDIA DRIVER
4001 M: Hugues Fruchet <hugues.fruchet@st.com>
4002 L: linux-media@vger.kernel.org
4003 T: git git://linuxtv.org/media_tree.git
4004 W: https://linuxtv.org
4006 F: drivers/media/platform/sti/delta
4009 M: Masahiro Yamada <yamada.masahiro@socionext.com>
4010 L: linux-mtd@lists.infradead.org
4012 F: drivers/mtd/nand/denali*
4014 DESIGNWARE USB2 DRD IP DRIVER
4015 M: John Youn <johnyoun@synopsys.com>
4016 L: linux-usb@vger.kernel.org
4017 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4019 F: drivers/usb/dwc2/
4021 DESIGNWARE USB3 DRD IP DRIVER
4022 M: Felipe Balbi <balbi@kernel.org>
4023 L: linux-usb@vger.kernel.org
4024 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4026 F: drivers/usb/dwc3/
4028 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
4029 M: Andreas Klinger <ak@it-klinger.de>
4030 L: linux-iio@vger.kernel.org
4032 F: drivers/iio/proximity/srf*.c
4034 DEVICE COREDUMP (DEV_COREDUMP)
4035 M: Johannes Berg <johannes@sipsolutions.net>
4036 L: linux-kernel@vger.kernel.org
4038 F: drivers/base/devcoredump.c
4039 F: include/linux/devcoredump.h
4041 DEVICE FREQUENCY (DEVFREQ)
4042 M: MyungJoo Ham <myungjoo.ham@samsung.com>
4043 M: Kyungmin Park <kyungmin.park@samsung.com>
4044 R: Chanwoo Choi <cw00.choi@samsung.com>
4045 L: linux-pm@vger.kernel.org
4046 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
4049 F: include/linux/devfreq.h
4050 F: Documentation/devicetree/bindings/devfreq/
4052 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
4053 M: Chanwoo Choi <cw00.choi@samsung.com>
4054 L: linux-pm@vger.kernel.org
4055 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
4057 F: drivers/devfreq/event/
4058 F: drivers/devfreq/devfreq-event.c
4059 F: include/linux/devfreq-event.h
4060 F: Documentation/devicetree/bindings/devfreq/event/
4062 DEVICE NUMBER REGISTRY
4063 M: Torben Mathiasen <device@lanana.org>
4064 W: http://lanana.org/docs/device-list/index.html
4068 M: Alasdair Kergon <agk@redhat.com>
4069 M: Mike Snitzer <snitzer@redhat.com>
4070 M: dm-devel@redhat.com
4071 L: dm-devel@redhat.com
4072 W: http://sources.redhat.com/dm
4073 Q: http://patchwork.kernel.org/project/dm-devel/list/
4074 T: git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
4075 T: quilt http://people.redhat.com/agk/patches/linux/editing/
4077 F: Documentation/device-mapper/
4079 F: drivers/md/persistent-data/
4080 F: include/linux/device-mapper.h
4081 F: include/linux/dm-*.h
4082 F: include/uapi/linux/dm-*.h
4085 M: Jiri Pirko <jiri@mellanox.com>
4086 L: netdev@vger.kernel.org
4088 F: net/core/devlink.c
4089 F: include/net/devlink.h
4090 F: include/uapi/linux/devlink.h
4092 DIALOG SEMICONDUCTOR DRIVERS
4093 M: Support Opensource <support.opensource@diasemi.com>
4094 W: http://www.dialog-semiconductor.com/products
4096 F: Documentation/hwmon/da90??
4097 F: Documentation/devicetree/bindings/mfd/da90*.txt
4098 F: Documentation/devicetree/bindings/input/da90??-onkey.txt
4099 F: Documentation/devicetree/bindings/thermal/da90??-thermal.txt
4100 F: Documentation/devicetree/bindings/regulator/da92*.txt
4101 F: Documentation/devicetree/bindings/watchdog/da92??-wdt.txt
4102 F: Documentation/devicetree/bindings/sound/da[79]*.txt
4103 F: drivers/gpio/gpio-da90??.c
4104 F: drivers/hwmon/da90??-hwmon.c
4105 F: drivers/iio/adc/da91??-*.c
4106 F: drivers/input/misc/da90??_onkey.c
4107 F: drivers/input/touchscreen/da9052_tsi.c
4108 F: drivers/leds/leds-da90??.c
4109 F: drivers/mfd/da903x.c
4110 F: drivers/mfd/da90??-*.c
4111 F: drivers/mfd/da91??-*.c
4112 F: drivers/power/supply/da9052-battery.c
4113 F: drivers/power/supply/da91??-*.c
4114 F: drivers/regulator/da903x.c
4115 F: drivers/regulator/da9???-regulator.[ch]
4116 F: drivers/thermal/da90??-thermal.c
4117 F: drivers/rtc/rtc-da90??.c
4118 F: drivers/video/backlight/da90??_bl.c
4119 F: drivers/watchdog/da90??_wdt.c
4120 F: include/linux/mfd/da903x.h
4121 F: include/linux/mfd/da9052/
4122 F: include/linux/mfd/da9055/
4123 F: include/linux/mfd/da9062/
4124 F: include/linux/mfd/da9063/
4125 F: include/linux/mfd/da9150/
4126 F: include/linux/regulator/da9211.h
4127 F: include/sound/da[79]*.h
4128 F: sound/soc/codecs/da[79]*.[ch]
4130 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
4131 M: William Breathitt Gray <vilhelm.gray@gmail.com>
4132 L: linux-gpio@vger.kernel.org
4134 F: drivers/gpio/gpio-gpio-mm.c
4136 DIGI NEO AND CLASSIC PCI PRODUCTS
4137 M: Lidza Louina <lidza.louina@gmail.com>
4138 M: Mark Hounschell <markh@compro.net>
4139 L: driverdev-devel@linuxdriverproject.org
4141 F: drivers/staging/dgnc/
4143 DIOLAN U2C-12 I2C DRIVER
4144 M: Guenter Roeck <linux@roeck-us.net>
4145 L: linux-i2c@vger.kernel.org
4147 F: drivers/i2c/busses/i2c-diolan-u2c.c
4150 M: Matthew Wilcox <mawilcox@microsoft.com>
4151 M: Ross Zwisler <ross.zwisler@linux.intel.com>
4152 L: linux-fsdevel@vger.kernel.org
4155 F: include/linux/dax.h
4156 F: include/trace/events/fs_dax.h
4158 DIRECTORY NOTIFICATION (DNOTIFY)
4159 M: Jan Kara <jack@suse.cz>
4160 R: Amir Goldstein <amir73il@gmail.com>
4161 L: linux-fsdevel@vger.kernel.org
4163 F: Documentation/filesystems/dnotify.txt
4164 F: fs/notify/dnotify/
4165 F: include/linux/dnotify.h
4167 DISK GEOMETRY AND PARTITION HANDLING
4168 M: Andries Brouwer <aeb@cwi.nl>
4169 W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
4170 W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
4171 W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
4175 M: Jan Kara <jack@suse.com>
4177 F: Documentation/filesystems/quota.txt
4179 F: include/linux/quota*.h
4180 F: include/uapi/linux/quota*.h
4182 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
4183 M: Bernie Thompson <bernie@plugable.com>
4184 L: linux-fbdev@vger.kernel.org
4186 W: http://plugable.com/category/projects/udlfb/
4187 F: drivers/video/fbdev/udlfb.c
4188 F: include/video/udlfb.h
4189 F: Documentation/fb/udlfb.txt
4191 DISTRIBUTED LOCK MANAGER (DLM)
4192 M: Christine Caulfield <ccaulfie@redhat.com>
4193 M: David Teigland <teigland@redhat.com>
4194 L: cluster-devel@redhat.com
4195 W: http://sources.redhat.com/cluster/
4196 T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
4200 DMA BUFFER SHARING FRAMEWORK
4201 M: Sumit Semwal <sumit.semwal@linaro.org>
4203 L: linux-media@vger.kernel.org
4204 L: dri-devel@lists.freedesktop.org
4205 L: linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
4207 F: include/linux/dma-buf*
4208 F: include/linux/reservation.h
4209 F: include/linux/*fence.h
4210 F: Documentation/driver-api/dma-buf.rst
4211 T: git git://anongit.freedesktop.org/drm/drm-misc
4213 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
4214 M: Vinod Koul <vinod.koul@intel.com>
4215 L: dmaengine@vger.kernel.org
4216 Q: https://patchwork.kernel.org/project/linux-dmaengine/list/
4219 F: include/linux/dmaengine.h
4220 F: Documentation/devicetree/bindings/dma/
4221 F: Documentation/dmaengine/
4222 T: git git://git.infradead.org/users/vkoul/slave-dma.git
4225 M: Christoph Hellwig <hch@lst.de>
4226 M: Marek Szyprowski <m.szyprowski@samsung.com>
4227 R: Robin Murphy <robin.murphy@arm.com>
4228 L: iommu@lists.linux-foundation.org
4229 T: git git://git.infradead.org/users/hch/dma-mapping.git
4230 W: http://git.infradead.org/users/hch/dma-mapping.git
4235 F: drivers/base/dma-mapping.c
4236 F: drivers/base/dma-coherent.c
4237 F: include/linux/dma-mapping.h
4239 DME1737 HARDWARE MONITOR DRIVER
4240 M: Juerg Haefliger <juergh@gmail.com>
4241 L: linux-hwmon@vger.kernel.org
4243 F: Documentation/hwmon/dme1737
4244 F: drivers/hwmon/dme1737.c
4247 M: Jean Delvare <jdelvare@suse.com>
4249 T: quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
4250 F: Documentation/ABI/testing/sysfs-firmware-dmi-tables
4251 F: drivers/firmware/dmi-id.c
4252 F: drivers/firmware/dmi_scan.c
4253 F: include/linux/dmi.h
4256 M: Jonathan Corbet <corbet@lwn.net>
4257 L: linux-doc@vger.kernel.org
4260 F: scripts/kernel-doc
4261 X: Documentation/ABI/
4262 X: Documentation/devicetree/
4263 X: Documentation/acpi
4264 X: Documentation/power
4265 X: Documentation/spi
4266 X: Documentation/media
4267 T: git git://git.lwn.net/linux.git docs-next
4269 DONGWOON DW9714 LENS VOICE COIL DRIVER
4270 M: Sakari Ailus <sakari.ailus@linux.intel.com>
4271 L: linux-media@vger.kernel.org
4272 T: git git://linuxtv.org/media_tree.git
4274 F: drivers/media/i2c/dw9714.c
4277 M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
4278 L: blinux-list@redhat.com
4280 F: drivers/char/dtlk.c
4281 F: include/linux/dtlk.h
4283 DPAA2 DATAPATH I/O (DPIO) DRIVER
4284 M: Roy Pledge <Roy.Pledge@nxp.com>
4285 L: linux-kernel@vger.kernel.org
4287 F: drivers/staging/fsl-mc/bus/dpio
4289 DPAA2 ETHERNET DRIVER
4290 M: Ioana Radulescu <ruxandra.radulescu@nxp.com>
4291 L: linux-kernel@vger.kernel.org
4293 F: drivers/staging/fsl-dpaa2/ethernet
4295 DPT_I2O SCSI RAID DRIVER
4296 M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
4297 L: linux-scsi@vger.kernel.org
4298 W: http://www.adaptec.com/
4300 F: drivers/scsi/dpt*
4301 F: drivers/scsi/dpt/
4304 M: Philipp Reisner <philipp.reisner@linbit.com>
4305 M: Lars Ellenberg <lars.ellenberg@linbit.com>
4306 L: drbd-dev@lists.linbit.com
4307 W: http://www.drbd.org
4308 T: git git://git.linbit.com/linux-drbd.git
4309 T: git git://git.linbit.com/drbd-8.4.git
4311 F: drivers/block/drbd/
4313 F: Documentation/blockdev/drbd/
4315 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
4316 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4317 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
4319 F: Documentation/kobject.txt
4323 F: include/linux/debugfs.h
4324 F: include/linux/kobj*
4327 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
4328 M: Kevin Hilman <khilman@kernel.org>
4329 M: Nishanth Menon <nm@ti.com>
4331 F: drivers/power/avs/
4332 F: include/linux/power/smartreflex.h
4333 L: linux-pm@vger.kernel.org
4335 DRM DRIVER FOR ARM PL111 CLCD
4336 M: Eric Anholt <eric@anholt.net>
4337 T: git git://anongit.freedesktop.org/drm/drm-misc
4339 F: drivers/gpu/drm/pl111/
4341 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
4342 M: Dave Airlie <airlied@redhat.com>
4344 F: drivers/gpu/drm/ast/
4346 DRM DRIVER FOR BOCHS VIRTUAL GPU
4347 M: Gerd Hoffmann <kraxel@redhat.com>
4348 L: virtualization@lists.linux-foundation.org
4349 T: git git://anongit.freedesktop.org/drm/drm-misc
4351 F: drivers/gpu/drm/bochs/
4353 DRM DRIVER FOR INTEL I810 VIDEO CARDS
4354 S: Orphan / Obsolete
4355 F: drivers/gpu/drm/i810/
4356 F: include/uapi/drm/i810_drm.h
4358 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
4359 S: Orphan / Obsolete
4360 F: drivers/gpu/drm/mga/
4361 F: include/uapi/drm/mga_drm.h
4363 DRM DRIVER FOR MGA G200 SERVER GRAPHICS CHIPS
4364 M: Dave Airlie <airlied@redhat.com>
4366 F: drivers/gpu/drm/mgag200/
4368 DRM DRIVER FOR MI0283QT
4369 M: Noralf Trønnes <noralf@tronnes.org>
4371 F: drivers/gpu/drm/tinydrm/mi0283qt.c
4372 F: Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
4374 DRM DRIVER FOR MSM ADRENO GPU
4375 M: Rob Clark <robdclark@gmail.com>
4376 L: linux-arm-msm@vger.kernel.org
4377 L: dri-devel@lists.freedesktop.org
4378 L: freedreno@lists.freedesktop.org
4379 T: git git://people.freedesktop.org/~robclark/linux
4381 F: drivers/gpu/drm/msm/
4382 F: include/uapi/drm/msm_drm.h
4383 F: Documentation/devicetree/bindings/display/msm/
4385 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
4386 M: Ben Skeggs <bskeggs@redhat.com>
4387 L: dri-devel@lists.freedesktop.org
4388 L: nouveau@lists.freedesktop.org
4389 T: git git://github.com/skeggsb/linux
4391 F: drivers/gpu/drm/nouveau/
4392 F: include/uapi/drm/nouveau_drm.h
4394 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
4395 M: Noralf Trønnes <noralf@tronnes.org>
4397 F: drivers/gpu/drm/tinydrm/repaper.c
4398 F: Documentation/devicetree/bindings/display/repaper.txt
4400 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
4401 M: Dave Airlie <airlied@redhat.com>
4402 M: Gerd Hoffmann <kraxel@redhat.com>
4403 L: virtualization@lists.linux-foundation.org
4404 T: git git://anongit.freedesktop.org/drm/drm-misc
4406 W: https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
4407 F: drivers/gpu/drm/cirrus/
4409 DRM DRIVER FOR QXL VIRTUAL GPU
4410 M: Dave Airlie <airlied@redhat.com>
4411 M: Gerd Hoffmann <kraxel@redhat.com>
4412 L: virtualization@lists.linux-foundation.org
4413 T: git git://anongit.freedesktop.org/drm/drm-misc
4415 F: drivers/gpu/drm/qxl/
4416 F: include/uapi/drm/qxl_drm.h
4418 DRM DRIVER FOR RAGE 128 VIDEO CARDS
4419 S: Orphan / Obsolete
4420 F: drivers/gpu/drm/r128/
4421 F: include/uapi/drm/r128_drm.h
4423 DRM DRIVER FOR SAVAGE VIDEO CARDS
4424 S: Orphan / Obsolete
4425 F: drivers/gpu/drm/savage/
4426 F: include/uapi/drm/savage_drm.h
4428 DRM DRIVER FOR SIS VIDEO CARDS
4429 S: Orphan / Obsolete
4430 F: drivers/gpu/drm/sis/
4431 F: include/uapi/drm/sis_drm.h
4433 DRM DRIVER FOR SITRONIX ST7586 PANELS
4434 M: David Lechner <david@lechnology.com>
4436 F: drivers/gpu/drm/tinydrm/st7586.c
4437 F: Documentation/devicetree/bindings/display/st7586.txt
4439 DRM DRIVER FOR TDFX VIDEO CARDS
4440 S: Orphan / Obsolete
4441 F: drivers/gpu/drm/tdfx/
4443 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
4444 M: Dave Airlie <airlied@redhat.com>
4446 F: drivers/gpu/drm/udl/
4448 DRM DRIVER FOR VMWARE VIRTUAL GPU
4449 M: "VMware Graphics" <linux-graphics-maintainer@vmware.com>
4450 M: Sinclair Yeh <syeh@vmware.com>
4451 M: Thomas Hellstrom <thellstrom@vmware.com>
4452 L: dri-devel@lists.freedesktop.org
4453 T: git git://people.freedesktop.org/~syeh/repos_linux
4454 T: git git://people.freedesktop.org/~thomash/linux
4456 F: drivers/gpu/drm/vmwgfx/
4457 F: include/uapi/drm/vmwgfx_drm.h
4460 M: David Airlie <airlied@linux.ie>
4461 L: dri-devel@lists.freedesktop.org
4462 T: git git://people.freedesktop.org/~airlied/linux
4463 B: https://bugs.freedesktop.org/
4464 C: irc://chat.freenode.net/dri-devel
4468 F: Documentation/devicetree/bindings/display/
4469 F: Documentation/devicetree/bindings/gpu/
4470 F: Documentation/devicetree/bindings/video/
4471 F: Documentation/gpu/
4473 F: include/uapi/drm/
4474 F: include/linux/vga*
4476 DRM DRIVERS AND MISC GPU PATCHES
4477 M: Daniel Vetter <daniel.vetter@intel.com>
4478 M: Jani Nikula <jani.nikula@linux.intel.com>
4479 M: Sean Paul <seanpaul@chromium.org>
4480 W: https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
4482 T: git git://anongit.freedesktop.org/drm/drm-misc
4483 F: Documentation/gpu/
4485 F: drivers/gpu/drm/*
4487 F: include/uapi/drm/drm*
4488 F: include/linux/vga*
4490 DRM DRIVERS FOR ALLWINNER A10
4491 M: Maxime Ripard <maxime.ripard@free-electrons.com>
4492 L: dri-devel@lists.freedesktop.org
4494 F: drivers/gpu/drm/sun4i/
4495 F: Documentation/devicetree/bindings/display/sunxi/sun4i-drm.txt
4496 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mripard/linux.git
4498 DRM DRIVERS FOR AMLOGIC SOCS
4499 M: Neil Armstrong <narmstrong@baylibre.com>
4500 L: dri-devel@lists.freedesktop.org
4501 L: linux-amlogic@lists.infradead.org
4502 W: http://linux-meson.com/
4504 F: drivers/gpu/drm/meson/
4505 F: Documentation/devicetree/bindings/display/amlogic,meson-vpu.txt
4506 F: Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.txt
4507 F: Documentation/gpu/meson.rst
4508 T: git git://anongit.freedesktop.org/drm/drm-misc
4510 DRM DRIVERS FOR ATMEL HLCDC
4511 M: Boris Brezillon <boris.brezillon@free-electrons.com>
4512 L: dri-devel@lists.freedesktop.org
4514 F: drivers/gpu/drm/atmel-hlcdc/
4515 F: Documentation/devicetree/bindings/drm/atmel/
4516 T: git git://anongit.freedesktop.org/drm/drm-misc
4518 DRM DRIVERS FOR BRIDGE CHIPS
4519 M: Archit Taneja <architt@codeaurora.org>
4520 M: Andrzej Hajda <a.hajda@samsung.com>
4521 R: Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
4523 T: git git://anongit.freedesktop.org/drm/drm-misc
4524 F: drivers/gpu/drm/bridge/
4526 DRM DRIVERS FOR EXYNOS
4527 M: Inki Dae <inki.dae@samsung.com>
4528 M: Joonyoung Shim <jy0922.shim@samsung.com>
4529 M: Seung-Woo Kim <sw0312.kim@samsung.com>
4530 M: Kyungmin Park <kyungmin.park@samsung.com>
4531 L: dri-devel@lists.freedesktop.org
4532 T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
4534 F: drivers/gpu/drm/exynos/
4535 F: include/uapi/drm/exynos_drm.h
4536 F: Documentation/devicetree/bindings/display/exynos/
4538 DRM DRIVERS FOR FREESCALE DCU
4539 M: Stefan Agner <stefan@agner.ch>
4540 M: Alison Wang <alison.wang@freescale.com>
4541 L: dri-devel@lists.freedesktop.org
4543 F: drivers/gpu/drm/fsl-dcu/
4544 F: Documentation/devicetree/bindings/display/fsl,dcu.txt
4545 F: Documentation/devicetree/bindings/display/fsl,tcon.txt
4546 F: Documentation/devicetree/bindings/display/panel/nec,nl4827hc19_05b.txt
4548 DRM DRIVERS FOR FREESCALE IMX
4549 M: Philipp Zabel <p.zabel@pengutronix.de>
4550 L: dri-devel@lists.freedesktop.org
4552 F: drivers/gpu/drm/imx/
4553 F: drivers/gpu/ipu-v3/
4554 F: Documentation/devicetree/bindings/display/imx/
4556 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
4557 M: Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
4558 L: dri-devel@lists.freedesktop.org
4559 T: git git://github.com/patjak/drm-gma500
4561 F: drivers/gpu/drm/gma500/
4563 DRM DRIVERS FOR HISILICON
4564 M: Xinliang Liu <z.liuxinliang@hisilicon.com>
4565 M: Rongrong Zou <zourongrong@gmail.com>
4566 R: Xinwei Kong <kong.kongxinwei@hisilicon.com>
4567 R: Chen Feng <puck.chen@hisilicon.com>
4568 L: dri-devel@lists.freedesktop.org
4569 T: git git://github.com/xin3liang/linux.git
4571 F: drivers/gpu/drm/hisilicon/
4572 F: Documentation/devicetree/bindings/display/hisilicon/
4574 DRM DRIVERS FOR MEDIATEK
4575 M: CK Hu <ck.hu@mediatek.com>
4576 M: Philipp Zabel <p.zabel@pengutronix.de>
4577 L: dri-devel@lists.freedesktop.org
4579 F: drivers/gpu/drm/mediatek/
4580 F: Documentation/devicetree/bindings/display/mediatek/
4582 DRM DRIVERS FOR NVIDIA TEGRA
4583 M: Thierry Reding <thierry.reding@gmail.com>
4584 L: dri-devel@lists.freedesktop.org
4585 L: linux-tegra@vger.kernel.org
4586 T: git git://anongit.freedesktop.org/tegra/linux.git
4588 F: drivers/gpu/drm/tegra/
4589 F: drivers/gpu/host1x/
4590 F: include/linux/host1x.h
4591 F: include/uapi/drm/tegra_drm.h
4592 F: Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
4594 DRM DRIVERS FOR RENESAS
4595 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
4596 L: dri-devel@lists.freedesktop.org
4597 L: linux-renesas-soc@vger.kernel.org
4598 T: git git://linuxtv.org/pinchartl/fbdev
4600 F: drivers/gpu/drm/rcar-du/
4601 F: drivers/gpu/drm/shmobile/
4602 F: include/linux/platform_data/shmob_drm.h
4603 F: Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt
4604 F: Documentation/devicetree/bindings/display/renesas,du.txt
4606 DRM DRIVERS FOR ROCKCHIP
4607 M: Mark Yao <mark.yao@rock-chips.com>
4608 L: dri-devel@lists.freedesktop.org
4610 F: drivers/gpu/drm/rockchip/
4611 F: Documentation/devicetree/bindings/display/rockchip/
4612 T: git git://anongit.freedesktop.org/drm/drm-misc
4615 M: Benjamin Gaignard <benjamin.gaignard@linaro.org>
4616 M: Vincent Abriou <vincent.abriou@st.com>
4617 L: dri-devel@lists.freedesktop.org
4618 T: git git://anongit.freedesktop.org/drm/drm-misc
4620 F: drivers/gpu/drm/sti
4621 F: Documentation/devicetree/bindings/display/st,stih4xx.txt
4624 M: Yannick Fertre <yannick.fertre@st.com>
4625 M: Philippe Cornu <philippe.cornu@st.com>
4626 M: Benjamin Gaignard <benjamin.gaignard@linaro.org>
4627 M: Vincent Abriou <vincent.abriou@st.com>
4628 L: dri-devel@lists.freedesktop.org
4629 T: git git://anongit.freedesktop.org/drm/drm-misc
4631 F: drivers/gpu/drm/stm
4632 F: Documentation/devicetree/bindings/display/st,stm32-ltdc.txt
4634 DRM DRIVERS FOR TI LCDC
4635 M: Jyri Sarha <jsarha@ti.com>
4636 R: Tomi Valkeinen <tomi.valkeinen@ti.com>
4637 L: dri-devel@lists.freedesktop.org
4639 F: drivers/gpu/drm/tilcdc/
4640 F: Documentation/devicetree/bindings/display/tilcdc/
4642 DRM DRIVERS FOR TI OMAP
4643 M: Tomi Valkeinen <tomi.valkeinen@ti.com>
4644 L: dri-devel@lists.freedesktop.org
4646 F: drivers/gpu/drm/omapdrm/
4647 F: Documentation/devicetree/bindings/display/ti/
4650 M: Eric Anholt <eric@anholt.net>
4651 T: git git://github.com/anholt/linux
4653 F: drivers/gpu/drm/vc4/
4654 F: include/uapi/drm/vc4_drm.h
4655 F: Documentation/devicetree/bindings/display/brcm,bcm-vc4.txt
4656 T: git git://anongit.freedesktop.org/drm/drm-misc
4658 DRM DRIVERS FOR VIVANTE GPU IP
4659 M: Lucas Stach <l.stach@pengutronix.de>
4660 R: Russell King <linux+etnaviv@armlinux.org.uk>
4661 R: Christian Gmeiner <christian.gmeiner@gmail.com>
4662 L: etnaviv@lists.freedesktop.org
4663 L: dri-devel@lists.freedesktop.org
4665 F: drivers/gpu/drm/etnaviv/
4666 F: include/uapi/drm/etnaviv_drm.h
4667 F: Documentation/devicetree/bindings/display/etnaviv/
4669 DRM DRIVERS FOR ZTE ZX
4670 M: Shawn Guo <shawnguo@kernel.org>
4671 L: dri-devel@lists.freedesktop.org
4673 F: drivers/gpu/drm/zte/
4674 F: Documentation/devicetree/bindings/display/zte,vou.txt
4675 T: git git://anongit.freedesktop.org/drm/drm-misc
4678 M: Thierry Reding <thierry.reding@gmail.com>
4679 L: dri-devel@lists.freedesktop.org
4680 T: git git://anongit.freedesktop.org/tegra/linux.git
4682 F: drivers/gpu/drm/drm_panel.c
4683 F: drivers/gpu/drm/panel/
4684 F: include/drm/drm_panel.h
4685 F: Documentation/devicetree/bindings/display/panel/
4688 M: Noralf Trønnes <noralf@tronnes.org>
4689 W: https://github.com/notro/tinydrm/wiki/Development
4690 T: git git://anongit.freedesktop.org/drm/drm-misc
4692 F: drivers/gpu/drm/tinydrm/
4693 F: include/drm/tinydrm/
4695 DSBR100 USB FM RADIO DRIVER
4696 M: Alexey Klimov <klimov.linux@gmail.com>
4697 L: linux-media@vger.kernel.org
4698 T: git git://linuxtv.org/media_tree.git
4700 F: drivers/media/radio/dsbr100.c
4703 M: Francois Romieu <romieu@fr.zoreil.com>
4704 L: netdev@vger.kernel.org
4706 F: drivers/net/wan/dscc4.c
4709 M: Hans Verkuil <hverkuil@xs4all.nl>
4710 L: linux-media@vger.kernel.org
4711 T: git git://linuxtv.org/media_tree.git
4712 W: https://linuxtv.org
4714 F: drivers/media/pci/dt3155/
4716 DVB_USB_AF9015 MEDIA DRIVER
4717 M: Antti Palosaari <crope@iki.fi>
4718 L: linux-media@vger.kernel.org
4719 W: https://linuxtv.org
4720 W: http://palosaari.fi/linux/
4721 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4722 T: git git://linuxtv.org/anttip/media_tree.git
4724 F: drivers/media/usb/dvb-usb-v2/af9015*
4726 DVB_USB_AF9035 MEDIA DRIVER
4727 M: Antti Palosaari <crope@iki.fi>
4728 L: linux-media@vger.kernel.org
4729 W: https://linuxtv.org
4730 W: http://palosaari.fi/linux/
4731 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4732 T: git git://linuxtv.org/anttip/media_tree.git
4734 F: drivers/media/usb/dvb-usb-v2/af9035*
4736 DVB_USB_ANYSEE MEDIA DRIVER
4737 M: Antti Palosaari <crope@iki.fi>
4738 L: linux-media@vger.kernel.org
4739 W: https://linuxtv.org
4740 W: http://palosaari.fi/linux/
4741 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4742 T: git git://linuxtv.org/anttip/media_tree.git
4744 F: drivers/media/usb/dvb-usb-v2/anysee*
4746 DVB_USB_AU6610 MEDIA DRIVER
4747 M: Antti Palosaari <crope@iki.fi>
4748 L: linux-media@vger.kernel.org
4749 W: https://linuxtv.org
4750 W: http://palosaari.fi/linux/
4751 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4752 T: git git://linuxtv.org/anttip/media_tree.git
4754 F: drivers/media/usb/dvb-usb-v2/au6610*
4756 DVB_USB_CE6230 MEDIA DRIVER
4757 M: Antti Palosaari <crope@iki.fi>
4758 L: linux-media@vger.kernel.org
4759 W: https://linuxtv.org
4760 W: http://palosaari.fi/linux/
4761 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4762 T: git git://linuxtv.org/anttip/media_tree.git
4764 F: drivers/media/usb/dvb-usb-v2/ce6230*
4766 DVB_USB_CXUSB MEDIA DRIVER
4767 M: Michael Krufky <mkrufky@linuxtv.org>
4768 L: linux-media@vger.kernel.org
4769 W: https://linuxtv.org
4770 W: http://github.com/mkrufky
4771 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4772 T: git git://linuxtv.org/media_tree.git
4774 F: drivers/media/usb/dvb-usb/cxusb*
4776 DVB_USB_EC168 MEDIA DRIVER
4777 M: Antti Palosaari <crope@iki.fi>
4778 L: linux-media@vger.kernel.org
4779 W: https://linuxtv.org
4780 W: http://palosaari.fi/linux/
4781 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4782 T: git git://linuxtv.org/anttip/media_tree.git
4784 F: drivers/media/usb/dvb-usb-v2/ec168*
4786 DVB_USB_GL861 MEDIA DRIVER
4787 M: Antti Palosaari <crope@iki.fi>
4788 L: linux-media@vger.kernel.org
4789 W: https://linuxtv.org
4790 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4791 T: git git://linuxtv.org/anttip/media_tree.git
4793 F: drivers/media/usb/dvb-usb-v2/gl861*
4795 DVB_USB_MXL111SF MEDIA DRIVER
4796 M: Michael Krufky <mkrufky@linuxtv.org>
4797 L: linux-media@vger.kernel.org
4798 W: https://linuxtv.org
4799 W: http://github.com/mkrufky
4800 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4801 T: git git://linuxtv.org/mkrufky/mxl111sf.git
4803 F: drivers/media/usb/dvb-usb-v2/mxl111sf*
4805 DVB_USB_RTL28XXU MEDIA DRIVER
4806 M: Antti Palosaari <crope@iki.fi>
4807 L: linux-media@vger.kernel.org
4808 W: https://linuxtv.org
4809 W: http://palosaari.fi/linux/
4810 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4811 T: git git://linuxtv.org/anttip/media_tree.git
4813 F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
4815 DVB_USB_V2 MEDIA DRIVER
4816 M: Antti Palosaari <crope@iki.fi>
4817 L: linux-media@vger.kernel.org
4818 W: https://linuxtv.org
4819 W: http://palosaari.fi/linux/
4820 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4821 T: git git://linuxtv.org/anttip/media_tree.git
4823 F: drivers/media/usb/dvb-usb-v2/dvb_usb*
4824 F: drivers/media/usb/dvb-usb-v2/usb_urb.c
4827 M: Jason Baron <jbaron@akamai.com>
4829 F: lib/dynamic_debug.c
4830 F: include/linux/dynamic_debug.h
4832 DZ DECSTATION DZ11 SERIAL DRIVER
4833 M: "Maciej W. Rozycki" <macro@linux-mips.org>
4835 F: drivers/tty/serial/dz.*
4837 E3X0 POWER BUTTON DRIVER
4838 M: Moritz Fischer <moritz.fischer@ettus.com>
4839 L: usrp-users@lists.ettus.com
4840 W: http://www.ettus.com
4842 F: drivers/input/misc/e3x0-button.c
4843 F: Documentation/devicetree/bindings/input/e3x0-button.txt
4846 M: Antti Palosaari <crope@iki.fi>
4847 L: linux-media@vger.kernel.org
4848 W: https://linuxtv.org
4849 W: http://palosaari.fi/linux/
4850 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4851 T: git git://linuxtv.org/anttip/media_tree.git
4853 F: drivers/media/tuners/e4000*
4855 EATA ISA/EISA/PCI SCSI DRIVER
4856 M: Dario Ballabio <ballabio_dario@emc.com>
4857 L: linux-scsi@vger.kernel.org
4859 F: drivers/scsi/eata.c
4862 M: Antti Palosaari <crope@iki.fi>
4863 L: linux-media@vger.kernel.org
4864 W: https://linuxtv.org
4865 W: http://palosaari.fi/linux/
4866 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4867 T: git git://linuxtv.org/anttip/media_tree.git
4869 F: drivers/media/dvb-frontends/ec100*
4872 M: Tyler Hicks <tyhicks@canonical.com>
4873 L: ecryptfs@vger.kernel.org
4874 W: http://ecryptfs.org
4875 W: https://launchpad.net/ecryptfs
4876 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
4878 F: Documentation/filesystems/ecryptfs.txt
4882 M: Borislav Petkov <bp@alien8.de>
4883 L: linux-edac@vger.kernel.org
4885 F: drivers/edac/amd64_edac*
4888 M: Robert Richter <rric@kernel.org>
4889 L: linux-edac@vger.kernel.org
4891 F: drivers/edac/highbank*
4894 M: Ralf Baechle <ralf@linux-mips.org>
4895 M: David Daney <david.daney@cavium.com>
4896 L: linux-edac@vger.kernel.org
4897 L: linux-mips@linux-mips.org
4899 F: drivers/edac/octeon_edac*
4900 F: drivers/edac/thunderx_edac*
4903 M: Borislav Petkov <bp@alien8.de>
4904 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
4905 M: Mauro Carvalho Chehab <mchehab@kernel.org>
4906 L: linux-edac@vger.kernel.org
4907 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git for-next
4908 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-edac.git linux_next
4910 F: Documentation/admin-guide/ras.rst
4911 F: Documentation/driver-api/edac.rst
4913 F: include/linux/edac.h
4916 M: Mark Gross <mark.gross@intel.com>
4917 L: linux-edac@vger.kernel.org
4919 F: drivers/edac/e752x_edac.c
4922 L: linux-edac@vger.kernel.org
4924 F: drivers/edac/e7xxx_edac.c
4927 M: York Sun <york.sun@nxp.com>
4928 L: linux-edac@vger.kernel.org
4930 F: drivers/edac/fsl_ddr_edac.*
4933 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
4934 M: Mauro Carvalho Chehab <mchehab@kernel.org>
4935 L: linux-edac@vger.kernel.org
4937 F: drivers/edac/ghes_edac.c
4940 L: linux-edac@vger.kernel.org
4942 F: drivers/edac/i3000_edac.c
4945 L: linux-edac@vger.kernel.org
4947 F: drivers/edac/i5000_edac.c
4950 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
4951 M: Mauro Carvalho Chehab <mchehab@kernel.org>
4952 L: linux-edac@vger.kernel.org
4954 F: drivers/edac/i5400_edac.c
4957 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
4958 M: Mauro Carvalho Chehab <mchehab@kernel.org>
4959 L: linux-edac@vger.kernel.org
4961 F: drivers/edac/i7300_edac.c
4964 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
4965 M: Mauro Carvalho Chehab <mchehab@kernel.org>
4966 L: linux-edac@vger.kernel.org
4968 F: drivers/edac/i7core_edac.c
4971 M: Tim Small <tim@buttersideup.com>
4972 L: linux-edac@vger.kernel.org
4974 F: drivers/edac/i82443bxgx_edac.c
4977 M: Ranganathan Desikan <ravi@jetztechnologies.com>
4978 M: "Arvind R." <arvino55@gmail.com>
4979 L: linux-edac@vger.kernel.org
4981 F: drivers/edac/i82975x_edac.c
4984 M: Jason Baron <jbaron@akamai.com>
4985 L: linux-edac@vger.kernel.org
4987 F: drivers/edac/ie31200_edac.c
4990 M: Johannes Thumshirn <morbidrsa@gmail.com>
4991 L: linux-edac@vger.kernel.org
4993 F: drivers/edac/mpc85xx_edac.[ch]
4996 M: Egor Martovetsky <egor@pasemi.com>
4997 L: linux-edac@vger.kernel.org
4999 F: drivers/edac/pasemi_edac.c
5002 M: Tony Luck <tony.luck@intel.com>
5003 L: linux-edac@vger.kernel.org
5005 F: drivers/edac/pnd2_edac.[ch]
5008 M: Tim Small <tim@buttersideup.com>
5009 L: linux-edac@vger.kernel.org
5011 F: drivers/edac/r82600_edac.c
5014 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
5015 M: Mauro Carvalho Chehab <mchehab@kernel.org>
5016 L: linux-edac@vger.kernel.org
5018 F: drivers/edac/sb_edac.c
5021 M: Tony Luck <tony.luck@intel.com>
5022 L: linux-edac@vger.kernel.org
5024 F: drivers/edac/skx_edac.c
5026 EDIROL UA-101/UA-1000 DRIVER
5027 M: Clemens Ladisch <clemens@ladisch.de>
5028 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5029 T: git git://git.alsa-project.org/alsa-kernel.git
5031 F: sound/usb/misc/ua101.c
5034 L: linux-efi@vger.kernel.org
5035 M: Ivan Hu <ivan.hu@canonical.com>
5036 M: Matt Fleming <matt@codeblueprint.co.uk>
5038 F: drivers/firmware/efi/test/
5040 EFI VARIABLE FILESYSTEM
5041 M: Matthew Garrett <matthew.garrett@nebula.com>
5042 M: Jeremy Kerr <jk@ozlabs.org>
5043 M: Matt Fleming <matt@codeblueprint.co.uk>
5044 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
5045 L: linux-efi@vger.kernel.org
5049 EFIFB FRAMEBUFFER DRIVER
5050 L: linux-fbdev@vger.kernel.org
5051 M: Peter Jones <pjones@redhat.com>
5053 F: drivers/video/fbdev/efifb.c
5056 W: http://aeschi.ch.eu.org/efs/
5060 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
5061 M: Douglas Miller <dougmill@linux.vnet.ibm.com>
5062 L: netdev@vger.kernel.org
5064 F: drivers/net/ethernet/ibm/ehea/
5066 EM28XX VIDEO4LINUX DRIVER
5067 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
5068 M: Mauro Carvalho Chehab <mchehab@kernel.org>
5069 L: linux-media@vger.kernel.org
5070 W: https://linuxtv.org
5071 T: git git://linuxtv.org/media_tree.git
5073 F: drivers/media/usb/em28xx/
5074 F: Documentation/media/v4l-drivers/em28xx*
5077 M: Paul Gortmaker <paul.gortmaker@windriver.com>
5078 M: Matt Mackall <mpm@selenic.com>
5079 M: David Woodhouse <dwmw2@infradead.org>
5080 L: linux-embedded@vger.kernel.org
5083 Emulex 10Gbps iSCSI - OneConnect DRIVER
5084 M: Subbu Seetharaman <subbu.seetharaman@broadcom.com>
5085 M: Ketan Mukadam <ketan.mukadam@broadcom.com>
5086 M: Jitendra Bhivare <jitendra.bhivare@broadcom.com>
5087 L: linux-scsi@vger.kernel.org
5088 W: http://www.broadcom.com
5090 F: drivers/scsi/be2iscsi/
5092 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
5093 M: Sathya Perla <sathya.perla@broadcom.com>
5094 M: Ajit Khaparde <ajit.khaparde@broadcom.com>
5095 M: Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
5096 M: Somnath Kotur <somnath.kotur@broadcom.com>
5097 L: netdev@vger.kernel.org
5098 W: http://www.emulex.com
5100 F: drivers/net/ethernet/emulex/benet/
5102 EMULEX ONECONNECT ROCE DRIVER
5103 M: Selvin Xavier <selvin.xavier@broadcom.com>
5104 M: Devesh Sharma <devesh.sharma@broadcom.com>
5105 L: linux-rdma@vger.kernel.org
5106 W: http://www.broadcom.com
5108 F: drivers/infiniband/hw/ocrdma/
5109 F: include/uapi/rdma/ocrdma-abi.h
5111 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
5112 M: James Smart <james.smart@broadcom.com>
5113 M: Dick Kennedy <dick.kennedy@broadcom.com>
5114 L: linux-scsi@vger.kernel.org
5115 W: http://www.broadcom.com
5117 F: drivers/scsi/lpfc/
5119 ENE CB710 FLASH CARD READER DRIVER
5120 M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
5122 F: drivers/misc/cb710/
5123 F: drivers/mmc/host/cb710-mmc.*
5124 F: include/linux/cb710.h
5126 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
5127 M: Maxim Levitsky <maximlevitsky@gmail.com>
5129 F: drivers/media/rc/ene_ir.*
5131 EPSON S1D13XXX FRAMEBUFFER DRIVER
5132 M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
5134 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
5135 F: drivers/video/fbdev/s1d13xxxfb.c
5136 F: include/video/s1d13xxxfb.h
5138 ERRSEQ ERROR TRACKING INFRASTRUCTURE
5139 M: Jeff Layton <jlayton@poochiereds.net>
5142 F: include/linux/errseq.h
5144 ET131X NETWORK DRIVER
5145 M: Mark Einon <mark.einon@gmail.com>
5147 F: drivers/net/ethernet/agere/
5150 M: Stephen Hemminger <stephen@networkplumber.org>
5151 L: bridge@lists.linux-foundation.org (moderated for non-subscribers)
5152 L: netdev@vger.kernel.org
5153 W: http://www.linuxfoundation.org/en/Net:Bridge
5155 F: include/linux/netfilter_bridge/
5158 ETHERNET PHY LIBRARY
5159 M: Andrew Lunn <andrew@lunn.ch>
5160 M: Florian Fainelli <f.fainelli@gmail.com>
5161 L: netdev@vger.kernel.org
5163 F: Documentation/ABI/testing/sysfs-bus-mdio
5164 F: Documentation/devicetree/bindings/net/mdio*
5165 F: Documentation/networking/phy.txt
5167 F: drivers/of/of_mdio.c
5168 F: drivers/of/of_net.c
5169 F: include/linux/*mdio*.h
5170 F: include/linux/of_net.h
5171 F: include/linux/phy.h
5172 F: include/linux/phy_fixed.h
5173 F: include/linux/platform_data/mdio-gpio.h
5174 F: include/linux/platform_data/mdio-bcm-unimac.h
5175 F: include/trace/events/mdio.h
5176 F: include/uapi/linux/mdio.h
5177 F: include/uapi/linux/mii.h
5180 M: Jan Kara <jack@suse.com>
5181 L: linux-ext4@vger.kernel.org
5183 F: Documentation/filesystems/ext2.txt
5185 F: include/linux/ext2*
5188 M: "Theodore Ts'o" <tytso@mit.edu>
5189 M: Andreas Dilger <adilger.kernel@dilger.ca>
5190 L: linux-ext4@vger.kernel.org
5191 W: http://ext4.wiki.kernel.org
5192 Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
5193 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
5195 F: Documentation/filesystems/ext4.txt
5198 Extended Verification Module (EVM)
5199 M: Mimi Zohar <zohar@linux.vnet.ibm.com>
5200 L: linux-ima-devel@lists.sourceforge.net
5201 L: linux-security-module@vger.kernel.org
5203 F: security/integrity/evm/
5205 EXTENSIBLE FIRMWARE INTERFACE (EFI)
5206 M: Matt Fleming <matt@codeblueprint.co.uk>
5207 M: Ard Biesheuvel <ard.biesheuvel@linaro.org>
5208 L: linux-efi@vger.kernel.org
5209 T: git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
5211 F: Documentation/efi-stub.txt
5212 F: arch/*/kernel/efi.c
5213 F: arch/x86/boot/compressed/eboot.[ch]
5214 F: arch/*/include/asm/efi.h
5215 F: arch/x86/platform/efi/
5216 F: drivers/firmware/efi/
5217 F: include/linux/efi*.h
5218 F: arch/arm/boot/compressed/efi-header.S
5219 F: arch/arm64/kernel/efi-entry.S
5221 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
5222 M: MyungJoo Ham <myungjoo.ham@samsung.com>
5223 M: Chanwoo Choi <cw00.choi@samsung.com>
5224 L: linux-kernel@vger.kernel.org
5225 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
5228 F: include/linux/extcon/
5229 F: include/linux/extcon.h
5230 F: Documentation/extcon/
5231 F: Documentation/devicetree/bindings/extcon/
5234 M: Jingoo Han <jingoohan1@gmail.com>
5235 L: dri-devel@lists.freedesktop.org
5237 F: drivers/gpu/drm/exynos/exynos_dp*
5239 EXYNOS SYSMMU (IOMMU) driver
5240 M: Marek Szyprowski <m.szyprowski@samsung.com>
5241 L: iommu@lists.linux-foundation.org
5243 F: drivers/iommu/exynos-iommu.c
5245 EZchip NPS platform support
5246 M: Noam Camus <noamc@ezchip.com>
5248 F: arch/arc/plat-eznps
5249 F: arch/arc/boot/dts/eznps.dts
5252 M: Jaegeuk Kim <jaegeuk@kernel.org>
5253 M: Chao Yu <yuchao0@huawei.com>
5254 L: linux-f2fs-devel@lists.sourceforge.net
5255 W: https://f2fs.wiki.kernel.org/
5256 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
5258 F: Documentation/filesystems/f2fs.txt
5259 F: Documentation/ABI/testing/sysfs-fs-f2fs
5261 F: include/linux/f2fs_fs.h
5262 F: include/trace/events/f2fs.h
5264 F71805F HARDWARE MONITORING DRIVER
5265 M: Jean Delvare <jdelvare@suse.com>
5266 L: linux-hwmon@vger.kernel.org
5268 F: Documentation/hwmon/f71805f
5269 F: drivers/hwmon/f71805f.c
5272 M: Jan Kara <jack@suse.cz>
5273 R: Amir Goldstein <amir73il@gmail.com>
5274 L: linux-fsdevel@vger.kernel.org
5276 F: fs/notify/fanotify/
5277 F: include/linux/fanotify.h
5278 F: include/uapi/linux/fanotify.h
5280 FARSYNC SYNCHRONOUS DRIVER
5281 M: Kevin Curtis <kevin.curtis@farsite.co.uk>
5282 W: http://www.farsite.co.uk/
5284 F: drivers/net/wan/farsync.*
5286 FAULT INJECTION SUPPORT
5287 M: Akinobu Mita <akinobu.mita@gmail.com>
5289 F: Documentation/fault-injection/
5290 F: lib/fault-inject.c
5292 FBTFT Framebuffer drivers
5293 M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
5295 F: drivers/staging/fbtft/
5298 M: Michael Buesch <m@bues.ch>
5299 L: linux-media@vger.kernel.org
5301 F: drivers/media/tuners/fc0011.h
5302 F: drivers/media/tuners/fc0011.c
5305 M: Antti Palosaari <crope@iki.fi>
5306 L: linux-media@vger.kernel.org
5307 W: https://linuxtv.org
5308 W: http://palosaari.fi/linux/
5309 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5310 T: git git://linuxtv.org/anttip/media_tree.git
5312 F: drivers/media/tuners/fc2580*
5314 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
5315 M: Johannes Thumshirn <jth@kernel.org>
5316 L: fcoe-devel@open-fcoe.org
5317 W: www.Open-FCoE.org
5319 F: drivers/scsi/libfc/
5320 F: drivers/scsi/fcoe/
5322 F: include/scsi/libfc.h
5323 F: include/scsi/libfcoe.h
5324 F: include/uapi/scsi/fc/
5326 FILE LOCKING (flock() and fcntl()/lockf())
5327 M: Jeff Layton <jlayton@poochiereds.net>
5328 M: "J. Bruce Fields" <bfields@fieldses.org>
5329 L: linux-fsdevel@vger.kernel.org
5331 F: include/linux/fcntl.h
5332 F: include/linux/fs.h
5333 F: include/uapi/linux/fcntl.h
5334 F: include/uapi/linux/fs.h
5338 FILESYSTEMS (VFS and infrastructure)
5339 M: Alexander Viro <viro@zeniv.linux.org.uk>
5340 L: linux-fsdevel@vger.kernel.org
5344 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
5345 M: Riku Voipio <riku.voipio@iki.fi>
5346 L: linux-hwmon@vger.kernel.org
5348 F: drivers/hwmon/f75375s.c
5349 F: include/linux/f75375s.h
5351 FIREWIRE AUDIO DRIVERS
5352 M: Clemens Ladisch <clemens@ladisch.de>
5353 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5354 T: git git://git.alsa-project.org/alsa-kernel.git
5358 FIREWIRE MEDIA DRIVERS (firedtv)
5359 M: Stefan Richter <stefanr@s5r6.in-berlin.de>
5360 L: linux-media@vger.kernel.org
5361 L: linux1394-devel@lists.sourceforge.net
5362 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
5364 F: drivers/media/firewire/
5366 FIREWIRE SBP-2 TARGET
5367 M: Chris Boot <bootc@bootc.net>
5368 L: linux-scsi@vger.kernel.org
5369 L: target-devel@vger.kernel.org
5370 L: linux1394-devel@lists.sourceforge.net
5371 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
5373 F: drivers/target/sbp/
5376 M: Stefan Richter <stefanr@s5r6.in-berlin.de>
5377 L: linux1394-devel@lists.sourceforge.net
5378 W: http://ieee1394.wiki.kernel.org/
5379 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
5381 F: drivers/firewire/
5382 F: include/linux/firewire.h
5383 F: include/uapi/linux/firewire*.h
5386 FIRMWARE LOADER (request_firmware)
5387 M: Luis R. Rodriguez <mcgrof@kernel.org>
5388 L: linux-kernel@vger.kernel.org
5390 F: Documentation/firmware_class/
5391 F: drivers/base/firmware*.c
5392 F: include/linux/firmware.h
5394 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
5395 M: Joshua Morris <josh.h.morris@us.ibm.com>
5396 M: Philip Kelleher <pjk1939@linux.vnet.ibm.com>
5398 F: drivers/block/rsxx/
5401 M: Jiri Kosina <jikos@kernel.org>
5402 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
5404 F: drivers/block/floppy.c
5407 M: Alessandro Rubini <rubini@gnudd.com>
5408 W: http://www.ohwr.org/projects/fmc-bus
5411 F: include/linux/fmc*.h
5412 F: include/linux/ipmi-fru.h
5415 FPGA MANAGER FRAMEWORK
5416 M: Alan Tull <atull@kernel.org>
5417 R: Moritz Fischer <mdf@kernel.org>
5418 L: linux-fpga@vger.kernel.org
5420 T: git git://git.kernel.org/pub/scm/linux/kernel/git/atull/linux-fpga.git
5421 Q: http://patchwork.kernel.org/project/linux-fpga/list/
5422 F: Documentation/fpga/
5423 F: Documentation/devicetree/bindings/fpga/
5425 F: include/linux/fpga/
5426 W: http://www.rocketboards.org
5429 M: Bill Metzenthen <billm@melbpc.org.au>
5430 W: http://floatingpoint.sourceforge.net/emulator/index.html
5432 F: arch/x86/math-emu/
5434 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
5435 L: netdev@vger.kernel.org
5437 F: drivers/net/wan/dlci.c
5438 F: drivers/net/wan/sdla.c
5441 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
5442 L: linux-fbdev@vger.kernel.org
5443 T: git git://github.com/bzolnier/linux.git
5444 Q: http://patchwork.kernel.org/project/linux-fbdev/list/
5446 F: Documentation/fb/
5449 F: include/linux/fb.h
5450 F: include/uapi/video/
5451 F: include/uapi/linux/fb.h
5453 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
5454 M: Horia Geantă <horia.geanta@nxp.com>
5455 M: Dan Douglass <dan.douglass@nxp.com>
5456 L: linux-crypto@vger.kernel.org
5458 F: drivers/crypto/caam/
5459 F: Documentation/devicetree/bindings/crypto/fsl-sec4.txt
5461 FREESCALE DIU FRAMEBUFFER DRIVER
5462 M: Timur Tabi <timur@tabi.org>
5463 L: linux-fbdev@vger.kernel.org
5465 F: drivers/video/fbdev/fsl-diu-fb.*
5467 FREESCALE DMA DRIVER
5468 M: Li Yang <leoyang.li@nxp.com>
5469 M: Zhang Wei <zw@zh-kernel.org>
5470 L: linuxppc-dev@lists.ozlabs.org
5472 F: drivers/dma/fsldma.*
5474 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
5475 M: Claudiu Manoil <claudiu.manoil@freescale.com>
5476 L: netdev@vger.kernel.org
5478 F: drivers/net/ethernet/freescale/gianfar*
5479 X: drivers/net/ethernet/freescale/gianfar_ptp.c
5480 F: Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
5482 FREESCALE GPMI NAND DRIVER
5483 M: Han Xu <han.xu@nxp.com>
5484 L: linux-mtd@lists.infradead.org
5486 F: drivers/mtd/nand/gpmi-nand/*
5488 FREESCALE I2C CPM DRIVER
5489 M: Jochen Friedrich <jochen@scram.de>
5490 L: linuxppc-dev@lists.ozlabs.org
5491 L: linux-i2c@vger.kernel.org
5493 F: drivers/i2c/busses/i2c-cpm.c
5495 FREESCALE IMX / MXC FEC DRIVER
5496 M: Fugang Duan <fugang.duan@nxp.com>
5497 L: netdev@vger.kernel.org
5499 F: drivers/net/ethernet/freescale/fec_main.c
5500 F: drivers/net/ethernet/freescale/fec_ptp.c
5501 F: drivers/net/ethernet/freescale/fec.h
5502 F: Documentation/devicetree/bindings/net/fsl-fec.txt
5504 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
5505 M: Sascha Hauer <kernel@pengutronix.de>
5506 L: linux-fbdev@vger.kernel.org
5507 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5509 F: include/linux/platform_data/video-imxfb.h
5510 F: drivers/video/fbdev/imxfb.c
5512 FREESCALE QORIQ DPAA ETHERNET DRIVER
5513 M: Madalin Bucur <madalin.bucur@nxp.com>
5514 L: netdev@vger.kernel.org
5516 F: drivers/net/ethernet/freescale/dpaa
5518 FREESCALE QORIQ DPAA FMAN DRIVER
5519 M: Madalin Bucur <madalin.bucur@nxp.com>
5520 L: netdev@vger.kernel.org
5522 F: drivers/net/ethernet/freescale/fman
5523 F: Documentation/devicetree/bindings/powerpc/fsl/fman.txt
5525 FREESCALE QUAD SPI DRIVER
5526 M: Han Xu <han.xu@nxp.com>
5527 L: linux-mtd@lists.infradead.org
5529 F: drivers/mtd/spi-nor/fsl-quadspi.c
5531 FREESCALE QUICC ENGINE LIBRARY
5532 M: Qiang Zhao <qiang.zhao@nxp.com>
5533 L: linuxppc-dev@lists.ozlabs.org
5535 F: drivers/soc/fsl/qe/
5536 F: include/soc/fsl/*qe*.h
5537 F: include/soc/fsl/*ucc*.h
5539 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
5540 M: Li Yang <leoyang.li@nxp.com>
5541 L: netdev@vger.kernel.org
5542 L: linuxppc-dev@lists.ozlabs.org
5544 F: drivers/net/ethernet/freescale/ucc_geth*
5546 FREESCALE QUICC ENGINE UCC HDLC DRIVER
5547 M: Zhao Qiang <qiang.zhao@nxp.com>
5548 L: netdev@vger.kernel.org
5549 L: linuxppc-dev@lists.ozlabs.org
5551 F: drivers/net/wan/fsl_ucc_hdlc*
5553 FREESCALE QUICC ENGINE UCC UART DRIVER
5554 M: Timur Tabi <timur@tabi.org>
5555 L: linuxppc-dev@lists.ozlabs.org
5557 F: drivers/tty/serial/ucc_uart.c
5559 FREESCALE SOC DRIVERS
5560 M: Li Yang <leoyang.li@nxp.com>
5561 L: linuxppc-dev@lists.ozlabs.org
5562 L: linux-arm-kernel@lists.infradead.org
5564 F: Documentation/devicetree/bindings/soc/fsl/
5566 F: include/linux/fsl/
5568 FREESCALE SOC FS_ENET DRIVER
5569 M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
5570 M: Vitaly Bordug <vbordug@ru.mvista.com>
5571 L: linuxppc-dev@lists.ozlabs.org
5572 L: netdev@vger.kernel.org
5574 F: drivers/net/ethernet/freescale/fs_enet/
5575 F: include/linux/fs_enet_pd.h
5577 FREESCALE SOC SOUND DRIVERS
5578 M: Timur Tabi <timur@tabi.org>
5579 M: Nicolin Chen <nicoleotsuka@gmail.com>
5580 M: Xiubo Li <Xiubo.Lee@gmail.com>
5581 R: Fabio Estevam <fabio.estevam@nxp.com>
5582 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5583 L: linuxppc-dev@lists.ozlabs.org
5585 F: sound/soc/fsl/fsl*
5586 F: sound/soc/fsl/imx*
5587 F: sound/soc/fsl/mpc8610_hpcd.c
5589 FREESCALE USB PERIPHERAL DRIVERS
5590 M: Li Yang <leoyang.li@nxp.com>
5591 L: linux-usb@vger.kernel.org
5592 L: linuxppc-dev@lists.ozlabs.org
5594 F: drivers/usb/gadget/udc/fsl*
5597 M: Christoph Hellwig <hch@infradead.org>
5598 W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
5603 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
5604 M: Pavel Machek <pavel@ucw.cz>
5605 L: linux-pm@vger.kernel.org
5607 F: Documentation/power/freezing-of-tasks.txt
5608 F: include/linux/freezer.h
5612 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
5613 L: linux-kernel@vger.kernel.org
5616 F: include/linux/frontswap.h
5618 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
5619 M: David Howells <dhowells@redhat.com>
5620 L: linux-cachefs@redhat.com (moderated for non-subscribers)
5622 F: Documentation/filesystems/caching/
5624 F: include/linux/fscache*.h
5626 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
5627 M: Theodore Y. Ts'o <tytso@mit.edu>
5628 M: Jaegeuk Kim <jaegeuk@kernel.org>
5629 L: linux-fscrypt@vger.kernel.org
5630 Q: https://patchwork.kernel.org/project/linux-fscrypt/list/
5631 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/fscrypt.git
5634 F: include/linux/fscrypt*.h
5636 FUJITSU FR-V (FRV) PORT
5640 FUJITSU LAPTOP EXTRAS
5641 M: Jonathan Woithe <jwoithe@just42.net>
5642 L: platform-driver-x86@vger.kernel.org
5644 F: drivers/platform/x86/fujitsu-laptop.c
5646 FUJITSU M-5MO LS CAMERA ISP DRIVER
5647 M: Kyungmin Park <kyungmin.park@samsung.com>
5648 M: Heungjun Kim <riverful.kim@samsung.com>
5649 L: linux-media@vger.kernel.org
5651 F: drivers/media/i2c/m5mols/
5652 F: include/media/i2c/m5mols.h
5654 FUJITSU TABLET EXTRAS
5655 M: Robert Gerlach <khnz@gmx.de>
5656 L: platform-driver-x86@vger.kernel.org
5658 F: drivers/platform/x86/fujitsu-tablet.c
5660 FUSE: FILESYSTEM IN USERSPACE
5661 M: Miklos Szeredi <miklos@szeredi.hu>
5662 L: linux-fsdevel@vger.kernel.org
5663 W: http://fuse.sourceforge.net/
5664 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
5667 F: include/uapi/linux/fuse.h
5668 F: Documentation/filesystems/fuse.txt
5671 M: Thomas Gleixner <tglx@linutronix.de>
5672 M: Ingo Molnar <mingo@redhat.com>
5673 R: Peter Zijlstra <peterz@infradead.org>
5674 R: Darren Hart <dvhart@infradead.org>
5675 L: linux-kernel@vger.kernel.org
5676 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
5679 F: kernel/futex_compat.c
5680 F: include/asm-generic/futex.h
5681 F: include/linux/futex.h
5682 F: include/uapi/linux/futex.h
5683 F: tools/testing/selftests/futex/
5684 F: tools/perf/bench/futex*
5685 F: Documentation/*futex*
5687 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
5688 M: Rik Faith <faith@cs.unc.edu>
5689 L: linux-scsi@vger.kernel.org
5690 S: Odd Fixes (e.g., new signatures)
5691 F: drivers/scsi/fdomain.*
5694 M: Kees Cook <keescook@chromium.org>
5695 R: Emese Revfy <re.emese@gmail.com>
5696 L: kernel-hardening@lists.openwall.com
5698 F: scripts/gcc-plugins/
5699 F: scripts/gcc-plugin.sh
5700 F: scripts/Makefile.gcc-plugins
5701 F: Documentation/gcc-plugins.txt
5703 GCOV BASED KERNEL PROFILING
5704 M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
5707 F: Documentation/dev-tools/gcov.rst
5709 GDB KERNEL DEBUGGING HELPER SCRIPTS
5710 M: Jan Kiszka <jan.kiszka@siemens.com>
5711 M: Kieran Bingham <kieran@bingham.xyz>
5715 GDT SCSI DISK ARRAY CONTROLLER DRIVER
5716 M: Achim Leubner <achim_leubner@adaptec.com>
5717 L: linux-scsi@vger.kernel.org
5718 W: http://www.icp-vortex.com/
5720 F: drivers/scsi/gdt*
5722 GEMTEK FM RADIO RECEIVER DRIVER
5723 M: Hans Verkuil <hverkuil@xs4all.nl>
5724 L: linux-media@vger.kernel.org
5725 T: git git://linuxtv.org/media_tree.git
5726 W: https://linuxtv.org
5728 F: drivers/media/radio/radio-gemtek*
5730 GENERIC GPIO I2C DRIVER
5731 M: Haavard Skinnemoen <hskinnemoen@gmail.com>
5733 F: drivers/i2c/busses/i2c-gpio.c
5734 F: include/linux/i2c-gpio.h
5736 GENERIC GPIO I2C MULTIPLEXER DRIVER
5737 M: Peter Korsgaard <peter.korsgaard@barco.com>
5738 L: linux-i2c@vger.kernel.org
5740 F: drivers/i2c/muxes/i2c-mux-gpio.c
5741 F: include/linux/i2c-mux-gpio.h
5742 F: Documentation/i2c/muxes/i2c-mux-gpio
5744 GENERIC HDLC (WAN) DRIVERS
5745 M: Krzysztof Halasa <khc@pm.waw.pl>
5746 W: http://www.kernel.org/pub/linux/utils/net/hdlc/
5748 F: drivers/net/wan/c101.c
5749 F: drivers/net/wan/hd6457*
5750 F: drivers/net/wan/hdlc*
5751 F: drivers/net/wan/n2.c
5752 F: drivers/net/wan/pc300too.c
5753 F: drivers/net/wan/pci200syn.c
5754 F: drivers/net/wan/wanxl*
5756 GENERIC INCLUDE/ASM HEADER FILES
5757 M: Arnd Bergmann <arnd@arndb.de>
5758 L: linux-arch@vger.kernel.org
5759 T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
5761 F: include/asm-generic/
5762 F: include/uapi/asm-generic/
5764 GENERIC PHY FRAMEWORK
5765 M: Kishon Vijay Abraham I <kishon@ti.com>
5766 L: linux-kernel@vger.kernel.org
5767 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
5770 F: include/linux/phy/
5773 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
5774 M: Kevin Hilman <khilman@kernel.org>
5775 M: Ulf Hansson <ulf.hansson@linaro.org>
5776 L: linux-pm@vger.kernel.org
5778 F: drivers/base/power/domain*.c
5779 F: include/linux/pm_domain.h
5780 F: Documentation/devicetree/bindings/power/power_domain.txt
5782 GENERIC UIO DRIVER FOR PCI DEVICES
5783 M: "Michael S. Tsirkin" <mst@redhat.com>
5784 L: kvm@vger.kernel.org
5786 F: drivers/uio/uio_pci_generic.c
5788 GENWQE (IBM Generic Workqueue Card)
5789 M: Frank Haverkamp <haver@linux.vnet.ibm.com>
5790 M: Guilherme G. Piccoli <gpiccoli@linux.vnet.ibm.com>
5792 F: drivers/misc/genwqe/
5794 GET_MAINTAINER SCRIPT
5795 M: Joe Perches <joe@perches.com>
5797 F: scripts/get_maintainer.pl
5800 M: Steven Whitehouse <swhiteho@redhat.com>
5801 M: Bob Peterson <rpeterso@redhat.com>
5802 L: cluster-devel@redhat.com
5803 W: http://sources.redhat.com/cluster/
5804 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
5806 F: Documentation/filesystems/gfs2*.txt
5808 F: include/uapi/linux/gfs2_ondisk.h
5810 GIGASET ISDN DRIVERS
5811 M: Paul Bolle <pebolle@tiscali.nl>
5812 L: gigaset307x-common@lists.sourceforge.net
5813 W: http://gigaset307x.sourceforge.net/
5815 F: Documentation/isdn/README.gigaset
5816 F: drivers/isdn/gigaset/
5817 F: include/uapi/linux/gigaset_dev.h
5820 M: Hans Verkuil <hans.verkuil@cisco.com>
5821 L: linux-media@vger.kernel.org
5823 F: drivers/media/usb/go7007/
5826 M: Bastien Nocera <hadess@hadess.net>
5827 L: linux-input@vger.kernel.org
5829 F: drivers/input/touchscreen/goodix.c
5832 M: Mika Westerberg <mika.westerberg@linux.intel.com>
5833 M: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
5834 L: linux-gpio@vger.kernel.org
5835 L: linux-acpi@vger.kernel.org
5837 F: Documentation/acpi/gpio-properties.txt
5838 F: drivers/gpio/gpiolib-acpi.c
5841 M: Sean Young <sean@mess.org>
5842 L: linux-media@vger.kernel.org
5844 F: drivers/media/rc/gpio-ir-tx.c
5847 M: Bamvor Jian Zhang <bamvor.zhangjian@linaro.org>
5848 L: linux-gpio@vger.kernel.org
5850 F: drivers/gpio/gpio-mockup.c
5851 F: tools/testing/selftests/gpio/
5854 M: Linus Walleij <linus.walleij@linaro.org>
5855 L: linux-gpio@vger.kernel.org
5856 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
5858 F: Documentation/devicetree/bindings/gpio/
5859 F: Documentation/gpio/
5860 F: Documentation/ABI/testing/gpio-cdev
5861 F: Documentation/ABI/obsolete/sysfs-gpio
5863 F: include/linux/gpio/
5864 F: include/linux/gpio.h
5865 F: include/asm-generic/gpio.h
5866 F: include/uapi/linux/gpio.h
5869 GRE DEMULTIPLEXER DRIVER
5870 M: Dmitry Kozlov <xeb@mail.ru>
5871 L: netdev@vger.kernel.org
5873 F: net/ipv4/gre_demux.c
5874 F: net/ipv4/gre_offload.c
5875 F: include/net/gre.h
5877 GRETH 10/100/1G Ethernet MAC device driver
5878 M: Andreas Larsson <andreas@gaisler.com>
5879 L: netdev@vger.kernel.org
5881 F: drivers/net/ethernet/aeroflex/
5883 GREYBUS AUDIO PROTOCOLS DRIVERS
5884 M: Vaibhav Agarwal <vaibhav.sr@gmail.com>
5885 M: Mark Greer <mgreer@animalcreek.com>
5887 F: drivers/staging/greybus/audio_apbridgea.c
5888 F: drivers/staging/greybus/audio_apbridgea.h
5889 F: drivers/staging/greybus/audio_codec.c
5890 F: drivers/staging/greybus/audio_codec.h
5891 F: drivers/staging/greybus/audio_gb.c
5892 F: drivers/staging/greybus/audio_manager.c
5893 F: drivers/staging/greybus/audio_manager.h
5894 F: drivers/staging/greybus/audio_manager_module.c
5895 F: drivers/staging/greybus/audio_manager_private.h
5896 F: drivers/staging/greybus/audio_manager_sysfs.c
5897 F: drivers/staging/greybus/audio_module.c
5898 F: drivers/staging/greybus/audio_topology.c
5900 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
5901 M: Viresh Kumar <vireshk@kernel.org>
5903 F: drivers/staging/greybus/authentication.c
5904 F: drivers/staging/greybus/bootrom.c
5905 F: drivers/staging/greybus/firmware.h
5906 F: drivers/staging/greybus/fw-core.c
5907 F: drivers/staging/greybus/fw-download.c
5908 F: drivers/staging/greybus/fw-managament.c
5909 F: drivers/staging/greybus/greybus_authentication.h
5910 F: drivers/staging/greybus/greybus_firmware.h
5911 F: drivers/staging/greybus/hid.c
5912 F: drivers/staging/greybus/i2c.c
5913 F: drivers/staging/greybus/spi.c
5914 F: drivers/staging/greybus/spilib.c
5915 F: drivers/staging/greybus/spilib.h
5917 GREYBUS LOOPBACK/TIME PROTOCOLS DRIVERS
5918 M: Bryan O'Donoghue <pure.logic@nexus-software.ie>
5920 F: drivers/staging/greybus/loopback.c
5921 F: drivers/staging/greybus/timesync.c
5922 F: drivers/staging/greybus/timesync_platform.c
5924 GREYBUS PLATFORM DRIVERS
5925 M: Vaibhav Hiremath <hvaibhav.linux@gmail.com>
5927 F: drivers/staging/greybus/arche-platform.c
5928 F: drivers/staging/greybus/arche-apb-ctrl.c
5929 F: drivers/staging/greybus/arche_platform.h
5931 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
5932 M: Rui Miguel Silva <rmfrfs@gmail.com>
5934 F: drivers/staging/greybus/sdio.c
5935 F: drivers/staging/greybus/light.c
5936 F: drivers/staging/greybus/gpio.c
5937 F: drivers/staging/greybus/power_supply.c
5938 F: drivers/staging/greybus/spi.c
5939 F: drivers/staging/greybus/spilib.c
5942 M: Johan Hovold <johan@kernel.org>
5943 M: Alex Elder <elder@kernel.org>
5944 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5946 F: drivers/staging/greybus/
5947 L: greybus-dev@lists.linaro.org (moderated for non-subscribers)
5949 GREYBUS UART PROTOCOLS DRIVERS
5950 M: David Lin <dtwlin@gmail.com>
5952 F: drivers/staging/greybus/uart.c
5953 F: drivers/staging/greybus/log.c
5955 GS1662 VIDEO SERIALIZER
5956 M: Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
5957 L: linux-media@vger.kernel.org
5958 T: git git://linuxtv.org/media_tree.git
5960 F: drivers/media/spi/gs1662.c
5962 GSPCA FINEPIX SUBDRIVER
5963 M: Frank Zago <frank@zago.net>
5964 L: linux-media@vger.kernel.org
5965 T: git git://linuxtv.org/media_tree.git
5967 F: drivers/media/usb/gspca/finepix.c
5969 GSPCA GL860 SUBDRIVER
5970 M: Olivier Lorin <o.lorin@laposte.net>
5971 L: linux-media@vger.kernel.org
5972 T: git git://linuxtv.org/media_tree.git
5974 F: drivers/media/usb/gspca/gl860/
5976 GSPCA M5602 SUBDRIVER
5977 M: Erik Andren <erik.andren@gmail.com>
5978 L: linux-media@vger.kernel.org
5979 T: git git://linuxtv.org/media_tree.git
5981 F: drivers/media/usb/gspca/m5602/
5983 GSPCA PAC207 SONIXB SUBDRIVER
5984 M: Hans Verkuil <hverkuil@xs4all.nl>
5985 L: linux-media@vger.kernel.org
5986 T: git git://linuxtv.org/media_tree.git
5988 F: drivers/media/usb/gspca/pac207.c
5990 GSPCA SN9C20X SUBDRIVER
5991 M: Brian Johnson <brijohn@gmail.com>
5992 L: linux-media@vger.kernel.org
5993 T: git git://linuxtv.org/media_tree.git
5995 F: drivers/media/usb/gspca/sn9c20x.c
5997 GSPCA T613 SUBDRIVER
5998 M: Leandro Costantino <lcostantino@gmail.com>
5999 L: linux-media@vger.kernel.org
6000 T: git git://linuxtv.org/media_tree.git
6002 F: drivers/media/usb/gspca/t613.c
6004 GSPCA USB WEBCAM DRIVER
6005 M: Hans Verkuil <hverkuil@xs4all.nl>
6006 L: linux-media@vger.kernel.org
6007 T: git git://linuxtv.org/media_tree.git
6009 F: drivers/media/usb/gspca/
6011 GTP (GPRS Tunneling Protocol)
6012 M: Pablo Neira Ayuso <pablo@netfilter.org>
6013 M: Harald Welte <laforge@gnumonks.org>
6014 L: osmocom-net-gprs@lists.osmocom.org
6015 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
6017 F: drivers/net/gtp.c
6019 GUID PARTITION TABLE (GPT)
6020 M: Davidlohr Bueso <dave@stgolabs.net>
6021 L: linux-efi@vger.kernel.org
6023 F: block/partitions/efi.*
6026 M: Yoshinori Sato <ysato@users.sourceforge.jp>
6027 L: uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
6028 W: http://uclinux-h8.sourceforge.jp
6029 T: git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
6032 F: drivers/clocksource/h8300_*.c
6033 F: drivers/clk/h8300/
6034 F: drivers/irqchip/irq-renesas-h8*.c
6037 M: Antti Palosaari <crope@iki.fi>
6038 L: linux-media@vger.kernel.org
6039 W: https://linuxtv.org
6040 W: http://palosaari.fi/linux/
6041 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6042 T: git git://linuxtv.org/anttip/media_tree.git
6044 F: drivers/media/usb/hackrf/
6046 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
6047 M: Frank Seidel <frank@f-seidel.de>
6048 L: platform-driver-x86@vger.kernel.org
6049 W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
6051 F: drivers/platform/x86/hdaps.c
6054 M: Jean Delvare <jdelvare@suse.com>
6055 M: Guenter Roeck <linux@roeck-us.net>
6056 L: linux-hwmon@vger.kernel.org
6057 W: http://hwmon.wiki.kernel.org/
6058 T: quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/
6059 T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
6061 F: Documentation/hwmon/
6063 F: include/linux/hwmon*.h
6065 HARDWARE RANDOM NUMBER GENERATOR CORE
6066 M: Matt Mackall <mpm@selenic.com>
6067 M: Herbert Xu <herbert@gondor.apana.org.au>
6068 L: linux-crypto@vger.kernel.org
6070 F: Documentation/devicetree/bindings/rng/
6071 F: Documentation/hw_random.txt
6072 F: drivers/char/hw_random/
6073 F: include/linux/hw_random.h
6075 HARDWARE SPINLOCK CORE
6076 M: Ohad Ben-Cohen <ohad@wizery.com>
6077 M: Bjorn Andersson <bjorn.andersson@linaro.org>
6078 L: linux-remoteproc@vger.kernel.org
6080 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/hwspinlock.git
6081 F: Documentation/devicetree/bindings/hwlock/
6082 F: Documentation/hwspinlock.txt
6083 F: drivers/hwspinlock/
6084 F: include/linux/hwspinlock.h
6086 HARMONY SOUND DRIVER
6087 L: linux-parisc@vger.kernel.org
6089 F: sound/parisc/harmony.*
6091 HDPVR USB VIDEO ENCODER DRIVER
6092 M: Hans Verkuil <hverkuil@xs4all.nl>
6093 L: linux-media@vger.kernel.org
6094 T: git git://linuxtv.org/media_tree.git
6095 W: https://linuxtv.org
6097 F: drivers/media/usb/hdpvr/
6099 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
6100 M: Jimmy Vance <jimmy.vance@hpe.com>
6102 F: Documentation/watchdog/hpwdt.txt
6103 F: drivers/watchdog/hpwdt.c
6105 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
6106 M: Don Brace <don.brace@microsemi.com>
6107 L: esc.storagedev@microsemi.com
6108 L: linux-scsi@vger.kernel.org
6110 F: Documentation/scsi/hpsa.txt
6111 F: drivers/scsi/hpsa*.[ch]
6112 F: include/linux/cciss*.h
6113 F: include/uapi/linux/cciss*.h
6116 M: Mike Marciniszyn <mike.marciniszyn@intel.com>
6117 M: Dennis Dalessandro <dennis.dalessandro@intel.com>
6118 L: linux-rdma@vger.kernel.org
6120 F: drivers/infiniband/hw/hfi1
6123 L: linux-fsdevel@vger.kernel.org
6125 F: Documentation/filesystems/hfs.txt
6129 L: linux-fsdevel@vger.kernel.org
6131 F: Documentation/filesystems/hfsplus.txt
6134 HGA FRAMEBUFFER DRIVER
6135 M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
6136 L: linux-nvidia@lists.surfsouth.com
6137 W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
6139 F: drivers/video/fbdev/hgafb.c
6141 HIBERNATION (aka Software Suspend, aka swsusp)
6142 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
6143 M: Pavel Machek <pavel@ucw.cz>
6144 L: linux-pm@vger.kernel.org
6145 B: https://bugzilla.kernel.org
6148 F: drivers/base/power/
6150 F: include/linux/suspend.h
6151 F: include/linux/freezer.h
6152 F: include/linux/pm.h
6153 F: arch/*/include/asm/suspend*.h
6156 M: Jiri Kosina <jikos@kernel.org>
6157 R: Benjamin Tissoires <benjamin.tissoires@redhat.com>
6158 L: linux-input@vger.kernel.org
6159 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
6162 F: include/linux/hid*
6163 F: include/uapi/linux/hid*
6165 HID SENSOR HUB DRIVERS
6166 M: Jiri Kosina <jikos@kernel.org>
6167 M: Jonathan Cameron <jic23@kernel.org>
6168 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
6169 L: linux-input@vger.kernel.org
6170 L: linux-iio@vger.kernel.org
6172 F: Documentation/hid/hid-sensor*
6173 F: drivers/hid/hid-sensor-*
6174 F: drivers/iio/*/hid-*
6175 F: include/linux/hid-sensor-*
6177 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
6178 M: Thomas Gleixner <tglx@linutronix.de>
6179 L: linux-kernel@vger.kernel.org
6180 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
6182 F: Documentation/timers/
6183 F: kernel/time/hrtimer.c
6184 F: kernel/time/clockevents.c
6185 F: kernel/time/timer_*.c
6186 F: include/linux/clockchips.h
6187 F: include/linux/hrtimer.h
6189 HIGH-SPEED SCC DRIVER FOR AX.25
6190 L: linux-hams@vger.kernel.org
6192 F: drivers/net/hamradio/dmascc.c
6193 F: drivers/net/hamradio/scc.c
6195 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
6196 M: HighPoint Linux Team <linux@highpoint-tech.com>
6197 W: http://www.highpoint-tech.com
6199 F: Documentation/scsi/hptiop.txt
6200 F: drivers/scsi/hptiop.c
6203 M: Jes Sorensen <jes@trained-monkey.org>
6204 L: linux-hippi@sunsite.dk
6206 F: include/linux/hippidevice.h
6207 F: include/uapi/linux/if_hippi.h
6209 F: drivers/net/hippi/
6211 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
6212 M: Yisen Zhuang <yisen.zhuang@huawei.com>
6213 M: Salil Mehta <salil.mehta@huawei.com>
6214 L: netdev@vger.kernel.org
6215 W: http://www.hisilicon.com
6217 F: drivers/net/ethernet/hisilicon/hns3/
6219 HISILICON NETWORK SUBSYSTEM DRIVER
6220 M: Yisen Zhuang <yisen.zhuang@huawei.com>
6221 M: Salil Mehta <salil.mehta@huawei.com>
6222 L: netdev@vger.kernel.org
6223 W: http://www.hisilicon.com
6225 F: drivers/net/ethernet/hisilicon/
6226 F: Documentation/devicetree/bindings/net/hisilicon*.txt
6228 HISILICON ROCE DRIVER
6229 M: Lijun Ou <oulijun@huawei.com>
6230 M: Wei Hu(Xavier) <xavier.huwei@huawei.com>
6231 L: linux-rdma@vger.kernel.org
6233 F: drivers/infiniband/hw/hns/
6234 F: Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
6236 HISILICON SAS Controller
6237 M: John Garry <john.garry@huawei.com>
6238 W: http://www.hisilicon.com
6240 F: drivers/scsi/hisi_sas/
6241 F: Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
6243 HMM - Heterogeneous Memory Management
6244 M: Jérôme Glisse <jglisse@redhat.com>
6245 L: linux-mm@kvack.org
6248 F: include/linux/hmm*
6251 M: Jouni Malinen <j@w1.fi>
6252 L: linux-wireless@vger.kernel.org
6253 W: http://w1.fi/hostap-driver.html
6255 F: drivers/net/wireless/intersil/hostap/
6257 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
6258 L: platform-driver-x86@vger.kernel.org
6260 F: drivers/platform/x86/tc1100-wmi.c
6262 HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
6263 M: Jaroslav Kysela <perex@perex.cz>
6265 F: drivers/net/ethernet/hp/hp100.*
6267 HPET: High Precision Event Timers driver
6268 M: Clemens Ladisch <clemens@ladisch.de>
6270 F: Documentation/timers/hpet.txt
6271 F: drivers/char/hpet.c
6272 F: include/linux/hpet.h
6273 F: include/uapi/linux/hpet.h
6277 F: arch/x86/kernel/hpet.c
6278 F: arch/x86/include/asm/hpet.h
6281 M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
6282 W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
6287 M: Sebastian Reichel <sre@kernel.org>
6288 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
6290 F: Documentation/ABI/testing/sysfs-bus-hsi
6291 F: Documentation/driver-api/hsi.rst
6293 F: include/linux/hsi/
6294 F: include/uapi/linux/hsi/
6297 L: linux-usb@vger.kernel.org
6299 F: drivers/net/usb/hso.c
6301 HSR NETWORK PROTOCOL
6302 M: Arvid Brodin <arvid.brodin@alten.se>
6303 L: netdev@vger.kernel.org
6307 HT16K33 LED CONTROLLER DRIVER
6308 M: Robin van der Gracht <robin@protonic.nl>
6310 F: drivers/auxdisplay/ht16k33.c
6311 F: Documentation/devicetree/bindings/display/ht16k33.txt
6313 HTCPEN TOUCHSCREEN DRIVER
6314 M: Pau Oliva Fora <pof@eslack.org>
6315 L: linux-input@vger.kernel.org
6317 F: drivers/input/touchscreen/htcpen.c
6319 HUAWEI ETHERNET DRIVER
6320 M: Aviad Krawczyk <aviad.krawczyk@huawei.com>
6321 L: netdev@vger.kernel.org
6323 F: Documentation/networking/hinic.txt
6324 F: drivers/net/ethernet/huawei/hinic/
6327 M: Nadia Yvette Chambers <nyc@holomorphy.com>
6332 M: Jean-Christophe Trotin <jean-christophe.trotin@st.com>
6333 L: linux-media@vger.kernel.org
6334 T: git git://linuxtv.org/media_tree.git
6335 W: https://linuxtv.org
6337 F: drivers/media/platform/sti/hva
6339 HWPOISON MEMORY FAILURE HANDLING
6340 M: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
6341 L: linux-mm@kvack.org
6343 F: mm/memory-failure.c
6344 F: mm/hwpoison-inject.c
6346 Hyper-V CORE AND DRIVERS
6347 M: "K. Y. Srinivasan" <kys@microsoft.com>
6348 M: Haiyang Zhang <haiyangz@microsoft.com>
6349 M: Stephen Hemminger <sthemmin@microsoft.com>
6350 L: devel@linuxdriverproject.org
6352 F: Documentation/networking/netvsc.txt
6353 F: arch/x86/include/asm/mshyperv.h
6354 F: arch/x86/include/asm/trace/hyperv.h
6355 F: arch/x86/include/uapi/asm/hyperv.h
6356 F: arch/x86/kernel/cpu/mshyperv.c
6358 F: drivers/hid/hid-hyperv.c
6360 F: drivers/input/serio/hyperv-keyboard.c
6361 F: drivers/pci/host/pci-hyperv.c
6362 F: drivers/net/hyperv/
6363 F: drivers/scsi/storvsc_drv.c
6364 F: drivers/uio/uio_hv_generic.c
6365 F: drivers/video/fbdev/hyperv_fb.c
6366 F: net/vmw_vsock/hyperv_transport.c
6367 F: include/linux/hyperv.h
6368 F: include/uapi/linux/hyperv.h
6370 F: Documentation/ABI/stable/sysfs-bus-vmbus
6372 HYPERVISOR VIRTUAL CONSOLE DRIVER
6373 L: linuxppc-dev@lists.ozlabs.org
6378 M: Mika Westerberg <mika.westerberg@linux.intel.com>
6379 L: linux-i2c@vger.kernel.org
6380 L: linux-acpi@vger.kernel.org
6382 F: drivers/i2c/i2c-core-acpi.c
6385 M: Peter Rosin <peda@axentia.se>
6386 L: linux-i2c@vger.kernel.org
6388 F: Documentation/i2c/i2c-topology
6389 F: Documentation/i2c/muxes/
6390 F: Documentation/devicetree/bindings/i2c/i2c-mux*
6391 F: Documentation/devicetree/bindings/i2c/i2c-arb*
6392 F: Documentation/devicetree/bindings/i2c/i2c-gate*
6393 F: drivers/i2c/i2c-mux.c
6394 F: drivers/i2c/muxes/
6395 F: include/linux/i2c-mux.h
6397 I2C OVER PARALLEL PORT
6398 M: Jean Delvare <jdelvare@suse.com>
6399 L: linux-i2c@vger.kernel.org
6401 F: Documentation/i2c/busses/i2c-parport
6402 F: Documentation/i2c/busses/i2c-parport-light
6403 F: drivers/i2c/busses/i2c-parport.c
6404 F: drivers/i2c/busses/i2c-parport-light.c
6407 M: Wolfram Sang <wsa@the-dreams.de>
6408 L: linux-i2c@vger.kernel.org
6409 W: https://i2c.wiki.kernel.org/
6410 Q: https://patchwork.ozlabs.org/project/linux-i2c/list/
6411 T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
6413 F: Documentation/devicetree/bindings/i2c/
6414 F: Documentation/i2c/
6417 F: include/linux/i2c.h
6418 F: include/linux/i2c-*.h
6419 F: include/uapi/linux/i2c.h
6420 F: include/uapi/linux/i2c-*.h
6423 M: Jean Delvare <jdelvare@suse.com>
6424 L: linux-i2c@vger.kernel.org
6426 F: Documentation/i2c/busses/i2c-taos-evm
6427 F: drivers/i2c/busses/i2c-taos-evm.c
6430 M: Till Harbaum <till@harbaum.org>
6431 L: linux-i2c@vger.kernel.org
6432 W: http://www.harbaum.org/till/i2c_tiny_usb
6434 F: drivers/i2c/busses/i2c-tiny-usb.c
6436 I2C/SMBUS CONTROLLER DRIVERS FOR PC
6437 M: Jean Delvare <jdelvare@suse.com>
6438 L: linux-i2c@vger.kernel.org
6440 F: Documentation/i2c/busses/i2c-ali1535
6441 F: Documentation/i2c/busses/i2c-ali1563
6442 F: Documentation/i2c/busses/i2c-ali15x3
6443 F: Documentation/i2c/busses/i2c-amd756
6444 F: Documentation/i2c/busses/i2c-amd8111
6445 F: Documentation/i2c/busses/i2c-i801
6446 F: Documentation/i2c/busses/i2c-nforce2
6447 F: Documentation/i2c/busses/i2c-piix4
6448 F: Documentation/i2c/busses/i2c-sis5595
6449 F: Documentation/i2c/busses/i2c-sis630
6450 F: Documentation/i2c/busses/i2c-sis96x
6451 F: Documentation/i2c/busses/i2c-via
6452 F: Documentation/i2c/busses/i2c-viapro
6453 F: drivers/i2c/busses/i2c-ali1535.c
6454 F: drivers/i2c/busses/i2c-ali1563.c
6455 F: drivers/i2c/busses/i2c-ali15x3.c
6456 F: drivers/i2c/busses/i2c-amd756.c
6457 F: drivers/i2c/busses/i2c-amd756-s4882.c
6458 F: drivers/i2c/busses/i2c-amd8111.c
6459 F: drivers/i2c/busses/i2c-i801.c
6460 F: drivers/i2c/busses/i2c-isch.c
6461 F: drivers/i2c/busses/i2c-nforce2.c
6462 F: drivers/i2c/busses/i2c-nforce2-s4985.c
6463 F: drivers/i2c/busses/i2c-piix4.c
6464 F: drivers/i2c/busses/i2c-sis5595.c
6465 F: drivers/i2c/busses/i2c-sis630.c
6466 F: drivers/i2c/busses/i2c-sis96x.c
6467 F: drivers/i2c/busses/i2c-via.c
6468 F: drivers/i2c/busses/i2c-viapro.c
6470 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
6471 M: Hans de Goede <hdegoede@redhat.com>
6472 L: linux-i2c@vger.kernel.org
6474 F: drivers/i2c/busses/i2c-cht-wc.c
6476 I2C/SMBUS ISMT DRIVER
6477 M: Seth Heasley <seth.heasley@intel.com>
6478 M: Neil Horman <nhorman@tuxdriver.com>
6479 L: linux-i2c@vger.kernel.org
6480 F: drivers/i2c/busses/i2c-ismt.c
6481 F: Documentation/i2c/busses/i2c-ismt
6483 I2C/SMBUS STUB DRIVER
6484 M: Jean Delvare <jdelvare@suse.com>
6485 L: linux-i2c@vger.kernel.org
6487 F: drivers/i2c/i2c-stub.c
6490 M: "H. Peter Anvin" <hpa@zytor.com>
6494 i386 SETUP CODE / CPU ERRATA WORKAROUNDS
6495 M: "H. Peter Anvin" <hpa@zytor.com>
6496 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
6499 IA64 (Itanium) PLATFORM
6500 M: Tony Luck <tony.luck@intel.com>
6501 M: Fenghua Yu <fenghua.yu@intel.com>
6502 L: linux-ia64@vger.kernel.org
6503 T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
6507 IBM Power 842 compression accelerator
6508 M: Haren Myneni <haren@us.ibm.com>
6510 F: drivers/crypto/nx/Makefile
6511 F: drivers/crypto/nx/Kconfig
6512 F: drivers/crypto/nx/nx-842*
6513 F: include/linux/sw842.h
6517 IBM Power in-Nest Crypto Acceleration
6518 M: Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
6519 M: Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
6520 L: linux-crypto@vger.kernel.org
6522 F: drivers/crypto/nx/Makefile
6523 F: drivers/crypto/nx/Kconfig
6524 F: drivers/crypto/nx/nx-aes*
6525 F: drivers/crypto/nx/nx-sha*
6526 F: drivers/crypto/nx/nx.*
6527 F: drivers/crypto/nx/nx_csbcpb.h
6528 F: drivers/crypto/nx/nx_debugfs.h
6530 IBM Power Linux RAID adapter
6531 M: Brian King <brking@us.ibm.com>
6533 F: drivers/scsi/ipr.*
6535 IBM Power SRIOV Virtual NIC Device Driver
6536 M: Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
6537 M: John Allen <jallen@linux.vnet.ibm.com>
6538 L: netdev@vger.kernel.org
6540 F: drivers/net/ethernet/ibm/ibmvnic.*
6542 IBM Power Virtual Accelerator Switchboard
6543 M: Sukadev Bhattiprolu
6544 L: linuxppc-dev@lists.ozlabs.org
6546 F: arch/powerpc/platforms/powernv/vas*
6547 F: arch/powerpc/platforms/powernv/copy-paste.h
6548 F: arch/powerpc/include/asm/vas.h
6549 F: arch/powerpc/include/uapi/asm/vas.h
6551 IBM Power Virtual Ethernet Device Driver
6552 M: Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
6553 L: netdev@vger.kernel.org
6555 F: drivers/net/ethernet/ibm/ibmveth.*
6557 IBM Power Virtual FC Device Drivers
6558 M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
6559 L: linux-scsi@vger.kernel.org
6561 F: drivers/scsi/ibmvscsi/ibmvfc*
6563 IBM Power Virtual SCSI Device Drivers
6564 M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
6565 L: linux-scsi@vger.kernel.org
6567 F: drivers/scsi/ibmvscsi/ibmvscsi*
6568 F: include/scsi/viosrp.h
6570 IBM Power Virtual SCSI Device Target Driver
6571 M: Bryant G. Ly <bryantly@linux.vnet.ibm.com>
6572 M: Michael Cyr <mikecyr@linux.vnet.ibm.com>
6573 L: linux-scsi@vger.kernel.org
6574 L: target-devel@vger.kernel.org
6576 F: drivers/scsi/ibmvscsi_tgt/
6578 IBM Power VMX Cryptographic instructions
6579 M: Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
6580 M: Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
6581 L: linux-crypto@vger.kernel.org
6583 F: drivers/crypto/vmx/Makefile
6584 F: drivers/crypto/vmx/Kconfig
6585 F: drivers/crypto/vmx/vmx.c
6586 F: drivers/crypto/vmx/aes*
6587 F: drivers/crypto/vmx/ghash*
6588 F: drivers/crypto/vmx/ppc-xlate.pl
6590 IBM ServeRAID RAID DRIVER
6592 F: drivers/scsi/ips.*
6594 ICH LPC AND GPIO DRIVER
6595 M: Peter Tyser <ptyser@xes-inc.com>
6597 F: drivers/mfd/lpc_ich.c
6598 F: drivers/gpio/gpio-ich.c
6601 M: "David S. Miller" <davem@davemloft.net>
6602 L: linux-ide@vger.kernel.org
6603 Q: http://patchwork.ozlabs.org/project/linux-ide/list/
6604 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
6606 F: Documentation/ide/
6608 F: include/linux/ide.h
6611 M: Borislav Petkov <bp@alien8.de>
6612 L: linux-ide@vger.kernel.org
6614 F: Documentation/cdrom/ide-cd
6615 F: drivers/ide/ide-cd*
6617 IDEAPAD LAPTOP EXTRAS DRIVER
6618 M: Ike Panhc <ike.pan@canonical.com>
6619 L: platform-driver-x86@vger.kernel.org
6620 W: http://launchpad.net/ideapad-laptop
6622 F: drivers/platform/x86/ideapad-laptop.c
6624 IDEAPAD LAPTOP SLIDEBAR DRIVER
6625 M: Andrey Moiseev <o2g.org.ru@gmail.com>
6626 L: linux-input@vger.kernel.org
6627 W: https://github.com/o2genum/ideapad-slidebar
6629 F: drivers/input/misc/ideapad_slidebar.c
6631 IDT VersaClock 5 CLOCK DRIVER
6632 M: Marek Vasut <marek.vasut@gmail.com>
6634 F: drivers/clk/clk-versaclock5.c
6636 IEEE 802.15.4 SUBSYSTEM
6637 M: Alexander Aring <alex.aring@gmail.com>
6638 M: Stefan Schmidt <stefan@osg.samsung.com>
6639 L: linux-wpan@vger.kernel.org
6640 W: http://wpan.cakelab.org/
6641 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
6642 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
6646 F: drivers/net/ieee802154/
6647 F: include/linux/nl802154.h
6648 F: include/linux/ieee802154.h
6649 F: include/net/nl802154.h
6650 F: include/net/mac802154.h
6651 F: include/net/af_ieee802154.h
6652 F: include/net/cfg802154.h
6653 F: include/net/ieee802154_netdev.h
6654 F: Documentation/networking/ieee802154.txt
6657 M: Yotam Gigi <yotamg@mellanox.com>
6658 M: Jamal Hadi Salim <jhs@mojatatu.com>
6660 F: include/net/ife.h
6661 F: include/uapi/linux/ife.h
6663 IGORPLUG-USB IR RECEIVER
6664 M: Sean Young <sean@mess.org>
6665 L: linux-media@vger.kernel.org
6667 F: drivers/media/rc/igorplugusb.c
6669 IGUANAWORKS USB IR TRANSCEIVER
6670 M: Sean Young <sean@mess.org>
6671 L: linux-media@vger.kernel.org
6673 F: drivers/media/rc/iguanair.c
6675 IIO DIGITAL POTENTIOMETER DAC
6676 M: Peter Rosin <peda@axentia.se>
6677 L: linux-iio@vger.kernel.org
6679 F: Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
6680 F: Documentation/devicetree/bindings/iio/dac/dpot-dac.txt
6681 F: drivers/iio/dac/dpot-dac.c
6683 IIO ENVELOPE DETECTOR
6684 M: Peter Rosin <peda@axentia.se>
6685 L: linux-iio@vger.kernel.org
6687 F: Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
6688 F: Documentation/devicetree/bindings/iio/adc/envelope-detector.txt
6689 F: drivers/iio/adc/envelope-detector.c
6692 M: Peter Rosin <peda@axentia.se>
6693 L: linux-iio@vger.kernel.org
6695 F: Documentation/devicetree/bindings/iio/multiplexer/iio-mux.txt
6696 F: drivers/iio/multiplexer/iio-mux.c
6698 IIO SUBSYSTEM AND DRIVERS
6699 M: Jonathan Cameron <jic23@kernel.org>
6700 R: Hartmut Knaack <knaack.h@gmx.de>
6701 R: Lars-Peter Clausen <lars@metafoo.de>
6702 R: Peter Meerwald-Stadler <pmeerw@pmeerw.net>
6703 L: linux-iio@vger.kernel.org
6704 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
6706 F: Documentation/devicetree/bindings/iio/
6708 F: drivers/staging/iio/
6709 F: include/linux/iio/
6712 IKANOS/ADI EAGLE ADSL USB DRIVER
6713 M: Matthieu Castet <castet.matthieu@free.fr>
6714 M: Stanislaw Gruszka <stf_xl@wp.pl>
6716 F: drivers/usb/atm/ueagle-atm.c
6718 IMGTEC ASCII LCD DRIVER
6719 M: Paul Burton <paul.burton@imgtec.com>
6721 F: Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
6722 F: drivers/auxdisplay/img-ascii-lcd.c
6724 IMGTEC IR DECODER DRIVER
6725 M: James Hogan <james.hogan@imgtec.com>
6727 F: drivers/media/rc/img-ir/
6729 IMS TWINTURBO FRAMEBUFFER DRIVER
6730 L: linux-fbdev@vger.kernel.org
6732 F: drivers/video/fbdev/imsttfb.c
6734 INA209 HARDWARE MONITOR DRIVER
6735 M: Guenter Roeck <linux@roeck-us.net>
6736 L: linux-hwmon@vger.kernel.org
6738 F: Documentation/hwmon/ina209
6739 F: Documentation/devicetree/bindings/i2c/ina209.txt
6740 F: drivers/hwmon/ina209.c
6742 INA2XX HARDWARE MONITOR DRIVER
6743 M: Guenter Roeck <linux@roeck-us.net>
6744 L: linux-hwmon@vger.kernel.org
6746 F: Documentation/hwmon/ina2xx
6747 F: drivers/hwmon/ina2xx.c
6748 F: include/linux/platform_data/ina2xx.h
6750 INDUSTRY PACK SUBSYSTEM (IPACK)
6751 M: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
6752 M: Jens Taprogge <jens.taprogge@taprogge.org>
6753 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
6754 L: industrypack-devel@lists.sourceforge.net
6755 W: http://industrypack.sourceforge.net
6759 INFINIBAND SUBSYSTEM
6760 M: Doug Ledford <dledford@redhat.com>
6761 M: Sean Hefty <sean.hefty@intel.com>
6762 M: Hal Rosenstock <hal.rosenstock@gmail.com>
6763 L: linux-rdma@vger.kernel.org
6764 W: http://www.openfabrics.org/
6765 Q: http://patchwork.kernel.org/project/linux-rdma/list/
6766 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git
6768 F: Documentation/devicetree/bindings/infiniband/
6769 F: Documentation/infiniband/
6770 F: drivers/infiniband/
6771 F: include/uapi/linux/if_infiniband.h
6772 F: include/uapi/rdma/
6775 INGENIC JZ4780 DMA Driver
6776 M: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
6778 F: drivers/dma/dma-jz4780.c
6780 INGENIC JZ4780 NAND DRIVER
6781 M: Harvey Hunt <harveyhuntnexus@gmail.com>
6782 L: linux-mtd@lists.infradead.org
6784 F: drivers/mtd/nand/jz4780_*
6787 M: Jan Kara <jack@suse.cz>
6788 R: Amir Goldstein <amir73il@gmail.com>
6789 L: linux-fsdevel@vger.kernel.org
6791 F: Documentation/filesystems/inotify.txt
6792 F: fs/notify/inotify/
6793 F: include/linux/inotify.h
6794 F: include/uapi/linux/inotify.h
6796 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
6797 M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
6798 L: linux-input@vger.kernel.org
6799 Q: http://patchwork.kernel.org/project/linux-input/list/
6800 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
6803 F: include/linux/input.h
6804 F: include/uapi/linux/input.h
6805 F: include/uapi/linux/input-event-codes.h
6806 F: include/linux/input/
6807 F: Documentation/devicetree/bindings/input/
6808 F: Documentation/input/
6810 INPUT MULTITOUCH (MT) PROTOCOL
6811 M: Henrik Rydberg <rydberg@bitmath.org>
6812 L: linux-input@vger.kernel.org
6814 F: Documentation/input/multi-touch-protocol.rst
6815 F: drivers/input/input-mt.c
6818 INSIDE SECURE CRYPTO DRIVER
6819 M: Antoine Tenart <antoine.tenart@free-electrons.com>
6820 F: drivers/crypto/inside-secure/
6822 L: linux-crypto@vger.kernel.org
6824 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
6825 M: Mimi Zohar <zohar@linux.vnet.ibm.com>
6826 M: Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
6827 L: linux-ima-devel@lists.sourceforge.net
6828 L: linux-ima-user@lists.sourceforge.net
6829 L: linux-security-module@vger.kernel.org
6830 T: git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
6832 F: security/integrity/ima/
6834 INTEL 810/815 FRAMEBUFFER DRIVER
6835 M: Antonino Daplas <adaplas@gmail.com>
6836 L: linux-fbdev@vger.kernel.org
6838 F: drivers/video/fbdev/i810/
6840 INTEL ASoC BDW/HSW DRIVERS
6841 M: Jie Yang <yang.jie@linux.intel.com>
6842 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6844 F: sound/soc/intel/common/sst-dsp*
6845 F: sound/soc/intel/common/sst-firmware.c
6846 F: sound/soc/intel/boards/broadwell.c
6847 F: sound/soc/intel/haswell/
6849 INTEL C600 SERIES SAS CONTROLLER DRIVER
6850 M: Intel SCU Linux support <intel-linux-scu@intel.com>
6851 M: Artur Paszkiewicz <artur.paszkiewicz@intel.com>
6852 L: linux-scsi@vger.kernel.org
6853 T: git git://git.code.sf.net/p/intel-sas/isci
6855 F: drivers/scsi/isci/
6857 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
6858 M: Jani Nikula <jani.nikula@linux.intel.com>
6859 M: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
6860 M: Rodrigo Vivi <rodrigo.vivi@intel.com>
6861 L: intel-gfx@lists.freedesktop.org
6862 W: https://01.org/linuxgraphics/
6863 B: https://01.org/linuxgraphics/documentation/how-report-bugs
6864 C: irc://chat.freenode.net/intel-gfx
6865 Q: http://patchwork.freedesktop.org/project/intel-gfx/
6866 T: git git://anongit.freedesktop.org/drm-intel
6868 F: drivers/gpu/drm/i915/
6869 F: include/drm/i915*
6870 F: include/uapi/drm/i915_drm.h
6871 F: Documentation/gpu/i915.rst
6873 INTEL ETHERNET DRIVERS
6874 M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
6875 L: intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
6876 W: http://www.intel.com/support/feedback.htm
6877 W: http://e1000.sourceforge.net/
6878 Q: http://patchwork.ozlabs.org/project/intel-wired-lan/list/
6879 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
6880 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
6882 F: Documentation/networking/e100.txt
6883 F: Documentation/networking/e1000.txt
6884 F: Documentation/networking/e1000e.txt
6885 F: Documentation/networking/igb.txt
6886 F: Documentation/networking/igbvf.txt
6887 F: Documentation/networking/ixgb.txt
6888 F: Documentation/networking/ixgbe.txt
6889 F: Documentation/networking/ixgbevf.txt
6890 F: Documentation/networking/i40e.txt
6891 F: Documentation/networking/i40evf.txt
6892 F: drivers/net/ethernet/intel/
6893 F: drivers/net/ethernet/intel/*/
6894 F: include/linux/avf/virtchnl.h
6896 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
6897 M: Maik Broemme <mbroemme@libmpq.org>
6898 L: linux-fbdev@vger.kernel.org
6900 F: Documentation/fb/intelfb.txt
6901 F: drivers/video/fbdev/intelfb/
6903 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
6904 M: Zhenyu Wang <zhenyuw@linux.intel.com>
6905 M: Zhi Wang <zhi.a.wang@intel.com>
6906 L: intel-gvt-dev@lists.freedesktop.org
6907 L: intel-gfx@lists.freedesktop.org
6908 W: https://01.org/igvt-g
6909 T: git https://github.com/01org/gvt-linux.git
6911 F: drivers/gpu/drm/i915/gvt/
6913 INTEL HID EVENT DRIVER
6914 M: Alex Hung <alex.hung@canonical.com>
6915 L: platform-driver-x86@vger.kernel.org
6917 F: drivers/platform/x86/intel-hid.c
6919 INTEL I/OAT DMA DRIVER
6920 M: Dave Jiang <dave.jiang@intel.com>
6921 R: Dan Williams <dan.j.williams@intel.com>
6922 L: dmaengine@vger.kernel.org
6923 Q: https://patchwork.kernel.org/project/linux-dmaengine/list/
6925 F: drivers/dma/ioat*
6928 M: Jacob Pan <jacob.jun.pan@linux.intel.com>
6929 M: Len Brown <lenb@kernel.org>
6930 L: linux-pm@vger.kernel.org
6931 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
6932 B: https://bugzilla.kernel.org
6934 F: drivers/idle/intel_idle.c
6936 INTEL INTEGRATED SENSOR HUB DRIVER
6937 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
6938 M: Jiri Kosina <jikos@kernel.org>
6939 L: linux-input@vger.kernel.org
6941 F: drivers/hid/intel-ish-hid/
6944 M: David Woodhouse <dwmw2@infradead.org>
6945 L: iommu@lists.linux-foundation.org
6946 T: git git://git.infradead.org/iommu-2.6.git
6948 F: drivers/iommu/intel-iommu.c
6949 F: include/linux/intel-iommu.h
6951 INTEL IOP-ADMA DMA DRIVER
6952 R: Dan Williams <dan.j.williams@intel.com>
6954 F: drivers/dma/iop-adma.c
6956 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
6957 M: Krzysztof Halasa <khalasa@piap.pl>
6959 F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
6960 F: arch/arm/mach-ixp4xx/include/mach/npe.h
6961 F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
6962 F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
6963 F: drivers/net/ethernet/xscale/ixp4xx_eth.c
6964 F: drivers/net/wan/ixp4xx_hss.c
6966 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
6967 M: Deepak Saxena <dsaxena@plexity.net>
6969 F: drivers/char/hw_random/ixp4xx-rng.c
6971 INTEL MANAGEMENT ENGINE (mei)
6972 M: Tomas Winkler <tomas.winkler@intel.com>
6973 L: linux-kernel@vger.kernel.org
6975 F: include/uapi/linux/mei.h
6976 F: include/linux/mei_cl_bus.h
6977 F: drivers/misc/mei/*
6978 F: drivers/watchdog/mei_wdt.c
6979 F: Documentation/misc-devices/mei/*
6982 INTEL MENLOW THERMAL DRIVER
6983 M: Sujith Thomas <sujith.thomas@intel.com>
6984 L: platform-driver-x86@vger.kernel.org
6985 W: https://01.org/linux-acpi
6987 F: drivers/platform/x86/intel_menlow.c
6989 INTEL MERRIFIELD GPIO DRIVER
6990 M: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
6991 L: linux-gpio@vger.kernel.org
6993 F: drivers/gpio/gpio-merrifield.c
6995 INTEL MIC DRIVERS (mic)
6996 M: Sudeep Dutt <sudeep.dutt@intel.com>
6997 M: Ashutosh Dixit <ashutosh.dixit@intel.com>
6999 W: https://github.com/sudeepdutt/mic
7000 W: http://software.intel.com/en-us/mic-developer
7001 F: include/linux/mic_bus.h
7002 F: include/linux/scif.h
7003 F: include/uapi/linux/mic_common.h
7004 F: include/uapi/linux/mic_ioctl.h
7005 F: include/uapi/linux/scif_ioctl.h
7006 F: drivers/misc/mic/
7007 F: drivers/dma/mic_x100_dma.c
7008 F: drivers/dma/mic_x100_dma.h
7009 F: Documentation/mic/
7011 INTEL PMC CORE DRIVER
7012 M: Rajneesh Bhardwaj <rajneesh.bhardwaj@intel.com>
7013 M: Vishwanath Somayaji <vishwanath.somayaji@intel.com>
7014 L: platform-driver-x86@vger.kernel.org
7016 F: arch/x86/include/asm/pmc_core.h
7017 F: drivers/platform/x86/intel_pmc_core*
7019 INTEL PMC/P-Unit IPC DRIVER
7020 M: Zha Qipeng<qipeng.zha@intel.com>
7021 L: platform-driver-x86@vger.kernel.org
7023 F: drivers/platform/x86/intel_pmc_ipc.c
7024 F: drivers/platform/x86/intel_punit_ipc.c
7025 F: arch/x86/include/asm/intel_pmc_ipc.h
7026 F: arch/x86/include/asm/intel_punit_ipc.h
7028 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
7029 M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
7030 L: linux-wireless@vger.kernel.org
7032 F: Documentation/networking/README.ipw2100
7033 F: Documentation/networking/README.ipw2200
7034 F: drivers/net/wireless/intel/ipw2x00/
7037 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
7038 M: Len Brown <lenb@kernel.org>
7039 L: linux-pm@vger.kernel.org
7041 F: drivers/cpufreq/intel_pstate.c
7043 INTEL RDMA RNIC DRIVER
7044 M: Faisal Latif <faisal.latif@intel.com>
7045 M: Shiraz Saleem <shiraz.saleem@intel.com>
7046 L: linux-rdma@vger.kernel.org
7048 F: drivers/infiniband/hw/i40iw/
7050 INTEL TELEMETRY DRIVER
7051 M: Souvik Kumar Chakravarty <souvik.k.chakravarty@intel.com>
7052 L: platform-driver-x86@vger.kernel.org
7054 F: arch/x86/include/asm/intel_telemetry.h
7055 F: drivers/platform/x86/intel_telemetry*
7057 INTEL VIRTUAL BUTTON DRIVER
7058 M: AceLan Kao <acelan.kao@canonical.com>
7059 L: platform-driver-x86@vger.kernel.org
7061 F: drivers/platform/x86/intel-vbtn.c
7063 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
7064 M: Stanislaw Gruszka <sgruszka@redhat.com>
7065 L: linux-wireless@vger.kernel.org
7067 F: drivers/net/wireless/intel/iwlegacy/
7069 INTEL WIRELESS WIFI LINK (iwlwifi)
7070 M: Johannes Berg <johannes.berg@intel.com>
7071 M: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
7072 M: Luca Coelho <luciano.coelho@intel.com>
7073 M: Intel Linux Wireless <linuxwifi@intel.com>
7074 L: linux-wireless@vger.kernel.org
7075 W: http://intellinuxwireless.org
7076 T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
7078 F: drivers/net/wireless/intel/iwlwifi/
7080 INTEL WIRELESS WIMAX CONNECTION 2400
7081 M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
7082 M: linux-wimax@intel.com
7083 L: wimax@linuxwimax.org (subscribers-only)
7085 W: http://linuxwimax.org
7086 F: Documentation/wimax/README.i2400m
7087 F: drivers/net/wimax/i2400m/
7088 F: include/uapi/linux/wimax/i2400m.h
7091 M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
7093 F: Documentation/trace/intel_th.txt
7094 F: drivers/hwtracing/intel_th/
7096 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
7097 M: Ning Sun <ning.sun@intel.com>
7098 L: tboot-devel@lists.sourceforge.net
7099 W: http://tboot.sourceforge.net
7100 T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
7102 F: Documentation/intel_txt.txt
7103 F: include/linux/tboot.h
7104 F: arch/x86/kernel/tboot.c
7106 INTEL-MID GPIO DRIVER
7107 M: David Cohen <david.a.cohen@linux.intel.com>
7108 L: linux-gpio@vger.kernel.org
7110 F: drivers/gpio/gpio-intel-mid.c
7112 INVENSENSE MPU-3050 GYROSCOPE DRIVER
7113 M: Linus Walleij <linus.walleij@linaro.org>
7114 L: linux-iio@vger.kernel.org
7116 F: drivers/iio/gyro/mpu3050*
7117 F: Documentation/devicetree/bindings/iio/gyroscope/inv,mpu3050.txt
7119 IOC3 ETHERNET DRIVER
7120 M: Ralf Baechle <ralf@linux-mips.org>
7121 L: linux-mips@linux-mips.org
7123 F: drivers/net/ethernet/sgi/ioc3-eth.c
7126 M: Pat Gefre <pfg@sgi.com>
7127 L: linux-serial@vger.kernel.org
7129 F: drivers/tty/serial/ioc3_serial.c
7132 M: Joerg Roedel <joro@8bytes.org>
7133 L: iommu@lists.linux-foundation.org
7134 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
7136 F: Documentation/devicetree/bindings/iommu/
7138 F: include/linux/iommu.h
7139 F: include/linux/iova.h
7142 M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
7144 F: net/ipv4/netfilter/ipt_MASQUERADE.c
7147 M: Corey Minyard <minyard@acm.org>
7148 L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
7149 W: http://openipmi.sourceforge.net/
7151 F: Documentation/IPMI.txt
7152 F: drivers/char/ipmi/
7153 F: include/linux/ipmi*
7154 F: include/uapi/linux/ipmi*
7156 IPS SCSI RAID DRIVER
7157 M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
7158 L: linux-scsi@vger.kernel.org
7159 W: http://www.adaptec.com/
7161 F: drivers/scsi/ips*
7164 M: Wensong Zhang <wensong@linux-vs.org>
7165 M: Simon Horman <horms@verge.net.au>
7166 M: Julian Anastasov <ja@ssi.bg>
7167 L: netdev@vger.kernel.org
7168 L: lvs-devel@vger.kernel.org
7170 T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
7171 T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
7172 F: Documentation/networking/ipvs-sysctl.txt
7173 F: include/net/ip_vs.h
7174 F: include/uapi/linux/ip_vs.h
7175 F: net/netfilter/ipvs/
7178 M: Jiri Kosina <jikos@kernel.org>
7179 M: David Sterba <dsterba@suse.com>
7181 F: drivers/tty/ipwireless/
7184 L: netdev@vger.kernel.org
7186 F: include/net/ipx.h
7187 F: include/uapi/linux/ipx.h
7191 M: Samuel Ortiz <samuel@sortiz.org>
7192 L: irda-users@lists.sourceforge.net (subscribers-only)
7193 L: netdev@vger.kernel.org
7194 W: http://irda.sourceforge.net/
7196 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
7197 F: Documentation/networking/irda.txt
7198 F: drivers/staging/irda/
7200 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
7201 M: Marc Zyngier <marc.zyngier@arm.com>
7203 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
7204 F: Documentation/IRQ-domain.txt
7205 F: include/linux/irqdomain.h
7206 F: kernel/irq/irqdomain.c
7210 M: Thomas Gleixner <tglx@linutronix.de>
7211 L: linux-kernel@vger.kernel.org
7213 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
7217 M: Thomas Gleixner <tglx@linutronix.de>
7218 M: Jason Cooper <jason@lakedaemon.net>
7219 M: Marc Zyngier <marc.zyngier@arm.com>
7220 L: linux-kernel@vger.kernel.org
7222 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
7223 F: Documentation/devicetree/bindings/interrupt-controller/
7227 M: William Breathitt Gray <vilhelm.gray@gmail.com>
7229 F: Documentation/isa.txt
7230 F: drivers/base/isa.c
7231 F: include/linux/isa.h
7234 M: Hans Verkuil <hverkuil@xs4all.nl>
7235 L: linux-media@vger.kernel.org
7236 T: git git://linuxtv.org/media_tree.git
7237 W: https://linuxtv.org
7239 F: drivers/media/radio/radio-isa*
7242 M: Jaroslav Kysela <perex@perex.cz>
7244 F: Documentation/isapnp.txt
7245 F: drivers/pnp/isapnp/
7246 F: include/linux/isapnp.h
7249 M: Lee Duncan <lduncan@suse.com>
7250 M: Chris Leech <cleech@redhat.com>
7251 L: open-iscsi@googlegroups.com
7252 W: www.open-iscsi.com
7254 F: drivers/scsi/*iscsi*
7255 F: include/scsi/*iscsi*
7257 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
7258 M: Peter Jones <pjones@redhat.com>
7259 M: Konrad Rzeszutek Wilk <konrad@kernel.org>
7261 F: drivers/firmware/iscsi_ibft*
7263 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
7264 M: Or Gerlitz <ogerlitz@mellanox.com>
7265 M: Sagi Grimberg <sagi@grimberg.me>
7266 M: Roi Dayan <roid@mellanox.com>
7267 L: linux-rdma@vger.kernel.org
7269 W: http://www.openfabrics.org
7270 W: www.open-iscsi.org
7271 Q: http://patchwork.kernel.org/project/linux-rdma/list/
7272 F: drivers/infiniband/ulp/iser/
7274 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
7275 M: Sagi Grimberg <sagi@grimberg.me>
7276 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
7277 L: linux-rdma@vger.kernel.org
7278 L: target-devel@vger.kernel.org
7280 W: http://www.linux-iscsi.org
7281 F: drivers/infiniband/ulp/isert
7284 M: Karsten Keil <isdn@linux-pingi.de>
7285 L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
7286 L: netdev@vger.kernel.org
7287 W: http://www.isdn4linux.de
7288 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
7290 F: Documentation/isdn/
7292 F: include/linux/isdn.h
7293 F: include/linux/isdn/
7294 F: include/uapi/linux/isdn.h
7295 F: include/uapi/linux/isdn/
7297 ISDN SUBSYSTEM (Eicon active card driver)
7298 M: Armin Schindler <mac@melware.de>
7299 L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
7300 W: http://www.melware.de
7302 F: drivers/isdn/hardware/eicon/
7304 IT87 HARDWARE MONITORING DRIVER
7305 M: Jean Delvare <jdelvare@suse.com>
7306 L: linux-hwmon@vger.kernel.org
7308 F: Documentation/hwmon/it87
7309 F: drivers/hwmon/it87.c
7312 M: Antti Palosaari <crope@iki.fi>
7313 L: linux-media@vger.kernel.org
7314 W: https://linuxtv.org
7315 W: http://palosaari.fi/linux/
7316 Q: http://patchwork.linuxtv.org/project/linux-media/list/
7317 T: git git://linuxtv.org/anttip/media_tree.git
7319 F: drivers/media/tuners/it913x*
7321 IVTV VIDEO4LINUX DRIVER
7322 M: Andy Walls <awalls@md.metrocast.net>
7323 L: ivtv-devel@ivtvdriver.org (subscribers-only)
7324 L: linux-media@vger.kernel.org
7325 T: git git://linuxtv.org/media_tree.git
7326 W: http://www.ivtvdriver.org
7328 F: Documentation/media/v4l-drivers/ivtv*
7329 F: drivers/media/pci/ivtv/
7330 F: include/uapi/linux/ivtv*
7332 IX2505V MEDIA DRIVER
7333 M: Malcolm Priestley <tvboxspy@gmail.com>
7334 L: linux-media@vger.kernel.org
7335 W: https://linuxtv.org
7336 Q: http://patchwork.linuxtv.org/project/linux-media/list/
7338 F: drivers/media/dvb-frontends/ix2505v*
7340 JC42.4 TEMPERATURE SENSOR DRIVER
7341 M: Guenter Roeck <linux@roeck-us.net>
7342 L: linux-hwmon@vger.kernel.org
7344 F: drivers/hwmon/jc42.c
7345 F: Documentation/hwmon/jc42
7348 M: Dave Kleikamp <shaggy@kernel.org>
7349 L: jfs-discussion@lists.sourceforge.net
7350 W: http://jfs.sourceforge.net/
7351 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
7353 F: Documentation/filesystems/jfs.txt
7357 M: Guo-Fu Tseng <cooldavid@cooldavid.org>
7358 L: netdev@vger.kernel.org
7360 F: drivers/net/ethernet/jme.*
7362 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
7363 M: David Woodhouse <dwmw2@infradead.org>
7364 L: linux-mtd@lists.infradead.org
7365 W: http://www.linux-mtd.infradead.org/doc/jffs2.html
7368 F: include/uapi/linux/jffs2.h
7370 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
7371 M: "Theodore Ts'o" <tytso@mit.edu>
7372 M: Jan Kara <jack@suse.com>
7373 L: linux-ext4@vger.kernel.org
7376 F: include/linux/jbd2.h
7378 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
7379 M: Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
7380 L: linux-media@vger.kernel.org
7382 F: drivers/media/platform/rcar_jpu.c
7384 JSM Neo PCI based serial card
7385 M: Guilherme G. Piccoli <gpiccoli@linux.vnet.ibm.com>
7386 L: linux-serial@vger.kernel.org
7388 F: drivers/tty/serial/jsm/
7390 K10TEMP HARDWARE MONITORING DRIVER
7391 M: Clemens Ladisch <clemens@ladisch.de>
7392 L: linux-hwmon@vger.kernel.org
7394 F: Documentation/hwmon/k10temp
7395 F: drivers/hwmon/k10temp.c
7397 K8TEMP HARDWARE MONITORING DRIVER
7398 M: Rudolf Marek <r.marek@assembler.cz>
7399 L: linux-hwmon@vger.kernel.org
7401 F: Documentation/hwmon/k8temp
7402 F: drivers/hwmon/k8temp.c
7405 M: Andrey Ryabinin <aryabinin@virtuozzo.com>
7406 R: Alexander Potapenko <glider@google.com>
7407 R: Dmitry Vyukov <dvyukov@google.com>
7408 L: kasan-dev@googlegroups.com
7410 F: arch/*/include/asm/kasan.h
7411 F: arch/*/mm/kasan_init*
7412 F: Documentation/dev-tools/kasan.rst
7413 F: include/linux/kasan*.h
7416 F: scripts/Makefile.kasan
7419 M: "Yann E. MORIN" <yann.morin.1998@free.fr>
7420 L: linux-kbuild@vger.kernel.org
7421 T: git git://gitorious.org/linux-kconfig/linux-kconfig
7423 F: Documentation/kbuild/kconfig-language.txt
7427 M: Dave Young <dyoung@redhat.com>
7428 M: Baoquan He <bhe@redhat.com>
7429 R: Vivek Goyal <vgoyal@redhat.com>
7430 L: kexec@lists.infradead.org
7431 W: http://lse.sourceforge.net/kdump/
7433 F: Documentation/kdump/
7435 KEENE FM RADIO TRANSMITTER DRIVER
7436 M: Hans Verkuil <hverkuil@xs4all.nl>
7437 L: linux-media@vger.kernel.org
7438 T: git git://linuxtv.org/media_tree.git
7439 W: https://linuxtv.org
7441 F: drivers/media/radio/radio-keene*
7443 KERNEL AUTOMOUNTER v4 (AUTOFS4)
7444 M: Ian Kent <raven@themaw.net>
7445 L: autofs@vger.kernel.org
7449 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
7450 M: Masahiro Yamada <yamada.masahiro@socionext.com>
7451 M: Michal Marek <mmarek@suse.com>
7452 T: git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
7453 L: linux-kbuild@vger.kernel.org
7455 F: Documentation/kbuild/
7457 F: scripts/Makefile.*
7463 L: kernel-janitors@vger.kernel.org
7464 W: http://kernelnewbies.org/KernelJanitors
7467 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
7468 M: "J. Bruce Fields" <bfields@fieldses.org>
7469 M: Jeff Layton <jlayton@poochiereds.net>
7470 L: linux-nfs@vger.kernel.org
7471 W: http://nfs.sourceforge.net/
7472 T: git git://linux-nfs.org/~bfields/linux.git
7475 F: include/uapi/linux/nfsd/
7479 F: include/linux/lockd/
7480 F: include/linux/sunrpc/
7481 F: include/uapi/linux/sunrpc/
7483 KERNEL SELFTEST FRAMEWORK
7484 M: Shuah Khan <shuahkh@osg.samsung.com>
7485 M: Shuah Khan <shuah@kernel.org>
7486 L: linux-kselftest@vger.kernel.org
7487 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
7489 F: tools/testing/selftests/
7490 F: Documentation/dev-tools/kselftest*
7492 KERNEL USERMODE HELPER
7493 M: "Luis R. Rodriguez" <mcgrof@kernel.org>
7494 L: linux-kernel@vger.kernel.org
7497 F: include/linux/umh.h
7499 KERNEL VIRTUAL MACHINE (KVM)
7500 M: Paolo Bonzini <pbonzini@redhat.com>
7501 M: Radim Krčmář <rkrcmar@redhat.com>
7502 L: kvm@vger.kernel.org
7503 W: http://www.linux-kvm.org
7504 T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
7506 F: Documentation/virtual/kvm/
7507 F: include/trace/events/kvm.h
7508 F: include/uapi/asm-generic/kvm*
7509 F: include/uapi/linux/kvm*
7510 F: include/asm-generic/kvm*
7511 F: include/linux/kvm*
7512 F: include/kvm/iodev.h
7516 KERNEL VIRTUAL MACHINE FOR AMD-V (KVM/amd)
7517 M: Joerg Roedel <joro@8bytes.org>
7518 L: kvm@vger.kernel.org
7519 W: http://www.linux-kvm.org/
7521 F: arch/x86/include/asm/svm.h
7522 F: arch/x86/kvm/svm.c
7524 KERNEL VIRTUAL MACHINE FOR ARM (KVM/arm)
7525 M: Christoffer Dall <christoffer.dall@linaro.org>
7526 M: Marc Zyngier <marc.zyngier@arm.com>
7527 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7528 L: kvmarm@lists.cs.columbia.edu
7529 W: http://systems.cs.columbia.edu/projects/kvm-arm
7530 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
7532 F: arch/arm/include/uapi/asm/kvm*
7533 F: arch/arm/include/asm/kvm*
7536 F: include/kvm/arm_*
7538 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
7539 M: Christoffer Dall <christoffer.dall@linaro.org>
7540 M: Marc Zyngier <marc.zyngier@arm.com>
7541 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7542 L: kvmarm@lists.cs.columbia.edu
7544 F: arch/arm64/include/uapi/asm/kvm*
7545 F: arch/arm64/include/asm/kvm*
7548 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
7549 M: James Hogan <james.hogan@imgtec.com>
7550 L: linux-mips@linux-mips.org
7552 F: arch/mips/include/uapi/asm/kvm*
7553 F: arch/mips/include/asm/kvm*
7556 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
7557 M: Alexander Graf <agraf@suse.com>
7558 L: kvm-ppc@vger.kernel.org
7559 W: http://www.linux-kvm.org/
7560 T: git git://github.com/agraf/linux-2.6.git
7562 F: arch/powerpc/include/uapi/asm/kvm*
7563 F: arch/powerpc/include/asm/kvm*
7564 F: arch/powerpc/kvm/
7565 F: arch/powerpc/kernel/kvm*
7567 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
7568 M: Christian Borntraeger <borntraeger@de.ibm.com>
7569 M: Cornelia Huck <cohuck@redhat.com>
7570 L: linux-s390@vger.kernel.org
7571 W: http://www.ibm.com/developerworks/linux/linux390/
7572 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
7574 F: arch/s390/include/uapi/asm/kvm*
7575 F: arch/s390/include/asm/gmap.h
7576 F: arch/s390/include/asm/kvm*
7578 F: arch/s390/mm/gmap.c
7580 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
7581 M: Paolo Bonzini <pbonzini@redhat.com>
7582 M: Radim Krčmář <rkrcmar@redhat.com>
7583 L: kvm@vger.kernel.org
7584 W: http://www.linux-kvm.org
7585 T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
7588 F: arch/x86/include/uapi/asm/kvm*
7589 F: arch/x86/include/asm/kvm*
7590 F: arch/x86/kernel/kvm.c
7591 F: arch/x86/kernel/kvmclock.c
7594 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7595 M: Tejun Heo <tj@kernel.org>
7596 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
7598 F: include/linux/kernfs.h
7602 M: Eric Biederman <ebiederm@xmission.com>
7603 W: http://kernel.org/pub/linux/utils/kernel/kexec/
7604 L: kexec@lists.infradead.org
7606 F: include/linux/kexec.h
7607 F: include/uapi/linux/kexec.h
7611 M: Mimi Zohar <zohar@linux.vnet.ibm.com>
7612 M: David Safford <safford@us.ibm.com>
7613 L: linux-security-module@vger.kernel.org
7614 L: keyrings@vger.kernel.org
7616 F: Documentation/security/keys/trusted-encrypted.rst
7617 F: include/keys/encrypted-type.h
7618 F: security/keys/encrypted-keys/
7621 M: David Safford <safford@us.ibm.com>
7622 M: Mimi Zohar <zohar@linux.vnet.ibm.com>
7623 L: linux-security-module@vger.kernel.org
7624 L: keyrings@vger.kernel.org
7626 F: Documentation/security/keys/trusted-encrypted.rst
7627 F: include/keys/trusted-type.h
7628 F: security/keys/trusted.c
7629 F: security/keys/trusted.h
7632 M: David Howells <dhowells@redhat.com>
7633 L: keyrings@vger.kernel.org
7635 F: Documentation/security/keys/core.rst
7636 F: include/linux/key.h
7637 F: include/linux/key-type.h
7638 F: include/linux/keyctl.h
7639 F: include/uapi/linux/keyctl.h
7643 KGDB / KDB /debug_core
7644 M: Jason Wessel <jason.wessel@windriver.com>
7645 W: http://kgdb.wiki.kernel.org/
7646 L: kgdb-bugreport@lists.sourceforge.net
7647 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
7649 F: Documentation/dev-tools/kgdb.rst
7650 F: drivers/misc/kgdbts.c
7651 F: drivers/tty/serial/kgdboc.c
7652 F: include/linux/kdb.h
7653 F: include/linux/kgdb.h
7657 M: Vegard Nossum <vegardno@ifi.uio.no>
7658 M: Pekka Enberg <penberg@kernel.org>
7660 F: Documentation/dev-tools/kmemcheck.rst
7661 F: arch/x86/include/asm/kmemcheck.h
7662 F: arch/x86/mm/kmemcheck/
7663 F: include/linux/kmemcheck.h
7667 M: Catalin Marinas <catalin.marinas@arm.com>
7669 F: Documentation/dev-tools/kmemleak.rst
7670 F: include/linux/kmemleak.h
7672 F: mm/kmemleak-test.c
7674 KMOD KERNEL MODULE LOADER - USERMODE HELPER
7675 M: "Luis R. Rodriguez" <mcgrof@kernel.org>
7676 L: linux-kernel@vger.kernel.org
7679 F: include/linux/kmod.h
7681 F: tools/testing/selftests/kmod/
7684 M: Ananth N Mavinakayanahalli <ananth@linux.vnet.ibm.com>
7685 M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
7686 M: "David S. Miller" <davem@davemloft.net>
7687 M: Masami Hiramatsu <mhiramat@kernel.org>
7689 F: Documentation/kprobes.txt
7690 F: include/linux/kprobes.h
7691 F: include/asm-generic/kprobes.h
7694 KS0108 LCD CONTROLLER DRIVER
7695 M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
7696 W: http://miguelojeda.es/auxdisplay.htm
7697 W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
7699 F: Documentation/auxdisplay/ks0108
7700 F: drivers/auxdisplay/ks0108.c
7701 F: include/linux/ks0108.h
7704 M: David Ahern <dsa@cumulusnetworks.com>
7705 L: netdev@vger.kernel.org
7708 F: include/net/l3mdev.h
7710 LANTIQ MIPS ARCHITECTURE
7711 M: John Crispin <john@phrozen.org>
7712 L: linux-mips@linux-mips.org
7717 L: linux-x25@vger.kernel.org
7719 F: Documentation/networking/lapb-module.txt
7723 LASI 53c700 driver for PARISC
7724 M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
7725 L: linux-scsi@vger.kernel.org
7727 F: Documentation/scsi/53c700.txt
7728 F: drivers/scsi/53c700*
7731 M: Richard Purdie <rpurdie@rpsys.net>
7732 M: Jacek Anaszewski <jacek.anaszewski@gmail.com>
7733 M: Pavel Machek <pavel@ucw.cz>
7734 L: linux-leds@vger.kernel.org
7735 T: git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
7737 F: Documentation/devicetree/bindings/leds/
7739 F: include/linux/leds.h
7741 LEGACY EEPROM DRIVER
7742 M: Jean Delvare <jdelvare@suse.com>
7744 F: Documentation/misc-devices/eeprom
7745 F: drivers/misc/eeprom/eeprom.c
7747 LEGO USB Tower driver
7748 M: Juergen Stuber <starblue@users.sourceforge.net>
7749 L: legousb-devel@lists.sourceforge.net
7750 W: http://legousb.sourceforge.net/
7752 F: drivers/usb/misc/legousbtower.c
7755 M: Michael Krufky <mkrufky@linuxtv.org>
7756 L: linux-media@vger.kernel.org
7757 W: https://linuxtv.org
7758 W: http://github.com/mkrufky
7759 Q: http://patchwork.linuxtv.org/project/linux-media/list/
7760 T: git git://linuxtv.org/mkrufky/tuners.git
7762 F: drivers/media/dvb-frontends/lg2160.*
7764 LGDT3305 MEDIA DRIVER
7765 M: Michael Krufky <mkrufky@linuxtv.org>
7766 L: linux-media@vger.kernel.org
7767 W: https://linuxtv.org
7768 W: http://github.com/mkrufky
7769 Q: http://patchwork.linuxtv.org/project/linux-media/list/
7770 T: git git://linuxtv.org/mkrufky/tuners.git
7772 F: drivers/media/dvb-frontends/lgdt3305.*
7774 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
7775 M: Viresh Kumar <vireshk@kernel.org>
7776 L: linux-ide@vger.kernel.org
7777 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7779 F: include/linux/pata_arasan_cf_data.h
7780 F: drivers/ata/pata_arasan_cf.c
7783 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
7784 M: Tejun Heo <tj@kernel.org>
7785 L: linux-ide@vger.kernel.org
7786 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7788 F: drivers/ata/pata_*.c
7789 F: drivers/ata/ata_generic.c
7791 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
7792 M: Linus Walleij <linus.walleij@linaro.org>
7793 L: linux-ide@vger.kernel.org
7794 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7796 F: drivers/ata/pata_ftide010.c
7797 F: drivers/ata/sata_gemini.c
7798 F: drivers/ata/sata_gemini.h
7800 LIBATA SATA AHCI PLATFORM devices support
7801 M: Hans de Goede <hdegoede@redhat.com>
7802 M: Tejun Heo <tj@kernel.org>
7803 L: linux-ide@vger.kernel.org
7804 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7806 F: drivers/ata/ahci_platform.c
7807 F: drivers/ata/libahci_platform.c
7808 F: include/linux/ahci_platform.h
7810 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
7811 M: Mikael Pettersson <mikpelinux@gmail.com>
7812 L: linux-ide@vger.kernel.org
7813 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7815 F: drivers/ata/sata_promise.*
7817 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
7818 M: Tejun Heo <tj@kernel.org>
7819 L: linux-ide@vger.kernel.org
7820 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7823 F: include/linux/ata.h
7824 F: include/linux/libata.h
7825 F: Documentation/devicetree/bindings/ata/
7828 M: Sasha Levin <alexander.levin@verizon.com>
7830 F: tools/lib/lockdep/
7832 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
7833 M: Ross Zwisler <ross.zwisler@linux.intel.com>
7834 L: linux-nvdimm@lists.01.org
7835 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
7837 F: drivers/nvdimm/blk.c
7838 F: drivers/nvdimm/region_devs.c
7840 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
7841 M: Vishal Verma <vishal.l.verma@intel.com>
7842 L: linux-nvdimm@lists.01.org
7843 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
7845 F: drivers/nvdimm/btt*
7847 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
7848 M: Ross Zwisler <ross.zwisler@linux.intel.com>
7849 L: linux-nvdimm@lists.01.org
7850 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
7852 F: drivers/nvdimm/pmem*
7854 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
7855 M: Dan Williams <dan.j.williams@intel.com>
7856 L: linux-nvdimm@lists.01.org
7857 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
7858 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
7861 F: drivers/acpi/nfit/*
7862 F: include/linux/nd.h
7863 F: include/linux/libnvdimm.h
7864 F: include/uapi/linux/ndctl.h
7866 LIGHTNVM PLATFORM SUPPORT
7867 M: Matias Bjorling <mb@lightnvm.io>
7868 W: http://github/OpenChannelSSD
7869 L: linux-block@vger.kernel.org
7871 F: drivers/lightnvm/
7872 F: include/linux/lightnvm.h
7873 F: include/uapi/linux/lightnvm.h
7875 LINUX FOR POWER MACINTOSH
7876 M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
7877 W: http://www.penguinppc.org/
7878 L: linuxppc-dev@lists.ozlabs.org
7880 F: arch/powerpc/platforms/powermac/
7881 F: drivers/macintosh/
7883 LINUX FOR POWERPC (32-BIT AND 64-BIT)
7884 M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
7885 M: Paul Mackerras <paulus@samba.org>
7886 M: Michael Ellerman <mpe@ellerman.id.au>
7887 W: https://github.com/linuxppc/linux/wiki
7888 L: linuxppc-dev@lists.ozlabs.org
7889 Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
7890 T: git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
7892 F: Documentation/ABI/stable/sysfs-firmware-opal-*
7893 F: Documentation/devicetree/bindings/powerpc/
7894 F: Documentation/devicetree/bindings/rtc/rtc-opal.txt
7895 F: Documentation/devicetree/bindings/i2c/i2c-opal.txt
7896 F: Documentation/powerpc/
7898 F: drivers/char/tpm/tpm_ibmvtpm*
7899 F: drivers/crypto/nx/
7900 F: drivers/crypto/vmx/
7901 F: drivers/i2c/busses/i2c-opal.c
7902 F: drivers/net/ethernet/ibm/ibmveth.*
7903 F: drivers/net/ethernet/ibm/ibmvnic.*
7904 F: drivers/pci/hotplug/pnv_php.c
7905 F: drivers/pci/hotplug/rpa*
7906 F: drivers/rtc/rtc-opal.c
7907 F: drivers/scsi/ibmvscsi/
7908 F: drivers/tty/hvc/hvc_opal.c
7909 F: drivers/watchdog/wdrtas.c
7910 F: tools/testing/selftests/powerpc
7917 LINUX FOR POWERPC EMBEDDED MPC5XXX
7918 M: Anatolij Gustschin <agust@denx.de>
7919 L: linuxppc-dev@lists.ozlabs.org
7920 T: git git://git.denx.de/linux-denx-agust.git
7922 F: arch/powerpc/platforms/512x/
7923 F: arch/powerpc/platforms/52xx/
7925 LINUX FOR POWERPC EMBEDDED PPC4XX
7926 M: Alistair Popple <alistair@popple.id.au>
7927 M: Matt Porter <mporter@kernel.crashing.org>
7928 W: http://www.penguinppc.org/
7929 L: linuxppc-dev@lists.ozlabs.org
7931 F: arch/powerpc/platforms/40x/
7932 F: arch/powerpc/platforms/44x/
7934 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
7935 M: Scott Wood <oss@buserror.net>
7936 M: Kumar Gala <galak@kernel.crashing.org>
7937 W: http://www.penguinppc.org/
7938 L: linuxppc-dev@lists.ozlabs.org
7939 T: git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
7941 F: arch/powerpc/platforms/83xx/
7942 F: arch/powerpc/platforms/85xx/
7943 F: Documentation/devicetree/bindings/powerpc/fsl/
7945 LINUX FOR POWERPC EMBEDDED PPC8XX
7946 M: Vitaly Bordug <vitb@kernel.crashing.org>
7947 W: http://www.penguinppc.org/
7948 L: linuxppc-dev@lists.ozlabs.org
7950 F: arch/powerpc/platforms/8xx/
7952 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
7953 L: linuxppc-dev@lists.ozlabs.org
7955 F: arch/powerpc/*/*virtex*
7956 F: arch/powerpc/*/*/*virtex*
7958 LINUX FOR POWERPC PA SEMI PWRFICIENT
7959 L: linuxppc-dev@lists.ozlabs.org
7961 F: arch/powerpc/platforms/pasemi/
7962 F: drivers/*/*pasemi*
7963 F: drivers/*/*/*pasemi*
7965 LINUX KERNEL DUMP TEST MODULE (LKDTM)
7966 M: Kees Cook <keescook@chromium.org>
7968 F: drivers/misc/lkdtm*
7970 LINUX SECURITY MODULE (LSM) FRAMEWORK
7971 M: Chris Wright <chrisw@sous-sol.org>
7972 L: linux-security-module@vger.kernel.org
7975 LIS3LV02D ACCELEROMETER DRIVER
7976 M: Eric Piel <eric.piel@tremplin-utc.net>
7978 F: Documentation/misc-devices/lis3lv02d
7979 F: drivers/misc/lis3lv02d/
7980 F: drivers/platform/x86/hp_accel.c
7983 M: Josh Poimboeuf <jpoimboe@redhat.com>
7984 M: Jessica Yu <jeyu@kernel.org>
7985 M: Jiri Kosina <jikos@kernel.org>
7986 M: Miroslav Benes <mbenes@suse.cz>
7987 R: Petr Mladek <pmladek@suse.com>
7989 F: kernel/livepatch/
7990 F: include/linux/livepatch.h
7991 F: arch/x86/include/asm/livepatch.h
7992 F: arch/x86/kernel/livepatch.c
7993 F: Documentation/livepatch/
7994 F: Documentation/ABI/testing/sysfs-kernel-livepatch
7995 F: samples/livepatch/
7996 L: live-patching@vger.kernel.org
7997 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
8000 L: netdev@vger.kernel.org
8002 F: include/linux/llc.h
8003 F: include/uapi/linux/llc.h
8007 LM73 HARDWARE MONITOR DRIVER
8008 M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
8009 L: linux-hwmon@vger.kernel.org
8011 F: drivers/hwmon/lm73.c
8013 LM78 HARDWARE MONITOR DRIVER
8014 M: Jean Delvare <jdelvare@suse.com>
8015 L: linux-hwmon@vger.kernel.org
8017 F: Documentation/hwmon/lm78
8018 F: drivers/hwmon/lm78.c
8020 LM83 HARDWARE MONITOR DRIVER
8021 M: Jean Delvare <jdelvare@suse.com>
8022 L: linux-hwmon@vger.kernel.org
8024 F: Documentation/hwmon/lm83
8025 F: drivers/hwmon/lm83.c
8027 LM90 HARDWARE MONITOR DRIVER
8028 M: Jean Delvare <jdelvare@suse.com>
8029 L: linux-hwmon@vger.kernel.org
8031 F: Documentation/hwmon/lm90
8032 F: Documentation/devicetree/bindings/hwmon/lm90.txt
8033 F: drivers/hwmon/lm90.c
8034 F: include/dt-bindings/thermal/lm90.h
8036 LM95234 HARDWARE MONITOR DRIVER
8037 M: Guenter Roeck <linux@roeck-us.net>
8038 L: linux-hwmon@vger.kernel.org
8040 F: Documentation/hwmon/lm95234
8041 F: drivers/hwmon/lm95234.c
8043 LME2510 MEDIA DRIVER
8044 M: Malcolm Priestley <tvboxspy@gmail.com>
8045 L: linux-media@vger.kernel.org
8046 W: https://linuxtv.org
8047 Q: http://patchwork.linuxtv.org/project/linux-media/list/
8049 F: drivers/media/usb/dvb-usb-v2/lmedm04*
8051 LOADPIN SECURITY MODULE
8052 M: Kees Cook <keescook@chromium.org>
8053 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
8055 F: security/loadpin/
8056 F: Documentation/admin-guide/LSM/LoadPin.rst
8059 M: Peter Zijlstra <peterz@infradead.org>
8060 M: Ingo Molnar <mingo@redhat.com>
8061 L: linux-kernel@vger.kernel.org
8062 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
8064 F: Documentation/locking/
8065 F: include/linux/lockdep.h
8066 F: include/linux/spinlock*.h
8067 F: arch/*/include/asm/spinlock*.h
8068 F: include/linux/rwlock*.h
8069 F: include/linux/mutex*.h
8070 F: arch/*/include/asm/mutex*.h
8071 F: include/linux/rwsem*.h
8072 F: arch/*/include/asm/rwsem.h
8073 F: include/linux/seqlock.h
8074 F: lib/locking*.[ch]
8077 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
8078 M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
8079 L: linux-ntfs-dev@lists.sourceforge.net
8080 W: http://www.linux-ntfs.org/content/view/19/37/
8082 F: Documentation/ldm.txt
8083 F: block/partitions/ldm.*
8085 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
8086 M: Sathya Prakash <sathya.prakash@broadcom.com>
8087 M: Chaitra P B <chaitra.basappa@broadcom.com>
8088 M: Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
8089 L: MPT-FusionLinux.pdl@broadcom.com
8090 L: linux-scsi@vger.kernel.org
8091 W: http://www.avagotech.com/support/
8093 F: drivers/message/fusion/
8094 F: drivers/scsi/mpt2sas/
8095 F: drivers/scsi/mpt3sas/
8097 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
8098 M: Matthew Wilcox <matthew@wil.cx>
8099 L: linux-scsi@vger.kernel.org
8101 F: drivers/scsi/sym53c8xx_2/
8103 LTC4261 HARDWARE MONITOR DRIVER
8104 M: Guenter Roeck <linux@roeck-us.net>
8105 L: linux-hwmon@vger.kernel.org
8107 F: Documentation/hwmon/ltc4261
8108 F: drivers/hwmon/ltc4261.c
8110 LTC4306 I2C MULTIPLEXER DRIVER
8111 M: Michael Hennerich <michael.hennerich@analog.com>
8112 W: http://ez.analog.com/community/linux-device-drivers
8113 L: linux-i2c@vger.kernel.org
8115 F: drivers/i2c/muxes/i2c-mux-ltc4306.c
8116 F: Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
8118 LTP (Linux Test Project)
8119 M: Mike Frysinger <vapier@gentoo.org>
8120 M: Cyril Hrubis <chrubis@suse.cz>
8121 M: Wanlong Gao <wanlong.gao@gmail.com>
8122 M: Jan Stancek <jstancek@redhat.com>
8123 M: Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
8124 M: Alexey Kodanev <alexey.kodanev@oracle.com>
8125 L: ltp@lists.linux.it (subscribers-only)
8126 W: http://linux-test-project.github.io/
8127 T: git git://github.com/linux-test-project/ltp.git
8131 W: http://www.linux-m32r.org/
8136 M: Geert Uytterhoeven <geert@linux-m68k.org>
8137 L: linux-m68k@lists.linux-m68k.org
8138 W: http://www.linux-m68k.org/
8139 T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
8144 M68K ON APPLE MACINTOSH
8145 M: Joshua Thompson <funaho@jurai.org>
8146 W: http://www.mac.linux-m68k.org/
8147 L: linux-m68k@lists.linux-m68k.org
8152 M: Philip Blundell <philb@gnu.org>
8153 W: http://www.tazenda.demon.co.uk/phil/linux-hp
8157 M88DS3103 MEDIA DRIVER
8158 M: Antti Palosaari <crope@iki.fi>
8159 L: linux-media@vger.kernel.org
8160 W: https://linuxtv.org
8161 W: http://palosaari.fi/linux/
8162 Q: http://patchwork.linuxtv.org/project/linux-media/list/
8163 T: git git://linuxtv.org/anttip/media_tree.git
8165 F: drivers/media/dvb-frontends/m88ds3103*
8167 M88RS2000 MEDIA DRIVER
8168 M: Malcolm Priestley <tvboxspy@gmail.com>
8169 L: linux-media@vger.kernel.org
8170 W: https://linuxtv.org
8171 Q: http://patchwork.linuxtv.org/project/linux-media/list/
8173 F: drivers/media/dvb-frontends/m88rs2000*
8175 MA901 MASTERKIT USB FM RADIO DRIVER
8176 M: Alexey Klimov <klimov.linux@gmail.com>
8177 L: linux-media@vger.kernel.org
8178 T: git git://linuxtv.org/media_tree.git
8180 F: drivers/media/radio/radio-ma901.c
8183 M: Johannes Berg <johannes@sipsolutions.net>
8184 L: linux-wireless@vger.kernel.org
8185 W: http://wireless.kernel.org/
8186 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
8187 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
8189 F: Documentation/networking/mac80211-injection.txt
8190 F: include/net/mac80211.h
8192 F: drivers/net/wireless/mac80211_hwsim.[ch]
8195 M: Jassi Brar <jassisinghbrar@gmail.com>
8196 L: linux-kernel@vger.kernel.org
8199 F: include/linux/mailbox_client.h
8200 F: include/linux/mailbox_controller.h
8202 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
8203 M: Michael Kerrisk <mtk.manpages@gmail.com>
8204 W: http://www.kernel.org/doc/man-pages
8205 L: linux-man@vger.kernel.org
8208 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
8209 M: Rahul Bedarkar <rahulbedarkar89@gmail.com>
8210 L: linux-mips@linux-mips.org
8212 F: arch/mips/boot/dts/img/pistachio_marduk.dts
8214 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
8215 M: Andrew Lunn <andrew@lunn.ch>
8216 M: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
8217 L: netdev@vger.kernel.org
8219 F: drivers/net/dsa/mv88e6xxx/
8220 F: Documentation/devicetree/bindings/net/dsa/marvell.txt
8222 MARVELL ARMADA DRM SUPPORT
8223 M: Russell King <linux@armlinux.org.uk>
8225 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
8226 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
8227 F: drivers/gpu/drm/armada/
8228 F: include/uapi/drm/armada_drm.h
8229 F: Documentation/devicetree/bindings/display/armada/
8231 MARVELL CRYPTO DRIVER
8232 M: Boris Brezillon <boris.brezillon@free-electrons.com>
8233 M: Arnaud Ebalard <arno@natisbad.org>
8234 F: drivers/crypto/marvell/
8236 L: linux-crypto@vger.kernel.org
8238 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
8239 M: Mirko Lindner <mlindner@marvell.com>
8240 M: Stephen Hemminger <stephen@networkplumber.org>
8241 L: netdev@vger.kernel.org
8243 F: drivers/net/ethernet/marvell/sk*
8245 MARVELL LIBERTAS WIRELESS DRIVER
8246 L: libertas-dev@lists.infradead.org
8248 F: drivers/net/wireless/marvell/libertas/
8250 MARVELL MV643XX ETHERNET DRIVER
8251 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
8252 L: netdev@vger.kernel.org
8254 F: drivers/net/ethernet/marvell/mv643xx_eth.*
8255 F: include/linux/mv643xx.h
8257 MARVELL MV88X3310 PHY DRIVER
8258 M: Russell King <rmk@armlinux.org.uk>
8259 L: netdev@vger.kernel.org
8261 F: drivers/net/phy/marvell10g.c
8263 MARVELL MVNETA ETHERNET DRIVER
8264 M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8265 L: netdev@vger.kernel.org
8267 F: drivers/net/ethernet/marvell/mvneta.*
8269 MARVELL MWIFIEX WIRELESS DRIVER
8270 M: Amitkumar Karwar <amitkarwar@gmail.com>
8271 M: Nishant Sarmukadam <nishants@marvell.com>
8272 M: Ganapathi Bhat <gbhat@marvell.com>
8273 M: Xinming Hu <huxm@marvell.com>
8274 L: linux-wireless@vger.kernel.org
8276 F: drivers/net/wireless/marvell/mwifiex/
8278 MARVELL MWL8K WIRELESS DRIVER
8279 M: Lennert Buytenhek <buytenh@wantstofly.org>
8280 L: linux-wireless@vger.kernel.org
8282 F: drivers/net/wireless/marvell/mwl8k.c
8284 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
8285 M: Nicolas Pitre <nico@fluxnic.net>
8287 F: drivers/mmc/host/mvsdio.*
8289 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
8290 M: Hu Ziji <huziji@marvell.com>
8291 L: linux-mmc@vger.kernel.org
8293 F: drivers/mmc/host/sdhci-xenon*
8294 F: Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
8296 MATROX FRAMEBUFFER DRIVER
8297 L: linux-fbdev@vger.kernel.org
8299 F: drivers/video/fbdev/matrox/matroxfb_*
8300 F: include/uapi/linux/matroxfb.h
8302 MAX16065 HARDWARE MONITOR DRIVER
8303 M: Guenter Roeck <linux@roeck-us.net>
8304 L: linux-hwmon@vger.kernel.org
8306 F: Documentation/hwmon/max16065
8307 F: drivers/hwmon/max16065.c
8309 MAX20751 HARDWARE MONITOR DRIVER
8310 M: Guenter Roeck <linux@roeck-us.net>
8311 L: linux-hwmon@vger.kernel.org
8313 F: Documentation/hwmon/max20751
8314 F: drivers/hwmon/max20751.c
8316 MAX2175 SDR TUNER DRIVER
8317 M: Ramesh Shanmugasundaram <ramesh.shanmugasundaram@bp.renesas.com>
8318 L: linux-media@vger.kernel.org
8319 T: git git://linuxtv.org/media_tree.git
8321 F: Documentation/devicetree/bindings/media/i2c/max2175.txt
8322 F: Documentation/media/v4l-drivers/max2175.rst
8323 F: drivers/media/i2c/max2175*
8324 F: include/uapi/linux/max2175.h
8326 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
8327 L: linux-hwmon@vger.kernel.org
8329 F: Documentation/hwmon/max6650
8330 F: drivers/hwmon/max6650.c
8332 MAX6697 HARDWARE MONITOR DRIVER
8333 M: Guenter Roeck <linux@roeck-us.net>
8334 L: linux-hwmon@vger.kernel.org
8336 F: Documentation/hwmon/max6697
8337 F: Documentation/devicetree/bindings/i2c/max6697.txt
8338 F: drivers/hwmon/max6697.c
8339 F: include/linux/platform_data/max6697.h
8341 MAX9860 MONO AUDIO VOICE CODEC DRIVER
8342 M: Peter Rosin <peda@axentia.se>
8343 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8345 F: Documentation/devicetree/bindings/sound/max9860.txt
8346 F: sound/soc/codecs/max9860.*
8348 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
8349 M: Javier Martinez Canillas <javier@dowhile0.org>
8350 L: linux-kernel@vger.kernel.org
8352 F: drivers/regulator/max77802-regulator.c
8353 F: Documentation/devicetree/bindings/*/*max77802.txt
8354 F: include/dt-bindings/*/*max77802.h
8356 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
8357 M: Krzysztof Kozlowski <krzk@kernel.org>
8358 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
8359 L: linux-pm@vger.kernel.org
8361 F: drivers/power/supply/max14577_charger.c
8362 F: drivers/power/supply/max77693_charger.c
8364 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
8365 M: Chanwoo Choi <cw00.choi@samsung.com>
8366 M: Krzysztof Kozlowski <krzk@kernel.org>
8367 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
8368 L: linux-kernel@vger.kernel.org
8370 F: drivers/*/max14577*.c
8371 F: drivers/*/max77686*.c
8372 F: drivers/*/max77693*.c
8373 F: drivers/extcon/extcon-max14577.c
8374 F: drivers/extcon/extcon-max77693.c
8375 F: drivers/rtc/rtc-max77686.c
8376 F: drivers/clk/clk-max77686.c
8377 F: Documentation/devicetree/bindings/mfd/max14577.txt
8378 F: Documentation/devicetree/bindings/*/max77686.txt
8379 F: Documentation/devicetree/bindings/mfd/max77693.txt
8380 F: Documentation/devicetree/bindings/clock/maxim,max77686.txt
8381 F: include/linux/mfd/max14577*.h
8382 F: include/linux/mfd/max77686*.h
8383 F: include/linux/mfd/max77693*.h
8385 MAXIRADIO FM RADIO RECEIVER DRIVER
8386 M: Hans Verkuil <hverkuil@xs4all.nl>
8387 L: linux-media@vger.kernel.org
8388 T: git git://linuxtv.org/media_tree.git
8389 W: https://linuxtv.org
8391 F: drivers/media/radio/radio-maxiradio*
8393 MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVER
8394 M: Peter Rosin <peda@axentia.se>
8395 L: linux-iio@vger.kernel.org
8397 F: Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
8398 F: drivers/iio/potentiometer/mcp4531.c
8400 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
8401 M: William Breathitt Gray <vilhelm.gray@gmail.com>
8402 L: linux-iio@vger.kernel.org
8404 F: drivers/iio/dac/cio-dac.c
8406 MEDIA DRIVERS FOR ASCOT2E
8407 M: Sergey Kozlov <serjk@netup.ru>
8408 M: Abylay Ospan <aospan@netup.ru>
8409 L: linux-media@vger.kernel.org
8410 W: https://linuxtv.org
8412 T: git git://linuxtv.org/media_tree.git
8414 F: drivers/media/dvb-frontends/ascot2e*
8416 MEDIA DRIVERS FOR CXD2841ER
8417 M: Sergey Kozlov <serjk@netup.ru>
8418 M: Abylay Ospan <aospan@netup.ru>
8419 L: linux-media@vger.kernel.org
8420 W: https://linuxtv.org
8422 T: git git://linuxtv.org/media_tree.git
8424 F: drivers/media/dvb-frontends/cxd2841er*
8426 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
8427 M: Daniel Scheller <d.scheller.oss@gmail.com>
8428 L: linux-media@vger.kernel.org
8429 W: https://linuxtv.org
8430 T: git git://linuxtv.org/media_tree.git
8432 F: drivers/media/pci/ddbridge/*
8434 MEDIA DRIVERS FOR FREESCALE IMX
8435 M: Steve Longerbeam <slongerbeam@gmail.com>
8436 M: Philipp Zabel <p.zabel@pengutronix.de>
8437 L: linux-media@vger.kernel.org
8438 T: git git://linuxtv.org/media_tree.git
8440 F: Documentation/devicetree/bindings/media/imx.txt
8441 F: Documentation/media/v4l-drivers/imx.rst
8442 F: drivers/staging/media/imx/
8443 F: include/linux/imx-media.h
8444 F: include/media/imx.h
8446 MEDIA DRIVERS FOR HELENE
8447 M: Abylay Ospan <aospan@netup.ru>
8448 L: linux-media@vger.kernel.org
8449 W: https://linuxtv.org
8451 T: git git://linuxtv.org/media_tree.git
8453 F: drivers/media/dvb-frontends/helene*
8455 MEDIA DRIVERS FOR HORUS3A
8456 M: Sergey Kozlov <serjk@netup.ru>
8457 M: Abylay Ospan <aospan@netup.ru>
8458 L: linux-media@vger.kernel.org
8459 W: https://linuxtv.org
8461 T: git git://linuxtv.org/media_tree.git
8463 F: drivers/media/dvb-frontends/horus3a*
8465 MEDIA DRIVERS FOR LNBH25
8466 M: Sergey Kozlov <serjk@netup.ru>
8467 M: Abylay Ospan <aospan@netup.ru>
8468 L: linux-media@vger.kernel.org
8469 W: https://linuxtv.org
8471 T: git git://linuxtv.org/media_tree.git
8473 F: drivers/media/dvb-frontends/lnbh25*
8475 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
8476 M: Daniel Scheller <d.scheller.oss@gmail.com>
8477 L: linux-media@vger.kernel.org
8478 W: https://linuxtv.org
8479 T: git git://linuxtv.org/media_tree.git
8481 F: drivers/media/dvb-frontends/mxl5xx*
8483 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
8484 M: Sergey Kozlov <serjk@netup.ru>
8485 M: Abylay Ospan <aospan@netup.ru>
8486 L: linux-media@vger.kernel.org
8487 W: https://linuxtv.org
8489 T: git git://linuxtv.org/media_tree.git
8491 F: drivers/media/pci/netup_unidvb/*
8493 MEDIA DRIVERS FOR RENESAS - DRIF
8494 M: Ramesh Shanmugasundaram <ramesh.shanmugasundaram@bp.renesas.com>
8495 L: linux-media@vger.kernel.org
8496 L: linux-renesas-soc@vger.kernel.org
8497 T: git git://linuxtv.org/media_tree.git
8499 F: Documentation/devicetree/bindings/media/renesas,drif.txt
8500 F: drivers/media/platform/rcar_drif.c
8502 MEDIA DRIVERS FOR RENESAS - FCP
8503 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8504 L: linux-media@vger.kernel.org
8505 L: linux-renesas-soc@vger.kernel.org
8506 T: git git://linuxtv.org/media_tree.git
8508 F: Documentation/devicetree/bindings/media/renesas,fcp.txt
8509 F: drivers/media/platform/rcar-fcp.c
8510 F: include/media/rcar-fcp.h
8512 MEDIA DRIVERS FOR RENESAS - FDP1
8513 M: Kieran Bingham <kieran@bingham.xyz>
8514 L: linux-media@vger.kernel.org
8515 L: linux-renesas-soc@vger.kernel.org
8516 T: git git://linuxtv.org/media_tree.git
8518 F: Documentation/devicetree/bindings/media/renesas,fdp1.txt
8519 F: drivers/media/platform/rcar_fdp1.c
8521 MEDIA DRIVERS FOR RENESAS - VIN
8522 M: Niklas Söderlund <niklas.soderlund@ragnatech.se>
8523 L: linux-media@vger.kernel.org
8524 L: linux-renesas-soc@vger.kernel.org
8525 T: git git://linuxtv.org/media_tree.git
8527 F: Documentation/devicetree/bindings/media/rcar_vin.txt
8528 F: drivers/media/platform/rcar-vin/
8530 MEDIA DRIVERS FOR RENESAS - VSP1
8531 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8532 L: linux-media@vger.kernel.org
8533 L: linux-renesas-soc@vger.kernel.org
8534 T: git git://linuxtv.org/media_tree.git
8536 F: Documentation/devicetree/bindings/media/renesas,vsp1.txt
8537 F: drivers/media/platform/vsp1/
8539 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
8540 M: Daniel Scheller <d.scheller.oss@gmail.com>
8541 L: linux-media@vger.kernel.org
8542 W: https://linuxtv.org
8543 T: git git://linuxtv.org/media_tree.git
8545 F: drivers/media/dvb-frontends/stv0910*
8547 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
8548 M: Daniel Scheller <d.scheller.oss@gmail.com>
8549 L: linux-media@vger.kernel.org
8550 W: https://linuxtv.org
8551 T: git git://linuxtv.org/media_tree.git
8553 F: drivers/media/dvb-frontends/stv6111*
8555 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
8556 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
8557 M: Mauro Carvalho Chehab <mchehab@kernel.org>
8558 P: LinuxTV.org Project
8559 L: linux-media@vger.kernel.org
8560 W: https://linuxtv.org
8561 Q: http://patchwork.kernel.org/project/linux-media/list/
8562 T: git git://linuxtv.org/media_tree.git
8564 F: Documentation/devicetree/bindings/media/
8565 F: Documentation/media/
8567 F: drivers/staging/media/
8568 F: include/linux/platform_data/media/
8570 F: include/uapi/linux/dvb/
8571 F: include/uapi/linux/videodev2.h
8572 F: include/uapi/linux/media.h
8573 F: include/uapi/linux/v4l2-*
8574 F: include/uapi/linux/meye.h
8575 F: include/uapi/linux/ivtv*
8576 F: include/uapi/linux/uvcvideo.h
8579 M: Sean Wang <sean.wang@mediatek.com>
8581 F: drivers/media/rc/mtk-cir.c
8583 MEDIATEK ETHERNET DRIVER
8584 M: Felix Fietkau <nbd@openwrt.org>
8585 M: John Crispin <john@phrozen.org>
8586 M: Sean Wang <sean.wang@mediatek.com>
8587 M: Nelson Chang <nelson.chang@mediatek.com>
8588 L: netdev@vger.kernel.org
8590 F: drivers/net/ethernet/mediatek/
8592 MEDIATEK JPEG DRIVER
8593 M: Rick Chang <rick.chang@mediatek.com>
8594 M: Bin Liu <bin.liu@mediatek.com>
8596 F: drivers/media/platform/mtk-jpeg/
8597 F: Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
8600 M: Minghsiu Tsai <minghsiu.tsai@mediatek.com>
8601 M: Houlong Wei <houlong.wei@mediatek.com>
8602 M: Andrew-CT Chen <andrew-ct.chen@mediatek.com>
8604 F: drivers/media/platform/mtk-mdp/
8605 F: drivers/media/platform/mtk-vpu/
8606 F: Documentation/devicetree/bindings/media/mediatek-mdp.txt
8608 MEDIATEK MEDIA DRIVER
8609 M: Tiffany Lin <tiffany.lin@mediatek.com>
8610 M: Andrew-CT Chen <andrew-ct.chen@mediatek.com>
8612 F: drivers/media/platform/mtk-vcodec/
8613 F: drivers/media/platform/mtk-vpu/
8614 F: Documentation/devicetree/bindings/media/mediatek-vcodec.txt
8615 F: Documentation/devicetree/bindings/media/mediatek-vpu.txt
8617 MEDIATEK MT7601U WIRELESS LAN DRIVER
8618 M: Jakub Kicinski <kubakici@wp.pl>
8619 L: linux-wireless@vger.kernel.org
8621 F: drivers/net/wireless/mediatek/mt7601u/
8623 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
8624 M: Sean Wang <sean.wang@mediatek.com>
8626 F: drivers/char/hw_random/mtk-rng.c
8628 MEDIATEK USB3 DRD IP DRIVER
8629 M: Chunfeng Yun <chunfeng.yun@mediatek.com>
8630 L: linux-usb@vger.kernel.org (moderated for non-subscribers)
8631 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8632 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
8634 F: drivers/usb/mtu3/
8636 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
8637 M: Peter Senna Tschudin <peter.senna@collabora.com>
8638 M: Martin Donnelly <martin.donnelly@ge.com>
8639 M: Martyn Welch <martyn.welch@collabora.co.uk>
8641 F: drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
8642 F: Documentation/devicetree/bindings/video/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
8644 MEGARAID SCSI/SAS DRIVERS
8645 M: Kashyap Desai <kashyap.desai@broadcom.com>
8646 M: Sumit Saxena <sumit.saxena@broadcom.com>
8647 M: Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
8648 L: megaraidlinux.pdl@broadcom.com
8649 L: linux-scsi@vger.kernel.org
8650 W: http://www.avagotech.com/support/
8652 F: Documentation/scsi/megaraid.txt
8653 F: drivers/scsi/megaraid.*
8654 F: drivers/scsi/megaraid/
8656 MELEXIS MLX90614 DRIVER
8657 M: Crt Mori <cmo@melexis.com>
8658 L: linux-iio@vger.kernel.org
8659 W: http://www.melexis.com
8661 F: drivers/iio/temperature/mlx90614.c
8663 MELFAS MIP4 TOUCHSCREEN DRIVER
8664 M: Sangwon Jee <jeesw@melfas.com>
8665 W: http://www.melfas.com
8667 F: drivers/input/touchscreen/melfas_mip4.c
8668 F: Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
8670 MELLANOX ETHERNET DRIVER (mlx4_en)
8671 M: Tariq Toukan <tariqt@mellanox.com>
8672 L: netdev@vger.kernel.org
8674 W: http://www.mellanox.com
8675 Q: http://patchwork.ozlabs.org/project/netdev/list/
8676 F: drivers/net/ethernet/mellanox/mlx4/en_*
8678 MELLANOX ETHERNET DRIVER (mlx5e)
8679 M: Saeed Mahameed <saeedm@mellanox.com>
8680 L: netdev@vger.kernel.org
8682 W: http://www.mellanox.com
8683 Q: http://patchwork.ozlabs.org/project/netdev/list/
8684 F: drivers/net/ethernet/mellanox/mlx5/core/en_*
8686 MELLANOX ETHERNET INNOVA DRIVER
8687 M: Ilan Tayari <ilant@mellanox.com>
8688 R: Boris Pismenny <borisp@mellanox.com>
8689 L: netdev@vger.kernel.org
8691 W: http://www.mellanox.com
8692 Q: http://patchwork.ozlabs.org/project/netdev/list/
8693 F: drivers/net/ethernet/mellanox/mlx5/core/fpga/*
8694 F: include/linux/mlx5/mlx5_ifc_fpga.h
8696 MELLANOX ETHERNET INNOVA IPSEC DRIVER
8697 M: Ilan Tayari <ilant@mellanox.com>
8698 R: Boris Pismenny <borisp@mellanox.com>
8699 L: netdev@vger.kernel.org
8701 W: http://www.mellanox.com
8702 Q: http://patchwork.ozlabs.org/project/netdev/list/
8703 F: drivers/net/ethernet/mellanox/mlx5/core/en_ipsec/*
8704 F: drivers/net/ethernet/mellanox/mlx5/core/ipsec*
8706 MELLANOX ETHERNET SWITCH DRIVERS
8707 M: Jiri Pirko <jiri@mellanox.com>
8708 M: Ido Schimmel <idosch@mellanox.com>
8709 L: netdev@vger.kernel.org
8711 W: http://www.mellanox.com
8712 Q: http://patchwork.ozlabs.org/project/netdev/list/
8713 F: drivers/net/ethernet/mellanox/mlxsw/
8715 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
8716 M: Yotam Gigi <yotamg@mellanox.com>
8717 L: netdev@vger.kernel.org
8719 W: http://www.mellanox.com
8720 Q: http://patchwork.ozlabs.org/project/netdev/list/
8721 F: drivers/net/ethernet/mellanox/mlxfw/
8723 MELLANOX MLX CPLD HOTPLUG DRIVER
8724 M: Vadim Pasternak <vadimp@mellanox.com>
8725 L: platform-driver-x86@vger.kernel.org
8727 F: drivers/platform/x86/mlxcpld-hotplug.c
8728 F: include/linux/platform_data/mlxcpld-hotplug.h
8730 MELLANOX MLX4 core VPI driver
8731 M: Tariq Toukan <tariqt@mellanox.com>
8732 L: netdev@vger.kernel.org
8733 L: linux-rdma@vger.kernel.org
8734 W: http://www.mellanox.com
8735 Q: http://patchwork.ozlabs.org/project/netdev/list/
8737 F: drivers/net/ethernet/mellanox/mlx4/
8738 F: include/linux/mlx4/
8740 MELLANOX MLX4 IB driver
8741 M: Yishai Hadas <yishaih@mellanox.com>
8742 L: linux-rdma@vger.kernel.org
8743 W: http://www.mellanox.com
8744 Q: http://patchwork.kernel.org/project/linux-rdma/list/
8746 F: drivers/infiniband/hw/mlx4/
8747 F: include/linux/mlx4/
8748 F: include/uapi/rdma/mlx4-abi.h
8750 MELLANOX MLX5 core VPI driver
8751 M: Saeed Mahameed <saeedm@mellanox.com>
8752 M: Matan Barak <matanb@mellanox.com>
8753 M: Leon Romanovsky <leonro@mellanox.com>
8754 L: netdev@vger.kernel.org
8755 L: linux-rdma@vger.kernel.org
8756 W: http://www.mellanox.com
8757 Q: http://patchwork.ozlabs.org/project/netdev/list/
8759 F: drivers/net/ethernet/mellanox/mlx5/core/
8760 F: include/linux/mlx5/
8762 MELLANOX MLX5 IB driver
8763 M: Matan Barak <matanb@mellanox.com>
8764 M: Leon Romanovsky <leonro@mellanox.com>
8765 L: linux-rdma@vger.kernel.org
8766 W: http://www.mellanox.com
8767 Q: http://patchwork.kernel.org/project/linux-rdma/list/
8769 F: drivers/infiniband/hw/mlx5/
8770 F: include/linux/mlx5/
8771 F: include/uapi/rdma/mlx5-abi.h
8773 MELLANOX MLXCPLD I2C AND MUX DRIVER
8774 M: Vadim Pasternak <vadimp@mellanox.com>
8775 M: Michael Shych <michaelsh@mellanox.com>
8776 L: linux-i2c@vger.kernel.org
8778 F: drivers/i2c/busses/i2c-mlxcpld.c
8779 F: drivers/i2c/muxes/i2c-mux-mlxcpld.c
8780 F: Documentation/i2c/busses/i2c-mlxcpld
8782 MELLANOX MLXCPLD LED DRIVER
8783 M: Vadim Pasternak <vadimp@mellanox.com>
8784 L: linux-leds@vger.kernel.org
8786 F: drivers/leds/leds-mlxcpld.c
8787 F: Documentation/leds/leds-mlxcpld.txt
8789 MELLANOX PLATFORM DRIVER
8790 M: Vadim Pasternak <vadimp@mellanox.com>
8791 L: platform-driver-x86@vger.kernel.org
8793 F: drivers/platform/x86/mlx-platform.c
8796 M: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8797 M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8798 L: linux-kernel@vger.kernel.org
8800 F: kernel/sched/membarrier.c
8801 F: include/uapi/linux/membarrier.h
8804 L: linux-mm@kvack.org
8805 W: http://www.linux-mm.org
8807 F: include/linux/mm.h
8808 F: include/linux/gfp.h
8809 F: include/linux/mmzone.h
8810 F: include/linux/memory_hotplug.h
8811 F: include/linux/vmalloc.h
8814 MEMORY TECHNOLOGY DEVICES (MTD)
8815 M: David Woodhouse <dwmw2@infradead.org>
8816 M: Brian Norris <computersforpeace@gmail.com>
8817 M: Boris Brezillon <boris.brezillon@free-electrons.com>
8818 M: Marek Vasut <marek.vasut@gmail.com>
8819 M: Richard Weinberger <richard@nod.at>
8820 M: Cyrille Pitchen <cyrille.pitchen@wedev4u.fr>
8821 L: linux-mtd@lists.infradead.org
8822 W: http://www.linux-mtd.infradead.org/
8823 Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
8824 T: git git://git.infradead.org/linux-mtd.git master
8825 T: git git://git.infradead.org/l2-mtd.git master
8827 F: Documentation/devicetree/bindings/mtd/
8829 F: include/linux/mtd/
8830 F: include/uapi/mtd/
8832 MEN A21 WATCHDOG DRIVER
8833 M: Johannes Thumshirn <morbidrsa@gmail.com>
8834 L: linux-watchdog@vger.kernel.org
8836 F: drivers/watchdog/mena21_wdt.c
8838 MEN CHAMELEON BUS (mcb)
8839 M: Johannes Thumshirn <morbidrsa@gmail.com>
8842 F: include/linux/mcb.h
8843 F: Documentation/men-chameleon-bus.txt
8845 MEN F21BMC (Board Management Controller)
8846 M: Andreas Werner <andreas.werner@men.de>
8848 F: drivers/mfd/menf21bmc.c
8849 F: drivers/watchdog/menf21bmc_wdt.c
8850 F: drivers/leds/leds-menf21bmc.c
8851 F: drivers/hwmon/menf21bmc_hwmon.c
8852 F: Documentation/hwmon/menf21bmc
8854 MESON AO CEC DRIVER FOR AMLOGIC SOCS
8855 M: Neil Armstrong <narmstrong@baylibre.com>
8856 L: linux-media@lists.freedesktop.org
8857 L: linux-amlogic@lists.infradead.org
8858 W: http://linux-meson.com/
8860 F: drivers/media/platform/meson/ao-cec.c
8861 F: Documentation/devicetree/bindings/media/meson-ao-cec.txt
8862 T: git git://linuxtv.org/media_tree.git
8865 M: James Hogan <james.hogan@imgtec.com>
8866 L: linux-metag@vger.kernel.org
8867 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jhogan/metag.git
8870 F: Documentation/metag/
8871 F: Documentation/devicetree/bindings/metag/
8872 F: Documentation/devicetree/bindings/interrupt-controller/img,*
8873 F: drivers/clocksource/metag_generic.c
8874 F: drivers/irqchip/irq-metag.c
8875 F: drivers/irqchip/irq-metag-ext.c
8876 F: drivers/tty/metag_da.c
8878 MICROBLAZE ARCHITECTURE
8879 M: Michal Simek <monstr@monstr.eu>
8880 W: http://www.monstr.eu/fdt/
8881 T: git git://git.monstr.eu/linux-2.6-microblaze.git
8885 MICROCHIP / ATMEL AT91 SERIAL DRIVER
8886 M: Richard Genoud <richard.genoud@gmail.com>
8888 F: drivers/tty/serial/atmel_serial.c
8889 F: drivers/tty/serial/atmel_serial.h
8891 MICROCHIP / ATMEL DMA DRIVER
8892 M: Ludovic Desroches <ludovic.desroches@microchip.com>
8893 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8894 L: dmaengine@vger.kernel.org
8896 F: drivers/dma/at_hdmac.c
8897 F: drivers/dma/at_hdmac_regs.h
8898 F: include/linux/platform_data/dma-atmel.h
8900 MICROCHIP / ATMEL ECC DRIVER
8901 M: Tudor Ambarus <tudor.ambarus@microchip.com>
8902 L: linux-crypto@vger.kernel.org
8904 F: drivers/crypto/atmel-ecc.*
8906 MICROCHIP / ATMEL ISC DRIVER
8907 M: Songjun Wu <songjun.wu@microchip.com>
8908 L: linux-media@vger.kernel.org
8910 F: drivers/media/platform/atmel/atmel-isc.c
8911 F: drivers/media/platform/atmel/atmel-isc-regs.h
8912 F: devicetree/bindings/media/atmel-isc.txt
8914 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
8915 M: Woojung Huh <Woojung.Huh@microchip.com>
8916 M: Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
8917 L: netdev@vger.kernel.org
8919 F: net/dsa/tag_ksz.c
8920 F: drivers/net/dsa/microchip/*
8921 F: include/linux/platform_data/microchip-ksz.h
8922 F: Documentation/devicetree/bindings/net/dsa/ksz.txt
8924 MICROCHIP USB251XB DRIVER
8925 M: Richard Leitner <richard.leitner@skidata.com>
8926 L: linux-usb@vger.kernel.org
8928 F: drivers/usb/misc/usb251xb.c
8929 F: Documentation/devicetree/bindings/usb/usb251xb.txt
8931 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
8932 M: Don Brace <don.brace@microsemi.com>
8933 L: esc.storagedev@microsemi.com
8934 L: linux-scsi@vger.kernel.org
8936 F: drivers/scsi/smartpqi/smartpqi*.[ch]
8937 F: drivers/scsi/smartpqi/Kconfig
8938 F: drivers/scsi/smartpqi/Makefile
8939 F: include/linux/cciss*.h
8940 F: include/uapi/linux/cciss*.h
8941 F: Documentation/scsi/smartpqi.txt
8943 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
8944 M: Chen Yu <yu.c.chen@intel.com>
8945 L: platform-driver-x86@vger.kernel.org
8947 F: drivers/platform/x86/surfacepro3_button.c
8950 M: Oliver Neukum <oliver@neukum.org>
8952 F: drivers/usb/image/microtek.*
8955 M: Ralf Baechle <ralf@linux-mips.org>
8956 L: linux-mips@linux-mips.org
8957 W: http://www.linux-mips.org/
8958 T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
8959 Q: http://patchwork.linux-mips.org/project/linux-mips/list/
8961 F: Documentation/devicetree/bindings/mips/
8962 F: Documentation/mips/
8965 MIPS BOSTON DEVELOPMENT BOARD
8966 M: Paul Burton <paul.burton@imgtec.com>
8967 L: linux-mips@linux-mips.org
8969 F: Documentation/devicetree/bindings/clock/img,boston-clock.txt
8970 F: arch/mips/boot/dts/img/boston.dts
8971 F: arch/mips/configs/generic/board-boston.config
8972 F: drivers/clk/imgtec/clk-boston.c
8973 F: include/dt-bindings/clock/boston-clock.h
8975 MIPS GENERIC PLATFORM
8976 M: Paul Burton <paul.burton@imgtec.com>
8977 L: linux-mips@linux-mips.org
8979 F: arch/mips/generic/
8981 MIPS/LOONGSON1 ARCHITECTURE
8982 M: Keguang Zhang <keguang.zhang@gmail.com>
8983 L: linux-mips@linux-mips.org
8985 F: arch/mips/loongson32/
8986 F: arch/mips/include/asm/mach-loongson32/
8987 F: drivers/*/*loongson1*
8988 F: drivers/*/*/*loongson1*
8990 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
8991 M: Hans Verkuil <hverkuil@xs4all.nl>
8992 L: linux-media@vger.kernel.org
8993 T: git git://linuxtv.org/media_tree.git
8994 W: https://linuxtv.org
8996 F: drivers/media/radio/radio-miropcm20*
8999 M: Eric Miao <eric.y.miao@gmail.com>
9000 M: Haojian Zhuang <haojian.zhuang@gmail.com>
9001 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9002 T: git git://github.com/hzhuang1/linux.git
9003 T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
9005 F: arch/arm/boot/dts/mmp*
9006 F: arch/arm/mach-mmp/
9008 MN88472 MEDIA DRIVER
9009 M: Antti Palosaari <crope@iki.fi>
9010 L: linux-media@vger.kernel.org
9011 W: https://linuxtv.org
9012 W: http://palosaari.fi/linux/
9013 Q: http://patchwork.linuxtv.org/project/linux-media/list/
9015 F: drivers/media/dvb-frontends/mn88472*
9017 MN88473 MEDIA DRIVER
9018 M: Antti Palosaari <crope@iki.fi>
9019 L: linux-media@vger.kernel.org
9020 W: https://linuxtv.org
9021 W: http://palosaari.fi/linux/
9022 Q: http://patchwork.linuxtv.org/project/linux-media/list/
9024 F: drivers/media/dvb-frontends/mn88473*
9027 M: Jessica Yu <jeyu@kernel.org>
9028 M: Rusty Russell <rusty@rustcorp.com.au>
9029 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
9031 F: include/linux/module.h
9034 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
9035 W: http://popies.net/meye/
9037 F: Documentation/media/v4l-drivers/meye*
9038 F: drivers/media/pci/meye/
9039 F: include/uapi/linux/meye.h
9041 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
9042 M: Jiri Slaby <jirislaby@gmail.com>
9044 F: Documentation/serial/moxa-smartio
9045 F: drivers/tty/mxser.*
9047 MR800 AVERMEDIA USB FM RADIO DRIVER
9048 M: Alexey Klimov <klimov.linux@gmail.com>
9049 L: linux-media@vger.kernel.org
9050 T: git git://linuxtv.org/media_tree.git
9052 F: drivers/media/radio/radio-mr800.c
9054 MRF24J40 IEEE 802.15.4 RADIO DRIVER
9055 M: Alan Ott <alan@signal11.us>
9056 L: linux-wpan@vger.kernel.org
9058 F: drivers/net/ieee802154/mrf24j40.c
9059 F: Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
9062 M: "Lee, Chun-Yi" <jlee@suse.com>
9063 L: platform-driver-x86@vger.kernel.org
9065 F: drivers/platform/x86/msi-laptop.c
9068 L: platform-driver-x86@vger.kernel.org
9070 F: drivers/platform/x86/msi-wmi.c
9073 M: Antti Palosaari <crope@iki.fi>
9074 L: linux-media@vger.kernel.org
9075 W: https://linuxtv.org
9076 W: http://palosaari.fi/linux/
9077 Q: http://patchwork.linuxtv.org/project/linux-media/list/
9078 T: git git://linuxtv.org/anttip/media_tree.git
9080 F: drivers/media/tuners/msi001*
9082 MSI2500 MEDIA DRIVER
9083 M: Antti Palosaari <crope@iki.fi>
9084 L: linux-media@vger.kernel.org
9085 W: https://linuxtv.org
9086 W: http://palosaari.fi/linux/
9087 Q: http://patchwork.linuxtv.org/project/linux-media/list/
9088 T: git git://linuxtv.org/anttip/media_tree.git
9090 F: drivers/media/usb/msi2500/
9092 MSYSTEMS DISKONCHIP G3 MTD DRIVER
9093 M: Robert Jarzmik <robert.jarzmik@free.fr>
9094 L: linux-mtd@lists.infradead.org
9096 F: drivers/mtd/devices/docg3*
9098 MT9M032 APTINA SENSOR DRIVER
9099 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
9100 L: linux-media@vger.kernel.org
9101 T: git git://linuxtv.org/media_tree.git
9103 F: drivers/media/i2c/mt9m032.c
9104 F: include/media/i2c/mt9m032.h
9106 MT9P031 APTINA CAMERA SENSOR
9107 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
9108 L: linux-media@vger.kernel.org
9109 T: git git://linuxtv.org/media_tree.git
9111 F: drivers/media/i2c/mt9p031.c
9112 F: include/media/i2c/mt9p031.h
9114 MT9T001 APTINA CAMERA SENSOR
9115 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
9116 L: linux-media@vger.kernel.org
9117 T: git git://linuxtv.org/media_tree.git
9119 F: drivers/media/i2c/mt9t001.c
9120 F: include/media/i2c/mt9t001.h
9122 MT9V032 APTINA CAMERA SENSOR
9123 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
9124 L: linux-media@vger.kernel.org
9125 T: git git://linuxtv.org/media_tree.git
9127 F: Documentation/devicetree/bindings/media/i2c/mt9v032.txt
9128 F: drivers/media/i2c/mt9v032.c
9129 F: include/media/i2c/mt9v032.h
9131 MULTIFUNCTION DEVICES (MFD)
9132 M: Lee Jones <lee.jones@linaro.org>
9133 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
9135 F: Documentation/devicetree/bindings/mfd/
9137 F: include/linux/mfd/
9138 F: include/dt-bindings/mfd/
9140 MULTIMEDIA CARD (MMC) ETC. OVER SPI
9142 F: drivers/mmc/host/mmc_spi.c
9143 F: include/linux/spi/mmc_spi.h
9145 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
9146 M: Ulf Hansson <ulf.hansson@linaro.org>
9147 L: linux-mmc@vger.kernel.org
9148 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
9150 F: Documentation/devicetree/bindings/mmc/
9152 F: include/linux/mmc/
9153 F: include/uapi/linux/mmc/
9155 MULTIPLEXER SUBSYSTEM
9156 M: Peter Rosin <peda@axentia.se>
9158 F: Documentation/ABI/testing/mux/sysfs-class-mux*
9159 F: Documentation/devicetree/bindings/mux/
9160 F: include/linux/dt-bindings/mux/
9161 F: include/linux/mux/
9164 MULTISOUND SOUND DRIVER
9165 M: Andrew Veliath <andrewtv@usa.net>
9167 F: Documentation/sound/oss/MultiSound
9170 MULTITECH MULTIPORT CARD (ISICOM)
9172 F: drivers/tty/isicom.c
9173 F: include/linux/isicom.h
9175 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
9176 M: Bin Liu <b-liu@ti.com>
9177 L: linux-usb@vger.kernel.org
9178 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
9180 F: drivers/usb/musb/
9182 MXL5007T MEDIA DRIVER
9183 M: Michael Krufky <mkrufky@linuxtv.org>
9184 L: linux-media@vger.kernel.org
9185 W: https://linuxtv.org
9186 W: http://github.com/mkrufky
9187 Q: http://patchwork.linuxtv.org/project/linux-media/list/
9188 T: git git://linuxtv.org/mkrufky/tuners.git
9190 F: drivers/media/tuners/mxl5007t.*
9193 M: Marek Vasut <marex@denx.de>
9195 F: drivers/gpu/drm/mxsfb/
9196 F: Documentation/devicetree/bindings/display/mxsfb-drm.txt
9198 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
9199 M: Hyong-Youb Kim <hykim@myri.com>
9200 L: netdev@vger.kernel.org
9201 W: https://www.myricom.com/support/downloads/myri10ge.html
9203 F: drivers/net/ethernet/myricom/myri10ge/
9205 NAND FLASH SUBSYSTEM
9206 M: Boris Brezillon <boris.brezillon@free-electrons.com>
9207 R: Richard Weinberger <richard@nod.at>
9208 L: linux-mtd@lists.infradead.org
9209 W: http://www.linux-mtd.infradead.org/
9210 Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
9211 T: git git://git.infradead.org/linux-mtd.git nand/fixes
9212 T: git git://git.infradead.org/l2-mtd.git nand/next
9214 F: drivers/mtd/nand/
9215 F: include/linux/mtd/*nand*.h
9217 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
9218 M: Daniel Mack <zonque@gmail.com>
9220 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
9221 W: http://www.native-instruments.com
9224 NATSEMI ETHERNET DRIVER (DP8381x)
9226 F: drivers/net/ethernet/natsemi/natsemi.c
9229 M: Petr Vandrovec <petr@vandrovec.name>
9233 NCR 5380 SCSI DRIVERS
9234 M: Finn Thain <fthain@telegraphics.com.au>
9235 M: Michael Schmitz <schmitzmic@gmail.com>
9236 L: linux-scsi@vger.kernel.org
9238 F: Documentation/scsi/g_NCR5380.txt
9239 F: drivers/scsi/NCR5380.*
9240 F: drivers/scsi/arm/cumana_1.c
9241 F: drivers/scsi/arm/oak.c
9242 F: drivers/scsi/atari_scsi.*
9243 F: drivers/scsi/dmx3191d.c
9244 F: drivers/scsi/g_NCR5380.*
9245 F: drivers/scsi/mac_scsi.*
9246 F: drivers/scsi/sun3_scsi.*
9247 F: drivers/scsi/sun3_scsi_vme.c
9249 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
9250 M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
9251 L: linux-scsi@vger.kernel.org
9253 F: drivers/scsi/NCR_D700.*
9255 NCT6775 HARDWARE MONITOR DRIVER
9256 M: Guenter Roeck <linux@roeck-us.net>
9257 L: linux-hwmon@vger.kernel.org
9259 F: Documentation/hwmon/nct6775
9260 F: drivers/hwmon/nct6775.c
9262 NETEFFECT IWARP RNIC DRIVER (IW_NES)
9263 M: Faisal Latif <faisal.latif@intel.com>
9264 L: linux-rdma@vger.kernel.org
9265 W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
9267 F: drivers/infiniband/hw/nes/
9268 F: include/uapi/rdma/nes-abi.h
9270 NETEM NETWORK EMULATOR
9271 M: Stephen Hemminger <stephen@networkplumber.org>
9272 L: netem@lists.linux-foundation.org (moderated for non-subscribers)
9274 F: net/sched/sch_netem.c
9276 NETERION 10GbE DRIVERS (s2io/vxge)
9277 M: Jon Mason <jdmason@kudzu.us>
9278 L: netdev@vger.kernel.org
9280 F: Documentation/networking/s2io.txt
9281 F: Documentation/networking/vxge.txt
9282 F: drivers/net/ethernet/neterion/
9285 M: Pablo Neira Ayuso <pablo@netfilter.org>
9286 M: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
9287 M: Florian Westphal <fw@strlen.de>
9288 L: netfilter-devel@vger.kernel.org
9289 L: coreteam@netfilter.org
9290 W: http://www.netfilter.org/
9291 W: http://www.iptables.org/
9292 W: http://www.nftables.org/
9293 Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/
9294 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
9295 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
9297 F: include/linux/netfilter*
9298 F: include/linux/netfilter/
9299 F: include/net/netfilter/
9300 F: include/uapi/linux/netfilter*
9301 F: include/uapi/linux/netfilter/
9302 F: net/*/netfilter.c
9305 F: net/bridge/br_netfilter*.c
9307 NETROM NETWORK LAYER
9308 M: Ralf Baechle <ralf@linux-mips.org>
9309 L: linux-hams@vger.kernel.org
9310 W: http://www.linux-ax25.org/
9312 F: include/net/netrom.h
9313 F: include/uapi/linux/netrom.h
9316 NETRONOME ETHERNET DRIVERS
9317 M: Jakub Kicinski <jakub.kicinski@netronome.com>
9318 L: oss-drivers@netronome.com
9320 F: drivers/net/ethernet/netronome/
9322 NETWORK BLOCK DEVICE (NBD)
9323 M: Josef Bacik <jbacik@fb.com>
9325 L: linux-block@vger.kernel.org
9326 L: nbd-general@lists.sourceforge.net
9327 F: Documentation/blockdev/nbd.txt
9328 F: drivers/block/nbd.c
9329 F: include/uapi/linux/nbd.h
9331 NETWORK DROP MONITOR
9332 M: Neil Horman <nhorman@tuxdriver.com>
9333 L: netdev@vger.kernel.org
9335 W: https://fedorahosted.org/dropwatch/
9336 F: net/core/drop_monitor.c
9339 L: netdev@vger.kernel.org
9340 W: http://www.linuxfoundation.org/en/Net
9341 Q: http://patchwork.ozlabs.org/project/netdev/list/
9342 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
9343 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
9345 F: Documentation/devicetree/bindings/net/
9347 F: include/linux/if_*
9348 F: include/linux/netdevice.h
9349 F: include/linux/etherdevice.h
9350 F: include/linux/fcdevice.h
9351 F: include/linux/fddidevice.h
9352 F: include/linux/hippidevice.h
9353 F: include/linux/inetdevice.h
9354 F: include/uapi/linux/if_*
9355 F: include/uapi/linux/netdevice.h
9357 NETWORKING DRIVERS (WIRELESS)
9358 M: Kalle Valo <kvalo@codeaurora.org>
9359 L: linux-wireless@vger.kernel.org
9360 Q: http://patchwork.kernel.org/project/linux-wireless/list/
9361 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
9362 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
9364 F: Documentation/devicetree/bindings/net/wireless/
9365 F: drivers/net/wireless/
9368 M: Andrew Lunn <andrew@lunn.ch>
9369 M: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
9370 M: Florian Fainelli <f.fainelli@gmail.com>
9373 F: include/net/dsa.h
9376 NETWORKING [GENERAL]
9377 M: "David S. Miller" <davem@davemloft.net>
9378 L: netdev@vger.kernel.org
9379 W: http://www.linuxfoundation.org/en/Net
9380 Q: http://patchwork.ozlabs.org/project/netdev/list/
9381 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
9382 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
9383 B: mailto:netdev@vger.kernel.org
9387 F: include/linux/in.h
9388 F: include/linux/net.h
9389 F: include/linux/netdevice.h
9390 F: include/uapi/linux/in.h
9391 F: include/uapi/linux/net.h
9392 F: include/uapi/linux/netdevice.h
9393 F: include/uapi/linux/net_namespace.h
9395 F: tools/testing/selftests/net/
9399 M: Steffen Klassert <steffen.klassert@secunet.com>
9400 M: Herbert Xu <herbert@gondor.apana.org.au>
9401 M: "David S. Miller" <davem@davemloft.net>
9402 L: netdev@vger.kernel.org
9403 T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
9404 T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
9412 F: net/ipv4/ipcomp.c
9413 F: net/ipv4/ip_vti.c
9417 F: net/ipv6/ipcomp6.c
9418 F: net/ipv6/ip6_vti.c
9419 F: include/uapi/linux/xfrm.h
9420 F: include/net/xfrm.h
9422 NETWORKING [IPv4/IPv6]
9423 M: "David S. Miller" <davem@davemloft.net>
9424 M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
9425 M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
9426 L: netdev@vger.kernel.org
9427 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
9434 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
9435 M: Paul Moore <paul@paul-moore.com>
9436 W: https://github.com/netlabel
9437 L: netdev@vger.kernel.org
9438 L: linux-security-module@vger.kernel.org
9440 F: Documentation/netlabel/
9441 F: include/net/calipso.h
9442 F: include/net/cipso_ipv4.h
9443 F: include/net/netlabel.h
9444 F: include/uapi/linux/netfilter/xt_SECMARK.h
9445 F: include/uapi/linux/netfilter/xt_CONNSECMARK.h
9447 F: net/ipv4/cipso_ipv4.c
9448 F: net/ipv6/calipso.c
9449 F: net/netfilter/xt_CONNSECMARK.c
9450 F: net/netfilter/xt_SECMARK.c
9453 M: Ilya Lesokhin <ilyal@mellanox.com>
9454 M: Aviad Yehezkel <aviadye@mellanox.com>
9455 M: Dave Watson <davejwatson@fb.com>
9456 L: netdev@vger.kernel.org
9459 F: include/uapi/linux/tls.h
9460 F: include/net/tls.h
9462 NETWORKING [WIRELESS]
9463 L: linux-wireless@vger.kernel.org
9464 Q: http://patchwork.kernel.org/project/linux-wireless/list/
9466 NETXEN (1/10) GbE SUPPORT
9467 M: Manish Chopra <manish.chopra@cavium.com>
9468 M: Rahul Verma <rahul.verma@cavium.com>
9469 M: Dept-GELinuxNICDev@cavium.com
9470 L: netdev@vger.kernel.org
9472 F: drivers/net/ethernet/qlogic/netxen/
9475 M: Samuel Ortiz <sameo@linux.intel.com>
9476 L: linux-wireless@vger.kernel.org
9477 L: linux-nfc@lists.01.org (subscribers-only)
9481 F: include/uapi/linux/nfc.h
9483 F: include/linux/platform_data/nfcmrvl.h
9484 F: include/linux/platform_data/nxp-nci.h
9485 F: Documentation/devicetree/bindings/net/nfc/
9487 NFS, SUNRPC, AND LOCKD CLIENTS
9488 M: Trond Myklebust <trond.myklebust@primarydata.com>
9489 M: Anna Schumaker <anna.schumaker@netapp.com>
9490 L: linux-nfs@vger.kernel.org
9491 W: http://client.linux-nfs.org
9492 T: git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
9498 F: include/linux/lockd/
9499 F: include/linux/nfs*
9500 F: include/linux/sunrpc/
9501 F: include/uapi/linux/nfs*
9502 F: include/uapi/linux/sunrpc/
9505 M: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
9506 L: linux-nilfs@vger.kernel.org
9507 W: http://nilfs.sourceforge.net/
9508 W: http://nilfs.osdn.jp/
9509 T: git git://github.com/konis/nilfs2.git
9511 F: Documentation/filesystems/nilfs2.txt
9513 F: include/trace/events/nilfs2.h
9514 F: include/uapi/linux/nilfs2_api.h
9515 F: include/uapi/linux/nilfs2_ondisk.h
9517 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
9518 M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
9519 W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
9521 F: Documentation/scsi/NinjaSCSI.txt
9522 F: drivers/scsi/pcmcia/nsp_*
9524 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
9525 M: GOTO Masanori <gotom@debian.or.jp>
9526 M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
9527 W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
9529 F: Documentation/scsi/NinjaSCSI.txt
9530 F: drivers/scsi/nsp32*
9533 M: Ley Foon Tan <lftan@altera.com>
9534 L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
9535 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
9539 NOHZ, DYNTICKS SUPPORT
9540 M: Frederic Weisbecker <fweisbec@gmail.com>
9541 M: Thomas Gleixner <tglx@linutronix.de>
9542 M: Ingo Molnar <mingo@kernel.org>
9543 L: linux-kernel@vger.kernel.org
9544 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
9546 F: kernel/time/tick*.*
9547 F: include/linux/tick.h
9548 F: include/linux/sched/nohz.h
9550 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
9551 M: Pavel Machek <pavel@ucw.cz>
9552 M: Sakari Ailus <sakari.ailus@iki.fi>
9553 L: linux-media@vger.kernel.org
9555 F: drivers/media/i2c/et8ek8
9556 F: drivers/media/i2c/ad5820.c
9558 NOKIA N900 POWER SUPPLY DRIVERS
9559 R: Pali Rohár <pali.rohar@gmail.com>
9560 F: include/linux/power/bq2415x_charger.h
9561 F: include/linux/power/bq27xxx_battery.h
9562 F: include/linux/power/isp1704_charger.h
9563 F: drivers/power/supply/bq2415x_charger.c
9564 F: drivers/power/supply/bq27xxx_battery.c
9565 F: drivers/power/supply/bq27xxx_battery_i2c.c
9566 F: drivers/power/supply/isp1704_charger.c
9567 F: drivers/power/supply/rx51_battery.c
9570 M: Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
9571 L: linux-ntb@googlegroups.com
9573 F: drivers/ntb/hw/amd/
9576 M: Jon Mason <jdmason@kudzu.us>
9577 M: Dave Jiang <dave.jiang@intel.com>
9578 M: Allen Hubbe <Allen.Hubbe@emc.com>
9579 L: linux-ntb@googlegroups.com
9581 W: https://github.com/jonmason/ntb/wiki
9582 T: git git://github.com/jonmason/ntb.git
9584 F: drivers/net/ntb_netdev.c
9585 F: include/linux/ntb.h
9586 F: include/linux/ntb_transport.h
9587 F: tools/testing/selftests/ntb/
9590 M: Serge Semin <fancer.lancer@gmail.com>
9591 L: linux-ntb@googlegroups.com
9593 F: drivers/ntb/hw/idt/
9596 M: Jon Mason <jdmason@kudzu.us>
9597 M: Dave Jiang <dave.jiang@intel.com>
9598 L: linux-ntb@googlegroups.com
9600 W: https://github.com/jonmason/ntb/wiki
9601 T: git git://github.com/jonmason/ntb.git
9602 F: drivers/ntb/hw/intel/
9605 M: Anton Altaparmakov <anton@tuxera.com>
9606 L: linux-ntfs-dev@lists.sourceforge.net
9607 W: http://www.tuxera.com/
9608 T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
9610 F: Documentation/filesystems/ntfs.txt
9613 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
9614 M: Antonino Daplas <adaplas@gmail.com>
9615 L: linux-fbdev@vger.kernel.org
9617 F: drivers/video/fbdev/riva/
9618 F: drivers/video/fbdev/nvidia/
9621 M: Keith Busch <keith.busch@intel.com>
9622 M: Jens Axboe <axboe@fb.com>
9623 M: Christoph Hellwig <hch@lst.de>
9624 M: Sagi Grimberg <sagi@grimberg.me>
9625 L: linux-nvme@lists.infradead.org
9626 T: git://git.infradead.org/nvme.git
9627 W: http://git.infradead.org/nvme.git
9629 F: drivers/nvme/host/
9630 F: include/linux/nvme.h
9631 F: include/uapi/linux/nvme_ioctl.h
9633 NVM EXPRESS FC TRANSPORT DRIVERS
9634 M: James Smart <james.smart@broadcom.com>
9635 L: linux-nvme@lists.infradead.org
9637 F: include/linux/nvme-fc.h
9638 F: include/linux/nvme-fc-driver.h
9639 F: drivers/nvme/host/fc.c
9640 F: drivers/nvme/target/fc.c
9641 F: drivers/nvme/target/fcloop.c
9643 NVM EXPRESS TARGET DRIVER
9644 M: Christoph Hellwig <hch@lst.de>
9645 M: Sagi Grimberg <sagi@grimberg.me>
9646 L: linux-nvme@lists.infradead.org
9647 T: git://git.infradead.org/nvme.git
9648 W: http://git.infradead.org/nvme.git
9650 F: drivers/nvme/target/
9653 M: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
9656 F: Documentation/devicetree/bindings/nvmem/
9657 F: Documentation/ABI/stable/sysfs-bus-nvmem
9658 F: include/linux/nvmem-consumer.h
9659 F: include/linux/nvmem-provider.h
9661 NXP TDA998X DRM DRIVER
9662 M: Russell King <linux@armlinux.org.uk>
9664 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
9665 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
9666 F: drivers/gpu/drm/i2c/tda998x_drv.c
9667 F: include/drm/i2c/tda998x.h
9670 M: Peter Rosin <peda@axentia.se>
9671 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
9673 F: sound/soc/codecs/tfa9879*
9676 M: Clément Perrochaud <clement.perrochaud@effinnov.com>
9677 R: Charles Gorand <charles.gorand@effinnov.com>
9678 L: linux-nfc@lists.01.org (moderated for non-subscribers)
9680 F: drivers/nfc/nxp-nci
9683 M: Josh Poimboeuf <jpoimboe@redhat.com>
9688 M: Peter Ujfalusi <peter.ujfalusi@ti.com>
9689 M: Jarkko Nikula <jarkko.nikula@bitmer.com>
9690 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
9691 L: linux-omap@vger.kernel.org
9695 OMAP CLOCK FRAMEWORK SUPPORT
9696 M: Paul Walmsley <paul@pwsan.com>
9697 L: linux-omap@vger.kernel.org
9699 F: arch/arm/*omap*/*clock*
9701 OMAP DEVICE TREE SUPPORT
9702 M: Benoît Cousson <bcousson@baylibre.com>
9703 M: Tony Lindgren <tony@atomide.com>
9704 L: linux-omap@vger.kernel.org
9705 L: devicetree@vger.kernel.org
9707 F: arch/arm/boot/dts/*omap*
9708 F: arch/arm/boot/dts/*am3*
9709 F: arch/arm/boot/dts/*am4*
9710 F: arch/arm/boot/dts/*am5*
9711 F: arch/arm/boot/dts/*dra7*
9713 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
9714 M: Tomi Valkeinen <tomi.valkeinen@ti.com>
9715 L: linux-omap@vger.kernel.org
9716 L: linux-fbdev@vger.kernel.org
9718 F: drivers/video/fbdev/omap2/
9719 F: Documentation/arm/OMAP/DSS
9721 OMAP FRAMEBUFFER SUPPORT
9722 M: Tomi Valkeinen <tomi.valkeinen@ti.com>
9723 L: linux-fbdev@vger.kernel.org
9724 L: linux-omap@vger.kernel.org
9726 F: drivers/video/fbdev/omap/
9728 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
9729 M: Roger Quadros <rogerq@ti.com>
9730 M: Tony Lindgren <tony@atomide.com>
9731 L: linux-omap@vger.kernel.org
9733 F: drivers/memory/omap-gpmc.c
9734 F: arch/arm/mach-omap2/*gpmc*
9737 M: Grygorii Strashko <grygorii.strashko@ti.com>
9738 M: Santosh Shilimkar <ssantosh@kernel.org>
9739 M: Kevin Hilman <khilman@kernel.org>
9740 L: linux-omap@vger.kernel.org
9742 F: Documentation/devicetree/bindings/gpio/gpio-omap.txt
9743 F: drivers/gpio/gpio-omap.c
9745 OMAP HARDWARE SPINLOCK SUPPORT
9746 M: Ohad Ben-Cohen <ohad@wizery.com>
9747 L: linux-omap@vger.kernel.org
9749 F: drivers/hwspinlock/omap_hwspinlock.c
9752 L: linux-mmc@vger.kernel.org
9753 L: linux-omap@vger.kernel.org
9755 F: drivers/mmc/host/omap_hsmmc.c
9758 M: Paul Walmsley <paul@pwsan.com>
9759 L: linux-omap@vger.kernel.org
9761 F: arch/arm/mach-omap2/omap_hwmod*data*
9763 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
9764 M: Benoît Cousson <bcousson@baylibre.com>
9765 L: linux-omap@vger.kernel.org
9767 F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
9770 M: Benoît Cousson <bcousson@baylibre.com>
9771 M: Paul Walmsley <paul@pwsan.com>
9772 L: linux-omap@vger.kernel.org
9774 F: arch/arm/mach-omap2/omap_hwmod.*
9776 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
9777 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
9778 L: linux-media@vger.kernel.org
9780 F: Documentation/devicetree/bindings/media/ti,omap3isp.txt
9781 F: drivers/media/platform/omap3isp/
9782 F: drivers/staging/media/omap4iss/
9785 M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
9786 L: linux-omap@vger.kernel.org
9788 F: drivers/mmc/host/omap.c
9790 OMAP POWER MANAGEMENT SUPPORT
9791 M: Kevin Hilman <khilman@kernel.org>
9792 L: linux-omap@vger.kernel.org
9794 F: arch/arm/*omap*/*pm*
9795 F: drivers/cpufreq/omap-cpufreq.c
9797 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
9798 M: Rajendra Nayak <rnayak@codeaurora.org>
9799 M: Paul Walmsley <paul@pwsan.com>
9800 L: linux-omap@vger.kernel.org
9802 F: arch/arm/mach-omap2/prm*
9804 OMAP RANDOM NUMBER GENERATOR SUPPORT
9805 M: Deepak Saxena <dsaxena@plexity.net>
9807 F: drivers/char/hw_random/omap-rng.c
9810 L: linux-usb@vger.kernel.org
9811 L: linux-omap@vger.kernel.org
9813 F: drivers/usb/*/*omap*
9814 F: arch/arm/*omap*/usb*
9816 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
9817 M: Mark Jackson <mpfj@newflow.co.uk>
9818 L: linux-omap@vger.kernel.org
9820 F: arch/arm/boot/dts/am335x-nano.dts
9823 M: Aaro Koskinen <aaro.koskinen@iki.fi>
9824 M: Tony Lindgren <tony@atomide.com>
9825 L: linux-omap@vger.kernel.org
9826 Q: http://patchwork.kernel.org/project/linux-omap/list/
9827 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
9829 F: arch/arm/mach-omap1/
9830 F: arch/arm/plat-omap/
9831 F: arch/arm/configs/omap1_defconfig
9832 F: drivers/i2c/busses/i2c-omap.c
9833 F: include/linux/i2c-omap.h
9836 M: Tony Lindgren <tony@atomide.com>
9837 L: linux-omap@vger.kernel.org
9838 W: http://www.muru.com/linux/omap/
9839 W: http://linux.omap.com/
9840 Q: http://patchwork.kernel.org/project/linux-omap/list/
9841 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
9843 F: arch/arm/mach-omap2/
9844 F: arch/arm/plat-omap/
9845 F: arch/arm/configs/omap2plus_defconfig
9846 F: drivers/i2c/busses/i2c-omap.c
9847 F: drivers/irqchip/irq-omap-intc.c
9848 F: drivers/mfd/*omap*.c
9849 F: drivers/mfd/menelaus.c
9850 F: drivers/mfd/palmas.c
9851 F: drivers/mfd/tps65217.c
9852 F: drivers/mfd/tps65218.c
9853 F: drivers/mfd/tps65910.c
9854 F: drivers/mfd/twl-core.[ch]
9855 F: drivers/mfd/twl4030*.c
9856 F: drivers/mfd/twl6030*.c
9857 F: drivers/mfd/twl6040*.c
9858 F: drivers/regulator/palmas-regulator*.c
9859 F: drivers/regulator/pbias-regulator.c
9860 F: drivers/regulator/tps65217-regulator.c
9861 F: drivers/regulator/tps65218-regulator.c
9862 F: drivers/regulator/tps65910-regulator.c
9863 F: drivers/regulator/twl-regulator.c
9864 F: drivers/regulator/twl6030-regulator.c
9865 F: include/linux/i2c-omap.h
9868 M: Bob Copeland <me@bobcopeland.com>
9869 L: linux-karma-devel@lists.sourceforge.net
9871 F: Documentation/filesystems/omfs.txt
9874 OMNIKEY CARDMAN 4000 DRIVER
9875 M: Harald Welte <laforge@gnumonks.org>
9877 F: drivers/char/pcmcia/cm4000_cs.c
9878 F: include/linux/cm4000_cs.h
9879 F: include/uapi/linux/cm4000_cs.h
9881 OMNIKEY CARDMAN 4040 DRIVER
9882 M: Harald Welte <laforge@gnumonks.org>
9884 F: drivers/char/pcmcia/cm4040_cs.*
9886 OMNIVISION OV13858 SENSOR DRIVER
9887 M: Sakari Ailus <sakari.ailus@linux.intel.com>
9888 L: linux-media@vger.kernel.org
9889 T: git git://linuxtv.org/media_tree.git
9891 F: drivers/media/i2c/ov13858.c
9893 OMNIVISION OV5640 SENSOR DRIVER
9894 M: Steve Longerbeam <slongerbeam@gmail.com>
9895 L: linux-media@vger.kernel.org
9896 T: git git://linuxtv.org/media_tree.git
9898 F: drivers/media/i2c/ov5640.c
9900 OMNIVISION OV5647 SENSOR DRIVER
9901 M: Luis Oliveira <lolivei@synopsys.com>
9902 L: linux-media@vger.kernel.org
9903 T: git git://linuxtv.org/media_tree.git
9905 F: drivers/media/i2c/ov5647.c
9907 OMNIVISION OV7670 SENSOR DRIVER
9908 M: Jonathan Corbet <corbet@lwn.net>
9909 L: linux-media@vger.kernel.org
9910 T: git git://linuxtv.org/media_tree.git
9912 F: drivers/media/i2c/ov7670.c
9913 F: Documentation/devicetree/bindings/media/i2c/ov7670.txt
9915 ONENAND FLASH DRIVER
9916 M: Kyungmin Park <kyungmin.park@samsung.com>
9917 L: linux-mtd@lists.infradead.org
9919 F: drivers/mtd/onenand/
9920 F: include/linux/mtd/onenand*.h
9922 ONSTREAM SCSI TAPE DRIVER
9923 M: Willem Riede <osst@riede.org>
9924 L: osst-users@lists.sourceforge.net
9925 L: linux-scsi@vger.kernel.org
9927 F: Documentation/scsi/osst.txt
9928 F: drivers/scsi/osst.*
9929 F: drivers/scsi/osst_*.h
9930 F: drivers/scsi/st.h
9933 M: Jens Wiklander <jens.wiklander@linaro.org>
9935 F: drivers/tee/optee/
9938 M: Dennis Dalessandro <dennis.dalessandro@intel.com>
9939 M: Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com>
9940 L: linux-rdma@vger.kernel.org
9942 F: drivers/infiniband/ulp/opa_vnic
9944 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
9945 M: Pantelis Antoniou <pantelis.antoniou@konsulko.com>
9946 L: devicetree@vger.kernel.org
9948 F: Documentation/devicetree/dynamic-resolution-notes.txt
9949 F: Documentation/devicetree/overlay-notes.txt
9950 F: drivers/of/overlay.c
9951 F: drivers/of/resolver.c
9953 OPEN FIRMWARE AND FLATTENED DEVICE TREE
9954 M: Rob Herring <robh+dt@kernel.org>
9955 M: Frank Rowand <frowand.list@gmail.com>
9956 L: devicetree@vger.kernel.org
9957 W: http://www.devicetree.org/
9958 T: git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
9961 F: include/linux/of*.h
9963 F: Documentation/ABI/testing/sysfs-firmware-ofw
9965 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
9966 M: Rob Herring <robh+dt@kernel.org>
9967 M: Mark Rutland <mark.rutland@arm.com>
9968 L: devicetree@vger.kernel.org
9969 T: git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
9970 Q: http://patchwork.ozlabs.org/project/devicetree-bindings/list/
9972 F: Documentation/devicetree/
9974 F: include/dt-bindings/
9976 OPENCORES I2C BUS DRIVER
9977 M: Peter Korsgaard <jacmet@sunsite.dk>
9978 L: linux-i2c@vger.kernel.org
9980 F: Documentation/i2c/busses/i2c-ocores
9981 F: drivers/i2c/busses/i2c-ocores.c
9983 OPENRISC ARCHITECTURE
9984 M: Jonas Bonn <jonas@southpole.se>
9985 M: Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
9986 M: Stafford Horne <shorne@gmail.com>
9987 T: git git://github.com/openrisc/linux.git
9988 L: openrisc@lists.librecores.org
9989 W: http://openrisc.io
9994 M: Pravin Shelar <pshelar@nicira.com>
9995 L: netdev@vger.kernel.org
9996 L: dev@openvswitch.org
9997 W: http://openvswitch.org
10000 F: include/uapi/linux/openvswitch.h
10002 OPERATING PERFORMANCE POINTS (OPP)
10003 M: Viresh Kumar <vireshk@kernel.org>
10004 M: Nishanth Menon <nm@ti.com>
10005 M: Stephen Boyd <sboyd@codeaurora.org>
10006 L: linux-pm@vger.kernel.org
10008 T: git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
10009 F: drivers/base/power/opp/
10010 F: include/linux/pm_opp.h
10011 F: Documentation/power/opp.txt
10012 F: Documentation/devicetree/bindings/opp/
10015 M: Clemens Ladisch <clemens@ladisch.de>
10016 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
10017 T: git git://git.alsa-project.org/alsa-kernel.git
10019 F: sound/drivers/opl4/
10022 M: Robert Richter <rric@kernel.org>
10023 L: oprofile-list@lists.sf.net
10025 F: arch/*/include/asm/oprofile*.h
10026 F: arch/*/oprofile/
10027 F: drivers/oprofile/
10028 F: include/linux/oprofile.h
10030 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
10031 M: Mark Fasheh <mfasheh@versity.com>
10032 M: Joel Becker <jlbec@evilplan.org>
10033 L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
10034 W: http://ocfs2.wiki.kernel.org
10036 F: Documentation/filesystems/ocfs2.txt
10037 F: Documentation/filesystems/dlmfs.txt
10040 ORANGEFS FILESYSTEM
10041 M: Mike Marshall <hubcap@omnibond.com>
10042 L: pvfs2-developers@beowulf-underground.org (subscribers-only)
10043 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
10046 F: Documentation/filesystems/orangefs.txt
10049 L: linux-wireless@vger.kernel.org
10050 W: http://wireless.kernel.org/en/users/Drivers/orinoco
10051 W: http://www.nongnu.org/orinoco/
10053 F: drivers/net/wireless/intersil/orinoco/
10055 OSD LIBRARY and FILESYSTEM
10056 M: Boaz Harrosh <ooo@electrozaur.com>
10058 F: drivers/scsi/osd/
10059 F: include/scsi/osd_*
10062 OV2659 OMNIVISION SENSOR DRIVER
10063 M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
10064 L: linux-media@vger.kernel.org
10065 W: https://linuxtv.org
10066 Q: http://patchwork.linuxtv.org/project/linux-media/list/
10067 T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
10069 F: drivers/media/i2c/ov2659.c
10070 F: include/media/i2c/ov2659.h
10073 M: Miklos Szeredi <miklos@szeredi.hu>
10074 L: linux-unionfs@vger.kernel.org
10075 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
10078 F: Documentation/filesystems/overlayfs.txt
10080 P54 WIRELESS DRIVER
10081 M: Christian Lamparter <chunkeey@googlemail.com>
10082 L: linux-wireless@vger.kernel.org
10083 W: http://wireless.kernel.org/en/users/Drivers/p54
10085 F: drivers/net/wireless/intersil/p54/
10087 PA SEMI ETHERNET DRIVER
10088 L: netdev@vger.kernel.org
10090 F: drivers/net/ethernet/pasemi/*
10092 PA SEMI SMBUS DRIVER
10093 L: linux-i2c@vger.kernel.org
10095 F: drivers/i2c/busses/i2c-pasemi.c
10097 PADATA PARALLEL EXECUTION MECHANISM
10098 M: Steffen Klassert <steffen.klassert@secunet.com>
10099 L: linux-crypto@vger.kernel.org
10102 F: include/linux/padata.h
10103 F: Documentation/padata.txt
10105 PANASONIC LAPTOP ACPI EXTRAS DRIVER
10106 M: Harald Welte <laforge@gnumonks.org>
10107 L: platform-driver-x86@vger.kernel.org
10109 F: drivers/platform/x86/panasonic-laptop.c
10111 PANASONIC MN10300/AM33/AM34 PORT
10112 M: David Howells <dhowells@redhat.com>
10113 L: linux-am33-list@redhat.com (moderated for non-subscribers)
10114 W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
10116 F: Documentation/mn10300/
10119 PARALLEL LCD/KEYPAD PANEL DRIVER
10120 M: Willy Tarreau <willy@haproxy.com>
10121 M: Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
10123 F: Documentation/misc-devices/lcd-panel-cgram.txt
10124 F: drivers/misc/panel.c
10126 PARALLEL PORT SUBSYSTEM
10127 M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10128 M: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
10129 L: linux-parport@lists.infradead.org (subscribers-only)
10131 F: drivers/parport/
10132 F: include/linux/parport*.h
10133 F: drivers/char/ppdev.c
10134 F: include/uapi/linux/ppdev.h
10135 F: Documentation/parport*.txt
10137 PARAVIRT_OPS INTERFACE
10138 M: Jeremy Fitzhardinge <jeremy@goop.org>
10139 M: Chris Wright <chrisw@sous-sol.org>
10140 M: Alok Kataria <akataria@vmware.com>
10141 M: Rusty Russell <rusty@rustcorp.com.au>
10142 L: virtualization@lists.linux-foundation.org
10144 F: Documentation/virtual/paravirt_ops.txt
10145 F: arch/*/kernel/paravirt*
10146 F: arch/*/include/asm/paravirt.h
10147 F: include/linux/hypervisor.h
10149 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
10150 M: Tim Waugh <tim@cyberelk.net>
10151 L: linux-parport@lists.infradead.org (subscribers-only)
10153 F: Documentation/blockdev/paride.txt
10154 F: drivers/block/paride/
10156 PARISC ARCHITECTURE
10157 M: "James E.J. Bottomley" <jejb@parisc-linux.org>
10158 M: Helge Deller <deller@gmx.de>
10159 L: linux-parisc@vger.kernel.org
10160 W: http://www.parisc-linux.org/
10161 Q: http://patchwork.kernel.org/project/linux-parisc/list/
10162 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
10163 T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
10166 F: Documentation/parisc/
10168 F: drivers/char/agp/parisc-agp.c
10169 F: drivers/input/serio/gscps2.c
10170 F: drivers/parport/parport_gsc.*
10171 F: drivers/tty/serial/8250/8250_gsc.c
10172 F: drivers/video/fbdev/sti*
10173 F: drivers/video/console/sti*
10174 F: drivers/video/logo/logo_parisc*
10177 M: Jiri Pirko <jiri@mellanox.com>
10178 L: netdev@vger.kernel.org
10181 F: lib/test_parman.c
10182 F: include/linux/parman.h
10184 PC87360 HARDWARE MONITORING DRIVER
10185 M: Jim Cromie <jim.cromie@gmail.com>
10186 L: linux-hwmon@vger.kernel.org
10188 F: Documentation/hwmon/pc87360
10189 F: drivers/hwmon/pc87360.c
10191 PC8736x GPIO DRIVER
10192 M: Jim Cromie <jim.cromie@gmail.com>
10194 F: drivers/char/pc8736x_gpio.c
10196 PC87427 HARDWARE MONITORING DRIVER
10197 M: Jean Delvare <jdelvare@suse.com>
10198 L: linux-hwmon@vger.kernel.org
10200 F: Documentation/hwmon/pc87427
10201 F: drivers/hwmon/pc87427.c
10204 M: Riku Voipio <riku.voipio@iki.fi>
10206 F: drivers/leds/leds-pca9532.c
10207 F: include/linux/leds-pca9532.h
10209 PCA9541 I2C BUS MASTER SELECTOR DRIVER
10210 M: Guenter Roeck <linux@roeck-us.net>
10211 L: linux-i2c@vger.kernel.org
10213 F: drivers/i2c/muxes/i2c-mux-pca9541.c
10215 PCDP - PRIMARY CONSOLE AND DEBUG PORT
10216 M: Khalid Aziz <khalid@gonehiking.org>
10218 F: drivers/firmware/pcdp.*
10220 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
10221 M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10222 L: linux-pci@vger.kernel.org
10223 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10225 F: Documentation/devicetree/bindings/pci/aardvark-pci.txt
10226 F: drivers/pci/host/pci-aardvark.c
10228 PCI DRIVER FOR ALTERA PCIE IP
10229 M: Ley Foon Tan <lftan@altera.com>
10230 L: rfi@lists.rocketboards.org (moderated for non-subscribers)
10231 L: linux-pci@vger.kernel.org
10233 F: Documentation/devicetree/bindings/pci/altera-pcie.txt
10234 F: drivers/pci/host/pcie-altera.c
10236 PCI DRIVER FOR APPLIEDMICRO XGENE
10237 M: Tanmay Inamdar <tinamdar@apm.com>
10238 L: linux-pci@vger.kernel.org
10239 L: linux-arm-kernel@lists.infradead.org
10241 F: Documentation/devicetree/bindings/pci/xgene-pci.txt
10242 F: drivers/pci/host/pci-xgene.c
10244 PCI DRIVER FOR ARM VERSATILE PLATFORM
10245 M: Rob Herring <robh@kernel.org>
10246 L: linux-pci@vger.kernel.org
10247 L: linux-arm-kernel@lists.infradead.org
10249 F: Documentation/devicetree/bindings/pci/versatile.txt
10250 F: drivers/pci/host/pci-versatile.c
10252 PCI DRIVER FOR ARMADA 8K
10253 M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10254 L: linux-pci@vger.kernel.org
10255 L: linux-arm-kernel@lists.infradead.org
10257 F: Documentation/devicetree/bindings/pci/pci-armada8k.txt
10258 F: drivers/pci/dwc/pcie-armada8k.c
10260 PCI DRIVER FOR FREESCALE LAYERSCAPE
10261 M: Minghuan Lian <minghuan.Lian@freescale.com>
10262 M: Mingkai Hu <mingkai.hu@freescale.com>
10263 M: Roy Zang <tie-fei.zang@freescale.com>
10264 L: linuxppc-dev@lists.ozlabs.org
10265 L: linux-pci@vger.kernel.org
10266 L: linux-arm-kernel@lists.infradead.org
10268 F: drivers/pci/dwc/*layerscape*
10270 PCI DRIVER FOR GENERIC OF HOSTS
10271 M: Will Deacon <will.deacon@arm.com>
10272 L: linux-pci@vger.kernel.org
10273 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10275 F: Documentation/devicetree/bindings/pci/host-generic-pci.txt
10276 F: drivers/pci/host/pci-host-common.c
10277 F: drivers/pci/host/pci-host-generic.c
10279 PCI DRIVER FOR IMX6
10280 M: Richard Zhu <hongxing.zhu@nxp.com>
10281 M: Lucas Stach <l.stach@pengutronix.de>
10282 L: linux-pci@vger.kernel.org
10283 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10285 F: Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
10286 F: drivers/pci/dwc/*imx6*
10288 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
10289 M: Keith Busch <keith.busch@intel.com>
10290 M: Jonathan Derrick <jonathan.derrick@intel.com>
10291 L: linux-pci@vger.kernel.org
10293 F: drivers/pci/host/vmd.c
10295 PCI DRIVER FOR MICROSEMI SWITCHTEC
10296 M: Kurt Schwemmer <kurt.schwemmer@microsemi.com>
10297 M: Stephen Bates <stephen.bates@microsemi.com>
10298 M: Logan Gunthorpe <logang@deltatee.com>
10299 L: linux-pci@vger.kernel.org
10301 F: Documentation/switchtec.txt
10302 F: Documentation/ABI/testing/sysfs-class-switchtec
10303 F: drivers/pci/switch/switchtec*
10304 F: include/uapi/linux/switchtec_ioctl.h
10306 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
10307 M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10308 M: Jason Cooper <jason@lakedaemon.net>
10309 L: linux-pci@vger.kernel.org
10310 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10312 F: drivers/pci/host/*mvebu*
10314 PCI DRIVER FOR NVIDIA TEGRA
10315 M: Thierry Reding <thierry.reding@gmail.com>
10316 L: linux-tegra@vger.kernel.org
10317 L: linux-pci@vger.kernel.org
10319 F: Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
10320 F: drivers/pci/host/pci-tegra.c
10322 PCI DRIVER FOR RENESAS R-CAR
10323 M: Simon Horman <horms@verge.net.au>
10324 L: linux-pci@vger.kernel.org
10325 L: linux-renesas-soc@vger.kernel.org
10327 F: drivers/pci/host/*rcar*
10329 PCI DRIVER FOR SAMSUNG EXYNOS
10330 M: Jingoo Han <jingoohan1@gmail.com>
10331 L: linux-pci@vger.kernel.org
10332 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10333 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
10335 F: drivers/pci/dwc/pci-exynos.c
10337 PCI DRIVER FOR SYNOPSYS DESIGNWARE
10338 M: Jingoo Han <jingoohan1@gmail.com>
10339 M: Joao Pinto <Joao.Pinto@synopsys.com>
10340 L: linux-pci@vger.kernel.org
10342 F: Documentation/devicetree/bindings/pci/designware-pcie.txt
10343 F: drivers/pci/dwc/*designware*
10345 PCI DRIVER FOR TI DRA7XX
10346 M: Kishon Vijay Abraham I <kishon@ti.com>
10347 L: linux-omap@vger.kernel.org
10348 L: linux-pci@vger.kernel.org
10350 F: Documentation/devicetree/bindings/pci/ti-pci.txt
10351 F: drivers/pci/dwc/pci-dra7xx.c
10353 PCI DRIVER FOR TI KEYSTONE
10354 M: Murali Karicheri <m-karicheri2@ti.com>
10355 L: linux-pci@vger.kernel.org
10356 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10358 F: drivers/pci/dwc/*keystone*
10360 PCI ENDPOINT SUBSYSTEM
10361 M: Kishon Vijay Abraham I <kishon@ti.com>
10362 L: linux-pci@vger.kernel.org
10363 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
10365 F: drivers/pci/endpoint/
10366 F: drivers/misc/pci_endpoint_test.c
10369 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
10370 M: Russell Currey <ruscur@russell.cc>
10371 L: linuxppc-dev@lists.ozlabs.org
10373 F: Documentation/powerpc/eeh-pci-error-recovery.txt
10374 F: arch/powerpc/kernel/eeh*.c
10375 F: arch/powerpc/platforms/*/eeh*.c
10376 F: arch/powerpc/include/*/eeh*.h
10379 M: Linas Vepstas <linasvepstas@gmail.com>
10380 L: linux-pci@vger.kernel.org
10382 F: Documentation/PCI/pci-error-recovery.txt
10384 PCI MSI DRIVER FOR ALTERA MSI IP
10385 M: Ley Foon Tan <lftan@altera.com>
10386 L: rfi@lists.rocketboards.org (moderated for non-subscribers)
10387 L: linux-pci@vger.kernel.org
10389 F: Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
10390 F: drivers/pci/host/pcie-altera-msi.c
10392 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
10393 M: Duc Dang <dhdang@apm.com>
10394 L: linux-pci@vger.kernel.org
10395 L: linux-arm-kernel@lists.infradead.org
10397 F: Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
10398 F: drivers/pci/host/pci-xgene-msi.c
10401 M: Bjorn Helgaas <bhelgaas@google.com>
10402 L: linux-pci@vger.kernel.org
10403 Q: http://patchwork.ozlabs.org/project/linux-pci/list/
10404 T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
10406 F: Documentation/devicetree/bindings/pci/
10407 F: Documentation/PCI/
10409 F: include/linux/pci*
10411 F: arch/x86/kernel/quirks.c
10413 PCIE DRIVER FOR AXIS ARTPEC
10414 M: Niklas Cassel <niklas.cassel@axis.com>
10415 M: Jesper Nilsson <jesper.nilsson@axis.com>
10416 L: linux-arm-kernel@axis.com
10417 L: linux-pci@vger.kernel.org
10419 F: Documentation/devicetree/bindings/pci/axis,artpec*
10420 F: drivers/pci/dwc/*artpec*
10422 PCIE DRIVER FOR CAVIUM THUNDERX
10423 M: David Daney <david.daney@cavium.com>
10424 L: linux-pci@vger.kernel.org
10425 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10427 F: Documentation/devicetree/bindings/pci/pci-thunder-*
10428 F: drivers/pci/host/pci-thunder-*
10430 PCIE DRIVER FOR HISILICON
10431 M: Zhou Wang <wangzhou1@hisilicon.com>
10432 M: Gabriele Paoloni <gabriele.paoloni@huawei.com>
10433 L: linux-pci@vger.kernel.org
10435 F: Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
10436 F: drivers/pci/dwc/pcie-hisi.c
10438 PCIE DRIVER FOR HISILICON KIRIN
10439 M: Xiaowei Song <songxiaowei@hisilicon.com>
10440 M: Binghui Wang <wangbinghui@hisilicon.com>
10441 L: linux-pci@vger.kernel.org
10443 F: Documentation/devicetree/bindings/pci/pcie-kirin.txt
10444 F: drivers/pci/dwc/pcie-kirin.c
10446 PCIE DRIVER FOR MEDIATEK
10447 M: Ryder Lee <ryder.lee@mediatek.com>
10448 L: linux-pci@vger.kernel.org
10449 L: linux-mediatek@lists.infradead.org
10451 F: Documentation/devicetree/bindings/pci/mediatek*
10452 F: drivers/pci/host/*mediatek*
10454 PCIE DRIVER FOR QUALCOMM MSM
10455 M: Stanimir Varbanov <svarbanov@mm-sol.com>
10456 L: linux-pci@vger.kernel.org
10457 L: linux-arm-msm@vger.kernel.org
10459 F: drivers/pci/dwc/*qcom*
10461 PCIE DRIVER FOR ROCKCHIP
10462 M: Shawn Lin <shawn.lin@rock-chips.com>
10463 L: linux-pci@vger.kernel.org
10464 L: linux-rockchip@lists.infradead.org
10466 F: Documentation/devicetree/bindings/pci/rockchip-pcie.txt
10467 F: drivers/pci/host/pcie-rockchip.c
10469 PCIE DRIVER FOR ST SPEAR13XX
10470 M: Pratyush Anand <pratyush.anand@gmail.com>
10471 L: linux-pci@vger.kernel.org
10473 F: drivers/pci/dwc/*spear*
10476 P: Linux PCMCIA Team
10477 L: linux-pcmcia@lists.infradead.org
10478 W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
10479 T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
10481 F: Documentation/pcmcia/
10486 PCNET32 NETWORK DRIVER
10487 M: Don Fry <pcnet32@frontier.com>
10488 L: netdev@vger.kernel.org
10490 F: drivers/net/ethernet/amd/pcnet32.c
10492 PCRYPT PARALLEL CRYPTO ENGINE
10493 M: Steffen Klassert <steffen.klassert@secunet.com>
10494 L: linux-crypto@vger.kernel.org
10497 F: include/crypto/pcrypt.h
10499 PER-CPU MEMORY ALLOCATOR
10500 M: Tejun Heo <tj@kernel.org>
10501 M: Christoph Lameter <cl@linux.com>
10502 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
10504 F: include/linux/percpu*.h
10506 F: arch/*/include/asm/percpu.h
10508 PER-TASK DELAY ACCOUNTING
10509 M: Balbir Singh <bsingharora@gmail.com>
10511 F: include/linux/delayacct.h
10512 F: kernel/delayacct.c
10514 PERFORMANCE EVENTS SUBSYSTEM
10515 M: Peter Zijlstra <peterz@infradead.org>
10516 M: Ingo Molnar <mingo@redhat.com>
10517 M: Arnaldo Carvalho de Melo <acme@kernel.org>
10518 R: Alexander Shishkin <alexander.shishkin@linux.intel.com>
10519 L: linux-kernel@vger.kernel.org
10520 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
10523 F: include/linux/perf_event.h
10524 F: include/uapi/linux/perf_event.h
10525 F: arch/*/kernel/perf_event*.c
10526 F: arch/*/kernel/*/perf_event*.c
10527 F: arch/*/kernel/*/*/perf_event*.c
10528 F: arch/*/include/asm/perf_event.h
10529 F: arch/*/kernel/perf_callchain.c
10533 PERSONALITY HANDLING
10534 M: Christoph Hellwig <hch@infradead.org>
10535 L: linux-abi-devel@lists.sourceforge.net
10537 F: include/linux/personality.h
10538 F: include/uapi/linux/personality.h
10541 M: Remi Denis-Courmont <courmisch@gmail.com>
10543 F: Documentation/networking/phonet.txt
10544 F: include/linux/phonet.h
10545 F: include/net/phonet/
10546 F: include/uapi/linux/phonet.h
10550 M: Joern Engel <joern@lazybastard.org>
10551 L: linux-mtd@lists.infradead.org
10553 F: drivers/mtd/devices/phram.c
10556 M: Bruno Prémont <bonbons@linux-vserver.org>
10557 L: linux-input@vger.kernel.org
10559 F: drivers/hid/hid-picolcd*
10562 M: Jamie Iles <jamie@jamieiles.com>
10563 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10564 T: git git://github.com/jamieiles/linux-2.6-ji.git
10566 F: arch/arm/boot/dts/picoxcell*
10567 F: arch/arm/mach-picoxcell/
10568 F: drivers/crypto/picoxcell*
10570 PIN CONTROL SUBSYSTEM
10571 M: Linus Walleij <linus.walleij@linaro.org>
10572 L: linux-gpio@vger.kernel.org
10573 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
10575 F: Documentation/devicetree/bindings/pinctrl/
10576 F: Documentation/driver-api/pinctl.rst
10577 F: drivers/pinctrl/
10578 F: include/linux/pinctrl/
10580 PIN CONTROLLER - ATMEL AT91
10581 M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
10582 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10584 F: drivers/pinctrl/pinctrl-at91.*
10586 PIN CONTROLLER - ATMEL AT91 PIO4
10587 M: Ludovic Desroches <ludovic.desroches@microchip.com>
10588 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10589 L: linux-gpio@vger.kernel.org
10591 F: drivers/pinctrl/pinctrl-at91-pio4.*
10593 PIN CONTROLLER - INTEL
10594 M: Mika Westerberg <mika.westerberg@linux.intel.com>
10595 M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
10597 F: drivers/pinctrl/intel/
10599 PIN CONTROLLER - QUALCOMM
10600 M: Bjorn Andersson <bjorn.andersson@linaro.org>
10602 L: linux-arm-msm@vger.kernel.org
10603 F: Documentation/devicetree/bindings/pinctrl/qcom,*.txt
10604 F: drivers/pinctrl/qcom/
10606 PIN CONTROLLER - RENESAS
10607 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10608 M: Geert Uytterhoeven <geert+renesas@glider.be>
10609 L: linux-renesas-soc@vger.kernel.org
10611 F: drivers/pinctrl/sh-pfc/
10613 PIN CONTROLLER - SAMSUNG
10614 M: Tomasz Figa <tomasz.figa@gmail.com>
10615 M: Krzysztof Kozlowski <krzk@kernel.org>
10616 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
10617 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10618 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
10619 Q: https://patchwork.kernel.org/project/linux-samsung-soc/list/
10620 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
10622 F: drivers/pinctrl/samsung/
10623 F: include/dt-bindings/pinctrl/samsung.h
10624 F: Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
10626 PIN CONTROLLER - SINGLE
10627 M: Tony Lindgren <tony@atomide.com>
10628 M: Haojian Zhuang <haojian.zhuang@linaro.org>
10629 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10630 L: linux-omap@vger.kernel.org
10632 F: drivers/pinctrl/pinctrl-single.c
10634 PIN CONTROLLER - ST SPEAR
10635 M: Viresh Kumar <vireshk@kernel.org>
10636 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10637 W: http://www.st.com/spear
10639 F: drivers/pinctrl/spear/
10641 PISTACHIO SOC SUPPORT
10642 M: James Hartley <james.hartley@imgtec.com>
10643 M: Ionela Voinescu <ionela.voinescu@imgtec.com>
10644 L: linux-mips@linux-mips.org
10646 F: arch/mips/pistachio/
10647 F: arch/mips/include/asm/mach-pistachio/
10648 F: arch/mips/boot/dts/img/pistachio*
10649 F: arch/mips/configs/pistachio*_defconfig
10653 M: linux-block@vger.kernel.org
10654 F: drivers/block/pktcdvd.c
10655 F: include/linux/pktcdvd.h
10656 F: include/uapi/linux/pktcdvd.h
10658 PKUNITY SOC DRIVERS
10659 M: Guan Xuetao <gxt@mprc.pku.edu.cn>
10660 W: http://mprc.pku.edu.cn/~guanxuetao/linux
10662 T: git git://github.com/gxt/linux.git
10663 F: drivers/input/serio/i8042-unicore32io.h
10664 F: drivers/i2c/busses/i2c-puv3.c
10665 F: drivers/video/fbdev/fb-puv3.c
10666 F: drivers/rtc/rtc-puv3.c
10668 PMBUS HARDWARE MONITORING DRIVERS
10669 M: Guenter Roeck <linux@roeck-us.net>
10670 L: linux-hwmon@vger.kernel.org
10671 W: http://hwmon.wiki.kernel.org/
10672 W: http://www.roeck-us.net/linux/drivers/
10673 T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
10675 F: Documentation/hwmon/pmbus
10676 F: drivers/hwmon/pmbus/
10677 F: include/linux/pmbus.h
10679 PMC SIERRA MaxRAID DRIVER
10680 L: linux-scsi@vger.kernel.org
10681 W: http://www.pmc-sierra.com/
10683 F: drivers/scsi/pmcraid.*
10685 PMC SIERRA PM8001 DRIVER
10686 M: Jack Wang <jinpu.wang@profitbricks.com>
10687 M: lindar_liu@usish.com
10688 L: linux-scsi@vger.kernel.org
10690 F: drivers/scsi/pm8001/
10693 M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
10697 POSIX CLOCKS and TIMERS
10698 M: Thomas Gleixner <tglx@linutronix.de>
10699 L: linux-kernel@vger.kernel.org
10700 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
10703 F: include/linux/timer*
10704 F: kernel/time/*timer*
10706 POWER MANAGEMENT CORE
10707 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
10708 L: linux-pm@vger.kernel.org
10709 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
10710 B: https://bugzilla.kernel.org
10712 F: drivers/base/power/
10713 F: include/linux/pm.h
10714 F: include/linux/pm_*
10715 F: include/linux/powercap.h
10716 F: drivers/powercap/
10718 POWER STATE COORDINATION INTERFACE (PSCI)
10719 M: Mark Rutland <mark.rutland@arm.com>
10720 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
10721 L: linux-arm-kernel@lists.infradead.org
10723 F: drivers/firmware/psci*.c
10724 F: include/linux/psci.h
10725 F: include/uapi/linux/psci.h
10727 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
10728 M: Sebastian Reichel <sre@kernel.org>
10729 L: linux-pm@vger.kernel.org
10730 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
10732 F: Documentation/devicetree/bindings/power/supply/
10733 F: include/linux/power_supply.h
10734 F: drivers/power/supply/
10736 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
10737 M: Suraj Jitindar Singh <sjitindarsingh@gmail.com>
10738 L: linuxppc-dev@lists.ozlabs.org
10740 F: drivers/char/powernv-op-panel.c
10742 PPP OVER ATM (RFC 2364)
10743 M: Mitchell Blank Jr <mitch@sfgoth.com>
10745 F: net/atm/pppoatm.c
10746 F: include/uapi/linux/atmppp.h
10749 M: Michal Ostrowski <mostrows@earthlink.net>
10751 F: drivers/net/ppp/pppoe.c
10752 F: drivers/net/ppp/pppox.c
10755 M: James Chapman <jchapman@katalix.com>
10757 F: net/l2tp/l2tp_ppp.c
10758 F: include/linux/if_pppol2tp.h
10759 F: include/uapi/linux/if_pppol2tp.h
10761 PPP PROTOCOL DRIVERS AND COMPRESSORS
10762 M: Paul Mackerras <paulus@samba.org>
10763 L: linux-ppp@vger.kernel.org
10765 F: drivers/net/ppp/ppp_*
10768 M: Rodolfo Giometti <giometti@enneenne.com>
10769 W: http://wiki.enneenne.com/index.php/LinuxPPS_support
10770 L: linuxpps@ml.enneenne.com (subscribers-only)
10772 F: Documentation/pps/
10773 F: Documentation/devicetree/bindings/pps/pps-gpio.txt
10774 F: Documentation/ABI/testing/sysfs-pps
10776 F: include/linux/pps*.h
10777 F: include/uapi/linux/pps.h
10780 M: Dmitry Kozlov <xeb@mail.ru>
10781 L: netdev@vger.kernel.org
10783 F: drivers/net/ppp/pptp.c
10784 W: http://sourceforge.net/projects/accel-pptp
10787 M: Robert Love <rml@tech9.net>
10788 L: kpreempt-tech@lists.sourceforge.net
10789 W: https://www.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
10791 F: Documentation/preempt-locking.txt
10792 F: include/linux/preempt.h
10795 M: Petr Mladek <pmladek@suse.com>
10796 M: Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
10797 R: Steven Rostedt <rostedt@goodmis.org>
10800 F: include/linux/printk.h
10802 PRISM54 WIRELESS DRIVER
10803 M: "Luis R. Rodriguez" <mcgrof@gmail.com>
10804 L: linux-wireless@vger.kernel.org
10805 W: http://wireless.kernel.org/en/users/Drivers/p54
10807 F: drivers/net/wireless/intersil/prism54/
10810 M: "Luis R. Rodriguez" <mcgrof@kernel.org>
10811 M: Kees Cook <keescook@chromium.org>
10812 L: linux-kernel@vger.kernel.org
10813 L: linux-fsdevel@vger.kernel.org
10815 F: fs/proc/proc_sysctl.c
10816 F: include/linux/sysctl.h
10818 F: tools/testing/selftests/sysctl/
10820 PS3 NETWORK SUPPORT
10821 M: Geoff Levand <geoff@infradead.org>
10822 L: netdev@vger.kernel.org
10823 L: linuxppc-dev@lists.ozlabs.org
10825 F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
10827 PS3 PLATFORM SUPPORT
10828 M: Geoff Levand <geoff@infradead.org>
10829 L: linuxppc-dev@lists.ozlabs.org
10831 F: arch/powerpc/boot/ps3*
10832 F: arch/powerpc/include/asm/lv1call.h
10833 F: arch/powerpc/include/asm/ps3*.h
10834 F: arch/powerpc/platforms/ps3/
10837 F: drivers/rtc/rtc-ps3.c
10838 F: drivers/usb/host/*ps3.c
10839 F: sound/ppc/snd_ps3*
10842 M: Jim Paris <jim@jtan.com>
10843 M: Geoff Levand <geoff@infradead.org>
10844 L: linuxppc-dev@lists.ozlabs.org
10846 F: drivers/block/ps3vram.c
10848 PSAMPLE PACKET SAMPLING SUPPORT:
10849 M: Yotam Gigi <yotamg@mellanox.com>
10852 F: include/net/psample.h
10853 F: include/uapi/linux/psample.h
10856 M: Kees Cook <keescook@chromium.org>
10857 M: Anton Vorontsov <anton@enomsg.org>
10858 M: Colin Cross <ccross@android.com>
10859 M: Tony Luck <tony.luck@intel.com>
10861 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
10863 F: include/linux/pstore*
10864 F: drivers/firmware/efi/efi-pstore.c
10865 F: drivers/acpi/apei/erst.c
10866 F: Documentation/admin-guide/ramoops.rst
10867 F: Documentation/devicetree/bindings/reserved-memory/ramoops.txt
10868 K: \b(pstore|ramoops)
10870 PTP HARDWARE CLOCK SUPPORT
10871 M: Richard Cochran <richardcochran@gmail.com>
10872 L: netdev@vger.kernel.org
10874 W: http://linuxptp.sourceforge.net/
10875 F: Documentation/ABI/testing/sysfs-ptp
10876 F: Documentation/ptp/*
10877 F: drivers/net/ethernet/freescale/gianfar_ptp.c
10878 F: drivers/net/phy/dp83640*
10880 F: include/linux/ptp_cl*
10883 M: Oleg Nesterov <oleg@redhat.com>
10885 F: include/asm-generic/syscall.h
10886 F: include/linux/ptrace.h
10887 F: include/linux/regset.h
10888 F: include/linux/tracehook.h
10889 F: include/uapi/linux/ptrace.h
10890 F: include/uapi/linux/ptrace.h
10891 F: include/asm-generic/ptrace.h
10893 F: arch/*/ptrace*.c
10894 F: arch/*/*/ptrace*.c
10895 F: arch/*/include/asm/ptrace*.h
10898 M: Hans Verkuil <hverkuil@xs4all.nl>
10899 L: linux-media@vger.kernel.org
10900 T: git git://linuxtv.org/media_tree.git
10902 F: drivers/media/usb/pulse8-cec/*
10903 F: Documentation/media/cec-drivers/pulse8-cec.rst
10905 PVRUSB2 VIDEO4LINUX DRIVER
10906 M: Mike Isely <isely@pobox.com>
10907 L: pvrusb2@isely.net (subscribers-only)
10908 L: linux-media@vger.kernel.org
10909 W: http://www.isely.net/pvrusb2/
10910 T: git git://linuxtv.org/media_tree.git
10912 F: Documentation/media/v4l-drivers/pvrusb2*
10913 F: drivers/media/usb/pvrusb2/
10916 M: Hans Verkuil <hverkuil@xs4all.nl>
10917 L: linux-media@vger.kernel.org
10918 T: git git://linuxtv.org/media_tree.git
10920 F: drivers/media/usb/pwc/*
10923 M: Kamil Debski <kamil@wypas.org>
10924 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10925 L: linux-hwmon@vger.kernel.org
10927 F: Documentation/devicetree/bindings/hwmon/pwm-fan.txt
10928 F: Documentation/hwmon/pwm-fan
10929 F: drivers/hwmon/pwm-fan.c
10932 M: Sean Young <sean@mess.org>
10933 L: linux-media@vger.kernel.org
10935 F: drivers/media/rc/pwm-ir-tx.c
10938 M: Thierry Reding <thierry.reding@gmail.com>
10939 L: linux-pwm@vger.kernel.org
10941 T: git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
10942 F: Documentation/pwm.txt
10943 F: Documentation/devicetree/bindings/pwm/
10944 F: include/linux/pwm.h
10946 F: drivers/video/backlight/pwm_bl.c
10947 F: include/linux/pwm_backlight.h
10948 F: drivers/gpio/gpio-mvebu.c
10949 F: Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
10952 M: Robert Jarzmik <robert.jarzmik@free.fr>
10953 L: linux-gpio@vger.kernel.org
10955 F: drivers/gpio/gpio-pxa.c
10961 M: Robert Jarzmik <robert.jarzmik@free.fr>
10962 L: linux-rtc@vger.kernel.org
10965 PXA2xx/PXA3xx SUPPORT
10966 M: Daniel Mack <daniel@zonque.org>
10967 M: Haojian Zhuang <haojian.zhuang@gmail.com>
10968 M: Robert Jarzmik <robert.jarzmik@free.fr>
10969 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10970 T: git git://github.com/hzhuang1/linux.git
10971 T: git git://github.com/rjarzmik/linux.git
10973 F: arch/arm/boot/dts/pxa*
10974 F: arch/arm/mach-pxa/
10975 F: drivers/dma/pxa*
10976 F: drivers/pcmcia/pxa2xx*
10977 F: drivers/pinctrl/pxa/
10978 F: drivers/spi/spi-pxa2xx*
10979 F: drivers/usb/gadget/udc/pxa2*
10980 F: include/sound/pxa2xx-lib.h
10984 PXA3xx NAND FLASH DRIVER
10985 M: Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
10986 L: linux-mtd@lists.infradead.org
10988 F: drivers/mtd/nand/pxa3xx_nand.c
10991 M: Giovanni Cabiddu <giovanni.cabiddu@intel.com>
10992 M: Salvatore Benedetto <salvatore.benedetto@intel.com>
10993 L: qat-linux@intel.com
10995 F: drivers/crypto/qat/
10997 QCOM AUDIO (ASoC) DRIVERS
10998 M: Patrick Lai <plai@codeaurora.org>
10999 M: Banajit Goswami <bgoswami@codeaurora.org>
11000 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
11004 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
11005 M: Gabriel Somlo <somlo@cmu.edu>
11006 M: "Michael S. Tsirkin" <mst@redhat.com>
11007 L: qemu-devel@nongnu.org
11009 F: drivers/firmware/qemu_fw_cfg.c
11012 M: Mike Marciniszyn <infinipath@intel.com>
11013 L: linux-rdma@vger.kernel.org
11015 F: drivers/infiniband/hw/qib/
11017 QLOGIC QL41xxx FCOE DRIVER
11018 M: QLogic-Storage-Upstream@cavium.com
11019 L: linux-scsi@vger.kernel.org
11021 F: drivers/scsi/qedf/
11023 QLOGIC QL41xxx ISCSI DRIVER
11024 M: QLogic-Storage-Upstream@cavium.com
11025 L: linux-scsi@vger.kernel.org
11027 F: drivers/scsi/qedi/
11029 QLOGIC QL4xxx ETHERNET DRIVER
11030 M: Yuval Mintz <Yuval.Mintz@cavium.com>
11031 M: Ariel Elior <Ariel.Elior@cavium.com>
11032 M: everest-linux-l2@cavium.com
11033 L: netdev@vger.kernel.org
11035 F: drivers/net/ethernet/qlogic/qed/
11036 F: include/linux/qed/
11037 F: drivers/net/ethernet/qlogic/qede/
11039 QLOGIC QL4xxx RDMA DRIVER
11040 M: Ram Amrani <Ram.Amrani@cavium.com>
11041 M: Ariel Elior <Ariel.Elior@cavium.com>
11042 L: linux-rdma@vger.kernel.org
11044 F: drivers/infiniband/hw/qedr/
11045 F: include/uapi/rdma/qedr-abi.h
11047 QLOGIC QLA1280 SCSI DRIVER
11048 M: Michael Reed <mdr@sgi.com>
11049 L: linux-scsi@vger.kernel.org
11051 F: drivers/scsi/qla1280.[ch]
11053 QLOGIC QLA2XXX FC-SCSI DRIVER
11054 M: qla2xxx-upstream@qlogic.com
11055 L: linux-scsi@vger.kernel.org
11057 F: Documentation/scsi/LICENSE.qla2xxx
11058 F: drivers/scsi/qla2xxx/
11060 QLOGIC QLA3XXX NETWORK DRIVER
11061 M: Dept-GELinuxNICDev@cavium.com
11062 L: netdev@vger.kernel.org
11064 F: Documentation/networking/LICENSE.qla3xxx
11065 F: drivers/net/ethernet/qlogic/qla3xxx.*
11067 QLOGIC QLA4XXX iSCSI DRIVER
11068 M: QLogic-Storage-Upstream@qlogic.com
11069 L: linux-scsi@vger.kernel.org
11071 F: Documentation/scsi/LICENSE.qla4xxx
11072 F: drivers/scsi/qla4xxx/
11074 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
11075 M: Harish Patil <harish.patil@cavium.com>
11076 M: Manish Chopra <manish.chopra@cavium.com>
11077 M: Dept-GELinuxNICDev@cavium.com
11078 L: netdev@vger.kernel.org
11080 F: drivers/net/ethernet/qlogic/qlcnic/
11082 QLOGIC QLGE 10Gb ETHERNET DRIVER
11083 M: Harish Patil <harish.patil@cavium.com>
11084 M: Manish Chopra <manish.chopra@cavium.com>
11085 M: Dept-GELinuxNICDev@cavium.com
11086 L: netdev@vger.kernel.org
11088 F: drivers/net/ethernet/qlogic/qlge/
11091 M: Anders Larsen <al@alarsen.net>
11092 W: http://www.alarsen.net/linux/qnx4fs/
11095 F: include/uapi/linux/qnx4_fs.h
11096 F: include/uapi/linux/qnxtypes.h
11098 QORIQ DPAA2 FSL-MC BUS DRIVER
11099 M: Stuart Yoder <stuyoder@gmail.com>
11100 M: Laurentiu Tudor <laurentiu.tudor@nxp.com>
11101 L: linux-kernel@vger.kernel.org
11103 F: drivers/staging/fsl-mc/
11104 F: Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
11106 QT1010 MEDIA DRIVER
11107 M: Antti Palosaari <crope@iki.fi>
11108 L: linux-media@vger.kernel.org
11109 W: https://linuxtv.org
11110 W: http://palosaari.fi/linux/
11111 Q: http://patchwork.linuxtv.org/project/linux-media/list/
11112 T: git git://linuxtv.org/anttip/media_tree.git
11114 F: drivers/media/tuners/qt1010*
11116 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
11117 M: Kalle Valo <kvalo@qca.qualcomm.com>
11118 L: ath10k@lists.infradead.org
11119 W: http://wireless.kernel.org/en/users/Drivers/ath10k
11120 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
11122 F: drivers/net/wireless/ath/ath10k/
11124 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
11125 M: QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
11126 L: linux-wireless@vger.kernel.org
11127 W: http://wireless.kernel.org/en/users/Drivers/ath9k
11129 F: drivers/net/wireless/ath/ath9k/
11131 QUALCOMM CAMERA SUBSYSTEM DRIVER
11132 M: Todor Tomov <todor.tomov@linaro.org>
11133 L: linux-media@vger.kernel.org
11135 F: Documentation/devicetree/bindings/media/qcom,camss.txt
11136 F: Documentation/media/v4l-drivers/qcom_camss.rst
11137 F: drivers/media/platform/qcom/camss-8x16/
11139 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
11140 M: Timur Tabi <timur@codeaurora.org>
11141 L: netdev@vger.kernel.org
11143 F: drivers/net/ethernet/qualcomm/emac/
11145 QUALCOMM HEXAGON ARCHITECTURE
11146 M: Richard Kuo <rkuo@codeaurora.org>
11147 L: linux-hexagon@vger.kernel.org
11148 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rkuo/linux-hexagon-kernel.git
11153 M: Rob Clark <robdclark@gmail.com>
11154 L: iommu@lists.linux-foundation.org
11155 L: linux-arm-msm@vger.kernel.org
11157 F: drivers/iommu/qcom_iommu.c
11159 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
11160 M: Stanimir Varbanov <stanimir.varbanov@linaro.org>
11161 L: linux-media@vger.kernel.org
11162 L: linux-arm-msm@vger.kernel.org
11163 T: git git://linuxtv.org/media_tree.git
11165 F: drivers/media/platform/qcom/venus/
11167 QUALCOMM WCN36XX WIRELESS DRIVER
11168 M: Eugene Krasnikov <k.eugene.e@gmail.com>
11169 L: wcn36xx@lists.infradead.org
11170 W: http://wireless.kernel.org/en/users/Drivers/wcn36xx
11171 T: git git://github.com/KrasnikovEugene/wcn36xx.git
11173 F: drivers/net/wireless/ath/wcn36xx/
11175 QUANTENNA QTNFMAC WIRELESS DRIVER
11176 M: Igor Mitsyanko <imitsyanko@quantenna.com>
11177 M: Avinash Patil <avinashp@quantenna.com>
11178 M: Sergey Matyukevich <smatyukevich@quantenna.com>
11179 L: linux-wireless@vger.kernel.org
11181 F: drivers/net/wireless/quantenna
11183 RADEON and AMDGPU DRM DRIVERS
11184 M: Alex Deucher <alexander.deucher@amd.com>
11185 M: Christian König <christian.koenig@amd.com>
11186 L: amd-gfx@lists.freedesktop.org
11187 T: git git://people.freedesktop.org/~agd5f/linux
11189 F: drivers/gpu/drm/radeon/
11190 F: include/uapi/drm/radeon_drm.h
11191 F: drivers/gpu/drm/amd/
11192 F: include/uapi/drm/amdgpu_drm.h
11194 RADEON FRAMEBUFFER DISPLAY DRIVER
11195 M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
11196 L: linux-fbdev@vger.kernel.org
11198 F: drivers/video/fbdev/aty/radeon*
11199 F: include/uapi/linux/radeonfb.h
11201 RADIOSHARK RADIO DRIVER
11202 M: Hans Verkuil <hverkuil@xs4all.nl>
11203 L: linux-media@vger.kernel.org
11204 T: git git://linuxtv.org/media_tree.git
11206 F: drivers/media/radio/radio-shark.c
11208 RADIOSHARK2 RADIO DRIVER
11209 M: Hans Verkuil <hverkuil@xs4all.nl>
11210 L: linux-media@vger.kernel.org
11211 T: git git://linuxtv.org/media_tree.git
11213 F: drivers/media/radio/radio-shark2.c
11214 F: drivers/media/radio/radio-tea5777.c
11216 RADOS BLOCK DEVICE (RBD)
11217 M: Ilya Dryomov <idryomov@gmail.com>
11218 M: Sage Weil <sage@redhat.com>
11219 M: Alex Elder <elder@kernel.org>
11220 L: ceph-devel@vger.kernel.org
11221 W: http://ceph.com/
11222 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
11223 T: git git://github.com/ceph/ceph-client.git
11225 F: Documentation/ABI/testing/sysfs-bus-rbd
11226 F: drivers/block/rbd.c
11227 F: drivers/block/rbd_types.h
11229 RAGE128 FRAMEBUFFER DISPLAY DRIVER
11230 M: Paul Mackerras <paulus@samba.org>
11231 L: linux-fbdev@vger.kernel.org
11233 F: drivers/video/fbdev/aty/aty128fb.c
11235 RAINSHADOW-CEC DRIVER
11236 M: Hans Verkuil <hverkuil@xs4all.nl>
11237 L: linux-media@vger.kernel.org
11238 T: git git://linuxtv.org/media_tree.git
11240 F: drivers/media/usb/rainshadow-cec/*
11242 RALINK MIPS ARCHITECTURE
11243 M: John Crispin <john@phrozen.org>
11244 L: linux-mips@linux-mips.org
11246 F: arch/mips/ralink
11248 RALINK RT2X00 WIRELESS LAN DRIVER
11250 M: Stanislaw Gruszka <sgruszka@redhat.com>
11251 M: Helmut Schaa <helmut.schaa@googlemail.com>
11252 L: linux-wireless@vger.kernel.org
11254 F: drivers/net/wireless/ralink/rt2x00/
11256 RAMDISK RAM BLOCK DEVICE DRIVER
11257 M: Jens Axboe <axboe@kernel.dk>
11259 F: Documentation/blockdev/ramdisk.txt
11260 F: drivers/block/brd.c
11262 RANDOM NUMBER DRIVER
11263 M: "Theodore Ts'o" <tytso@mit.edu>
11265 F: drivers/char/random.c
11268 M: Matt Porter <mporter@kernel.crashing.org>
11269 M: Alexandre Bounine <alexandre.bounine@idt.com>
11271 F: drivers/rapidio/
11273 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
11274 L: linux-wireless@vger.kernel.org
11276 F: drivers/net/wireless/ray*
11279 M: Josh Triplett <josh@joshtriplett.org>
11280 M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
11281 L: linux-kernel@vger.kernel.org
11283 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
11284 F: Documentation/RCU/torture.txt
11285 F: kernel/rcu/rcutorture.c
11287 RCUTORTURE TEST FRAMEWORK
11288 M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
11289 M: Josh Triplett <josh@joshtriplett.org>
11290 R: Steven Rostedt <rostedt@goodmis.org>
11291 R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
11292 R: Lai Jiangshan <jiangshanlai@gmail.com>
11293 L: linux-kernel@vger.kernel.org
11295 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
11296 F: tools/testing/selftests/rcutorture
11299 M: Florian Fainelli <florian@openwrt.org>
11302 RDC R6040 FAST ETHERNET DRIVER
11303 M: Florian Fainelli <f.fainelli@gmail.com>
11304 L: netdev@vger.kernel.org
11306 F: drivers/net/ethernet/rdc/r6040.c
11308 RDMAVT - RDMA verbs software
11309 M: Dennis Dalessandro <dennis.dalessandro@intel.com>
11310 L: linux-rdma@vger.kernel.org
11312 F: drivers/infiniband/sw/rdmavt
11314 RDS - RELIABLE DATAGRAM SOCKETS
11315 M: Santosh Shilimkar <santosh.shilimkar@oracle.com>
11316 L: netdev@vger.kernel.org
11317 L: linux-rdma@vger.kernel.org
11318 L: rds-devel@oss.oracle.com (moderated for non-subscribers)
11319 W: https://oss.oracle.com/projects/rds/
11322 F: Documentation/networking/rds.txt
11324 RDT - RESOURCE ALLOCATION
11325 M: Fenghua Yu <fenghua.yu@intel.com>
11326 L: linux-kernel@vger.kernel.org
11328 F: arch/x86/kernel/cpu/intel_rdt*
11329 F: arch/x86/include/asm/intel_rdt_sched.h
11330 F: Documentation/x86/intel_rdt*
11332 READ-COPY UPDATE (RCU)
11333 M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
11334 M: Josh Triplett <josh@joshtriplett.org>
11335 R: Steven Rostedt <rostedt@goodmis.org>
11336 R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
11337 R: Lai Jiangshan <jiangshanlai@gmail.com>
11338 L: linux-kernel@vger.kernel.org
11339 W: http://www.rdrop.com/users/paulmck/RCU/
11341 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
11342 F: Documentation/RCU/
11343 X: Documentation/RCU/torture.txt
11344 F: include/linux/rcu*
11345 X: include/linux/srcu.h
11347 X: kernel/torture.c
11349 REAL TIME CLOCK (RTC) SUBSYSTEM
11350 M: Alessandro Zummo <a.zummo@towertech.it>
11351 M: Alexandre Belloni <alexandre.belloni@free-electrons.com>
11352 L: linux-rtc@vger.kernel.org
11353 Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
11354 T: git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
11356 F: Documentation/devicetree/bindings/rtc/
11357 F: Documentation/rtc.txt
11359 F: include/linux/rtc.h
11360 F: include/uapi/linux/rtc.h
11361 F: include/linux/rtc/
11362 F: include/linux/platform_data/rtc-*
11363 F: tools/testing/selftests/timers/rtctest.c
11365 REALTEK AUDIO CODECS
11366 M: Bard Liao <bardliao@realtek.com>
11367 M: Oder Chiou <oder_chiou@realtek.com>
11369 F: sound/soc/codecs/rt*
11370 F: include/sound/rt*.h
11372 REGISTER MAP ABSTRACTION
11373 M: Mark Brown <broonie@kernel.org>
11374 L: linux-kernel@vger.kernel.org
11375 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
11377 F: Documentation/devicetree/bindings/regmap/
11378 F: drivers/base/regmap/
11379 F: include/linux/regmap.h
11381 REISERFS FILE SYSTEM
11382 L: reiserfs-devel@vger.kernel.org
11386 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
11387 M: Ohad Ben-Cohen <ohad@wizery.com>
11388 M: Bjorn Andersson <bjorn.andersson@linaro.org>
11389 L: linux-remoteproc@vger.kernel.org
11390 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
11392 F: Documentation/devicetree/bindings/remoteproc/
11393 F: Documentation/remoteproc.txt
11394 F: drivers/remoteproc/
11395 F: include/linux/remoteproc.h
11397 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
11398 M: Ohad Ben-Cohen <ohad@wizery.com>
11399 M: Bjorn Andersson <bjorn.andersson@linaro.org>
11400 L: linux-remoteproc@vger.kernel.org
11401 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
11404 F: Documentation/rpmsg.txt
11405 F: include/linux/rpmsg.h
11406 F: include/linux/rpmsg/
11408 RENESAS CLOCK DRIVERS
11409 M: Geert Uytterhoeven <geert+renesas@glider.be>
11410 L: linux-renesas-soc@vger.kernel.org
11412 F: drivers/clk/renesas/
11414 RENESAS ETHERNET DRIVERS
11415 R: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
11416 L: netdev@vger.kernel.org
11417 L: linux-renesas-soc@vger.kernel.org
11418 F: drivers/net/ethernet/renesas/
11419 F: include/linux/sh_eth.h
11421 RENESAS R-CAR GYROADC DRIVER
11422 M: Marek Vasut <marek.vasut@gmail.com>
11423 L: linux-iio@vger.kernel.org
11425 F: drivers/iio/adc/rcar_gyro_adc.c
11427 RENESAS USB PHY DRIVER
11428 M: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
11429 L: linux-renesas-soc@vger.kernel.org
11431 F: drivers/phy/renesas/phy-rcar-gen3-usb*.c
11433 RESET CONTROLLER FRAMEWORK
11434 M: Philipp Zabel <p.zabel@pengutronix.de>
11435 T: git git://git.pengutronix.de/git/pza/linux
11438 F: Documentation/devicetree/bindings/reset/
11439 F: include/dt-bindings/reset/
11440 F: include/linux/reset.h
11441 F: include/linux/reset-controller.h
11444 M: Johannes Berg <johannes@sipsolutions.net>
11445 L: linux-wireless@vger.kernel.org
11446 W: http://wireless.kernel.org/
11447 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
11448 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
11450 F: Documentation/rfkill.txt
11454 M: Thomas Graf <tgraf@suug.ch>
11455 M: Herbert Xu <herbert@gondor.apana.org.au>
11456 L: netdev@vger.kernel.org
11458 F: lib/rhashtable.c
11459 F: include/linux/rhashtable.h
11461 RICOH R5C592 MEMORYSTICK DRIVER
11462 M: Maxim Levitsky <maximlevitsky@gmail.com>
11464 F: drivers/memstick/host/r592.*
11466 RICOH SMARTMEDIA/XD DRIVER
11467 M: Maxim Levitsky <maximlevitsky@gmail.com>
11469 F: drivers/mtd/nand/r852.c
11470 F: drivers/mtd/nand/r852.h
11473 M: Stefan Achatz <erazor_de@users.sourceforge.net>
11474 W: http://sourceforge.net/projects/roccat/
11476 F: drivers/hid/hid-roccat*
11477 F: include/linux/hid-roccat*
11478 F: Documentation/ABI/*/sysfs-driver-hid-roccat*
11481 M: Jiri Pirko <jiri@resnulli.us>
11482 L: netdev@vger.kernel.org
11484 F: drivers/net/ethernet/rocker/
11488 W: http://www.comtrol.com
11490 F: Documentation/serial/rocket.txt
11491 F: drivers/tty/rocket*
11493 ROCKETPORT EXPRESS/INFINITY DRIVER
11494 M: Kevin Cernekee <cernekee@gmail.com>
11495 L: linux-serial@vger.kernel.org
11497 F: drivers/tty/serial/rp2.*
11499 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
11500 M: Marek Vasut <marek.vasut+renesas@gmail.com>
11501 L: linux-kernel@vger.kernel.org
11502 L: linux-renesas-soc@vger.kernel.org
11504 F: drivers/mfd/bd9571mwv.c
11505 F: drivers/regulator/bd9571mwv-regulator.c
11506 F: drivers/gpio/gpio-bd9571mwv.c
11507 F: include/linux/mfd/bd9571mwv.h
11508 F: Documentation/devicetree/bindings/mfd/bd9571mwv.txt
11511 M: Ralf Baechle <ralf@linux-mips.org>
11512 L: linux-hams@vger.kernel.org
11513 W: http://www.linux-ax25.org/
11515 F: include/net/rose.h
11516 F: include/uapi/linux/rose.h
11519 RTL2830 MEDIA DRIVER
11520 M: Antti Palosaari <crope@iki.fi>
11521 L: linux-media@vger.kernel.org
11522 W: https://linuxtv.org
11523 W: http://palosaari.fi/linux/
11524 Q: http://patchwork.linuxtv.org/project/linux-media/list/
11525 T: git git://linuxtv.org/anttip/media_tree.git
11527 F: drivers/media/dvb-frontends/rtl2830*
11529 RTL2832 MEDIA DRIVER
11530 M: Antti Palosaari <crope@iki.fi>
11531 L: linux-media@vger.kernel.org
11532 W: https://linuxtv.org
11533 W: http://palosaari.fi/linux/
11534 Q: http://patchwork.linuxtv.org/project/linux-media/list/
11535 T: git git://linuxtv.org/anttip/media_tree.git
11537 F: drivers/media/dvb-frontends/rtl2832*
11539 RTL2832_SDR MEDIA DRIVER
11540 M: Antti Palosaari <crope@iki.fi>
11541 L: linux-media@vger.kernel.org
11542 W: https://linuxtv.org
11543 W: http://palosaari.fi/linux/
11544 Q: http://patchwork.linuxtv.org/project/linux-media/list/
11545 T: git git://linuxtv.org/anttip/media_tree.git
11547 F: drivers/media/dvb-frontends/rtl2832_sdr*
11549 RTL8180 WIRELESS DRIVER
11550 L: linux-wireless@vger.kernel.org
11551 W: http://wireless.kernel.org/
11552 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
11554 F: drivers/net/wireless/realtek/rtl818x/rtl8180/
11556 RTL8187 WIRELESS DRIVER
11557 M: Herton Ronaldo Krzesinski <herton@canonical.com>
11558 M: Hin-Tak Leung <htl10@users.sourceforge.net>
11559 M: Larry Finger <Larry.Finger@lwfinger.net>
11560 L: linux-wireless@vger.kernel.org
11561 W: http://wireless.kernel.org/
11562 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
11564 F: drivers/net/wireless/realtek/rtl818x/rtl8187/
11566 RTL8192CE WIRELESS DRIVER
11567 M: Larry Finger <Larry.Finger@lwfinger.net>
11568 M: Chaoming Li <chaoming_li@realsil.com.cn>
11569 L: linux-wireless@vger.kernel.org
11570 W: http://wireless.kernel.org/
11571 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
11573 F: drivers/net/wireless/realtek/rtlwifi/
11574 F: drivers/net/wireless/realtek/rtlwifi/rtl8192ce/
11576 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
11577 M: Jes Sorensen <Jes.Sorensen@gmail.com>
11578 L: linux-wireless@vger.kernel.org
11579 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
11581 F: drivers/net/wireless/realtek/rtl8xxxu/
11583 S3 SAVAGE FRAMEBUFFER DRIVER
11584 M: Antonino Daplas <adaplas@gmail.com>
11585 L: linux-fbdev@vger.kernel.org
11587 F: drivers/video/fbdev/savage/
11590 M: Martin Schwidefsky <schwidefsky@de.ibm.com>
11591 M: Heiko Carstens <heiko.carstens@de.ibm.com>
11592 L: linux-s390@vger.kernel.org
11593 W: http://www.ibm.com/developerworks/linux/linux390/
11594 T: git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
11598 F: Documentation/s390/
11599 F: Documentation/driver-api/s390-drivers.rst
11601 S390 COMMON I/O LAYER
11602 M: Sebastian Ott <sebott@linux.vnet.ibm.com>
11603 M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
11604 L: linux-s390@vger.kernel.org
11605 W: http://www.ibm.com/developerworks/linux/linux390/
11607 F: drivers/s390/cio/
11610 M: Stefan Haberland <sth@linux.vnet.ibm.com>
11611 M: Jan Hoeppner <hoeppner@linux.vnet.ibm.com>
11612 L: linux-s390@vger.kernel.org
11613 W: http://www.ibm.com/developerworks/linux/linux390/
11615 F: drivers/s390/block/dasd*
11616 F: block/partitions/ibm.c
11619 M: Gerald Schaefer <gerald.schaefer@de.ibm.com>
11620 L: linux-s390@vger.kernel.org
11621 W: http://www.ibm.com/developerworks/linux/linux390/
11623 F: drivers/iommu/s390-iommu.c
11625 S390 IUCV NETWORK LAYER
11626 M: Julian Wiedmann <jwi@linux.vnet.ibm.com>
11627 M: Ursula Braun <ubraun@linux.vnet.ibm.com>
11628 L: linux-s390@vger.kernel.org
11629 W: http://www.ibm.com/developerworks/linux/linux390/
11631 F: drivers/s390/net/*iucv*
11632 F: include/net/iucv/
11635 S390 NETWORK DRIVERS
11636 M: Julian Wiedmann <jwi@linux.vnet.ibm.com>
11637 M: Ursula Braun <ubraun@linux.vnet.ibm.com>
11638 L: linux-s390@vger.kernel.org
11639 W: http://www.ibm.com/developerworks/linux/linux390/
11641 F: drivers/s390/net/
11644 M: Sebastian Ott <sebott@linux.vnet.ibm.com>
11645 M: Gerald Schaefer <gerald.schaefer@de.ibm.com>
11646 L: linux-s390@vger.kernel.org
11647 W: http://www.ibm.com/developerworks/linux/linux390/
11650 F: drivers/pci/hotplug/s390_pci_hpc.c
11652 S390 VFIO-CCW DRIVER
11653 M: Cornelia Huck <cohuck@redhat.com>
11654 M: Dong Jia Shi <bjsdjshi@linux.vnet.ibm.com>
11655 L: linux-s390@vger.kernel.org
11656 L: kvm@vger.kernel.org
11658 F: drivers/s390/cio/vfio_ccw*
11659 F: Documentation/s390/vfio-ccw.txt
11660 F: include/uapi/linux/vfio_ccw.h
11663 M: Harald Freudenberger <freude@de.ibm.com>
11664 L: linux-s390@vger.kernel.org
11665 W: http://www.ibm.com/developerworks/linux/linux390/
11667 F: drivers/s390/crypto/
11670 M: Steffen Maier <maier@linux.vnet.ibm.com>
11671 M: Benjamin Block <bblock@linux.vnet.ibm.com>
11672 L: linux-s390@vger.kernel.org
11673 W: http://www.ibm.com/developerworks/linux/linux390/
11675 F: drivers/s390/scsi/zfcp_*
11677 S3C24XX SD/MMC Driver
11678 M: Ben Dooks <ben-linux@fluff.org>
11679 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11681 F: drivers/mmc/host/s3cmci.*
11683 SAA6588 RDS RECEIVER DRIVER
11684 M: Hans Verkuil <hverkuil@xs4all.nl>
11685 L: linux-media@vger.kernel.org
11686 T: git git://linuxtv.org/media_tree.git
11687 W: https://linuxtv.org
11689 F: drivers/media/i2c/saa6588*
11691 SAA7134 VIDEO4LINUX DRIVER
11692 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
11693 M: Mauro Carvalho Chehab <mchehab@kernel.org>
11694 L: linux-media@vger.kernel.org
11695 W: https://linuxtv.org
11696 T: git git://linuxtv.org/media_tree.git
11698 F: Documentation/media/v4l-drivers/saa7134*
11699 F: drivers/media/pci/saa7134/
11701 SAA7146 VIDEO4LINUX-2 DRIVER
11702 M: Hans Verkuil <hverkuil@xs4all.nl>
11703 L: linux-media@vger.kernel.org
11704 T: git git://linuxtv.org/media_tree.git
11706 F: drivers/media/common/saa7146/
11707 F: drivers/media/pci/saa7146/
11708 F: include/media/saa7146*
11710 SAMSUNG AUDIO (ASoC) DRIVERS
11711 M: Krzysztof Kozlowski <krzk@kernel.org>
11712 M: Sangbeom Kim <sbkim73@samsung.com>
11713 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
11714 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
11716 F: sound/soc/samsung/
11718 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
11719 M: Krzysztof Kozlowski <krzk@kernel.org>
11720 L: linux-crypto@vger.kernel.org
11721 L: linux-samsung-soc@vger.kernel.org
11723 F: drivers/crypto/exynos-rng.c
11724 F: Documentation/devicetree/bindings/rng/samsung,exynos-rng4.txt
11726 SAMSUNG FRAMEBUFFER DRIVER
11727 M: Jingoo Han <jingoohan1@gmail.com>
11728 L: linux-fbdev@vger.kernel.org
11730 F: drivers/video/fbdev/s3c-fb.c
11732 SAMSUNG LAPTOP DRIVER
11733 M: Corentin Chary <corentin.chary@gmail.com>
11734 L: platform-driver-x86@vger.kernel.org
11736 F: drivers/platform/x86/samsung-laptop.c
11738 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
11739 M: Sangbeom Kim <sbkim73@samsung.com>
11740 M: Krzysztof Kozlowski <krzk@kernel.org>
11741 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11742 L: linux-kernel@vger.kernel.org
11743 L: linux-samsung-soc@vger.kernel.org
11745 F: drivers/mfd/sec*.c
11746 F: drivers/regulator/s2m*.c
11747 F: drivers/regulator/s5m*.c
11748 F: drivers/clk/clk-s2mps11.c
11749 F: drivers/rtc/rtc-s5m.c
11750 F: include/linux/mfd/samsung/
11751 F: Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
11752 F: Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
11753 F: Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
11754 F: Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
11756 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
11757 M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
11758 L: linux-media@vger.kernel.org
11759 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
11761 F: drivers/media/platform/s3c-camif/
11762 F: include/media/drv-intf/s3c_camif.h
11764 SAMSUNG S3FWRN5 NFC DRIVER
11765 M: Robert Baldyga <r.baldyga@samsung.com>
11766 M: Krzysztof Opasiak <k.opasiak@samsung.com>
11767 L: linux-nfc@lists.01.org (moderated for non-subscribers)
11769 F: drivers/nfc/s3fwrn5
11771 SAMSUNG S5C73M3 CAMERA DRIVER
11772 M: Kyungmin Park <kyungmin.park@samsung.com>
11773 M: Andrzej Hajda <a.hajda@samsung.com>
11774 L: linux-media@vger.kernel.org
11776 F: drivers/media/i2c/s5c73m3/*
11778 SAMSUNG S5K5BAF CAMERA DRIVER
11779 M: Kyungmin Park <kyungmin.park@samsung.com>
11780 M: Andrzej Hajda <a.hajda@samsung.com>
11781 L: linux-media@vger.kernel.org
11783 F: drivers/media/i2c/s5k5baf.c
11785 SAMSUNG S5P Security SubSystem (SSS) DRIVER
11786 M: Krzysztof Kozlowski <krzk@kernel.org>
11787 M: Vladimir Zapolskiy <vz@mleia.com>
11788 L: linux-crypto@vger.kernel.org
11789 L: linux-samsung-soc@vger.kernel.org
11791 F: drivers/crypto/s5p-sss.c
11793 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
11794 M: Kyungmin Park <kyungmin.park@samsung.com>
11795 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
11796 L: linux-media@vger.kernel.org
11797 Q: https://patchwork.linuxtv.org/project/linux-media/list/
11799 F: drivers/media/platform/exynos4-is/
11801 SAMSUNG SOC CLOCK DRIVERS
11802 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
11803 M: Tomasz Figa <tomasz.figa@gmail.com>
11804 M: Chanwoo Choi <cw00.choi@samsung.com>
11806 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
11807 F: drivers/clk/samsung/
11808 F: include/dt-bindings/clock/exynos*.h
11809 F: Documentation/devicetree/bindings/clock/exynos*.txt
11811 SAMSUNG SPI DRIVERS
11812 M: Kukjin Kim <kgene@kernel.org>
11813 M: Krzysztof Kozlowski <krzk@kernel.org>
11814 M: Andi Shyti <andi.shyti@samsung.com>
11815 L: linux-spi@vger.kernel.org
11816 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
11818 F: Documentation/devicetree/bindings/spi/spi-samsung.txt
11819 F: drivers/spi/spi-s3c*
11820 F: include/linux/platform_data/spi-s3c64xx.h
11822 SAMSUNG SXGBE DRIVERS
11823 M: Byungho An <bh74.an@samsung.com>
11824 M: Girish K S <ks.giri@samsung.com>
11825 M: Vipul Pandya <vipul.pandya@samsung.com>
11827 L: netdev@vger.kernel.org
11828 F: drivers/net/ethernet/samsung/sxgbe/
11830 SAMSUNG THERMAL DRIVER
11831 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11832 L: linux-pm@vger.kernel.org
11833 L: linux-samsung-soc@vger.kernel.org
11835 T: git https://github.com/lmajewski/linux-samsung-thermal.git
11836 F: drivers/thermal/samsung/
11838 SAMSUNG USB2 PHY DRIVER
11839 M: Kamil Debski <kamil@wypas.org>
11840 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
11841 L: linux-kernel@vger.kernel.org
11843 F: Documentation/devicetree/bindings/phy/samsung-phy.txt
11844 F: Documentation/phy/samsung-usb2.txt
11845 F: drivers/phy/samsung/phy-exynos4210-usb2.c
11846 F: drivers/phy/samsung/phy-exynos4x12-usb2.c
11847 F: drivers/phy/samsung/phy-exynos5250-usb2.c
11848 F: drivers/phy/samsung/phy-s5pv210-usb2.c
11849 F: drivers/phy/samsung/phy-samsung-usb2.c
11850 F: drivers/phy/samsung/phy-samsung-usb2.h
11853 M: Zwane Mwaikambo <zwanem@gmail.com>
11855 F: drivers/watchdog/sc1200wdt.c
11858 M: Ingo Molnar <mingo@redhat.com>
11859 M: Peter Zijlstra <peterz@infradead.org>
11860 L: linux-kernel@vger.kernel.org
11861 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
11864 F: include/linux/sched.h
11865 F: include/uapi/linux/sched.h
11866 F: include/linux/wait.h
11869 M: Chen Liqin <liqin.linux@gmail.com>
11870 M: Lennox Wu <lennox.wu@gmail.com>
11871 W: http://www.sunplus.com
11875 SCR24X CHIP CARD INTERFACE DRIVER
11876 M: Lubomir Rintel <lkundrak@v3.sk>
11878 F: drivers/char/pcmcia/scr24x_cs.c
11881 M: Jens Axboe <axboe@kernel.dk>
11882 L: linux-scsi@vger.kernel.org
11883 W: http://www.kernel.dk
11885 F: drivers/scsi/sr*
11887 SCSI RDMA PROTOCOL (SRP) INITIATOR
11888 M: Bart Van Assche <bart.vanassche@sandisk.com>
11889 L: linux-rdma@vger.kernel.org
11891 W: http://www.openfabrics.org
11892 Q: http://patchwork.kernel.org/project/linux-rdma/list/
11893 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
11894 F: drivers/infiniband/ulp/srp/
11895 F: include/scsi/srp.h
11898 M: Doug Gilbert <dgilbert@interlog.com>
11899 L: linux-scsi@vger.kernel.org
11900 W: http://sg.danny.cz/sg
11902 F: Documentation/scsi/scsi-generic.txt
11903 F: drivers/scsi/sg.c
11904 F: include/scsi/sg.h
11907 M: "James E.J. Bottomley" <jejb@linux.vnet.ibm.com>
11908 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
11909 M: "Martin K. Petersen" <martin.petersen@oracle.com>
11910 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
11911 L: linux-scsi@vger.kernel.org
11913 F: Documentation/devicetree/bindings/scsi/
11918 M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
11919 L: linux-scsi@vger.kernel.org
11921 F: Documentation/scsi/st.txt
11922 F: drivers/scsi/st.*
11923 F: drivers/scsi/st_*.h
11926 M: Vlad Yasevich <vyasevich@gmail.com>
11927 M: Neil Horman <nhorman@tuxdriver.com>
11928 L: linux-sctp@vger.kernel.org
11929 W: http://lksctp.sourceforge.net
11931 F: Documentation/networking/sctp.txt
11932 F: include/linux/sctp.h
11933 F: include/uapi/linux/sctp.h
11934 F: include/net/sctp/
11938 M: Jim Cromie <jim.cromie@gmail.com>
11940 F: Documentation/i2c/busses/scx200_acb
11941 F: arch/x86/platform/scx200/
11942 F: drivers/watchdog/scx200_wdt.c
11943 F: drivers/i2c/busses/scx200*
11944 F: drivers/mtd/maps/scx200_docflash.c
11945 F: include/linux/scx200.h
11948 M: Jim Cromie <jim.cromie@gmail.com>
11950 F: drivers/char/scx200_gpio.c
11951 F: include/linux/scx200_gpio.h
11953 SCx200 HRT CLOCKSOURCE DRIVER
11954 M: Jim Cromie <jim.cromie@gmail.com>
11956 F: drivers/clocksource/scx200_hrt.c
11958 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
11959 M: Sascha Sommer <saschasommer@freenet.de>
11960 L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
11962 F: drivers/mmc/host/sdricoh_cs.c
11965 M: Kees Cook <keescook@chromium.org>
11966 R: Andy Lutomirski <luto@amacapital.net>
11967 R: Will Drewry <wad@chromium.org>
11968 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
11970 F: kernel/seccomp.c
11971 F: include/uapi/linux/seccomp.h
11972 F: include/linux/seccomp.h
11973 F: tools/testing/selftests/seccomp/*
11974 F: tools/testing/selftests/kselftest_harness.h
11975 F: Documentation/userspace-api/seccomp_filter.rst
11976 K: \bsecure_computing
11979 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
11980 M: Al Cooper <alcooperx@gmail.com>
11981 L: linux-mmc@vger.kernel.org
11982 L: bcm-kernel-feedback-list@broadcom.com
11984 F: drivers/mmc/host/sdhci-brcmstb*
11986 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
11987 M: Adrian Hunter <adrian.hunter@intel.com>
11988 L: linux-mmc@vger.kernel.org
11989 T: git git://git.infradead.org/users/ahunter/linux-sdhci.git
11991 F: drivers/mmc/host/sdhci*
11992 F: include/linux/mmc/sdhci*
11994 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
11995 M: Ben Dooks <ben-linux@fluff.org>
11996 M: Jaehoon Chung <jh80.chung@samsung.com>
11997 L: linux-mmc@vger.kernel.org
11999 F: drivers/mmc/host/sdhci-s3c*
12001 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
12002 M: Viresh Kumar <vireshk@kernel.org>
12003 L: linux-mmc@vger.kernel.org
12005 F: drivers/mmc/host/sdhci-spear.c
12007 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
12008 M: Scott Bauer <scott.bauer@intel.com>
12009 M: Jonathan Derrick <jonathan.derrick@intel.com>
12010 M: Rafael Antognolli <rafael.antognolli@intel.com>
12011 L: linux-block@vger.kernel.org
12014 F: block/opal_proto.h
12015 F: include/linux/sed*
12016 F: include/uapi/linux/sed*
12019 M: Security Officers <security@kernel.org>
12023 M: James Morris <james.l.morris@oracle.com>
12024 M: "Serge E. Hallyn" <serge@hallyn.com>
12025 L: linux-security-module@vger.kernel.org (suggested Cc:)
12026 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
12027 W: http://kernsec.org/
12031 SELINUX SECURITY MODULE
12032 M: Paul Moore <paul@paul-moore.com>
12033 M: Stephen Smalley <sds@tycho.nsa.gov>
12034 M: Eric Paris <eparis@parisplace.org>
12035 L: selinux@tycho.nsa.gov (moderated for non-subscribers)
12036 W: https://selinuxproject.org
12037 W: https://github.com/SELinuxProject
12038 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
12040 F: include/linux/selinux*
12041 F: security/selinux/
12042 F: scripts/selinux/
12043 F: Documentation/admin-guide/LSM/SELinux.rst
12046 M: Jiri Slaby <jirislaby@gmail.com>
12048 F: drivers/misc/phantom.c
12049 F: include/uapi/linux/phantom.h
12052 M: Rob Herring <robh@kernel.org>
12053 L: linux-serial@vger.kernel.org
12055 F: Documentation/devicetree/bindings/serial/slave-device.txt
12056 F: drivers/tty/serdev/
12057 F: include/linux/serdev.h
12060 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
12061 L: linux-serial@vger.kernel.org
12063 F: Documentation/devicetree/bindings/serial/
12064 F: drivers/tty/serial/
12067 M: Sean Young <sean@mess.org>
12068 L: linux-media@vger.kernel.org
12070 F: drivers/media/rc/serial_ir.c
12073 M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
12074 M: Edward Cree <ecree@solarflare.com>
12075 M: Bert Kenward <bkenward@solarflare.com>
12076 L: netdev@vger.kernel.org
12078 F: drivers/net/ethernet/sfc/
12081 M: Dimitri Sivanich <sivanich@sgi.com>
12083 F: drivers/misc/sgi-gru/
12085 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
12086 M: Pat Gefre <pfg@sgi.com>
12087 L: linux-ia64@vger.kernel.org
12089 F: Documentation/ia64/serial.txt
12090 F: drivers/tty/serial/ioc?_serial.c
12091 F: include/linux/ioc?.h
12093 SGI XP/XPC/XPNET DRIVER
12094 M: Cliff Whickman <cpw@sgi.com>
12095 M: Robin Holt <robinmholt@gmail.com>
12097 F: drivers/misc/sgi-xp/
12099 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
12100 M: Ursula Braun <ubraun@linux.vnet.ibm.com>
12101 L: linux-s390@vger.kernel.org
12102 W: http://www.ibm.com/developerworks/linux/linux390/
12106 SH_VEU V4L2 MEM2MEM DRIVER
12107 L: linux-media@vger.kernel.org
12109 F: drivers/media/platform/sh_veu.c
12111 SH_VOU V4L2 OUTPUT DRIVER
12112 L: linux-media@vger.kernel.org
12114 F: drivers/media/platform/sh_vou.c
12115 F: include/media/drv-intf/sh_vou.h
12117 SI2157 MEDIA DRIVER
12118 M: Antti Palosaari <crope@iki.fi>
12119 L: linux-media@vger.kernel.org
12120 W: https://linuxtv.org
12121 W: http://palosaari.fi/linux/
12122 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12123 T: git git://linuxtv.org/anttip/media_tree.git
12125 F: drivers/media/tuners/si2157*
12127 SI2168 MEDIA DRIVER
12128 M: Antti Palosaari <crope@iki.fi>
12129 L: linux-media@vger.kernel.org
12130 W: https://linuxtv.org
12131 W: http://palosaari.fi/linux/
12132 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12133 T: git git://linuxtv.org/anttip/media_tree.git
12135 F: drivers/media/dvb-frontends/si2168*
12137 SI470X FM RADIO RECEIVER I2C DRIVER
12138 M: Hans Verkuil <hverkuil@xs4all.nl>
12139 L: linux-media@vger.kernel.org
12140 T: git git://linuxtv.org/media_tree.git
12141 W: https://linuxtv.org
12143 F: drivers/media/radio/si470x/radio-si470x-i2c.c
12145 SI470X FM RADIO RECEIVER USB DRIVER
12146 M: Hans Verkuil <hverkuil@xs4all.nl>
12147 L: linux-media@vger.kernel.org
12148 T: git git://linuxtv.org/media_tree.git
12149 W: https://linuxtv.org
12151 F: drivers/media/radio/si470x/radio-si470x-common.c
12152 F: drivers/media/radio/si470x/radio-si470x.h
12153 F: drivers/media/radio/si470x/radio-si470x-usb.c
12155 SI4713 FM RADIO TRANSMITTER I2C DRIVER
12156 M: Eduardo Valentin <edubezval@gmail.com>
12157 L: linux-media@vger.kernel.org
12158 T: git git://linuxtv.org/media_tree.git
12159 W: https://linuxtv.org
12161 F: drivers/media/radio/si4713/si4713.?
12163 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
12164 M: Eduardo Valentin <edubezval@gmail.com>
12165 L: linux-media@vger.kernel.org
12166 T: git git://linuxtv.org/media_tree.git
12167 W: https://linuxtv.org
12169 F: drivers/media/radio/si4713/radio-platform-si4713.c
12171 SI4713 FM RADIO TRANSMITTER USB DRIVER
12172 M: Hans Verkuil <hverkuil@xs4all.nl>
12173 L: linux-media@vger.kernel.org
12174 T: git git://linuxtv.org/media_tree.git
12175 W: https://linuxtv.org
12177 F: drivers/media/radio/si4713/radio-usb-si4713.c
12180 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
12181 M: Mauro Carvalho Chehab <mchehab@kernel.org>
12182 L: linux-media@vger.kernel.org
12183 W: https://linuxtv.org
12184 T: git git://linuxtv.org/media_tree.git
12186 F: drivers/media/common/siano/
12187 F: drivers/media/usb/siano/
12188 F: drivers/media/usb/siano/
12189 F: drivers/media/mmc/siano/
12191 SILEAD TOUCHSCREEN DRIVER
12192 M: Hans de Goede <hdegoede@redhat.com>
12193 L: linux-input@vger.kernel.org
12194 L: platform-driver-x86@vger.kernel.org
12196 F: drivers/input/touchscreen/silead.c
12197 F: drivers/platform/x86/silead_dmi.c
12199 SILICON MOTION SM712 FRAME BUFFER DRIVER
12200 M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
12201 M: Teddy Wang <teddy.wang@siliconmotion.com>
12202 M: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
12203 L: linux-fbdev@vger.kernel.org
12205 F: drivers/video/fbdev/sm712*
12206 F: Documentation/fb/sm712fb.txt
12208 SIMPLE FIRMWARE INTERFACE (SFI)
12209 M: Len Brown <lenb@kernel.org>
12210 L: sfi-devel@simplefirmware.org
12211 W: http://simplefirmware.org/
12212 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
12214 F: arch/x86/platform/sfi/
12216 F: include/linux/sfi*.h
12219 M: Hans de Goede <hdegoede@redhat.com>
12220 L: linux-fbdev@vger.kernel.org
12222 F: Documentation/devicetree/bindings/display/simple-framebuffer.txt
12223 F: drivers/video/fbdev/simplefb.c
12224 F: include/linux/platform_data/simplefb.h
12226 SIMTEC EB110ATX (Chalice CATS)
12228 P: Vincent Sanders <vince@simtec.co.uk>
12229 M: Simtec Linux Team <linux@simtec.co.uk>
12230 W: http://www.simtec.co.uk/products/EB110ATX/
12233 SIMTEC EB2410ITX (BAST)
12235 P: Vincent Sanders <vince@simtec.co.uk>
12236 M: Simtec Linux Team <linux@simtec.co.uk>
12237 W: http://www.simtec.co.uk/products/EB2410ITX/
12239 F: arch/arm/mach-s3c24xx/mach-bast.c
12240 F: arch/arm/mach-s3c24xx/bast-ide.c
12241 F: arch/arm/mach-s3c24xx/bast-irq.c
12243 SIPHASH PRF ROUTINES
12244 M: Jason A. Donenfeld <Jason@zx2c4.com>
12247 F: lib/test_siphash.c
12248 F: include/linux/siphash.h
12250 SIS 190 ETHERNET DRIVER
12251 M: Francois Romieu <romieu@fr.zoreil.com>
12252 L: netdev@vger.kernel.org
12254 F: drivers/net/ethernet/sis/sis190.c
12256 SIS 900/7016 FAST ETHERNET DRIVER
12257 M: Daniele Venzano <venza@brownhat.org>
12258 W: http://www.brownhat.org/sis900.html
12259 L: netdev@vger.kernel.org
12261 F: drivers/net/ethernet/sis/sis900.*
12263 SIS FRAMEBUFFER DRIVER
12264 M: Thomas Winischhofer <thomas@winischhofer.net>
12265 W: http://www.winischhofer.net/linuxsisvga.shtml
12267 F: Documentation/fb/sisfb.txt
12268 F: drivers/video/fbdev/sis/
12269 F: include/video/sisfb.h
12272 M: Thomas Winischhofer <thomas@winischhofer.net>
12273 W: http://www.winischhofer.at/linuxsisusbvga.shtml
12275 F: drivers/usb/misc/sisusbvga/
12278 M: Christoph Lameter <cl@linux.com>
12279 M: Pekka Enberg <penberg@kernel.org>
12280 M: David Rientjes <rientjes@google.com>
12281 M: Joonsoo Kim <iamjoonsoo.kim@lge.com>
12282 M: Andrew Morton <akpm@linux-foundation.org>
12283 L: linux-mm@kvack.org
12285 F: include/linux/sl?b*.h
12288 SLEEPABLE READ-COPY UPDATE (SRCU)
12289 M: Lai Jiangshan <jiangshanlai@gmail.com>
12290 M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
12291 M: Josh Triplett <josh@joshtriplett.org>
12292 R: Steven Rostedt <rostedt@goodmis.org>
12293 R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
12294 L: linux-kernel@vger.kernel.org
12295 W: http://www.rdrop.com/users/paulmck/RCU/
12297 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
12298 F: include/linux/srcu.h
12299 F: kernel/rcu/srcu.c
12301 SMACK SECURITY MODULE
12302 M: Casey Schaufler <casey@schaufler-ca.com>
12303 L: linux-security-module@vger.kernel.org
12304 W: http://schaufler-ca.com
12305 T: git git://github.com/cschaufler/smack-next
12307 F: Documentation/admin-guide/LSM/Smack.rst
12310 SMC91x ETHERNET DRIVER
12311 M: Nicolas Pitre <nico@fluxnic.net>
12313 F: drivers/net/ethernet/smsc/smc91x.*
12315 SMIA AND SMIA++ IMAGE SENSOR DRIVER
12316 M: Sakari Ailus <sakari.ailus@iki.fi>
12317 L: linux-media@vger.kernel.org
12319 F: drivers/media/i2c/smiapp/
12320 F: include/media/i2c/smiapp.h
12321 F: drivers/media/i2c/smiapp-pll.c
12322 F: drivers/media/i2c/smiapp-pll.h
12323 F: include/uapi/linux/smiapp.h
12324 F: Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
12326 SMM665 HARDWARE MONITOR DRIVER
12327 M: Guenter Roeck <linux@roeck-us.net>
12328 L: linux-hwmon@vger.kernel.org
12330 F: Documentation/hwmon/smm665
12331 F: drivers/hwmon/smm665.c
12333 SMSC EMC2103 HARDWARE MONITOR DRIVER
12334 M: Steve Glendinning <steve.glendinning@shawell.net>
12335 L: linux-hwmon@vger.kernel.org
12337 F: Documentation/hwmon/emc2103
12338 F: drivers/hwmon/emc2103.c
12340 SMSC SCH5627 HARDWARE MONITOR DRIVER
12341 M: Hans de Goede <hdegoede@redhat.com>
12342 L: linux-hwmon@vger.kernel.org
12344 F: Documentation/hwmon/sch5627
12345 F: drivers/hwmon/sch5627.c
12347 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
12348 M: Steve Glendinning <steve.glendinning@shawell.net>
12349 L: linux-fbdev@vger.kernel.org
12351 F: drivers/video/fbdev/smscufx.c
12353 SMSC47B397 HARDWARE MONITOR DRIVER
12354 M: Jean Delvare <jdelvare@suse.com>
12355 L: linux-hwmon@vger.kernel.org
12357 F: Documentation/hwmon/smsc47b397
12358 F: drivers/hwmon/smsc47b397.c
12360 SMSC911x ETHERNET DRIVER
12361 M: Steve Glendinning <steve.glendinning@shawell.net>
12362 L: netdev@vger.kernel.org
12364 F: include/linux/smsc911x.h
12365 F: drivers/net/ethernet/smsc/smsc911x.*
12367 SMSC9420 PCI ETHERNET DRIVER
12368 M: Steve Glendinning <steve.glendinning@shawell.net>
12369 L: netdev@vger.kernel.org
12371 F: drivers/net/ethernet/smsc/smsc9420.*
12373 SOC-CAMERA V4L2 SUBSYSTEM
12374 M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
12375 L: linux-media@vger.kernel.org
12376 T: git git://linuxtv.org/media_tree.git
12378 F: include/media/soc*
12379 F: drivers/media/i2c/soc_camera/
12380 F: drivers/media/platform/soc_camera/
12382 SOEKRIS NET48XX LED SUPPORT
12383 M: Chris Boot <bootc@bootc.net>
12385 F: drivers/leds/leds-net48xx.c
12387 SOFT-ROCE DRIVER (rxe)
12388 M: Moni Shoua <monis@mellanox.com>
12389 L: linux-rdma@vger.kernel.org
12391 W: https://github.com/SoftRoCE/rxe-dev/wiki/rxe-dev:-Home
12392 Q: http://patchwork.kernel.org/project/linux-rdma/list/
12393 F: drivers/infiniband/sw/rxe/
12394 F: include/uapi/rdma/rdma_user_rxe.h
12396 SOFTLOGIC 6x10 MPEG CODEC
12397 M: Bluecherry Maintainers <maintainers@bluecherrydvr.com>
12398 M: Anton Sviridenko <anton@corp.bluecherry.net>
12399 M: Andrey Utkin <andrey.utkin@corp.bluecherry.net>
12400 M: Andrey Utkin <andrey_utkin@fastmail.com>
12401 M: Ismael Luceno <ismael@iodev.co.uk>
12402 L: linux-media@vger.kernel.org
12404 F: drivers/media/pci/solo6x10/
12406 SOFTWARE RAID (Multiple Disks) SUPPORT
12407 M: Shaohua Li <shli@kernel.org>
12408 L: linux-raid@vger.kernel.org
12409 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shli/md.git
12412 F: include/linux/raid/
12413 F: include/uapi/linux/raid/
12415 SONIC NETWORK DRIVER
12416 M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12417 L: netdev@vger.kernel.org
12419 F: drivers/net/ethernet/natsemi/sonic.*
12421 SONICS SILICON BACKPLANE DRIVER (SSB)
12422 M: Michael Buesch <m@bues.ch>
12423 L: linux-wireless@vger.kernel.org
12426 F: include/linux/ssb/
12428 SONY MEMORYSTICK CARD SUPPORT
12429 M: Alex Dubov <oakad@yahoo.com>
12430 W: http://tifmxx.berlios.de/
12432 F: drivers/memstick/host/tifm_ms.c
12434 SONY MEMORYSTICK STANDARD SUPPORT
12435 M: Maxim Levitsky <maximlevitsky@gmail.com>
12437 F: drivers/memstick/core/ms_block.*
12439 SONY VAIO CONTROL DEVICE DRIVER
12440 M: Mattia Dongili <malattia@linux.it>
12441 L: platform-driver-x86@vger.kernel.org
12442 W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
12444 F: Documentation/laptops/sony-laptop.txt
12445 F: drivers/char/sonypi.c
12446 F: drivers/platform/x86/sony-laptop.c
12447 F: include/linux/sony-laptop.h
12450 M: Jaroslav Kysela <perex@perex.cz>
12451 M: Takashi Iwai <tiwai@suse.com>
12452 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
12453 W: http://www.alsa-project.org/
12454 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
12455 T: git git://git.alsa-project.org/alsa-kernel.git
12456 Q: http://patchwork.kernel.org/project/alsa-devel/list/
12458 F: Documentation/sound/
12460 F: include/uapi/sound/
12463 SOUND - COMPRESSED AUDIO
12464 M: Vinod Koul <vinod.koul@intel.com>
12465 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
12466 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
12468 F: Documentation/sound/alsa/compress_offload.txt
12469 F: include/sound/compress_driver.h
12470 F: include/uapi/sound/compress_*
12471 F: sound/core/compress_offload.c
12472 F: sound/soc/soc-compress.c
12474 SOUND - DMAENGINE HELPERS
12475 M: Lars-Peter Clausen <lars@metafoo.de>
12477 F: include/sound/dmaengine_pcm.h
12478 F: sound/core/pcm_dmaengine.c
12479 F: sound/soc/soc-generic-dmaengine-pcm.c
12481 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
12482 M: Liam Girdwood <lgirdwood@gmail.com>
12483 M: Mark Brown <broonie@kernel.org>
12484 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
12485 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
12486 W: http://alsa-project.org/main/index.php/ASoC
12488 F: Documentation/devicetree/bindings/sound/
12489 F: Documentation/sound/alsa/soc/
12491 F: include/sound/soc*
12494 M: Olli Salonen <olli.salonen@iki.fi>
12495 L: linux-media@vger.kernel.org
12496 W: https://linuxtv.org
12497 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12499 F: drivers/media/dvb-frontends/sp2*
12501 SPARC + UltraSPARC (sparc/sparc64)
12502 M: "David S. Miller" <davem@davemloft.net>
12503 L: sparclinux@vger.kernel.org
12504 Q: http://patchwork.ozlabs.org/project/sparclinux/list/
12505 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
12506 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
12511 SPARC SERIAL DRIVERS
12512 M: "David S. Miller" <davem@davemloft.net>
12513 L: sparclinux@vger.kernel.org
12514 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
12515 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
12517 F: include/linux/sunserialcore.h
12518 F: drivers/tty/serial/suncore.c
12519 F: drivers/tty/serial/sunhv.c
12520 F: drivers/tty/serial/sunsab.c
12521 F: drivers/tty/serial/sunsab.h
12522 F: drivers/tty/serial/sunsu.c
12523 F: drivers/tty/serial/sunzilog.c
12524 F: drivers/tty/serial/sunzilog.h
12525 F: drivers/tty/vcc.c
12528 M: "Christopher Li" <sparse@chrisli.org>
12529 L: linux-sparse@vger.kernel.org
12530 W: https://sparse.wiki.kernel.org/
12531 T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
12532 T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
12534 F: include/linux/compiler.h
12536 SPEAR CLOCK FRAMEWORK SUPPORT
12537 M: Viresh Kumar <vireshk@kernel.org>
12538 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12539 W: http://www.st.com/spear
12541 F: drivers/clk/spear/
12543 SPEAR PLATFORM SUPPORT
12544 M: Viresh Kumar <vireshk@kernel.org>
12545 M: Shiraz Hashim <shiraz.linux.kernel@gmail.com>
12546 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12547 W: http://www.st.com/spear
12549 F: arch/arm/boot/dts/spear*
12550 F: arch/arm/mach-spear/
12553 M: Cyrille Pitchen <cyrille.pitchen@wedev4u.fr>
12554 M: Marek Vasut <marek.vasut@gmail.com>
12555 L: linux-mtd@lists.infradead.org
12556 W: http://www.linux-mtd.infradead.org/
12557 Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
12558 T: git git://git.infradead.org/linux-mtd.git spi-nor/fixes
12559 T: git git://git.infradead.org/l2-mtd.git spi-nor/next
12561 F: drivers/mtd/spi-nor/
12562 F: include/linux/mtd/spi-nor.h
12565 M: Mark Brown <broonie@kernel.org>
12566 L: linux-spi@vger.kernel.org
12567 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
12568 Q: http://patchwork.kernel.org/project/spi-devel-general/list/
12570 F: Documentation/devicetree/bindings/spi/
12571 F: Documentation/spi/
12573 F: include/linux/spi/
12574 F: include/uapi/linux/spi/
12577 SPIDERNET NETWORK DRIVER for CELL
12578 M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
12579 L: netdev@vger.kernel.org
12581 F: Documentation/networking/spider_net.txt
12582 F: drivers/net/ethernet/toshiba/spider_net*
12585 R: Stephen Boyd <sboyd@codeaurora.org>
12586 L: linux-arm-msm@vger.kernel.org
12587 F: Documentation/devicetree/bindings/spmi/
12589 F: include/dt-bindings/spmi/spmi.h
12590 F: include/linux/spmi.h
12591 F: include/trace/events/spmi.h
12594 M: Jeremy Kerr <jk@ozlabs.org>
12595 L: linuxppc-dev@lists.ozlabs.org
12596 W: http://www.ibm.com/developerworks/power/cell/
12598 F: Documentation/filesystems/spufs.txt
12599 F: arch/powerpc/platforms/cell/spufs/
12601 SQUASHFS FILE SYSTEM
12602 M: Phillip Lougher <phillip@squashfs.org.uk>
12603 L: squashfs-devel@lists.sourceforge.net (subscribers-only)
12604 W: http://squashfs.org.uk
12605 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
12607 F: Documentation/filesystems/squashfs.txt
12610 SRM (Alpha) environment access
12611 M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
12613 F: arch/alpha/kernel/srm_env.c
12616 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
12617 L: stable@vger.kernel.org
12619 F: Documentation/process/stable-kernel-rules.rst
12622 M: Ian Abbott <abbotti@mev.co.uk>
12623 M: H Hartley Sweeten <hsweeten@visionengravers.com>
12625 F: drivers/staging/comedi/
12627 STAGING - FLARION FT1000 DRIVERS
12628 M: Marek Belisko <marek.belisko@gmail.com>
12630 F: drivers/staging/ft1000/
12632 STAGING - INDUSTRIAL IO
12633 M: Jonathan Cameron <jic23@kernel.org>
12634 L: linux-iio@vger.kernel.org
12636 F: Documentation/devicetree/bindings/staging/iio/
12637 F: drivers/staging/iio/
12639 STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
12640 M: Jarod Wilson <jarod@wilsonet.com>
12641 W: http://www.lirc.org/
12643 F: drivers/staging/media/lirc/
12645 STAGING - LUSTRE PARALLEL FILESYSTEM
12646 M: Oleg Drokin <oleg.drokin@intel.com>
12647 M: Andreas Dilger <andreas.dilger@intel.com>
12648 M: James Simmons <jsimmons@infradead.org>
12649 L: lustre-devel@lists.lustre.org (moderated for non-subscribers)
12650 W: http://wiki.lustre.org/
12652 F: drivers/staging/lustre
12654 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
12655 M: Marc Dietrich <marvin24@gmx.de>
12656 L: ac100@lists.launchpad.net (moderated for non-subscribers)
12657 L: linux-tegra@vger.kernel.org
12659 F: drivers/staging/nvec/
12661 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
12662 M: Jens Frederich <jfrederich@gmail.com>
12663 M: Daniel Drake <dsd@laptop.org>
12664 M: Jon Nettleton <jon.nettleton@gmail.com>
12665 W: http://wiki.laptop.org/go/DCON
12667 F: drivers/staging/olpc_dcon/
12669 STAGING - REALTEK RTL8712U DRIVERS
12670 M: Larry Finger <Larry.Finger@lwfinger.net>
12671 M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
12673 F: drivers/staging/rtl8712/
12675 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
12676 M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
12677 M: Teddy Wang <teddy.wang@siliconmotion.com>
12678 M: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
12679 L: linux-fbdev@vger.kernel.org
12681 F: drivers/staging/sm750fb/
12683 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
12684 M: William Hubbs <w.d.hubbs@gmail.com>
12685 M: Chris Brannon <chris@the-brannons.com>
12686 M: Kirk Reiser <kirk@reisers.ca>
12687 M: Samuel Thibault <samuel.thibault@ens-lyon.org>
12688 L: speakup@linux-speakup.org
12689 W: http://www.linux-speakup.org/
12691 F: drivers/staging/speakup/
12693 STAGING - VIA VT665X DRIVERS
12694 M: Forest Bond <forest@alittletooquiet.net>
12696 F: drivers/staging/vt665?/
12698 STAGING - WILC1000 WIFI DRIVER
12699 M: Aditya Shankar <aditya.shankar@microchip.com>
12700 M: Ganesh Krishna <ganesh.krishna@microchip.com>
12701 L: linux-wireless@vger.kernel.org
12703 F: drivers/staging/wilc1000/
12705 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
12706 M: Arnaud Patard <arnaud.patard@rtp-net.org>
12708 F: drivers/staging/xgifb/
12711 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
12712 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
12713 L: devel@driverdev.osuosl.org
12715 F: drivers/staging/
12717 STARFIRE/DURALAN NETWORK DRIVER
12718 M: Ion Badulescu <ionut@badula.org>
12720 F: drivers/net/ethernet/adaptec/starfire*
12722 STEC S1220 SKD DRIVER
12723 M: Bart Van Assche <bart.vanassche@wdc.com>
12724 L: linux-block@vger.kernel.org
12726 F: drivers/block/skd*[ch]
12729 M: Benjamin Gaignard <benjamin.gaignard@linaro.org>
12731 F: drivers/staging/media/st-cec/
12732 F: Documentation/devicetree/bindings/media/stih-cec.txt
12734 STK1160 USB VIDEO CAPTURE DRIVER
12735 M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
12736 L: linux-media@vger.kernel.org
12737 T: git git://linuxtv.org/media_tree.git
12739 F: drivers/media/usb/stk1160/
12741 STMMAC ETHERNET DRIVER
12742 M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
12743 M: Alexandre Torgue <alexandre.torgue@st.com>
12744 L: netdev@vger.kernel.org
12745 W: http://www.stlinux.com
12747 F: drivers/net/ethernet/stmicro/stmmac/
12750 M: Sam Creasey <sammy@sammy.net>
12751 W: http://sammy.net/sun3/
12753 F: arch/m68k/kernel/*sun3*
12754 F: arch/m68k/sun3*/
12755 F: arch/m68k/include/asm/sun3*
12756 F: drivers/net/ethernet/i825xx/sun3*
12758 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
12759 M: Hans de Goede <hdegoede@redhat.com>
12760 L: linux-input@vger.kernel.org
12762 F: Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
12763 F: drivers/input/keyboard/sun4i-lradc-keys.c
12765 SUNDANCE NETWORK DRIVER
12766 M: Denis Kirjanov <kda@linux-powerpc.org>
12767 L: netdev@vger.kernel.org
12769 F: drivers/net/ethernet/dlink/sundance.c
12772 M: Yoshinori Sato <ysato@users.sourceforge.jp>
12773 M: Rich Felker <dalias@libc.org>
12774 L: linux-sh@vger.kernel.org
12775 Q: http://patchwork.kernel.org/project/linux-sh/list/
12777 F: Documentation/sh/
12782 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
12783 M: Len Brown <len.brown@intel.com>
12784 M: Pavel Machek <pavel@ucw.cz>
12785 L: linux-pm@vger.kernel.org
12786 B: https://bugzilla.kernel.org
12788 F: Documentation/power/
12789 F: arch/x86/kernel/acpi/
12790 F: drivers/base/power/
12792 F: include/linux/suspend.h
12793 F: include/linux/freezer.h
12794 F: include/linux/pm.h
12797 M: Martin Mares <mj@ucw.cz>
12798 L: linux-video@atrey.karlin.mff.cuni.cz
12800 F: Documentation/svga.txt
12801 F: arch/x86/boot/video*
12804 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
12805 L: linux-kernel@vger.kernel.org
12806 T: git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
12809 F: arch/*/kernel/pci-swiotlb.c
12810 F: include/linux/swiotlb.h
12813 M: Jiri Pirko <jiri@resnulli.us>
12814 M: Ivan Vecera <ivecera@redhat.com>
12815 L: netdev@vger.kernel.org
12818 F: include/net/switchdev.h
12820 SYNC FILE FRAMEWORK
12821 M: Sumit Semwal <sumit.semwal@linaro.org>
12822 R: Gustavo Padovan <gustavo@padovan.org>
12824 L: linux-media@vger.kernel.org
12825 L: dri-devel@lists.freedesktop.org
12826 F: drivers/dma-buf/sync_*
12827 F: drivers/dma-buf/dma-fence*
12828 F: drivers/dma-buf/sw_sync.c
12829 F: include/linux/sync_file.h
12830 F: include/uapi/linux/sync_file.h
12831 F: Documentation/sync_file.txt
12832 T: git git://anongit.freedesktop.org/drm/drm-misc
12834 SYNOPSYS ARC ARCHITECTURE
12835 M: Vineet Gupta <vgupta@synopsys.com>
12836 L: linux-snps-arc@lists.infradead.org
12839 F: Documentation/devicetree/bindings/arc/*
12840 F: Documentation/devicetree/bindings/interrupt-controller/snps,arc*
12841 F: drivers/clocksource/arc_timer.c
12842 F: drivers/tty/serial/arc_uart.c
12843 T: git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
12845 SYNOPSYS ARC HSDK SDP pll clock driver
12846 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
12848 F: drivers/clk/clk-hsdk-pll.c
12849 F: Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
12851 SYNOPSYS ARC SDP clock driver
12852 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
12854 F: drivers/clk/axs10x/*
12855 F: Documentation/devicetree/bindings/clock/snps,pll-clock.txt
12857 SYNOPSYS ARC SDP platform support
12858 M: Alexey Brodkin <abrodkin@synopsys.com>
12860 F: arch/arc/plat-axs10x
12861 F: arch/arc/boot/dts/ax*
12862 F: Documentation/devicetree/bindings/arc/axs10*
12864 SYNOPSYS DESIGNWARE DMAC DRIVER
12865 M: Viresh Kumar <vireshk@kernel.org>
12866 M: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
12868 F: include/linux/dma/dw.h
12869 F: include/linux/platform_data/dma-dw.h
12872 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
12873 M: Jie Deng <jiedeng@synopsys.com>
12874 L: netdev@vger.kernel.org
12876 F: drivers/net/ethernet/synopsys/
12878 SYNOPSYS DESIGNWARE I2C DRIVER
12879 M: Jarkko Nikula <jarkko.nikula@linux.intel.com>
12880 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
12881 R: Mika Westerberg <mika.westerberg@linux.intel.com>
12882 L: linux-i2c@vger.kernel.org
12884 F: drivers/i2c/busses/i2c-designware-*
12885 F: include/linux/platform_data/i2c-designware.h
12887 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
12888 M: Jaehoon Chung <jh80.chung@samsung.com>
12889 L: linux-mmc@vger.kernel.org
12891 F: drivers/mmc/host/dw_mmc*
12893 SYNOPSYS HSDK RESET CONTROLLER DRIVER
12894 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
12896 F: drivers/reset/reset-hsdk-v1.c
12897 F: include/dt-bindings/reset/snps,hsdk-v1-reset.h
12898 F: Documentation/devicetree/bindings/reset/snps,hsdk-v1-reset.txt
12900 SYSTEM CONFIGURATION (SYSCON)
12901 M: Lee Jones <lee.jones@linaro.org>
12902 M: Arnd Bergmann <arnd@arndb.de>
12903 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
12905 F: drivers/mfd/syscon.c
12907 SYSTEM CONTROL & POWER INTERFACE (SCPI) Message Protocol drivers
12908 M: Sudeep Holla <sudeep.holla@arm.com>
12909 L: linux-arm-kernel@lists.infradead.org
12911 F: Documentation/devicetree/bindings/arm/arm,scpi.txt
12912 F: drivers/clk/clk-scpi.c
12913 F: drivers/cpufreq/scpi-cpufreq.c
12914 F: drivers/firmware/arm_scpi.c
12915 F: include/linux/scpi_protocol.h
12917 SYSTEM RESET/SHUTDOWN DRIVERS
12918 M: Sebastian Reichel <sre@kernel.org>
12919 L: linux-pm@vger.kernel.org
12920 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
12922 F: Documentation/devicetree/bindings/power/reset/
12923 F: drivers/power/reset/
12925 SYSTEM TRACE MODULE CLASS
12926 M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
12928 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
12929 F: Documentation/trace/stm.txt
12930 F: drivers/hwtracing/stm/
12931 F: include/linux/stm.h
12932 F: include/uapi/linux/stm.h
12935 M: Christoph Hellwig <hch@infradead.org>
12937 F: Documentation/filesystems/sysv-fs.txt
12939 F: include/linux/sysv_fs.h
12942 M: "Nicholas A. Bellinger" <nab@linux-iscsi.org>
12943 L: linux-scsi@vger.kernel.org
12944 L: target-devel@vger.kernel.org
12945 W: http://www.linux-iscsi.org
12946 W: http://groups.google.com/group/linux-iscsi-target-dev
12947 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
12951 F: Documentation/target/
12953 TASKSTATS STATISTICS INTERFACE
12954 M: Balbir Singh <bsingharora@gmail.com>
12956 F: Documentation/accounting/taskstats*
12957 F: include/linux/taskstats*
12958 F: kernel/taskstats.c
12961 M: Jamal Hadi Salim <jhs@mojatatu.com>
12962 M: Cong Wang <xiyou.wangcong@gmail.com>
12963 M: Jiri Pirko <jiri@resnulli.us>
12964 L: netdev@vger.kernel.org
12966 F: include/net/pkt_cls.h
12967 F: include/net/pkt_sched.h
12968 F: include/net/tc_act/
12969 F: include/uapi/linux/pkt_cls.h
12970 F: include/uapi/linux/pkt_sched.h
12971 F: include/uapi/linux/tc_act/
12972 F: include/uapi/linux/tc_ematch/
12975 TCP LOW PRIORITY MODULE
12976 M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
12977 M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
12978 W: http://tcp-lp-mod.sourceforge.net/
12980 F: net/ipv4/tcp_lp.c
12982 TDA10071 MEDIA DRIVER
12983 M: Antti Palosaari <crope@iki.fi>
12984 L: linux-media@vger.kernel.org
12985 W: https://linuxtv.org
12986 W: http://palosaari.fi/linux/
12987 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12988 T: git git://linuxtv.org/anttip/media_tree.git
12990 F: drivers/media/dvb-frontends/tda10071*
12992 TDA18212 MEDIA DRIVER
12993 M: Antti Palosaari <crope@iki.fi>
12994 L: linux-media@vger.kernel.org
12995 W: https://linuxtv.org
12996 W: http://palosaari.fi/linux/
12997 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12998 T: git git://linuxtv.org/anttip/media_tree.git
13000 F: drivers/media/tuners/tda18212*
13002 TDA18218 MEDIA DRIVER
13003 M: Antti Palosaari <crope@iki.fi>
13004 L: linux-media@vger.kernel.org
13005 W: https://linuxtv.org
13006 W: http://palosaari.fi/linux/
13007 Q: http://patchwork.linuxtv.org/project/linux-media/list/
13008 T: git git://linuxtv.org/anttip/media_tree.git
13010 F: drivers/media/tuners/tda18218*
13012 TDA18271 MEDIA DRIVER
13013 M: Michael Krufky <mkrufky@linuxtv.org>
13014 L: linux-media@vger.kernel.org
13015 W: https://linuxtv.org
13016 W: http://github.com/mkrufky
13017 Q: http://patchwork.linuxtv.org/project/linux-media/list/
13018 T: git git://linuxtv.org/mkrufky/tuners.git
13020 F: drivers/media/tuners/tda18271*
13022 TDA827x MEDIA DRIVER
13023 M: Michael Krufky <mkrufky@linuxtv.org>
13024 L: linux-media@vger.kernel.org
13025 W: https://linuxtv.org
13026 W: http://github.com/mkrufky
13027 Q: http://patchwork.linuxtv.org/project/linux-media/list/
13028 T: git git://linuxtv.org/mkrufky/tuners.git
13030 F: drivers/media/tuners/tda8290.*
13032 TDA8290 MEDIA DRIVER
13033 M: Michael Krufky <mkrufky@linuxtv.org>
13034 L: linux-media@vger.kernel.org
13035 W: https://linuxtv.org
13036 W: http://github.com/mkrufky
13037 Q: http://patchwork.linuxtv.org/project/linux-media/list/
13038 T: git git://linuxtv.org/mkrufky/tuners.git
13040 F: drivers/media/tuners/tda8290.*
13042 TDA9840 MEDIA DRIVER
13043 M: Hans Verkuil <hverkuil@xs4all.nl>
13044 L: linux-media@vger.kernel.org
13045 T: git git://linuxtv.org/media_tree.git
13046 W: https://linuxtv.org
13048 F: drivers/media/i2c/tda9840*
13050 TEA5761 TUNER DRIVER
13051 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
13052 M: Mauro Carvalho Chehab <mchehab@kernel.org>
13053 L: linux-media@vger.kernel.org
13054 W: https://linuxtv.org
13055 T: git git://linuxtv.org/media_tree.git
13057 F: drivers/media/tuners/tea5761.*
13059 TEA5767 TUNER DRIVER
13060 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
13061 M: Mauro Carvalho Chehab <mchehab@kernel.org>
13062 L: linux-media@vger.kernel.org
13063 W: https://linuxtv.org
13064 T: git git://linuxtv.org/media_tree.git
13066 F: drivers/media/tuners/tea5767.*
13068 TEA6415C MEDIA DRIVER
13069 M: Hans Verkuil <hverkuil@xs4all.nl>
13070 L: linux-media@vger.kernel.org
13071 T: git git://linuxtv.org/media_tree.git
13072 W: https://linuxtv.org
13074 F: drivers/media/i2c/tea6415c*
13076 TEA6420 MEDIA DRIVER
13077 M: Hans Verkuil <hverkuil@xs4all.nl>
13078 L: linux-media@vger.kernel.org
13079 T: git git://linuxtv.org/media_tree.git
13080 W: https://linuxtv.org
13082 F: drivers/media/i2c/tea6420*
13085 M: Jiri Pirko <jiri@resnulli.us>
13086 L: netdev@vger.kernel.org
13088 F: drivers/net/team/
13089 F: include/linux/if_team.h
13090 F: include/uapi/linux/if_team.h
13092 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
13093 M: "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
13095 F: arch/x86/platform/ts5500/
13097 TECHNOTREND USB IR RECEIVER
13098 M: Sean Young <sean@mess.org>
13099 L: linux-media@vger.kernel.org
13101 F: drivers/media/rc/ttusbir.c
13104 M: Jens Wiklander <jens.wiklander@linaro.org>
13106 F: include/linux/tee_drv.h
13107 F: include/uapi/linux/tee.h
13109 F: Documentation/tee.txt
13111 TEGRA ARCHITECTURE SUPPORT
13112 M: Thierry Reding <thierry.reding@gmail.com>
13113 M: Jonathan Hunter <jonathanh@nvidia.com>
13114 L: linux-tegra@vger.kernel.org
13115 Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
13116 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
13121 M: Peter De Schrijver <pdeschrijver@nvidia.com>
13122 M: Prashant Gaikwad <pgaikwad@nvidia.com>
13124 F: drivers/clk/tegra/
13127 M: Laxman Dewangan <ldewangan@nvidia.com>
13128 M: Jon Hunter <jonathanh@nvidia.com>
13130 F: drivers/dma/tegra*
13133 M: Laxman Dewangan <ldewangan@nvidia.com>
13135 F: drivers/i2c/busses/i2c-tegra.c
13137 TEGRA IOMMU DRIVERS
13138 M: Hiroshi Doyu <hdoyu@nvidia.com>
13140 F: drivers/iommu/tegra*
13143 M: Rakesh Iyer <riyer@nvidia.com>
13144 M: Laxman Dewangan <ldewangan@nvidia.com>
13146 F: drivers/input/keyboard/tegra-kbc.c
13149 M: Thierry Reding <thierry.reding@gmail.com>
13151 F: drivers/pwm/pwm-tegra.c
13153 TEGRA SERIAL DRIVER
13154 M: Laxman Dewangan <ldewangan@nvidia.com>
13156 F: drivers/tty/serial/serial-tegra.c
13159 M: Laxman Dewangan <ldewangan@nvidia.com>
13161 F: drivers/spi/spi-tegra*
13163 TEHUTI ETHERNET DRIVER
13164 M: Andy Gospodarek <andy@greyhouse.net>
13165 L: netdev@vger.kernel.org
13167 F: drivers/net/ethernet/tehuti/*
13169 Telecom Clock Driver for MCPL0010
13170 M: Mark Gross <mark.gross@intel.com>
13172 F: drivers/char/tlclk.c
13174 TENSILICA XTENSA PORT (xtensa)
13175 M: Chris Zankel <chris@zankel.net>
13176 M: Max Filippov <jcmvbkbc@gmail.com>
13177 L: linux-xtensa@linux-xtensa.org
13178 T: git git://github.com/czankel/xtensa-linux.git
13181 F: drivers/irqchip/irq-xtensa-*
13183 Texas Instruments' System Control Interface (TISCI) Protocol Driver
13184 M: Nishanth Menon <nm@ti.com>
13185 M: Tero Kristo <t-kristo@ti.com>
13186 M: Santosh Shilimkar <ssantosh@kernel.org>
13187 L: linux-arm-kernel@lists.infradead.org
13189 F: Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
13190 F: drivers/firmware/ti_sci*
13191 F: include/linux/soc/ti/ti_sci_protocol.h
13192 F: Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
13193 F: include/dt-bindings/genpd/k2g.h
13194 F: drivers/soc/ti/ti_sci_pm_domains.c
13195 F: Documentation/devicetree/bindings/reset/ti,sci-reset.txt
13196 F: Documentation/devicetree/bindings/clock/ti,sci-clk.txt
13197 F: drivers/clk/keystone/sci-clk.c
13198 F: drivers/reset/reset-ti-sci.c
13200 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
13201 M: Hans Verkuil <hverkuil@xs4all.nl>
13202 L: linux-media@vger.kernel.org
13203 T: git git://linuxtv.org/media_tree.git
13204 W: https://linuxtv.org
13206 F: drivers/media/radio/radio-raremono.c
13209 M: Zhang Rui <rui.zhang@intel.com>
13210 M: Eduardo Valentin <edubezval@gmail.com>
13211 L: linux-pm@vger.kernel.org
13212 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
13213 T: git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
13214 Q: https://patchwork.kernel.org/project/linux-pm/list/
13216 F: drivers/thermal/
13217 F: include/linux/thermal.h
13218 F: include/uapi/linux/thermal.h
13219 F: include/linux/cpu_cooling.h
13220 F: Documentation/devicetree/bindings/thermal/
13222 THERMAL/CPU_COOLING
13223 M: Amit Daniel Kachhap <amit.kachhap@gmail.com>
13224 M: Viresh Kumar <viresh.kumar@linaro.org>
13225 M: Javi Merino <javi.merino@kernel.org>
13226 L: linux-pm@vger.kernel.org
13228 F: Documentation/thermal/cpu-cooling-api.txt
13229 F: drivers/thermal/cpu_cooling.c
13230 F: include/linux/cpu_cooling.h
13232 THINKPAD ACPI EXTRAS DRIVER
13233 M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
13234 L: ibm-acpi-devel@lists.sourceforge.net
13235 L: platform-driver-x86@vger.kernel.org
13236 W: http://ibm-acpi.sourceforge.net
13237 W: http://thinkwiki.org/wiki/Ibm-acpi
13238 T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
13240 F: drivers/platform/x86/thinkpad_acpi.c
13243 M: Andreas Noever <andreas.noever@gmail.com>
13244 M: Michael Jamet <michael.jamet@intel.com>
13245 M: Mika Westerberg <mika.westerberg@linux.intel.com>
13246 M: Yehezkel Bernat <yehezkel.bernat@intel.com>
13248 F: drivers/thunderbolt/
13250 THUNDERX GPIO DRIVER
13251 M: David Daney <david.daney@cavium.com>
13253 F: drivers/gpio/gpio-thunderx.c
13255 TI AM437X VPFE DRIVER
13256 M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
13257 L: linux-media@vger.kernel.org
13258 W: https://linuxtv.org
13259 Q: http://patchwork.linuxtv.org/project/linux-media/list/
13260 T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
13262 F: drivers/media/platform/am437x/
13264 TI BANDGAP AND THERMAL DRIVER
13265 M: Eduardo Valentin <edubezval@gmail.com>
13266 M: Keerthy <j-keerthy@ti.com>
13267 L: linux-pm@vger.kernel.org
13268 L: linux-omap@vger.kernel.org
13270 F: drivers/thermal/ti-soc-thermal/
13272 TI BQ27XXX POWER SUPPLY DRIVER
13273 R: Andrew F. Davis <afd@ti.com>
13274 F: include/linux/power/bq27xxx_battery.h
13275 F: drivers/power/supply/bq27xxx_battery.c
13276 F: drivers/power/supply/bq27xxx_battery_i2c.c
13278 TI CDCE706 CLOCK DRIVER
13279 M: Max Filippov <jcmvbkbc@gmail.com>
13281 F: drivers/clk/clk-cdce706.c
13284 M: Tero Kristo <t-kristo@ti.com>
13285 L: linux-omap@vger.kernel.org
13288 F: include/linux/clk/ti.h
13290 TI DAVINCI MACHINE SUPPORT
13291 M: Sekhar Nori <nsekhar@ti.com>
13292 M: Kevin Hilman <khilman@kernel.org>
13293 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13294 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
13296 F: arch/arm/mach-davinci/
13297 F: drivers/i2c/busses/i2c-davinci.c
13298 F: arch/arm/boot/dts/da850*
13300 TI DAVINCI SERIES GPIO DRIVER
13301 M: Keerthy <j-keerthy@ti.com>
13302 L: linux-gpio@vger.kernel.org
13304 F: Documentation/devicetree/bindings/gpio/gpio-davinci.txt
13305 F: drivers/gpio/gpio-davinci.c
13307 TI DAVINCI SERIES MEDIA DRIVER
13308 M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
13309 L: linux-media@vger.kernel.org
13310 W: https://linuxtv.org
13311 Q: http://patchwork.linuxtv.org/project/linux-media/list/
13312 T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
13314 F: drivers/media/platform/davinci/
13315 F: include/media/davinci/
13317 TI ETHERNET SWITCH DRIVER (CPSW)
13318 R: Grygorii Strashko <grygorii.strashko@ti.com>
13319 L: linux-omap@vger.kernel.org
13320 L: netdev@vger.kernel.org
13322 F: drivers/net/ethernet/ti/cpsw*
13323 F: drivers/net/ethernet/ti/davinci*
13325 TI FLASH MEDIA INTERFACE DRIVER
13326 M: Alex Dubov <oakad@yahoo.com>
13328 F: drivers/misc/tifm*
13329 F: drivers/mmc/host/tifm_sd.c
13330 F: include/linux/tifm.h
13332 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
13333 M: Santosh Shilimkar <ssantosh@kernel.org>
13334 L: linux-kernel@vger.kernel.org
13335 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13337 F: drivers/soc/ti/*
13338 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
13340 TI LM49xxx FAMILY ASoC CODEC DRIVERS
13341 M: M R Swami Reddy <mr.swami.reddy@ti.com>
13342 M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
13343 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
13345 F: sound/soc/codecs/lm49453*
13346 F: sound/soc/codecs/isabelle*
13348 TI LP855x BACKLIGHT DRIVER
13349 M: Milo Kim <milo.kim@ti.com>
13351 F: Documentation/backlight/lp855x-driver.txt
13352 F: drivers/video/backlight/lp855x_bl.c
13353 F: include/linux/platform_data/lp855x.h
13355 TI LP8727 CHARGER DRIVER
13356 M: Milo Kim <milo.kim@ti.com>
13358 F: drivers/power/supply/lp8727_charger.c
13359 F: include/linux/platform_data/lp8727.h
13361 TI LP8788 MFD DRIVER
13362 M: Milo Kim <milo.kim@ti.com>
13364 F: drivers/iio/adc/lp8788_adc.c
13365 F: drivers/leds/leds-lp8788.c
13366 F: drivers/mfd/lp8788*.c
13367 F: drivers/power/supply/lp8788-charger.c
13368 F: drivers/regulator/lp8788-*.c
13369 F: include/linux/mfd/lp8788*.h
13371 TI NETCP ETHERNET DRIVER
13372 M: Wingman Kwok <w-kwok2@ti.com>
13373 M: Murali Karicheri <m-karicheri2@ti.com>
13374 L: netdev@vger.kernel.org
13376 F: drivers/net/ethernet/ti/netcp*
13378 TI TAS571X FAMILY ASoC CODEC DRIVER
13379 M: Kevin Cernekee <cernekee@chromium.org>
13380 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
13382 F: sound/soc/codecs/tas571x*
13384 TI TRF7970A NFC DRIVER
13385 M: Mark Greer <mgreer@animalcreek.com>
13386 L: linux-wireless@vger.kernel.org
13387 L: linux-nfc@lists.01.org (moderated for non-subscribers)
13389 F: drivers/nfc/trf7970a.c
13390 F: Documentation/devicetree/bindings/net/nfc/trf7970a.txt
13392 TI TWL4030 SERIES SOC CODEC DRIVER
13393 M: Peter Ujfalusi <peter.ujfalusi@ti.com>
13394 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
13396 F: sound/soc/codecs/twl4030*
13399 M: Benoit Parrot <bparrot@ti.com>
13400 L: linux-media@vger.kernel.org
13401 W: http://linuxtv.org/
13402 Q: http://patchwork.linuxtv.org/project/linux-media/list/
13404 F: drivers/media/platform/ti-vpe/
13406 TI WILINK WIRELESS DRIVERS
13407 L: linux-wireless@vger.kernel.org
13408 W: http://wireless.kernel.org/en/users/Drivers/wl12xx
13409 W: http://wireless.kernel.org/en/users/Drivers/wl1251
13410 T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
13412 F: drivers/net/wireless/ti/
13413 F: include/linux/wl12xx.h
13416 M: Chris Metcalf <cmetcalf@mellanox.com>
13417 W: http://www.mellanox.com/repository/solutions/tile-scm/
13418 T: git git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile.git
13421 F: drivers/char/tile-srom.c
13422 F: drivers/edac/tile_edac.c
13423 F: drivers/net/ethernet/tile/
13424 F: drivers/rtc/rtc-tile.c
13425 F: drivers/tty/hvc/hvc_tile.c
13426 F: drivers/tty/serial/tilegx.c
13427 F: drivers/usb/host/*-tilegx.c
13428 F: include/linux/usb/tilegx.h
13430 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
13431 M: John Stultz <john.stultz@linaro.org>
13432 M: Thomas Gleixner <tglx@linutronix.de>
13433 R: Stephen Boyd <sboyd@codeaurora.org>
13434 L: linux-kernel@vger.kernel.org
13435 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
13437 F: include/linux/clocksource.h
13438 F: include/linux/time.h
13439 F: include/linux/timex.h
13440 F: include/uapi/linux/time.h
13441 F: include/uapi/linux/timex.h
13442 F: kernel/time/clocksource.c
13443 F: kernel/time/time*.c
13444 F: kernel/time/alarmtimer.c
13445 F: kernel/time/ntp.c
13446 F: tools/testing/selftests/timers/
13449 M: Jon Maloy <jon.maloy@ericsson.com>
13450 M: Ying Xue <ying.xue@windriver.com>
13451 L: netdev@vger.kernel.org (core kernel code)
13452 L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
13453 W: http://tipc.sourceforge.net/
13455 F: include/uapi/linux/tipc*.h
13458 TLAN NETWORK DRIVER
13459 M: Samuel Chessman <chessman@tux.org>
13460 L: tlan-devel@lists.sourceforge.net (subscribers-only)
13461 W: http://sourceforge.net/projects/tlan/
13463 F: Documentation/networking/tlan.txt
13464 F: drivers/net/ethernet/ti/tlan.*
13466 TM6000 VIDEO4LINUX DRIVER
13467 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
13468 M: Mauro Carvalho Chehab <mchehab@kernel.org>
13469 L: linux-media@vger.kernel.org
13470 W: https://linuxtv.org
13471 T: git git://linuxtv.org/media_tree.git
13473 F: drivers/media/usb/tm6000/
13474 F: Documentation/media/v4l-drivers/tm6000*
13476 TMIO/SDHI MMC DRIVER
13477 M: Wolfram Sang <wsa+renesas@sang-engineering.com>
13478 L: linux-mmc@vger.kernel.org
13480 F: drivers/mmc/host/tmio_mmc*
13481 F: drivers/mmc/host/renesas_sdhi*
13482 F: include/linux/mfd/tmio.h
13484 TMP401 HARDWARE MONITOR DRIVER
13485 M: Guenter Roeck <linux@roeck-us.net>
13486 L: linux-hwmon@vger.kernel.org
13488 F: Documentation/hwmon/tmp401
13489 F: drivers/hwmon/tmp401.c
13491 TMPFS (SHMEM FILESYSTEM)
13492 M: Hugh Dickins <hughd@google.com>
13493 L: linux-mm@kvack.org
13495 F: include/linux/shmem_fs.h
13498 TOMOYO SECURITY MODULE
13499 M: Kentaro Takeda <takedakn@nttdata.co.jp>
13500 M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
13501 L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
13502 L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
13503 L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
13504 L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
13505 W: http://tomoyo.sourceforge.jp/
13506 T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
13508 F: security/tomoyo/
13510 TOPSTAR LAPTOP EXTRAS DRIVER
13511 M: Herton Ronaldo Krzesinski <herton@canonical.com>
13512 L: platform-driver-x86@vger.kernel.org
13514 F: drivers/platform/x86/topstar-laptop.c
13516 TOSHIBA ACPI EXTRAS DRIVER
13517 M: Azael Avalos <coproscefalo@gmail.com>
13518 L: platform-driver-x86@vger.kernel.org
13520 F: drivers/platform/x86/toshiba_acpi.c
13522 TOSHIBA BLUETOOTH DRIVER
13523 M: Azael Avalos <coproscefalo@gmail.com>
13524 L: platform-driver-x86@vger.kernel.org
13526 F: drivers/platform/x86/toshiba_bluetooth.c
13528 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
13529 M: Azael Avalos <coproscefalo@gmail.com>
13530 L: platform-driver-x86@vger.kernel.org
13532 F: drivers/platform/x86/toshiba_haps.c
13535 M: Jonathan Buzzard <jonathan@buzzard.org.uk>
13536 W: http://www.buzzard.org.uk/toshiba/
13538 F: drivers/char/toshiba.c
13539 F: include/linux/toshiba.h
13540 F: include/uapi/linux/toshiba.h
13542 TOSHIBA TC358743 DRIVER
13543 M: Mats Randgaard <matrandg@cisco.com>
13544 L: linux-media@vger.kernel.org
13546 F: drivers/media/i2c/tc358743*
13547 F: include/media/i2c/tc358743.h
13549 TOSHIBA WMI HOTKEYS DRIVER
13550 M: Azael Avalos <coproscefalo@gmail.com>
13551 L: platform-driver-x86@vger.kernel.org
13553 F: drivers/platform/x86/toshiba-wmi.c
13556 M: Peter Huewe <peterhuewe@gmx.de>
13557 M: Marcel Selhorst <tpmdd@selhorst.net>
13558 M: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
13559 R: Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
13560 W: http://tpmdd.sourceforge.net
13561 L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
13562 Q: https://patchwork.kernel.org/project/tpmdd-devel/list/
13563 T: git git://git.infradead.org/users/jjs/linux-tpmdd.git
13565 F: drivers/char/tpm/
13567 TPM IBM_VTPM DEVICE DRIVER
13568 M: Ashley Lai <ashleydlai@gmail.com>
13569 W: http://tpmdd.sourceforge.net
13570 L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
13572 F: drivers/char/tpm/tpm_ibmvtpm*
13575 M: Steven Rostedt <rostedt@goodmis.org>
13576 M: Ingo Molnar <mingo@redhat.com>
13577 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
13579 F: Documentation/trace/ftrace.txt
13580 F: arch/*/*/*/ftrace.h
13581 F: arch/*/kernel/ftrace.c
13582 F: include/*/ftrace.h
13583 F: include/linux/trace*.h
13586 F: tools/testing/selftests/ftrace/
13588 TRACING MMIO ACCESSES (MMIOTRACE)
13589 M: Steven Rostedt <rostedt@goodmis.org>
13590 M: Ingo Molnar <mingo@kernel.org>
13591 R: Karol Herbst <karolherbst@gmail.com>
13592 R: Pekka Paalanen <ppaalanen@gmail.com>
13594 L: linux-kernel@vger.kernel.org
13595 L: nouveau@lists.freedesktop.org
13596 F: kernel/trace/trace_mmiotrace.c
13597 F: include/linux/mmiotrace.h
13598 F: arch/x86/mm/kmmio.c
13599 F: arch/x86/mm/mmio-mod.c
13600 F: arch/x86/mm/testmmiotrace.c
13603 M: Jiri Kosina <trivial@kernel.org>
13604 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
13606 K: ^Subject:.*(?i)trivial
13609 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
13610 M: Jiri Slaby <jslaby@suse.com>
13612 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
13613 F: Documentation/serial/
13615 F: drivers/tty/serial/serial_core.c
13616 F: include/linux/serial_core.h
13617 F: include/linux/serial.h
13618 F: include/linux/tty.h
13619 F: include/uapi/linux/serial_core.h
13620 F: include/uapi/linux/serial.h
13621 F: include/uapi/linux/tty.h
13623 TUA9001 MEDIA DRIVER
13624 M: Antti Palosaari <crope@iki.fi>
13625 L: linux-media@vger.kernel.org
13626 W: https://linuxtv.org
13627 W: http://palosaari.fi/linux/
13628 Q: http://patchwork.linuxtv.org/project/linux-media/list/
13629 T: git git://linuxtv.org/anttip/media_tree.git
13631 F: drivers/media/tuners/tua9001*
13633 TULIP NETWORK DRIVERS
13634 L: netdev@vger.kernel.org
13635 L: linux-parisc@vger.kernel.org
13637 F: drivers/net/ethernet/dec/tulip/
13640 M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
13641 W: http://vtun.sourceforge.net/tun
13643 F: Documentation/networking/tuntap.txt
13644 F: arch/um/os-Linux/drivers/
13646 TURBOCHANNEL SUBSYSTEM
13647 M: "Maciej W. Rozycki" <macro@linux-mips.org>
13648 M: Ralf Baechle <ralf@linux-mips.org>
13649 L: linux-mips@linux-mips.org
13650 Q: http://patchwork.linux-mips.org/project/linux-mips/list/
13653 F: include/linux/tc.h
13655 TW5864 VIDEO4LINUX DRIVER
13656 M: Bluecherry Maintainers <maintainers@bluecherrydvr.com>
13657 M: Anton Sviridenko <anton@corp.bluecherry.net>
13658 M: Andrey Utkin <andrey.utkin@corp.bluecherry.net>
13659 M: Andrey Utkin <andrey_utkin@fastmail.com>
13660 L: linux-media@vger.kernel.org
13662 F: drivers/media/pci/tw5864/
13664 TW68 VIDEO4LINUX DRIVER
13665 M: Hans Verkuil <hverkuil@xs4all.nl>
13666 L: linux-media@vger.kernel.org
13667 T: git git://linuxtv.org/media_tree.git
13668 W: https://linuxtv.org
13670 F: drivers/media/pci/tw68/
13672 TW686X VIDEO4LINUX DRIVER
13673 M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
13674 L: linux-media@vger.kernel.org
13675 T: git git://linuxtv.org/media_tree.git
13676 W: http://linuxtv.org
13678 F: drivers/media/pci/tw686x/
13680 UBI FILE SYSTEM (UBIFS)
13681 M: Richard Weinberger <richard@nod.at>
13682 M: Artem Bityutskiy <dedekind1@gmail.com>
13683 M: Adrian Hunter <adrian.hunter@intel.com>
13684 L: linux-mtd@lists.infradead.org
13685 T: git git://git.infradead.org/ubifs-2.6.git
13686 W: http://www.linux-mtd.infradead.org/doc/ubifs.html
13688 F: Documentation/filesystems/ubifs.txt
13691 UCLINUX (M68KNOMMU AND COLDFIRE)
13692 M: Greg Ungerer <gerg@linux-m68k.org>
13693 W: http://www.linux-m68k.org/
13694 W: http://www.uclinux.org/
13695 L: linux-m68k@lists.linux-m68k.org
13696 L: uclinux-dev@uclinux.org (subscribers-only)
13697 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
13699 F: arch/m68k/coldfire/
13701 F: arch/m68k/*/*_no.*
13702 F: arch/m68k/include/asm/*_no.*
13705 M: Jan Kara <jack@suse.com>
13707 F: Documentation/filesystems/udf.txt
13711 M: Bastien Nocera <hadess@hadess.net>
13712 L: linux-input@vger.kernel.org
13714 F: drivers/hid/hid-udraw.c
13717 M: Evgeniy Dushistov <dushistov@mail.ru>
13719 F: Documentation/filesystems/ufs.txt
13722 UHID USERSPACE HID IO DRIVER:
13723 M: David Herrmann <dh.herrmann@googlemail.com>
13724 L: linux-input@vger.kernel.org
13726 F: drivers/hid/uhid.c
13727 F: include/uapi/linux/uhid.h
13730 M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
13731 L: linux-usb@vger.kernel.org
13733 F: drivers/usb/common/ulpi.c
13734 F: include/linux/ulpi/
13736 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
13737 L: linux-usb@vger.kernel.org
13740 F: include/linux/uwb.h
13741 F: include/linux/uwb/
13743 UNICORE32 ARCHITECTURE:
13744 M: Guan Xuetao <gxt@mprc.pku.edu.cn>
13745 W: http://mprc.pku.edu.cn/~guanxuetao/linux
13747 T: git git://github.com/gxt/linux.git
13751 M: Tony Finch <dot@dotat.at>
13752 W: http://dotat.at/prog/unifdef
13754 F: scripts/unifdef.c
13756 UNIFORM CDROM DRIVER
13757 M: Jens Axboe <axboe@kernel.dk>
13758 W: http://www.kernel.dk
13760 F: Documentation/cdrom/
13761 F: drivers/cdrom/cdrom.c
13762 F: include/linux/cdrom.h
13763 F: include/uapi/linux/cdrom.h
13765 UNISYS S-PAR DRIVERS
13766 M: David Kershner <david.kershner@unisys.com>
13767 L: sparmaintainer@unisys.com (Unisys internal)
13769 F: drivers/staging/unisys/
13771 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
13772 M: Vinayak Holikatti <vinholikatti@gmail.com>
13773 L: linux-scsi@vger.kernel.org
13775 F: Documentation/scsi/ufs.txt
13776 F: drivers/scsi/ufs/
13778 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
13779 M: Joao Pinto <jpinto@synopsys.com>
13780 L: linux-scsi@vger.kernel.org
13782 F: drivers/scsi/ufs/*dwc*
13784 UNSORTED BLOCK IMAGES (UBI)
13785 M: Artem Bityutskiy <dedekind1@gmail.com>
13786 M: Richard Weinberger <richard@nod.at>
13787 W: http://www.linux-mtd.infradead.org/
13788 L: linux-mtd@lists.infradead.org
13789 T: git git://git.infradead.org/ubifs-2.6.git
13791 F: drivers/mtd/ubi/
13792 F: include/linux/mtd/ubi.h
13793 F: include/uapi/mtd/ubi-user.h
13795 USB "USBNET" DRIVER FRAMEWORK
13796 M: Oliver Neukum <oneukum@suse.com>
13797 L: netdev@vger.kernel.org
13798 W: http://www.linux-usb.org/usbnet
13800 F: drivers/net/usb/usbnet.c
13801 F: include/linux/usb/usbnet.h
13804 M: Oliver Neukum <oneukum@suse.com>
13805 L: linux-usb@vger.kernel.org
13807 F: Documentation/usb/acm.txt
13808 F: drivers/usb/class/cdc-acm.*
13810 USB AR5523 WIRELESS DRIVER
13811 M: Pontus Fuchs <pontus.fuchs@gmail.com>
13812 L: linux-wireless@vger.kernel.org
13814 F: drivers/net/wireless/ath/ar5523/
13817 M: Oliver Neukum <oneukum@suse.com>
13818 L: linux-usb@vger.kernel.org
13819 L: linux-scsi@vger.kernel.org
13821 F: drivers/usb/storage/uas.c
13823 USB CDC ETHERNET DRIVER
13824 M: Oliver Neukum <oliver@neukum.org>
13825 L: linux-usb@vger.kernel.org
13827 F: drivers/net/usb/cdc_*.c
13828 F: include/uapi/linux/usb/cdc.h
13830 USB CHAOSKEY DRIVER
13831 M: Keith Packard <keithp@keithp.com>
13832 L: linux-usb@vger.kernel.org
13834 F: drivers/usb/misc/chaoskey.c
13836 USB CYPRESS C67X00 DRIVER
13837 M: Peter Korsgaard <jacmet@sunsite.dk>
13838 L: linux-usb@vger.kernel.org
13840 F: drivers/usb/c67x00/
13842 USB DAVICOM DM9601 DRIVER
13843 M: Peter Korsgaard <jacmet@sunsite.dk>
13844 L: netdev@vger.kernel.org
13845 W: http://www.linux-usb.org/usbnet
13847 F: drivers/net/usb/dm9601.c
13849 USB DIAMOND RIO500 DRIVER
13850 M: Cesar Miquel <miquel@df.uba.ar>
13851 L: rio500-users@lists.sourceforge.net
13852 W: http://rio500.sourceforge.net
13854 F: drivers/usb/misc/rio500*
13857 M: Alan Stern <stern@rowland.harvard.edu>
13858 L: linux-usb@vger.kernel.org
13860 F: Documentation/usb/ehci.txt
13861 F: drivers/usb/host/ehci*
13863 USB GADGET/PERIPHERAL SUBSYSTEM
13864 M: Felipe Balbi <balbi@kernel.org>
13865 L: linux-usb@vger.kernel.org
13866 W: http://www.linux-usb.org/gadget
13867 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
13869 F: drivers/usb/gadget/
13870 F: include/linux/usb/gadget*
13872 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
13873 M: Jiri Kosina <jikos@kernel.org>
13874 R: Benjamin Tissoires <benjamin.tissoires@redhat.com>
13875 L: linux-usb@vger.kernel.org
13876 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
13878 F: Documentation/hid/hiddev.txt
13879 F: drivers/hid/usbhid/
13882 M: Olav Kongas <ok@artecdesign.ee>
13883 L: linux-usb@vger.kernel.org
13885 F: drivers/usb/host/isp116x*
13886 F: include/linux/usb/isp116x.h
13888 USB LAN78XX ETHERNET DRIVER
13889 M: Woojung Huh <woojung.huh@microchip.com>
13890 M: Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
13891 L: netdev@vger.kernel.org
13893 F: drivers/net/usb/lan78xx.*
13895 USB MASS STORAGE DRIVER
13896 M: Alan Stern <stern@rowland.harvard.edu>
13897 L: linux-usb@vger.kernel.org
13898 L: usb-storage@lists.one-eyed-alien.net
13900 W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
13901 F: drivers/usb/storage/
13904 M: Clemens Ladisch <clemens@ladisch.de>
13905 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
13906 T: git git://git.alsa-project.org/alsa-kernel.git
13908 F: sound/usb/midi.*
13910 USB NETWORKING DRIVERS
13911 L: linux-usb@vger.kernel.org
13913 F: drivers/net/usb/
13916 M: Alan Stern <stern@rowland.harvard.edu>
13917 L: linux-usb@vger.kernel.org
13919 F: Documentation/usb/ohci.txt
13920 F: drivers/usb/host/ohci*
13922 USB OTG FSM (Finite State Machine)
13923 M: Peter Chen <Peter.Chen@nxp.com>
13924 T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
13925 L: linux-usb@vger.kernel.org
13927 F: drivers/usb/common/usb-otg-fsm.c
13930 M: Valentina Manea <valentina.manea.m@gmail.com>
13931 M: Shuah Khan <shuahkh@osg.samsung.com>
13932 M: Shuah Khan <shuah@kernel.org>
13933 L: linux-usb@vger.kernel.org
13935 F: Documentation/usb/usbip_protocol.txt
13936 F: drivers/usb/usbip/
13937 F: tools/usb/usbip/
13940 M: Petko Manolov <petkan@nucleusys.com>
13941 L: linux-usb@vger.kernel.org
13942 L: netdev@vger.kernel.org
13943 T: git git://github.com/petkan/pegasus.git
13944 W: https://github.com/petkan/pegasus
13946 F: drivers/net/usb/pegasus.*
13949 M: Felipe Balbi <balbi@kernel.org>
13950 L: linux-usb@vger.kernel.org
13951 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
13953 F: drivers/usb/phy/
13955 USB PRINTER DRIVER (usblp)
13956 M: Pete Zaitcev <zaitcev@redhat.com>
13957 L: linux-usb@vger.kernel.org
13959 F: drivers/usb/class/usblp.c
13961 USB QMI WWAN NETWORK DRIVER
13962 M: Bjørn Mork <bjorn@mork.no>
13963 L: netdev@vger.kernel.org
13965 F: Documentation/ABI/testing/sysfs-class-net-qmi
13966 F: drivers/net/usb/qmi_wwan.c
13969 M: Petko Manolov <petkan@nucleusys.com>
13970 L: linux-usb@vger.kernel.org
13971 L: netdev@vger.kernel.org
13972 T: git git://github.com/petkan/rtl8150.git
13973 W: https://github.com/petkan/rtl8150
13975 F: drivers/net/usb/rtl8150.c
13977 USB SERIAL SUBSYSTEM
13978 M: Johan Hovold <johan@kernel.org>
13979 L: linux-usb@vger.kernel.org
13980 T: git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
13982 F: Documentation/usb/usb-serial.txt
13983 F: drivers/usb/serial/
13984 F: include/linux/usb/serial.h
13986 USB SMSC75XX ETHERNET DRIVER
13987 M: Steve Glendinning <steve.glendinning@shawell.net>
13988 L: netdev@vger.kernel.org
13990 F: drivers/net/usb/smsc75xx.*
13992 USB SMSC95XX ETHERNET DRIVER
13993 M: Steve Glendinning <steve.glendinning@shawell.net>
13994 M: Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
13995 L: netdev@vger.kernel.org
13997 F: drivers/net/usb/smsc95xx.*
14000 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
14001 L: linux-usb@vger.kernel.org
14002 W: http://www.linux-usb.org
14003 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
14005 F: Documentation/devicetree/bindings/usb/
14006 F: Documentation/usb/
14008 F: include/linux/usb.h
14009 F: include/linux/usb/
14011 USB TYPEC SUBSYSTEM
14012 M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
14013 L: linux-usb@vger.kernel.org
14015 F: Documentation/ABI/testing/sysfs-class-typec
14016 F: Documentation/usb/typec.rst
14017 F: drivers/usb/typec/
14018 F: include/linux/usb/typec.h
14021 M: Alan Stern <stern@rowland.harvard.edu>
14022 L: linux-usb@vger.kernel.org
14024 F: drivers/usb/host/uhci*
14027 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14028 L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
14029 L: linux-media@vger.kernel.org
14030 T: git git://linuxtv.org/media_tree.git
14031 W: http://www.ideasonboard.org/uvc/
14033 F: drivers/media/usb/uvc/
14034 F: include/uapi/linux/uvcvideo.h
14037 M: Hans Verkuil <hverkuil@xs4all.nl>
14038 L: linux-media@vger.kernel.org
14039 T: git git://linuxtv.org/media_tree.git
14040 W: https://linuxtv.org
14042 F: drivers/media/usb/usbvision/
14045 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14046 L: linux-usb@vger.kernel.org
14048 F: drivers/usb/gadget/function/*uvc*
14049 F: drivers/usb/gadget/legacy/webcam.c
14051 USB WIRELESS RNDIS DRIVER (rndis_wlan)
14052 M: Jussi Kivilinna <jussi.kivilinna@iki.fi>
14053 L: linux-wireless@vger.kernel.org
14055 F: drivers/net/wireless/rndis_wlan.c
14058 M: Mathias Nyman <mathias.nyman@intel.com>
14059 L: linux-usb@vger.kernel.org
14061 F: drivers/usb/host/xhci*
14062 F: drivers/usb/host/pci-quirks*
14065 L: linux-wireless@vger.kernel.org
14066 W: http://linux-lc100020.sourceforge.net
14068 F: drivers/net/wireless/zydas/zd1201.*
14071 M: Antoine Jacquet <royale@zerezo.com>
14072 L: linux-usb@vger.kernel.org
14073 L: linux-media@vger.kernel.org
14074 T: git git://linuxtv.org/media_tree.git
14075 W: http://royale.zerezo.com/zr364xx/
14077 F: Documentation/media/v4l-drivers/zr364xx*
14078 F: drivers/media/usb/zr364xx/
14080 USER-MODE LINUX (UML)
14081 M: Jeff Dike <jdike@addtoit.com>
14082 M: Richard Weinberger <richard@nod.at>
14083 L: user-mode-linux-devel@lists.sourceforge.net
14084 L: user-mode-linux-user@lists.sourceforge.net
14085 W: http://user-mode-linux.sourceforge.net
14086 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
14088 F: Documentation/virtual/uml/
14094 USERSPACE I/O (UIO)
14095 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
14097 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
14098 F: Documentation/driver-api/uio-howto.rst
14100 F: include/linux/uio*.h
14103 M: Karel Zak <kzak@redhat.com>
14104 L: util-linux@vger.kernel.org
14105 W: http://en.wikipedia.org/wiki/Util-linux
14106 T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
14110 M: Christoph Hellwig <hch@lst.de>
14111 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
14112 L: linux-kernel@vger.kernel.org
14113 T: git git://git.infradead.org/users/hch/uuid.git
14116 F: include/linux/uuid.h
14117 F: include/uapi/linux/uuid.h
14121 M: Michal Januszewski <spock@gentoo.org>
14122 L: linux-fbdev@vger.kernel.org
14123 W: http://dev.gentoo.org/~spock/projects/uvesafb/
14125 F: Documentation/fb/uvesafb.txt
14126 F: drivers/video/fbdev/uvesafb.*
14129 M: Stefan Agner <stefan@agner.ch>
14130 L: linux-mtd@lists.infradead.org
14132 F: drivers/mtd/nand/vf610_nfc.c
14134 VFAT/FAT/MSDOS FILESYSTEM
14135 M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
14137 F: Documentation/filesystems/vfat.txt
14141 M: Alex Williamson <alex.williamson@redhat.com>
14142 L: kvm@vger.kernel.org
14143 T: git git://github.com/awilliam/linux-vfio.git
14145 F: Documentation/vfio.txt
14147 F: include/linux/vfio.h
14148 F: include/uapi/linux/vfio.h
14150 VFIO MEDIATED DEVICE DRIVERS
14151 M: Kirti Wankhede <kwankhede@nvidia.com>
14152 L: kvm@vger.kernel.org
14154 F: Documentation/vfio-mediated-device.txt
14155 F: drivers/vfio/mdev/
14156 F: include/linux/mdev.h
14157 F: samples/vfio-mdev/
14159 VFIO PLATFORM DRIVER
14160 M: Baptiste Reynal <b.reynal@virtualopensystems.com>
14161 L: kvm@vger.kernel.org
14163 F: drivers/vfio/platform/
14166 R: Lukas Wunner <lukas@wunner.de>
14168 F: Documentation/gpu/vga-switcheroo.rst
14169 F: drivers/gpu/vga/vga_switcheroo.c
14170 F: include/linux/vga_switcheroo.h
14171 T: git git://anongit.freedesktop.org/drm/drm-misc
14173 VIA RHINE NETWORK DRIVER
14175 F: drivers/net/ethernet/via/via-rhine.c
14177 VIA SD/MMC CARD CONTROLLER DRIVER
14178 M: Bruce Chang <brucechang@via.com.tw>
14179 M: Harald Welte <HaraldWelte@viatech.com>
14181 F: drivers/mmc/host/via-sdmmc.c
14183 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
14184 M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
14185 L: linux-fbdev@vger.kernel.org
14187 F: include/linux/via-core.h
14188 F: include/linux/via-gpio.h
14189 F: include/linux/via_i2c.h
14190 F: drivers/video/fbdev/via/
14192 VIA VELOCITY NETWORK DRIVER
14193 M: Francois Romieu <romieu@fr.zoreil.com>
14194 L: netdev@vger.kernel.org
14196 F: drivers/net/ethernet/via/via-velocity.*
14198 VIDEO MULTIPLEXER DRIVER
14199 M: Philipp Zabel <p.zabel@pengutronix.de>
14200 L: linux-media@vger.kernel.org
14202 F: drivers/media/platform/video-mux.c
14204 VIDEOBUF2 FRAMEWORK
14205 M: Pawel Osciak <pawel@osciak.com>
14206 M: Marek Szyprowski <m.szyprowski@samsung.com>
14207 M: Kyungmin Park <kyungmin.park@samsung.com>
14208 L: linux-media@vger.kernel.org
14210 F: drivers/media/v4l2-core/videobuf2-*
14211 F: include/media/videobuf2-*
14213 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
14214 M: Helen Koike <helen.koike@collabora.com>
14215 L: linux-media@vger.kernel.org
14216 T: git git://linuxtv.org/media_tree.git
14217 W: https://linuxtv.org
14219 F: drivers/media/platform/vimc/*
14222 M: Alex Williamson <alex.williamson@redhat.com>
14223 M: Paolo Bonzini <pbonzini@redhat.com>
14224 L: kvm@vger.kernel.org
14228 VIRTIO AND VHOST VSOCK DRIVER
14229 M: Stefan Hajnoczi <stefanha@redhat.com>
14230 L: kvm@vger.kernel.org
14231 L: virtualization@lists.linux-foundation.org
14232 L: netdev@vger.kernel.org
14234 F: include/linux/virtio_vsock.h
14235 F: include/uapi/linux/virtio_vsock.h
14236 F: include/uapi/linux/vsockmon.h
14237 F: net/vmw_vsock/af_vsock_tap.c
14238 F: net/vmw_vsock/virtio_transport_common.c
14239 F: net/vmw_vsock/virtio_transport.c
14240 F: drivers/net/vsockmon.c
14241 F: drivers/vhost/vsock.c
14242 F: drivers/vhost/vsock.h
14244 VIRTIO CONSOLE DRIVER
14245 M: Amit Shah <amit@kernel.org>
14246 L: virtualization@lists.linux-foundation.org
14248 F: drivers/char/virtio_console.c
14249 F: include/linux/virtio_console.h
14250 F: include/uapi/linux/virtio_console.h
14252 VIRTIO CORE, NET AND BLOCK DRIVERS
14253 M: "Michael S. Tsirkin" <mst@redhat.com>
14254 M: Jason Wang <jasowang@redhat.com>
14255 L: virtualization@lists.linux-foundation.org
14257 F: Documentation/devicetree/bindings/virtio/
14260 F: drivers/net/virtio_net.c
14261 F: drivers/block/virtio_blk.c
14262 F: include/linux/virtio*.h
14263 F: include/uapi/linux/virtio_*.h
14264 F: drivers/crypto/virtio/
14265 F: mm/balloon_compaction.c
14267 VIRTIO CRYPTO DRIVER
14268 M: Gonglei <arei.gonglei@huawei.com>
14269 L: virtualization@lists.linux-foundation.org
14270 L: linux-crypto@vger.kernel.org
14272 F: drivers/crypto/virtio/
14273 F: include/uapi/linux/virtio_crypto.h
14275 VIRTIO DRIVERS FOR S390
14276 M: Cornelia Huck <cohuck@redhat.com>
14277 M: Halil Pasic <pasic@linux.vnet.ibm.com>
14278 L: linux-s390@vger.kernel.org
14279 L: virtualization@lists.linux-foundation.org
14280 L: kvm@vger.kernel.org
14282 F: drivers/s390/virtio/
14285 M: David Airlie <airlied@linux.ie>
14286 M: Gerd Hoffmann <kraxel@redhat.com>
14287 L: dri-devel@lists.freedesktop.org
14288 L: virtualization@lists.linux-foundation.org
14289 T: git git://anongit.freedesktop.org/drm/drm-misc
14291 F: drivers/gpu/drm/virtio/
14292 F: include/uapi/linux/virtio_gpu.h
14294 VIRTIO HOST (VHOST)
14295 M: "Michael S. Tsirkin" <mst@redhat.com>
14296 M: Jason Wang <jasowang@redhat.com>
14297 L: kvm@vger.kernel.org
14298 L: virtualization@lists.linux-foundation.org
14299 L: netdev@vger.kernel.org
14300 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
14303 F: include/uapi/linux/vhost.h
14305 VIRTIO INPUT DRIVER
14306 M: Gerd Hoffmann <kraxel@redhat.com>
14308 F: drivers/virtio/virtio_input.c
14309 F: include/uapi/linux/virtio_input.h
14311 VIRTUAL SERIO DEVICE DRIVER
14312 M: Stephen Chandler Paul <thatslyude@gmail.com>
14314 F: drivers/input/serio/userio.c
14315 F: include/uapi/linux/userio.h
14317 VIVID VIRTUAL VIDEO DRIVER
14318 M: Hans Verkuil <hverkuil@xs4all.nl>
14319 L: linux-media@vger.kernel.org
14320 T: git git://linuxtv.org/media_tree.git
14321 W: https://linuxtv.org
14323 F: drivers/media/platform/vivid/*
14326 M: Florian Fainelli <f.fainelli@gmail.com>
14327 L: openwrt-devel@lists.openwrt.org (subscribers-only)
14329 F: drivers/vlynq/vlynq.c
14330 F: include/linux/vlynq.h
14333 M: Martyn Welch <martyn@welchs.me.uk>
14334 M: Manohar Vanga <manohar.vanga@gmail.com>
14335 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
14336 L: devel@driverdev.osuosl.org
14338 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
14339 F: Documentation/driver-api/vme.rst
14340 F: drivers/staging/vme/
14342 F: include/linux/vme*
14344 VMWARE BALLOON DRIVER
14345 M: Xavier Deguillard <xdeguillard@vmware.com>
14346 M: Philip Moltmann <moltmann@vmware.com>
14347 M: "VMware, Inc." <pv-drivers@vmware.com>
14348 L: linux-kernel@vger.kernel.org
14350 F: drivers/misc/vmw_balloon.c
14352 VMWARE HYPERVISOR INTERFACE
14353 M: Alok Kataria <akataria@vmware.com>
14354 L: virtualization@lists.linux-foundation.org
14356 F: arch/x86/kernel/cpu/vmware.c
14358 VMWARE PVRDMA DRIVER
14359 M: Adit Ranadive <aditr@vmware.com>
14360 M: VMware PV-Drivers <pv-drivers@vmware.com>
14361 L: linux-rdma@vger.kernel.org
14363 F: drivers/infiniband/hw/vmw_pvrdma/
14365 VMware PVSCSI driver
14366 M: Jim Gill <jgill@vmware.com>
14367 M: VMware PV-Drivers <pv-drivers@vmware.com>
14368 L: linux-scsi@vger.kernel.org
14370 F: drivers/scsi/vmw_pvscsi.c
14371 F: drivers/scsi/vmw_pvscsi.h
14373 VMWARE VMMOUSE SUBDRIVER
14374 M: "VMware Graphics" <linux-graphics-maintainer@vmware.com>
14375 M: "VMware, Inc." <pv-drivers@vmware.com>
14376 L: linux-input@vger.kernel.org
14378 F: drivers/input/mouse/vmmouse.c
14379 F: drivers/input/mouse/vmmouse.h
14381 VMWARE VMXNET3 ETHERNET DRIVER
14382 M: Shrikrishna Khare <skhare@vmware.com>
14383 M: "VMware, Inc." <pv-drivers@vmware.com>
14384 L: netdev@vger.kernel.org
14386 F: drivers/net/vmxnet3/
14388 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
14389 M: Liam Girdwood <lgirdwood@gmail.com>
14390 M: Mark Brown <broonie@kernel.org>
14391 L: linux-kernel@vger.kernel.org
14392 W: http://www.slimlogic.co.uk/?p=48
14393 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
14395 F: Documentation/devicetree/bindings/regulator/
14396 F: drivers/regulator/
14397 F: include/dt-bindings/regulator/
14398 F: include/linux/regulator/
14401 M: David Ahern <dsa@cumulusnetworks.com>
14402 M: Shrijeet Mukherjee <shm@cumulusnetworks.com>
14403 L: netdev@vger.kernel.org
14405 F: drivers/net/vrf.c
14406 F: Documentation/networking/vrf.txt
14408 VT1211 HARDWARE MONITOR DRIVER
14409 M: Juerg Haefliger <juergh@gmail.com>
14410 L: linux-hwmon@vger.kernel.org
14412 F: Documentation/hwmon/vt1211
14413 F: drivers/hwmon/vt1211.c
14415 VT8231 HARDWARE MONITOR DRIVER
14416 M: Roger Lucas <vt8231@hiddenengine.co.uk>
14417 L: linux-hwmon@vger.kernel.org
14419 F: drivers/hwmon/vt8231.c
14421 VUB300 USB to SDIO/SD/MMC bridge chip
14422 M: Tony Olech <tony.olech@elandigitalsystems.com>
14423 L: linux-mmc@vger.kernel.org
14424 L: linux-usb@vger.kernel.org
14426 F: drivers/mmc/host/vub300.c
14428 W1 DALLAS'S 1-WIRE BUS
14429 M: Evgeniy Polyakov <zbr@ioremap.net>
14431 F: Documentation/w1/
14433 F: include/linux/w1.h
14435 W83791D HARDWARE MONITORING DRIVER
14436 M: Marc Hulsman <m.hulsman@tudelft.nl>
14437 L: linux-hwmon@vger.kernel.org
14439 F: Documentation/hwmon/w83791d
14440 F: drivers/hwmon/w83791d.c
14442 W83793 HARDWARE MONITORING DRIVER
14443 M: Rudolf Marek <r.marek@assembler.cz>
14444 L: linux-hwmon@vger.kernel.org
14446 F: Documentation/hwmon/w83793
14447 F: drivers/hwmon/w83793.c
14449 W83795 HARDWARE MONITORING DRIVER
14450 M: Jean Delvare <jdelvare@suse.com>
14451 L: linux-hwmon@vger.kernel.org
14453 F: drivers/hwmon/w83795.c
14455 W83L51xD SD/MMC CARD INTERFACE DRIVER
14456 M: Pierre Ossman <pierre@ossman.eu>
14458 F: drivers/mmc/host/wbsd.*
14460 WACOM PROTOCOL 4 SERIAL TABLETS
14461 M: Julian Squires <julian@cipht.net>
14462 M: Hans de Goede <hdegoede@redhat.com>
14463 L: linux-input@vger.kernel.org
14465 F: drivers/input/tablet/wacom_serial4.c
14467 WATCHDOG DEVICE DRIVERS
14468 M: Wim Van Sebroeck <wim@iguana.be>
14469 R: Guenter Roeck <linux@roeck-us.net>
14470 L: linux-watchdog@vger.kernel.org
14471 W: http://www.linux-watchdog.org/
14472 T: git git://www.linux-watchdog.org/linux-watchdog.git
14474 F: Documentation/devicetree/bindings/watchdog/
14475 F: Documentation/watchdog/
14476 F: drivers/watchdog/
14477 F: include/linux/watchdog.h
14478 F: include/uapi/linux/watchdog.h
14480 WHISKEYCOVE PMIC GPIO DRIVER
14481 M: Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
14482 L: linux-gpio@vger.kernel.org
14484 F: drivers/gpio/gpio-wcove.c
14487 M: David Herrmann <dh.herrmann@googlemail.com>
14488 L: linux-input@vger.kernel.org
14490 F: drivers/hid/hid-wiimote*
14492 WILOCITY WIL6210 WIRELESS DRIVER
14493 M: Maya Erez <qca_merez@qca.qualcomm.com>
14494 L: linux-wireless@vger.kernel.org
14495 L: wil6210@qca.qualcomm.com
14497 W: http://wireless.kernel.org/en/users/Drivers/wil6210
14498 F: drivers/net/wireless/ath/wil6210/
14499 F: include/uapi/linux/wil6210_uapi.h
14502 M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
14503 M: linux-wimax@intel.com
14504 L: wimax@linuxwimax.org (subscribers-only)
14506 W: http://linuxwimax.org
14507 F: Documentation/wimax/README.wimax
14508 F: include/linux/wimax/debug.h
14509 F: include/net/wimax.h
14510 F: include/uapi/linux/wimax.h
14514 M: David Härdeman <david@hardeman.nu>
14516 F: drivers/media/rc/winbond-cir.c
14518 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
14519 M: William Breathitt Gray <vilhelm.gray@gmail.com>
14520 L: linux-watchdog@vger.kernel.org
14522 F: drivers/watchdog/ebc-c384_wdt.c
14524 WINSYSTEMS WS16C48 GPIO DRIVER
14525 M: William Breathitt Gray <vilhelm.gray@gmail.com>
14526 L: linux-gpio@vger.kernel.org
14528 F: drivers/gpio/gpio-ws16c48.c
14530 WISTRON LAPTOP BUTTON DRIVER
14531 M: Miloslav Trmac <mitr@volny.cz>
14533 F: drivers/input/misc/wistron_btns.c
14535 WL3501 WIRELESS PCMCIA CARD DRIVER
14536 L: linux-wireless@vger.kernel.org
14538 F: drivers/net/wireless/wl3501*
14540 WOLFSON MICROELECTRONICS DRIVERS
14541 L: patches@opensource.cirrus.com
14542 T: git https://github.com/CirrusLogic/linux-drivers.git
14543 W: https://github.com/CirrusLogic/linux-drivers/wiki
14545 F: Documentation/hwmon/wm83??
14546 F: Documentation/devicetree/bindings/extcon/extcon-arizona.txt
14547 F: Documentation/devicetree/bindings/regulator/arizona-regulator.txt
14548 F: Documentation/devicetree/bindings/mfd/arizona.txt
14549 F: Documentation/devicetree/bindings/mfd/wm831x.txt
14550 F: arch/arm/mach-s3c64xx/mach-crag6410*
14551 F: drivers/clk/clk-wm83*.c
14552 F: drivers/extcon/extcon-arizona.c
14553 F: drivers/leds/leds-wm83*.c
14554 F: drivers/gpio/gpio-*wm*.c
14555 F: drivers/gpio/gpio-arizona.c
14556 F: drivers/hwmon/wm83??-hwmon.c
14557 F: drivers/input/misc/wm831x-on.c
14558 F: drivers/input/touchscreen/wm831x-ts.c
14559 F: drivers/input/touchscreen/wm97*.c
14560 F: drivers/mfd/arizona*
14561 F: drivers/mfd/wm*.c
14562 F: drivers/mfd/cs47l24*
14563 F: drivers/power/supply/wm83*.c
14564 F: drivers/rtc/rtc-wm83*.c
14565 F: drivers/regulator/wm8*.c
14566 F: drivers/regulator/arizona*
14567 F: drivers/video/backlight/wm83*_bl.c
14568 F: drivers/watchdog/wm83*_wdt.c
14569 F: include/linux/mfd/arizona/
14570 F: include/linux/mfd/wm831x/
14571 F: include/linux/mfd/wm8350/
14572 F: include/linux/mfd/wm8400*
14573 F: include/linux/regulator/arizona*
14574 F: include/linux/wm97xx.h
14575 F: include/sound/wm????.h
14576 F: sound/soc/codecs/arizona.?
14577 F: sound/soc/codecs/wm*
14578 F: sound/soc/codecs/cs47l24*
14581 M: Tejun Heo <tj@kernel.org>
14582 R: Lai Jiangshan <jiangshanlai@gmail.com>
14583 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
14585 F: include/linux/workqueue.h
14586 F: kernel/workqueue.c
14587 F: Documentation/core-api/workqueue.rst
14589 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
14590 M: Chen-Yu Tsai <wens@csie.org>
14591 L: linux-kernel@vger.kernel.org
14596 M: Andrew Hendry <andrew.hendry@gmail.com>
14597 L: linux-x25@vger.kernel.org
14599 F: Documentation/networking/x25*
14600 F: include/net/x25*
14603 X86 ARCHITECTURE (32-BIT AND 64-BIT)
14604 M: Thomas Gleixner <tglx@linutronix.de>
14605 M: Ingo Molnar <mingo@redhat.com>
14606 M: "H. Peter Anvin" <hpa@zytor.com>
14608 L: linux-kernel@vger.kernel.org
14609 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
14611 F: Documentation/x86/
14614 X86 MCE INFRASTRUCTURE
14615 M: Tony Luck <tony.luck@intel.com>
14616 M: Borislav Petkov <bp@alien8.de>
14617 L: linux-edac@vger.kernel.org
14619 F: arch/x86/kernel/cpu/mcheck/*
14621 X86 MICROCODE UPDATE SUPPORT
14622 M: Borislav Petkov <bp@alien8.de>
14624 F: arch/x86/kernel/cpu/microcode/*
14626 X86 PLATFORM DRIVERS
14627 M: Darren Hart <dvhart@infradead.org>
14628 M: Andy Shevchenko <andy@infradead.org>
14629 L: platform-driver-x86@vger.kernel.org
14630 T: git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
14632 F: drivers/platform/x86/
14633 F: drivers/platform/olpc/
14636 M: Andy Lutomirski <luto@amacapital.net>
14637 L: linux-kernel@vger.kernel.org
14638 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
14640 F: arch/x86/entry/vdso/
14642 XC2028/3028 TUNER DRIVER
14643 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
14644 M: Mauro Carvalho Chehab <mchehab@kernel.org>
14645 L: linux-media@vger.kernel.org
14646 W: https://linuxtv.org
14647 T: git git://linuxtv.org/media_tree.git
14649 F: drivers/media/tuners/tuner-xc2028.*
14651 XEN BLOCK SUBSYSTEM
14652 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
14653 M: Roger Pau Monné <roger.pau@citrix.com>
14654 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
14656 F: drivers/block/xen-blkback/*
14657 F: drivers/block/xen*
14660 M: Stefano Stabellini <sstabellini@kernel.org>
14661 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
14664 F: arch/arm/include/asm/xen/
14666 XEN HYPERVISOR ARM64
14667 M: Stefano Stabellini <sstabellini@kernel.org>
14668 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
14671 F: arch/arm64/include/asm/xen/
14673 XEN HYPERVISOR INTERFACE
14674 M: Boris Ostrovsky <boris.ostrovsky@oracle.com>
14675 M: Juergen Gross <jgross@suse.com>
14676 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
14677 T: git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
14680 F: drivers/*/xen-*front.c
14682 F: arch/x86/include/asm/xen/
14684 F: include/uapi/xen/
14685 F: Documentation/ABI/stable/sysfs-hypervisor-xen
14686 F: Documentation/ABI/testing/sysfs-hypervisor-xen
14688 XEN NETWORK BACKEND DRIVER
14689 M: Wei Liu <wei.liu2@citrix.com>
14690 M: Paul Durrant <paul.durrant@citrix.com>
14691 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
14692 L: netdev@vger.kernel.org
14694 F: drivers/net/xen-netback/*
14697 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
14698 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
14700 F: arch/x86/pci/*xen*
14701 F: drivers/pci/*xen*
14704 M: Juergen Gross <jgross@suse.com>
14705 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
14706 L: linux-scsi@vger.kernel.org
14708 F: drivers/scsi/xen-scsifront.c
14709 F: drivers/xen/xen-scsiback.c
14710 F: include/xen/interface/io/vscsiif.h
14712 XEN SWIOTLB SUBSYSTEM
14713 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
14714 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
14716 F: arch/x86/xen/*swiotlb*
14717 F: drivers/xen/*swiotlb*
14720 M: Darrick J. Wong <darrick.wong@oracle.com>
14721 M: linux-xfs@vger.kernel.org
14722 L: linux-xfs@vger.kernel.org
14724 T: git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
14726 F: Documentation/filesystems/xfs.txt
14729 XILINX AXI ETHERNET DRIVER
14730 M: Anirudha Sarangi <anirudh@xilinx.com>
14731 M: John Linn <John.Linn@xilinx.com>
14733 F: drivers/net/ethernet/xilinx/xilinx_axienet*
14735 XILINX UARTLITE SERIAL DRIVER
14736 M: Peter Korsgaard <jacmet@sunsite.dk>
14737 L: linux-serial@vger.kernel.org
14739 F: drivers/tty/serial/uartlite.c
14741 XILINX VIDEO IP CORES
14742 M: Hyun Kwon <hyun.kwon@xilinx.com>
14743 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14744 L: linux-media@vger.kernel.org
14745 T: git git://linuxtv.org/media_tree.git
14747 F: Documentation/devicetree/bindings/media/xilinx/
14748 F: drivers/media/platform/xilinx/
14749 F: include/uapi/linux/xilinx-v4l2-controls.h
14752 M: Eli Billauer <eli.billauer@gmail.com>
14753 L: linux-kernel@vger.kernel.org
14755 F: drivers/char/xillybus/
14757 XRA1403 GPIO EXPANDER
14758 M: Nandor Han <nandor.han@ge.com>
14759 M: Semi Malinen <semi.malinen@ge.com>
14760 L: linux-gpio@vger.kernel.org
14762 F: drivers/gpio/gpio-xra1403.c
14763 F: Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
14765 XTENSA XTFPGA PLATFORM SUPPORT
14766 M: Max Filippov <jcmvbkbc@gmail.com>
14767 L: linux-xtensa@linux-xtensa.org
14769 F: drivers/spi/spi-xtensa-xtfpga.c
14770 F: sound/soc/xtensa/xtfpga-i2s.c
14772 YAM DRIVER FOR AX.25
14773 M: Jean-Paul Roubelat <jpr@f6fbb.org>
14774 L: linux-hams@vger.kernel.org
14776 F: drivers/net/hamradio/yam*
14777 F: include/linux/yam.h
14779 YAMA SECURITY MODULE
14780 M: Kees Cook <keescook@chromium.org>
14781 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
14784 F: Documentation/admin-guide/LSM/Yama.rst
14786 YEALINK PHONE DRIVER
14787 M: Henk Vergonet <Henk.Vergonet@gmail.com>
14788 L: usbb2k-api-dev@nongnu.org
14790 F: Documentation/input/yealink.rst
14791 F: drivers/input/misc/yealink.*
14793 Z8530 DRIVER FOR AX.25
14794 M: Joerg Reuter <jreuter@yaina.de>
14795 W: http://yaina.de/jreuter/
14796 W: http://www.qsl.net/dl1bke/
14797 L: linux-hams@vger.kernel.org
14799 F: Documentation/networking/z8530drv.txt
14800 F: drivers/net/hamradio/*scc.c
14801 F: drivers/net/hamradio/z8530.h
14803 ZBUD COMPRESSED PAGE ALLOCATOR
14804 M: Seth Jennings <sjenning@redhat.com>
14805 M: Dan Streetman <ddstreet@ieee.org>
14806 L: linux-mm@kvack.org
14809 F: include/linux/zbud.h
14811 ZD1211RW WIRELESS DRIVER
14812 M: Daniel Drake <dsd@gentoo.org>
14813 M: Ulrich Kunitz <kune@deine-taler.de>
14814 W: http://zd1211.ath.cx/wiki/DriverRewrite
14815 L: linux-wireless@vger.kernel.org
14816 L: zd1211-devs@lists.sourceforge.net (subscribers-only)
14818 F: drivers/net/wireless/zydas/zd1211rw/
14820 ZD1301 MEDIA DRIVER
14821 M: Antti Palosaari <crope@iki.fi>
14822 L: linux-media@vger.kernel.org
14823 W: https://linuxtv.org/
14824 W: http://palosaari.fi/linux/
14825 Q: https://patchwork.linuxtv.org/project/linux-media/list/
14827 F: drivers/media/usb/dvb-usb-v2/zd1301*
14829 ZD1301_DEMOD MEDIA DRIVER
14830 M: Antti Palosaari <crope@iki.fi>
14831 L: linux-media@vger.kernel.org
14832 W: https://linuxtv.org/
14833 W: http://palosaari.fi/linux/
14834 Q: https://patchwork.linuxtv.org/project/linux-media/list/
14836 F: drivers/media/dvb-frontends/zd1301_demod*
14838 ZPOOL COMPRESSED PAGE STORAGE API
14839 M: Dan Streetman <ddstreet@ieee.org>
14840 L: linux-mm@kvack.org
14843 F: include/linux/zpool.h
14845 ZR36067 VIDEO FOR LINUX DRIVER
14846 L: mjpeg-users@lists.sourceforge.net
14847 L: linux-media@vger.kernel.org
14848 W: http://mjpeg.sourceforge.net/driver-zoran/
14849 T: hg https://linuxtv.org/hg/v4l-dvb
14851 F: drivers/media/pci/zoran/
14853 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
14854 M: Minchan Kim <minchan@kernel.org>
14855 M: Nitin Gupta <ngupta@vflare.org>
14856 R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
14857 L: linux-kernel@vger.kernel.org
14859 F: drivers/block/zram/
14860 F: Documentation/blockdev/zram.txt
14862 ZS DECSTATION Z85C30 SERIAL DRIVER
14863 M: "Maciej W. Rozycki" <macro@linux-mips.org>
14865 F: drivers/tty/serial/zs.*
14867 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
14868 M: Minchan Kim <minchan@kernel.org>
14869 M: Nitin Gupta <ngupta@vflare.org>
14870 R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
14871 L: linux-mm@kvack.org
14874 F: include/linux/zsmalloc.h
14875 F: Documentation/vm/zsmalloc.txt
14877 ZSWAP COMPRESSED SWAP CACHING
14878 M: Seth Jennings <sjenning@redhat.com>
14879 M: Dan Streetman <ddstreet@ieee.org>
14880 L: linux-mm@kvack.org
14885 M: Linus Torvalds <torvalds@linux-foundation.org>
14886 L: linux-kernel@vger.kernel.org
14887 Q: http://patchwork.kernel.org/project/LKML/list/
14888 T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
14889 S: Buried alive in reporters