3 List of maintainers and how to submit kernel changes
5 Please try to follow the guidelines below. This will make things
6 easier on the maintainers. Not all of these guidelines matter for every
7 trivial patch so apply some common sense.
9 1. Always _test_ your changes, however small, on at least 4 or
10 5 people, preferably many more.
12 2. Try to release a few ALPHA test versions to the net. Announce
13 them onto the kernel channel and await results. This is especially
14 important for device drivers, because often that's the only way
15 you will find things like the fact version 3 firmware needs
16 a magic fix you didn't know about, or some clown changed the
17 chips on a board and not its name. (Don't laugh! Look at the
18 SMC etherpower for that.)
20 3. Make sure your changes compile correctly in multiple
21 configurations. In particular check that changes work both as a
22 module and built into the kernel.
24 4. When you are happy with a change make it generally available for
25 testing and await feedback.
27 5. Make a patch available to the relevant maintainer in the list. Use
28 'diff -u' to make the patch easy to merge. Be prepared to get your
29 changes sent back with seemingly silly requests about formatting
30 and variable names. These aren't as silly as they seem. One
31 job the maintainers (and especially Linus) do is to keep things
32 looking the same. Sometimes this means that the clever hack in
33 your driver to get around a problem actually needs to become a
34 generalized kernel feature ready for next time.
36 PLEASE check your patch with the automated style checker
37 (scripts/checkpatch.pl) to catch trivial style violations.
38 See Documentation/process/coding-style.rst for guidance here.
40 PLEASE CC: the maintainers and mailing lists that are generated
41 by scripts/get_maintainer.pl. The results returned by the
42 script will be best if you have git installed and are making
43 your changes in a branch derived from Linus' latest git tree.
44 See Documentation/process/submitting-patches.rst for details.
46 PLEASE try to include any credit lines you want added with the
47 patch. It avoids people being missed off by mistake and makes
48 it easier to know who wants adding and who doesn't.
50 PLEASE document known bugs. If it doesn't work for everything
51 or does something very odd once a month document it.
53 PLEASE remember that submissions must be made under the terms
54 of the Linux Foundation certificate of contribution and should
55 include a Signed-off-by: line. The current version of this
56 "Developer's Certificate of Origin" (DCO) is listed in the file
57 Documentation/process/submitting-patches.rst.
59 6. Make sure you have the right to send any changes you make. If you
60 do changes at work you may find your employer owns the patch
63 7. When sending security related changes or reports to a maintainer
64 please Cc: security@kernel.org, especially if the maintainer
69 Descriptions of section entries:
72 M: Mail patches to: FullName <address@domain>
73 R: Designated reviewer: FullName <address@domain>
74 These reviewers should be CCed on patches.
75 L: Mailing list that is relevant to this area
76 W: Web-page with status/info
77 B: URI for where to file bugs. A web-page with detailed bug
78 filing info, a direct bug tracker link, or a mailto: URI.
79 C: URI for chat protocol, server and channel where developers
80 usually hang out, for example irc://server/channel.
81 Q: Patchwork web based patch tracking system site
82 T: SCM tree type and location.
83 Type is one of: git, hg, quilt, stgit, topgit
84 S: Status, one of the following:
85 Supported: Someone is actually paid to look after this.
86 Maintained: Someone actually looks after it.
87 Odd Fixes: It has a maintainer but they don't have time to do
88 much other than throw the odd patch in. See below..
89 Orphan: No current maintainer [but maybe you could take the
90 role as you write your new code].
91 Obsolete: Old code. Something tagged obsolete generally means
92 it has been replaced by a better system and you
94 F: Files and directories with wildcard patterns.
95 A trailing slash includes all files and subdirectory files.
96 F: drivers/net/ all files in and below drivers/net
97 F: drivers/net/* all files in drivers/net, but not below
98 F: */net/* all files in "any top level directory"/net
99 One pattern per line. Multiple F: lines acceptable.
100 N: Files and directories with regex patterns.
101 N: [^a-z]tegra all files whose path contains the word tegra
102 One pattern per line. Multiple N: lines acceptable.
103 scripts/get_maintainer.pl has different behavior for files that
104 match F: pattern and matches of N: patterns. By default,
105 get_maintainer will not look at git log history when an F: pattern
106 match occurs. When an N: match occurs, git log history is used
107 to also notify the people that have git commit signatures.
108 X: Files and directories that are NOT maintained, same rules as F:
109 Files exclusions are tested before file matches.
110 Can be useful for excluding a specific subdirectory, for instance:
113 matches all files in and below net excluding net/ipv6/
114 K: Keyword perl extended regex pattern to match content in a
115 patch or file. For instance:
117 matches patches or files that contain "of_get_profile"
118 K: \b(printk|pr_(info|err))\b
119 matches patches or files that contain one or more of the words
120 printk, pr_info or pr_err
121 One regex pattern per line. Multiple K: lines acceptable.
123 Note: For the hard of thinking, this list is meant to remain in alphabetical
124 order. If you could add yourselves to it in alphabetical order that would be
127 Maintainers List (try to look for most precise areas first)
129 -----------------------------------
132 M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
133 L: netdev@vger.kernel.org
135 F: Documentation/networking/vortex.txt
136 F: drivers/net/ethernet/3com/3c59x.c
138 3CR990 NETWORK DRIVER
139 M: David Dillow <dave@thedillows.org>
140 L: netdev@vger.kernel.org
142 F: drivers/net/ethernet/3com/typhoon*
144 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
145 M: Adam Radford <aradford@gmail.com>
146 L: linux-scsi@vger.kernel.org
147 W: http://www.lsi.com
151 53C700 AND 53C700-66 SCSI DRIVER
152 M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
153 L: linux-scsi@vger.kernel.org
155 F: drivers/scsi/53c700*
157 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
158 M: Alexander Aring <alex.aring@gmail.com>
159 M: Jukka Rissanen <jukka.rissanen@linux.intel.com>
160 L: linux-bluetooth@vger.kernel.org
161 L: linux-wpan@vger.kernel.org
164 F: include/net/6lowpan.h
165 F: Documentation/networking/6lowpan.txt
167 6PACK NETWORK DRIVER FOR AX.25
168 M: Andreas Koensgen <ajk@comnets.uni-bremen.de>
169 L: linux-hams@vger.kernel.org
171 F: drivers/net/hamradio/6pack.c
173 8169 10/100/1000 GIGABIT ETHERNET DRIVER
174 M: Realtek linux nic maintainers <nic_swsd@realtek.com>
175 L: netdev@vger.kernel.org
177 F: drivers/net/ethernet/realtek/r8169.c
179 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
180 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
181 L: linux-serial@vger.kernel.org
183 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
184 F: drivers/tty/serial/8250*
185 F: include/linux/serial_8250.h
187 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
188 L: netdev@vger.kernel.org
190 F: drivers/net/ethernet/8390/
193 M: Eric Van Hensbergen <ericvh@gmail.com>
194 M: Ron Minnich <rminnich@sandia.gov>
195 M: Latchesar Ionkov <lucho@ionkov.net>
196 L: v9fs-developer@lists.sourceforge.net
197 W: http://swik.net/v9fs
198 Q: http://patchwork.kernel.org/project/v9fs-devel/list/
199 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
201 F: Documentation/filesystems/9p.txt
205 F: include/uapi/linux/virtio_9p.h
206 F: include/trace/events/9p.h
210 M: Antti Palosaari <crope@iki.fi>
211 L: linux-media@vger.kernel.org
212 W: https://linuxtv.org
213 W: http://palosaari.fi/linux/
214 Q: http://patchwork.linuxtv.org/project/linux-media/list/
215 T: git git://linuxtv.org/anttip/media_tree.git
217 F: drivers/media/dvb-frontends/a8293*
219 AACRAID SCSI RAID DRIVER
220 M: Adaptec OEM Raid Solutions <aacraid@microsemi.com>
221 L: linux-scsi@vger.kernel.org
222 W: http://www.adaptec.com/
224 F: Documentation/scsi/aacraid.txt
225 F: drivers/scsi/aacraid/
228 L: linux-api@vger.kernel.org
229 F: include/linux/syscalls.h
232 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
233 M: Hans de Goede <hdegoede@redhat.com>
234 L: linux-hwmon@vger.kernel.org
236 F: drivers/hwmon/abituguru.c
238 ABIT UGURU 3 HARDWARE MONITOR DRIVER
239 M: Alistair John Strachan <alistair@devzero.co.uk>
240 L: linux-hwmon@vger.kernel.org
242 F: drivers/hwmon/abituguru3.c
244 ACCES 104-DIO-48E GPIO DRIVER
245 M: William Breathitt Gray <vilhelm.gray@gmail.com>
246 L: linux-gpio@vger.kernel.org
248 F: drivers/gpio/gpio-104-dio-48e.c
250 ACCES 104-IDI-48 GPIO DRIVER
251 M: "William Breathitt Gray" <vilhelm.gray@gmail.com>
252 L: linux-gpio@vger.kernel.org
254 F: drivers/gpio/gpio-104-idi-48.c
256 ACCES 104-IDIO-16 GPIO DRIVER
257 M: "William Breathitt Gray" <vilhelm.gray@gmail.com>
258 L: linux-gpio@vger.kernel.org
260 F: drivers/gpio/gpio-104-idio-16.c
262 ACCES 104-QUAD-8 IIO DRIVER
263 M: William Breathitt Gray <vilhelm.gray@gmail.com>
264 L: linux-iio@vger.kernel.org
266 F: drivers/iio/counter/104-quad-8.c
268 ACCES PCI-IDIO-16 GPIO DRIVER
269 M: William Breathitt Gray <vilhelm.gray@gmail.com>
270 L: linux-gpio@vger.kernel.org
272 F: drivers/gpio/gpio-pci-idio-16.c
275 M: Jes Sorensen <jes@trained-monkey.org>
276 L: linux-acenic@sunsite.dk
278 F: drivers/net/ethernet/alteon/acenic*
280 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
281 M: Peter Feuerer <peter@piie.net>
282 L: platform-driver-x86@vger.kernel.org
283 W: http://piie.net/?section=acerhdf
285 F: drivers/platform/x86/acerhdf.c
287 ACER WMI LAPTOP EXTRAS
288 M: "Lee, Chun-Yi" <jlee@suse.com>
289 L: platform-driver-x86@vger.kernel.org
291 F: drivers/platform/x86/acer-wmi.c
294 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
295 M: Len Brown <lenb@kernel.org>
296 L: linux-acpi@vger.kernel.org
297 W: https://01.org/linux-acpi
298 Q: https://patchwork.kernel.org/project/linux-acpi/list/
299 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
300 B: https://bugzilla.kernel.org
303 F: drivers/pnp/pnpacpi/
304 F: include/linux/acpi.h
306 F: Documentation/acpi/
307 F: Documentation/ABI/testing/sysfs-bus-acpi
308 F: Documentation/ABI/testing/configfs-acpi
309 F: drivers/pci/*acpi*
310 F: drivers/pci/*/*acpi*
311 F: drivers/pci/*/*/*acpi*
314 ACPI COMPONENT ARCHITECTURE (ACPICA)
315 M: Robert Moore <robert.moore@intel.com>
316 M: Lv Zheng <lv.zheng@intel.com>
317 M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
318 L: linux-acpi@vger.kernel.org
320 W: https://acpica.org/
321 W: https://github.com/acpica/acpica/
322 Q: https://patchwork.kernel.org/project/linux-acpi/list/
323 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
324 B: https://bugzilla.kernel.org
325 B: https://bugs.acpica.org
327 F: drivers/acpi/acpica/
332 M: Zhang Rui <rui.zhang@intel.com>
333 L: linux-acpi@vger.kernel.org
334 W: https://01.org/linux-acpi
335 B: https://bugzilla.kernel.org
337 F: drivers/acpi/fan.c
339 ACPI FOR ARM64 (ACPI/arm64)
340 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
341 M: Hanjun Guo <hanjun.guo@linaro.org>
342 M: Sudeep Holla <sudeep.holla@arm.com>
343 L: linux-acpi@vger.kernel.org
345 F: drivers/acpi/arm64
348 M: Zhang Rui <rui.zhang@intel.com>
349 L: linux-acpi@vger.kernel.org
350 W: https://01.org/linux-acpi
351 B: https://bugzilla.kernel.org
353 F: drivers/acpi/*thermal*
356 M: Zhang Rui <rui.zhang@intel.com>
357 L: linux-acpi@vger.kernel.org
358 W: https://01.org/linux-acpi
359 B: https://bugzilla.kernel.org
361 F: drivers/acpi/acpi_video.c
364 L: platform-driver-x86@vger.kernel.org
366 F: drivers/platform/x86/wmi.c
368 AD1889 ALSA SOUND DRIVER
369 M: Thibaut Varene <T-Bone@parisc-linux.org>
370 W: http://wiki.parisc-linux.org/AD1889
371 L: linux-parisc@vger.kernel.org
373 F: sound/pci/ad1889.*
375 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
376 M: Michael Hennerich <michael.hennerich@analog.com>
377 W: http://wiki.analog.com/AD5254
378 W: http://ez.analog.com/community/linux-device-drivers
380 F: drivers/misc/ad525x_dpot.c
382 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
383 M: Michael Hennerich <michael.hennerich@analog.com>
384 W: http://wiki.analog.com/AD5398
385 W: http://ez.analog.com/community/linux-device-drivers
387 F: drivers/regulator/ad5398.c
389 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
390 M: Michael Hennerich <michael.hennerich@analog.com>
391 W: http://wiki.analog.com/AD7142
392 W: http://ez.analog.com/community/linux-device-drivers
394 F: drivers/input/misc/ad714x.c
396 AD7877 TOUCHSCREEN DRIVER
397 M: Michael Hennerich <michael.hennerich@analog.com>
398 W: http://wiki.analog.com/AD7877
399 W: http://ez.analog.com/community/linux-device-drivers
401 F: drivers/input/touchscreen/ad7877.c
403 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
404 M: Michael Hennerich <michael.hennerich@analog.com>
405 W: http://wiki.analog.com/AD7879
406 W: http://ez.analog.com/community/linux-device-drivers
408 F: drivers/input/touchscreen/ad7879.c
410 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
411 M: Jiri Kosina <jikos@kernel.org>
414 ADF7242 IEEE 802.15.4 RADIO DRIVER
415 M: Michael Hennerich <michael.hennerich@analog.com>
416 W: https://wiki.analog.com/ADF7242
417 W: http://ez.analog.com/community/linux-device-drivers
418 L: linux-wpan@vger.kernel.org
420 F: drivers/net/ieee802154/adf7242.c
421 F: Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
423 ADM1025 HARDWARE MONITOR DRIVER
424 M: Jean Delvare <jdelvare@suse.com>
425 L: linux-hwmon@vger.kernel.org
427 F: Documentation/hwmon/adm1025
428 F: drivers/hwmon/adm1025.c
430 ADM1029 HARDWARE MONITOR DRIVER
431 M: Corentin Labbe <clabbe.montjoie@gmail.com>
432 L: linux-hwmon@vger.kernel.org
434 F: drivers/hwmon/adm1029.c
436 ADM8211 WIRELESS DRIVER
437 L: linux-wireless@vger.kernel.org
438 W: http://wireless.kernel.org/
440 F: drivers/net/wireless/admtek/adm8211.*
442 ADP1653 FLASH CONTROLLER DRIVER
443 M: Sakari Ailus <sakari.ailus@iki.fi>
444 L: linux-media@vger.kernel.org
446 F: drivers/media/i2c/adp1653.c
447 F: include/media/i2c/adp1653.h
449 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
450 M: Michael Hennerich <michael.hennerich@analog.com>
451 W: http://wiki.analog.com/ADP5520
452 W: http://ez.analog.com/community/linux-device-drivers
454 F: drivers/mfd/adp5520.c
455 F: drivers/video/backlight/adp5520_bl.c
456 F: drivers/leds/leds-adp5520.c
457 F: drivers/gpio/gpio-adp5520.c
458 F: drivers/input/keyboard/adp5520-keys.c
460 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
461 M: Michael Hennerich <michael.hennerich@analog.com>
462 W: http://wiki.analog.com/ADP5588
463 W: http://ez.analog.com/community/linux-device-drivers
465 F: drivers/input/keyboard/adp5588-keys.c
466 F: drivers/gpio/gpio-adp5588.c
468 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
469 M: Michael Hennerich <michael.hennerich@analog.com>
470 W: http://wiki.analog.com/ADP8860
471 W: http://ez.analog.com/community/linux-device-drivers
473 F: drivers/video/backlight/adp8860_bl.c
475 ADS1015 HARDWARE MONITOR DRIVER
476 M: Dirk Eibach <eibach@gdsys.de>
477 L: linux-hwmon@vger.kernel.org
479 F: Documentation/hwmon/ads1015
480 F: drivers/hwmon/ads1015.c
481 F: include/linux/platform_data/ads1015.h
484 M: Colin Leroy <colin@colino.net>
486 F: drivers/macintosh/therm_adt746x.c
488 ADT7475 HARDWARE MONITOR DRIVER
489 M: Jean Delvare <jdelvare@suse.com>
490 L: linux-hwmon@vger.kernel.org
492 F: Documentation/hwmon/adt7475
493 F: drivers/hwmon/adt7475.c
495 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
496 M: Michael Hennerich <michael.hennerich@analog.com>
497 W: http://wiki.analog.com/ADXL345
498 W: http://ez.analog.com/community/linux-device-drivers
500 F: drivers/input/misc/adxl34x.c
503 M: Matthew Wilcox <matthew@wil.cx>
504 M: Hannes Reinecke <hare@suse.com>
505 L: linux-scsi@vger.kernel.org
507 F: Documentation/scsi/advansys.txt
508 F: drivers/scsi/advansys.c
511 M: Riccardo Facchetti <fizban@tin.it>
513 F: sound/oss/aedsp16.c
516 M: Antti Palosaari <crope@iki.fi>
517 L: linux-media@vger.kernel.org
518 W: https://linuxtv.org
519 W: http://palosaari.fi/linux/
520 Q: http://patchwork.linuxtv.org/project/linux-media/list/
521 T: git git://linuxtv.org/anttip/media_tree.git
523 F: drivers/media/dvb-frontends/af9013*
526 M: Antti Palosaari <crope@iki.fi>
527 L: linux-media@vger.kernel.org
528 W: https://linuxtv.org
529 W: http://palosaari.fi/linux/
530 Q: http://patchwork.linuxtv.org/project/linux-media/list/
531 T: git git://linuxtv.org/anttip/media_tree.git
533 F: drivers/media/dvb-frontends/af9033*
536 L: linux-fsdevel@vger.kernel.org
538 F: Documentation/filesystems/affs.txt
541 AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
542 M: David Howells <dhowells@redhat.com>
543 L: linux-afs@lists.infradead.org
546 F: include/net/af_rxrpc.h
547 F: net/rxrpc/af_rxrpc.c
548 W: https://www.infradead.org/~dhowells/kafs/
551 M: David Airlie <airlied@linux.ie>
552 T: git git://people.freedesktop.org/~airlied/linux (part of drm maint)
555 F: include/linux/agp*
556 F: include/uapi/linux/agp*
559 M: "Juergen E. Fischer" <fischer@norbit.de>
560 L: linux-scsi@vger.kernel.org
562 F: drivers/scsi/aha152x*
563 F: drivers/scsi/pcmcia/aha152x*
565 AIC7XXX / AIC79XX SCSI DRIVER
566 M: Hannes Reinecke <hare@suse.com>
567 L: linux-scsi@vger.kernel.org
569 F: drivers/scsi/aic7xxx/
571 AIMSLAB FM RADIO RECEIVER DRIVER
572 M: Hans Verkuil <hverkuil@xs4all.nl>
573 L: linux-media@vger.kernel.org
574 T: git git://linuxtv.org/media_tree.git
575 W: https://linuxtv.org
577 F: drivers/media/radio/radio-aimslab*
580 M: Benjamin LaHaise <bcrl@kvack.org>
581 L: linux-aio@kvack.org
584 F: include/linux/*aio*.h
587 M: Antti Palosaari <crope@iki.fi>
588 L: linux-media@vger.kernel.org
589 W: https://linuxtv.org
590 W: http://palosaari.fi/linux/
591 Q: http://patchwork.linuxtv.org/project/linux-media/list/
592 T: git git://linuxtv.org/anttip/media_tree.git
594 F: drivers/media/usb/airspy/
596 ALACRITECH GIGABIT ETHERNET DRIVER
597 M: Lino Sanfilippo <LinoSanfilippo@gmx.de>
599 F: drivers/net/ethernet/alacritech/*
601 ALCATEL SPEEDTOUCH USB DRIVER
602 M: Duncan Sands <duncan.sands@free.fr>
603 L: linux-usb@vger.kernel.org
604 W: http://www.linux-usb.org/SpeedTouch/
606 F: drivers/usb/atm/speedtch.c
607 F: drivers/usb/atm/usbatm.c
609 ALCHEMY AU1XX0 MMC DRIVER
610 M: Manuel Lauss <manuel.lauss@gmail.com>
612 F: drivers/mmc/host/au1xmmc.c
615 M: Rudolf Marek <r.marek@assembler.cz>
616 L: linux-i2c@vger.kernel.org
618 F: Documentation/i2c/busses/i2c-ali1563
619 F: drivers/i2c/busses/i2c-ali1563.c
621 ALLWINNER SECURITY SYSTEM
622 M: Corentin Labbe <clabbe.montjoie@gmail.com>
623 L: linux-crypto@vger.kernel.org
625 F: drivers/crypto/sunxi-ss/
628 M: Richard Henderson <rth@twiddle.net>
629 M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
630 M: Matt Turner <mattst88@gmail.com>
632 L: linux-alpha@vger.kernel.org
635 ALPS PS/2 TOUCHPAD DRIVER
636 R: Pali Rohár <pali.rohar@gmail.com>
637 F: drivers/input/mouse/alps.*
639 ALTERA MAILBOX DRIVER
640 M: Ley Foon Tan <lftan@altera.com>
641 L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
643 F: drivers/mailbox/mailbox-altera.c
646 M: Tien Hock Loh <thloh@altera.com>
647 L: linux-gpio@vger.kernel.org
649 F: drivers/gpio/gpio-altera.c
651 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
652 M: Thor Thayer <thor.thayer@linux.intel.com>
654 F: drivers/gpio/gpio-altera-a10sr.c
655 F: drivers/mfd/altera-a10sr.c
656 F: drivers/reset/reset-a10sr.c
657 F: include/linux/mfd/altera-a10sr.h
658 F: include/dt-bindings/reset/altr,rst-mgr-a10sr.h
660 ALTERA TRIPLE SPEED ETHERNET DRIVER
661 M: Vince Bridgers <vbridger@opensource.altera.com>
662 L: netdev@vger.kernel.org
663 L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
665 F: drivers/net/ethernet/altera/
667 ALTERA UART/JTAG UART SERIAL DRIVERS
668 M: Tobias Klauser <tklauser@distanz.ch>
669 L: linux-serial@vger.kernel.org
670 L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
672 F: drivers/tty/serial/altera_uart.c
673 F: drivers/tty/serial/altera_jtaguart.c
674 F: include/linux/altera_uart.h
675 F: include/linux/altera_jtaguart.h
677 AMAZON ETHERNET DRIVERS
678 M: Netanel Belgazal <netanel@annapurnalabs.com>
679 R: Saeed Bishara <saeed@annapurnalabs.com>
680 R: Zorik Machulsky <zorik@annapurnalabs.com>
681 L: netdev@vger.kernel.org
683 F: Documentation/networking/ena.txt
684 F: drivers/net/ethernet/amazon/
686 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
687 M: Tom Lendacky <thomas.lendacky@amd.com>
688 M: Gary Hook <gary.hook@amd.com>
689 L: linux-crypto@vger.kernel.org
691 F: drivers/crypto/ccp/
692 F: include/linux/ccp.h
694 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
695 M: Huang Rui <ray.huang@amd.com>
696 L: linux-hwmon@vger.kernel.org
698 F: Documentation/hwmon/fam15h_power
699 F: drivers/hwmon/fam15h_power.c
701 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
702 L: linux-geode@lists.infradead.org (moderated for non-subscribers)
704 F: drivers/usb/gadget/udc/amd5536udc.*
706 AMD GEODE PROCESSOR/CHIPSET SUPPORT
707 P: Andres Salomon <dilinger@queued.net>
708 L: linux-geode@lists.infradead.org (moderated for non-subscribers)
709 W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
711 F: drivers/char/hw_random/geode-rng.c
712 F: drivers/crypto/geode*
713 F: drivers/video/fbdev/geode/
714 F: arch/x86/include/asm/geode.h
717 M: Joerg Roedel <joro@8bytes.org>
718 L: iommu@lists.linux-foundation.org
719 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
721 F: drivers/iommu/amd_iommu*.[ch]
722 F: include/linux/amd-iommu.h
725 M: Oded Gabbay <oded.gabbay@gmail.com>
726 L: dri-devel@lists.freedesktop.org
727 T: git git://people.freedesktop.org/~gabbayo/linux.git
729 F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
730 F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
731 F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
732 F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
733 F: drivers/gpu/drm/amd/amdkfd/
734 F: drivers/gpu/drm/amd/include/cik_structs.h
735 F: drivers/gpu/drm/amd/include/kgd_kfd_interface.h
736 F: drivers/gpu/drm/amd/include/vi_structs.h
737 F: drivers/gpu/drm/radeon/radeon_kfd.c
738 F: drivers/gpu/drm/radeon/radeon_kfd.h
739 F: include/uapi/linux/kfd_ioctl.h
741 AMD SEATTLE DEVICE TREE SUPPORT
742 M: Brijesh Singh <brijeshkumar.singh@amd.com>
743 M: Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
744 M: Tom Lendacky <thomas.lendacky@amd.com>
746 F: arch/arm64/boot/dts/amd/
749 M: Tom Lendacky <thomas.lendacky@amd.com>
750 L: netdev@vger.kernel.org
752 F: drivers/net/ethernet/amd/xgbe/
753 F: arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
755 AMS (Apple Motion Sensor) DRIVER
756 M: Michael Hanselmann <linux-kernel@hansmi.ch>
758 F: drivers/macintosh/ams/
760 ANALOG DEVICES INC AD9389B DRIVER
761 M: Hans Verkuil <hans.verkuil@cisco.com>
762 L: linux-media@vger.kernel.org
764 F: drivers/media/i2c/ad9389b*
766 ANALOG DEVICES INC ADV7180 DRIVER
767 M: Lars-Peter Clausen <lars@metafoo.de>
768 L: linux-media@vger.kernel.org
769 W: http://ez.analog.com/community/linux-device-drivers
771 F: drivers/media/i2c/adv7180.c
773 ANALOG DEVICES INC ADV7511 DRIVER
774 M: Hans Verkuil <hans.verkuil@cisco.com>
775 L: linux-media@vger.kernel.org
777 F: drivers/media/i2c/adv7511*
779 ANALOG DEVICES INC ADV7604 DRIVER
780 M: Hans Verkuil <hans.verkuil@cisco.com>
781 L: linux-media@vger.kernel.org
783 F: drivers/media/i2c/adv7604*
785 ANALOG DEVICES INC ADV7842 DRIVER
786 M: Hans Verkuil <hans.verkuil@cisco.com>
787 L: linux-media@vger.kernel.org
789 F: drivers/media/i2c/adv7842*
791 ANALOG DEVICES INC ASOC CODEC DRIVERS
792 M: Lars-Peter Clausen <lars@metafoo.de>
793 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
794 W: http://wiki.analog.com/
795 W: http://ez.analog.com/community/linux-device-drivers
797 F: sound/soc/codecs/adau*
798 F: sound/soc/codecs/adav*
799 F: sound/soc/codecs/ad1*
800 F: sound/soc/codecs/ad7*
801 F: sound/soc/codecs/ssm*
802 F: sound/soc/codecs/sigmadsp.*
804 ANALOG DEVICES INC ASOC DRIVERS
805 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
806 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
807 W: http://blackfin.uclinux.org/
809 F: sound/soc/blackfin/*
811 ANALOG DEVICES INC IIO DRIVERS
812 M: Lars-Peter Clausen <lars@metafoo.de>
813 M: Michael Hennerich <Michael.Hennerich@analog.com>
814 W: http://wiki.analog.com/
815 W: http://ez.analog.com/community/linux-device-drivers
818 F: drivers/iio/adc/ltc2497*
819 X: drivers/iio/*/adjd*
820 F: drivers/staging/iio/*/ad*
821 F: drivers/staging/iio/trigger/iio-trig-bfin-timer.c
823 ANALOG DEVICES INC DMA DRIVERS
824 M: Lars-Peter Clausen <lars@metafoo.de>
825 W: http://ez.analog.com/community/linux-device-drivers
827 F: drivers/dma/dma-axi-dmac.c
829 ANDROID CONFIG FRAGMENTS
830 M: Rob Herring <robh@kernel.org>
832 F: kernel/configs/android*
835 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
836 M: Arve Hjønnevåg <arve@android.com>
837 M: Riley Andrews <riandrews@android.com>
838 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
839 L: devel@driverdev.osuosl.org
842 F: drivers/staging/android/
845 M: Laura Abbott <labbott@redhat.com>
846 M: Sumit Semwal <sumit.semwal@linaro.org>
847 L: devel@driverdev.osuosl.org
849 F: drivers/staging/android/ion
850 F: drivers/staging/android/uapi/ion.h
851 F: drivers/staging/android/uapi/ion_test.h
853 AOA (Apple Onboard Audio) ALSA DRIVER
854 M: Johannes Berg <johannes@sipsolutions.net>
855 L: linuxppc-dev@lists.ozlabs.org
856 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
860 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
861 M: William Breathitt Gray <vilhelm.gray@gmail.com>
862 L: linux-iio@vger.kernel.org
864 F: drivers/iio/adc/stx104.c
867 M: Jiri Kosina <jikos@kernel.org>
869 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
870 F: arch/x86/kernel/apm_32.c
871 F: include/linux/apm_bios.h
872 F: include/uapi/linux/apm_bios.h
873 F: drivers/char/apm-emulation.c
875 APPLE BCM5974 MULTITOUCH DRIVER
876 M: Henrik Rydberg <rydberg@bitmath.org>
877 L: linux-input@vger.kernel.org
879 F: drivers/input/mouse/bcm5974.c
882 M: Henrik Rydberg <rydberg@bitmath.org>
883 L: linux-hwmon@vger.kernel.org
885 F: drivers/hwmon/applesmc.c
887 APPLETALK NETWORK LAYER
888 L: netdev@vger.kernel.org
890 F: drivers/net/appletalk/
893 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
894 M: Duc Dang <dhdang@apm.com>
896 F: arch/arm64/boot/dts/apm/
898 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
899 M: Iyappan Subramanian <isubramanian@apm.com>
900 M: Keyur Chudgar <kchudgar@apm.com>
901 M: Quan Nguyen <qnguyen@apm.com>
903 F: drivers/net/ethernet/apm/xgene/
904 F: drivers/net/phy/mdio-xgene.c
905 F: Documentation/devicetree/bindings/net/apm-xgene-enet.txt
906 F: Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
908 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
909 M: Iyappan Subramanian <isubramanian@apm.com>
910 M: Keyur Chudgar <kchudgar@apm.com>
912 F: drivers/net/ethernet/apm/xgene-v2/
914 APPLIED MICRO (APM) X-GENE SOC PMU
915 M: Tai Nguyen <ttnguyen@apm.com>
917 F: drivers/perf/xgene_pmu.c
918 F: Documentation/perf/xgene-pmu.txt
919 F: Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
921 APTINA CAMERA SENSOR PLL
922 M: Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
923 L: linux-media@vger.kernel.org
925 F: drivers/media/i2c/aptina-pll.*
927 ARC FRAMEBUFFER DRIVER
928 M: Jaya Kumar <jayalk@intworks.biz>
930 F: drivers/video/fbdev/arcfb.c
931 F: drivers/video/fbdev/core/fb_defio.c
934 M: Michael Grzeschik <m.grzeschik@pengutronix.de>
935 L: netdev@vger.kernel.org
937 F: drivers/net/arcnet/
938 F: include/uapi/linux/if_arcnet.h
941 M: Alexey Brodkin <abrodkin@synopsys.com>
943 F: drivers/gpu/drm/arc/
944 F: Documentation/devicetree/bindings/display/snps,arcpgu.txt
946 ARM ARCHITECTED TIMER DRIVER
947 M: Mark Rutland <mark.rutland@arm.com>
948 M: Marc Zyngier <marc.zyngier@arm.com>
949 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
951 F: arch/arm/include/asm/arch_timer.h
952 F: arch/arm64/include/asm/arch_timer.h
953 F: drivers/clocksource/arm_arch_timer.c
956 M: Liviu Dudau <liviu.dudau@arm.com>
958 F: drivers/gpu/drm/arm/hdlcd_*
959 F: Documentation/devicetree/bindings/display/arm,hdlcd.txt
961 ARM MALI-DP DRM DRIVER
962 M: Liviu Dudau <liviu.dudau@arm.com>
963 M: Brian Starkey <brian.starkey@arm.com>
964 M: Mali DP Maintainers <malidp@foss.arm.com>
966 F: drivers/gpu/drm/arm/
967 F: Documentation/devicetree/bindings/display/arm,malidp.txt
969 ARM MFM AND FLOPPY DRIVERS
970 M: Ian Molton <spyro@f2s.com>
972 F: arch/arm/lib/floppydma.S
973 F: arch/arm/include/asm/floppy.h
975 ARM PMU PROFILING AND DEBUGGING
976 M: Will Deacon <will.deacon@arm.com>
977 M: Mark Rutland <mark.rutland@arm.com>
979 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
980 F: arch/arm*/kernel/perf_*
981 F: arch/arm/oprofile/common.c
982 F: arch/arm*/kernel/hw_breakpoint.c
983 F: arch/arm*/include/asm/hw_breakpoint.h
984 F: arch/arm*/include/asm/perf_event.h
986 F: include/linux/perf/arm_pmu.h
987 F: Documentation/devicetree/bindings/arm/pmu.txt
988 F: Documentation/devicetree/bindings/perf/
991 M: Russell King <linux@armlinux.org.uk>
992 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
993 W: http://www.armlinux.org.uk/
995 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git
998 ARM SUB-ARCHITECTURES
999 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1003 T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
1005 ARM PRIMECELL AACI PL041 DRIVER
1006 M: Russell King <linux@armlinux.org.uk>
1010 ARM PRIMECELL CLCD PL110 DRIVER
1011 M: Russell King <linux@armlinux.org.uk>
1013 F: drivers/video/fbdev/amba-clcd.*
1015 ARM PRIMECELL KMI PL050 DRIVER
1016 M: Russell King <linux@armlinux.org.uk>
1018 F: drivers/input/serio/ambakmi.*
1019 F: include/linux/amba/kmi.h
1021 ARM PRIMECELL MMCI PL180/1 DRIVER
1022 M: Russell King <linux@armlinux.org.uk>
1024 F: drivers/mmc/host/mmci.*
1025 F: include/linux/amba/mmci.h
1027 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1028 M: Russell King <linux@armlinux.org.uk>
1030 F: drivers/tty/serial/amba-pl01*.c
1031 F: include/linux/amba/serial.h
1033 ARM PRIMECELL BUS SUPPORT
1034 M: Russell King <linux@armlinux.org.uk>
1037 F: include/linux/amba/bus.h
1039 ARM/ACTIONS SEMI ARCHITECTURE
1040 M: Andreas Färber <afaerber@suse.de>
1041 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1044 F: arch/arm/mach-actions/
1045 F: arch/arm/boot/dts/owl-*
1046 F: arch/arm64/boot/dts/actions/
1047 F: drivers/clocksource/owl-*
1048 F: drivers/soc/actions/
1049 F: include/dt-bindings/power/owl-*
1050 F: include/linux/soc/actions/
1051 F: Documentation/devicetree/bindings/arm/actions.txt
1052 F: Documentation/devicetree/bindings/power/actions,owl-sps.txt
1053 F: Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1055 ARM/ADS SPHERE MACHINE SUPPORT
1056 M: Lennert Buytenhek <kernel@wantstofly.org>
1057 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1060 ARM/AFEB9260 MACHINE SUPPORT
1061 M: Sergey Lapin <slapin@ossfans.org>
1062 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1065 ARM/AJECO 1ARM MACHINE SUPPORT
1066 M: Lennert Buytenhek <kernel@wantstofly.org>
1067 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1070 ARM/Allwinner sunXi SoC support
1071 M: Maxime Ripard <maxime.ripard@free-electrons.com>
1072 M: Chen-Yu Tsai <wens@csie.org>
1073 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1077 F: arch/arm/mach-sunxi/
1078 F: arch/arm64/boot/dts/allwinner/
1079 F: drivers/clk/sunxi-ng/
1080 F: drivers/pinctrl/sunxi/
1081 F: drivers/soc/sunxi/
1082 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1084 ARM/Allwinner SoC Clock Support
1085 M: Emilio López <emilio@elopez.com.ar>
1087 F: drivers/clk/sunxi/
1089 ARM/Amlogic Meson SoC support
1090 M: Carlo Caione <carlo@caione.org>
1091 M: Kevin Hilman <khilman@baylibre.com>
1092 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1093 L: linux-amlogic@lists.infradead.org
1094 W: http://linux-meson.com/
1096 F: arch/arm/mach-meson/
1097 F: arch/arm/boot/dts/meson*
1098 F: arch/arm64/boot/dts/amlogic/
1099 F: drivers/pinctrl/meson/
1100 F: drivers/mmc/host/meson*
1103 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1104 M: Neil Armstrong <narmstrong@baylibre.com>
1105 M: Jerome Brunet <jbrunet@baylibre.com>
1106 L: linux-amlogic@lists.infradead.org
1108 F: drivers/clk/meson/
1109 F: include/dt-bindings/clock/meson*
1110 F: include/dt-bindings/clock/gxbb*
1111 F: Documentation/devicetree/bindings/clock/amlogic*
1113 ARM/Annapurna Labs ALPINE ARCHITECTURE
1114 M: Tsahee Zidenberg <tsahee@annapurnalabs.com>
1115 M: Antoine Tenart <antoine.tenart@free-electrons.com>
1116 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1118 F: arch/arm/mach-alpine/
1119 F: arch/arm/boot/dts/alpine*
1120 F: arch/arm64/boot/dts/al/
1121 F: drivers/*/*alpine*
1123 ARM/ARTPEC MACHINE SUPPORT
1124 M: Jesper Nilsson <jesper.nilsson@axis.com>
1125 M: Lars Persson <lars.persson@axis.com>
1126 M: Niklas Cassel <niklas.cassel@axis.com>
1128 L: linux-arm-kernel@axis.com
1129 F: arch/arm/mach-artpec
1130 F: arch/arm/boot/dts/artpec6*
1132 F: drivers/pinctrl/pinctrl-artpec*
1133 F: Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1135 ARM/ASPEED MACHINE SUPPORT
1136 M: Joel Stanley <joel@jms.id.au>
1138 F: arch/arm/mach-aspeed/
1139 F: arch/arm/boot/dts/aspeed-*
1140 F: drivers/*/*aspeed*
1142 ARM/ATMEL AT91RM9200, AT91SAM9 AND SAMA5 SOC SUPPORT
1143 M: Nicolas Ferre <nicolas.ferre@microchip.com>
1144 M: Alexandre Belloni <alexandre.belloni@free-electrons.com>
1145 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1146 W: http://www.linux4sam.org
1147 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nferre/linux-at91.git
1149 F: arch/arm/mach-at91/
1150 F: include/soc/at91/
1151 F: arch/arm/boot/dts/at91*.dts
1152 F: arch/arm/boot/dts/at91*.dtsi
1153 F: arch/arm/boot/dts/sama*.dts
1154 F: arch/arm/boot/dts/sama*.dtsi
1155 F: arch/arm/include/debug/at91.S
1156 F: drivers/memory/atmel*
1158 ARM/ATMEL AT91 Clock Support
1159 M: Boris Brezillon <boris.brezillon@free-electrons.com>
1163 ARM/CALXEDA HIGHBANK ARCHITECTURE
1164 M: Rob Herring <robh@kernel.org>
1165 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1167 F: arch/arm/mach-highbank/
1168 F: arch/arm/boot/dts/highbank.dts
1169 F: arch/arm/boot/dts/ecx-*.dts*
1171 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1172 M: Krzysztof Halasa <khalasa@piap.pl>
1174 F: arch/arm/mach-cns3xxx/
1176 ARM/CAVIUM THUNDER NETWORK DRIVER
1177 M: Sunil Goutham <sgoutham@cavium.com>
1178 M: Robert Richter <rric@kernel.org>
1179 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1181 F: drivers/net/ethernet/cavium/thunder/
1183 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1184 M: Alexander Shiyan <shc_work@mail.ru>
1185 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1189 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1190 M: Hartley Sweeten <hsweeten@visionengravers.com>
1191 M: Alexander Sverdlin <alexander.sverdlin@gmail.com>
1192 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1194 F: arch/arm/mach-ep93xx/
1195 F: arch/arm/mach-ep93xx/include/mach/
1197 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1198 M: Lennert Buytenhek <kernel@wantstofly.org>
1199 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1203 M: Russell King <linux@armlinux.org.uk>
1204 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1206 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1207 F: arch/arm/include/asm/clkdev.h
1208 F: drivers/clk/clkdev.c
1210 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
1211 M: Mike Rapoport <mike@compulab.co.il>
1212 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1215 ARM/CONTEC MICRO9 MACHINE SUPPORT
1216 M: Hubert Feurstein <hubert.feurstein@contec.at>
1218 F: arch/arm/mach-ep93xx/micro9.c
1220 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1221 M: Mathieu Poirier <mathieu.poirier@linaro.org>
1222 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1224 F: drivers/hwtracing/coresight/*
1225 F: Documentation/trace/coresight.txt
1226 F: Documentation/trace/coresight-cpu-debug.txt
1227 F: Documentation/devicetree/bindings/arm/coresight.txt
1228 F: Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1229 F: Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1230 F: tools/perf/arch/arm/util/pmu.c
1231 F: tools/perf/arch/arm/util/auxtrace.c
1232 F: tools/perf/arch/arm/util/cs-etm.c
1233 F: tools/perf/arch/arm/util/cs-etm.h
1234 F: tools/perf/util/cs-etm.h
1236 ARM/CORGI MACHINE SUPPORT
1237 M: Richard Purdie <rpurdie@rpsys.net>
1240 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1241 M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
1242 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1243 T: git git://github.com/ulli-kroll/linux.git
1245 F: arch/arm/mach-gemini/
1246 F: drivers/rtc/rtc-gemini.c
1248 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1249 M: Barry Song <baohua@kernel.org>
1250 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1251 T: git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1253 F: arch/arm/boot/dts/prima2*
1254 F: arch/arm/mach-prima2/
1255 F: drivers/clk/sirf/
1256 F: drivers/clocksource/timer-prima2.c
1257 F: drivers/clocksource/timer-atlas7.c
1260 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1261 M: Baruch Siach <baruch@tkos.co.il>
1262 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1264 F: arch/arm/boot/dts/cx92755*
1267 ARM/EBSA110 MACHINE SUPPORT
1268 M: Russell King <linux@armlinux.org.uk>
1269 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1270 W: http://www.armlinux.org.uk/
1272 F: arch/arm/mach-ebsa110/
1273 F: drivers/net/ethernet/amd/am79c961a.*
1275 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1276 M: Uwe Kleine-König <kernel@pengutronix.de>
1277 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1281 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1282 M: Robert Jarzmik <robert.jarzmik@free.fr>
1283 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1285 F: arch/arm/mach-pxa/ezx.c
1287 ARM/FARADAY FA526 PORT
1288 M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
1289 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1291 T: git git://git.berlios.de/gemini-board
1292 F: arch/arm/mm/*-fa*
1294 ARM/FOOTBRIDGE ARCHITECTURE
1295 M: Russell King <linux@armlinux.org.uk>
1296 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1297 W: http://www.armlinux.org.uk/
1299 F: arch/arm/include/asm/hardware/dec21285.h
1300 F: arch/arm/mach-footbridge/
1302 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1303 M: Shawn Guo <shawnguo@kernel.org>
1304 M: Sascha Hauer <kernel@pengutronix.de>
1305 R: Fabio Estevam <fabio.estevam@nxp.com>
1306 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1308 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1309 F: arch/arm/mach-imx/
1310 F: arch/arm/mach-mxs/
1311 F: arch/arm/boot/dts/imx*
1312 F: arch/arm/configs/imx*_defconfig
1317 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1318 M: Shawn Guo <shawnguo@kernel.org>
1319 M: Sascha Hauer <kernel@pengutronix.de>
1320 R: Stefan Agner <stefan@agner.ch>
1321 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1323 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1324 F: arch/arm/mach-imx/*vf610*
1325 F: arch/arm/boot/dts/vf*
1327 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1328 M: Lennert Buytenhek <kernel@wantstofly.org>
1329 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1332 ARM/GUMSTIX MACHINE SUPPORT
1333 M: Steve Sakoman <sakoman@gmail.com>
1334 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1337 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1338 M: Philipp Zabel <philipp.zabel@gmail.com>
1339 M: Paul Parsons <lost.distance@yahoo.com>
1340 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1342 F: arch/arm/mach-pxa/hx4700.c
1343 F: arch/arm/mach-pxa/include/mach/hx4700.h
1344 F: sound/soc/pxa/hx4700.c
1346 ARM/HISILICON SOC SUPPORT
1347 M: Wei Xu <xuwei5@hisilicon.com>
1348 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1349 W: http://www.hisilicon.com
1351 T: git git://github.com/hisilicon/linux-hisi.git
1352 F: arch/arm/mach-hisi/
1353 F: arch/arm/boot/dts/hi3*
1354 F: arch/arm/boot/dts/hip*
1355 F: arch/arm/boot/dts/hisi*
1356 F: arch/arm64/boot/dts/hisilicon/
1358 ARM/HP JORNADA 7XX MACHINE SUPPORT
1359 M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
1362 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1363 F: arch/arm/mach-sa1100/jornada720.c
1364 F: arch/arm/mach-sa1100/include/mach/jornada720.h
1366 ARM/IGEP MACHINE SUPPORT
1367 M: Enric Balletbo i Serra <eballetbo@gmail.com>
1368 M: Javier Martinez Canillas <javier@dowhile0.org>
1369 L: linux-omap@vger.kernel.org
1370 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1372 F: arch/arm/boot/dts/omap3-igep*
1374 ARM/INCOME PXA270 SUPPORT
1375 M: Marek Vasut <marek.vasut@gmail.com>
1376 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1378 F: arch/arm/mach-pxa/colibri-pxa270-income.c
1380 ARM/INTEL IOP32X ARM ARCHITECTURE
1381 M: Lennert Buytenhek <kernel@wantstofly.org>
1382 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1385 ARM/INTEL IOP33X ARM ARCHITECTURE
1386 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1389 ARM/INTEL IOP13XX ARM ARCHITECTURE
1390 M: Lennert Buytenhek <kernel@wantstofly.org>
1391 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1394 ARM/INTEL IQ81342EX MACHINE SUPPORT
1395 M: Lennert Buytenhek <kernel@wantstofly.org>
1396 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1399 ARM/INTEL IXDP2850 MACHINE SUPPORT
1400 M: Lennert Buytenhek <kernel@wantstofly.org>
1401 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1404 ARM/INTEL IXP4XX ARM ARCHITECTURE
1405 M: Imre Kaloz <kaloz@openwrt.org>
1406 M: Krzysztof Halasa <khalasa@piap.pl>
1407 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1409 F: arch/arm/mach-ixp4xx/
1411 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1412 M: Jonathan Cameron <jic23@cam.ac.uk>
1413 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1415 F: arch/arm/mach-pxa/stargate2.c
1416 F: drivers/pcmcia/pxa2xx_stargate2.c
1418 ARM/INTEL XSC3 (MANZANO) ARM CORE
1419 M: Lennert Buytenhek <kernel@wantstofly.org>
1420 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1423 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1424 M: Lennert Buytenhek <kernel@wantstofly.org>
1425 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1428 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
1429 M: Santosh Shilimkar <ssantosh@kernel.org>
1430 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1432 F: arch/arm/mach-keystone/
1433 F: arch/arm/boot/dts/keystone-*
1434 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
1436 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
1437 M: Santosh Shilimkar <ssantosh@kernel.org>
1438 L: linux-kernel@vger.kernel.org
1440 F: drivers/clk/keystone/
1442 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
1443 M: Santosh Shilimkar <ssantosh@kernel.org>
1444 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1445 L: linux-kernel@vger.kernel.org
1447 F: drivers/clocksource/timer-keystone.c
1449 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
1450 M: Santosh Shilimkar <ssantosh@kernel.org>
1451 L: linux-kernel@vger.kernel.org
1453 F: drivers/power/reset/keystone-reset.c
1455 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
1456 M: Santosh Shilimkar <ssantosh@kernel.org>
1457 L: linux-kernel@vger.kernel.org
1459 F: drivers/memory/*emif*
1461 ARM/LG1K ARCHITECTURE
1462 M: Chanho Min <chanho.min@lge.com>
1463 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1465 F: arch/arm64/boot/dts/lg/
1467 ARM/LOGICPD PXA270 MACHINE SUPPORT
1468 M: Lennert Buytenhek <kernel@wantstofly.org>
1469 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1472 ARM/LPC18XX ARCHITECTURE
1473 M: Joachim Eastwood <manabian@gmail.com>
1474 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1476 F: arch/arm/boot/dts/lpc43*
1477 F: drivers/clk/nxp/clk-lpc18xx*
1478 F: drivers/clocksource/time-lpc32xx.c
1479 F: drivers/i2c/busses/i2c-lpc2k.c
1480 F: drivers/memory/pl172.c
1481 F: drivers/mtd/spi-nor/nxp-spifi.c
1482 F: drivers/rtc/rtc-lpc24xx.c
1485 ARM/LPC32XX SOC SUPPORT
1486 M: Vladimir Zapolskiy <vz@mleia.com>
1487 M: Sylvain Lemieux <slemieux.tyco@gmail.com>
1488 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1489 T: git git://github.com/vzapolskiy/linux-lpc32xx.git
1491 F: arch/arm/boot/dts/lpc32*
1492 F: arch/arm/mach-lpc32xx/
1493 F: drivers/i2c/busses/i2c-pnx.c
1494 F: drivers/net/ethernet/nxp/lpc_eth.c
1495 F: drivers/usb/host/ohci-nxp.c
1496 F: drivers/watchdog/pnx4008_wdt.c
1499 ARM/MAGICIAN MACHINE SUPPORT
1500 M: Philipp Zabel <philipp.zabel@gmail.com>
1503 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K SOC support
1504 M: Jason Cooper <jason@lakedaemon.net>
1505 M: Andrew Lunn <andrew@lunn.ch>
1506 M: Gregory Clement <gregory.clement@free-electrons.com>
1507 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1508 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1510 F: arch/arm/boot/dts/armada*
1511 F: arch/arm/boot/dts/kirkwood*
1512 F: arch/arm/configs/mvebu_*_defconfig
1513 F: arch/arm/mach-mvebu/
1514 F: arch/arm64/boot/dts/marvell/armada*
1515 F: drivers/cpufreq/mvebu-cpufreq.c
1516 F: drivers/irqchip/irq-armada-370-xp.c
1517 F: drivers/irqchip/irq-mvebu-*
1518 F: drivers/pinctrl/mvebu/
1519 F: drivers/rtc/rtc-armada38x.c
1521 ARM/Marvell Berlin SoC support
1522 M: Jisheng Zhang <jszhang@marvell.com>
1523 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1524 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1526 F: arch/arm/mach-berlin/
1527 F: arch/arm/boot/dts/berlin*
1528 F: arch/arm64/boot/dts/marvell/berlin*
1531 ARM/Marvell Dove/MV78xx0/Orion SOC support
1532 M: Jason Cooper <jason@lakedaemon.net>
1533 M: Andrew Lunn <andrew@lunn.ch>
1534 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1535 M: Gregory Clement <gregory.clement@free-electrons.com>
1536 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1538 F: Documentation/devicetree/bindings/soc/dove/
1539 F: arch/arm/mach-dove/
1540 F: arch/arm/mach-mv78xx0/
1541 F: arch/arm/mach-orion5x/
1542 F: arch/arm/plat-orion/
1543 F: arch/arm/boot/dts/dove*
1544 F: arch/arm/boot/dts/orion5x*
1547 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1548 M: Alexander Clouter <alex@digriz.org.uk>
1549 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1550 W: http://www.digriz.org.uk/ts78xx/kernel
1552 F: arch/arm/mach-orion5x/ts78xx-*
1554 ARM/OXNAS platform support
1555 M: Neil Armstrong <narmstrong@baylibre.com>
1556 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1557 L: linux-oxnas@lists.tuxfamily.org (moderated for non-subscribers)
1559 F: arch/arm/mach-oxnas/
1560 F: arch/arm/boot/dts/ox8*.dtsi
1561 F: arch/arm/boot/dts/wd-mbwe.dts
1562 F: arch/arm/boot/dts/cloudengines-pogoplug-series-3.dts
1565 ARM/Mediatek RTC DRIVER
1566 M: Eddie Huang <eddie.huang@mediatek.com>
1567 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1568 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1570 F: drivers/rtc/rtc-mt6397.c
1572 ARM/Mediatek SoC support
1573 M: Matthias Brugger <matthias.bgg@gmail.com>
1574 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1575 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1577 F: arch/arm/boot/dts/mt6*
1578 F: arch/arm/boot/dts/mt7*
1579 F: arch/arm/boot/dts/mt8*
1580 F: arch/arm/mach-mediatek/
1581 F: arch/arm64/boot/dts/mediatek/
1585 ARM/Mediatek USB3 PHY DRIVER
1586 M: Chunfeng Yun <chunfeng.yun@mediatek.com>
1587 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1588 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1590 F: drivers/phy/phy-mt65xx-usb3.c
1592 ARM/MICREL KS8695 ARCHITECTURE
1593 M: Greg Ungerer <gerg@uclinux.org>
1594 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1595 F: arch/arm/mach-ks8695/
1598 ARM/MIOA701 MACHINE SUPPORT
1599 M: Robert Jarzmik <robert.jarzmik@free.fr>
1600 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1601 F: arch/arm/mach-pxa/mioa701.c
1604 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1605 M: Michael Petchkovsky <mkpetch@internode.on.net>
1608 ARM/NOMADIK ARCHITECTURE
1609 M: Alessandro Rubini <rubini@unipv.it>
1610 M: Linus Walleij <linus.walleij@linaro.org>
1611 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1613 F: arch/arm/mach-nomadik/
1614 F: drivers/pinctrl/nomadik/
1615 F: drivers/i2c/busses/i2c-nomadik.c
1616 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1618 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1619 M: Nelson Castillo <arhuaco@freaks-unidos.net>
1620 L: openmoko-kernel@lists.openmoko.org (subscribers-only)
1621 W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
1624 ARM/TOSA MACHINE SUPPORT
1625 M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1626 M: Dirk Opfer <dirk@opfer-online.de>
1629 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1630 M: Marek Vasut <marek.vasut@gmail.com>
1631 L: linux-arm-kernel@lists.infradead.org
1632 W: http://hackndev.com
1634 F: arch/arm/mach-pxa/include/mach/palmtx.h
1635 F: arch/arm/mach-pxa/palmtx.c
1636 F: arch/arm/mach-pxa/include/mach/palmt5.h
1637 F: arch/arm/mach-pxa/palmt5.c
1638 F: arch/arm/mach-pxa/include/mach/palmld.h
1639 F: arch/arm/mach-pxa/palmld.c
1640 F: arch/arm/mach-pxa/include/mach/palmte2.h
1641 F: arch/arm/mach-pxa/palmte2.c
1642 F: arch/arm/mach-pxa/include/mach/palmtc.h
1643 F: arch/arm/mach-pxa/palmtc.c
1645 ARM/PALM TREO SUPPORT
1646 M: Tomas Cech <sleep_walker@suse.com>
1647 L: linux-arm-kernel@lists.infradead.org
1648 W: http://hackndev.com
1650 F: arch/arm/mach-pxa/include/mach/palmtreo.h
1651 F: arch/arm/mach-pxa/palmtreo.c
1654 M: Sergey Lapin <slapin@ossfans.org>
1655 L: linux-arm-kernel@lists.infradead.org
1656 W: http://hackndev.com
1658 F: arch/arm/mach-pxa/include/mach/palmz72.h
1659 F: arch/arm/mach-pxa/palmz72.c
1662 M: Peter Chubb <pleb@gelato.unsw.edu.au>
1663 W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1666 ARM/PT DIGITAL BOARD PORT
1667 M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1668 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1669 W: http://www.armlinux.org.uk/
1672 ARM/QUALCOMM SUPPORT
1673 M: Andy Gross <andy.gross@linaro.org>
1674 M: David Brown <david.brown@linaro.org>
1675 L: linux-arm-msm@vger.kernel.org
1676 L: linux-soc@vger.kernel.org
1678 F: Documentation/devicetree/bindings/soc/qcom/
1679 F: arch/arm/boot/dts/qcom-*.dts
1680 F: arch/arm/boot/dts/qcom-*.dtsi
1681 F: arch/arm/mach-qcom/
1682 F: arch/arm64/boot/dts/qcom/*
1683 F: drivers/i2c/busses/i2c-qup.c
1684 F: drivers/clk/qcom/
1685 F: drivers/dma/qcom/
1686 F: drivers/soc/qcom/
1687 F: drivers/spi/spi-qup.c
1688 F: drivers/tty/serial/msm_serial.h
1689 F: drivers/tty/serial/msm_serial.c
1690 F: drivers/*/pm8???-*
1691 F: drivers/mfd/ssbi.c
1692 F: drivers/firmware/qcom_scm.c
1693 T: git git://git.kernel.org/pub/scm/linux/kernel/git/agross/linux.git
1695 ARM/RADISYS ENP2611 MACHINE SUPPORT
1696 M: Lennert Buytenhek <kernel@wantstofly.org>
1697 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1700 ARM/REALTEK ARCHITECTURE
1701 M: Andreas Färber <afaerber@suse.de>
1702 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1704 F: arch/arm64/boot/dts/realtek/
1705 F: Documentation/devicetree/bindings/arm/realtek.txt
1707 ARM/RENESAS ARM64 ARCHITECTURE
1708 M: Simon Horman <horms@verge.net.au>
1709 M: Magnus Damm <magnus.damm@gmail.com>
1710 L: linux-renesas-soc@vger.kernel.org
1711 Q: http://patchwork.kernel.org/project/linux-renesas-soc/list/
1712 T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1714 F: arch/arm64/boot/dts/renesas/
1715 F: drivers/soc/renesas/
1716 F: include/linux/soc/renesas/
1718 ARM/RISCPC ARCHITECTURE
1719 M: Russell King <linux@armlinux.org.uk>
1720 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1721 W: http://www.armlinux.org.uk/
1723 F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1724 F: arch/arm/include/asm/hardware/ioc.h
1725 F: arch/arm/include/asm/hardware/iomd.h
1726 F: arch/arm/include/asm/hardware/memc.h
1727 F: arch/arm/mach-rpc/
1728 F: drivers/net/ethernet/8390/etherh.c
1729 F: drivers/net/ethernet/i825xx/ether1*
1730 F: drivers/net/ethernet/seeq/ether3*
1731 F: drivers/scsi/arm/
1733 ARM/Rockchip SoC support
1734 M: Heiko Stuebner <heiko@sntech.de>
1735 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1736 L: linux-rockchip@lists.infradead.org
1737 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
1739 F: arch/arm/boot/dts/rk3*
1740 F: arch/arm/boot/dts/rv1108*
1741 F: arch/arm/mach-rockchip/
1742 F: drivers/clk/rockchip/
1743 F: drivers/i2c/busses/i2c-rk3x.c
1744 F: drivers/*/*rockchip*
1745 F: drivers/*/*/*rockchip*
1746 F: sound/soc/rockchip/
1749 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1750 M: Kukjin Kim <kgene@kernel.org>
1751 M: Krzysztof Kozlowski <krzk@kernel.org>
1752 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1753 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1754 Q: https://patchwork.kernel.org/project/linux-samsung-soc/list/
1756 F: arch/arm/boot/dts/s3c*
1757 F: arch/arm/boot/dts/s5p*
1758 F: arch/arm/boot/dts/samsung*
1759 F: arch/arm/boot/dts/exynos*
1760 F: arch/arm64/boot/dts/exynos/
1761 F: arch/arm/plat-samsung/
1762 F: arch/arm/mach-s3c24*/
1763 F: arch/arm/mach-s3c64xx/
1764 F: arch/arm/mach-s5p*/
1765 F: arch/arm/mach-exynos*/
1766 F: drivers/*/*s3c24*
1767 F: drivers/*/*/*s3c24*
1768 F: drivers/*/*s3c64xx*
1769 F: drivers/*/*s5pv210*
1770 F: drivers/memory/samsung/*
1771 F: drivers/soc/samsung/*
1772 F: Documentation/arm/Samsung/
1773 F: Documentation/devicetree/bindings/arm/samsung/
1774 F: Documentation/devicetree/bindings/sram/samsung-sram.txt
1775 F: Documentation/devicetree/bindings/power/pd-samsung.txt
1778 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1779 M: Kyungmin Park <kyungmin.park@samsung.com>
1780 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1782 F: arch/arm/mach-s5pv210/
1784 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1785 M: Kyungmin Park <kyungmin.park@samsung.com>
1786 M: Kamil Debski <kamil@wypas.org>
1787 M: Andrzej Hajda <a.hajda@samsung.com>
1788 L: linux-arm-kernel@lists.infradead.org
1789 L: linux-media@vger.kernel.org
1791 F: drivers/media/platform/s5p-g2d/
1793 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1794 M: Kyungmin Park <kyungmin.park@samsung.com>
1795 M: Kamil Debski <kamil@wypas.org>
1796 M: Jeongtae Park <jtp.park@samsung.com>
1797 M: Andrzej Hajda <a.hajda@samsung.com>
1798 L: linux-arm-kernel@lists.infradead.org
1799 L: linux-media@vger.kernel.org
1801 F: arch/arm/plat-samsung/s5p-dev-mfc.c
1802 F: drivers/media/platform/s5p-mfc/
1804 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
1805 M: Marek Szyprowski <m.szyprowski@samsung.com>
1806 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1807 L: linux-media@vger.kernel.org
1809 F: drivers/media/platform/s5p-cec/
1810 F: Documentation/devicetree/bindings/media/s5p-cec.txt
1812 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
1813 M: Andrzej Pietrasiewicz <andrzej.p@samsung.com>
1814 M: Jacek Anaszewski <jacek.anaszewski@gmail.com>
1815 L: linux-arm-kernel@lists.infradead.org
1816 L: linux-media@vger.kernel.org
1818 F: drivers/media/platform/s5p-jpeg/
1820 ARM/SHMOBILE ARM ARCHITECTURE
1821 M: Simon Horman <horms@verge.net.au>
1822 M: Magnus Damm <magnus.damm@gmail.com>
1823 L: linux-renesas-soc@vger.kernel.org
1824 Q: http://patchwork.kernel.org/project/linux-renesas-soc/list/
1825 T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1827 F: arch/arm/boot/dts/emev2*
1828 F: arch/arm/boot/dts/r7s*
1829 F: arch/arm/boot/dts/r8a*
1830 F: arch/arm/boot/dts/sh*
1831 F: arch/arm/configs/shmobile_defconfig
1832 F: arch/arm/include/debug/renesas-scif.S
1833 F: arch/arm/mach-shmobile/
1834 F: drivers/soc/renesas/
1835 F: include/linux/soc/renesas/
1837 ARM/SOCFPGA ARCHITECTURE
1838 M: Dinh Nguyen <dinguyen@kernel.org>
1840 F: arch/arm/mach-socfpga/
1841 F: arch/arm/boot/dts/socfpga*
1842 F: arch/arm/configs/socfpga_defconfig
1843 F: arch/arm64/boot/dts/altera/
1844 W: http://www.rocketboards.org
1845 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
1847 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1848 M: Dinh Nguyen <dinguyen@kernel.org>
1850 F: drivers/clk/socfpga/
1852 ARM/SOCFPGA EDAC SUPPORT
1853 M: Thor Thayer <thor.thayer@linux.intel.com>
1855 F: drivers/edac/altera_edac.
1857 ARM/STI ARCHITECTURE
1858 M: Patrice Chotard <patrice.chotard@st.com>
1859 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1860 W: http://www.stlinux.com
1862 F: arch/arm/mach-sti/
1863 F: arch/arm/boot/dts/sti*
1864 F: drivers/char/hw_random/st-rng.c
1865 F: drivers/clocksource/arm_global_timer.c
1866 F: drivers/clocksource/clksrc_st_lpc.c
1867 F: drivers/cpufreq/sti-cpufreq.c
1868 F: drivers/dma/st_fdma*
1869 F: drivers/i2c/busses/i2c-st.c
1870 F: drivers/media/rc/st_rc.c
1871 F: drivers/media/platform/sti/c8sectpfe/
1872 F: drivers/mmc/host/sdhci-st.c
1873 F: drivers/phy/st/phy-miphy28lp.c
1874 F: drivers/phy/st/phy-stih407-usb.c
1875 F: drivers/pinctrl/pinctrl-st.c
1876 F: drivers/remoteproc/st_remoteproc.c
1877 F: drivers/remoteproc/st_slim_rproc.c
1878 F: drivers/reset/sti/
1879 F: drivers/rtc/rtc-st-lpc.c
1880 F: drivers/tty/serial/st-asc.c
1881 F: drivers/usb/dwc3/dwc3-st.c
1882 F: drivers/usb/host/ehci-st.c
1883 F: drivers/usb/host/ohci-st.c
1884 F: drivers/watchdog/st_lpc_wdt.c
1885 F: drivers/ata/ahci_st.c
1886 F: include/linux/remoteproc/st_slim_rproc.h
1888 ARM/STM32 ARCHITECTURE
1889 M: Maxime Coquelin <mcoquelin.stm32@gmail.com>
1890 M: Alexandre Torgue <alexandre.torgue@st.com>
1891 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1893 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git
1895 F: drivers/clocksource/armv7m_systick.c
1897 ARM/TANGO ARCHITECTURE
1898 M: Marc Gonzalez <marc_gonzalez@sigmadesigns.com>
1899 L: linux-arm-kernel@lists.infradead.org
1903 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
1904 M: Lennert Buytenhek <kernel@wantstofly.org>
1905 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1908 ARM/TETON BGA MACHINE SUPPORT
1909 M: "Mark F. Brown" <mark.brown314@gmail.com>
1910 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1913 ARM/THECUS N2100 MACHINE SUPPORT
1914 M: Lennert Buytenhek <kernel@wantstofly.org>
1915 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1918 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1919 M: Wan ZongShun <mcuos.com@gmail.com>
1920 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1921 W: http://www.mcuos.com
1923 F: arch/arm/mach-w90x900/
1924 F: drivers/input/keyboard/w90p910_keypad.c
1925 F: drivers/input/touchscreen/w90p910_ts.c
1926 F: drivers/watchdog/nuc900_wdt.c
1927 F: drivers/net/ethernet/nuvoton/w90p910_ether.c
1928 F: drivers/mtd/nand/nuc900_nand.c
1929 F: drivers/rtc/rtc-nuc900.c
1930 F: drivers/spi/spi-nuc900.c
1931 F: drivers/usb/host/ehci-w90x900.c
1932 F: drivers/video/fbdev/nuc900fb.c
1934 ARM/U300 MACHINE SUPPORT
1935 M: Linus Walleij <linus.walleij@linaro.org>
1936 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1938 F: arch/arm/mach-u300/
1939 F: drivers/clocksource/timer-u300.c
1940 F: drivers/i2c/busses/i2c-stu300.c
1941 F: drivers/rtc/rtc-coh901331.c
1942 F: drivers/watchdog/coh901327_wdt.c
1943 F: drivers/dma/coh901318*
1944 F: drivers/mfd/ab3100*
1945 F: drivers/rtc/rtc-ab3100.c
1946 F: drivers/rtc/rtc-coh901331.c
1947 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1949 ARM/UNIPHIER ARCHITECTURE
1950 M: Masahiro Yamada <yamada.masahiro@socionext.com>
1951 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1952 T: git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-uniphier.git
1954 F: arch/arm/boot/dts/uniphier*
1955 F: arch/arm/include/asm/hardware/cache-uniphier.h
1956 F: arch/arm/mach-uniphier/
1957 F: arch/arm/mm/cache-uniphier.c
1958 F: arch/arm64/boot/dts/socionext/
1959 F: drivers/bus/uniphier-system-bus.c
1960 F: drivers/clk/uniphier/
1961 F: drivers/i2c/busses/i2c-uniphier*
1962 F: drivers/pinctrl/uniphier/
1963 F: drivers/reset/reset-uniphier.c
1964 F: drivers/tty/serial/8250/8250_uniphier.c
1967 ARM/Ux500 ARM ARCHITECTURE
1968 M: Linus Walleij <linus.walleij@linaro.org>
1969 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1971 F: arch/arm/mach-ux500/
1972 F: drivers/clocksource/clksrc-dbx500-prcmu.c
1973 F: drivers/dma/ste_dma40*
1974 F: drivers/hwspinlock/u8500_hsem.c
1975 F: drivers/mfd/abx500*
1976 F: drivers/mfd/ab8500*
1977 F: drivers/mfd/dbx500*
1978 F: drivers/mfd/db8500*
1979 F: drivers/pinctrl/nomadik/pinctrl-ab*
1980 F: drivers/pinctrl/nomadik/pinctrl-nomadik*
1981 F: drivers/rtc/rtc-ab8500.c
1982 F: drivers/rtc/rtc-pl031.c
1983 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1985 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1986 M: Ulf Hansson <ulf.hansson@linaro.org>
1987 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1988 T: git git://git.linaro.org/people/ulfh/clk.git
1990 F: drivers/clk/ux500/
1992 ARM/VERSATILE EXPRESS PLATFORM
1993 M: Liviu Dudau <liviu.dudau@arm.com>
1994 M: Sudeep Holla <sudeep.holla@arm.com>
1995 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
1996 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1998 F: arch/arm/boot/dts/vexpress*
1999 F: arch/arm64/boot/dts/arm/
2000 F: arch/arm/mach-vexpress/
2003 F: drivers/clk/versatile/clk-vexpress-osc.c
2004 F: drivers/clocksource/versatile.c
2008 M: Russell King <linux@armlinux.org.uk>
2009 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2010 W: http://www.armlinux.org.uk/
2014 ARM/VOIPAC PXA270 SUPPORT
2015 M: Marek Vasut <marek.vasut@gmail.com>
2016 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2018 F: arch/arm/mach-pxa/vpac270.c
2019 F: arch/arm/mach-pxa/include/mach/vpac270.h
2021 ARM/VT8500 ARM ARCHITECTURE
2022 M: Tony Prisk <linux@prisktech.co.nz>
2023 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2025 F: arch/arm/mach-vt8500/
2026 F: drivers/clocksource/vt8500_timer.c
2027 F: drivers/i2c/busses/i2c-wmt.c
2028 F: drivers/mmc/host/wmt-sdmmc.c
2029 F: drivers/pwm/pwm-vt8500.c
2030 F: drivers/rtc/rtc-vt8500.c
2031 F: drivers/tty/serial/vt8500_serial.c
2032 F: drivers/usb/host/ehci-platform.c
2033 F: drivers/usb/host/uhci-platform.c
2034 F: drivers/video/fbdev/vt8500lcdfb.*
2035 F: drivers/video/fbdev/wm8505fb*
2036 F: drivers/video/fbdev/wmt_ge_rops.*
2038 ARM/ZIPIT Z2 SUPPORT
2039 M: Marek Vasut <marek.vasut@gmail.com>
2040 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2042 F: arch/arm/mach-pxa/z2.c
2043 F: arch/arm/mach-pxa/include/mach/z2.h
2045 ARM/ZTE ARCHITECTURE
2046 M: Jun Nie <jun.nie@linaro.org>
2047 M: Baoyou Xie <baoyou.xie@linaro.org>
2048 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2050 F: arch/arm/mach-zx/
2052 F: drivers/reset/reset-zx2967.c
2054 F: Documentation/devicetree/bindings/arm/zte.txt
2055 F: Documentation/devicetree/bindings/clock/zx296702-clk.txt
2056 F: Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt
2057 F: Documentation/devicetree/bindings/soc/zte/
2058 F: include/dt-bindings/soc/zx*.h
2060 ARM/ZYNQ ARCHITECTURE
2061 M: Michal Simek <michal.simek@xilinx.com>
2062 R: Sören Brinkmann <soren.brinkmann@xilinx.com>
2063 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2064 W: http://wiki.xilinx.com
2065 T: git https://github.com/Xilinx/linux-xlnx.git
2067 F: arch/arm/mach-zynq/
2068 F: drivers/cpuidle/cpuidle-zynq.c
2069 F: drivers/block/xsysace.c
2072 F: drivers/clocksource/cadence_ttc_timer.c
2073 F: drivers/i2c/busses/i2c-cadence.c
2074 F: drivers/mmc/host/sdhci-of-arasan.c
2075 F: drivers/edac/synopsys_edac.c
2078 M: Will Deacon <will.deacon@arm.com>
2079 R: Robin Murphy <robin.murphy@arm.com>
2080 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2082 F: drivers/iommu/arm-smmu.c
2083 F: drivers/iommu/arm-smmu-v3.c
2084 F: drivers/iommu/io-pgtable-arm.c
2085 F: drivers/iommu/io-pgtable-arm-v7s.c
2087 ARM64 PORT (AARCH64 ARCHITECTURE)
2088 M: Catalin Marinas <catalin.marinas@arm.com>
2089 M: Will Deacon <will.deacon@arm.com>
2090 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2091 T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2094 F: Documentation/arm64/
2096 AS3645A LED FLASH CONTROLLER DRIVER
2097 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2098 L: linux-media@vger.kernel.org
2099 T: git git://linuxtv.org/media_tree.git
2101 F: drivers/media/i2c/as3645a.c
2102 F: include/media/i2c/as3645a.h
2104 ASAHI KASEI AK8974 DRIVER
2105 M: Linus Walleij <linus.walleij@linaro.org>
2106 L: linux-iio@vger.kernel.org
2107 W: http://www.akm.com/
2109 F: drivers/iio/magnetometer/ak8974.c
2111 ASC7621 HARDWARE MONITOR DRIVER
2112 M: George Joseph <george.joseph@fairview5.com>
2113 L: linux-hwmon@vger.kernel.org
2115 F: Documentation/hwmon/asc7621
2116 F: drivers/hwmon/asc7621.c
2118 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2119 M: Corentin Chary <corentin.chary@gmail.com>
2120 L: acpi4asus-user@lists.sourceforge.net
2121 L: platform-driver-x86@vger.kernel.org
2122 W: http://acpi4asus.sf.net
2124 F: drivers/platform/x86/asus*.c
2125 F: drivers/platform/x86/eeepc*.c
2127 ASUS WIRELESS RADIO CONTROL DRIVER
2128 M: João Paulo Rechi Vita <jprvita@gmail.com>
2129 L: platform-driver-x86@vger.kernel.org
2131 F: drivers/platform/x86/asus-wireless.c
2134 M: David Howells <dhowells@redhat.com>
2135 L: keyrings@vger.kernel.org
2137 F: Documentation/crypto/asymmetric-keys.txt
2138 F: include/linux/verification.h
2139 F: include/crypto/public_key.h
2140 F: include/crypto/pkcs7.h
2141 F: crypto/asymmetric_keys/
2143 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2144 R: Dan Williams <dan.j.williams@intel.com>
2145 W: http://sourceforge.net/projects/xscaleiop
2147 F: Documentation/crypto/async-tx-api.txt
2150 F: include/linux/dmaengine.h
2151 F: include/linux/async_tx.h
2154 M: Wolfram Sang <wsa@the-dreams.de>
2155 L: linux-i2c@vger.kernel.org
2157 F: drivers/misc/eeprom/at24.c
2158 F: include/linux/platform_data/at24.h
2160 ATA OVER ETHERNET (AOE) DRIVER
2161 M: "Ed L. Cashin" <ed.cashin@acm.org>
2162 W: http://www.openaoe.org/
2164 F: Documentation/aoe/
2165 F: drivers/block/aoe/
2167 ATHEROS 71XX/9XXX GPIO DRIVER
2168 M: Alban Bedel <albeu@free.fr>
2169 W: https://github.com/AlbanBedel/linux
2170 T: git git://github.com/AlbanBedel/linux
2172 F: drivers/gpio/gpio-ath79.c
2173 F: Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2175 ATHEROS ATH GENERIC UTILITIES
2176 M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
2177 L: linux-wireless@vger.kernel.org
2179 F: drivers/net/wireless/ath/*
2181 ATHEROS ATH5K WIRELESS DRIVER
2182 M: Jiri Slaby <jirislaby@gmail.com>
2183 M: Nick Kossifidis <mickflemm@gmail.com>
2184 M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
2185 L: linux-wireless@vger.kernel.org
2186 W: http://wireless.kernel.org/en/users/Drivers/ath5k
2188 F: drivers/net/wireless/ath/ath5k/
2190 ATHEROS ATH6KL WIRELESS DRIVER
2191 M: Kalle Valo <kvalo@qca.qualcomm.com>
2192 L: linux-wireless@vger.kernel.org
2193 W: http://wireless.kernel.org/en/users/Drivers/ath6kl
2194 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2196 F: drivers/net/wireless/ath/ath6kl/
2198 WILOCITY WIL6210 WIRELESS DRIVER
2199 M: Maya Erez <qca_merez@qca.qualcomm.com>
2200 L: linux-wireless@vger.kernel.org
2201 L: wil6210@qca.qualcomm.com
2203 W: http://wireless.kernel.org/en/users/Drivers/wil6210
2204 F: drivers/net/wireless/ath/wil6210/
2205 F: include/uapi/linux/wil6210_uapi.h
2207 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
2208 M: Christian Lamparter <chunkeey@googlemail.com>
2209 L: linux-wireless@vger.kernel.org
2210 W: http://wireless.kernel.org/en/users/Drivers/carl9170
2212 F: drivers/net/wireless/ath/carl9170/
2214 ATK0110 HWMON DRIVER
2215 M: Luca Tettamanti <kronos.it@gmail.com>
2216 L: linux-hwmon@vger.kernel.org
2218 F: drivers/hwmon/asus_atk0110.c
2221 M: Ville Syrjala <syrjala@sci.fi>
2223 F: drivers/input/misc/ati_remote2.c
2225 ATLX ETHERNET DRIVERS
2226 M: Jay Cliburn <jcliburn@gmail.com>
2227 M: Chris Snook <chris.snook@gmail.com>
2228 L: netdev@vger.kernel.org
2229 W: http://sourceforge.net/projects/atl1
2230 W: http://atl1.sourceforge.net
2232 F: drivers/net/ethernet/atheros/
2235 M: Chas Williams <3chas3@gmail.com>
2236 L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
2237 L: netdev@vger.kernel.org
2238 W: http://linux-atm.sourceforge.net
2241 F: include/linux/atm*
2242 F: include/uapi/linux/atm*
2244 ATMEL AT91 / AT32 MCI DRIVER
2245 M: Ludovic Desroches <ludovic.desroches@microchip.com>
2247 F: drivers/mmc/host/atmel-mci.c
2249 ATMEL AT91 SAMA5D2-Compatible Shutdown Controller
2250 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2252 F: drivers/power/reset/at91-sama5d2_shdwc.c
2254 ATMEL SAMA5D2 ADC DRIVER
2255 M: Ludovic Desroches <ludovic.desroches@microchip.com>
2256 L: linux-iio@vger.kernel.org
2258 F: drivers/iio/adc/at91-sama5d2_adc.c
2260 ATMEL Audio ALSA driver
2261 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2262 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2267 M: Ludovic Desroches <ludovic.desroches@microchip.com>
2268 L: linux-arm-kernel@lists.infradead.org
2269 L: dmaengine@vger.kernel.org
2271 F: drivers/dma/at_xdmac.c
2274 M: Ludovic Desroches <ludovic.desroches@microchip.com>
2275 L: linux-i2c@vger.kernel.org
2277 F: drivers/i2c/busses/i2c-at91.c
2280 M: Ludovic Desroches <ludovic.desroches@microchip.com>
2281 L: linux-media@vger.kernel.org
2283 F: drivers/media/platform/atmel/atmel-isi.c
2284 F: include/media/atmel-isi.h
2287 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2288 L: linux-fbdev@vger.kernel.org
2290 F: drivers/video/fbdev/atmel_lcdfb.c
2291 F: include/video/atmel_lcdc.h
2293 ATMEL MACB ETHERNET DRIVER
2294 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2296 F: drivers/net/ethernet/cadence/
2299 M: Wenyou Yang <wenyou.yang@atmel.com>
2300 M: Josh Wu <rainyfeeling@outlook.com>
2301 L: linux-mtd@lists.infradead.org
2303 F: drivers/mtd/nand/atmel/*
2306 M: Ludovic Desroches <ludovic.desroches@microchip.com>
2307 L: linux-mmc@vger.kernel.org
2309 F: drivers/mmc/host/sdhci-of-at91.c
2312 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2314 F: drivers/spi/spi-atmel.*
2317 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2318 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2320 F: drivers/misc/atmel-ssc.c
2321 F: include/linux/atmel-ssc.h
2323 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
2324 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2325 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2327 F: drivers/misc/atmel_tclib.c
2328 F: drivers/clocksource/tcb_clksrc.c
2330 ATMEL USBA UDC DRIVER
2331 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2332 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2334 F: drivers/usb/gadget/udc/atmel_usba_udc.*
2336 ATMEL WIRELESS DRIVER
2337 M: Simon Kelley <simon@thekelleys.org.uk>
2338 L: linux-wireless@vger.kernel.org
2339 W: http://www.thekelleys.org.uk/atmel
2340 W: http://atmelwlandriver.sourceforge.net/
2342 F: drivers/net/wireless/atmel/atmel*
2344 ATMEL MAXTOUCH DRIVER
2345 M: Nick Dyer <nick@shmanahar.org>
2346 T: git git://github.com/ndyer/linux.git
2348 F: Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2349 F: drivers/input/touchscreen/atmel_mxt_ts.c
2350 F: include/linux/platform_data/atmel_mxt_ts.h
2352 ATOMIC INFRASTRUCTURE
2353 M: Will Deacon <will.deacon@arm.com>
2354 M: Peter Zijlstra <peterz@infradead.org>
2355 R: Boqun Feng <boqun.feng@gmail.com>
2356 L: linux-kernel@vger.kernel.org
2358 F: arch/*/include/asm/atomic*.h
2359 F: include/*/atomic*.h
2361 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2362 M: Bradley Grove <linuxdrivers@attotech.com>
2363 L: linux-scsi@vger.kernel.org
2364 W: http://www.attotech.com
2366 F: drivers/scsi/esas2r
2368 ATUSB IEEE 802.15.4 RADIO DRIVER
2369 M: Stefan Schmidt <stefan@osg.samsung.com>
2370 L: linux-wpan@vger.kernel.org
2372 F: drivers/net/ieee802154/atusb.c
2373 F: drivers/net/ieee802154/atusb.h
2374 F: drivers/net/ieee802154/at86rf230.h
2377 M: Paul Moore <paul@paul-moore.com>
2378 M: Eric Paris <eparis@redhat.com>
2379 L: linux-audit@redhat.com (moderated for non-subscribers)
2380 W: http://people.redhat.com/sgrubb/audit/
2381 T: git git://git.infradead.org/users/pcmoore/audit
2383 F: include/linux/audit.h
2384 F: include/uapi/linux/audit.h
2387 AUXILIARY DISPLAY DRIVERS
2388 M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2389 W: http://miguelojeda.es/auxdisplay.htm
2390 W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2392 F: drivers/auxdisplay/
2393 F: include/linux/cfag12864b.h
2396 M: Ralf Baechle <ralf@linux-mips.org>
2397 L: linux-hams@vger.kernel.org
2398 W: http://www.linux-ax25.org/
2400 F: include/uapi/linux/ax25.h
2401 F: include/net/ax25.h
2404 AXENTIA ASOC DRIVERS
2405 M: Peter Rosin <peda@axentia.se>
2406 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2408 F: Documentation/devicetree/bindings/sound/axentia,*
2409 F: sound/soc/atmel/tse850-pcm5142.c
2412 M: Peter Rosin <peda@axentia.se>
2413 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2415 F: Documentation/devicetree/bindings/arm/axentia.txt
2416 F: arch/arm/boot/dts/at91-linea.dtsi
2417 F: arch/arm/boot/dts/at91-tse850-3.dts
2420 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
2421 M: Mauro Carvalho Chehab <mchehab@kernel.org>
2422 L: linux-media@vger.kernel.org
2423 W: https://linuxtv.org
2424 T: git git://linuxtv.org/media_tree.git
2426 F: drivers/media/usb/dvb-usb-v2/az6007.c
2428 AZTECH FM RADIO RECEIVER DRIVER
2429 M: Hans Verkuil <hverkuil@xs4all.nl>
2430 L: linux-media@vger.kernel.org
2431 T: git git://linuxtv.org/media_tree.git
2432 W: https://linuxtv.org
2434 F: drivers/media/radio/radio-aztech*
2437 L: linux-wireless@vger.kernel.org
2438 L: b43-dev@lists.infradead.org
2439 W: http://wireless.kernel.org/en/users/Drivers/b43
2441 F: drivers/net/wireless/broadcom/b43/
2443 B43LEGACY WIRELESS DRIVER
2444 M: Larry Finger <Larry.Finger@lwfinger.net>
2445 L: linux-wireless@vger.kernel.org
2446 L: b43-dev@lists.infradead.org
2447 W: http://wireless.kernel.org/en/users/Drivers/b43
2449 F: drivers/net/wireless/broadcom/b43legacy/
2451 BACKLIGHT CLASS/SUBSYSTEM
2452 M: Lee Jones <lee.jones@linaro.org>
2453 M: Daniel Thompson <daniel.thompson@linaro.org>
2454 M: Jingoo Han <jingoohan1@gmail.com>
2455 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
2457 F: drivers/video/backlight/
2458 F: include/linux/backlight.h
2459 F: include/linux/pwm_backlight.h
2460 F: Documentation/devicetree/bindings/leds/backlight
2463 M: Marek Lindner <mareklindner@neomailbox.ch>
2464 M: Simon Wunderlich <sw@simonwunderlich.de>
2465 M: Antonio Quartulli <a@unstable.cc>
2466 L: b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
2467 W: https://www.open-mesh.org/
2468 Q: https://patchwork.open-mesh.org/project/batman/list/
2470 F: Documentation/ABI/testing/sysfs-class-net-batman-adv
2471 F: Documentation/ABI/testing/sysfs-class-net-mesh
2472 F: Documentation/networking/batman-adv.txt
2473 F: include/uapi/linux/batman_adv.h
2476 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2477 M: Thomas Sailer <t.sailer@alumni.ethz.ch>
2478 L: linux-hams@vger.kernel.org
2479 W: http://www.baycom.org/~tom/ham/ham.html
2481 F: drivers/net/hamradio/baycom*
2483 BCACHE (BLOCK LAYER CACHE)
2484 M: Kent Overstreet <kent.overstreet@gmail.com>
2485 L: linux-bcache@vger.kernel.org
2486 W: http://bcache.evilpiepirate.org
2488 F: drivers/md/bcache/
2490 BDISP ST MEDIA DRIVER
2491 M: Fabien Dessenne <fabien.dessenne@st.com>
2492 L: linux-media@vger.kernel.org
2493 T: git git://linuxtv.org/media_tree.git
2494 W: https://linuxtv.org
2496 F: drivers/media/platform/sti/bdisp
2498 DELTA ST MEDIA DRIVER
2499 M: Hugues Fruchet <hugues.fruchet@st.com>
2500 L: linux-media@vger.kernel.org
2501 T: git git://linuxtv.org/media_tree.git
2502 W: https://linuxtv.org
2504 F: drivers/media/platform/sti/delta
2507 M: Luis de Bethencourt <luisbg@osg.samsung.com>
2508 M: Salah Triki <salah.triki@gmail.com>
2510 T: git git://github.com/luisbg/linux-befs.git
2511 F: Documentation/filesystems/befs.txt
2514 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2515 M: Dariusz Marcinkiewicz <reksio@newterm.pl>
2516 L: netdev@vger.kernel.org
2518 F: drivers/net/ethernet/ec_bhf.c
2521 M: "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
2523 F: Documentation/filesystems/bfs.txt
2525 F: include/uapi/linux/bfs_fs.h
2527 BLACKFIN ARCHITECTURE
2528 M: Steven Miao <realmz6@gmail.com>
2529 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2530 T: git git://git.code.sf.net/p/adi-linux/code
2531 W: http://blackfin.uclinux.org
2535 BLACKFIN EMAC DRIVER
2536 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2537 W: http://blackfin.uclinux.org
2539 F: drivers/net/ethernet/adi/
2542 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2543 W: http://blackfin.uclinux.org
2545 F: drivers/rtc/rtc-bfin.c
2548 M: Sonic Zhang <sonic.zhang@analog.com>
2549 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2550 W: http://blackfin.uclinux.org
2552 F: drivers/mmc/host/bfin_sdh.c
2554 BLACKFIN SERIAL DRIVER
2555 M: Sonic Zhang <sonic.zhang@analog.com>
2556 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2557 W: http://blackfin.uclinux.org
2559 F: drivers/tty/serial/bfin_uart.c
2561 BLACKFIN WATCHDOG DRIVER
2562 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2563 W: http://blackfin.uclinux.org
2565 F: drivers/watchdog/bfin_wdt.c
2567 BLACKFIN I2C TWI DRIVER
2568 M: Sonic Zhang <sonic.zhang@analog.com>
2569 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2570 W: http://blackfin.uclinux.org/
2572 F: drivers/i2c/busses/i2c-bfin-twi.c
2574 BLACKFIN MEDIA DRIVER
2575 M: Scott Jiang <scott.jiang.linux@gmail.com>
2576 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2577 W: http://blackfin.uclinux.org/
2579 F: drivers/media/platform/blackfin/
2580 F: drivers/media/i2c/adv7183*
2581 F: drivers/media/i2c/vs6624*
2583 BLINKM RGB LED DRIVER
2584 M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
2586 F: drivers/leds/leds-blinkm.c
2589 M: Jens Axboe <axboe@kernel.dk>
2590 L: linux-block@vger.kernel.org
2591 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2594 F: kernel/trace/blktrace.c
2598 M: Paolo Valente <paolo.valente@linaro.org>
2599 M: Jens Axboe <axboe@kernel.dk>
2600 L: linux-block@vger.kernel.org
2603 F: Documentation/block/bfq-iosched.txt
2606 M: Joern Engel <joern@lazybastard.org>
2607 L: linux-mtd@lists.infradead.org
2609 F: drivers/mtd/devices/block2mtd.c
2612 M: Marcel Holtmann <marcel@holtmann.org>
2613 M: Gustavo Padovan <gustavo@padovan.org>
2614 M: Johan Hedberg <johan.hedberg@gmail.com>
2615 L: linux-bluetooth@vger.kernel.org
2616 W: http://www.bluez.org/
2617 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2618 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2620 F: drivers/bluetooth/
2623 M: Marcel Holtmann <marcel@holtmann.org>
2624 M: Gustavo Padovan <gustavo@padovan.org>
2625 M: Johan Hedberg <johan.hedberg@gmail.com>
2626 L: linux-bluetooth@vger.kernel.org
2627 W: http://www.bluez.org/
2628 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2629 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2632 F: include/net/bluetooth/
2635 M: Christoph Hellwig <hch@lst.de>
2636 M: Marek Szyprowski <m.szyprowski@samsung.com>
2637 R: Robin Murphy <robin.murphy@arm.com>
2638 L: linux-kernel@vger.kernel.org
2639 T: git git://git.infradead.org/users/hch/dma-mapping.git
2640 W: http://git.infradead.org/users/hch/dma-mapping.git
2645 F: drivers/base/dma-mapping.c
2646 F: drivers/base/dma-coherent.c
2647 F: include/linux/dma-mapping.h
2650 M: Jay Vosburgh <j.vosburgh@gmail.com>
2651 M: Veaceslav Falico <vfalico@gmail.com>
2652 M: Andy Gospodarek <andy@greyhouse.net>
2653 L: netdev@vger.kernel.org
2654 W: http://sourceforge.net/projects/bonding/
2656 F: drivers/net/bonding/
2657 F: include/uapi/linux/if_bonding.h
2659 BPF (Safe dynamic programs and tools)
2660 M: Alexei Starovoitov <ast@kernel.org>
2661 M: Daniel Borkmann <daniel@iogearbox.net>
2662 L: netdev@vger.kernel.org
2663 L: linux-kernel@vger.kernel.org
2665 F: arch/x86/net/bpf_jit*
2666 F: Documentation/networking/filter.txt
2667 F: include/linux/bpf*
2668 F: include/linux/filter.h
2669 F: include/uapi/linux/bpf*
2670 F: include/uapi/linux/filter.h
2672 F: kernel/trace/bpf_trace.c
2675 F: net/core/filter.c
2676 F: net/sched/act_bpf.c
2677 F: net/sched/cls_bpf.c
2680 F: tools/testing/selftests/bpf/
2682 BROADCOM B44 10/100 ETHERNET DRIVER
2683 M: Michael Chan <michael.chan@broadcom.com>
2684 L: netdev@vger.kernel.org
2686 F: drivers/net/ethernet/broadcom/b44.*
2688 BROADCOM B53 ETHERNET SWITCH DRIVER
2689 M: Florian Fainelli <f.fainelli@gmail.com>
2690 L: netdev@vger.kernel.org
2691 L: openwrt-devel@lists.openwrt.org (subscribers-only)
2693 F: drivers/net/dsa/b53/*
2694 F: include/linux/platform_data/b53.h
2696 BROADCOM GENET ETHERNET DRIVER
2697 M: Florian Fainelli <f.fainelli@gmail.com>
2698 L: netdev@vger.kernel.org
2700 F: drivers/net/ethernet/broadcom/genet/
2702 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
2703 M: Rasesh Mody <rasesh.mody@cavium.com>
2704 M: Harish Patil <harish.patil@cavium.com>
2705 M: Dept-GELinuxNICDev@cavium.com
2706 L: netdev@vger.kernel.org
2708 F: drivers/net/ethernet/broadcom/bnx2.*
2709 F: drivers/net/ethernet/broadcom/bnx2_*
2711 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
2712 M: Yuval Mintz <Yuval.Mintz@cavium.com>
2713 M: Ariel Elior <ariel.elior@cavium.com>
2714 M: everest-linux-l2@cavium.com
2715 L: netdev@vger.kernel.org
2717 F: drivers/net/ethernet/broadcom/bnx2x/
2719 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
2720 M: Michael Chan <michael.chan@broadcom.com>
2721 L: netdev@vger.kernel.org
2723 F: drivers/net/ethernet/broadcom/bnxt/
2725 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2726 M: Florian Fainelli <f.fainelli@gmail.com>
2727 M: Ray Jui <rjui@broadcom.com>
2728 M: Scott Branden <sbranden@broadcom.com>
2729 M: bcm-kernel-feedback-list@broadcom.com
2730 T: git git://github.com/broadcom/mach-bcm
2736 F: arch/arm/mach-bcm/
2738 BROADCOM BCM2835 ARM ARCHITECTURE
2739 M: Eric Anholt <eric@anholt.net>
2740 M: Stefan Wahren <stefan.wahren@i2se.com>
2741 L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2742 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2743 T: git git://github.com/anholt/linux
2746 F: drivers/staging/vc04_services
2748 BROADCOM BCM47XX MIPS ARCHITECTURE
2749 M: Hauke Mehrtens <hauke@hauke-m.de>
2750 M: Rafał Miłecki <zajec5@gmail.com>
2751 L: linux-mips@linux-mips.org
2753 F: Documentation/devicetree/bindings/mips/brcm/
2754 F: arch/mips/bcm47xx/*
2755 F: arch/mips/include/asm/mach-bcm47xx/*
2757 BROADCOM BCM5301X ARM ARCHITECTURE
2758 M: Hauke Mehrtens <hauke@hauke-m.de>
2759 M: Rafał Miłecki <zajec5@gmail.com>
2760 M: Jon Mason <jonmason@broadcom.com>
2761 M: bcm-kernel-feedback-list@broadcom.com
2762 L: linux-arm-kernel@lists.infradead.org
2764 F: arch/arm/mach-bcm/bcm_5301x.c
2765 F: arch/arm/boot/dts/bcm5301x*.dtsi
2766 F: arch/arm/boot/dts/bcm470*
2767 F: arch/arm/boot/dts/bcm953012*
2769 BROADCOM BCM53573 ARM ARCHITECTURE
2770 M: Rafał Miłecki <rafal@milecki.pl>
2771 L: linux-arm-kernel@lists.infradead.org
2773 F: arch/arm/boot/dts/bcm53573*
2774 F: arch/arm/boot/dts/bcm47189*
2776 BROADCOM BCM63XX ARM ARCHITECTURE
2777 M: Florian Fainelli <f.fainelli@gmail.com>
2778 M: bcm-kernel-feedback-list@broadcom.com
2779 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2780 T: git git://github.com/broadcom/stblinux.git
2784 BROADCOM BCM63XX/BCM33XX UDC DRIVER
2785 M: Kevin Cernekee <cernekee@gmail.com>
2786 L: linux-usb@vger.kernel.org
2788 F: drivers/usb/gadget/udc/bcm63xx_udc.*
2790 BROADCOM BCM7XXX ARM ARCHITECTURE
2791 M: Brian Norris <computersforpeace@gmail.com>
2792 M: Gregory Fong <gregory.0xf0@gmail.com>
2793 M: Florian Fainelli <f.fainelli@gmail.com>
2794 M: bcm-kernel-feedback-list@broadcom.com
2795 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2796 T: git git://github.com/broadcom/stblinux.git
2798 F: arch/arm/mach-bcm/*brcmstb*
2799 F: arch/arm/boot/dts/bcm7*.dts*
2800 F: drivers/bus/brcmstb_gisb.c
2803 BROADCOM BMIPS MIPS ARCHITECTURE
2804 M: Kevin Cernekee <cernekee@gmail.com>
2805 M: Florian Fainelli <f.fainelli@gmail.com>
2806 L: linux-mips@linux-mips.org
2807 T: git git://github.com/broadcom/stblinux.git
2809 F: arch/mips/bmips/*
2810 F: arch/mips/include/asm/mach-bmips/*
2811 F: arch/mips/kernel/*bmips*
2812 F: arch/mips/boot/dts/brcm/bcm*.dts*
2813 F: drivers/irqchip/irq-bcm63*
2814 F: drivers/irqchip/irq-bcm7*
2815 F: drivers/irqchip/irq-brcmstb*
2816 F: include/linux/bcm963xx_nvram.h
2817 F: include/linux/bcm963xx_tag.h
2819 BROADCOM BMIPS CPUFREQ DRIVER
2820 M: Markus Mayer <mmayer@broadcom.com>
2821 M: bcm-kernel-feedback-list@broadcom.com
2822 L: linux-pm@vger.kernel.org
2824 F: drivers/cpufreq/bmips-cpufreq.c
2826 BROADCOM TG3 GIGABIT ETHERNET DRIVER
2827 M: Siva Reddy Kallam <siva.kallam@broadcom.com>
2828 M: Prashant Sreedharan <prashant@broadcom.com>
2829 M: Michael Chan <mchan@broadcom.com>
2830 L: netdev@vger.kernel.org
2832 F: drivers/net/ethernet/broadcom/tg3.*
2834 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2835 M: Arend van Spriel <arend.vanspriel@broadcom.com>
2836 M: Franky Lin <franky.lin@broadcom.com>
2837 M: Hante Meuleman <hante.meuleman@broadcom.com>
2838 M: Chi-Hsien Lin <chi-hsien.lin@cypress.com>
2839 M: Wright Feng <wright.feng@cypress.com>
2840 L: linux-wireless@vger.kernel.org
2841 L: brcm80211-dev-list.pdl@broadcom.com
2842 L: brcm80211-dev-list@cypress.com
2844 F: drivers/net/wireless/broadcom/brcm80211/
2846 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2847 M: QLogic-Storage-Upstream@qlogic.com
2848 L: linux-scsi@vger.kernel.org
2850 F: drivers/scsi/bnx2fc/
2852 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2853 M: QLogic-Storage-Upstream@qlogic.com
2854 L: linux-scsi@vger.kernel.org
2856 F: drivers/scsi/bnx2i/
2858 BROADCOM IPROC ARM ARCHITECTURE
2859 M: Ray Jui <rjui@broadcom.com>
2860 M: Scott Branden <sbranden@broadcom.com>
2861 M: Jon Mason <jonmason@broadcom.com>
2862 M: bcm-kernel-feedback-list@broadcom.com
2863 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2864 T: git git://github.com/broadcom/cygnus-linux.git
2879 F: arch/arm64/boot/dts/broadcom/ns2*
2880 F: drivers/clk/bcm/clk-ns*
2881 F: drivers/pinctrl/bcm/pinctrl-ns*
2883 BROADCOM BRCMSTB GPIO DRIVER
2884 M: Gregory Fong <gregory.0xf0@gmail.com>
2885 L: bcm-kernel-feedback-list@broadcom.com
2887 F: drivers/gpio/gpio-brcmstb.c
2888 F: Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2890 BROADCOM KONA GPIO DRIVER
2891 M: Ray Jui <rjui@broadcom.com>
2892 L: bcm-kernel-feedback-list@broadcom.com
2894 F: drivers/gpio/gpio-bcm-kona.c
2895 F: Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
2897 BROADCOM NVRAM DRIVER
2898 M: Rafał Miłecki <zajec5@gmail.com>
2899 L: linux-mips@linux-mips.org
2901 F: drivers/firmware/broadcom/*
2903 BROADCOM STB NAND FLASH DRIVER
2904 M: Brian Norris <computersforpeace@gmail.com>
2905 M: Kamal Dasu <kdasu.kdev@gmail.com>
2906 L: linux-mtd@lists.infradead.org
2907 L: bcm-kernel-feedback-list@broadcom.com
2909 F: drivers/mtd/nand/brcmnand/
2911 BROADCOM STB AVS CPUFREQ DRIVER
2912 M: Markus Mayer <mmayer@broadcom.com>
2913 M: bcm-kernel-feedback-list@broadcom.com
2914 L: linux-pm@vger.kernel.org
2916 F: Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
2917 F: drivers/cpufreq/brcmstb*
2919 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2920 M: Rafał Miłecki <zajec5@gmail.com>
2921 L: linux-wireless@vger.kernel.org
2924 F: include/linux/bcma/
2926 BROADCOM SYSTEMPORT ETHERNET DRIVER
2927 M: Florian Fainelli <f.fainelli@gmail.com>
2928 L: netdev@vger.kernel.org
2930 F: drivers/net/ethernet/broadcom/bcmsysport.*
2932 BROADCOM NETXTREME-E ROCE DRIVER
2933 M: Selvin Xavier <selvin.xavier@broadcom.com>
2934 M: Devesh Sharma <devesh.sharma@broadcom.com>
2935 M: Somnath Kotur <somnath.kotur@broadcom.com>
2936 M: Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
2937 L: linux-rdma@vger.kernel.org
2938 W: http://www.broadcom.com
2940 F: drivers/infiniband/hw/bnxt_re/
2941 F: include/uapi/rdma/bnxt_re-abi.h
2943 BROCADE BFA FC SCSI DRIVER
2944 M: Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2945 M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
2946 L: linux-scsi@vger.kernel.org
2948 F: drivers/scsi/bfa/
2950 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
2951 M: Rasesh Mody <rasesh.mody@cavium.com>
2952 M: Sudarsana Kalluru <sudarsana.kalluru@cavium.com>
2953 M: Dept-GELinuxNICDev@cavium.com
2954 L: netdev@vger.kernel.org
2956 F: drivers/net/ethernet/brocade/bna/
2958 BSG (block layer generic sg v4 driver)
2959 M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
2960 L: linux-scsi@vger.kernel.org
2963 F: include/linux/bsg.h
2964 F: include/uapi/linux/bsg.h
2967 M: Clemens Ladisch <clemens@ladisch.de>
2968 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2969 T: git git://git.alsa-project.org/alsa-kernel.git
2971 F: Documentation/sound/alsa/Bt87x.txt
2972 F: sound/pci/bt87x.c
2975 M: Michael Buesch <m@bues.ch>
2976 W: http://bu3sch.de/btgpio.php
2978 F: drivers/gpio/gpio-bt8xx.c
2981 M: Chris Mason <clm@fb.com>
2982 M: Josef Bacik <jbacik@fb.com>
2983 M: David Sterba <dsterba@suse.com>
2984 L: linux-btrfs@vger.kernel.org
2985 W: http://btrfs.wiki.kernel.org/
2986 Q: http://patchwork.kernel.org/project/linux-btrfs/list/
2987 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
2989 F: Documentation/filesystems/btrfs.txt
2991 F: include/linux/btrfs*
2992 F: include/uapi/linux/btrfs*
2994 BTTV VIDEO4LINUX DRIVER
2995 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
2996 M: Mauro Carvalho Chehab <mchehab@kernel.org>
2997 L: linux-media@vger.kernel.org
2998 W: https://linuxtv.org
2999 T: git git://linuxtv.org/media_tree.git
3001 F: Documentation/media/v4l-drivers/bttv*
3002 F: drivers/media/pci/bt8xx/bttv*
3004 BUSLOGIC SCSI DRIVER
3005 M: Khalid Aziz <khalid@gonehiking.org>
3006 L: linux-scsi@vger.kernel.org
3008 F: drivers/scsi/BusLogic.*
3009 F: drivers/scsi/FlashPoint.*
3011 C-MEDIA CMI8788 DRIVER
3012 M: Clemens Ladisch <clemens@ladisch.de>
3013 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3014 T: git git://git.alsa-project.org/alsa-kernel.git
3016 F: sound/pci/oxygen/
3019 M: Mark Salter <msalter@redhat.com>
3020 M: Aurelien Jacquiot <jacquiot.aurelien@gmail.com>
3021 L: linux-c6x-dev@linux-c6x.org
3022 W: http://www.linux-c6x.org/wiki/index.php/Main_Page
3026 CA8210 IEEE-802.15.4 RADIO DRIVER
3027 M: Harry Morris <h.morris@cascoda.com>
3028 M: linuxdev@cascoda.com
3029 L: linux-wpan@vger.kernel.org
3030 W: https://github.com/Cascoda/ca8210-linux.git
3032 F: drivers/net/ieee802154/ca8210.c
3033 F: Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3035 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3036 M: David Howells <dhowells@redhat.com>
3037 L: linux-cachefs@redhat.com (moderated for non-subscribers)
3039 F: Documentation/filesystems/caching/cachefiles.txt
3042 CADET FM/AM RADIO RECEIVER DRIVER
3043 M: Hans Verkuil <hverkuil@xs4all.nl>
3044 L: linux-media@vger.kernel.org
3045 T: git git://linuxtv.org/media_tree.git
3046 W: https://linuxtv.org
3048 F: drivers/media/radio/radio-cadet*
3050 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3051 M: Jonathan Corbet <corbet@lwn.net>
3052 L: linux-media@vger.kernel.org
3053 T: git git://linuxtv.org/media_tree.git
3055 F: Documentation/media/v4l-drivers/cafe_ccic*
3056 F: drivers/media/platform/marvell-ccic/
3059 M: Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
3060 L: netdev@vger.kernel.org
3062 F: Documentation/networking/caif/
3063 F: drivers/net/caif/
3064 F: include/uapi/linux/caif/
3065 F: include/net/caif/
3068 CALGARY x86-64 IOMMU
3069 M: Muli Ben-Yehuda <mulix@mulix.org>
3070 M: Jon Mason <jdmason@kudzu.us>
3071 L: iommu@lists.linux-foundation.org
3073 F: arch/x86/kernel/pci-calgary_64.c
3074 F: arch/x86/kernel/tce_64.c
3075 F: arch/x86/include/asm/calgary.h
3076 F: arch/x86/include/asm/tce.h
3079 M: Oliver Hartkopp <socketcan@hartkopp.net>
3080 M: Marc Kleine-Budde <mkl@pengutronix.de>
3081 L: linux-can@vger.kernel.org
3082 W: https://github.com/linux-can
3083 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3084 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3086 F: Documentation/networking/can.txt
3088 F: include/linux/can/core.h
3089 F: include/uapi/linux/can.h
3090 F: include/uapi/linux/can/bcm.h
3091 F: include/uapi/linux/can/raw.h
3092 F: include/uapi/linux/can/gw.h
3095 M: Wolfgang Grandegger <wg@grandegger.com>
3096 M: Marc Kleine-Budde <mkl@pengutronix.de>
3097 L: linux-can@vger.kernel.org
3098 W: https://github.com/linux-can
3099 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3100 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3102 F: Documentation/devicetree/bindings/net/can/
3104 F: include/linux/can/dev.h
3105 F: include/linux/can/platform/
3106 F: include/uapi/linux/can/error.h
3107 F: include/uapi/linux/can/netlink.h
3110 M: Serge Hallyn <serge@hallyn.com>
3111 L: linux-security-module@vger.kernel.org
3113 F: include/linux/capability.h
3114 F: include/uapi/linux/capability.h
3115 F: security/commoncap.c
3116 F: kernel/capability.c
3118 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3119 M: Kevin Tsai <ktsai@capellamicro.com>
3121 F: drivers/iio/light/cm*
3123 CAVIUM THUNDERX2 ARM64 SOC
3124 M: Jayachandran C <jnair@caviumnetworks.com>
3125 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3127 F: arch/arm64/boot/dts/cavium/thunder2-99xx*
3128 F: Documentation/devicetree/bindings/arm/cavium-thunder2.txt
3131 M: Jan Glauber <jglauber@cavium.com>
3132 M: David Daney <david.daney@cavium.com>
3133 W: http://www.cavium.com
3135 F: drivers/i2c/busses/i2c-octeon*
3136 F: drivers/i2c/busses/i2c-thunderx*
3139 M: Jan Glauber <jglauber@cavium.com>
3140 M: David Daney <david.daney@cavium.com>
3141 M: Steven J. Hill <Steven.Hill@cavium.com>
3142 W: http://www.cavium.com
3144 F: drivers/mmc/host/cavium*
3146 CAVIUM LIQUIDIO NETWORK DRIVER
3147 M: Derek Chickles <derek.chickles@caviumnetworks.com>
3148 M: Satanand Burla <satananda.burla@caviumnetworks.com>
3149 M: Felix Manlunas <felix.manlunas@caviumnetworks.com>
3150 M: Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
3151 L: netdev@vger.kernel.org
3152 W: http://www.cavium.com
3154 F: drivers/net/ethernet/cavium/liquidio/
3156 CAVIUM OCTEON-TX CRYPTO DRIVER
3157 M: George Cherian <george.cherian@cavium.com>
3158 L: linux-crypto@vger.kernel.org
3159 W: http://www.cavium.com
3161 F: drivers/crypto/cavium/cpt/
3163 CC2520 IEEE-802.15.4 RADIO DRIVER
3164 M: Varka Bhadram <varkabhadram@gmail.com>
3165 L: linux-wpan@vger.kernel.org
3167 F: drivers/net/ieee802154/cc2520.c
3168 F: include/linux/spi/cc2520.h
3169 F: Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
3171 CCREE ARM TRUSTZONE CRYPTOCELL 700 REE DRIVER
3172 M: Gilad Ben-Yossef <gilad@benyossef.com>
3173 L: linux-crypto@vger.kernel.org
3174 L: driverdev-devel@linuxdriverproject.org
3176 F: drivers/staging/ccree/
3177 W: https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
3180 M: Hans Verkuil <hans.verkuil@cisco.com>
3181 L: linux-media@vger.kernel.org
3182 T: git git://linuxtv.org/media_tree.git
3183 W: http://linuxtv.org
3185 F: Documentation/media/kapi/cec-core.rst
3186 F: Documentation/media/uapi/cec
3187 F: drivers/media/cec/
3188 F: drivers/media/rc/keymaps/rc-cec.c
3189 F: include/media/cec.h
3190 F: include/media/cec-notifier.h
3191 F: include/uapi/linux/cec.h
3192 F: include/uapi/linux/cec-funcs.h
3193 F: Documentation/devicetree/bindings/media/cec.txt
3195 CELL BROADBAND ENGINE ARCHITECTURE
3196 M: Arnd Bergmann <arnd@arndb.de>
3197 L: linuxppc-dev@lists.ozlabs.org
3198 W: http://www.ibm.com/developerworks/power/cell/
3200 F: arch/powerpc/include/asm/cell*.h
3201 F: arch/powerpc/include/asm/spu*.h
3202 F: arch/powerpc/include/uapi/asm/spu*.h
3203 F: arch/powerpc/oprofile/*cell*
3204 F: arch/powerpc/platforms/cell/
3206 CEPH COMMON CODE (LIBCEPH)
3207 M: Ilya Dryomov <idryomov@gmail.com>
3208 M: "Yan, Zheng" <zyan@redhat.com>
3209 M: Sage Weil <sage@redhat.com>
3210 L: ceph-devel@vger.kernel.org
3212 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3213 T: git git://github.com/ceph/ceph-client.git
3216 F: include/linux/ceph/
3217 F: include/linux/crush/
3219 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
3220 M: "Yan, Zheng" <zyan@redhat.com>
3221 M: Sage Weil <sage@redhat.com>
3222 M: Ilya Dryomov <idryomov@gmail.com>
3223 L: ceph-devel@vger.kernel.org
3225 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3226 T: git git://github.com/ceph/ceph-client.git
3228 F: Documentation/filesystems/ceph.txt
3231 CERTIFICATE HANDLING:
3232 M: David Howells <dhowells@redhat.com>
3233 M: David Woodhouse <dwmw2@infradead.org>
3234 L: keyrings@vger.kernel.org
3236 F: Documentation/module-signing.txt
3238 F: scripts/sign-file.c
3239 F: scripts/extract-cert.c
3241 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
3242 L: linux-usb@vger.kernel.org
3244 F: Documentation/usb/WUSB-Design-overview.txt
3245 F: Documentation/usb/wusb-cbaf
3246 F: drivers/usb/host/hwa-hc.c
3247 F: drivers/usb/host/whci/
3248 F: drivers/usb/wusbcore/
3249 F: include/linux/usb/wusb*
3251 HT16K33 LED CONTROLLER DRIVER
3252 M: Robin van der Gracht <robin@protonic.nl>
3254 F: drivers/auxdisplay/ht16k33.c
3255 F: Documentation/devicetree/bindings/display/ht16k33.txt
3257 CFAG12864B LCD DRIVER
3258 M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3259 W: http://miguelojeda.es/auxdisplay.htm
3260 W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
3262 F: drivers/auxdisplay/cfag12864b.c
3263 F: include/linux/cfag12864b.h
3265 CFAG12864BFB LCD FRAMEBUFFER DRIVER
3266 M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3267 W: http://miguelojeda.es/auxdisplay.htm
3268 W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
3270 F: drivers/auxdisplay/cfag12864bfb.c
3271 F: include/linux/cfag12864b.h
3273 CFG80211 and NL80211
3274 M: Johannes Berg <johannes@sipsolutions.net>
3275 L: linux-wireless@vger.kernel.org
3276 W: http://wireless.kernel.org/
3277 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
3278 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
3280 F: include/uapi/linux/nl80211.h
3281 F: include/net/cfg80211.h
3283 X: net/wireless/wext*
3285 CHAR and MISC DRIVERS
3286 M: Arnd Bergmann <arnd@arndb.de>
3287 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3288 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
3292 F: include/linux/miscdevice.h
3295 M: Andy Whitcroft <apw@canonical.com>
3296 M: Joe Perches <joe@perches.com>
3298 F: scripts/checkpatch.pl
3300 CHINESE DOCUMENTATION
3301 M: Harry Wei <harryxiyou@gmail.com>
3302 L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
3303 L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
3305 F: Documentation/translations/zh_CN/
3307 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
3308 M: Peter Chen <Peter.Chen@nxp.com>
3309 T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
3310 L: linux-usb@vger.kernel.org
3312 F: drivers/usb/chipidea/
3314 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
3315 M: Hans de Goede <hdegoede@redhat.com>
3316 L: linux-input@vger.kernel.org
3318 F: Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
3319 F: drivers/input/touchscreen/chipone_icn8318.c
3321 CHROME HARDWARE PLATFORM SUPPORT
3322 M: Olof Johansson <olof@lixom.net>
3324 T: git git://git.kernel.org/pub/scm/linux/kernel/git/olof/chrome-platform.git
3325 F: drivers/platform/chrome/
3327 CISCO VIC ETHERNET NIC DRIVER
3328 M: Christian Benvenuti <benve@cisco.com>
3329 M: Govindarajulu Varadarajan <_govind@gmx.com>
3330 M: Neel Patel <neepatel@cisco.com>
3332 F: drivers/net/ethernet/cisco/enic/
3334 CISCO VIC LOW LATENCY NIC DRIVER
3335 M: Christian Benvenuti <benve@cisco.com>
3336 M: Dave Goodell <dgoodell@cisco.com>
3338 F: drivers/infiniband/hw/usnic/
3340 CIRRUS LOGIC EP93XX ETHERNET DRIVER
3341 M: Hartley Sweeten <hsweeten@visionengravers.com>
3342 L: netdev@vger.kernel.org
3344 F: drivers/net/ethernet/cirrus/ep93xx_eth.c
3346 CIRRUS LOGIC AUDIO CODEC DRIVERS
3347 M: Brian Austin <brian.austin@cirrus.com>
3348 M: Paul Handrigan <Paul.Handrigan@cirrus.com>
3349 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3351 F: sound/soc/codecs/cs*
3354 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3355 L: linux-kernel@vger.kernel.org
3358 F: include/linux/cleancache.h
3361 M: Russell King <linux@armlinux.org.uk>
3362 L: linux-clk@vger.kernel.org
3364 F: include/linux/clk.h
3366 CLOCKSOURCE, CLOCKEVENT DRIVERS
3367 M: Daniel Lezcano <daniel.lezcano@linaro.org>
3368 M: Thomas Gleixner <tglx@linutronix.de>
3369 L: linux-kernel@vger.kernel.org
3370 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
3372 F: drivers/clocksource
3374 CISCO FCOE HBA DRIVER
3375 M: Satish Kharat <satishkh@cisco.com>
3376 M: Sesidhar Baddela <sebaddel@cisco.com>
3377 M: Karan Tilak Kumar <kartilak@cisco.com>
3378 L: linux-scsi@vger.kernel.org
3380 F: drivers/scsi/fnic/
3382 CISCO SCSI HBA DRIVER
3383 M: Karan Tilak Kumar <kartilak@cisco.com>
3384 M: Sesidhar Baddela <sebaddel@cisco.com>
3385 L: linux-scsi@vger.kernel.org
3387 F: drivers/scsi/snic/
3390 M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
3391 M: Daniel Oliveira Nascimento <don@syst.com.br>
3392 L: platform-driver-x86@vger.kernel.org
3394 F: drivers/platform/x86/classmate-laptop.c
3397 M: Hans Verkuil <hans.verkuil@cisco.com>
3398 L: linux-media@vger.kernel.org
3399 T: git git://linuxtv.org/media_tree.git
3400 W: https://linuxtv.org
3402 F: drivers/media/pci/cobalt/
3404 COCCINELLE/Semantic Patches (SmPL)
3405 M: Julia Lawall <Julia.Lawall@lip6.fr>
3406 M: Gilles Muller <Gilles.Muller@lip6.fr>
3407 M: Nicolas Palix <nicolas.palix@imag.fr>
3408 M: Michal Marek <mmarek@suse.com>
3409 L: cocci@systeme.lip6.fr (moderated for non-subscribers)
3410 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
3411 W: http://coccinelle.lip6.fr/
3413 F: Documentation/dev-tools/coccinelle.rst
3414 F: scripts/coccinelle/
3415 F: scripts/coccicheck
3418 M: Jan Harkes <jaharkes@cs.cmu.edu>
3420 L: codalist@coda.cs.cmu.edu
3421 W: http://www.coda.cs.cmu.edu/
3423 F: Documentation/filesystems/coda.txt
3425 F: include/linux/coda*.h
3426 F: include/uapi/linux/coda*.h
3428 CODA V4L2 MEM2MEM DRIVER
3429 M: Philipp Zabel <p.zabel@pengutronix.de>
3430 L: linux-media@vger.kernel.org
3432 F: Documentation/devicetree/bindings/media/coda.txt
3433 F: drivers/media/platform/coda/
3435 COMMON CLK FRAMEWORK
3436 M: Michael Turquette <mturquette@baylibre.com>
3437 M: Stephen Boyd <sboyd@codeaurora.org>
3438 L: linux-clk@vger.kernel.org
3439 Q: http://patchwork.kernel.org/project/linux-clk/list/
3440 T: git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
3442 F: Documentation/devicetree/bindings/clock/
3444 X: drivers/clk/clkdev.c
3445 F: include/linux/clk-pr*
3446 F: include/linux/clk/
3448 COMMON INTERNET FILE SYSTEM (CIFS)
3449 M: Steve French <sfrench@samba.org>
3450 L: linux-cifs@vger.kernel.org
3451 L: samba-technical@lists.samba.org (moderated for non-subscribers)
3452 W: http://linux-cifs.samba.org/
3453 T: git git://git.samba.org/sfrench/cifs-2.6.git
3455 F: Documentation/filesystems/cifs/
3458 COMPACTPCI HOTPLUG CORE
3459 M: Scott Murray <scott@spiteful.org>
3460 L: linux-pci@vger.kernel.org
3462 F: drivers/pci/hotplug/cpci_hotplug*
3464 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
3465 M: Scott Murray <scott@spiteful.org>
3466 L: linux-pci@vger.kernel.org
3468 F: drivers/pci/hotplug/cpcihp_zt5550.*
3470 COMPACTPCI HOTPLUG GENERIC DRIVER
3471 M: Scott Murray <scott@spiteful.org>
3472 L: linux-pci@vger.kernel.org
3474 F: drivers/pci/hotplug/cpcihp_generic.c
3476 COMPAL LAPTOP SUPPORT
3477 M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
3478 L: platform-driver-x86@vger.kernel.org
3480 F: drivers/platform/x86/compal-laptop.c
3482 CONEXANT ACCESSRUNNER USB DRIVER
3483 L: accessrunner-general@lists.sourceforge.net
3484 W: http://accessrunner.sourceforge.net/
3486 F: drivers/usb/atm/cxacru.c
3489 M: Joel Becker <jlbec@evilplan.org>
3490 M: Christoph Hellwig <hch@lst.de>
3491 T: git git://git.infradead.org/users/hch/configfs.git
3494 F: include/linux/configfs.h
3497 M: Evgeniy Polyakov <zbr@ioremap.net>
3498 L: netdev@vger.kernel.org
3500 F: drivers/connector/
3502 CONTROL GROUP (CGROUP)
3503 M: Tejun Heo <tj@kernel.org>
3504 M: Li Zefan <lizefan@huawei.com>
3505 M: Johannes Weiner <hannes@cmpxchg.org>
3506 L: cgroups@vger.kernel.org
3507 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3509 F: Documentation/cgroup*
3510 F: include/linux/cgroup*
3513 CONTROL GROUP - CPUSET
3514 M: Li Zefan <lizefan@huawei.com>
3515 L: cgroups@vger.kernel.org
3516 W: http://www.bullopensource.org/cpuset/
3517 W: http://oss.sgi.com/projects/cpusets/
3518 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3520 F: Documentation/cgroup-v1/cpusets.txt
3521 F: include/linux/cpuset.h
3524 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
3525 M: Johannes Weiner <hannes@cmpxchg.org>
3526 M: Michal Hocko <mhocko@kernel.org>
3527 M: Vladimir Davydov <vdavydov.dev@gmail.com>
3528 L: cgroups@vger.kernel.org
3529 L: linux-mm@kvack.org
3534 CORETEMP HARDWARE MONITORING DRIVER
3535 M: Fenghua Yu <fenghua.yu@intel.com>
3536 L: linux-hwmon@vger.kernel.org
3538 F: Documentation/hwmon/coretemp
3539 F: drivers/hwmon/coretemp.c
3541 COSA/SRP SYNC SERIAL DRIVER
3542 M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
3543 W: http://www.fi.muni.cz/~kas/cosa/
3545 F: drivers/net/wan/cosa*
3547 CPMAC ETHERNET DRIVER
3548 M: Florian Fainelli <f.fainelli@gmail.com>
3549 L: netdev@vger.kernel.org
3551 F: drivers/net/ethernet/ti/cpmac.c
3553 CPU FREQUENCY DRIVERS
3554 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
3555 M: Viresh Kumar <viresh.kumar@linaro.org>
3556 L: linux-pm@vger.kernel.org
3558 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3559 T: git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
3560 B: https://bugzilla.kernel.org
3561 F: Documentation/cpu-freq/
3562 F: Documentation/devicetree/bindings/cpufreq/
3564 F: include/linux/cpufreq.h
3565 F: tools/testing/selftests/cpufreq/
3567 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
3568 M: Viresh Kumar <viresh.kumar@linaro.org>
3569 M: Sudeep Holla <sudeep.holla@arm.com>
3570 L: linux-pm@vger.kernel.org
3571 W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php
3573 F: drivers/cpufreq/arm_big_little.h
3574 F: drivers/cpufreq/arm_big_little.c
3575 F: drivers/cpufreq/arm_big_little_dt.c
3577 CPUIDLE DRIVER - ARM BIG LITTLE
3578 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
3579 M: Daniel Lezcano <daniel.lezcano@linaro.org>
3580 L: linux-pm@vger.kernel.org
3581 L: linux-arm-kernel@lists.infradead.org
3582 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3584 F: drivers/cpuidle/cpuidle-big_little.c
3586 CPUIDLE DRIVER - ARM EXYNOS
3587 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
3588 M: Daniel Lezcano <daniel.lezcano@linaro.org>
3589 M: Kukjin Kim <kgene@kernel.org>
3590 L: linux-pm@vger.kernel.org
3591 L: linux-samsung-soc@vger.kernel.org
3593 F: drivers/cpuidle/cpuidle-exynos.c
3594 F: arch/arm/mach-exynos/pm.c
3597 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
3598 M: Daniel Lezcano <daniel.lezcano@linaro.org>
3599 L: linux-pm@vger.kernel.org
3601 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3602 B: https://bugzilla.kernel.org
3603 F: drivers/cpuidle/*
3604 F: include/linux/cpuidle.h
3607 M: "H. Peter Anvin" <hpa@zytor.com>
3609 F: arch/x86/kernel/cpuid.c
3610 F: arch/x86/kernel/msr.c
3612 CPU POWER MONITORING SUBSYSTEM
3613 M: Thomas Renninger <trenn@suse.com>
3614 L: linux-pm@vger.kernel.org
3616 F: tools/power/cpupower/
3619 W: http://sourceforge.net/projects/cramfs/
3620 S: Orphan / Obsolete
3621 F: Documentation/filesystems/cramfs.txt
3625 M: Mikael Starvik <starvik@axis.com>
3626 M: Jesper Nilsson <jesper.nilsson@axis.com>
3627 L: linux-cris-kernel@axis.com
3628 W: http://developer.axis.com
3629 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesper/cris.git
3632 F: drivers/tty/serial/crisv10.*
3635 M: Herbert Xu <herbert@gondor.apana.org.au>
3636 M: "David S. Miller" <davem@davemloft.net>
3637 L: linux-crypto@vger.kernel.org
3638 T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
3639 T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
3641 F: Documentation/crypto/
3642 F: Documentation/devicetree/bindings/crypto/
3647 F: include/linux/crypto*
3649 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
3650 M: Neil Horman <nhorman@tuxdriver.com>
3651 L: linux-crypto@vger.kernel.org
3653 F: crypto/ansi_cprng.c
3657 M: Hans Verkuil <hverkuil@xs4all.nl>
3658 L: linux-media@vger.kernel.org
3659 T: git git://linuxtv.org/media_tree.git
3660 W: http://linuxtv.org
3662 F: drivers/media/i2c/cs3308.c
3663 F: drivers/media/i2c/cs3308.h
3665 CS5535 Audio ALSA driver
3666 M: Jaya Kumar <jayakumar.alsa@gmail.com>
3668 F: sound/pci/cs5535audio/
3671 M: Solomon Peachy <pizza@shaftnet.org>
3673 F: drivers/net/wireless/st/cw1200/
3675 CX18 VIDEO4LINUX DRIVER
3676 M: Andy Walls <awalls@md.metrocast.net>
3677 L: ivtv-devel@ivtvdriver.org (subscribers-only)
3678 L: linux-media@vger.kernel.org
3679 T: git git://linuxtv.org/media_tree.git
3680 W: https://linuxtv.org
3681 W: http://www.ivtvdriver.org/index.php/Cx18
3683 F: Documentation/media/v4l-drivers/cx18*
3684 F: drivers/media/pci/cx18/
3685 F: include/uapi/linux/ivtv*
3687 CX2341X MPEG ENCODER HELPER MODULE
3688 M: Hans Verkuil <hverkuil@xs4all.nl>
3689 L: linux-media@vger.kernel.org
3690 T: git git://linuxtv.org/media_tree.git
3691 W: https://linuxtv.org
3693 F: drivers/media/common/cx2341x*
3694 F: include/media/cx2341x*
3696 CX24120 MEDIA DRIVER
3697 M: Jemma Denson <jdenson@gmail.com>
3698 M: Patrick Boettcher <patrick.boettcher@posteo.de>
3699 L: linux-media@vger.kernel.org
3700 W: https://linuxtv.org
3701 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3703 F: drivers/media/dvb-frontends/cx24120*
3705 CX88 VIDEO4LINUX DRIVER
3706 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
3707 M: Mauro Carvalho Chehab <mchehab@kernel.org>
3708 L: linux-media@vger.kernel.org
3709 W: https://linuxtv.org
3710 T: git git://linuxtv.org/media_tree.git
3712 F: Documentation/media/v4l-drivers/cx88*
3713 F: drivers/media/pci/cx88/
3715 CXD2820R MEDIA DRIVER
3716 M: Antti Palosaari <crope@iki.fi>
3717 L: linux-media@vger.kernel.org
3718 W: https://linuxtv.org
3719 W: http://palosaari.fi/linux/
3720 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3721 T: git git://linuxtv.org/anttip/media_tree.git
3723 F: drivers/media/dvb-frontends/cxd2820r*
3725 CXGB3 ETHERNET DRIVER (CXGB3)
3726 M: Santosh Raspatur <santosh@chelsio.com>
3727 L: netdev@vger.kernel.org
3728 W: http://www.chelsio.com
3730 F: drivers/net/ethernet/chelsio/cxgb3/
3732 CXGB3 ISCSI DRIVER (CXGB3I)
3733 M: Karen Xie <kxie@chelsio.com>
3734 L: linux-scsi@vger.kernel.org
3735 W: http://www.chelsio.com
3737 F: drivers/scsi/cxgbi/cxgb3i
3739 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
3740 M: Steve Wise <swise@chelsio.com>
3741 L: linux-rdma@vger.kernel.org
3742 W: http://www.openfabrics.org
3744 F: drivers/infiniband/hw/cxgb3/
3745 F: include/uapi/rdma/cxgb3-abi.h
3747 CXGB4 ETHERNET DRIVER (CXGB4)
3748 M: Ganesh Goudar <ganeshgr@chelsio.com>
3749 L: netdev@vger.kernel.org
3750 W: http://www.chelsio.com
3752 F: drivers/net/ethernet/chelsio/cxgb4/
3754 CXGB4 ISCSI DRIVER (CXGB4I)
3755 M: Karen Xie <kxie@chelsio.com>
3756 L: linux-scsi@vger.kernel.org
3757 W: http://www.chelsio.com
3759 F: drivers/scsi/cxgbi/cxgb4i
3761 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3762 M: Steve Wise <swise@chelsio.com>
3763 L: linux-rdma@vger.kernel.org
3764 W: http://www.openfabrics.org
3766 F: drivers/infiniband/hw/cxgb4/
3767 F: include/uapi/rdma/cxgb4-abi.h
3769 CXGB4 CRYPTO DRIVER (chcr)
3770 M: Harsh Jain <harsh@chelsio.com>
3771 L: linux-crypto@vger.kernel.org
3772 W: http://www.chelsio.com
3774 F: drivers/crypto/chelsio
3776 CXGB4VF ETHERNET DRIVER (CXGB4VF)
3777 M: Casey Leedom <leedom@chelsio.com>
3778 L: netdev@vger.kernel.org
3779 W: http://www.chelsio.com
3781 F: drivers/net/ethernet/chelsio/cxgb4vf/
3783 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3784 M: Frederic Barrat <fbarrat@linux.vnet.ibm.com>
3785 M: Andrew Donnellan <andrew.donnellan@au1.ibm.com>
3786 L: linuxppc-dev@lists.ozlabs.org
3788 F: arch/powerpc/platforms/powernv/pci-cxl.c
3789 F: drivers/misc/cxl/
3790 F: include/misc/cxl*
3791 F: include/uapi/misc/cxl.h
3792 F: Documentation/powerpc/cxl.txt
3793 F: Documentation/ABI/testing/sysfs-class-cxl
3795 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
3796 M: Manoj N. Kumar <manoj@linux.vnet.ibm.com>
3797 M: Matthew R. Ochs <mrochs@linux.vnet.ibm.com>
3798 M: Uma Krishnan <ukrishn@linux.vnet.ibm.com>
3799 L: linux-scsi@vger.kernel.org
3801 F: drivers/scsi/cxlflash/
3802 F: include/uapi/scsi/cxlflash_ioctls.h
3803 F: Documentation/powerpc/cxlflash.txt
3805 STMMAC ETHERNET DRIVER
3806 M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
3807 M: Alexandre Torgue <alexandre.torgue@st.com>
3808 L: netdev@vger.kernel.org
3809 W: http://www.stlinux.com
3811 F: drivers/net/ethernet/stmicro/stmmac/
3814 M: Russell King <linux@armlinux.org.uk>
3815 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3816 W: http://www.armlinux.org.uk/
3818 F: drivers/video/fbdev/cyber2000fb.*
3820 CYCLADES ASYNC MUX DRIVER
3821 W: http://www.cyclades.com/
3823 F: drivers/tty/cyclades.c
3824 F: include/linux/cyclades.h
3825 F: include/uapi/linux/cyclades.h
3827 CYCLADES PC300 DRIVER
3828 W: http://www.cyclades.com/
3830 F: drivers/net/wan/pc300*
3832 CYPRESS_FIRMWARE MEDIA DRIVER
3833 M: Antti Palosaari <crope@iki.fi>
3834 L: linux-media@vger.kernel.org
3835 W: https://linuxtv.org
3836 W: http://palosaari.fi/linux/
3837 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3838 T: git git://linuxtv.org/anttip/media_tree.git
3840 F: drivers/media/common/cypress_firmware*
3842 CYTTSP TOUCHSCREEN DRIVER
3843 M: Ferruh Yigit <fery@cypress.com>
3844 L: linux-input@vger.kernel.org
3846 F: drivers/input/touchscreen/cyttsp*
3847 F: include/linux/input/cyttsp.h
3849 D-LINK DIR-685 TOUCHKEYS DRIVER
3850 M: Linus Walleij <linus.walleij@linaro.org>
3851 L: linux-input@vger.kernel.org
3853 F: drivers/input/dlink-dir685-touchkeys.c
3855 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3856 M: Joshua Kinard <kumba@gentoo.org>
3858 F: drivers/rtc/rtc-ds1685.c
3859 F: include/linux/rtc/ds1685.h
3861 DAMA SLAVE for AX.25
3862 M: Joerg Reuter <jreuter@yaina.de>
3863 W: http://yaina.de/jreuter/
3864 W: http://www.qsl.net/dl1bke/
3865 L: linux-hams@vger.kernel.org
3867 F: net/ax25/af_ax25.c
3868 F: net/ax25/ax25_dev.c
3869 F: net/ax25/ax25_ds_*
3870 F: net/ax25/ax25_in.c
3871 F: net/ax25/ax25_out.c
3872 F: net/ax25/ax25_timer.c
3873 F: net/ax25/sysctl_net_ax25.c
3875 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
3876 L: netdev@vger.kernel.org
3878 F: Documentation/networking/dmfe.txt
3879 F: drivers/net/ethernet/dec/tulip/dmfe.c
3881 DC390/AM53C974 SCSI driver
3882 M: Hannes Reinecke <hare@suse.com>
3883 L: linux-scsi@vger.kernel.org
3885 F: drivers/scsi/am53c974.c
3888 M: Oliver Neukum <oliver@neukum.org>
3889 M: Ali Akcaagac <aliakc@web.de>
3890 M: Jamie Lenehan <lenehan@twibble.org>
3891 L: dc395x@twibble.org
3892 W: http://twibble.org/dist/dc395x/
3893 W: http://lists.twibble.org/mailman/listinfo/dc395x/
3895 F: Documentation/scsi/dc395x.txt
3896 F: drivers/scsi/dc395x.*
3899 M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
3900 L: dccp@vger.kernel.org
3901 W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
3903 F: include/linux/dccp.h
3904 F: include/uapi/linux/dccp.h
3905 F: include/linux/tfrc.h
3908 DECnet NETWORK LAYER
3909 W: http://linux-decnet.sourceforge.net
3910 L: linux-decnet-user@lists.sourceforge.net
3912 F: Documentation/networking/decnet.txt
3915 DECSTATION PLATFORM SUPPORT
3916 M: "Maciej W. Rozycki" <macro@linux-mips.org>
3917 L: linux-mips@linux-mips.org
3918 W: http://www.linux-mips.org/wiki/DECstation
3921 F: arch/mips/include/asm/dec/
3922 F: arch/mips/include/asm/mach-dec/
3924 DEFXX FDDI NETWORK DRIVER
3925 M: "Maciej W. Rozycki" <macro@linux-mips.org>
3927 F: drivers/net/fddi/defxx.*
3930 M: Matthew Garrett <mjg59@srcf.ucam.org>
3931 M: Pali Rohár <pali.rohar@gmail.com>
3932 L: platform-driver-x86@vger.kernel.org
3934 F: drivers/platform/x86/dell-laptop.c
3936 DELL LAPTOP RBTN DRIVER
3937 M: Pali Rohár <pali.rohar@gmail.com>
3939 F: drivers/platform/x86/dell-rbtn.*
3941 DELL LAPTOP FREEFALL DRIVER
3942 M: Pali Rohár <pali.rohar@gmail.com>
3944 F: drivers/platform/x86/dell-smo8800.c
3946 DELL LAPTOP SMM DRIVER
3947 M: Pali Rohár <pali.rohar@gmail.com>
3949 F: drivers/hwmon/dell-smm-hwmon.c
3950 F: include/uapi/linux/i8k.h
3952 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
3953 M: Doug Warzecha <Douglas_Warzecha@dell.com>
3955 F: Documentation/dcdbas.txt
3956 F: drivers/firmware/dcdbas.*
3958 DELL WMI EXTRAS DRIVER
3959 M: Matthew Garrett <mjg59@srcf.ucam.org>
3960 M: Pali Rohár <pali.rohar@gmail.com>
3962 F: drivers/platform/x86/dell-wmi.c
3964 DESIGNWARE USB2 DRD IP DRIVER
3965 M: John Youn <johnyoun@synopsys.com>
3966 L: linux-usb@vger.kernel.org
3967 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3969 F: drivers/usb/dwc2/
3971 DESIGNWARE USB3 DRD IP DRIVER
3972 M: Felipe Balbi <balbi@kernel.org>
3973 L: linux-usb@vger.kernel.org
3974 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3976 F: drivers/usb/dwc3/
3978 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
3979 M: Andreas Klinger <ak@it-klinger.de>
3980 L: linux-iio@vger.kernel.org
3982 F: drivers/iio/proximity/srf*.c
3984 DEVICE COREDUMP (DEV_COREDUMP)
3985 M: Johannes Berg <johannes@sipsolutions.net>
3986 L: linux-kernel@vger.kernel.org
3988 F: drivers/base/devcoredump.c
3989 F: include/linux/devcoredump.h
3991 DEVICE FREQUENCY (DEVFREQ)
3992 M: MyungJoo Ham <myungjoo.ham@samsung.com>
3993 M: Kyungmin Park <kyungmin.park@samsung.com>
3994 R: Chanwoo Choi <cw00.choi@samsung.com>
3995 L: linux-pm@vger.kernel.org
3996 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3999 F: include/linux/devfreq.h
4000 F: Documentation/devicetree/bindings/devfreq/
4002 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
4003 M: Chanwoo Choi <cw00.choi@samsung.com>
4004 L: linux-pm@vger.kernel.org
4005 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
4007 F: drivers/devfreq/event/
4008 F: drivers/devfreq/devfreq-event.c
4009 F: include/linux/devfreq-event.h
4010 F: Documentation/devicetree/bindings/devfreq/event/
4012 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
4013 M: Chanwoo Choi <cw00.choi@samsung.com>
4014 L: linux-pm@vger.kernel.org
4015 L: linux-samsung-soc@vger.kernel.org
4016 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
4018 F: drivers/devfreq/exynos-bus.c
4019 F: Documentation/devicetree/bindings/devfreq/exynos-bus.txt
4021 DEVICE NUMBER REGISTRY
4022 M: Torben Mathiasen <device@lanana.org>
4023 W: http://lanana.org/docs/device-list/index.html
4027 M: Alasdair Kergon <agk@redhat.com>
4028 M: Mike Snitzer <snitzer@redhat.com>
4029 M: dm-devel@redhat.com
4030 L: dm-devel@redhat.com
4031 W: http://sources.redhat.com/dm
4032 Q: http://patchwork.kernel.org/project/dm-devel/list/
4033 T: git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
4034 T: quilt http://people.redhat.com/agk/patches/linux/editing/
4036 F: Documentation/device-mapper/
4038 F: drivers/md/persistent-data/
4039 F: include/linux/device-mapper.h
4040 F: include/linux/dm-*.h
4041 F: include/uapi/linux/dm-*.h
4044 M: Jiri Pirko <jiri@mellanox.com>
4045 L: netdev@vger.kernel.org
4047 F: net/core/devlink.c
4048 F: include/net/devlink.h
4049 F: include/uapi/linux/devlink.h
4051 DIALOG SEMICONDUCTOR DRIVERS
4052 M: Support Opensource <support.opensource@diasemi.com>
4053 W: http://www.dialog-semiconductor.com/products
4055 F: Documentation/hwmon/da90??
4056 F: Documentation/devicetree/bindings/mfd/da90*.txt
4057 F: Documentation/devicetree/bindings/input/da90??-onkey.txt
4058 F: Documentation/devicetree/bindings/thermal/da90??-thermal.txt
4059 F: Documentation/devicetree/bindings/regulator/da92*.txt
4060 F: Documentation/devicetree/bindings/watchdog/da92??-wdt.txt
4061 F: Documentation/devicetree/bindings/sound/da[79]*.txt
4062 F: drivers/gpio/gpio-da90??.c
4063 F: drivers/hwmon/da90??-hwmon.c
4064 F: drivers/iio/adc/da91??-*.c
4065 F: drivers/input/misc/da90??_onkey.c
4066 F: drivers/input/touchscreen/da9052_tsi.c
4067 F: drivers/leds/leds-da90??.c
4068 F: drivers/mfd/da903x.c
4069 F: drivers/mfd/da90??-*.c
4070 F: drivers/mfd/da91??-*.c
4071 F: drivers/power/supply/da9052-battery.c
4072 F: drivers/power/supply/da91??-*.c
4073 F: drivers/regulator/da903x.c
4074 F: drivers/regulator/da9???-regulator.[ch]
4075 F: drivers/thermal/da90??-thermal.c
4076 F: drivers/rtc/rtc-da90??.c
4077 F: drivers/video/backlight/da90??_bl.c
4078 F: drivers/watchdog/da90??_wdt.c
4079 F: include/linux/mfd/da903x.h
4080 F: include/linux/mfd/da9052/
4081 F: include/linux/mfd/da9055/
4082 F: include/linux/mfd/da9062/
4083 F: include/linux/mfd/da9063/
4084 F: include/linux/mfd/da9150/
4085 F: include/linux/regulator/da9211.h
4086 F: include/sound/da[79]*.h
4087 F: sound/soc/codecs/da[79]*.[ch]
4089 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
4090 M: William Breathitt Gray <vilhelm.gray@gmail.com>
4091 L: linux-gpio@vger.kernel.org
4093 F: drivers/gpio/gpio-gpio-mm.c
4095 DIGI NEO AND CLASSIC PCI PRODUCTS
4096 M: Lidza Louina <lidza.louina@gmail.com>
4097 M: Mark Hounschell <markh@compro.net>
4098 L: driverdev-devel@linuxdriverproject.org
4100 F: drivers/staging/dgnc/
4102 DIOLAN U2C-12 I2C DRIVER
4103 M: Guenter Roeck <linux@roeck-us.net>
4104 L: linux-i2c@vger.kernel.org
4106 F: drivers/i2c/busses/i2c-diolan-u2c.c
4109 M: Matthew Wilcox <mawilcox@microsoft.com>
4110 M: Ross Zwisler <ross.zwisler@linux.intel.com>
4111 L: linux-fsdevel@vger.kernel.org
4114 F: include/linux/dax.h
4115 F: include/trace/events/fs_dax.h
4117 DIRECTORY NOTIFICATION (DNOTIFY)
4118 M: Eric Paris <eparis@parisplace.org>
4120 F: Documentation/filesystems/dnotify.txt
4121 F: fs/notify/dnotify/
4122 F: include/linux/dnotify.h
4124 DISK GEOMETRY AND PARTITION HANDLING
4125 M: Andries Brouwer <aeb@cwi.nl>
4126 W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
4127 W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
4128 W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
4132 M: Jan Kara <jack@suse.com>
4134 F: Documentation/filesystems/quota.txt
4136 F: include/linux/quota*.h
4137 F: include/uapi/linux/quota*.h
4139 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
4140 M: Bernie Thompson <bernie@plugable.com>
4141 L: linux-fbdev@vger.kernel.org
4143 W: http://plugable.com/category/projects/udlfb/
4144 F: drivers/video/fbdev/udlfb.c
4145 F: include/video/udlfb.h
4146 F: Documentation/fb/udlfb.txt
4148 DISTRIBUTED LOCK MANAGER (DLM)
4149 M: Christine Caulfield <ccaulfie@redhat.com>
4150 M: David Teigland <teigland@redhat.com>
4151 L: cluster-devel@redhat.com
4152 W: http://sources.redhat.com/cluster/
4153 T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
4157 DMA BUFFER SHARING FRAMEWORK
4158 M: Sumit Semwal <sumit.semwal@linaro.org>
4160 L: linux-media@vger.kernel.org
4161 L: dri-devel@lists.freedesktop.org
4162 L: linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
4164 F: include/linux/dma-buf*
4165 F: include/linux/reservation.h
4166 F: include/linux/*fence.h
4167 F: Documentation/driver-api/dma-buf.rst
4168 T: git git://anongit.freedesktop.org/drm/drm-misc
4171 M: Sumit Semwal <sumit.semwal@linaro.org>
4172 R: Gustavo Padovan <gustavo@padovan.org>
4174 L: linux-media@vger.kernel.org
4175 L: dri-devel@lists.freedesktop.org
4176 F: drivers/dma-buf/sync_*
4177 F: drivers/dma-buf/dma-fence*
4178 F: drivers/dma-buf/sw_sync.c
4179 F: include/linux/sync_file.h
4180 F: include/uapi/linux/sync_file.h
4181 F: Documentation/sync_file.txt
4182 T: git git://anongit.freedesktop.org/drm/drm-misc
4184 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
4185 M: Vinod Koul <vinod.koul@intel.com>
4186 L: dmaengine@vger.kernel.org
4187 Q: https://patchwork.kernel.org/project/linux-dmaengine/list/
4190 F: include/linux/dmaengine.h
4191 F: Documentation/devicetree/bindings/dma/
4192 F: Documentation/dmaengine/
4193 T: git git://git.infradead.org/users/vkoul/slave-dma.git
4195 DME1737 HARDWARE MONITOR DRIVER
4196 M: Juerg Haefliger <juergh@gmail.com>
4197 L: linux-hwmon@vger.kernel.org
4199 F: Documentation/hwmon/dme1737
4200 F: drivers/hwmon/dme1737.c
4203 M: Jean Delvare <jdelvare@suse.com>
4205 T: quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
4206 F: Documentation/ABI/testing/sysfs-firmware-dmi-tables
4207 F: drivers/firmware/dmi-id.c
4208 F: drivers/firmware/dmi_scan.c
4209 F: include/linux/dmi.h
4212 M: Jonathan Corbet <corbet@lwn.net>
4213 L: linux-doc@vger.kernel.org
4216 F: scripts/kernel-doc
4217 X: Documentation/ABI/
4218 X: Documentation/devicetree/
4219 X: Documentation/acpi
4220 X: Documentation/power
4221 X: Documentation/spi
4222 X: Documentation/media
4223 T: git git://git.lwn.net/linux.git docs-next
4226 M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
4227 L: blinux-list@redhat.com
4229 F: drivers/char/dtlk.c
4230 F: include/linux/dtlk.h
4232 DPAA2 DATAPATH I/O (DPIO) DRIVER
4233 M: Roy Pledge <Roy.Pledge@nxp.com>
4234 L: linux-kernel@vger.kernel.org
4236 F: drivers/staging/fsl-mc/bus/dpio
4238 DPAA2 ETHERNET DRIVER
4239 M: Ioana Radulescu <ruxandra.radulescu@nxp.com>
4240 L: linux-kernel@vger.kernel.org
4242 F: drivers/staging/fsl-dpaa2/ethernet
4244 DPT_I2O SCSI RAID DRIVER
4245 M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
4246 L: linux-scsi@vger.kernel.org
4247 W: http://www.adaptec.com/
4249 F: drivers/scsi/dpt*
4250 F: drivers/scsi/dpt/
4253 M: Philipp Reisner <philipp.reisner@linbit.com>
4254 M: Lars Ellenberg <lars.ellenberg@linbit.com>
4255 L: drbd-dev@lists.linbit.com
4256 W: http://www.drbd.org
4257 T: git git://git.linbit.com/linux-drbd.git
4258 T: git git://git.linbit.com/drbd-8.4.git
4260 F: drivers/block/drbd/
4262 F: Documentation/blockdev/drbd/
4264 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
4265 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4266 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
4268 F: Documentation/kobject.txt
4272 F: include/linux/debugfs.h
4273 F: include/linux/kobj*
4277 M: David Airlie <airlied@linux.ie>
4278 L: dri-devel@lists.freedesktop.org
4279 T: git git://people.freedesktop.org/~airlied/linux
4280 B: https://bugs.freedesktop.org/
4281 C: irc://chat.freenode.net/dri-devel
4285 F: Documentation/devicetree/bindings/display/
4286 F: Documentation/devicetree/bindings/gpu/
4287 F: Documentation/devicetree/bindings/video/
4288 F: Documentation/gpu/
4290 F: include/uapi/drm/
4291 F: include/linux/vga*
4293 DRM DRIVERS AND MISC GPU PATCHES
4294 M: Daniel Vetter <daniel.vetter@intel.com>
4295 M: Jani Nikula <jani.nikula@linux.intel.com>
4296 M: Sean Paul <seanpaul@chromium.org>
4297 W: https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
4299 T: git git://anongit.freedesktop.org/drm/drm-misc
4300 F: Documentation/gpu/
4302 F: drivers/gpu/drm/*
4304 F: include/uapi/drm/drm*
4305 F: include/linux/vga*
4307 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
4308 M: Dave Airlie <airlied@redhat.com>
4310 F: drivers/gpu/drm/ast/
4312 DRM DRIVERS FOR BRIDGE CHIPS
4313 M: Archit Taneja <architt@codeaurora.org>
4315 T: git git://anongit.freedesktop.org/drm/drm-misc
4316 F: drivers/gpu/drm/bridge/
4318 DRM DRIVER FOR BOCHS VIRTUAL GPU
4319 M: Gerd Hoffmann <kraxel@redhat.com>
4320 L: virtualization@lists.linux-foundation.org
4321 T: git git://anongit.freedesktop.org/drm/drm-misc
4323 F: drivers/gpu/drm/bochs/
4325 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
4326 M: Dave Airlie <airlied@redhat.com>
4327 M: Gerd Hoffmann <kraxel@redhat.com>
4328 L: virtualization@lists.linux-foundation.org
4329 T: git git://anongit.freedesktop.org/drm/drm-misc
4331 W: https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
4332 F: drivers/gpu/drm/cirrus/
4334 RADEON and AMDGPU DRM DRIVERS
4335 M: Alex Deucher <alexander.deucher@amd.com>
4336 M: Christian König <christian.koenig@amd.com>
4337 L: amd-gfx@lists.freedesktop.org
4338 T: git git://people.freedesktop.org/~agd5f/linux
4340 F: drivers/gpu/drm/radeon/
4341 F: include/uapi/drm/radeon_drm.h
4342 F: drivers/gpu/drm/amd/
4343 F: include/uapi/drm/amdgpu_drm.h
4346 M: Thierry Reding <thierry.reding@gmail.com>
4347 L: dri-devel@lists.freedesktop.org
4348 T: git git://anongit.freedesktop.org/tegra/linux.git
4350 F: drivers/gpu/drm/drm_panel.c
4351 F: drivers/gpu/drm/panel/
4352 F: include/drm/drm_panel.h
4353 F: Documentation/devicetree/bindings/display/panel/
4355 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
4356 M: Daniel Vetter <daniel.vetter@intel.com>
4357 M: Jani Nikula <jani.nikula@linux.intel.com>
4358 L: intel-gfx@lists.freedesktop.org
4359 W: https://01.org/linuxgraphics/
4360 B: https://01.org/linuxgraphics/documentation/how-report-bugs
4361 C: irc://chat.freenode.net/intel-gfx
4362 Q: http://patchwork.freedesktop.org/project/intel-gfx/
4363 T: git git://anongit.freedesktop.org/drm-intel
4365 F: drivers/gpu/drm/i915/
4366 F: include/drm/i915*
4367 F: include/uapi/drm/i915_drm.h
4368 F: Documentation/gpu/i915.rst
4370 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
4371 M: Zhenyu Wang <zhenyuw@linux.intel.com>
4372 M: Zhi Wang <zhi.a.wang@intel.com>
4373 L: intel-gvt-dev@lists.freedesktop.org
4374 L: intel-gfx@lists.freedesktop.org
4375 W: https://01.org/igvt-g
4376 T: git https://github.com/01org/gvt-linux.git
4378 F: drivers/gpu/drm/i915/gvt/
4380 DRM DRIVERS FOR ATMEL HLCDC
4381 M: Boris Brezillon <boris.brezillon@free-electrons.com>
4382 L: dri-devel@lists.freedesktop.org
4384 F: drivers/gpu/drm/atmel-hlcdc/
4385 F: Documentation/devicetree/bindings/drm/atmel/
4386 T: git git://anongit.freedesktop.org/drm/drm-misc
4388 DRM DRIVERS FOR ALLWINNER A10
4389 M: Maxime Ripard <maxime.ripard@free-electrons.com>
4390 L: dri-devel@lists.freedesktop.org
4392 F: drivers/gpu/drm/sun4i/
4393 F: Documentation/devicetree/bindings/display/sunxi/sun4i-drm.txt
4394 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mripard/linux.git
4396 DRM DRIVERS FOR AMLOGIC SOCS
4397 M: Neil Armstrong <narmstrong@baylibre.com>
4398 L: dri-devel@lists.freedesktop.org
4399 L: linux-amlogic@lists.infradead.org
4400 W: http://linux-meson.com/
4402 F: drivers/gpu/drm/meson/
4403 F: Documentation/devicetree/bindings/display/amlogic,meson-vpu.txt
4404 F: Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.txt
4405 F: Documentation/gpu/meson.rst
4406 T: git git://anongit.freedesktop.org/drm/drm-misc
4408 DRM DRIVERS FOR EXYNOS
4409 M: Inki Dae <inki.dae@samsung.com>
4410 M: Joonyoung Shim <jy0922.shim@samsung.com>
4411 M: Seung-Woo Kim <sw0312.kim@samsung.com>
4412 M: Kyungmin Park <kyungmin.park@samsung.com>
4413 L: dri-devel@lists.freedesktop.org
4414 T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
4416 F: drivers/gpu/drm/exynos/
4417 F: include/uapi/drm/exynos_drm.h
4418 F: Documentation/devicetree/bindings/display/exynos/
4420 DRM DRIVERS FOR FREESCALE DCU
4421 M: Stefan Agner <stefan@agner.ch>
4422 M: Alison Wang <alison.wang@freescale.com>
4423 L: dri-devel@lists.freedesktop.org
4425 F: drivers/gpu/drm/fsl-dcu/
4426 F: Documentation/devicetree/bindings/display/fsl,dcu.txt
4427 F: Documentation/devicetree/bindings/display/fsl,tcon.txt
4428 F: Documentation/devicetree/bindings/display/panel/nec,nl4827hc19_05b.txt
4430 DRM DRIVERS FOR FREESCALE IMX
4431 M: Philipp Zabel <p.zabel@pengutronix.de>
4432 L: dri-devel@lists.freedesktop.org
4434 F: drivers/gpu/drm/imx/
4435 F: drivers/gpu/ipu-v3/
4436 F: Documentation/devicetree/bindings/display/imx/
4438 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
4439 M: Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
4440 L: dri-devel@lists.freedesktop.org
4441 T: git git://github.com/patjak/drm-gma500
4443 F: drivers/gpu/drm/gma500/
4445 DRM DRIVERS FOR HISILICON
4446 M: Xinliang Liu <z.liuxinliang@hisilicon.com>
4447 M: Rongrong Zou <zourongrong@gmail.com>
4448 R: Xinwei Kong <kong.kongxinwei@hisilicon.com>
4449 R: Chen Feng <puck.chen@hisilicon.com>
4450 L: dri-devel@lists.freedesktop.org
4451 T: git git://github.com/xin3liang/linux.git
4453 F: drivers/gpu/drm/hisilicon/
4454 F: Documentation/devicetree/bindings/display/hisilicon/
4456 DRM DRIVER FOR INTEL I810 VIDEO CARDS
4457 S: Orphan / Obsolete
4458 F: drivers/gpu/drm/i810/
4459 F: include/uapi/drm/i810_drm.h
4461 DRM DRIVERS FOR MEDIATEK
4462 M: CK Hu <ck.hu@mediatek.com>
4463 M: Philipp Zabel <p.zabel@pengutronix.de>
4464 L: dri-devel@lists.freedesktop.org
4466 F: drivers/gpu/drm/mediatek/
4467 F: Documentation/devicetree/bindings/display/mediatek/
4469 DRM DRIVER FOR MI0283QT
4470 M: Noralf Trønnes <noralf@tronnes.org>
4472 F: drivers/gpu/drm/tinydrm/mi0283qt.c
4473 F: Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
4475 DRM DRIVER FOR MSM ADRENO GPU
4476 M: Rob Clark <robdclark@gmail.com>
4477 L: linux-arm-msm@vger.kernel.org
4478 L: dri-devel@lists.freedesktop.org
4479 L: freedreno@lists.freedesktop.org
4480 T: git git://people.freedesktop.org/~robclark/linux
4482 F: drivers/gpu/drm/msm/
4483 F: include/uapi/drm/msm_drm.h
4484 F: Documentation/devicetree/bindings/display/msm/
4486 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
4487 M: Ben Skeggs <bskeggs@redhat.com>
4488 L: dri-devel@lists.freedesktop.org
4489 L: nouveau@lists.freedesktop.org
4490 T: git git://github.com/skeggsb/linux
4492 F: drivers/gpu/drm/nouveau/
4493 F: include/uapi/drm/nouveau_drm.h
4495 DRM DRIVERS FOR NVIDIA TEGRA
4496 M: Thierry Reding <thierry.reding@gmail.com>
4497 L: dri-devel@lists.freedesktop.org
4498 L: linux-tegra@vger.kernel.org
4499 T: git git://anongit.freedesktop.org/tegra/linux.git
4501 F: drivers/gpu/drm/tegra/
4502 F: drivers/gpu/host1x/
4503 F: include/linux/host1x.h
4504 F: include/uapi/drm/tegra_drm.h
4505 F: Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
4507 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
4508 S: Orphan / Obsolete
4509 F: drivers/gpu/drm/mga/
4510 F: include/uapi/drm/mga_drm.h
4512 DRM DRIVER FOR MGA G200 SERVER GRAPHICS CHIPS
4513 M: Dave Airlie <airlied@redhat.com>
4515 F: drivers/gpu/drm/mgag200/
4517 DRM DRIVER FOR RAGE 128 VIDEO CARDS
4518 S: Orphan / Obsolete
4519 F: drivers/gpu/drm/r128/
4520 F: include/uapi/drm/r128_drm.h
4522 DRM DRIVERS FOR RENESAS
4523 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
4524 L: dri-devel@lists.freedesktop.org
4525 L: linux-renesas-soc@vger.kernel.org
4526 T: git git://linuxtv.org/pinchartl/fbdev
4528 F: drivers/gpu/drm/rcar-du/
4529 F: drivers/gpu/drm/shmobile/
4530 F: include/linux/platform_data/shmob_drm.h
4531 F: Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt
4532 F: Documentation/devicetree/bindings/display/renesas,du.txt
4534 DRM DRIVER FOR QXL VIRTUAL GPU
4535 M: Dave Airlie <airlied@redhat.com>
4536 M: Gerd Hoffmann <kraxel@redhat.com>
4537 L: virtualization@lists.linux-foundation.org
4538 T: git git://anongit.freedesktop.org/drm/drm-misc
4540 F: drivers/gpu/drm/qxl/
4541 F: include/uapi/drm/qxl_drm.h
4543 DRM DRIVERS FOR ROCKCHIP
4544 M: Mark Yao <mark.yao@rock-chips.com>
4545 L: dri-devel@lists.freedesktop.org
4547 F: drivers/gpu/drm/rockchip/
4548 F: Documentation/devicetree/bindings/display/rockchip/
4549 T: git git://anongit.freedesktop.org/drm/drm-misc
4551 DRM DRIVER FOR SAVAGE VIDEO CARDS
4552 S: Orphan / Obsolete
4553 F: drivers/gpu/drm/savage/
4554 F: include/uapi/drm/savage_drm.h
4556 DRM DRIVER FOR SIS VIDEO CARDS
4557 S: Orphan / Obsolete
4558 F: drivers/gpu/drm/sis/
4559 F: include/uapi/drm/sis_drm.h
4562 M: Benjamin Gaignard <benjamin.gaignard@linaro.org>
4563 M: Vincent Abriou <vincent.abriou@st.com>
4564 L: dri-devel@lists.freedesktop.org
4565 T: git git://anongit.freedesktop.org/drm/drm-misc
4567 F: drivers/gpu/drm/sti
4568 F: Documentation/devicetree/bindings/display/st,stih4xx.txt
4570 DRM DRIVER FOR TDFX VIDEO CARDS
4571 S: Orphan / Obsolete
4572 F: drivers/gpu/drm/tdfx/
4574 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
4575 M: Dave Airlie <airlied@redhat.com>
4577 F: drivers/gpu/drm/udl/
4579 DRM DRIVERS FOR VIVANTE GPU IP
4580 M: Lucas Stach <l.stach@pengutronix.de>
4581 R: Russell King <linux+etnaviv@armlinux.org.uk>
4582 R: Christian Gmeiner <christian.gmeiner@gmail.com>
4583 L: etnaviv@lists.freedesktop.org
4584 L: dri-devel@lists.freedesktop.org
4586 F: drivers/gpu/drm/etnaviv/
4587 F: include/uapi/drm/etnaviv_drm.h
4588 F: Documentation/devicetree/bindings/display/etnaviv/
4590 DRM DRIVER FOR VMWARE VIRTUAL GPU
4591 M: "VMware Graphics" <linux-graphics-maintainer@vmware.com>
4592 M: Sinclair Yeh <syeh@vmware.com>
4593 M: Thomas Hellstrom <thellstrom@vmware.com>
4594 L: dri-devel@lists.freedesktop.org
4595 T: git git://people.freedesktop.org/~syeh/repos_linux
4596 T: git git://people.freedesktop.org/~thomash/linux
4598 F: drivers/gpu/drm/vmwgfx/
4599 F: include/uapi/drm/vmwgfx_drm.h
4602 M: Eric Anholt <eric@anholt.net>
4603 T: git git://github.com/anholt/linux
4605 F: drivers/gpu/drm/vc4/
4606 F: include/uapi/drm/vc4_drm.h
4607 F: Documentation/devicetree/bindings/display/brcm,bcm-vc4.txt
4608 T: git git://anongit.freedesktop.org/drm/drm-misc
4610 DRM DRIVERS FOR TI OMAP
4611 M: Tomi Valkeinen <tomi.valkeinen@ti.com>
4612 L: dri-devel@lists.freedesktop.org
4614 F: drivers/gpu/drm/omapdrm/
4615 F: Documentation/devicetree/bindings/display/ti/
4617 DRM DRIVERS FOR TI LCDC
4618 M: Jyri Sarha <jsarha@ti.com>
4619 R: Tomi Valkeinen <tomi.valkeinen@ti.com>
4620 L: dri-devel@lists.freedesktop.org
4622 F: drivers/gpu/drm/tilcdc/
4623 F: Documentation/devicetree/bindings/display/tilcdc/
4625 DRM DRIVERS FOR ZTE ZX
4626 M: Shawn Guo <shawnguo@kernel.org>
4627 L: dri-devel@lists.freedesktop.org
4629 F: drivers/gpu/drm/zte/
4630 F: Documentation/devicetree/bindings/display/zte,vou.txt
4631 T: git git://anongit.freedesktop.org/drm/drm-misc
4633 DSBR100 USB FM RADIO DRIVER
4634 M: Alexey Klimov <klimov.linux@gmail.com>
4635 L: linux-media@vger.kernel.org
4636 T: git git://linuxtv.org/media_tree.git
4638 F: drivers/media/radio/dsbr100.c
4641 M: Francois Romieu <romieu@fr.zoreil.com>
4642 L: netdev@vger.kernel.org
4644 F: drivers/net/wan/dscc4.c
4647 M: Hans Verkuil <hverkuil@xs4all.nl>
4648 L: linux-media@vger.kernel.org
4649 T: git git://linuxtv.org/media_tree.git
4650 W: https://linuxtv.org
4652 F: drivers/media/pci/dt3155/
4654 DVB_USB_AF9015 MEDIA DRIVER
4655 M: Antti Palosaari <crope@iki.fi>
4656 L: linux-media@vger.kernel.org
4657 W: https://linuxtv.org
4658 W: http://palosaari.fi/linux/
4659 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4660 T: git git://linuxtv.org/anttip/media_tree.git
4662 F: drivers/media/usb/dvb-usb-v2/af9015*
4664 DVB_USB_AF9035 MEDIA DRIVER
4665 M: Antti Palosaari <crope@iki.fi>
4666 L: linux-media@vger.kernel.org
4667 W: https://linuxtv.org
4668 W: http://palosaari.fi/linux/
4669 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4670 T: git git://linuxtv.org/anttip/media_tree.git
4672 F: drivers/media/usb/dvb-usb-v2/af9035*
4674 DVB_USB_ANYSEE MEDIA DRIVER
4675 M: Antti Palosaari <crope@iki.fi>
4676 L: linux-media@vger.kernel.org
4677 W: https://linuxtv.org
4678 W: http://palosaari.fi/linux/
4679 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4680 T: git git://linuxtv.org/anttip/media_tree.git
4682 F: drivers/media/usb/dvb-usb-v2/anysee*
4684 DVB_USB_AU6610 MEDIA DRIVER
4685 M: Antti Palosaari <crope@iki.fi>
4686 L: linux-media@vger.kernel.org
4687 W: https://linuxtv.org
4688 W: http://palosaari.fi/linux/
4689 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4690 T: git git://linuxtv.org/anttip/media_tree.git
4692 F: drivers/media/usb/dvb-usb-v2/au6610*
4694 DVB_USB_CE6230 MEDIA DRIVER
4695 M: Antti Palosaari <crope@iki.fi>
4696 L: linux-media@vger.kernel.org
4697 W: https://linuxtv.org
4698 W: http://palosaari.fi/linux/
4699 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4700 T: git git://linuxtv.org/anttip/media_tree.git
4702 F: drivers/media/usb/dvb-usb-v2/ce6230*
4704 DVB_USB_CXUSB MEDIA DRIVER
4705 M: Michael Krufky <mkrufky@linuxtv.org>
4706 L: linux-media@vger.kernel.org
4707 W: https://linuxtv.org
4708 W: http://github.com/mkrufky
4709 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4710 T: git git://linuxtv.org/media_tree.git
4712 F: drivers/media/usb/dvb-usb/cxusb*
4714 DVB_USB_EC168 MEDIA DRIVER
4715 M: Antti Palosaari <crope@iki.fi>
4716 L: linux-media@vger.kernel.org
4717 W: https://linuxtv.org
4718 W: http://palosaari.fi/linux/
4719 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4720 T: git git://linuxtv.org/anttip/media_tree.git
4722 F: drivers/media/usb/dvb-usb-v2/ec168*
4724 DVB_USB_GL861 MEDIA DRIVER
4725 M: Antti Palosaari <crope@iki.fi>
4726 L: linux-media@vger.kernel.org
4727 W: https://linuxtv.org
4728 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4729 T: git git://linuxtv.org/anttip/media_tree.git
4731 F: drivers/media/usb/dvb-usb-v2/gl861*
4733 DVB_USB_MXL111SF MEDIA DRIVER
4734 M: Michael Krufky <mkrufky@linuxtv.org>
4735 L: linux-media@vger.kernel.org
4736 W: https://linuxtv.org
4737 W: http://github.com/mkrufky
4738 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4739 T: git git://linuxtv.org/mkrufky/mxl111sf.git
4741 F: drivers/media/usb/dvb-usb-v2/mxl111sf*
4743 DVB_USB_RTL28XXU MEDIA DRIVER
4744 M: Antti Palosaari <crope@iki.fi>
4745 L: linux-media@vger.kernel.org
4746 W: https://linuxtv.org
4747 W: http://palosaari.fi/linux/
4748 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4749 T: git git://linuxtv.org/anttip/media_tree.git
4751 F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
4753 DVB_USB_V2 MEDIA DRIVER
4754 M: Antti Palosaari <crope@iki.fi>
4755 L: linux-media@vger.kernel.org
4756 W: https://linuxtv.org
4757 W: http://palosaari.fi/linux/
4758 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4759 T: git git://linuxtv.org/anttip/media_tree.git
4761 F: drivers/media/usb/dvb-usb-v2/dvb_usb*
4762 F: drivers/media/usb/dvb-usb-v2/usb_urb.c
4764 DONGWOON DW9714 LENS VOICE COIL DRIVER
4765 M: Sakari Ailus <sakari.ailus@linux.intel.com>
4766 L: linux-media@vger.kernel.org
4767 T: git git://linuxtv.org/media_tree.git
4769 F: drivers/media/i2c/dw9714.c
4772 M: Jason Baron <jbaron@akamai.com>
4774 F: lib/dynamic_debug.c
4775 F: include/linux/dynamic_debug.h
4777 DZ DECSTATION DZ11 SERIAL DRIVER
4778 M: "Maciej W. Rozycki" <macro@linux-mips.org>
4780 F: drivers/tty/serial/dz.*
4782 E3X0 POWER BUTTON DRIVER
4783 M: Moritz Fischer <moritz.fischer@ettus.com>
4784 L: usrp-users@lists.ettus.com
4785 W: http://www.ettus.com
4787 F: drivers/input/misc/e3x0-button.c
4788 F: Documentation/devicetree/bindings/input/e3x0-button.txt
4791 M: Antti Palosaari <crope@iki.fi>
4792 L: linux-media@vger.kernel.org
4793 W: https://linuxtv.org
4794 W: http://palosaari.fi/linux/
4795 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4796 T: git git://linuxtv.org/anttip/media_tree.git
4798 F: drivers/media/tuners/e4000*
4800 EATA ISA/EISA/PCI SCSI DRIVER
4801 M: Dario Ballabio <ballabio_dario@emc.com>
4802 L: linux-scsi@vger.kernel.org
4804 F: drivers/scsi/eata.c
4807 M: Antti Palosaari <crope@iki.fi>
4808 L: linux-media@vger.kernel.org
4809 W: https://linuxtv.org
4810 W: http://palosaari.fi/linux/
4811 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4812 T: git git://linuxtv.org/anttip/media_tree.git
4814 F: drivers/media/dvb-frontends/ec100*
4817 M: Tyler Hicks <tyhicks@canonical.com>
4818 L: ecryptfs@vger.kernel.org
4819 W: http://ecryptfs.org
4820 W: https://launchpad.net/ecryptfs
4821 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
4823 F: Documentation/filesystems/ecryptfs.txt
4827 M: Borislav Petkov <bp@alien8.de>
4828 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
4829 M: Mauro Carvalho Chehab <mchehab@kernel.org>
4830 L: linux-edac@vger.kernel.org
4831 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git for-next
4832 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-edac.git linux_next
4834 F: Documentation/admin-guide/ras.rst
4835 F: Documentation/driver-api/edac.rst
4837 F: include/linux/edac.h
4840 M: Borislav Petkov <bp@alien8.de>
4841 L: linux-edac@vger.kernel.org
4843 F: drivers/edac/amd64_edac*
4846 M: Robert Richter <rric@kernel.org>
4847 L: linux-edac@vger.kernel.org
4849 F: drivers/edac/highbank*
4852 M: Ralf Baechle <ralf@linux-mips.org>
4853 M: David Daney <david.daney@cavium.com>
4854 L: linux-edac@vger.kernel.org
4855 L: linux-mips@linux-mips.org
4857 F: drivers/edac/octeon_edac*
4858 F: drivers/edac/thunderx_edac*
4861 M: Mark Gross <mark.gross@intel.com>
4862 L: linux-edac@vger.kernel.org
4864 F: drivers/edac/e752x_edac.c
4867 L: linux-edac@vger.kernel.org
4869 F: drivers/edac/e7xxx_edac.c
4872 M: York Sun <york.sun@nxp.com>
4873 L: linux-edac@vger.kernel.org
4875 F: drivers/edac/fsl_ddr_edac.*
4878 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
4879 M: Mauro Carvalho Chehab <mchehab@kernel.org>
4880 L: linux-edac@vger.kernel.org
4882 F: drivers/edac/ghes_edac.c
4885 M: Tim Small <tim@buttersideup.com>
4886 L: linux-edac@vger.kernel.org
4888 F: drivers/edac/i82443bxgx_edac.c
4891 L: linux-edac@vger.kernel.org
4893 F: drivers/edac/i3000_edac.c
4896 L: linux-edac@vger.kernel.org
4898 F: drivers/edac/i5000_edac.c
4901 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
4902 M: Mauro Carvalho Chehab <mchehab@kernel.org>
4903 L: linux-edac@vger.kernel.org
4905 F: drivers/edac/i5400_edac.c
4908 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
4909 M: Mauro Carvalho Chehab <mchehab@kernel.org>
4910 L: linux-edac@vger.kernel.org
4912 F: drivers/edac/i7300_edac.c
4915 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
4916 M: Mauro Carvalho Chehab <mchehab@kernel.org>
4917 L: linux-edac@vger.kernel.org
4919 F: drivers/edac/i7core_edac.c
4922 M: Ranganathan Desikan <ravi@jetztechnologies.com>
4923 M: "Arvind R." <arvino55@gmail.com>
4924 L: linux-edac@vger.kernel.org
4926 F: drivers/edac/i82975x_edac.c
4929 M: Jason Baron <jbaron@akamai.com>
4930 L: linux-edac@vger.kernel.org
4932 F: drivers/edac/ie31200_edac.c
4935 M: Johannes Thumshirn <morbidrsa@gmail.com>
4936 L: linux-edac@vger.kernel.org
4938 F: drivers/edac/mpc85xx_edac.[ch]
4941 M: Tony Luck <tony.luck@intel.com>
4942 L: linux-edac@vger.kernel.org
4944 F: drivers/edac/pnd2_edac.[ch]
4947 M: Egor Martovetsky <egor@pasemi.com>
4948 L: linux-edac@vger.kernel.org
4950 F: drivers/edac/pasemi_edac.c
4953 M: Tim Small <tim@buttersideup.com>
4954 L: linux-edac@vger.kernel.org
4956 F: drivers/edac/r82600_edac.c
4959 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
4960 M: Mauro Carvalho Chehab <mchehab@kernel.org>
4961 L: linux-edac@vger.kernel.org
4963 F: drivers/edac/sb_edac.c
4966 M: Tony Luck <tony.luck@intel.com>
4967 L: linux-edac@vger.kernel.org
4969 F: drivers/edac/skx_edac.c
4972 APPLIED MICRO (APM) X-GENE SOC EDAC
4973 M: Loc Ho <lho@apm.com>
4975 F: drivers/edac/xgene_edac.c
4976 F: Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
4978 EDIROL UA-101/UA-1000 DRIVER
4979 M: Clemens Ladisch <clemens@ladisch.de>
4980 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
4981 T: git git://git.alsa-project.org/alsa-kernel.git
4983 F: sound/usb/misc/ua101.c
4985 EXTENSIBLE FIRMWARE INTERFACE (EFI)
4986 M: Matt Fleming <matt@codeblueprint.co.uk>
4987 M: Ard Biesheuvel <ard.biesheuvel@linaro.org>
4988 L: linux-efi@vger.kernel.org
4989 T: git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
4991 F: Documentation/efi-stub.txt
4992 F: arch/*/kernel/efi.c
4993 F: arch/x86/boot/compressed/eboot.[ch]
4994 F: arch/*/include/asm/efi.h
4995 F: arch/x86/platform/efi/
4996 F: drivers/firmware/efi/
4997 F: include/linux/efi*.h
4998 F: arch/arm/boot/compressed/efi-header.S
4999 F: arch/arm64/kernel/efi-entry.S
5001 EFI VARIABLE FILESYSTEM
5002 M: Matthew Garrett <matthew.garrett@nebula.com>
5003 M: Jeremy Kerr <jk@ozlabs.org>
5004 M: Matt Fleming <matt@codeblueprint.co.uk>
5005 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
5006 L: linux-efi@vger.kernel.org
5010 EFIFB FRAMEBUFFER DRIVER
5011 L: linux-fbdev@vger.kernel.org
5012 M: Peter Jones <pjones@redhat.com>
5014 F: drivers/video/fbdev/efifb.c
5017 L: linux-efi@vger.kernel.org
5018 M: Ivan Hu <ivan.hu@canonical.com>
5019 M: Matt Fleming <matt@codeblueprint.co.uk>
5021 F: drivers/firmware/efi/test/
5024 W: http://aeschi.ch.eu.org/efs/
5028 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
5029 M: Douglas Miller <dougmill@linux.vnet.ibm.com>
5030 L: netdev@vger.kernel.org
5032 F: drivers/net/ethernet/ibm/ehea/
5034 EM28XX VIDEO4LINUX DRIVER
5035 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
5036 M: Mauro Carvalho Chehab <mchehab@kernel.org>
5037 L: linux-media@vger.kernel.org
5038 W: https://linuxtv.org
5039 T: git git://linuxtv.org/media_tree.git
5041 F: drivers/media/usb/em28xx/
5042 F: Documentation/media/v4l-drivers/em28xx*
5045 M: Paul Gortmaker <paul.gortmaker@windriver.com>
5046 M: Matt Mackall <mpm@selenic.com>
5047 M: David Woodhouse <dwmw2@infradead.org>
5048 L: linux-embedded@vger.kernel.org
5051 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
5052 M: James Smart <james.smart@broadcom.com>
5053 M: Dick Kennedy <dick.kennedy@broadcom.com>
5054 L: linux-scsi@vger.kernel.org
5055 W: http://www.broadcom.com
5057 F: drivers/scsi/lpfc/
5059 ENE CB710 FLASH CARD READER DRIVER
5060 M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
5062 F: drivers/misc/cb710/
5063 F: drivers/mmc/host/cb710-mmc.*
5064 F: include/linux/cb710.h
5066 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
5067 M: Maxim Levitsky <maximlevitsky@gmail.com>
5069 F: drivers/media/rc/ene_ir.*
5071 EPSON S1D13XXX FRAMEBUFFER DRIVER
5072 M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
5074 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
5075 F: drivers/video/fbdev/s1d13xxxfb.c
5076 F: include/video/s1d13xxxfb.h
5078 ERRSEQ ERROR TRACKING INFRASTRUCTURE
5079 M: Jeff Layton <jlayton@poochiereds.net>
5082 F: include/linux/errseq.h
5084 ET131X NETWORK DRIVER
5085 M: Mark Einon <mark.einon@gmail.com>
5087 F: drivers/net/ethernet/agere/
5090 M: Stephen Hemminger <stephen@networkplumber.org>
5091 L: bridge@lists.linux-foundation.org (moderated for non-subscribers)
5092 L: netdev@vger.kernel.org
5093 W: http://www.linuxfoundation.org/en/Net:Bridge
5095 F: include/linux/netfilter_bridge/
5098 ETHERNET PHY LIBRARY
5099 M: Andrew Lunn <andrew@lunn.ch>
5100 M: Florian Fainelli <f.fainelli@gmail.com>
5101 L: netdev@vger.kernel.org
5103 F: include/linux/phy.h
5104 F: include/linux/phy_fixed.h
5106 F: Documentation/networking/phy.txt
5107 F: drivers/of/of_mdio.c
5108 F: drivers/of/of_net.c
5111 M: Jan Kara <jack@suse.com>
5112 L: linux-ext4@vger.kernel.org
5114 F: Documentation/filesystems/ext2.txt
5116 F: include/linux/ext2*
5119 M: "Theodore Ts'o" <tytso@mit.edu>
5120 M: Andreas Dilger <adilger.kernel@dilger.ca>
5121 L: linux-ext4@vger.kernel.org
5122 W: http://ext4.wiki.kernel.org
5123 Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
5124 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
5126 F: Documentation/filesystems/ext4.txt
5129 Extended Verification Module (EVM)
5130 M: Mimi Zohar <zohar@linux.vnet.ibm.com>
5131 L: linux-ima-devel@lists.sourceforge.net
5132 L: linux-security-module@vger.kernel.org
5134 F: security/integrity/evm/
5136 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
5137 M: MyungJoo Ham <myungjoo.ham@samsung.com>
5138 M: Chanwoo Choi <cw00.choi@samsung.com>
5139 L: linux-kernel@vger.kernel.org
5140 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
5143 F: include/linux/extcon/
5144 F: include/linux/extcon.h
5145 F: Documentation/extcon/
5146 F: Documentation/devicetree/bindings/extcon/
5149 M: Jingoo Han <jingoohan1@gmail.com>
5150 L: dri-devel@lists.freedesktop.org
5152 F: drivers/gpu/drm/exynos/exynos_dp*
5154 EXYNOS SYSMMU (IOMMU) driver
5155 M: Marek Szyprowski <m.szyprowski@samsung.com>
5156 L: iommu@lists.linux-foundation.org
5158 F: drivers/iommu/exynos-iommu.c
5160 EZchip NPS platform support
5161 M: Noam Camus <noamc@ezchip.com>
5163 F: arch/arc/plat-eznps
5164 F: arch/arc/boot/dts/eznps.dts
5166 F71805F HARDWARE MONITORING DRIVER
5167 M: Jean Delvare <jdelvare@suse.com>
5168 L: linux-hwmon@vger.kernel.org
5170 F: Documentation/hwmon/f71805f
5171 F: drivers/hwmon/f71805f.c
5174 M: Michael Buesch <m@bues.ch>
5175 L: linux-media@vger.kernel.org
5177 F: drivers/media/tuners/fc0011.h
5178 F: drivers/media/tuners/fc0011.c
5181 M: Antti Palosaari <crope@iki.fi>
5182 L: linux-media@vger.kernel.org
5183 W: https://linuxtv.org
5184 W: http://palosaari.fi/linux/
5185 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5186 T: git git://linuxtv.org/anttip/media_tree.git
5188 F: drivers/media/tuners/fc2580*
5191 M: Eric Paris <eparis@redhat.com>
5193 F: fs/notify/fanotify/
5194 F: include/linux/fanotify.h
5195 F: include/uapi/linux/fanotify.h
5197 FARSYNC SYNCHRONOUS DRIVER
5198 M: Kevin Curtis <kevin.curtis@farsite.co.uk>
5199 W: http://www.farsite.co.uk/
5201 F: drivers/net/wan/farsync.*
5203 FAULT INJECTION SUPPORT
5204 M: Akinobu Mita <akinobu.mita@gmail.com>
5206 F: Documentation/fault-injection/
5207 F: lib/fault-inject.c
5209 FBTFT Framebuffer drivers
5210 M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
5212 F: drivers/staging/fbtft/
5214 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
5215 M: Johannes Thumshirn <jth@kernel.org>
5216 L: fcoe-devel@open-fcoe.org
5217 W: www.Open-FCoE.org
5219 F: drivers/scsi/libfc/
5220 F: drivers/scsi/fcoe/
5222 F: include/scsi/libfc.h
5223 F: include/scsi/libfcoe.h
5224 F: include/uapi/scsi/fc/
5226 FILE LOCKING (flock() and fcntl()/lockf())
5227 M: Jeff Layton <jlayton@poochiereds.net>
5228 M: "J. Bruce Fields" <bfields@fieldses.org>
5229 L: linux-fsdevel@vger.kernel.org
5231 F: include/linux/fcntl.h
5232 F: include/linux/fs.h
5233 F: include/uapi/linux/fcntl.h
5234 F: include/uapi/linux/fs.h
5238 FILESYSTEMS (VFS and infrastructure)
5239 M: Alexander Viro <viro@zeniv.linux.org.uk>
5240 L: linux-fsdevel@vger.kernel.org
5244 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
5245 M: Riku Voipio <riku.voipio@iki.fi>
5246 L: linux-hwmon@vger.kernel.org
5248 F: drivers/hwmon/f75375s.c
5249 F: include/linux/f75375s.h
5251 FIREWIRE AUDIO DRIVERS
5252 M: Clemens Ladisch <clemens@ladisch.de>
5253 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5254 T: git git://git.alsa-project.org/alsa-kernel.git
5258 FIREWIRE MEDIA DRIVERS (firedtv)
5259 M: Stefan Richter <stefanr@s5r6.in-berlin.de>
5260 L: linux-media@vger.kernel.org
5261 L: linux1394-devel@lists.sourceforge.net
5262 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
5264 F: drivers/media/firewire/
5266 FIREWIRE SBP-2 TARGET
5267 M: Chris Boot <bootc@bootc.net>
5268 L: linux-scsi@vger.kernel.org
5269 L: target-devel@vger.kernel.org
5270 L: linux1394-devel@lists.sourceforge.net
5271 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
5273 F: drivers/target/sbp/
5276 M: Stefan Richter <stefanr@s5r6.in-berlin.de>
5277 L: linux1394-devel@lists.sourceforge.net
5278 W: http://ieee1394.wiki.kernel.org/
5279 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
5281 F: drivers/firewire/
5282 F: include/linux/firewire.h
5283 F: include/uapi/linux/firewire*.h
5286 FIRMWARE LOADER (request_firmware)
5287 M: Luis R. Rodriguez <mcgrof@kernel.org>
5288 L: linux-kernel@vger.kernel.org
5290 F: Documentation/firmware_class/
5291 F: drivers/base/firmware*.c
5292 F: include/linux/firmware.h
5294 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
5295 M: Joshua Morris <josh.h.morris@us.ibm.com>
5296 M: Philip Kelleher <pjk1939@linux.vnet.ibm.com>
5298 F: drivers/block/rsxx/
5301 M: Jiri Kosina <jikos@kernel.org>
5302 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
5304 F: drivers/block/floppy.c
5307 M: Alessandro Rubini <rubini@gnudd.com>
5308 W: http://www.ohwr.org/projects/fmc-bus
5311 F: include/linux/fmc*.h
5312 F: include/linux/ipmi-fru.h
5315 FPGA MANAGER FRAMEWORK
5316 M: Alan Tull <atull@kernel.org>
5317 R: Moritz Fischer <moritz.fischer@ettus.com>
5318 L: linux-fpga@vger.kernel.org
5320 T: git git://git.kernel.org/pub/scm/linux/kernel/git/atull/linux-fpga.git
5321 F: Documentation/fpga/
5322 F: Documentation/devicetree/bindings/fpga/
5324 F: include/linux/fpga/
5325 W: http://www.rocketboards.org
5328 M: Bill Metzenthen <billm@melbpc.org.au>
5329 W: http://floatingpoint.sourceforge.net/emulator/index.html
5331 F: arch/x86/math-emu/
5333 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
5334 L: netdev@vger.kernel.org
5336 F: drivers/net/wan/dlci.c
5337 F: drivers/net/wan/sdla.c
5340 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
5341 L: linux-fbdev@vger.kernel.org
5342 T: git git://github.com/bzolnier/linux.git
5343 Q: http://patchwork.kernel.org/project/linux-fbdev/list/
5345 F: Documentation/fb/
5348 F: include/linux/fb.h
5349 F: include/uapi/video/
5350 F: include/uapi/linux/fb.h
5352 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
5353 M: Horia Geantă <horia.geanta@nxp.com>
5354 M: Dan Douglass <dan.douglass@nxp.com>
5355 L: linux-crypto@vger.kernel.org
5357 F: drivers/crypto/caam/
5358 F: Documentation/devicetree/bindings/crypto/fsl-sec4.txt
5360 FREESCALE DIU FRAMEBUFFER DRIVER
5361 M: Timur Tabi <timur@tabi.org>
5362 L: linux-fbdev@vger.kernel.org
5364 F: drivers/video/fbdev/fsl-diu-fb.*
5366 FREESCALE DMA DRIVER
5367 M: Li Yang <leoyang.li@nxp.com>
5368 M: Zhang Wei <zw@zh-kernel.org>
5369 L: linuxppc-dev@lists.ozlabs.org
5371 F: drivers/dma/fsldma.*
5373 FREESCALE GPMI NAND DRIVER
5374 M: Han Xu <han.xu@nxp.com>
5375 L: linux-mtd@lists.infradead.org
5377 F: drivers/mtd/nand/gpmi-nand/*
5379 FREESCALE I2C CPM DRIVER
5380 M: Jochen Friedrich <jochen@scram.de>
5381 L: linuxppc-dev@lists.ozlabs.org
5382 L: linux-i2c@vger.kernel.org
5384 F: drivers/i2c/busses/i2c-cpm.c
5386 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
5387 M: Sascha Hauer <kernel@pengutronix.de>
5388 L: linux-fbdev@vger.kernel.org
5389 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5391 F: include/linux/platform_data/video-imxfb.h
5392 F: drivers/video/fbdev/imxfb.c
5394 FREESCALE QUAD SPI DRIVER
5395 M: Han Xu <han.xu@nxp.com>
5396 L: linux-mtd@lists.infradead.org
5398 F: drivers/mtd/spi-nor/fsl-quadspi.c
5400 FREESCALE SOC FS_ENET DRIVER
5401 M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
5402 M: Vitaly Bordug <vbordug@ru.mvista.com>
5403 L: linuxppc-dev@lists.ozlabs.org
5404 L: netdev@vger.kernel.org
5406 F: drivers/net/ethernet/freescale/fs_enet/
5407 F: include/linux/fs_enet_pd.h
5409 FREESCALE IMX / MXC FEC DRIVER
5410 M: Fugang Duan <fugang.duan@nxp.com>
5411 L: netdev@vger.kernel.org
5413 F: drivers/net/ethernet/freescale/fec_main.c
5414 F: drivers/net/ethernet/freescale/fec_ptp.c
5415 F: drivers/net/ethernet/freescale/fec.h
5416 F: Documentation/devicetree/bindings/net/fsl-fec.txt
5418 FREESCALE QORIQ DPAA FMAN DRIVER
5419 M: Madalin Bucur <madalin.bucur@nxp.com>
5420 L: netdev@vger.kernel.org
5422 F: drivers/net/ethernet/freescale/fman
5423 F: Documentation/devicetree/bindings/powerpc/fsl/fman.txt
5425 FREESCALE QORIQ DPAA ETHERNET DRIVER
5426 M: Madalin Bucur <madalin.bucur@nxp.com>
5427 L: netdev@vger.kernel.org
5429 F: drivers/net/ethernet/freescale/dpaa
5431 FREESCALE SOC DRIVERS
5432 M: Li Yang <leoyang.li@nxp.com>
5433 L: linuxppc-dev@lists.ozlabs.org
5434 L: linux-arm-kernel@lists.infradead.org
5436 F: Documentation/devicetree/bindings/soc/fsl/
5438 F: include/linux/fsl/
5440 FREESCALE QUICC ENGINE LIBRARY
5441 M: Qiang Zhao <qiang.zhao@nxp.com>
5442 L: linuxppc-dev@lists.ozlabs.org
5444 F: drivers/soc/fsl/qe/
5445 F: include/soc/fsl/*qe*.h
5446 F: include/soc/fsl/*ucc*.h
5448 FREESCALE USB PERIPHERAL DRIVERS
5449 M: Li Yang <leoyang.li@nxp.com>
5450 L: linux-usb@vger.kernel.org
5451 L: linuxppc-dev@lists.ozlabs.org
5453 F: drivers/usb/gadget/udc/fsl*
5455 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
5456 M: Li Yang <leoyang.li@nxp.com>
5457 L: netdev@vger.kernel.org
5458 L: linuxppc-dev@lists.ozlabs.org
5460 F: drivers/net/ethernet/freescale/ucc_geth*
5462 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
5463 M: Claudiu Manoil <claudiu.manoil@freescale.com>
5464 L: netdev@vger.kernel.org
5466 F: drivers/net/ethernet/freescale/gianfar*
5467 X: drivers/net/ethernet/freescale/gianfar_ptp.c
5468 F: Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
5470 FREESCALE QUICC ENGINE UCC HDLC DRIVER
5471 M: Zhao Qiang <qiang.zhao@nxp.com>
5472 L: netdev@vger.kernel.org
5473 L: linuxppc-dev@lists.ozlabs.org
5475 F: drivers/net/wan/fsl_ucc_hdlc*
5477 FREESCALE QUICC ENGINE UCC UART DRIVER
5478 M: Timur Tabi <timur@tabi.org>
5479 L: linuxppc-dev@lists.ozlabs.org
5481 F: drivers/tty/serial/ucc_uart.c
5483 FREESCALE SOC SOUND DRIVERS
5484 M: Timur Tabi <timur@tabi.org>
5485 M: Nicolin Chen <nicoleotsuka@gmail.com>
5486 M: Xiubo Li <Xiubo.Lee@gmail.com>
5487 R: Fabio Estevam <fabio.estevam@nxp.com>
5488 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5489 L: linuxppc-dev@lists.ozlabs.org
5491 F: sound/soc/fsl/fsl*
5492 F: sound/soc/fsl/imx*
5493 F: sound/soc/fsl/mpc8610_hpcd.c
5496 M: Christoph Hellwig <hch@infradead.org>
5497 W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
5502 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
5503 M: Pavel Machek <pavel@ucw.cz>
5504 L: linux-pm@vger.kernel.org
5506 F: Documentation/power/freezing-of-tasks.txt
5507 F: include/linux/freezer.h
5511 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
5512 L: linux-kernel@vger.kernel.org
5515 F: include/linux/frontswap.h
5517 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
5518 M: David Howells <dhowells@redhat.com>
5519 L: linux-cachefs@redhat.com (moderated for non-subscribers)
5521 F: Documentation/filesystems/caching/
5523 F: include/linux/fscache*.h
5525 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
5526 M: Theodore Y. Ts'o <tytso@mit.edu>
5527 M: Jaegeuk Kim <jaegeuk@kernel.org>
5528 L: linux-fscrypt@vger.kernel.org
5529 Q: https://patchwork.kernel.org/project/linux-fscrypt/list/
5530 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/fscrypt.git
5533 F: include/linux/fscrypt*.h
5536 M: Jaegeuk Kim <jaegeuk@kernel.org>
5537 M: Chao Yu <yuchao0@huawei.com>
5538 L: linux-f2fs-devel@lists.sourceforge.net
5539 W: https://f2fs.wiki.kernel.org/
5540 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
5542 F: Documentation/filesystems/f2fs.txt
5543 F: Documentation/ABI/testing/sysfs-fs-f2fs
5545 F: include/linux/f2fs_fs.h
5546 F: include/trace/events/f2fs.h
5548 FUJITSU FR-V (FRV) PORT
5552 FUJITSU LAPTOP EXTRAS
5553 M: Jonathan Woithe <jwoithe@just42.net>
5554 L: platform-driver-x86@vger.kernel.org
5556 F: drivers/platform/x86/fujitsu-laptop.c
5558 FUJITSU M-5MO LS CAMERA ISP DRIVER
5559 M: Kyungmin Park <kyungmin.park@samsung.com>
5560 M: Heungjun Kim <riverful.kim@samsung.com>
5561 L: linux-media@vger.kernel.org
5563 F: drivers/media/i2c/m5mols/
5564 F: include/media/i2c/m5mols.h
5566 FUJITSU TABLET EXTRAS
5567 M: Robert Gerlach <khnz@gmx.de>
5568 L: platform-driver-x86@vger.kernel.org
5570 F: drivers/platform/x86/fujitsu-tablet.c
5572 FUSE: FILESYSTEM IN USERSPACE
5573 M: Miklos Szeredi <miklos@szeredi.hu>
5574 L: linux-fsdevel@vger.kernel.org
5575 W: http://fuse.sourceforge.net/
5576 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
5579 F: include/uapi/linux/fuse.h
5580 F: Documentation/filesystems/fuse.txt
5583 M: Thomas Gleixner <tglx@linutronix.de>
5584 M: Ingo Molnar <mingo@redhat.com>
5585 R: Peter Zijlstra <peterz@infradead.org>
5586 R: Darren Hart <dvhart@infradead.org>
5587 L: linux-kernel@vger.kernel.org
5588 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
5591 F: kernel/futex_compat.c
5592 F: include/asm-generic/futex.h
5593 F: include/linux/futex.h
5594 F: include/uapi/linux/futex.h
5595 F: tools/testing/selftests/futex/
5596 F: tools/perf/bench/futex*
5597 F: Documentation/*futex*
5599 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
5600 M: Rik Faith <faith@cs.unc.edu>
5601 L: linux-scsi@vger.kernel.org
5602 S: Odd Fixes (e.g., new signatures)
5603 F: drivers/scsi/fdomain.*
5606 M: Kees Cook <keescook@chromium.org>
5607 R: Emese Revfy <re.emese@gmail.com>
5608 L: kernel-hardening@lists.openwall.com
5610 F: scripts/gcc-plugins/
5611 F: scripts/gcc-plugin.sh
5612 F: scripts/Makefile.gcc-plugins
5613 F: Documentation/gcc-plugins.txt
5615 GCOV BASED KERNEL PROFILING
5616 M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
5619 F: Documentation/dev-tools/gcov.rst
5621 GDT SCSI DISK ARRAY CONTROLLER DRIVER
5622 M: Achim Leubner <achim_leubner@adaptec.com>
5623 L: linux-scsi@vger.kernel.org
5624 W: http://www.icp-vortex.com/
5626 F: drivers/scsi/gdt*
5628 GDB KERNEL DEBUGGING HELPER SCRIPTS
5629 M: Jan Kiszka <jan.kiszka@siemens.com>
5630 M: Kieran Bingham <kieran@bingham.xyz>
5634 GEMTEK FM RADIO RECEIVER DRIVER
5635 M: Hans Verkuil <hverkuil@xs4all.nl>
5636 L: linux-media@vger.kernel.org
5637 T: git git://linuxtv.org/media_tree.git
5638 W: https://linuxtv.org
5640 F: drivers/media/radio/radio-gemtek*
5642 GENERIC GPIO I2C DRIVER
5643 M: Haavard Skinnemoen <hskinnemoen@gmail.com>
5645 F: drivers/i2c/busses/i2c-gpio.c
5646 F: include/linux/i2c-gpio.h
5648 GENERIC GPIO I2C MULTIPLEXER DRIVER
5649 M: Peter Korsgaard <peter.korsgaard@barco.com>
5650 L: linux-i2c@vger.kernel.org
5652 F: drivers/i2c/muxes/i2c-mux-gpio.c
5653 F: include/linux/i2c-mux-gpio.h
5654 F: Documentation/i2c/muxes/i2c-mux-gpio
5656 GENERIC HDLC (WAN) DRIVERS
5657 M: Krzysztof Halasa <khc@pm.waw.pl>
5658 W: http://www.kernel.org/pub/linux/utils/net/hdlc/
5660 F: drivers/net/wan/c101.c
5661 F: drivers/net/wan/hd6457*
5662 F: drivers/net/wan/hdlc*
5663 F: drivers/net/wan/n2.c
5664 F: drivers/net/wan/pc300too.c
5665 F: drivers/net/wan/pci200syn.c
5666 F: drivers/net/wan/wanxl*
5668 GENERIC INCLUDE/ASM HEADER FILES
5669 M: Arnd Bergmann <arnd@arndb.de>
5670 L: linux-arch@vger.kernel.org
5671 T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
5673 F: include/asm-generic/
5674 F: include/uapi/asm-generic/
5676 GENERIC PHY FRAMEWORK
5677 M: Kishon Vijay Abraham I <kishon@ti.com>
5678 L: linux-kernel@vger.kernel.org
5679 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
5682 F: include/linux/phy/
5685 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
5686 M: Kevin Hilman <khilman@kernel.org>
5687 M: Ulf Hansson <ulf.hansson@linaro.org>
5688 L: linux-pm@vger.kernel.org
5690 F: drivers/base/power/domain*.c
5691 F: include/linux/pm_domain.h
5692 F: Documentation/devicetree/bindings/power/power_domain.txt
5694 GENERIC UIO DRIVER FOR PCI DEVICES
5695 M: "Michael S. Tsirkin" <mst@redhat.com>
5696 L: kvm@vger.kernel.org
5698 F: drivers/uio/uio_pci_generic.c
5700 GET_MAINTAINER SCRIPT
5701 M: Joe Perches <joe@perches.com>
5703 F: scripts/get_maintainer.pl
5705 GENWQE (IBM Generic Workqueue Card)
5706 M: Frank Haverkamp <haver@linux.vnet.ibm.com>
5707 M: Guilherme G. Piccoli <gpiccoli@linux.vnet.ibm.com>
5709 F: drivers/misc/genwqe/
5712 M: Steven Whitehouse <swhiteho@redhat.com>
5713 M: Bob Peterson <rpeterso@redhat.com>
5714 L: cluster-devel@redhat.com
5715 W: http://sources.redhat.com/cluster/
5716 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
5718 F: Documentation/filesystems/gfs2*.txt
5720 F: include/uapi/linux/gfs2_ondisk.h
5722 GIGASET ISDN DRIVERS
5723 M: Paul Bolle <pebolle@tiscali.nl>
5724 L: gigaset307x-common@lists.sourceforge.net
5725 W: http://gigaset307x.sourceforge.net/
5727 F: Documentation/isdn/README.gigaset
5728 F: drivers/isdn/gigaset/
5729 F: include/uapi/linux/gigaset_dev.h
5732 M: Hans Verkuil <hans.verkuil@cisco.com>
5733 L: linux-media@vger.kernel.org
5735 F: drivers/media/usb/go7007/
5738 M: Bastien Nocera <hadess@hadess.net>
5739 L: linux-input@vger.kernel.org
5741 F: drivers/input/touchscreen/goodix.c
5744 M: Bamvor Jian Zhang <bamvor.zhangjian@linaro.org>
5745 L: linux-gpio@vger.kernel.org
5747 F: drivers/gpio/gpio-mockup.c
5748 F: tools/testing/selftests/gpio/
5751 M: Linus Walleij <linus.walleij@linaro.org>
5752 L: linux-gpio@vger.kernel.org
5753 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
5755 F: Documentation/devicetree/bindings/gpio/
5756 F: Documentation/gpio/
5757 F: Documentation/ABI/testing/gpio-cdev
5758 F: Documentation/ABI/obsolete/sysfs-gpio
5760 F: include/linux/gpio/
5761 F: include/linux/gpio.h
5762 F: include/asm-generic/gpio.h
5763 F: include/uapi/linux/gpio.h
5767 M: Mika Westerberg <mika.westerberg@linux.intel.com>
5768 M: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
5769 L: linux-gpio@vger.kernel.org
5770 L: linux-acpi@vger.kernel.org
5772 F: Documentation/acpi/gpio-properties.txt
5773 F: drivers/gpio/gpiolib-acpi.c
5775 GRE DEMULTIPLEXER DRIVER
5776 M: Dmitry Kozlov <xeb@mail.ru>
5777 L: netdev@vger.kernel.org
5779 F: net/ipv4/gre_demux.c
5780 F: net/ipv4/gre_offload.c
5781 F: include/net/gre.h
5783 GRETH 10/100/1G Ethernet MAC device driver
5784 M: Andreas Larsson <andreas@gaisler.com>
5785 L: netdev@vger.kernel.org
5787 F: drivers/net/ethernet/aeroflex/
5790 M: Johan Hovold <johan@kernel.org>
5791 M: Alex Elder <elder@kernel.org>
5792 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5794 F: drivers/staging/greybus/
5795 L: greybus-dev@lists.linaro.org (moderated for non-subscribers)
5797 GREYBUS AUDIO PROTOCOLS DRIVERS
5798 M: Vaibhav Agarwal <vaibhav.sr@gmail.com>
5799 M: Mark Greer <mgreer@animalcreek.com>
5801 F: drivers/staging/greybus/audio_apbridgea.c
5802 F: drivers/staging/greybus/audio_apbridgea.h
5803 F: drivers/staging/greybus/audio_codec.c
5804 F: drivers/staging/greybus/audio_codec.h
5805 F: drivers/staging/greybus/audio_gb.c
5806 F: drivers/staging/greybus/audio_manager.c
5807 F: drivers/staging/greybus/audio_manager.h
5808 F: drivers/staging/greybus/audio_manager_module.c
5809 F: drivers/staging/greybus/audio_manager_private.h
5810 F: drivers/staging/greybus/audio_manager_sysfs.c
5811 F: drivers/staging/greybus/audio_module.c
5812 F: drivers/staging/greybus/audio_topology.c
5814 GREYBUS PROTOCOLS DRIVERS
5815 M: Rui Miguel Silva <rmfrfs@gmail.com>
5817 F: drivers/staging/greybus/sdio.c
5818 F: drivers/staging/greybus/light.c
5819 F: drivers/staging/greybus/gpio.c
5820 F: drivers/staging/greybus/power_supply.c
5821 F: drivers/staging/greybus/spi.c
5822 F: drivers/staging/greybus/spilib.c
5824 GREYBUS PROTOCOLS DRIVERS
5825 M: Bryan O'Donoghue <pure.logic@nexus-software.ie>
5827 F: drivers/staging/greybus/loopback.c
5828 F: drivers/staging/greybus/timesync.c
5829 F: drivers/staging/greybus/timesync_platform.c
5831 GREYBUS PROTOCOLS DRIVERS
5832 M: Viresh Kumar <vireshk@kernel.org>
5834 F: drivers/staging/greybus/authentication.c
5835 F: drivers/staging/greybus/bootrom.c
5836 F: drivers/staging/greybus/firmware.h
5837 F: drivers/staging/greybus/fw-core.c
5838 F: drivers/staging/greybus/fw-download.c
5839 F: drivers/staging/greybus/fw-managament.c
5840 F: drivers/staging/greybus/greybus_authentication.h
5841 F: drivers/staging/greybus/greybus_firmware.h
5842 F: drivers/staging/greybus/hid.c
5843 F: drivers/staging/greybus/i2c.c
5844 F: drivers/staging/greybus/spi.c
5845 F: drivers/staging/greybus/spilib.c
5846 F: drivers/staging/greybus/spilib.h
5848 GREYBUS PROTOCOLS DRIVERS
5849 M: David Lin <dtwlin@gmail.com>
5851 F: drivers/staging/greybus/uart.c
5852 F: drivers/staging/greybus/log.c
5854 GREYBUS PLATFORM DRIVERS
5855 M: Vaibhav Hiremath <hvaibhav.linux@gmail.com>
5857 F: drivers/staging/greybus/arche-platform.c
5858 F: drivers/staging/greybus/arche-apb-ctrl.c
5859 F: drivers/staging/greybus/arche_platform.h
5861 GS1662 VIDEO SERIALIZER
5862 M: Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
5863 L: linux-media@vger.kernel.org
5864 T: git git://linuxtv.org/media_tree.git
5866 F: drivers/media/spi/gs1662.c
5868 GSPCA FINEPIX SUBDRIVER
5869 M: Frank Zago <frank@zago.net>
5870 L: linux-media@vger.kernel.org
5871 T: git git://linuxtv.org/media_tree.git
5873 F: drivers/media/usb/gspca/finepix.c
5875 GSPCA GL860 SUBDRIVER
5876 M: Olivier Lorin <o.lorin@laposte.net>
5877 L: linux-media@vger.kernel.org
5878 T: git git://linuxtv.org/media_tree.git
5880 F: drivers/media/usb/gspca/gl860/
5882 GSPCA M5602 SUBDRIVER
5883 M: Erik Andren <erik.andren@gmail.com>
5884 L: linux-media@vger.kernel.org
5885 T: git git://linuxtv.org/media_tree.git
5887 F: drivers/media/usb/gspca/m5602/
5889 GSPCA PAC207 SONIXB SUBDRIVER
5890 M: Hans Verkuil <hverkuil@xs4all.nl>
5891 L: linux-media@vger.kernel.org
5892 T: git git://linuxtv.org/media_tree.git
5894 F: drivers/media/usb/gspca/pac207.c
5896 GSPCA SN9C20X SUBDRIVER
5897 M: Brian Johnson <brijohn@gmail.com>
5898 L: linux-media@vger.kernel.org
5899 T: git git://linuxtv.org/media_tree.git
5901 F: drivers/media/usb/gspca/sn9c20x.c
5903 GSPCA T613 SUBDRIVER
5904 M: Leandro Costantino <lcostantino@gmail.com>
5905 L: linux-media@vger.kernel.org
5906 T: git git://linuxtv.org/media_tree.git
5908 F: drivers/media/usb/gspca/t613.c
5910 GSPCA USB WEBCAM DRIVER
5911 M: Hans Verkuil <hverkuil@xs4all.nl>
5912 L: linux-media@vger.kernel.org
5913 T: git git://linuxtv.org/media_tree.git
5915 F: drivers/media/usb/gspca/
5917 GTP (GPRS Tunneling Protocol)
5918 M: Pablo Neira Ayuso <pablo@netfilter.org>
5919 M: Harald Welte <laforge@gnumonks.org>
5920 L: osmocom-net-gprs@lists.osmocom.org
5921 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
5923 F: drivers/net/gtp.c
5925 GUID PARTITION TABLE (GPT)
5926 M: Davidlohr Bueso <dave@stgolabs.net>
5927 L: linux-efi@vger.kernel.org
5929 F: block/partitions/efi.*
5931 STK1160 USB VIDEO CAPTURE DRIVER
5932 M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
5933 L: linux-media@vger.kernel.org
5934 T: git git://linuxtv.org/media_tree.git
5936 F: drivers/media/usb/stk1160/
5939 M: Yoshinori Sato <ysato@users.sourceforge.jp>
5940 L: uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
5941 W: http://uclinux-h8.sourceforge.jp
5942 T: git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
5945 F: drivers/clocksource/h8300_*.c
5946 F: drivers/clk/h8300/
5947 F: drivers/irqchip/irq-renesas-h8*.c
5949 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
5950 M: Frank Seidel <frank@f-seidel.de>
5951 L: platform-driver-x86@vger.kernel.org
5952 W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
5954 F: drivers/platform/x86/hdaps.c
5956 HDPVR USB VIDEO ENCODER DRIVER
5957 M: Hans Verkuil <hverkuil@xs4all.nl>
5958 L: linux-media@vger.kernel.org
5959 T: git git://linuxtv.org/media_tree.git
5960 W: https://linuxtv.org
5962 F: drivers/media/usb/hdpvr/
5964 HWPOISON MEMORY FAILURE HANDLING
5965 M: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
5966 L: linux-mm@kvack.org
5968 F: mm/memory-failure.c
5969 F: mm/hwpoison-inject.c
5971 HYPERVISOR VIRTUAL CONSOLE DRIVER
5972 L: linuxppc-dev@lists.ozlabs.org
5977 M: Antti Palosaari <crope@iki.fi>
5978 L: linux-media@vger.kernel.org
5979 W: https://linuxtv.org
5980 W: http://palosaari.fi/linux/
5981 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5982 T: git git://linuxtv.org/anttip/media_tree.git
5984 F: drivers/media/usb/hackrf/
5987 M: Jean Delvare <jdelvare@suse.com>
5988 M: Guenter Roeck <linux@roeck-us.net>
5989 L: linux-hwmon@vger.kernel.org
5990 W: http://hwmon.wiki.kernel.org/
5991 T: quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/
5992 T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
5994 F: Documentation/hwmon/
5996 F: include/linux/hwmon*.h
5998 HARDWARE RANDOM NUMBER GENERATOR CORE
5999 M: Matt Mackall <mpm@selenic.com>
6000 M: Herbert Xu <herbert@gondor.apana.org.au>
6001 L: linux-crypto@vger.kernel.org
6003 F: Documentation/devicetree/bindings/rng/
6004 F: Documentation/hw_random.txt
6005 F: drivers/char/hw_random/
6006 F: include/linux/hw_random.h
6008 HARDWARE SPINLOCK CORE
6009 M: Ohad Ben-Cohen <ohad@wizery.com>
6010 M: Bjorn Andersson <bjorn.andersson@linaro.org>
6011 L: linux-remoteproc@vger.kernel.org
6013 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/hwspinlock.git
6014 F: Documentation/devicetree/bindings/hwlock/
6015 F: Documentation/hwspinlock.txt
6016 F: drivers/hwspinlock/
6017 F: include/linux/hwspinlock.h
6019 HARMONY SOUND DRIVER
6020 L: linux-parisc@vger.kernel.org
6022 F: sound/parisc/harmony.*
6024 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
6025 M: Jimmy Vance <jimmy.vance@hpe.com>
6027 F: Documentation/watchdog/hpwdt.txt
6028 F: drivers/watchdog/hpwdt.c
6030 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
6031 M: Don Brace <don.brace@microsemi.com>
6032 L: esc.storagedev@microsemi.com
6033 L: linux-scsi@vger.kernel.org
6035 F: Documentation/scsi/hpsa.txt
6036 F: drivers/scsi/hpsa*.[ch]
6037 F: include/linux/cciss*.h
6038 F: include/uapi/linux/cciss*.h
6040 HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
6041 M: Don Brace <don.brace@microsemi.com>
6042 L: esc.storagedev@microsemi.com
6043 L: linux-scsi@vger.kernel.org
6045 F: Documentation/blockdev/cciss.txt
6046 F: drivers/block/cciss*
6047 F: include/linux/cciss_ioctl.h
6048 F: include/uapi/linux/cciss_ioctl.h
6051 M: Dennis Dalessandro <dennis.dalessandro@intel.com>
6052 M: Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com>
6053 L: linux-rdma@vger.kernel.org
6055 F: drivers/infiniband/ulp/opa_vnic
6058 M: Mike Marciniszyn <mike.marciniszyn@intel.com>
6059 M: Dennis Dalessandro <dennis.dalessandro@intel.com>
6060 L: linux-rdma@vger.kernel.org
6062 F: drivers/infiniband/hw/hfi1
6065 L: linux-fsdevel@vger.kernel.org
6067 F: Documentation/filesystems/hfs.txt
6071 L: linux-fsdevel@vger.kernel.org
6073 F: Documentation/filesystems/hfsplus.txt
6076 HGA FRAMEBUFFER DRIVER
6077 M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
6078 L: linux-nvidia@lists.surfsouth.com
6079 W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
6081 F: drivers/video/fbdev/hgafb.c
6083 HIBERNATION (aka Software Suspend, aka swsusp)
6084 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
6085 M: Pavel Machek <pavel@ucw.cz>
6086 L: linux-pm@vger.kernel.org
6087 B: https://bugzilla.kernel.org
6090 F: drivers/base/power/
6092 F: include/linux/suspend.h
6093 F: include/linux/freezer.h
6094 F: include/linux/pm.h
6095 F: arch/*/include/asm/suspend*.h
6098 M: Jiri Kosina <jikos@kernel.org>
6099 R: Benjamin Tissoires <benjamin.tissoires@redhat.com>
6100 L: linux-input@vger.kernel.org
6101 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
6104 F: include/linux/hid*
6105 F: include/uapi/linux/hid*
6107 HID SENSOR HUB DRIVERS
6108 M: Jiri Kosina <jikos@kernel.org>
6109 M: Jonathan Cameron <jic23@kernel.org>
6110 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
6111 L: linux-input@vger.kernel.org
6112 L: linux-iio@vger.kernel.org
6114 F: Documentation/hid/hid-sensor*
6115 F: drivers/hid/hid-sensor-*
6116 F: drivers/iio/*/hid-*
6117 F: include/linux/hid-sensor-*
6119 HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
6120 M: Thomas Gleixner <tglx@linutronix.de>
6121 L: linux-kernel@vger.kernel.org
6122 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
6124 F: Documentation/timers/
6125 F: kernel/time/hrtimer.c
6126 F: kernel/time/clockevents.c
6127 F: kernel/time/tick*.*
6128 F: kernel/time/timer_*.c
6129 F: include/linux/clockchips.h
6130 F: include/linux/hrtimer.h
6132 HIGH-SPEED SCC DRIVER FOR AX.25
6133 L: linux-hams@vger.kernel.org
6135 F: drivers/net/hamradio/dmascc.c
6136 F: drivers/net/hamradio/scc.c
6138 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
6139 M: HighPoint Linux Team <linux@highpoint-tech.com>
6140 W: http://www.highpoint-tech.com
6142 F: Documentation/scsi/hptiop.txt
6143 F: drivers/scsi/hptiop.c
6146 M: Jes Sorensen <jes@trained-monkey.org>
6147 L: linux-hippi@sunsite.dk
6149 F: include/linux/hippidevice.h
6150 F: include/uapi/linux/if_hippi.h
6152 F: drivers/net/hippi/
6154 HISILICON NETWORK SUBSYSTEM DRIVER
6155 M: Yisen Zhuang <yisen.zhuang@huawei.com>
6156 M: Salil Mehta <salil.mehta@huawei.com>
6157 L: netdev@vger.kernel.org
6158 W: http://www.hisilicon.com
6160 F: drivers/net/ethernet/hisilicon/
6161 F: Documentation/devicetree/bindings/net/hisilicon*.txt
6163 HISILICON ROCE DRIVER
6164 M: Lijun Ou <oulijun@huawei.com>
6165 M: Wei Hu(Xavier) <xavier.huwei@huawei.com>
6166 L: linux-rdma@vger.kernel.org
6168 F: drivers/infiniband/hw/hns/
6169 F: Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
6171 HISILICON SAS Controller
6172 M: John Garry <john.garry@huawei.com>
6173 W: http://www.hisilicon.com
6175 F: drivers/scsi/hisi_sas/
6176 F: Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
6179 M: Jouni Malinen <j@w1.fi>
6180 L: linux-wireless@vger.kernel.org
6181 W: http://w1.fi/hostap-driver.html
6183 F: drivers/net/wireless/intersil/hostap/
6185 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
6186 L: platform-driver-x86@vger.kernel.org
6188 F: drivers/platform/x86/tc1100-wmi.c
6190 HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
6191 M: Jaroslav Kysela <perex@perex.cz>
6193 F: drivers/net/ethernet/hp/hp100.*
6195 HPET: High Precision Event Timers driver
6196 M: Clemens Ladisch <clemens@ladisch.de>
6198 F: Documentation/timers/hpet.txt
6199 F: drivers/char/hpet.c
6200 F: include/linux/hpet.h
6201 F: include/uapi/linux/hpet.h
6205 F: arch/x86/kernel/hpet.c
6206 F: arch/x86/include/asm/hpet.h
6209 M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
6210 W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
6215 M: Sebastian Reichel <sre@kernel.org>
6216 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
6218 F: Documentation/ABI/testing/sysfs-bus-hsi
6219 F: Documentation/driver-api/hsi.rst
6221 F: include/linux/hsi/
6222 F: include/uapi/linux/hsi/
6225 L: linux-usb@vger.kernel.org
6227 F: drivers/net/usb/hso.c
6229 HSR NETWORK PROTOCOL
6230 M: Arvid Brodin <arvid.brodin@alten.se>
6231 L: netdev@vger.kernel.org
6235 HTCPEN TOUCHSCREEN DRIVER
6236 M: Pau Oliva Fora <pof@eslack.org>
6237 L: linux-input@vger.kernel.org
6239 F: drivers/input/touchscreen/htcpen.c
6242 M: Nadia Yvette Chambers <nyc@holomorphy.com>
6247 M: Jean-Christophe Trotin <jean-christophe.trotin@st.com>
6248 L: linux-media@vger.kernel.org
6249 T: git git://linuxtv.org/media_tree.git
6250 W: https://linuxtv.org
6252 F: drivers/media/platform/sti/hva
6254 Hyper-V CORE AND DRIVERS
6255 M: "K. Y. Srinivasan" <kys@microsoft.com>
6256 M: Haiyang Zhang <haiyangz@microsoft.com>
6257 M: Stephen Hemminger <sthemmin@microsoft.com>
6258 L: devel@linuxdriverproject.org
6260 F: arch/x86/include/asm/mshyperv.h
6261 F: arch/x86/include/uapi/asm/hyperv.h
6262 F: arch/x86/kernel/cpu/mshyperv.c
6264 F: drivers/hid/hid-hyperv.c
6266 F: drivers/input/serio/hyperv-keyboard.c
6267 F: drivers/pci/host/pci-hyperv.c
6268 F: drivers/net/hyperv/
6269 F: drivers/scsi/storvsc_drv.c
6270 F: drivers/uio/uio_hv_generic.c
6271 F: drivers/video/fbdev/hyperv_fb.c
6272 F: include/linux/hyperv.h
6274 F: Documentation/ABI/stable/sysfs-bus-vmbus
6277 M: Peter Rosin <peda@axentia.se>
6278 L: linux-i2c@vger.kernel.org
6280 F: Documentation/i2c/i2c-topology
6281 F: Documentation/i2c/muxes/
6282 F: Documentation/devicetree/bindings/i2c/i2c-mux*
6283 F: Documentation/devicetree/bindings/i2c/i2c-arb*
6284 F: Documentation/devicetree/bindings/i2c/i2c-gate*
6285 F: drivers/i2c/i2c-mux.c
6286 F: drivers/i2c/muxes/
6287 F: include/linux/i2c-mux.h
6289 I2C OVER PARALLEL PORT
6290 M: Jean Delvare <jdelvare@suse.com>
6291 L: linux-i2c@vger.kernel.org
6293 F: Documentation/i2c/busses/i2c-parport
6294 F: Documentation/i2c/busses/i2c-parport-light
6295 F: drivers/i2c/busses/i2c-parport.c
6296 F: drivers/i2c/busses/i2c-parport-light.c
6298 I2C/SMBUS CONTROLLER DRIVERS FOR PC
6299 M: Jean Delvare <jdelvare@suse.com>
6300 L: linux-i2c@vger.kernel.org
6302 F: Documentation/i2c/busses/i2c-ali1535
6303 F: Documentation/i2c/busses/i2c-ali1563
6304 F: Documentation/i2c/busses/i2c-ali15x3
6305 F: Documentation/i2c/busses/i2c-amd756
6306 F: Documentation/i2c/busses/i2c-amd8111
6307 F: Documentation/i2c/busses/i2c-i801
6308 F: Documentation/i2c/busses/i2c-nforce2
6309 F: Documentation/i2c/busses/i2c-piix4
6310 F: Documentation/i2c/busses/i2c-sis5595
6311 F: Documentation/i2c/busses/i2c-sis630
6312 F: Documentation/i2c/busses/i2c-sis96x
6313 F: Documentation/i2c/busses/i2c-via
6314 F: Documentation/i2c/busses/i2c-viapro
6315 F: drivers/i2c/busses/i2c-ali1535.c
6316 F: drivers/i2c/busses/i2c-ali1563.c
6317 F: drivers/i2c/busses/i2c-ali15x3.c
6318 F: drivers/i2c/busses/i2c-amd756.c
6319 F: drivers/i2c/busses/i2c-amd756-s4882.c
6320 F: drivers/i2c/busses/i2c-amd8111.c
6321 F: drivers/i2c/busses/i2c-i801.c
6322 F: drivers/i2c/busses/i2c-isch.c
6323 F: drivers/i2c/busses/i2c-nforce2.c
6324 F: drivers/i2c/busses/i2c-nforce2-s4985.c
6325 F: drivers/i2c/busses/i2c-piix4.c
6326 F: drivers/i2c/busses/i2c-sis5595.c
6327 F: drivers/i2c/busses/i2c-sis630.c
6328 F: drivers/i2c/busses/i2c-sis96x.c
6329 F: drivers/i2c/busses/i2c-via.c
6330 F: drivers/i2c/busses/i2c-viapro.c
6332 I2C/SMBUS ISMT DRIVER
6333 M: Seth Heasley <seth.heasley@intel.com>
6334 M: Neil Horman <nhorman@tuxdriver.com>
6335 L: linux-i2c@vger.kernel.org
6336 F: drivers/i2c/busses/i2c-ismt.c
6337 F: Documentation/i2c/busses/i2c-ismt
6339 I2C/SMBUS STUB DRIVER
6340 M: Jean Delvare <jdelvare@suse.com>
6341 L: linux-i2c@vger.kernel.org
6343 F: drivers/i2c/i2c-stub.c
6346 M: Wolfram Sang <wsa@the-dreams.de>
6347 L: linux-i2c@vger.kernel.org
6348 W: https://i2c.wiki.kernel.org/
6349 Q: https://patchwork.ozlabs.org/project/linux-i2c/list/
6350 T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
6352 F: Documentation/devicetree/bindings/i2c/
6353 F: Documentation/i2c/
6356 F: include/linux/i2c.h
6357 F: include/linux/i2c-*.h
6358 F: include/uapi/linux/i2c.h
6359 F: include/uapi/linux/i2c-*.h
6362 M: Mika Westerberg <mika.westerberg@linux.intel.com>
6363 L: linux-i2c@vger.kernel.org
6364 L: linux-acpi@vger.kernel.org
6368 M: Jean Delvare <jdelvare@suse.com>
6369 L: linux-i2c@vger.kernel.org
6371 F: Documentation/i2c/busses/i2c-taos-evm
6372 F: drivers/i2c/busses/i2c-taos-evm.c
6375 M: Till Harbaum <till@harbaum.org>
6376 L: linux-i2c@vger.kernel.org
6377 W: http://www.harbaum.org/till/i2c_tiny_usb
6379 F: drivers/i2c/busses/i2c-tiny-usb.c
6382 M: "H. Peter Anvin" <hpa@zytor.com>
6386 i386 SETUP CODE / CPU ERRATA WORKAROUNDS
6387 M: "H. Peter Anvin" <hpa@zytor.com>
6388 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
6391 IA64 (Itanium) PLATFORM
6392 M: Tony Luck <tony.luck@intel.com>
6393 M: Fenghua Yu <fenghua.yu@intel.com>
6394 L: linux-ia64@vger.kernel.org
6395 T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
6399 IBM Power VMX Cryptographic instructions
6400 M: Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
6401 M: Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
6402 L: linux-crypto@vger.kernel.org
6404 F: drivers/crypto/vmx/Makefile
6405 F: drivers/crypto/vmx/Kconfig
6406 F: drivers/crypto/vmx/vmx.c
6407 F: drivers/crypto/vmx/aes*
6408 F: drivers/crypto/vmx/ghash*
6409 F: drivers/crypto/vmx/ppc-xlate.pl
6411 IBM Power in-Nest Crypto Acceleration
6412 M: Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
6413 M: Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
6414 L: linux-crypto@vger.kernel.org
6416 F: drivers/crypto/nx/Makefile
6417 F: drivers/crypto/nx/Kconfig
6418 F: drivers/crypto/nx/nx-aes*
6419 F: drivers/crypto/nx/nx-sha*
6420 F: drivers/crypto/nx/nx.*
6421 F: drivers/crypto/nx/nx_csbcpb.h
6422 F: drivers/crypto/nx/nx_debugfs.h
6424 IBM Power 842 compression accelerator
6425 M: Haren Myneni <haren@us.ibm.com>
6427 F: drivers/crypto/nx/Makefile
6428 F: drivers/crypto/nx/Kconfig
6429 F: drivers/crypto/nx/nx-842*
6430 F: include/linux/sw842.h
6434 IBM Power Linux RAID adapter
6435 M: Brian King <brking@us.ibm.com>
6437 F: drivers/scsi/ipr.*
6439 IBM Power Virtual Ethernet Device Driver
6440 M: Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
6441 L: netdev@vger.kernel.org
6443 F: drivers/net/ethernet/ibm/ibmveth.*
6445 IBM Power SRIOV Virtual NIC Device Driver
6446 M: Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
6447 M: John Allen <jallen@linux.vnet.ibm.com>
6448 L: netdev@vger.kernel.org
6450 F: drivers/net/ethernet/ibm/ibmvnic.*
6452 IBM Power Virtual SCSI Device Drivers
6453 M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
6454 L: linux-scsi@vger.kernel.org
6456 F: drivers/scsi/ibmvscsi/ibmvscsi*
6457 F: include/scsi/viosrp.h
6459 IBM Power Virtual SCSI Device Target Driver
6460 M: Bryant G. Ly <bryantly@linux.vnet.ibm.com>
6461 M: Michael Cyr <mikecyr@linux.vnet.ibm.com>
6462 L: linux-scsi@vger.kernel.org
6463 L: target-devel@vger.kernel.org
6465 F: drivers/scsi/ibmvscsi_tgt/
6467 IBM Power Virtual FC Device Drivers
6468 M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
6469 L: linux-scsi@vger.kernel.org
6471 F: drivers/scsi/ibmvscsi/ibmvfc*
6473 IBM ServeRAID RAID DRIVER
6475 F: drivers/scsi/ips.*
6477 ICH LPC AND GPIO DRIVER
6478 M: Peter Tyser <ptyser@xes-inc.com>
6480 F: drivers/mfd/lpc_ich.c
6481 F: drivers/gpio/gpio-ich.c
6483 IDT VersaClock 5 CLOCK DRIVER
6484 M: Marek Vasut <marek.vasut@gmail.com>
6486 F: drivers/clk/clk-versaclock5.c
6489 M: "David S. Miller" <davem@davemloft.net>
6490 L: linux-ide@vger.kernel.org
6491 Q: http://patchwork.ozlabs.org/project/linux-ide/list/
6492 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
6494 F: Documentation/ide/
6496 F: include/linux/ide.h
6498 IDEAPAD LAPTOP EXTRAS DRIVER
6499 M: Ike Panhc <ike.pan@canonical.com>
6500 L: platform-driver-x86@vger.kernel.org
6501 W: http://launchpad.net/ideapad-laptop
6503 F: drivers/platform/x86/ideapad-laptop.c
6505 IDEAPAD LAPTOP SLIDEBAR DRIVER
6506 M: Andrey Moiseev <o2g.org.ru@gmail.com>
6507 L: linux-input@vger.kernel.org
6508 W: https://github.com/o2genum/ideapad-slidebar
6510 F: drivers/input/misc/ideapad_slidebar.c
6513 M: Borislav Petkov <bp@alien8.de>
6514 L: linux-ide@vger.kernel.org
6516 F: Documentation/cdrom/ide-cd
6517 F: drivers/ide/ide-cd*
6519 IEEE 802.15.4 SUBSYSTEM
6520 M: Alexander Aring <alex.aring@gmail.com>
6521 M: Stefan Schmidt <stefan@osg.samsung.com>
6522 L: linux-wpan@vger.kernel.org
6523 W: http://wpan.cakelab.org/
6524 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
6525 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
6529 F: drivers/net/ieee802154/
6530 F: include/linux/nl802154.h
6531 F: include/linux/ieee802154.h
6532 F: include/net/nl802154.h
6533 F: include/net/mac802154.h
6534 F: include/net/af_ieee802154.h
6535 F: include/net/cfg802154.h
6536 F: include/net/ieee802154_netdev.h
6537 F: Documentation/networking/ieee802154.txt
6540 M: Yotam Gigi <yotamg@mellanox.com>
6541 M: Jamal Hadi Salim <jhs@mojatatu.com>
6543 F: include/net/ife.h
6544 F: include/uapi/linux/ife.h
6546 IGORPLUG-USB IR RECEIVER
6547 M: Sean Young <sean@mess.org>
6548 L: linux-media@vger.kernel.org
6550 F: drivers/media/rc/igorplugusb.c
6552 IGUANAWORKS USB IR TRANSCEIVER
6553 M: Sean Young <sean@mess.org>
6554 L: linux-media@vger.kernel.org
6556 F: drivers/media/rc/iguanair.c
6558 IIO DIGITAL POTENTIOMETER DAC
6559 M: Peter Rosin <peda@axentia.se>
6560 L: linux-iio@vger.kernel.org
6562 F: Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
6563 F: Documentation/devicetree/bindings/iio/dac/dpot-dac.txt
6564 F: drivers/iio/dac/dpot-dac.c
6566 IIO ENVELOPE DETECTOR
6567 M: Peter Rosin <peda@axentia.se>
6568 L: linux-iio@vger.kernel.org
6570 F: Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
6571 F: Documentation/devicetree/bindings/iio/adc/envelope-detector.txt
6572 F: drivers/iio/adc/envelope-detector.c
6575 M: Peter Rosin <peda@axentia.se>
6576 L: linux-iio@vger.kernel.org
6578 F: Documentation/devicetree/bindings/iio/multiplexer/iio-mux.txt
6579 F: drivers/iio/multiplexer/iio-mux.c
6581 IIO SUBSYSTEM AND DRIVERS
6582 M: Jonathan Cameron <jic23@kernel.org>
6583 R: Hartmut Knaack <knaack.h@gmx.de>
6584 R: Lars-Peter Clausen <lars@metafoo.de>
6585 R: Peter Meerwald-Stadler <pmeerw@pmeerw.net>
6586 L: linux-iio@vger.kernel.org
6587 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
6589 F: Documentation/devicetree/bindings/iio/
6591 F: drivers/staging/iio/
6592 F: include/linux/iio/
6595 IKANOS/ADI EAGLE ADSL USB DRIVER
6596 M: Matthieu Castet <castet.matthieu@free.fr>
6597 M: Stanislaw Gruszka <stf_xl@wp.pl>
6599 F: drivers/usb/atm/ueagle-atm.c
6601 IMGTEC ASCII LCD DRIVER
6602 M: Paul Burton <paul.burton@imgtec.com>
6604 F: Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
6605 F: drivers/auxdisplay/img-ascii-lcd.c
6607 INA209 HARDWARE MONITOR DRIVER
6608 M: Guenter Roeck <linux@roeck-us.net>
6609 L: linux-hwmon@vger.kernel.org
6611 F: Documentation/hwmon/ina209
6612 F: Documentation/devicetree/bindings/i2c/ina209.txt
6613 F: drivers/hwmon/ina209.c
6615 INA2XX HARDWARE MONITOR DRIVER
6616 M: Guenter Roeck <linux@roeck-us.net>
6617 L: linux-hwmon@vger.kernel.org
6619 F: Documentation/hwmon/ina2xx
6620 F: drivers/hwmon/ina2xx.c
6621 F: include/linux/platform_data/ina2xx.h
6623 INDUSTRY PACK SUBSYSTEM (IPACK)
6624 M: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
6625 M: Jens Taprogge <jens.taprogge@taprogge.org>
6626 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
6627 L: industrypack-devel@lists.sourceforge.net
6628 W: http://industrypack.sourceforge.net
6632 INGENIC JZ4780 DMA Driver
6633 M: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
6635 F: drivers/dma/dma-jz4780.c
6637 INGENIC JZ4780 NAND DRIVER
6638 M: Harvey Hunt <harveyhuntnexus@gmail.com>
6639 L: linux-mtd@lists.infradead.org
6641 F: drivers/mtd/nand/jz4780_*
6643 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
6644 M: Mimi Zohar <zohar@linux.vnet.ibm.com>
6645 M: Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
6646 L: linux-ima-devel@lists.sourceforge.net
6647 L: linux-ima-user@lists.sourceforge.net
6648 L: linux-security-module@vger.kernel.org
6649 T: git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
6651 F: security/integrity/ima/
6653 IMGTEC IR DECODER DRIVER
6654 M: James Hogan <james.hogan@imgtec.com>
6656 F: drivers/media/rc/img-ir/
6658 IMS TWINTURBO FRAMEBUFFER DRIVER
6659 L: linux-fbdev@vger.kernel.org
6661 F: drivers/video/fbdev/imsttfb.c
6663 INFINIBAND SUBSYSTEM
6664 M: Doug Ledford <dledford@redhat.com>
6665 M: Sean Hefty <sean.hefty@intel.com>
6666 M: Hal Rosenstock <hal.rosenstock@gmail.com>
6667 L: linux-rdma@vger.kernel.org
6668 W: http://www.openfabrics.org/
6669 Q: http://patchwork.kernel.org/project/linux-rdma/list/
6670 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git
6672 F: Documentation/devicetree/bindings/infiniband/
6673 F: Documentation/infiniband/
6674 F: drivers/infiniband/
6675 F: include/uapi/linux/if_infiniband.h
6676 F: include/uapi/rdma/
6680 M: John McCutchan <john@johnmccutchan.com>
6681 M: Robert Love <rlove@rlove.org>
6682 M: Eric Paris <eparis@parisplace.org>
6684 F: Documentation/filesystems/inotify.txt
6685 F: fs/notify/inotify/
6686 F: include/linux/inotify.h
6687 F: include/uapi/linux/inotify.h
6689 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
6690 M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
6691 L: linux-input@vger.kernel.org
6692 Q: http://patchwork.kernel.org/project/linux-input/list/
6693 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
6696 F: include/linux/input.h
6697 F: include/uapi/linux/input.h
6698 F: include/uapi/linux/input-event-codes.h
6699 F: include/linux/input/
6700 F: Documentation/devicetree/bindings/input/
6701 F: Documentation/input/
6703 INPUT MULTITOUCH (MT) PROTOCOL
6704 M: Henrik Rydberg <rydberg@bitmath.org>
6705 L: linux-input@vger.kernel.org
6707 F: Documentation/input/multi-touch-protocol.rst
6708 F: drivers/input/input-mt.c
6711 INSIDE SECURE CRYPTO DRIVER
6712 M: Antoine Tenart <antoine.tenart@free-electrons.com>
6713 F: drivers/crypto/inside-secure/
6715 L: linux-crypto@vger.kernel.org
6717 INTEL ASoC BDW/HSW DRIVERS
6718 M: Jie Yang <yang.jie@linux.intel.com>
6719 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6721 F: sound/soc/intel/common/sst-dsp*
6722 F: sound/soc/intel/common/sst-firmware.c
6723 F: sound/soc/intel/boards/broadwell.c
6724 F: sound/soc/intel/haswell/
6726 INTEL C600 SERIES SAS CONTROLLER DRIVER
6727 M: Intel SCU Linux support <intel-linux-scu@intel.com>
6728 M: Artur Paszkiewicz <artur.paszkiewicz@intel.com>
6729 L: linux-scsi@vger.kernel.org
6730 T: git git://git.code.sf.net/p/intel-sas/isci
6732 F: drivers/scsi/isci/
6734 INTEL HID EVENT DRIVER
6735 M: Alex Hung <alex.hung@canonical.com>
6736 L: platform-driver-x86@vger.kernel.org
6738 F: drivers/platform/x86/intel-hid.c
6740 INTEL VIRTUAL BUTTON DRIVER
6741 M: AceLan Kao <acelan.kao@canonical.com>
6742 L: platform-driver-x86@vger.kernel.org
6744 F: drivers/platform/x86/intel-vbtn.c
6747 M: Jacob Pan <jacob.jun.pan@linux.intel.com>
6748 M: Len Brown <lenb@kernel.org>
6749 L: linux-pm@vger.kernel.org
6750 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
6751 B: https://bugzilla.kernel.org
6753 F: drivers/idle/intel_idle.c
6755 INTEL INTEGRATED SENSOR HUB DRIVER
6756 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
6757 M: Jiri Kosina <jikos@kernel.org>
6758 L: linux-input@vger.kernel.org
6760 F: drivers/hid/intel-ish-hid/
6763 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
6764 M: Len Brown <lenb@kernel.org>
6765 L: linux-pm@vger.kernel.org
6767 F: drivers/cpufreq/intel_pstate.c
6769 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
6770 M: Maik Broemme <mbroemme@libmpq.org>
6771 L: linux-fbdev@vger.kernel.org
6773 F: Documentation/fb/intelfb.txt
6774 F: drivers/video/fbdev/intelfb/
6776 INTEL 810/815 FRAMEBUFFER DRIVER
6777 M: Antonino Daplas <adaplas@gmail.com>
6778 L: linux-fbdev@vger.kernel.org
6780 F: drivers/video/fbdev/i810/
6782 INTEL MENLOW THERMAL DRIVER
6783 M: Sujith Thomas <sujith.thomas@intel.com>
6784 L: platform-driver-x86@vger.kernel.org
6785 W: https://01.org/linux-acpi
6787 F: drivers/platform/x86/intel_menlow.c
6789 INTEL I/OAT DMA DRIVER
6790 M: Dave Jiang <dave.jiang@intel.com>
6791 R: Dan Williams <dan.j.williams@intel.com>
6792 L: dmaengine@vger.kernel.org
6793 Q: https://patchwork.kernel.org/project/linux-dmaengine/list/
6795 F: drivers/dma/ioat*
6798 M: David Woodhouse <dwmw2@infradead.org>
6799 L: iommu@lists.linux-foundation.org
6800 T: git git://git.infradead.org/iommu-2.6.git
6802 F: drivers/iommu/intel-iommu.c
6803 F: include/linux/intel-iommu.h
6805 INTEL IOP-ADMA DMA DRIVER
6806 R: Dan Williams <dan.j.williams@intel.com>
6808 F: drivers/dma/iop-adma.c
6810 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
6811 M: Krzysztof Halasa <khalasa@piap.pl>
6813 F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
6814 F: arch/arm/mach-ixp4xx/include/mach/npe.h
6815 F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
6816 F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
6817 F: drivers/net/ethernet/xscale/ixp4xx_eth.c
6818 F: drivers/net/wan/ixp4xx_hss.c
6820 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
6821 M: Deepak Saxena <dsaxena@plexity.net>
6823 F: drivers/char/hw_random/ixp4xx-rng.c
6825 INTEL ETHERNET DRIVERS
6826 M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
6827 L: intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
6828 W: http://www.intel.com/support/feedback.htm
6829 W: http://e1000.sourceforge.net/
6830 Q: http://patchwork.ozlabs.org/project/intel-wired-lan/list/
6831 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
6832 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
6834 F: Documentation/networking/e100.txt
6835 F: Documentation/networking/e1000.txt
6836 F: Documentation/networking/e1000e.txt
6837 F: Documentation/networking/igb.txt
6838 F: Documentation/networking/igbvf.txt
6839 F: Documentation/networking/ixgb.txt
6840 F: Documentation/networking/ixgbe.txt
6841 F: Documentation/networking/ixgbevf.txt
6842 F: Documentation/networking/i40e.txt
6843 F: Documentation/networking/i40evf.txt
6844 F: drivers/net/ethernet/intel/
6845 F: drivers/net/ethernet/intel/*/
6846 F: include/linux/avf/virtchnl.h
6848 INTEL RDMA RNIC DRIVER
6849 M: Faisal Latif <faisal.latif@intel.com>
6850 M: Shiraz Saleem <shiraz.saleem@intel.com>
6851 L: linux-rdma@vger.kernel.org
6853 F: drivers/infiniband/hw/i40iw/
6855 INTEL MERRIFIELD GPIO DRIVER
6856 M: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
6857 L: linux-gpio@vger.kernel.org
6859 F: drivers/gpio/gpio-merrifield.c
6861 INTEL-MID GPIO DRIVER
6862 M: David Cohen <david.a.cohen@linux.intel.com>
6863 L: linux-gpio@vger.kernel.org
6865 F: drivers/gpio/gpio-intel-mid.c
6867 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
6868 M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
6869 L: linux-wireless@vger.kernel.org
6871 F: Documentation/networking/README.ipw2100
6872 F: Documentation/networking/README.ipw2200
6873 F: drivers/net/wireless/intel/ipw2x00/
6876 M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
6878 F: Documentation/trace/intel_th.txt
6879 F: drivers/hwtracing/intel_th/
6881 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
6882 M: Ning Sun <ning.sun@intel.com>
6883 L: tboot-devel@lists.sourceforge.net
6884 W: http://tboot.sourceforge.net
6885 T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
6887 F: Documentation/intel_txt.txt
6888 F: include/linux/tboot.h
6889 F: arch/x86/kernel/tboot.c
6891 INTEL WIRELESS WIMAX CONNECTION 2400
6892 M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
6893 M: linux-wimax@intel.com
6894 L: wimax@linuxwimax.org (subscribers-only)
6896 W: http://linuxwimax.org
6897 F: Documentation/wimax/README.i2400m
6898 F: drivers/net/wimax/i2400m/
6899 F: include/uapi/linux/wimax/i2400m.h
6901 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
6902 M: Stanislaw Gruszka <sgruszka@redhat.com>
6903 L: linux-wireless@vger.kernel.org
6905 F: drivers/net/wireless/intel/iwlegacy/
6907 INTEL WIRELESS WIFI LINK (iwlwifi)
6908 M: Johannes Berg <johannes.berg@intel.com>
6909 M: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
6910 M: Luca Coelho <luciano.coelho@intel.com>
6911 M: Intel Linux Wireless <linuxwifi@intel.com>
6912 L: linux-wireless@vger.kernel.org
6913 W: http://intellinuxwireless.org
6914 T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
6916 F: drivers/net/wireless/intel/iwlwifi/
6918 INTEL MANAGEMENT ENGINE (mei)
6919 M: Tomas Winkler <tomas.winkler@intel.com>
6920 L: linux-kernel@vger.kernel.org
6922 F: include/uapi/linux/mei.h
6923 F: include/linux/mei_cl_bus.h
6924 F: drivers/misc/mei/*
6925 F: drivers/watchdog/mei_wdt.c
6926 F: Documentation/misc-devices/mei/*
6929 INTEL MIC DRIVERS (mic)
6930 M: Sudeep Dutt <sudeep.dutt@intel.com>
6931 M: Ashutosh Dixit <ashutosh.dixit@intel.com>
6933 W: https://github.com/sudeepdutt/mic
6934 W: http://software.intel.com/en-us/mic-developer
6935 F: include/linux/mic_bus.h
6936 F: include/linux/scif.h
6937 F: include/uapi/linux/mic_common.h
6938 F: include/uapi/linux/mic_ioctl.h
6939 F: include/uapi/linux/scif_ioctl.h
6940 F: drivers/misc/mic/
6941 F: drivers/dma/mic_x100_dma.c
6942 F: drivers/dma/mic_x100_dma.h
6943 F: Documentation/mic/
6945 INTEL PMC/P-Unit IPC DRIVER
6946 M: Zha Qipeng<qipeng.zha@intel.com>
6947 L: platform-driver-x86@vger.kernel.org
6949 F: drivers/platform/x86/intel_pmc_ipc.c
6950 F: drivers/platform/x86/intel_punit_ipc.c
6951 F: arch/x86/include/asm/intel_pmc_ipc.h
6952 F: arch/x86/include/asm/intel_punit_ipc.h
6954 INTEL TELEMETRY DRIVER
6955 M: Souvik Kumar Chakravarty <souvik.k.chakravarty@intel.com>
6956 L: platform-driver-x86@vger.kernel.org
6958 F: arch/x86/include/asm/intel_telemetry.h
6959 F: drivers/platform/x86/intel_telemetry*
6961 INTEL PMC CORE DRIVER
6962 M: Rajneesh Bhardwaj <rajneesh.bhardwaj@intel.com>
6963 M: Vishwanath Somayaji <vishwanath.somayaji@intel.com>
6964 L: platform-driver-x86@vger.kernel.org
6966 F: arch/x86/include/asm/pmc_core.h
6967 F: drivers/platform/x86/intel_pmc_core*
6969 INVENSENSE MPU-3050 GYROSCOPE DRIVER
6970 M: Linus Walleij <linus.walleij@linaro.org>
6971 L: linux-iio@vger.kernel.org
6973 F: drivers/iio/gyro/mpu3050*
6974 F: Documentation/devicetree/bindings/iio/gyroscope/inv,mpu3050.txt
6976 IOC3 ETHERNET DRIVER
6977 M: Ralf Baechle <ralf@linux-mips.org>
6978 L: linux-mips@linux-mips.org
6980 F: drivers/net/ethernet/sgi/ioc3-eth.c
6983 M: Pat Gefre <pfg@sgi.com>
6984 L: linux-serial@vger.kernel.org
6986 F: drivers/tty/serial/ioc3_serial.c
6989 M: Joerg Roedel <joro@8bytes.org>
6990 L: iommu@lists.linux-foundation.org
6991 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
6993 F: Documentation/devicetree/bindings/iommu/
6995 F: include/linux/iommu.h
6996 F: include/linux/iova.h
6999 M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
7001 F: net/ipv4/netfilter/ipt_MASQUERADE.c
7004 M: Corey Minyard <minyard@acm.org>
7005 L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
7006 W: http://openipmi.sourceforge.net/
7008 F: Documentation/IPMI.txt
7009 F: drivers/char/ipmi/
7010 F: include/linux/ipmi*
7011 F: include/uapi/linux/ipmi*
7013 QCOM AUDIO (ASoC) DRIVERS
7014 M: Patrick Lai <plai@codeaurora.org>
7015 M: Banajit Goswami <bgoswami@codeaurora.org>
7016 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7020 IPS SCSI RAID DRIVER
7021 M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
7022 L: linux-scsi@vger.kernel.org
7023 W: http://www.adaptec.com/
7025 F: drivers/scsi/ips*
7028 M: Wensong Zhang <wensong@linux-vs.org>
7029 M: Simon Horman <horms@verge.net.au>
7030 M: Julian Anastasov <ja@ssi.bg>
7031 L: netdev@vger.kernel.org
7032 L: lvs-devel@vger.kernel.org
7034 T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
7035 T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
7036 F: Documentation/networking/ipvs-sysctl.txt
7037 F: include/net/ip_vs.h
7038 F: include/uapi/linux/ip_vs.h
7039 F: net/netfilter/ipvs/
7042 M: Jiri Kosina <jikos@kernel.org>
7043 M: David Sterba <dsterba@suse.com>
7045 F: drivers/tty/ipwireless/
7048 L: netdev@vger.kernel.org
7050 F: include/net/ipx.h
7051 F: include/uapi/linux/ipx.h
7055 M: Samuel Ortiz <samuel@sortiz.org>
7056 L: irda-users@lists.sourceforge.net (subscribers-only)
7057 L: netdev@vger.kernel.org
7058 W: http://irda.sourceforge.net/
7060 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
7061 F: Documentation/networking/irda.txt
7062 F: drivers/net/irda/
7063 F: include/net/irda/
7067 M: Thomas Gleixner <tglx@linutronix.de>
7068 L: linux-kernel@vger.kernel.org
7070 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
7074 M: Thomas Gleixner <tglx@linutronix.de>
7075 M: Jason Cooper <jason@lakedaemon.net>
7076 M: Marc Zyngier <marc.zyngier@arm.com>
7077 L: linux-kernel@vger.kernel.org
7079 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
7080 T: git git://git.infradead.org/users/jcooper/linux.git irqchip/core
7081 F: Documentation/devicetree/bindings/interrupt-controller/
7084 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
7085 M: Marc Zyngier <marc.zyngier@arm.com>
7087 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
7088 F: Documentation/IRQ-domain.txt
7089 F: include/linux/irqdomain.h
7090 F: kernel/irq/irqdomain.c
7094 M: William Breathitt Gray <vilhelm.gray@gmail.com>
7096 F: Documentation/isa.txt
7097 F: drivers/base/isa.c
7098 F: include/linux/isa.h
7101 M: Jaroslav Kysela <perex@perex.cz>
7103 F: Documentation/isapnp.txt
7104 F: drivers/pnp/isapnp/
7105 F: include/linux/isapnp.h
7108 M: Hans Verkuil <hverkuil@xs4all.nl>
7109 L: linux-media@vger.kernel.org
7110 T: git git://linuxtv.org/media_tree.git
7111 W: https://linuxtv.org
7113 F: drivers/media/radio/radio-isa*
7115 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
7116 M: Peter Jones <pjones@redhat.com>
7117 M: Konrad Rzeszutek Wilk <konrad@kernel.org>
7119 F: drivers/firmware/iscsi_ibft*
7122 M: Lee Duncan <lduncan@suse.com>
7123 M: Chris Leech <cleech@redhat.com>
7124 L: open-iscsi@googlegroups.com
7125 W: www.open-iscsi.com
7127 F: drivers/scsi/*iscsi*
7128 F: include/scsi/*iscsi*
7130 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
7131 M: Or Gerlitz <ogerlitz@mellanox.com>
7132 M: Sagi Grimberg <sagi@grimberg.me>
7133 M: Roi Dayan <roid@mellanox.com>
7134 L: linux-rdma@vger.kernel.org
7136 W: http://www.openfabrics.org
7137 W: www.open-iscsi.org
7138 Q: http://patchwork.kernel.org/project/linux-rdma/list/
7139 F: drivers/infiniband/ulp/iser/
7141 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
7142 M: Sagi Grimberg <sagi@grimberg.me>
7143 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
7144 L: linux-rdma@vger.kernel.org
7145 L: target-devel@vger.kernel.org
7147 W: http://www.linux-iscsi.org
7148 F: drivers/infiniband/ulp/isert
7151 M: Karsten Keil <isdn@linux-pingi.de>
7152 L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
7153 L: netdev@vger.kernel.org
7154 W: http://www.isdn4linux.de
7155 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
7157 F: Documentation/isdn/
7159 F: include/linux/isdn.h
7160 F: include/linux/isdn/
7161 F: include/uapi/linux/isdn.h
7162 F: include/uapi/linux/isdn/
7164 ISDN SUBSYSTEM (Eicon active card driver)
7165 M: Armin Schindler <mac@melware.de>
7166 L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
7167 W: http://www.melware.de
7169 F: drivers/isdn/hardware/eicon/
7171 IT87 HARDWARE MONITORING DRIVER
7172 M: Jean Delvare <jdelvare@suse.com>
7173 L: linux-hwmon@vger.kernel.org
7175 F: Documentation/hwmon/it87
7176 F: drivers/hwmon/it87.c
7179 M: Antti Palosaari <crope@iki.fi>
7180 L: linux-media@vger.kernel.org
7181 W: https://linuxtv.org
7182 W: http://palosaari.fi/linux/
7183 Q: http://patchwork.linuxtv.org/project/linux-media/list/
7184 T: git git://linuxtv.org/anttip/media_tree.git
7186 F: drivers/media/tuners/it913x*
7188 IVTV VIDEO4LINUX DRIVER
7189 M: Andy Walls <awalls@md.metrocast.net>
7190 L: ivtv-devel@ivtvdriver.org (subscribers-only)
7191 L: linux-media@vger.kernel.org
7192 T: git git://linuxtv.org/media_tree.git
7193 W: http://www.ivtvdriver.org
7195 F: Documentation/media/v4l-drivers/ivtv*
7196 F: drivers/media/pci/ivtv/
7197 F: include/uapi/linux/ivtv*
7199 IX2505V MEDIA DRIVER
7200 M: Malcolm Priestley <tvboxspy@gmail.com>
7201 L: linux-media@vger.kernel.org
7202 W: https://linuxtv.org
7203 Q: http://patchwork.linuxtv.org/project/linux-media/list/
7205 F: drivers/media/dvb-frontends/ix2505v*
7207 JC42.4 TEMPERATURE SENSOR DRIVER
7208 M: Guenter Roeck <linux@roeck-us.net>
7209 L: linux-hwmon@vger.kernel.org
7211 F: drivers/hwmon/jc42.c
7212 F: Documentation/hwmon/jc42
7215 M: Dave Kleikamp <shaggy@kernel.org>
7216 L: jfs-discussion@lists.sourceforge.net
7217 W: http://jfs.sourceforge.net/
7218 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
7220 F: Documentation/filesystems/jfs.txt
7224 M: Guo-Fu Tseng <cooldavid@cooldavid.org>
7225 L: netdev@vger.kernel.org
7227 F: drivers/net/ethernet/jme.*
7229 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
7230 M: David Woodhouse <dwmw2@infradead.org>
7231 L: linux-mtd@lists.infradead.org
7232 W: http://www.linux-mtd.infradead.org/doc/jffs2.html
7235 F: include/uapi/linux/jffs2.h
7237 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
7238 M: "Theodore Ts'o" <tytso@mit.edu>
7239 M: Jan Kara <jack@suse.com>
7240 L: linux-ext4@vger.kernel.org
7243 F: include/linux/jbd2.h
7245 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
7246 M: Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
7247 L: linux-media@vger.kernel.org
7249 F: drivers/media/platform/rcar_jpu.c
7251 JSM Neo PCI based serial card
7252 M: Guilherme G. Piccoli <gpiccoli@linux.vnet.ibm.com>
7253 L: linux-serial@vger.kernel.org
7255 F: drivers/tty/serial/jsm/
7257 K10TEMP HARDWARE MONITORING DRIVER
7258 M: Clemens Ladisch <clemens@ladisch.de>
7259 L: linux-hwmon@vger.kernel.org
7261 F: Documentation/hwmon/k10temp
7262 F: drivers/hwmon/k10temp.c
7264 K8TEMP HARDWARE MONITORING DRIVER
7265 M: Rudolf Marek <r.marek@assembler.cz>
7266 L: linux-hwmon@vger.kernel.org
7268 F: Documentation/hwmon/k8temp
7269 F: drivers/hwmon/k8temp.c
7272 M: Andrey Ryabinin <aryabinin@virtuozzo.com>
7273 R: Alexander Potapenko <glider@google.com>
7274 R: Dmitry Vyukov <dvyukov@google.com>
7275 L: kasan-dev@googlegroups.com
7277 F: arch/*/include/asm/kasan.h
7278 F: arch/*/mm/kasan_init*
7279 F: Documentation/dev-tools/kasan.rst
7280 F: include/linux/kasan*.h
7283 F: scripts/Makefile.kasan
7286 M: "Yann E. MORIN" <yann.morin.1998@free.fr>
7287 L: linux-kbuild@vger.kernel.org
7288 T: git git://gitorious.org/linux-kconfig/linux-kconfig
7290 F: Documentation/kbuild/kconfig-language.txt
7294 M: Dave Young <dyoung@redhat.com>
7295 M: Baoquan He <bhe@redhat.com>
7296 R: Vivek Goyal <vgoyal@redhat.com>
7297 L: kexec@lists.infradead.org
7298 W: http://lse.sourceforge.net/kdump/
7300 F: Documentation/kdump/
7302 KEENE FM RADIO TRANSMITTER DRIVER
7303 M: Hans Verkuil <hverkuil@xs4all.nl>
7304 L: linux-media@vger.kernel.org
7305 T: git git://linuxtv.org/media_tree.git
7306 W: https://linuxtv.org
7308 F: drivers/media/radio/radio-keene*
7310 KERNEL AUTOMOUNTER v4 (AUTOFS4)
7311 M: Ian Kent <raven@themaw.net>
7312 L: autofs@vger.kernel.org
7316 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
7317 M: Masahiro Yamada <yamada.masahiro@socionext.com>
7318 M: Michal Marek <mmarek@suse.com>
7319 T: git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
7320 L: linux-kbuild@vger.kernel.org
7322 F: Documentation/kbuild/
7324 F: scripts/Makefile.*
7330 L: kernel-janitors@vger.kernel.org
7331 W: http://kernelnewbies.org/KernelJanitors
7334 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
7335 M: "J. Bruce Fields" <bfields@fieldses.org>
7336 M: Jeff Layton <jlayton@poochiereds.net>
7337 L: linux-nfs@vger.kernel.org
7338 W: http://nfs.sourceforge.net/
7339 T: git git://linux-nfs.org/~bfields/linux.git
7342 F: include/uapi/linux/nfsd/
7346 F: include/linux/lockd/
7347 F: include/linux/sunrpc/
7348 F: include/uapi/linux/sunrpc/
7350 KERNEL SELFTEST FRAMEWORK
7351 M: Shuah Khan <shuahkh@osg.samsung.com>
7352 M: Shuah Khan <shuah@kernel.org>
7353 L: linux-kselftest@vger.kernel.org
7354 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
7356 F: tools/testing/selftests/
7357 F: Documentation/dev-tools/kselftest*
7359 KERNEL VIRTUAL MACHINE (KVM)
7360 M: Paolo Bonzini <pbonzini@redhat.com>
7361 M: Radim Krčmář <rkrcmar@redhat.com>
7362 L: kvm@vger.kernel.org
7363 W: http://www.linux-kvm.org
7364 T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
7366 F: Documentation/*/kvm*.txt
7367 F: Documentation/virtual/kvm/
7369 F: arch/x86/kernel/kvm.c
7370 F: arch/x86/kernel/kvmclock.c
7371 F: arch/*/include/asm/kvm*
7372 F: include/linux/kvm*
7373 F: include/uapi/linux/kvm*
7377 KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
7378 M: Joerg Roedel <joro@8bytes.org>
7379 L: kvm@vger.kernel.org
7380 W: http://www.linux-kvm.org/
7382 F: arch/x86/include/asm/svm.h
7383 F: arch/x86/kvm/svm.c
7385 KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
7386 M: Alexander Graf <agraf@suse.com>
7387 L: kvm-ppc@vger.kernel.org
7388 W: http://www.linux-kvm.org/
7389 T: git git://github.com/agraf/linux-2.6.git
7391 F: arch/powerpc/include/asm/kvm*
7392 F: arch/powerpc/kvm/
7394 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
7395 M: Christian Borntraeger <borntraeger@de.ibm.com>
7396 M: Cornelia Huck <cohuck@redhat.com>
7397 L: linux-s390@vger.kernel.org
7398 W: http://www.ibm.com/developerworks/linux/linux390/
7399 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
7401 F: Documentation/s390/kvm.txt
7402 F: arch/s390/include/asm/kvm*
7404 F: arch/s390/mm/gmap.c
7406 KERNEL VIRTUAL MACHINE (KVM) FOR ARM
7407 M: Christoffer Dall <christoffer.dall@linaro.org>
7408 M: Marc Zyngier <marc.zyngier@arm.com>
7409 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7410 L: kvmarm@lists.cs.columbia.edu
7411 W: http://systems.cs.columbia.edu/projects/kvm-arm
7412 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
7414 F: arch/arm/include/uapi/asm/kvm*
7415 F: arch/arm/include/asm/kvm*
7418 F: include/kvm/arm_*
7420 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
7421 M: Christoffer Dall <christoffer.dall@linaro.org>
7422 M: Marc Zyngier <marc.zyngier@arm.com>
7423 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7424 L: kvmarm@lists.cs.columbia.edu
7426 F: arch/arm64/include/uapi/asm/kvm*
7427 F: arch/arm64/include/asm/kvm*
7430 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
7431 M: James Hogan <james.hogan@imgtec.com>
7432 L: linux-mips@linux-mips.org
7434 F: arch/mips/include/uapi/asm/kvm*
7435 F: arch/mips/include/asm/kvm*
7439 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7440 M: Tejun Heo <tj@kernel.org>
7441 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
7443 F: include/linux/kernfs.h
7447 M: Eric Biederman <ebiederm@xmission.com>
7448 W: http://kernel.org/pub/linux/utils/kernel/kexec/
7449 L: kexec@lists.infradead.org
7451 F: include/linux/kexec.h
7452 F: include/uapi/linux/kexec.h
7456 M: David Howells <dhowells@redhat.com>
7457 L: keyrings@vger.kernel.org
7459 F: Documentation/security/keys/core.rst
7460 F: include/linux/key.h
7461 F: include/linux/key-type.h
7462 F: include/linux/keyctl.h
7463 F: include/uapi/linux/keyctl.h
7468 M: David Safford <safford@us.ibm.com>
7469 M: Mimi Zohar <zohar@linux.vnet.ibm.com>
7470 L: linux-security-module@vger.kernel.org
7471 L: keyrings@vger.kernel.org
7473 F: Documentation/security/keys/trusted-encrypted.rst
7474 F: include/keys/trusted-type.h
7475 F: security/keys/trusted.c
7476 F: security/keys/trusted.h
7479 M: Mimi Zohar <zohar@linux.vnet.ibm.com>
7480 M: David Safford <safford@us.ibm.com>
7481 L: linux-security-module@vger.kernel.org
7482 L: keyrings@vger.kernel.org
7484 F: Documentation/security/keys/trusted-encrypted.rst
7485 F: include/keys/encrypted-type.h
7486 F: security/keys/encrypted-keys/
7488 KGDB / KDB /debug_core
7489 M: Jason Wessel <jason.wessel@windriver.com>
7490 W: http://kgdb.wiki.kernel.org/
7491 L: kgdb-bugreport@lists.sourceforge.net
7492 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
7494 F: Documentation/dev-tools/kgdb.rst
7495 F: drivers/misc/kgdbts.c
7496 F: drivers/tty/serial/kgdboc.c
7497 F: include/linux/kdb.h
7498 F: include/linux/kgdb.h
7502 M: Vegard Nossum <vegardno@ifi.uio.no>
7503 M: Pekka Enberg <penberg@kernel.org>
7505 F: Documentation/dev-tools/kmemcheck.rst
7506 F: arch/x86/include/asm/kmemcheck.h
7507 F: arch/x86/mm/kmemcheck/
7508 F: include/linux/kmemcheck.h
7512 M: Catalin Marinas <catalin.marinas@arm.com>
7514 F: Documentation/dev-tools/kmemleak.rst
7515 F: include/linux/kmemleak.h
7517 F: mm/kmemleak-test.c
7520 M: Ananth N Mavinakayanahalli <ananth@linux.vnet.ibm.com>
7521 M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
7522 M: "David S. Miller" <davem@davemloft.net>
7523 M: Masami Hiramatsu <mhiramat@kernel.org>
7525 F: Documentation/kprobes.txt
7526 F: include/linux/kprobes.h
7527 F: include/asm-generic/kprobes.h
7530 KS0108 LCD CONTROLLER DRIVER
7531 M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
7532 W: http://miguelojeda.es/auxdisplay.htm
7533 W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
7535 F: Documentation/auxdisplay/ks0108
7536 F: drivers/auxdisplay/ks0108.c
7537 F: include/linux/ks0108.h
7540 M: David Ahern <dsa@cumulusnetworks.com>
7541 L: netdev@vger.kernel.org
7544 F: include/net/l3mdev.h
7546 LANTIQ MIPS ARCHITECTURE
7547 M: John Crispin <john@phrozen.org>
7548 L: linux-mips@linux-mips.org
7553 L: linux-x25@vger.kernel.org
7555 F: Documentation/networking/lapb-module.txt
7559 LASI 53c700 driver for PARISC
7560 M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
7561 L: linux-scsi@vger.kernel.org
7563 F: Documentation/scsi/53c700.txt
7564 F: drivers/scsi/53c700*
7567 M: Richard Purdie <rpurdie@rpsys.net>
7568 M: Jacek Anaszewski <jacek.anaszewski@gmail.com>
7569 M: Pavel Machek <pavel@ucw.cz>
7570 L: linux-leds@vger.kernel.org
7571 T: git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
7573 F: Documentation/devicetree/bindings/leds/
7575 F: include/linux/leds.h
7577 LEGACY EEPROM DRIVER
7578 M: Jean Delvare <jdelvare@suse.com>
7580 F: Documentation/misc-devices/eeprom
7581 F: drivers/misc/eeprom/eeprom.c
7583 LEGO USB Tower driver
7584 M: Juergen Stuber <starblue@users.sourceforge.net>
7585 L: legousb-devel@lists.sourceforge.net
7586 W: http://legousb.sourceforge.net/
7588 F: drivers/usb/misc/legousbtower.c
7591 M: Michael Krufky <mkrufky@linuxtv.org>
7592 L: linux-media@vger.kernel.org
7593 W: https://linuxtv.org
7594 W: http://github.com/mkrufky
7595 Q: http://patchwork.linuxtv.org/project/linux-media/list/
7596 T: git git://linuxtv.org/mkrufky/tuners.git
7598 F: drivers/media/dvb-frontends/lg2160.*
7600 LGDT3305 MEDIA DRIVER
7601 M: Michael Krufky <mkrufky@linuxtv.org>
7602 L: linux-media@vger.kernel.org
7603 W: https://linuxtv.org
7604 W: http://github.com/mkrufky
7605 Q: http://patchwork.linuxtv.org/project/linux-media/list/
7606 T: git git://linuxtv.org/mkrufky/tuners.git
7608 F: drivers/media/dvb-frontends/lgdt3305.*
7611 M: Rusty Russell <rusty@rustcorp.com.au>
7612 L: lguest@lists.ozlabs.org
7613 W: http://lguest.ozlabs.org/
7615 F: arch/x86/include/asm/lguest*.h
7618 F: include/linux/lguest*.h
7621 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
7622 M: Tejun Heo <tj@kernel.org>
7623 L: linux-ide@vger.kernel.org
7624 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7627 F: include/linux/ata.h
7628 F: include/linux/libata.h
7629 F: Documentation/devicetree/bindings/ata/
7631 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
7632 M: Viresh Kumar <vireshk@kernel.org>
7633 L: linux-ide@vger.kernel.org
7634 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7636 F: include/linux/pata_arasan_cf_data.h
7637 F: drivers/ata/pata_arasan_cf.c
7640 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
7641 M: Tejun Heo <tj@kernel.org>
7642 L: linux-ide@vger.kernel.org
7643 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7645 F: drivers/ata/pata_*.c
7646 F: drivers/ata/ata_generic.c
7648 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
7649 M: Linus Walleij <linus.walleij@linaro.org>
7650 L: linux-ide@vger.kernel.org
7651 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7653 F: drivers/ata/pata_ftide010.c
7654 F: drivers/ata/sata_gemini.c
7655 F: drivers/ata/sata_gemini.h
7657 LIBATA SATA AHCI PLATFORM devices support
7658 M: Hans de Goede <hdegoede@redhat.com>
7659 M: Tejun Heo <tj@kernel.org>
7660 L: linux-ide@vger.kernel.org
7661 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7663 F: drivers/ata/ahci_platform.c
7664 F: drivers/ata/libahci_platform.c
7665 F: include/linux/ahci_platform.h
7667 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
7668 M: Mikael Pettersson <mikpelinux@gmail.com>
7669 L: linux-ide@vger.kernel.org
7670 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7672 F: drivers/ata/sata_promise.*
7675 M: Sasha Levin <alexander.levin@verizon.com>
7677 F: tools/lib/lockdep/
7679 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
7680 M: Dan Williams <dan.j.williams@intel.com>
7681 L: linux-nvdimm@lists.01.org
7682 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
7683 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
7686 F: include/linux/nd.h
7687 F: include/linux/libnvdimm.h
7688 F: include/uapi/linux/ndctl.h
7690 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
7691 M: Ross Zwisler <ross.zwisler@linux.intel.com>
7692 L: linux-nvdimm@lists.01.org
7693 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
7695 F: drivers/nvdimm/blk.c
7696 F: drivers/nvdimm/region_devs.c
7697 F: drivers/acpi/nfit*
7699 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
7700 M: Vishal Verma <vishal.l.verma@intel.com>
7701 L: linux-nvdimm@lists.01.org
7702 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
7704 F: drivers/nvdimm/btt*
7706 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
7707 M: Ross Zwisler <ross.zwisler@linux.intel.com>
7708 L: linux-nvdimm@lists.01.org
7709 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
7711 F: drivers/nvdimm/pmem*
7713 LIGHTNVM PLATFORM SUPPORT
7714 M: Matias Bjorling <mb@lightnvm.io>
7715 W: http://github/OpenChannelSSD
7716 L: linux-block@vger.kernel.org
7718 F: drivers/lightnvm/
7719 F: include/linux/lightnvm.h
7720 F: include/uapi/linux/lightnvm.h
7722 LINUX FOR POWERPC (32-BIT AND 64-BIT)
7723 M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
7724 M: Paul Mackerras <paulus@samba.org>
7725 M: Michael Ellerman <mpe@ellerman.id.au>
7726 W: https://github.com/linuxppc/linux/wiki
7727 L: linuxppc-dev@lists.ozlabs.org
7728 Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
7729 T: git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
7731 F: Documentation/ABI/stable/sysfs-firmware-opal-*
7732 F: Documentation/devicetree/bindings/powerpc/
7733 F: Documentation/devicetree/bindings/rtc/rtc-opal.txt
7734 F: Documentation/devicetree/bindings/i2c/i2c-opal.txt
7735 F: Documentation/powerpc/
7737 F: drivers/char/tpm/tpm_ibmvtpm*
7738 F: drivers/crypto/nx/
7739 F: drivers/crypto/vmx/
7740 F: drivers/i2c/busses/i2c-opal.c
7741 F: drivers/net/ethernet/ibm/ibmveth.*
7742 F: drivers/net/ethernet/ibm/ibmvnic.*
7743 F: drivers/pci/hotplug/pnv_php.c
7744 F: drivers/pci/hotplug/rpa*
7745 F: drivers/rtc/rtc-opal.c
7746 F: drivers/scsi/ibmvscsi/
7747 F: drivers/tty/hvc/hvc_opal.c
7748 F: tools/testing/selftests/powerpc
7755 LINUX FOR POWER MACINTOSH
7756 M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
7757 W: http://www.penguinppc.org/
7758 L: linuxppc-dev@lists.ozlabs.org
7760 F: arch/powerpc/platforms/powermac/
7761 F: drivers/macintosh/
7763 LINUX FOR POWERPC EMBEDDED MPC5XXX
7764 M: Anatolij Gustschin <agust@denx.de>
7765 L: linuxppc-dev@lists.ozlabs.org
7766 T: git git://git.denx.de/linux-denx-agust.git
7768 F: arch/powerpc/platforms/512x/
7769 F: arch/powerpc/platforms/52xx/
7771 LINUX FOR POWERPC EMBEDDED PPC4XX
7772 M: Alistair Popple <alistair@popple.id.au>
7773 M: Matt Porter <mporter@kernel.crashing.org>
7774 W: http://www.penguinppc.org/
7775 L: linuxppc-dev@lists.ozlabs.org
7777 F: arch/powerpc/platforms/40x/
7778 F: arch/powerpc/platforms/44x/
7780 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
7781 L: linuxppc-dev@lists.ozlabs.org
7783 F: arch/powerpc/*/*virtex*
7784 F: arch/powerpc/*/*/*virtex*
7786 LINUX FOR POWERPC EMBEDDED PPC8XX
7787 M: Vitaly Bordug <vitb@kernel.crashing.org>
7788 W: http://www.penguinppc.org/
7789 L: linuxppc-dev@lists.ozlabs.org
7791 F: arch/powerpc/platforms/8xx/
7793 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
7794 M: Scott Wood <oss@buserror.net>
7795 M: Kumar Gala <galak@kernel.crashing.org>
7796 W: http://www.penguinppc.org/
7797 L: linuxppc-dev@lists.ozlabs.org
7798 T: git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
7800 F: arch/powerpc/platforms/83xx/
7801 F: arch/powerpc/platforms/85xx/
7802 F: Documentation/devicetree/bindings/powerpc/fsl/
7804 LINUX FOR POWERPC PA SEMI PWRFICIENT
7805 L: linuxppc-dev@lists.ozlabs.org
7807 F: arch/powerpc/platforms/pasemi/
7808 F: drivers/*/*pasemi*
7809 F: drivers/*/*/*pasemi*
7811 LINUX SECURITY MODULE (LSM) FRAMEWORK
7812 M: Chris Wright <chrisw@sous-sol.org>
7813 L: linux-security-module@vger.kernel.org
7816 LIS3LV02D ACCELEROMETER DRIVER
7817 M: Eric Piel <eric.piel@tremplin-utc.net>
7819 F: Documentation/misc-devices/lis3lv02d
7820 F: drivers/misc/lis3lv02d/
7821 F: drivers/platform/x86/hp_accel.c
7824 M: Josh Poimboeuf <jpoimboe@redhat.com>
7825 M: Jessica Yu <jeyu@kernel.org>
7826 M: Jiri Kosina <jikos@kernel.org>
7827 M: Miroslav Benes <mbenes@suse.cz>
7828 R: Petr Mladek <pmladek@suse.com>
7830 F: kernel/livepatch/
7831 F: include/linux/livepatch.h
7832 F: arch/x86/include/asm/livepatch.h
7833 F: arch/x86/kernel/livepatch.c
7834 F: Documentation/livepatch/
7835 F: Documentation/ABI/testing/sysfs-kernel-livepatch
7836 F: samples/livepatch/
7837 L: live-patching@vger.kernel.org
7838 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
7840 LINUX KERNEL DUMP TEST MODULE (LKDTM)
7841 M: Kees Cook <keescook@chromium.org>
7843 F: drivers/misc/lkdtm*
7846 L: netdev@vger.kernel.org
7848 F: include/linux/llc.h
7849 F: include/uapi/linux/llc.h
7853 LM73 HARDWARE MONITOR DRIVER
7854 M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
7855 L: linux-hwmon@vger.kernel.org
7857 F: drivers/hwmon/lm73.c
7859 LM78 HARDWARE MONITOR DRIVER
7860 M: Jean Delvare <jdelvare@suse.com>
7861 L: linux-hwmon@vger.kernel.org
7863 F: Documentation/hwmon/lm78
7864 F: drivers/hwmon/lm78.c
7866 LM83 HARDWARE MONITOR DRIVER
7867 M: Jean Delvare <jdelvare@suse.com>
7868 L: linux-hwmon@vger.kernel.org
7870 F: Documentation/hwmon/lm83
7871 F: drivers/hwmon/lm83.c
7873 LM90 HARDWARE MONITOR DRIVER
7874 M: Jean Delvare <jdelvare@suse.com>
7875 L: linux-hwmon@vger.kernel.org
7877 F: Documentation/hwmon/lm90
7878 F: Documentation/devicetree/bindings/hwmon/lm90.txt
7879 F: drivers/hwmon/lm90.c
7880 F: include/dt-bindings/thermal/lm90.h
7882 LM95234 HARDWARE MONITOR DRIVER
7883 M: Guenter Roeck <linux@roeck-us.net>
7884 L: linux-hwmon@vger.kernel.org
7886 F: Documentation/hwmon/lm95234
7887 F: drivers/hwmon/lm95234.c
7889 LME2510 MEDIA DRIVER
7890 M: Malcolm Priestley <tvboxspy@gmail.com>
7891 L: linux-media@vger.kernel.org
7892 W: https://linuxtv.org
7893 Q: http://patchwork.linuxtv.org/project/linux-media/list/
7895 F: drivers/media/usb/dvb-usb-v2/lmedm04*
7898 M: Peter Zijlstra <peterz@infradead.org>
7899 M: Ingo Molnar <mingo@redhat.com>
7900 L: linux-kernel@vger.kernel.org
7901 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7903 F: Documentation/locking/
7904 F: include/linux/lockdep.h
7905 F: include/linux/spinlock*.h
7906 F: arch/*/include/asm/spinlock*.h
7907 F: include/linux/rwlock*.h
7908 F: include/linux/mutex*.h
7909 F: arch/*/include/asm/mutex*.h
7910 F: include/linux/rwsem*.h
7911 F: arch/*/include/asm/rwsem.h
7912 F: include/linux/seqlock.h
7913 F: lib/locking*.[ch]
7916 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
7917 M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
7918 L: linux-ntfs-dev@lists.sourceforge.net
7919 W: http://www.linux-ntfs.org/content/view/19/37/
7921 F: Documentation/ldm.txt
7922 F: block/partitions/ldm.*
7924 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
7925 M: Sathya Prakash <sathya.prakash@broadcom.com>
7926 M: Chaitra P B <chaitra.basappa@broadcom.com>
7927 M: Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
7928 L: MPT-FusionLinux.pdl@broadcom.com
7929 L: linux-scsi@vger.kernel.org
7930 W: http://www.avagotech.com/support/
7932 F: drivers/message/fusion/
7933 F: drivers/scsi/mpt2sas/
7934 F: drivers/scsi/mpt3sas/
7936 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
7937 M: Matthew Wilcox <matthew@wil.cx>
7938 L: linux-scsi@vger.kernel.org
7940 F: drivers/scsi/sym53c8xx_2/
7942 LTC4261 HARDWARE MONITOR DRIVER
7943 M: Guenter Roeck <linux@roeck-us.net>
7944 L: linux-hwmon@vger.kernel.org
7946 F: Documentation/hwmon/ltc4261
7947 F: drivers/hwmon/ltc4261.c
7949 LTC4306 I2C MULTIPLEXER DRIVER
7950 M: Michael Hennerich <michael.hennerich@analog.com>
7951 W: http://ez.analog.com/community/linux-device-drivers
7952 L: linux-i2c@vger.kernel.org
7954 F: drivers/i2c/muxes/i2c-mux-ltc4306.c
7955 F: Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
7957 LTP (Linux Test Project)
7958 M: Mike Frysinger <vapier@gentoo.org>
7959 M: Cyril Hrubis <chrubis@suse.cz>
7960 M: Wanlong Gao <wanlong.gao@gmail.com>
7961 M: Jan Stancek <jstancek@redhat.com>
7962 M: Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
7963 M: Alexey Kodanev <alexey.kodanev@oracle.com>
7964 L: ltp@lists.linux.it (subscribers-only)
7965 W: http://linux-test-project.github.io/
7966 T: git git://github.com/linux-test-project/ltp.git
7970 W: http://www.linux-m32r.org/
7975 M: Geert Uytterhoeven <geert@linux-m68k.org>
7976 L: linux-m68k@lists.linux-m68k.org
7977 W: http://www.linux-m68k.org/
7978 T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
7983 M68K ON APPLE MACINTOSH
7984 M: Joshua Thompson <funaho@jurai.org>
7985 W: http://www.mac.linux-m68k.org/
7986 L: linux-m68k@lists.linux-m68k.org
7991 M: Philip Blundell <philb@gnu.org>
7992 W: http://www.tazenda.demon.co.uk/phil/linux-hp
7996 M88DS3103 MEDIA DRIVER
7997 M: Antti Palosaari <crope@iki.fi>
7998 L: linux-media@vger.kernel.org
7999 W: https://linuxtv.org
8000 W: http://palosaari.fi/linux/
8001 Q: http://patchwork.linuxtv.org/project/linux-media/list/
8002 T: git git://linuxtv.org/anttip/media_tree.git
8004 F: drivers/media/dvb-frontends/m88ds3103*
8006 M88RS2000 MEDIA DRIVER
8007 M: Malcolm Priestley <tvboxspy@gmail.com>
8008 L: linux-media@vger.kernel.org
8009 W: https://linuxtv.org
8010 Q: http://patchwork.linuxtv.org/project/linux-media/list/
8012 F: drivers/media/dvb-frontends/m88rs2000*
8014 MA901 MASTERKIT USB FM RADIO DRIVER
8015 M: Alexey Klimov <klimov.linux@gmail.com>
8016 L: linux-media@vger.kernel.org
8017 T: git git://linuxtv.org/media_tree.git
8019 F: drivers/media/radio/radio-ma901.c
8022 M: Johannes Berg <johannes@sipsolutions.net>
8023 L: linux-wireless@vger.kernel.org
8024 W: http://wireless.kernel.org/
8025 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
8026 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
8028 F: Documentation/networking/mac80211-injection.txt
8029 F: include/net/mac80211.h
8031 F: drivers/net/wireless/mac80211_hwsim.[ch]
8034 M: Jassi Brar <jassisinghbrar@gmail.com>
8035 L: linux-kernel@vger.kernel.org
8038 F: include/linux/mailbox_client.h
8039 F: include/linux/mailbox_controller.h
8041 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
8042 M: Michael Kerrisk <mtk.manpages@gmail.com>
8043 W: http://www.kernel.org/doc/man-pages
8044 L: linux-man@vger.kernel.org
8047 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
8048 M: Rahul Bedarkar <rahulbedarkar89@gmail.com>
8049 L: linux-mips@linux-mips.org
8051 F: arch/mips/boot/dts/img/pistachio_marduk.dts
8053 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
8054 M: Andrew Lunn <andrew@lunn.ch>
8055 M: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
8056 L: netdev@vger.kernel.org
8058 F: drivers/net/dsa/mv88e6xxx/
8059 F: Documentation/devicetree/bindings/net/dsa/marvell.txt
8061 MARVELL ARMADA DRM SUPPORT
8062 M: Russell King <linux@armlinux.org.uk>
8064 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
8065 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
8066 F: drivers/gpu/drm/armada/
8067 F: include/uapi/drm/armada_drm.h
8068 F: Documentation/devicetree/bindings/display/armada/
8070 MARVELL CRYPTO DRIVER
8071 M: Boris Brezillon <boris.brezillon@free-electrons.com>
8072 M: Arnaud Ebalard <arno@natisbad.org>
8073 F: drivers/crypto/marvell/
8075 L: linux-crypto@vger.kernel.org
8077 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
8078 M: Mirko Lindner <mlindner@marvell.com>
8079 M: Stephen Hemminger <stephen@networkplumber.org>
8080 L: netdev@vger.kernel.org
8082 F: drivers/net/ethernet/marvell/sk*
8084 MARVELL LIBERTAS WIRELESS DRIVER
8085 L: libertas-dev@lists.infradead.org
8087 F: drivers/net/wireless/marvell/libertas/
8089 MARVELL MV643XX ETHERNET DRIVER
8090 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
8091 L: netdev@vger.kernel.org
8093 F: drivers/net/ethernet/marvell/mv643xx_eth.*
8094 F: include/linux/mv643xx.h
8096 MARVELL MV88X3310 PHY DRIVER
8097 M: Russell King <rmk@armlinux.org.uk>
8098 L: netdev@vger.kernel.org
8100 F: drivers/net/phy/marvell10g.c
8102 MARVELL MVNETA ETHERNET DRIVER
8103 M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8104 L: netdev@vger.kernel.org
8106 F: drivers/net/ethernet/marvell/mvneta.*
8108 MARVELL MWIFIEX WIRELESS DRIVER
8109 M: Amitkumar Karwar <amitkarwar@gmail.com>
8110 M: Nishant Sarmukadam <nishants@marvell.com>
8111 M: Ganapathi Bhat <gbhat@marvell.com>
8112 M: Xinming Hu <huxm@marvell.com>
8113 L: linux-wireless@vger.kernel.org
8115 F: drivers/net/wireless/marvell/mwifiex/
8117 MARVELL MWL8K WIRELESS DRIVER
8118 M: Lennert Buytenhek <buytenh@wantstofly.org>
8119 L: linux-wireless@vger.kernel.org
8121 F: drivers/net/wireless/marvell/mwl8k.c
8123 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
8124 M: Nicolas Pitre <nico@fluxnic.net>
8126 F: drivers/mmc/host/mvsdio.*
8128 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
8129 M: Hu Ziji <huziji@marvell.com>
8130 L: linux-mmc@vger.kernel.org
8132 F: drivers/mmc/host/sdhci-xenon*
8133 F: Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
8135 MATROX FRAMEBUFFER DRIVER
8136 L: linux-fbdev@vger.kernel.org
8138 F: drivers/video/fbdev/matrox/matroxfb_*
8139 F: include/uapi/linux/matroxfb.h
8141 MAX16065 HARDWARE MONITOR DRIVER
8142 M: Guenter Roeck <linux@roeck-us.net>
8143 L: linux-hwmon@vger.kernel.org
8145 F: Documentation/hwmon/max16065
8146 F: drivers/hwmon/max16065.c
8148 MAX20751 HARDWARE MONITOR DRIVER
8149 M: Guenter Roeck <linux@roeck-us.net>
8150 L: linux-hwmon@vger.kernel.org
8152 F: Documentation/hwmon/max20751
8153 F: drivers/hwmon/max20751.c
8155 MAX2175 SDR TUNER DRIVER
8156 M: Ramesh Shanmugasundaram <ramesh.shanmugasundaram@bp.renesas.com>
8157 L: linux-media@vger.kernel.org
8158 T: git git://linuxtv.org/media_tree.git
8160 F: Documentation/devicetree/bindings/media/i2c/max2175.txt
8161 F: Documentation/media/v4l-drivers/max2175.rst
8162 F: drivers/media/i2c/max2175*
8163 F: include/uapi/linux/max2175.h
8165 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
8166 L: linux-hwmon@vger.kernel.org
8168 F: Documentation/hwmon/max6650
8169 F: drivers/hwmon/max6650.c
8171 MAX6697 HARDWARE MONITOR DRIVER
8172 M: Guenter Roeck <linux@roeck-us.net>
8173 L: linux-hwmon@vger.kernel.org
8175 F: Documentation/hwmon/max6697
8176 F: Documentation/devicetree/bindings/i2c/max6697.txt
8177 F: drivers/hwmon/max6697.c
8178 F: include/linux/platform_data/max6697.h
8180 MAX9860 MONO AUDIO VOICE CODEC DRIVER
8181 M: Peter Rosin <peda@axentia.se>
8182 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8184 F: Documentation/devicetree/bindings/sound/max9860.txt
8185 F: sound/soc/codecs/max9860.*
8187 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
8188 M: Krzysztof Kozlowski <krzk@kernel.org>
8189 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
8190 L: linux-pm@vger.kernel.org
8192 F: drivers/power/supply/max14577_charger.c
8193 F: drivers/power/supply/max77693_charger.c
8195 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
8196 M: Javier Martinez Canillas <javier@dowhile0.org>
8197 L: linux-kernel@vger.kernel.org
8199 F: drivers/regulator/max77802-regulator.c
8200 F: Documentation/devicetree/bindings/*/*max77802.txt
8201 F: include/dt-bindings/*/*max77802.h
8203 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
8204 M: Chanwoo Choi <cw00.choi@samsung.com>
8205 M: Krzysztof Kozlowski <krzk@kernel.org>
8206 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
8207 L: linux-kernel@vger.kernel.org
8209 F: drivers/*/max14577*.c
8210 F: drivers/*/max77686*.c
8211 F: drivers/*/max77693*.c
8212 F: drivers/extcon/extcon-max14577.c
8213 F: drivers/extcon/extcon-max77693.c
8214 F: drivers/rtc/rtc-max77686.c
8215 F: drivers/clk/clk-max77686.c
8216 F: Documentation/devicetree/bindings/mfd/max14577.txt
8217 F: Documentation/devicetree/bindings/*/max77686.txt
8218 F: Documentation/devicetree/bindings/mfd/max77693.txt
8219 F: Documentation/devicetree/bindings/clock/maxim,max77686.txt
8220 F: include/linux/mfd/max14577*.h
8221 F: include/linux/mfd/max77686*.h
8222 F: include/linux/mfd/max77693*.h
8224 MAXIRADIO FM RADIO RECEIVER DRIVER
8225 M: Hans Verkuil <hverkuil@xs4all.nl>
8226 L: linux-media@vger.kernel.org
8227 T: git git://linuxtv.org/media_tree.git
8228 W: https://linuxtv.org
8230 F: drivers/media/radio/radio-maxiradio*
8232 MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVER
8233 M: Peter Rosin <peda@axentia.se>
8234 L: linux-iio@vger.kernel.org
8236 F: Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
8237 F: drivers/iio/potentiometer/mcp4531.c
8239 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
8240 M: William Breathitt Gray <vilhelm.gray@gmail.com>
8241 L: linux-iio@vger.kernel.org
8243 F: drivers/iio/dac/cio-dac.c
8245 MEDIA DRIVERS FOR RENESAS - DRIF
8246 M: Ramesh Shanmugasundaram <ramesh.shanmugasundaram@bp.renesas.com>
8247 L: linux-media@vger.kernel.org
8248 L: linux-renesas-soc@vger.kernel.org
8249 T: git git://linuxtv.org/media_tree.git
8251 F: Documentation/devicetree/bindings/media/renesas,drif.txt
8252 F: drivers/media/platform/rcar_drif.c
8254 MEDIA DRIVERS FOR FREESCALE IMX
8255 M: Steve Longerbeam <slongerbeam@gmail.com>
8256 M: Philipp Zabel <p.zabel@pengutronix.de>
8257 L: linux-media@vger.kernel.org
8258 T: git git://linuxtv.org/media_tree.git
8260 F: Documentation/devicetree/bindings/media/imx.txt
8261 F: Documentation/media/v4l-drivers/imx.rst
8262 F: drivers/staging/media/imx/
8263 F: include/linux/imx-media.h
8264 F: include/media/imx.h
8266 MEDIA DRIVERS FOR RENESAS - FCP
8267 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8268 L: linux-media@vger.kernel.org
8269 L: linux-renesas-soc@vger.kernel.org
8270 T: git git://linuxtv.org/media_tree.git
8272 F: Documentation/devicetree/bindings/media/renesas,fcp.txt
8273 F: drivers/media/platform/rcar-fcp.c
8274 F: include/media/rcar-fcp.h
8276 MEDIA DRIVERS FOR RENESAS - FDP1
8277 M: Kieran Bingham <kieran@bingham.xyz>
8278 L: linux-media@vger.kernel.org
8279 L: linux-renesas-soc@vger.kernel.org
8280 T: git git://linuxtv.org/media_tree.git
8282 F: Documentation/devicetree/bindings/media/renesas,fdp1.txt
8283 F: drivers/media/platform/rcar_fdp1.c
8285 MEDIA DRIVERS FOR RENESAS - VIN
8286 M: Niklas Söderlund <niklas.soderlund@ragnatech.se>
8287 L: linux-media@vger.kernel.org
8288 L: linux-renesas-soc@vger.kernel.org
8289 T: git git://linuxtv.org/media_tree.git
8291 F: Documentation/devicetree/bindings/media/rcar_vin.txt
8292 F: drivers/media/platform/rcar-vin/
8294 MEDIA DRIVERS FOR RENESAS - VSP1
8295 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8296 L: linux-media@vger.kernel.org
8297 L: linux-renesas-soc@vger.kernel.org
8298 T: git git://linuxtv.org/media_tree.git
8300 F: Documentation/devicetree/bindings/media/renesas,vsp1.txt
8301 F: drivers/media/platform/vsp1/
8303 MEDIA DRIVERS FOR HELENE
8304 M: Abylay Ospan <aospan@netup.ru>
8305 L: linux-media@vger.kernel.org
8306 W: https://linuxtv.org
8308 T: git git://linuxtv.org/media_tree.git
8310 F: drivers/media/dvb-frontends/helene*
8312 MEDIA DRIVERS FOR ASCOT2E
8313 M: Sergey Kozlov <serjk@netup.ru>
8314 M: Abylay Ospan <aospan@netup.ru>
8315 L: linux-media@vger.kernel.org
8316 W: https://linuxtv.org
8318 T: git git://linuxtv.org/media_tree.git
8320 F: drivers/media/dvb-frontends/ascot2e*
8322 MEDIA DRIVERS FOR CXD2841ER
8323 M: Sergey Kozlov <serjk@netup.ru>
8324 M: Abylay Ospan <aospan@netup.ru>
8325 L: linux-media@vger.kernel.org
8326 W: https://linuxtv.org
8328 T: git git://linuxtv.org/media_tree.git
8330 F: drivers/media/dvb-frontends/cxd2841er*
8332 MEDIA DRIVERS FOR HORUS3A
8333 M: Sergey Kozlov <serjk@netup.ru>
8334 M: Abylay Ospan <aospan@netup.ru>
8335 L: linux-media@vger.kernel.org
8336 W: https://linuxtv.org
8338 T: git git://linuxtv.org/media_tree.git
8340 F: drivers/media/dvb-frontends/horus3a*
8342 MEDIA DRIVERS FOR LNBH25
8343 M: Sergey Kozlov <serjk@netup.ru>
8344 M: Abylay Ospan <aospan@netup.ru>
8345 L: linux-media@vger.kernel.org
8346 W: https://linuxtv.org
8348 T: git git://linuxtv.org/media_tree.git
8350 F: drivers/media/dvb-frontends/lnbh25*
8352 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
8353 M: Sergey Kozlov <serjk@netup.ru>
8354 M: Abylay Ospan <aospan@netup.ru>
8355 L: linux-media@vger.kernel.org
8356 W: https://linuxtv.org
8358 T: git git://linuxtv.org/media_tree.git
8360 F: drivers/media/pci/netup_unidvb/*
8362 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
8363 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
8364 M: Mauro Carvalho Chehab <mchehab@kernel.org>
8365 P: LinuxTV.org Project
8366 L: linux-media@vger.kernel.org
8367 W: https://linuxtv.org
8368 Q: http://patchwork.kernel.org/project/linux-media/list/
8369 T: git git://linuxtv.org/media_tree.git
8371 F: Documentation/devicetree/bindings/media/
8372 F: Documentation/media/
8374 F: drivers/staging/media/
8375 F: include/linux/platform_data/media/
8377 F: include/uapi/linux/dvb/
8378 F: include/uapi/linux/videodev2.h
8379 F: include/uapi/linux/media.h
8380 F: include/uapi/linux/v4l2-*
8381 F: include/uapi/linux/meye.h
8382 F: include/uapi/linux/ivtv*
8383 F: include/uapi/linux/uvcvideo.h
8385 MEDIATEK ETHERNET DRIVER
8386 M: Felix Fietkau <nbd@openwrt.org>
8387 M: John Crispin <blogic@openwrt.org>
8388 L: netdev@vger.kernel.org
8390 F: drivers/net/ethernet/mediatek/
8392 MEDIATEK JPEG DRIVER
8393 M: Rick Chang <rick.chang@mediatek.com>
8394 M: Bin Liu <bin.liu@mediatek.com>
8396 F: drivers/media/platform/mtk-jpeg/
8397 F: Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
8399 MEDIATEK MEDIA DRIVER
8400 M: Tiffany Lin <tiffany.lin@mediatek.com>
8401 M: Andrew-CT Chen <andrew-ct.chen@mediatek.com>
8403 F: drivers/media/platform/mtk-vcodec/
8404 F: drivers/media/platform/mtk-vpu/
8405 F: Documentation/devicetree/bindings/media/mediatek-vcodec.txt
8406 F: Documentation/devicetree/bindings/media/mediatek-vpu.txt
8409 M: Minghsiu Tsai <minghsiu.tsai@mediatek.com>
8410 M: Houlong Wei <houlong.wei@mediatek.com>
8411 M: Andrew-CT Chen <andrew-ct.chen@mediatek.com>
8413 F: drivers/media/platform/mtk-mdp/
8414 F: drivers/media/platform/mtk-vpu/
8415 F: Documentation/devicetree/bindings/media/mediatek-mdp.txt
8417 MEDIATEK MT7601U WIRELESS LAN DRIVER
8418 M: Jakub Kicinski <kubakici@wp.pl>
8419 L: linux-wireless@vger.kernel.org
8421 F: drivers/net/wireless/mediatek/mt7601u/
8423 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
8424 M: Sean Wang <sean.wang@mediatek.com>
8426 F: drivers/char/hw_random/mtk-rng.c
8428 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
8429 M: Peter Senna Tschudin <peter.senna@collabora.com>
8430 M: Martin Donnelly <martin.donnelly@ge.com>
8431 M: Martyn Welch <martyn.welch@collabora.co.uk>
8433 F: drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
8434 F: Documentation/devicetree/bindings/video/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
8436 MEGARAID SCSI/SAS DRIVERS
8437 M: Kashyap Desai <kashyap.desai@broadcom.com>
8438 M: Sumit Saxena <sumit.saxena@broadcom.com>
8439 M: Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
8440 L: megaraidlinux.pdl@broadcom.com
8441 L: linux-scsi@vger.kernel.org
8442 W: http://www.avagotech.com/support/
8444 F: Documentation/scsi/megaraid.txt
8445 F: drivers/scsi/megaraid.*
8446 F: drivers/scsi/megaraid/
8448 MELFAS MIP4 TOUCHSCREEN DRIVER
8449 M: Sangwon Jee <jeesw@melfas.com>
8450 W: http://www.melfas.com
8452 F: drivers/input/touchscreen/melfas_mip4.c
8453 F: Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
8455 MELLANOX ETHERNET DRIVER (mlx4_en)
8456 M: Tariq Toukan <tariqt@mellanox.com>
8457 L: netdev@vger.kernel.org
8459 W: http://www.mellanox.com
8460 Q: http://patchwork.ozlabs.org/project/netdev/list/
8461 F: drivers/net/ethernet/mellanox/mlx4/en_*
8463 MELLANOX ETHERNET DRIVER (mlx5e)
8464 M: Saeed Mahameed <saeedm@mellanox.com>
8465 L: netdev@vger.kernel.org
8467 W: http://www.mellanox.com
8468 Q: http://patchwork.ozlabs.org/project/netdev/list/
8469 F: drivers/net/ethernet/mellanox/mlx5/core/en_*
8471 MELLANOX ETHERNET INNOVA DRIVER
8472 M: Ilan Tayari <ilant@mellanox.com>
8473 R: Boris Pismenny <borisp@mellanox.com>
8474 L: netdev@vger.kernel.org
8476 W: http://www.mellanox.com
8477 Q: http://patchwork.ozlabs.org/project/netdev/list/
8478 F: drivers/net/ethernet/mellanox/mlx5/core/fpga/*
8479 F: include/linux/mlx5/mlx5_ifc_fpga.h
8481 MELLANOX ETHERNET INNOVA IPSEC DRIVER
8482 M: Ilan Tayari <ilant@mellanox.com>
8483 R: Boris Pismenny <borisp@mellanox.com>
8484 L: netdev@vger.kernel.org
8486 W: http://www.mellanox.com
8487 Q: http://patchwork.ozlabs.org/project/netdev/list/
8488 F: drivers/net/ethernet/mellanox/mlx5/core/en_ipsec/*
8489 F: drivers/net/ethernet/mellanox/mlx5/core/ipsec*
8491 MELLANOX ETHERNET SWITCH DRIVERS
8492 M: Jiri Pirko <jiri@mellanox.com>
8493 M: Ido Schimmel <idosch@mellanox.com>
8494 L: netdev@vger.kernel.org
8496 W: http://www.mellanox.com
8497 Q: http://patchwork.ozlabs.org/project/netdev/list/
8498 F: drivers/net/ethernet/mellanox/mlxsw/
8500 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
8501 M: Yotam Gigi <yotamg@mellanox.com>
8502 L: netdev@vger.kernel.org
8504 W: http://www.mellanox.com
8505 Q: http://patchwork.ozlabs.org/project/netdev/list/
8506 F: drivers/net/ethernet/mellanox/mlxfw/
8508 MELLANOX MLXCPLD I2C AND MUX DRIVER
8509 M: Vadim Pasternak <vadimp@mellanox.com>
8510 M: Michael Shych <michaelsh@mellanox.com>
8511 L: linux-i2c@vger.kernel.org
8513 F: drivers/i2c/busses/i2c-mlxcpld.c
8514 F: drivers/i2c/muxes/i2c-mux-mlxcpld.c
8515 F: Documentation/i2c/busses/i2c-mlxcpld
8517 MELLANOX MLXCPLD LED DRIVER
8518 M: Vadim Pasternak <vadimp@mellanox.com>
8519 L: linux-leds@vger.kernel.org
8521 F: drivers/leds/leds-mlxcpld.c
8522 F: Documentation/leds/leds-mlxcpld.txt
8524 MELLANOX PLATFORM DRIVER
8525 M: Vadim Pasternak <vadimp@mellanox.com>
8526 L: platform-driver-x86@vger.kernel.org
8528 F: drivers/platform/x86/mlx-platform.c
8530 MELLANOX MLX CPLD HOTPLUG DRIVER
8531 M: Vadim Pasternak <vadimp@mellanox.com>
8532 L: platform-driver-x86@vger.kernel.org
8534 F: drivers/platform/x86/mlxcpld-hotplug.c
8535 F: include/linux/platform_data/mlxcpld-hotplug.h
8537 SOFT-ROCE DRIVER (rxe)
8538 M: Moni Shoua <monis@mellanox.com>
8539 L: linux-rdma@vger.kernel.org
8541 W: https://github.com/SoftRoCE/rxe-dev/wiki/rxe-dev:-Home
8542 Q: http://patchwork.kernel.org/project/linux-rdma/list/
8543 F: drivers/infiniband/sw/rxe/
8544 F: include/uapi/rdma/rdma_user_rxe.h
8547 M: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8548 M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8549 L: linux-kernel@vger.kernel.org
8551 F: kernel/membarrier.c
8552 F: include/uapi/linux/membarrier.h
8555 L: linux-mm@kvack.org
8556 W: http://www.linux-mm.org
8558 F: include/linux/mm.h
8559 F: include/linux/gfp.h
8560 F: include/linux/mmzone.h
8561 F: include/linux/memory_hotplug.h
8562 F: include/linux/vmalloc.h
8565 MEMORY TECHNOLOGY DEVICES (MTD)
8566 M: David Woodhouse <dwmw2@infradead.org>
8567 M: Brian Norris <computersforpeace@gmail.com>
8568 M: Boris Brezillon <boris.brezillon@free-electrons.com>
8569 M: Marek Vasut <marek.vasut@gmail.com>
8570 M: Richard Weinberger <richard@nod.at>
8571 M: Cyrille Pitchen <cyrille.pitchen@wedev4u.fr>
8572 L: linux-mtd@lists.infradead.org
8573 W: http://www.linux-mtd.infradead.org/
8574 Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
8575 T: git git://git.infradead.org/linux-mtd.git master
8576 T: git git://git.infradead.org/l2-mtd.git master
8578 F: Documentation/devicetree/bindings/mtd/
8580 F: include/linux/mtd/
8581 F: include/uapi/mtd/
8583 MEN A21 WATCHDOG DRIVER
8584 M: Johannes Thumshirn <morbidrsa@gmail.com>
8585 L: linux-watchdog@vger.kernel.org
8587 F: drivers/watchdog/mena21_wdt.c
8589 MEN CHAMELEON BUS (mcb)
8590 M: Johannes Thumshirn <morbidrsa@gmail.com>
8593 F: include/linux/mcb.h
8594 F: Documentation/men-chameleon-bus.txt
8596 MEN F21BMC (Board Management Controller)
8597 M: Andreas Werner <andreas.werner@men.de>
8599 F: drivers/mfd/menf21bmc.c
8600 F: drivers/watchdog/menf21bmc_wdt.c
8601 F: drivers/leds/leds-menf21bmc.c
8602 F: drivers/hwmon/menf21bmc_hwmon.c
8603 F: Documentation/hwmon/menf21bmc
8606 M: James Hogan <james.hogan@imgtec.com>
8607 L: linux-metag@vger.kernel.org
8608 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jhogan/metag.git
8611 F: Documentation/metag/
8612 F: Documentation/devicetree/bindings/metag/
8613 F: Documentation/devicetree/bindings/interrupt-controller/img,*
8614 F: drivers/clocksource/metag_generic.c
8615 F: drivers/irqchip/irq-metag.c
8616 F: drivers/irqchip/irq-metag-ext.c
8617 F: drivers/tty/metag_da.c
8619 MICROBLAZE ARCHITECTURE
8620 M: Michal Simek <monstr@monstr.eu>
8621 W: http://www.monstr.eu/fdt/
8622 T: git git://git.monstr.eu/linux-2.6-microblaze.git
8626 MICROCHIP / ATMEL AT91 SERIAL DRIVER
8627 M: Richard Genoud <richard.genoud@gmail.com>
8629 F: drivers/tty/serial/atmel_serial.c
8630 F: drivers/tty/serial/atmel_serial.h
8632 MICROCHIP / ATMEL DMA DRIVER
8633 M: Ludovic Desroches <ludovic.desroches@microchip.com>
8634 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8635 L: dmaengine@vger.kernel.org
8637 F: drivers/dma/at_hdmac.c
8638 F: drivers/dma/at_hdmac_regs.h
8639 F: include/linux/platform_data/dma-atmel.h
8641 MICROCHIP / ATMEL ISC DRIVER
8642 M: Songjun Wu <songjun.wu@microchip.com>
8643 L: linux-media@vger.kernel.org
8645 F: drivers/media/platform/atmel/atmel-isc.c
8646 F: drivers/media/platform/atmel/atmel-isc-regs.h
8647 F: devicetree/bindings/media/atmel-isc.txt
8649 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
8650 M: Woojung Huh <Woojung.Huh@microchip.com>
8651 M: Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
8652 L: netdev@vger.kernel.org
8654 F: net/dsa/tag_ksz.c
8655 F: drivers/net/dsa/microchip/*
8656 F: include/linux/platform_data/microchip-ksz.h
8657 F: Documentation/devicetree/bindings/net/dsa/ksz.txt
8659 MICROCHIP USB251XB DRIVER
8660 M: Richard Leitner <richard.leitner@skidata.com>
8661 L: linux-usb@vger.kernel.org
8663 F: drivers/usb/misc/usb251xb.c
8664 F: Documentation/devicetree/bindings/usb/usb251xb.txt
8666 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
8667 M: Chen Yu <yu.c.chen@intel.com>
8668 L: platform-driver-x86@vger.kernel.org
8670 F: drivers/platform/x86/surfacepro3_button.c
8673 M: Oliver Neukum <oliver@neukum.org>
8675 F: drivers/usb/image/microtek.*
8678 M: Ralf Baechle <ralf@linux-mips.org>
8679 L: linux-mips@linux-mips.org
8680 W: http://www.linux-mips.org/
8681 T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
8682 Q: http://patchwork.linux-mips.org/project/linux-mips/list/
8684 F: Documentation/devicetree/bindings/mips/
8685 F: Documentation/mips/
8688 MIPS/LOONGSON1 ARCHITECTURE
8689 M: Keguang Zhang <keguang.zhang@gmail.com>
8690 L: linux-mips@linux-mips.org
8692 F: arch/mips/loongson32/
8693 F: arch/mips/include/asm/mach-loongson32/
8694 F: drivers/*/*loongson1*
8695 F: drivers/*/*/*loongson1*
8697 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
8698 M: Hans Verkuil <hverkuil@xs4all.nl>
8699 L: linux-media@vger.kernel.org
8700 T: git git://linuxtv.org/media_tree.git
8701 W: https://linuxtv.org
8703 F: drivers/media/radio/radio-miropcm20*
8705 MELLANOX MLX4 core VPI driver
8706 M: Tariq Toukan <tariqt@mellanox.com>
8707 L: netdev@vger.kernel.org
8708 L: linux-rdma@vger.kernel.org
8709 W: http://www.mellanox.com
8710 Q: http://patchwork.ozlabs.org/project/netdev/list/
8712 F: drivers/net/ethernet/mellanox/mlx4/
8713 F: include/linux/mlx4/
8715 MELLANOX MLX4 IB driver
8716 M: Yishai Hadas <yishaih@mellanox.com>
8717 L: linux-rdma@vger.kernel.org
8718 W: http://www.mellanox.com
8719 Q: http://patchwork.kernel.org/project/linux-rdma/list/
8721 F: drivers/infiniband/hw/mlx4/
8722 F: include/linux/mlx4/
8723 F: include/uapi/rdma/mlx4-abi.h
8725 MELLANOX MLX5 core VPI driver
8726 M: Saeed Mahameed <saeedm@mellanox.com>
8727 M: Matan Barak <matanb@mellanox.com>
8728 M: Leon Romanovsky <leonro@mellanox.com>
8729 L: netdev@vger.kernel.org
8730 L: linux-rdma@vger.kernel.org
8731 W: http://www.mellanox.com
8732 Q: http://patchwork.ozlabs.org/project/netdev/list/
8734 F: drivers/net/ethernet/mellanox/mlx5/core/
8735 F: include/linux/mlx5/
8737 MELLANOX MLX5 IB driver
8738 M: Matan Barak <matanb@mellanox.com>
8739 M: Leon Romanovsky <leonro@mellanox.com>
8740 L: linux-rdma@vger.kernel.org
8741 W: http://www.mellanox.com
8742 Q: http://patchwork.kernel.org/project/linux-rdma/list/
8744 F: drivers/infiniband/hw/mlx5/
8745 F: include/linux/mlx5/
8746 F: include/uapi/rdma/mlx5-abi.h
8748 MELEXIS MLX90614 DRIVER
8749 M: Crt Mori <cmo@melexis.com>
8750 L: linux-iio@vger.kernel.org
8751 W: http://www.melexis.com
8753 F: drivers/iio/temperature/mlx90614.c
8755 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
8756 M: Don Brace <don.brace@microsemi.com>
8757 L: esc.storagedev@microsemi.com
8758 L: linux-scsi@vger.kernel.org
8760 F: drivers/scsi/smartpqi/smartpqi*.[ch]
8761 F: drivers/scsi/smartpqi/Kconfig
8762 F: drivers/scsi/smartpqi/Makefile
8763 F: include/linux/cciss*.h
8764 F: include/uapi/linux/cciss*.h
8765 F: Documentation/scsi/smartpqi.txt
8767 MN88472 MEDIA DRIVER
8768 M: Antti Palosaari <crope@iki.fi>
8769 L: linux-media@vger.kernel.org
8770 W: https://linuxtv.org
8771 W: http://palosaari.fi/linux/
8772 Q: http://patchwork.linuxtv.org/project/linux-media/list/
8774 F: drivers/media/dvb-frontends/mn88472*
8776 MN88473 MEDIA DRIVER
8777 M: Antti Palosaari <crope@iki.fi>
8778 L: linux-media@vger.kernel.org
8779 W: https://linuxtv.org
8780 W: http://palosaari.fi/linux/
8781 Q: http://patchwork.linuxtv.org/project/linux-media/list/
8783 F: drivers/media/dvb-frontends/mn88473*
8786 M: Jessica Yu <jeyu@kernel.org>
8787 M: Rusty Russell <rusty@rustcorp.com.au>
8788 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
8790 F: include/linux/module.h
8793 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
8794 W: http://popies.net/meye/
8796 F: Documentation/media/v4l-drivers/meye*
8797 F: drivers/media/pci/meye/
8798 F: include/uapi/linux/meye.h
8800 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
8801 M: Jiri Slaby <jirislaby@gmail.com>
8803 F: Documentation/serial/moxa-smartio
8804 F: drivers/tty/mxser.*
8806 MR800 AVERMEDIA USB FM RADIO DRIVER
8807 M: Alexey Klimov <klimov.linux@gmail.com>
8808 L: linux-media@vger.kernel.org
8809 T: git git://linuxtv.org/media_tree.git
8811 F: drivers/media/radio/radio-mr800.c
8813 MRF24J40 IEEE 802.15.4 RADIO DRIVER
8814 M: Alan Ott <alan@signal11.us>
8815 L: linux-wpan@vger.kernel.org
8817 F: drivers/net/ieee802154/mrf24j40.c
8818 F: Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
8821 M: "Lee, Chun-Yi" <jlee@suse.com>
8822 L: platform-driver-x86@vger.kernel.org
8824 F: drivers/platform/x86/msi-laptop.c
8827 L: platform-driver-x86@vger.kernel.org
8829 F: drivers/platform/x86/msi-wmi.c
8832 M: Antti Palosaari <crope@iki.fi>
8833 L: linux-media@vger.kernel.org
8834 W: https://linuxtv.org
8835 W: http://palosaari.fi/linux/
8836 Q: http://patchwork.linuxtv.org/project/linux-media/list/
8837 T: git git://linuxtv.org/anttip/media_tree.git
8839 F: drivers/media/tuners/msi001*
8841 MSI2500 MEDIA DRIVER
8842 M: Antti Palosaari <crope@iki.fi>
8843 L: linux-media@vger.kernel.org
8844 W: https://linuxtv.org
8845 W: http://palosaari.fi/linux/
8846 Q: http://patchwork.linuxtv.org/project/linux-media/list/
8847 T: git git://linuxtv.org/anttip/media_tree.git
8849 F: drivers/media/usb/msi2500/
8851 MSYSTEMS DISKONCHIP G3 MTD DRIVER
8852 M: Robert Jarzmik <robert.jarzmik@free.fr>
8853 L: linux-mtd@lists.infradead.org
8855 F: drivers/mtd/devices/docg3*
8857 MT9M032 APTINA SENSOR DRIVER
8858 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8859 L: linux-media@vger.kernel.org
8860 T: git git://linuxtv.org/media_tree.git
8862 F: drivers/media/i2c/mt9m032.c
8863 F: include/media/i2c/mt9m032.h
8865 MT9P031 APTINA CAMERA SENSOR
8866 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8867 L: linux-media@vger.kernel.org
8868 T: git git://linuxtv.org/media_tree.git
8870 F: drivers/media/i2c/mt9p031.c
8871 F: include/media/i2c/mt9p031.h
8873 MT9T001 APTINA CAMERA SENSOR
8874 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8875 L: linux-media@vger.kernel.org
8876 T: git git://linuxtv.org/media_tree.git
8878 F: drivers/media/i2c/mt9t001.c
8879 F: include/media/i2c/mt9t001.h
8881 MT9V032 APTINA CAMERA SENSOR
8882 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8883 L: linux-media@vger.kernel.org
8884 T: git git://linuxtv.org/media_tree.git
8886 F: Documentation/devicetree/bindings/media/i2c/mt9v032.txt
8887 F: drivers/media/i2c/mt9v032.c
8888 F: include/media/i2c/mt9v032.h
8890 MULTIFUNCTION DEVICES (MFD)
8891 M: Lee Jones <lee.jones@linaro.org>
8892 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
8894 F: Documentation/devicetree/bindings/mfd/
8896 F: include/linux/mfd/
8897 F: include/dt-bindings/mfd/
8899 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
8900 M: Ulf Hansson <ulf.hansson@linaro.org>
8901 L: linux-mmc@vger.kernel.org
8902 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
8904 F: Documentation/devicetree/bindings/mmc/
8906 F: include/linux/mmc/
8907 F: include/uapi/linux/mmc/
8909 MULTIMEDIA CARD (MMC) ETC. OVER SPI
8911 F: drivers/mmc/host/mmc_spi.c
8912 F: include/linux/spi/mmc_spi.h
8914 MULTIPLEXER SUBSYSTEM
8915 M: Peter Rosin <peda@axentia.se>
8917 F: Documentation/ABI/testing/mux/sysfs-class-mux*
8918 F: Documentation/devicetree/bindings/mux/
8919 F: include/linux/dt-bindings/mux/
8920 F: include/linux/mux/
8923 MULTISOUND SOUND DRIVER
8924 M: Andrew Veliath <andrewtv@usa.net>
8926 F: Documentation/sound/oss/MultiSound
8929 MULTITECH MULTIPORT CARD (ISICOM)
8931 F: drivers/tty/isicom.c
8932 F: include/linux/isicom.h
8934 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
8935 M: Bin Liu <b-liu@ti.com>
8936 L: linux-usb@vger.kernel.org
8937 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
8939 F: drivers/usb/musb/
8941 MXL5007T MEDIA DRIVER
8942 M: Michael Krufky <mkrufky@linuxtv.org>
8943 L: linux-media@vger.kernel.org
8944 W: https://linuxtv.org
8945 W: http://github.com/mkrufky
8946 Q: http://patchwork.linuxtv.org/project/linux-media/list/
8947 T: git git://linuxtv.org/mkrufky/tuners.git
8949 F: drivers/media/tuners/mxl5007t.*
8952 M: Marek Vasut <marex@denx.de>
8954 F: drivers/gpu/drm/mxsfb/
8955 F: Documentation/devicetree/bindings/display/mxsfb-drm.txt
8957 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
8958 M: Hyong-Youb Kim <hykim@myri.com>
8959 L: netdev@vger.kernel.org
8960 W: https://www.myricom.com/support/downloads/myri10ge.html
8962 F: drivers/net/ethernet/myricom/myri10ge/
8964 NAND FLASH SUBSYSTEM
8965 M: Boris Brezillon <boris.brezillon@free-electrons.com>
8966 R: Richard Weinberger <richard@nod.at>
8967 L: linux-mtd@lists.infradead.org
8968 W: http://www.linux-mtd.infradead.org/
8969 Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
8970 T: git git://git.infradead.org/linux-mtd.git nand/fixes
8971 T: git git://git.infradead.org/l2-mtd.git nand/next
8973 F: drivers/mtd/nand/
8974 F: include/linux/mtd/nand*.h
8976 NATSEMI ETHERNET DRIVER (DP8381x)
8978 F: drivers/net/ethernet/natsemi/natsemi.c
8980 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
8981 M: Daniel Mack <zonque@gmail.com>
8983 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8984 W: http://www.native-instruments.com
8988 M: Petr Vandrovec <petr@vandrovec.name>
8992 NCR 5380 SCSI DRIVERS
8993 M: Finn Thain <fthain@telegraphics.com.au>
8994 M: Michael Schmitz <schmitzmic@gmail.com>
8995 L: linux-scsi@vger.kernel.org
8997 F: Documentation/scsi/g_NCR5380.txt
8998 F: drivers/scsi/NCR5380.*
8999 F: drivers/scsi/arm/cumana_1.c
9000 F: drivers/scsi/arm/oak.c
9001 F: drivers/scsi/atari_scsi.*
9002 F: drivers/scsi/dmx3191d.c
9003 F: drivers/scsi/g_NCR5380.*
9004 F: drivers/scsi/mac_scsi.*
9005 F: drivers/scsi/sun3_scsi.*
9006 F: drivers/scsi/sun3_scsi_vme.c
9008 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
9009 M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
9010 L: linux-scsi@vger.kernel.org
9012 F: drivers/scsi/NCR_D700.*
9014 NCT6775 HARDWARE MONITOR DRIVER
9015 M: Guenter Roeck <linux@roeck-us.net>
9016 L: linux-hwmon@vger.kernel.org
9018 F: Documentation/hwmon/nct6775
9019 F: drivers/hwmon/nct6775.c
9021 NETEFFECT IWARP RNIC DRIVER (IW_NES)
9022 M: Faisal Latif <faisal.latif@intel.com>
9023 L: linux-rdma@vger.kernel.org
9024 W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
9026 F: drivers/infiniband/hw/nes/
9027 F: include/uapi/rdma/nes-abi.h
9029 NETEM NETWORK EMULATOR
9030 M: Stephen Hemminger <stephen@networkplumber.org>
9031 L: netem@lists.linux-foundation.org (moderated for non-subscribers)
9033 F: net/sched/sch_netem.c
9035 NETERION 10GbE DRIVERS (s2io/vxge)
9036 M: Jon Mason <jdmason@kudzu.us>
9037 L: netdev@vger.kernel.org
9039 F: Documentation/networking/s2io.txt
9040 F: Documentation/networking/vxge.txt
9041 F: drivers/net/ethernet/neterion/
9044 M: Pablo Neira Ayuso <pablo@netfilter.org>
9045 M: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
9046 M: Florian Westphal <fw@strlen.de>
9047 L: netfilter-devel@vger.kernel.org
9048 L: coreteam@netfilter.org
9049 W: http://www.netfilter.org/
9050 W: http://www.iptables.org/
9051 W: http://www.nftables.org/
9052 Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/
9053 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
9054 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
9056 F: include/linux/netfilter*
9057 F: include/linux/netfilter/
9058 F: include/net/netfilter/
9059 F: include/uapi/linux/netfilter*
9060 F: include/uapi/linux/netfilter/
9061 F: net/*/netfilter.c
9064 F: net/bridge/br_netfilter*.c
9067 M: Paul Moore <paul@paul-moore.com>
9068 W: http://netlabel.sf.net
9069 L: netdev@vger.kernel.org
9071 F: Documentation/netlabel/
9072 F: include/net/netlabel.h
9075 NETROM NETWORK LAYER
9076 M: Ralf Baechle <ralf@linux-mips.org>
9077 L: linux-hams@vger.kernel.org
9078 W: http://www.linux-ax25.org/
9080 F: include/net/netrom.h
9081 F: include/uapi/linux/netrom.h
9084 NETRONOME ETHERNET DRIVERS
9085 M: Jakub Kicinski <jakub.kicinski@netronome.com>
9086 L: oss-drivers@netronome.com
9088 F: drivers/net/ethernet/netronome/
9090 NETWORK BLOCK DEVICE (NBD)
9091 M: Josef Bacik <jbacik@fb.com>
9093 L: linux-block@vger.kernel.org
9094 L: nbd-general@lists.sourceforge.net
9095 F: Documentation/blockdev/nbd.txt
9096 F: drivers/block/nbd.c
9097 F: include/uapi/linux/nbd.h
9099 NETWORK DROP MONITOR
9100 M: Neil Horman <nhorman@tuxdriver.com>
9101 L: netdev@vger.kernel.org
9103 W: https://fedorahosted.org/dropwatch/
9104 F: net/core/drop_monitor.c
9107 M: Andrew Lunn <andrew@lunn.ch>
9108 M: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
9109 M: Florian Fainelli <f.fainelli@gmail.com>
9112 F: include/net/dsa.h
9115 NETWORKING [GENERAL]
9116 M: "David S. Miller" <davem@davemloft.net>
9117 L: netdev@vger.kernel.org
9118 W: http://www.linuxfoundation.org/en/Net
9119 Q: http://patchwork.ozlabs.org/project/netdev/list/
9120 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
9121 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
9122 B: mailto:netdev@vger.kernel.org
9126 F: include/linux/in.h
9127 F: include/linux/net.h
9128 F: include/linux/netdevice.h
9129 F: include/uapi/linux/in.h
9130 F: include/uapi/linux/net.h
9131 F: include/uapi/linux/netdevice.h
9132 F: include/uapi/linux/net_namespace.h
9134 F: tools/testing/selftests/net/
9137 NETWORKING [IPv4/IPv6]
9138 M: "David S. Miller" <davem@davemloft.net>
9139 M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
9140 M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
9141 L: netdev@vger.kernel.org
9142 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
9150 M: Ilya Lesokhin <ilyal@mellanox.com>
9151 M: Aviad Yehezkel <aviadye@mellanox.com>
9152 M: Dave Watson <davejwatson@fb.com>
9153 L: netdev@vger.kernel.org
9156 F: include/uapi/linux/tls.h
9157 F: include/net/tls.h
9160 M: Steffen Klassert <steffen.klassert@secunet.com>
9161 M: Herbert Xu <herbert@gondor.apana.org.au>
9162 M: "David S. Miller" <davem@davemloft.net>
9163 L: netdev@vger.kernel.org
9164 T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
9165 T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
9173 F: net/ipv4/ipcomp.c
9174 F: net/ipv4/ip_vti.c
9178 F: net/ipv6/ipcomp6.c
9179 F: net/ipv6/ip6_vti.c
9180 F: include/uapi/linux/xfrm.h
9181 F: include/net/xfrm.h
9183 NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
9184 M: Paul Moore <paul@paul-moore.com>
9185 L: netdev@vger.kernel.org
9188 NETWORKING [WIRELESS]
9189 L: linux-wireless@vger.kernel.org
9190 Q: http://patchwork.kernel.org/project/linux-wireless/list/
9193 L: netdev@vger.kernel.org
9194 W: http://www.linuxfoundation.org/en/Net
9195 Q: http://patchwork.ozlabs.org/project/netdev/list/
9196 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
9197 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
9199 F: Documentation/devicetree/bindings/net/
9201 F: include/linux/if_*
9202 F: include/linux/netdevice.h
9203 F: include/linux/etherdevice.h
9204 F: include/linux/fcdevice.h
9205 F: include/linux/fddidevice.h
9206 F: include/linux/hippidevice.h
9207 F: include/linux/inetdevice.h
9208 F: include/uapi/linux/if_*
9209 F: include/uapi/linux/netdevice.h
9211 NETWORKING DRIVERS (WIRELESS)
9212 M: Kalle Valo <kvalo@codeaurora.org>
9213 L: linux-wireless@vger.kernel.org
9214 Q: http://patchwork.kernel.org/project/linux-wireless/list/
9215 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
9216 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
9218 F: Documentation/devicetree/bindings/net/wireless/
9219 F: drivers/net/wireless/
9221 NETXEN (1/10) GbE SUPPORT
9222 M: Manish Chopra <manish.chopra@cavium.com>
9223 M: Rahul Verma <rahul.verma@cavium.com>
9224 M: Dept-GELinuxNICDev@cavium.com
9225 L: netdev@vger.kernel.org
9227 F: drivers/net/ethernet/qlogic/netxen/
9230 M: Samuel Ortiz <sameo@linux.intel.com>
9231 L: linux-wireless@vger.kernel.org
9232 L: linux-nfc@lists.01.org (subscribers-only)
9236 F: include/uapi/linux/nfc.h
9238 F: include/linux/platform_data/nfcmrvl.h
9239 F: include/linux/platform_data/nxp-nci.h
9240 F: Documentation/devicetree/bindings/net/nfc/
9242 NFS, SUNRPC, AND LOCKD CLIENTS
9243 M: Trond Myklebust <trond.myklebust@primarydata.com>
9244 M: Anna Schumaker <anna.schumaker@netapp.com>
9245 L: linux-nfs@vger.kernel.org
9246 W: http://client.linux-nfs.org
9247 T: git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
9253 F: include/linux/lockd/
9254 F: include/linux/nfs*
9255 F: include/linux/sunrpc/
9256 F: include/uapi/linux/nfs*
9257 F: include/uapi/linux/sunrpc/
9260 M: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
9261 L: linux-nilfs@vger.kernel.org
9262 W: http://nilfs.sourceforge.net/
9263 W: http://nilfs.osdn.jp/
9264 T: git git://github.com/konis/nilfs2.git
9266 F: Documentation/filesystems/nilfs2.txt
9268 F: include/trace/events/nilfs2.h
9269 F: include/uapi/linux/nilfs2_api.h
9270 F: include/uapi/linux/nilfs2_ondisk.h
9272 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
9273 M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
9274 W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
9276 F: Documentation/scsi/NinjaSCSI.txt
9277 F: drivers/scsi/pcmcia/nsp_*
9279 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
9280 M: GOTO Masanori <gotom@debian.or.jp>
9281 M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
9282 W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
9284 F: Documentation/scsi/NinjaSCSI.txt
9285 F: drivers/scsi/nsp32*
9288 M: Ley Foon Tan <lftan@altera.com>
9289 L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
9290 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
9294 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
9295 M: Pavel Machek <pavel@ucw.cz>
9296 M: Sakari Ailus <sakari.ailus@iki.fi>
9297 L: linux-media@vger.kernel.org
9299 F: drivers/media/i2c/et8ek8
9300 F: drivers/media/i2c/ad5820.c
9302 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
9303 M: Pavel Machek <pavel@ucw.cz>
9304 M: Sakari Ailus <sakari.ailus@iki.fi>
9305 L: linux-media@vger.kernel.org
9307 F: drivers/media/i2c/et8ek8
9308 F: drivers/media/i2c/ad5820.c
9310 NOKIA N900 POWER SUPPLY DRIVERS
9311 R: Pali Rohár <pali.rohar@gmail.com>
9312 F: include/linux/power/bq2415x_charger.h
9313 F: include/linux/power/bq27xxx_battery.h
9314 F: include/linux/power/isp1704_charger.h
9315 F: drivers/power/supply/bq2415x_charger.c
9316 F: drivers/power/supply/bq27xxx_battery.c
9317 F: drivers/power/supply/bq27xxx_battery_i2c.c
9318 F: drivers/power/supply/isp1704_charger.c
9319 F: drivers/power/supply/rx51_battery.c
9322 M: Jon Mason <jdmason@kudzu.us>
9323 M: Dave Jiang <dave.jiang@intel.com>
9324 M: Allen Hubbe <Allen.Hubbe@emc.com>
9325 L: linux-ntb@googlegroups.com
9327 W: https://github.com/jonmason/ntb/wiki
9328 T: git git://github.com/jonmason/ntb.git
9330 F: drivers/net/ntb_netdev.c
9331 F: include/linux/ntb.h
9332 F: include/linux/ntb_transport.h
9333 F: tools/testing/selftests/ntb/
9336 M: Jon Mason <jdmason@kudzu.us>
9337 M: Dave Jiang <dave.jiang@intel.com>
9338 L: linux-ntb@googlegroups.com
9340 W: https://github.com/jonmason/ntb/wiki
9341 T: git git://github.com/jonmason/ntb.git
9342 F: drivers/ntb/hw/intel/
9345 M: Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
9346 L: linux-ntb@googlegroups.com
9348 F: drivers/ntb/hw/amd/
9351 M: Anton Altaparmakov <anton@tuxera.com>
9352 L: linux-ntfs-dev@lists.sourceforge.net
9353 W: http://www.tuxera.com/
9354 T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
9356 F: Documentation/filesystems/ntfs.txt
9359 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
9360 M: Antonino Daplas <adaplas@gmail.com>
9361 L: linux-fbdev@vger.kernel.org
9363 F: drivers/video/fbdev/riva/
9364 F: drivers/video/fbdev/nvidia/
9367 M: Keith Busch <keith.busch@intel.com>
9368 M: Jens Axboe <axboe@fb.com>
9369 M: Christoph Hellwig <hch@lst.de>
9370 M: Sagi Grimberg <sagi@grimberg.me>
9371 L: linux-nvme@lists.infradead.org
9372 T: git://git.infradead.org/nvme.git
9373 W: http://git.infradead.org/nvme.git
9375 F: drivers/nvme/host/
9376 F: include/linux/nvme.h
9377 F: include/uapi/linux/nvme_ioctl.h
9379 NVM EXPRESS TARGET DRIVER
9380 M: Christoph Hellwig <hch@lst.de>
9381 M: Sagi Grimberg <sagi@grimberg.me>
9382 L: linux-nvme@lists.infradead.org
9383 T: git://git.infradead.org/nvme.git
9384 W: http://git.infradead.org/nvme.git
9386 F: drivers/nvme/target/
9388 NVM EXPRESS FC TRANSPORT DRIVERS
9389 M: James Smart <james.smart@broadcom.com>
9390 L: linux-nvme@lists.infradead.org
9392 F: include/linux/nvme-fc.h
9393 F: include/linux/nvme-fc-driver.h
9394 F: drivers/nvme/host/fc.c
9395 F: drivers/nvme/target/fc.c
9396 F: drivers/nvme/target/fcloop.c
9399 M: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
9402 F: Documentation/devicetree/bindings/nvmem/
9403 F: include/linux/nvmem-consumer.h
9404 F: include/linux/nvmem-provider.h
9407 M: Clément Perrochaud <clement.perrochaud@effinnov.com>
9408 R: Charles Gorand <charles.gorand@effinnov.com>
9409 L: linux-nfc@lists.01.org (moderated for non-subscribers)
9411 F: drivers/nfc/nxp-nci
9413 NXP TDA998X DRM DRIVER
9414 M: Russell King <linux@armlinux.org.uk>
9416 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
9417 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
9418 F: drivers/gpu/drm/i2c/tda998x_drv.c
9419 F: include/drm/i2c/tda998x.h
9422 M: Peter Rosin <peda@axentia.se>
9423 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
9425 F: sound/soc/codecs/tfa9879*
9428 M: Josh Poimboeuf <jpoimboe@redhat.com>
9433 M: Aaro Koskinen <aaro.koskinen@iki.fi>
9434 M: Tony Lindgren <tony@atomide.com>
9435 L: linux-omap@vger.kernel.org
9436 Q: http://patchwork.kernel.org/project/linux-omap/list/
9437 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
9439 F: arch/arm/mach-omap1/
9440 F: arch/arm/plat-omap/
9441 F: arch/arm/configs/omap1_defconfig
9442 F: drivers/i2c/busses/i2c-omap.c
9443 F: include/linux/i2c-omap.h
9446 M: Tony Lindgren <tony@atomide.com>
9447 L: linux-omap@vger.kernel.org
9448 W: http://www.muru.com/linux/omap/
9449 W: http://linux.omap.com/
9450 Q: http://patchwork.kernel.org/project/linux-omap/list/
9451 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
9453 F: arch/arm/mach-omap2/
9454 F: arch/arm/plat-omap/
9455 F: arch/arm/configs/omap2plus_defconfig
9456 F: drivers/i2c/busses/i2c-omap.c
9457 F: drivers/irqchip/irq-omap-intc.c
9458 F: drivers/mfd/*omap*.c
9459 F: drivers/mfd/menelaus.c
9460 F: drivers/mfd/palmas.c
9461 F: drivers/mfd/tps65217.c
9462 F: drivers/mfd/tps65218.c
9463 F: drivers/mfd/tps65910.c
9464 F: drivers/mfd/twl-core.[ch]
9465 F: drivers/mfd/twl4030*.c
9466 F: drivers/mfd/twl6030*.c
9467 F: drivers/mfd/twl6040*.c
9468 F: drivers/regulator/palmas-regulator*.c
9469 F: drivers/regulator/pbias-regulator.c
9470 F: drivers/regulator/tps65217-regulator.c
9471 F: drivers/regulator/tps65218-regulator.c
9472 F: drivers/regulator/tps65910-regulator.c
9473 F: drivers/regulator/twl-regulator.c
9474 F: drivers/regulator/twl6030-regulator.c
9475 F: include/linux/i2c-omap.h
9477 OMAP DEVICE TREE SUPPORT
9478 M: Benoît Cousson <bcousson@baylibre.com>
9479 M: Tony Lindgren <tony@atomide.com>
9480 L: linux-omap@vger.kernel.org
9481 L: devicetree@vger.kernel.org
9483 F: arch/arm/boot/dts/*omap*
9484 F: arch/arm/boot/dts/*am3*
9485 F: arch/arm/boot/dts/*am4*
9486 F: arch/arm/boot/dts/*am5*
9487 F: arch/arm/boot/dts/*dra7*
9489 OMAP CLOCK FRAMEWORK SUPPORT
9490 M: Paul Walmsley <paul@pwsan.com>
9491 L: linux-omap@vger.kernel.org
9493 F: arch/arm/*omap*/*clock*
9495 OMAP POWER MANAGEMENT SUPPORT
9496 M: Kevin Hilman <khilman@kernel.org>
9497 L: linux-omap@vger.kernel.org
9499 F: arch/arm/*omap*/*pm*
9500 F: drivers/cpufreq/omap-cpufreq.c
9502 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
9503 M: Rajendra Nayak <rnayak@codeaurora.org>
9504 M: Paul Walmsley <paul@pwsan.com>
9505 L: linux-omap@vger.kernel.org
9507 F: arch/arm/mach-omap2/prm*
9510 M: Peter Ujfalusi <peter.ujfalusi@ti.com>
9511 M: Jarkko Nikula <jarkko.nikula@bitmer.com>
9512 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
9513 L: linux-omap@vger.kernel.org
9517 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
9518 M: Roger Quadros <rogerq@ti.com>
9519 M: Tony Lindgren <tony@atomide.com>
9520 L: linux-omap@vger.kernel.org
9522 F: drivers/memory/omap-gpmc.c
9523 F: arch/arm/mach-omap2/*gpmc*
9525 OMAP FRAMEBUFFER SUPPORT
9526 M: Tomi Valkeinen <tomi.valkeinen@ti.com>
9527 L: linux-fbdev@vger.kernel.org
9528 L: linux-omap@vger.kernel.org
9530 F: drivers/video/fbdev/omap/
9532 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
9533 M: Tomi Valkeinen <tomi.valkeinen@ti.com>
9534 L: linux-omap@vger.kernel.org
9535 L: linux-fbdev@vger.kernel.org
9537 F: drivers/video/fbdev/omap2/
9538 F: Documentation/arm/OMAP/DSS
9540 OMAP HARDWARE SPINLOCK SUPPORT
9541 M: Ohad Ben-Cohen <ohad@wizery.com>
9542 L: linux-omap@vger.kernel.org
9544 F: drivers/hwspinlock/omap_hwspinlock.c
9547 M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
9548 L: linux-omap@vger.kernel.org
9550 F: drivers/mmc/host/omap.c
9553 L: linux-mmc@vger.kernel.org
9554 L: linux-omap@vger.kernel.org
9556 F: drivers/mmc/host/omap_hsmmc.c
9558 OMAP RANDOM NUMBER GENERATOR SUPPORT
9559 M: Deepak Saxena <dsaxena@plexity.net>
9561 F: drivers/char/hw_random/omap-rng.c
9564 M: Benoît Cousson <bcousson@baylibre.com>
9565 M: Paul Walmsley <paul@pwsan.com>
9566 L: linux-omap@vger.kernel.org
9568 F: arch/arm/mach-omap2/omap_hwmod.*
9571 M: Paul Walmsley <paul@pwsan.com>
9572 L: linux-omap@vger.kernel.org
9574 F: arch/arm/mach-omap2/omap_hwmod*data*
9576 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
9577 M: Benoît Cousson <bcousson@baylibre.com>
9578 L: linux-omap@vger.kernel.org
9580 F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
9582 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
9583 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
9584 L: linux-media@vger.kernel.org
9586 F: Documentation/devicetree/bindings/media/ti,omap3isp.txt
9587 F: drivers/media/platform/omap3isp/
9588 F: drivers/staging/media/omap4iss/
9591 L: linux-usb@vger.kernel.org
9592 L: linux-omap@vger.kernel.org
9594 F: drivers/usb/*/*omap*
9595 F: arch/arm/*omap*/usb*
9598 M: Grygorii Strashko <grygorii.strashko@ti.com>
9599 M: Santosh Shilimkar <ssantosh@kernel.org>
9600 M: Kevin Hilman <khilman@kernel.org>
9601 L: linux-omap@vger.kernel.org
9603 F: Documentation/devicetree/bindings/gpio/gpio-omap.txt
9604 F: drivers/gpio/gpio-omap.c
9606 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
9607 M: Mark Jackson <mpfj@newflow.co.uk>
9608 L: linux-omap@vger.kernel.org
9610 F: arch/arm/boot/dts/am335x-nano.dts
9613 M: Bob Copeland <me@bobcopeland.com>
9614 L: linux-karma-devel@lists.sourceforge.net
9616 F: Documentation/filesystems/omfs.txt
9619 OMNIKEY CARDMAN 4000 DRIVER
9620 M: Harald Welte <laforge@gnumonks.org>
9622 F: drivers/char/pcmcia/cm4000_cs.c
9623 F: include/linux/cm4000_cs.h
9624 F: include/uapi/linux/cm4000_cs.h
9626 OMNIKEY CARDMAN 4040 DRIVER
9627 M: Harald Welte <laforge@gnumonks.org>
9629 F: drivers/char/pcmcia/cm4040_cs.*
9631 OMNIVISION OV5640 SENSOR DRIVER
9632 M: Steve Longerbeam <slongerbeam@gmail.com>
9633 L: linux-media@vger.kernel.org
9634 T: git git://linuxtv.org/media_tree.git
9636 F: drivers/media/i2c/ov5640.c
9638 OMNIVISION OV5647 SENSOR DRIVER
9639 M: Ramiro Oliveira <roliveir@synopsys.com>
9640 L: linux-media@vger.kernel.org
9641 T: git git://linuxtv.org/media_tree.git
9643 F: drivers/media/i2c/ov5647.c
9645 OMNIVISION OV7670 SENSOR DRIVER
9646 M: Jonathan Corbet <corbet@lwn.net>
9647 L: linux-media@vger.kernel.org
9648 T: git git://linuxtv.org/media_tree.git
9650 F: drivers/media/i2c/ov7670.c
9651 F: Documentation/devicetree/bindings/media/i2c/ov7670.txt
9653 OMNIVISION OV13858 SENSOR DRIVER
9654 M: Sakari Ailus <sakari.ailus@linux.intel.com>
9655 L: linux-media@vger.kernel.org
9656 T: git git://linuxtv.org/media_tree.git
9658 F: drivers/media/i2c/ov13858.c
9660 ONENAND FLASH DRIVER
9661 M: Kyungmin Park <kyungmin.park@samsung.com>
9662 L: linux-mtd@lists.infradead.org
9664 F: drivers/mtd/onenand/
9665 F: include/linux/mtd/onenand*.h
9667 ONSTREAM SCSI TAPE DRIVER
9668 M: Willem Riede <osst@riede.org>
9669 L: osst-users@lists.sourceforge.net
9670 L: linux-scsi@vger.kernel.org
9672 F: Documentation/scsi/osst.txt
9673 F: drivers/scsi/osst.*
9674 F: drivers/scsi/osst_*.h
9675 F: drivers/scsi/st.h
9677 OPENCORES I2C BUS DRIVER
9678 M: Peter Korsgaard <jacmet@sunsite.dk>
9679 L: linux-i2c@vger.kernel.org
9681 F: Documentation/i2c/busses/i2c-ocores
9682 F: drivers/i2c/busses/i2c-ocores.c
9684 OPEN FIRMWARE AND FLATTENED DEVICE TREE
9685 M: Rob Herring <robh+dt@kernel.org>
9686 M: Frank Rowand <frowand.list@gmail.com>
9687 L: devicetree@vger.kernel.org
9688 W: http://www.devicetree.org/
9689 T: git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
9692 F: include/linux/of*.h
9694 F: Documentation/ABI/testing/sysfs-firmware-ofw
9696 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
9697 M: Rob Herring <robh+dt@kernel.org>
9698 M: Mark Rutland <mark.rutland@arm.com>
9699 L: devicetree@vger.kernel.org
9700 T: git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
9701 Q: http://patchwork.ozlabs.org/project/devicetree-bindings/list/
9703 F: Documentation/devicetree/
9705 F: include/dt-bindings/
9707 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
9708 M: Pantelis Antoniou <pantelis.antoniou@konsulko.com>
9709 L: devicetree@vger.kernel.org
9711 F: Documentation/devicetree/dynamic-resolution-notes.txt
9712 F: Documentation/devicetree/overlay-notes.txt
9713 F: drivers/of/overlay.c
9714 F: drivers/of/resolver.c
9716 OPENRISC ARCHITECTURE
9717 M: Jonas Bonn <jonas@southpole.se>
9718 M: Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
9719 M: Stafford Horne <shorne@gmail.com>
9720 T: git git://github.com/openrisc/linux.git
9721 L: openrisc@lists.librecores.org
9722 W: http://openrisc.io
9727 M: Pravin Shelar <pshelar@nicira.com>
9728 L: netdev@vger.kernel.org
9729 L: dev@openvswitch.org
9730 W: http://openvswitch.org
9733 F: include/uapi/linux/openvswitch.h
9735 OPERATING PERFORMANCE POINTS (OPP)
9736 M: Viresh Kumar <vireshk@kernel.org>
9737 M: Nishanth Menon <nm@ti.com>
9738 M: Stephen Boyd <sboyd@codeaurora.org>
9739 L: linux-pm@vger.kernel.org
9741 T: git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
9742 F: drivers/base/power/opp/
9743 F: include/linux/pm_opp.h
9744 F: Documentation/power/opp.txt
9745 F: Documentation/devicetree/bindings/opp/
9748 M: Clemens Ladisch <clemens@ladisch.de>
9749 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
9750 T: git git://git.alsa-project.org/alsa-kernel.git
9752 F: sound/drivers/opl4/
9755 M: Robert Richter <rric@kernel.org>
9756 L: oprofile-list@lists.sf.net
9758 F: arch/*/include/asm/oprofile*.h
9760 F: drivers/oprofile/
9761 F: include/linux/oprofile.h
9764 M: Jens Wiklander <jens.wiklander@linaro.org>
9766 F: drivers/tee/optee/
9768 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
9769 M: Mark Fasheh <mfasheh@versity.com>
9770 M: Joel Becker <jlbec@evilplan.org>
9771 L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
9772 W: http://ocfs2.wiki.kernel.org
9774 F: Documentation/filesystems/ocfs2.txt
9775 F: Documentation/filesystems/dlmfs.txt
9779 L: linux-wireless@vger.kernel.org
9780 W: http://wireless.kernel.org/en/users/Drivers/orinoco
9781 W: http://www.nongnu.org/orinoco/
9783 F: drivers/net/wireless/intersil/orinoco/
9785 OSD LIBRARY and FILESYSTEM
9786 M: Boaz Harrosh <ooo@electrozaur.com>
9788 F: drivers/scsi/osd/
9789 F: include/scsi/osd_*
9793 M: Miklos Szeredi <miklos@szeredi.hu>
9794 L: linux-unionfs@vger.kernel.org
9795 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
9798 F: Documentation/filesystems/overlayfs.txt
9801 M: Mike Marshall <hubcap@omnibond.com>
9802 L: pvfs2-developers@beowulf-underground.org (subscribers-only)
9803 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
9806 F: Documentation/filesystems/orangefs.txt
9809 M: Christian Lamparter <chunkeey@googlemail.com>
9810 L: linux-wireless@vger.kernel.org
9811 W: http://wireless.kernel.org/en/users/Drivers/p54
9813 F: drivers/net/wireless/intersil/p54/
9815 PA SEMI ETHERNET DRIVER
9816 L: netdev@vger.kernel.org
9818 F: drivers/net/ethernet/pasemi/*
9820 PA SEMI SMBUS DRIVER
9821 L: linux-i2c@vger.kernel.org
9823 F: drivers/i2c/busses/i2c-pasemi.c
9825 PADATA PARALLEL EXECUTION MECHANISM
9826 M: Steffen Klassert <steffen.klassert@secunet.com>
9827 L: linux-crypto@vger.kernel.org
9830 F: include/linux/padata.h
9831 F: Documentation/padata.txt
9833 PANASONIC LAPTOP ACPI EXTRAS DRIVER
9834 M: Harald Welte <laforge@gnumonks.org>
9835 L: platform-driver-x86@vger.kernel.org
9837 F: drivers/platform/x86/panasonic-laptop.c
9839 PANASONIC MN10300/AM33/AM34 PORT
9840 M: David Howells <dhowells@redhat.com>
9841 L: linux-am33-list@redhat.com (moderated for non-subscribers)
9842 W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
9844 F: Documentation/mn10300/
9847 PARALLEL LCD/KEYPAD PANEL DRIVER
9848 M: Willy Tarreau <willy@haproxy.com>
9849 M: Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
9851 F: Documentation/misc-devices/lcd-panel-cgram.txt
9852 F: drivers/misc/panel.c
9854 PARALLEL PORT SUBSYSTEM
9855 M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
9856 M: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
9857 L: linux-parport@lists.infradead.org (subscribers-only)
9860 F: include/linux/parport*.h
9861 F: drivers/char/ppdev.c
9862 F: include/uapi/linux/ppdev.h
9863 F: Documentation/parport*.txt
9865 PARAVIRT_OPS INTERFACE
9866 M: Jeremy Fitzhardinge <jeremy@goop.org>
9867 M: Chris Wright <chrisw@sous-sol.org>
9868 M: Alok Kataria <akataria@vmware.com>
9869 M: Rusty Russell <rusty@rustcorp.com.au>
9870 L: virtualization@lists.linux-foundation.org
9872 F: Documentation/virtual/paravirt_ops.txt
9873 F: arch/*/kernel/paravirt*
9874 F: arch/*/include/asm/paravirt.h
9875 F: include/linux/hypervisor.h
9877 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
9878 M: Tim Waugh <tim@cyberelk.net>
9879 L: linux-parport@lists.infradead.org (subscribers-only)
9881 F: Documentation/blockdev/paride.txt
9882 F: drivers/block/paride/
9885 M: "James E.J. Bottomley" <jejb@parisc-linux.org>
9886 M: Helge Deller <deller@gmx.de>
9887 L: linux-parisc@vger.kernel.org
9888 W: http://www.parisc-linux.org/
9889 Q: http://patchwork.kernel.org/project/linux-parisc/list/
9890 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
9891 T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
9894 F: Documentation/parisc/
9896 F: drivers/char/agp/parisc-agp.c
9897 F: drivers/input/serio/gscps2.c
9898 F: drivers/parport/parport_gsc.*
9899 F: drivers/tty/serial/8250/8250_gsc.c
9900 F: drivers/video/fbdev/sti*
9901 F: drivers/video/console/sti*
9902 F: drivers/video/logo/logo_parisc*
9905 M: Jiri Pirko <jiri@mellanox.com>
9906 L: netdev@vger.kernel.org
9909 F: lib/test_parman.c
9910 F: include/linux/parman.h
9912 PC87360 HARDWARE MONITORING DRIVER
9913 M: Jim Cromie <jim.cromie@gmail.com>
9914 L: linux-hwmon@vger.kernel.org
9916 F: Documentation/hwmon/pc87360
9917 F: drivers/hwmon/pc87360.c
9920 M: Jim Cromie <jim.cromie@gmail.com>
9922 F: drivers/char/pc8736x_gpio.c
9924 PC87427 HARDWARE MONITORING DRIVER
9925 M: Jean Delvare <jdelvare@suse.com>
9926 L: linux-hwmon@vger.kernel.org
9928 F: Documentation/hwmon/pc87427
9929 F: drivers/hwmon/pc87427.c
9932 M: Riku Voipio <riku.voipio@iki.fi>
9934 F: drivers/leds/leds-pca9532.c
9935 F: include/linux/leds-pca9532.h
9937 PCA9541 I2C BUS MASTER SELECTOR DRIVER
9938 M: Guenter Roeck <linux@roeck-us.net>
9939 L: linux-i2c@vger.kernel.org
9941 F: drivers/i2c/muxes/i2c-mux-pca9541.c
9943 PCDP - PRIMARY CONSOLE AND DEBUG PORT
9944 M: Khalid Aziz <khalid@gonehiking.org>
9946 F: drivers/firmware/pcdp.*
9949 M: Linas Vepstas <linasvepstas@gmail.com>
9950 L: linux-pci@vger.kernel.org
9952 F: Documentation/PCI/pci-error-recovery.txt
9954 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
9955 M: Russell Currey <ruscur@russell.cc>
9956 L: linuxppc-dev@lists.ozlabs.org
9958 F: Documentation/powerpc/eeh-pci-error-recovery.txt
9959 F: arch/powerpc/kernel/eeh*.c
9960 F: arch/powerpc/platforms/*/eeh*.c
9961 F: arch/powerpc/include/*/eeh*.h
9964 M: Bjorn Helgaas <bhelgaas@google.com>
9965 L: linux-pci@vger.kernel.org
9966 Q: http://patchwork.ozlabs.org/project/linux-pci/list/
9967 T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
9969 F: Documentation/devicetree/bindings/pci/
9970 F: Documentation/PCI/
9972 F: include/linux/pci*
9974 F: arch/x86/kernel/quirks.c
9976 PCI ENDPOINT SUBSYSTEM
9977 M: Kishon Vijay Abraham I <kishon@ti.com>
9978 L: linux-pci@vger.kernel.org
9979 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
9981 F: drivers/pci/endpoint/
9982 F: drivers/misc/pci_endpoint_test.c
9985 PCI DRIVER FOR ALTERA PCIE IP
9986 M: Ley Foon Tan <lftan@altera.com>
9987 L: rfi@lists.rocketboards.org (moderated for non-subscribers)
9988 L: linux-pci@vger.kernel.org
9990 F: Documentation/devicetree/bindings/pci/altera-pcie.txt
9991 F: drivers/pci/host/pcie-altera.c
9993 PCI DRIVER FOR ARM VERSATILE PLATFORM
9994 M: Rob Herring <robh@kernel.org>
9995 L: linux-pci@vger.kernel.org
9996 L: linux-arm-kernel@lists.infradead.org
9998 F: Documentation/devicetree/bindings/pci/versatile.txt
9999 F: drivers/pci/host/pci-versatile.c
10001 PCI DRIVER FOR ARMADA 8K
10002 M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10003 L: linux-pci@vger.kernel.org
10004 L: linux-arm-kernel@lists.infradead.org
10006 F: Documentation/devicetree/bindings/pci/pci-armada8k.txt
10007 F: drivers/pci/dwc/pcie-armada8k.c
10009 PCI DRIVER FOR APPLIEDMICRO XGENE
10010 M: Tanmay Inamdar <tinamdar@apm.com>
10011 L: linux-pci@vger.kernel.org
10012 L: linux-arm-kernel@lists.infradead.org
10014 F: Documentation/devicetree/bindings/pci/xgene-pci.txt
10015 F: drivers/pci/host/pci-xgene.c
10017 PCI DRIVER FOR FREESCALE LAYERSCAPE
10018 M: Minghuan Lian <minghuan.Lian@freescale.com>
10019 M: Mingkai Hu <mingkai.hu@freescale.com>
10020 M: Roy Zang <tie-fei.zang@freescale.com>
10021 L: linuxppc-dev@lists.ozlabs.org
10022 L: linux-pci@vger.kernel.org
10023 L: linux-arm-kernel@lists.infradead.org
10025 F: drivers/pci/dwc/*layerscape*
10027 PCI DRIVER FOR IMX6
10028 M: Richard Zhu <hongxing.zhu@nxp.com>
10029 M: Lucas Stach <l.stach@pengutronix.de>
10030 L: linux-pci@vger.kernel.org
10031 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10033 F: Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
10034 F: drivers/pci/dwc/*imx6*
10036 PCI DRIVER FOR TI KEYSTONE
10037 M: Murali Karicheri <m-karicheri2@ti.com>
10038 L: linux-pci@vger.kernel.org
10039 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10041 F: drivers/pci/dwc/*keystone*
10043 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
10044 M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10045 M: Jason Cooper <jason@lakedaemon.net>
10046 L: linux-pci@vger.kernel.org
10047 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10049 F: drivers/pci/host/*mvebu*
10051 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
10052 M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10053 L: linux-pci@vger.kernel.org
10054 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10056 F: Documentation/devicetree/bindings/pci/aardvark-pci.txt
10057 F: drivers/pci/host/pci-aardvark.c
10059 PCI DRIVER FOR MICROSEMI SWITCHTEC
10060 M: Kurt Schwemmer <kurt.schwemmer@microsemi.com>
10061 M: Stephen Bates <stephen.bates@microsemi.com>
10062 M: Logan Gunthorpe <logang@deltatee.com>
10063 L: linux-pci@vger.kernel.org
10065 F: Documentation/switchtec.txt
10066 F: Documentation/ABI/testing/sysfs-class-switchtec
10067 F: drivers/pci/switch/switchtec*
10068 F: include/uapi/linux/switchtec_ioctl.h
10070 PCI DRIVER FOR NVIDIA TEGRA
10071 M: Thierry Reding <thierry.reding@gmail.com>
10072 L: linux-tegra@vger.kernel.org
10073 L: linux-pci@vger.kernel.org
10075 F: Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
10076 F: drivers/pci/host/pci-tegra.c
10078 PCI DRIVER FOR TI DRA7XX
10079 M: Kishon Vijay Abraham I <kishon@ti.com>
10080 L: linux-omap@vger.kernel.org
10081 L: linux-pci@vger.kernel.org
10083 F: Documentation/devicetree/bindings/pci/ti-pci.txt
10084 F: drivers/pci/dwc/pci-dra7xx.c
10086 PCI DRIVER FOR RENESAS R-CAR
10087 M: Simon Horman <horms@verge.net.au>
10088 L: linux-pci@vger.kernel.org
10089 L: linux-renesas-soc@vger.kernel.org
10091 F: drivers/pci/host/*rcar*
10093 PCI DRIVER FOR SAMSUNG EXYNOS
10094 M: Jingoo Han <jingoohan1@gmail.com>
10095 L: linux-pci@vger.kernel.org
10096 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10097 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
10099 F: drivers/pci/dwc/pci-exynos.c
10101 PCI DRIVER FOR SYNOPSIS DESIGNWARE
10102 M: Jingoo Han <jingoohan1@gmail.com>
10103 M: Joao Pinto <Joao.Pinto@synopsys.com>
10104 L: linux-pci@vger.kernel.org
10106 F: Documentation/devicetree/bindings/pci/designware-pcie.txt
10107 F: drivers/pci/dwc/*designware*
10109 PCI DRIVER FOR GENERIC OF HOSTS
10110 M: Will Deacon <will.deacon@arm.com>
10111 L: linux-pci@vger.kernel.org
10112 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10114 F: Documentation/devicetree/bindings/pci/host-generic-pci.txt
10115 F: drivers/pci/host/pci-host-common.c
10116 F: drivers/pci/host/pci-host-generic.c
10118 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
10119 M: Keith Busch <keith.busch@intel.com>
10120 L: linux-pci@vger.kernel.org
10122 F: drivers/pci/host/vmd.c
10124 PCIE DRIVER FOR ST SPEAR13XX
10125 M: Pratyush Anand <pratyush.anand@gmail.com>
10126 L: linux-pci@vger.kernel.org
10128 F: drivers/pci/dwc/*spear*
10130 PCI MSI DRIVER FOR ALTERA MSI IP
10131 M: Ley Foon Tan <lftan@altera.com>
10132 L: rfi@lists.rocketboards.org (moderated for non-subscribers)
10133 L: linux-pci@vger.kernel.org
10135 F: Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
10136 F: drivers/pci/host/pcie-altera-msi.c
10138 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
10139 M: Duc Dang <dhdang@apm.com>
10140 L: linux-pci@vger.kernel.org
10141 L: linux-arm-kernel@lists.infradead.org
10143 F: Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
10144 F: drivers/pci/host/pci-xgene-msi.c
10146 PCIE DRIVER FOR AXIS ARTPEC
10147 M: Niklas Cassel <niklas.cassel@axis.com>
10148 M: Jesper Nilsson <jesper.nilsson@axis.com>
10149 L: linux-arm-kernel@axis.com
10150 L: linux-pci@vger.kernel.org
10152 F: Documentation/devicetree/bindings/pci/axis,artpec*
10153 F: drivers/pci/dwc/*artpec*
10155 PCIE DRIVER FOR HISILICON
10156 M: Zhou Wang <wangzhou1@hisilicon.com>
10157 M: Gabriele Paoloni <gabriele.paoloni@huawei.com>
10158 L: linux-pci@vger.kernel.org
10160 F: Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
10161 F: drivers/pci/dwc/pcie-hisi.c
10163 PCIE DRIVER FOR HISILICON KIRIN
10164 M: Xiaowei Song <songxiaowei@hisilicon.com>
10165 M: Binghui Wang <wangbinghui@hisilicon.com>
10166 L: linux-pci@vger.kernel.org
10168 F: Documentation/devicetree/bindings/pci/pcie-kirin.txt
10169 F: drivers/pci/dwc/pcie-kirin.c
10171 PCIE DRIVER FOR ROCKCHIP
10172 M: Shawn Lin <shawn.lin@rock-chips.com>
10173 L: linux-pci@vger.kernel.org
10174 L: linux-rockchip@lists.infradead.org
10176 F: Documentation/devicetree/bindings/pci/rockchip-pcie.txt
10177 F: drivers/pci/host/pcie-rockchip.c
10179 PCIE DRIVER FOR QUALCOMM MSM
10180 M: Stanimir Varbanov <svarbanov@mm-sol.com>
10181 L: linux-pci@vger.kernel.org
10182 L: linux-arm-msm@vger.kernel.org
10184 F: drivers/pci/dwc/*qcom*
10186 PCIE DRIVER FOR CAVIUM THUNDERX
10187 M: David Daney <david.daney@cavium.com>
10188 L: linux-pci@vger.kernel.org
10189 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10191 F: Documentation/devicetree/bindings/pci/pci-thunder-*
10192 F: drivers/pci/host/pci-thunder-*
10194 PCIE DRIVER FOR MEDIATEK
10195 M: Ryder Lee <ryder.lee@mediatek.com>
10196 L: linux-pci@vger.kernel.org
10197 L: linux-mediatek@lists.infradead.org
10199 F: Documentation/devicetree/bindings/pci/mediatek*
10200 F: drivers/pci/host/*mediatek*
10203 P: Linux PCMCIA Team
10204 L: linux-pcmcia@lists.infradead.org
10205 W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
10206 T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
10208 F: Documentation/pcmcia/
10213 PCNET32 NETWORK DRIVER
10214 M: Don Fry <pcnet32@frontier.com>
10215 L: netdev@vger.kernel.org
10217 F: drivers/net/ethernet/amd/pcnet32.c
10219 PCRYPT PARALLEL CRYPTO ENGINE
10220 M: Steffen Klassert <steffen.klassert@secunet.com>
10221 L: linux-crypto@vger.kernel.org
10224 F: include/crypto/pcrypt.h
10226 PER-CPU MEMORY ALLOCATOR
10227 M: Tejun Heo <tj@kernel.org>
10228 M: Christoph Lameter <cl@linux.com>
10229 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
10231 F: include/linux/percpu*.h
10233 F: arch/*/include/asm/percpu.h
10235 PER-TASK DELAY ACCOUNTING
10236 M: Balbir Singh <bsingharora@gmail.com>
10238 F: include/linux/delayacct.h
10239 F: kernel/delayacct.c
10241 PERFORMANCE EVENTS SUBSYSTEM
10242 M: Peter Zijlstra <peterz@infradead.org>
10243 M: Ingo Molnar <mingo@redhat.com>
10244 M: Arnaldo Carvalho de Melo <acme@kernel.org>
10245 R: Alexander Shishkin <alexander.shishkin@linux.intel.com>
10246 L: linux-kernel@vger.kernel.org
10247 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
10250 F: include/linux/perf_event.h
10251 F: include/uapi/linux/perf_event.h
10252 F: arch/*/kernel/perf_event*.c
10253 F: arch/*/kernel/*/perf_event*.c
10254 F: arch/*/kernel/*/*/perf_event*.c
10255 F: arch/*/include/asm/perf_event.h
10256 F: arch/*/kernel/perf_callchain.c
10260 PERSONALITY HANDLING
10261 M: Christoph Hellwig <hch@infradead.org>
10262 L: linux-abi-devel@lists.sourceforge.net
10264 F: include/linux/personality.h
10265 F: include/uapi/linux/personality.h
10268 M: Remi Denis-Courmont <courmisch@gmail.com>
10270 F: Documentation/networking/phonet.txt
10271 F: include/linux/phonet.h
10272 F: include/net/phonet/
10273 F: include/uapi/linux/phonet.h
10277 M: Joern Engel <joern@lazybastard.org>
10278 L: linux-mtd@lists.infradead.org
10280 F: drivers/mtd/devices/phram.c
10283 M: Bruno Prémont <bonbons@linux-vserver.org>
10284 L: linux-input@vger.kernel.org
10286 F: drivers/hid/hid-picolcd*
10289 M: Jamie Iles <jamie@jamieiles.com>
10290 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10291 T: git git://github.com/jamieiles/linux-2.6-ji.git
10293 F: arch/arm/boot/dts/picoxcell*
10294 F: arch/arm/mach-picoxcell/
10295 F: drivers/crypto/picoxcell*
10297 PIN CONTROL SUBSYSTEM
10298 M: Linus Walleij <linus.walleij@linaro.org>
10299 L: linux-gpio@vger.kernel.org
10300 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
10302 F: Documentation/devicetree/bindings/pinctrl/
10303 F: Documentation/pinctrl.txt
10304 F: drivers/pinctrl/
10305 F: include/linux/pinctrl/
10307 PIN CONTROLLER - ATMEL AT91
10308 M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
10309 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10311 F: drivers/pinctrl/pinctrl-at91.*
10313 PIN CONTROLLER - ATMEL AT91 PIO4
10314 M: Ludovic Desroches <ludovic.desroches@microchip.com>
10315 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10316 L: linux-gpio@vger.kernel.org
10318 F: drivers/pinctrl/pinctrl-at91-pio4.*
10320 PIN CONTROLLER - INTEL
10321 M: Mika Westerberg <mika.westerberg@linux.intel.com>
10322 M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
10324 F: drivers/pinctrl/intel/
10326 PIN CONTROLLER - QUALCOMM
10327 M: Bjorn Andersson <bjorn.andersson@linaro.org>
10329 L: linux-arm-msm@vger.kernel.org
10330 F: Documentation/devicetree/bindings/pinctrl/qcom,*.txt
10331 F: drivers/pinctrl/qcom/
10333 PIN CONTROLLER - RENESAS
10334 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10335 M: Geert Uytterhoeven <geert+renesas@glider.be>
10336 L: linux-renesas-soc@vger.kernel.org
10338 F: drivers/pinctrl/sh-pfc/
10340 PIN CONTROLLER - SAMSUNG
10341 M: Tomasz Figa <tomasz.figa@gmail.com>
10342 M: Krzysztof Kozlowski <krzk@kernel.org>
10343 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
10344 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10345 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
10346 Q: https://patchwork.kernel.org/project/linux-samsung-soc/list/
10347 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
10349 F: drivers/pinctrl/samsung/
10350 F: include/dt-bindings/pinctrl/samsung.h
10351 F: Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
10353 PIN CONTROLLER - SINGLE
10354 M: Tony Lindgren <tony@atomide.com>
10355 M: Haojian Zhuang <haojian.zhuang@linaro.org>
10356 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10357 L: linux-omap@vger.kernel.org
10359 F: drivers/pinctrl/pinctrl-single.c
10361 PIN CONTROLLER - ST SPEAR
10362 M: Viresh Kumar <vireshk@kernel.org>
10363 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10364 W: http://www.st.com/spear
10366 F: drivers/pinctrl/spear/
10368 PISTACHIO SOC SUPPORT
10369 M: James Hartley <james.hartley@imgtec.com>
10370 M: Ionela Voinescu <ionela.voinescu@imgtec.com>
10371 L: linux-mips@linux-mips.org
10373 F: arch/mips/pistachio/
10374 F: arch/mips/include/asm/mach-pistachio/
10375 F: arch/mips/boot/dts/img/pistachio*
10376 F: arch/mips/configs/pistachio*_defconfig
10380 M: linux-block@vger.kernel.org
10381 F: drivers/block/pktcdvd.c
10382 F: include/linux/pktcdvd.h
10383 F: include/uapi/linux/pktcdvd.h
10385 PKUNITY SOC DRIVERS
10386 M: Guan Xuetao <gxt@mprc.pku.edu.cn>
10387 W: http://mprc.pku.edu.cn/~guanxuetao/linux
10389 T: git git://github.com/gxt/linux.git
10390 F: drivers/input/serio/i8042-unicore32io.h
10391 F: drivers/i2c/busses/i2c-puv3.c
10392 F: drivers/video/fbdev/fb-puv3.c
10393 F: drivers/rtc/rtc-puv3.c
10395 PMBUS HARDWARE MONITORING DRIVERS
10396 M: Guenter Roeck <linux@roeck-us.net>
10397 L: linux-hwmon@vger.kernel.org
10398 W: http://hwmon.wiki.kernel.org/
10399 W: http://www.roeck-us.net/linux/drivers/
10400 T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
10402 F: Documentation/hwmon/pmbus
10403 F: drivers/hwmon/pmbus/
10404 F: include/linux/pmbus.h
10406 PMC SIERRA MaxRAID DRIVER
10407 L: linux-scsi@vger.kernel.org
10408 W: http://www.pmc-sierra.com/
10410 F: drivers/scsi/pmcraid.*
10412 PMC SIERRA PM8001 DRIVER
10413 M: Jack Wang <jinpu.wang@profitbricks.com>
10414 M: lindar_liu@usish.com
10415 L: linux-scsi@vger.kernel.org
10417 F: drivers/scsi/pm8001/
10419 POSIX CLOCKS and TIMERS
10420 M: Thomas Gleixner <tglx@linutronix.de>
10421 L: linux-kernel@vger.kernel.org
10422 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
10425 F: include/linux/timer*
10426 F: kernel/time/*timer*
10428 POWER MANAGEMENT CORE
10429 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
10430 L: linux-pm@vger.kernel.org
10431 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
10432 B: https://bugzilla.kernel.org
10434 F: drivers/base/power/
10435 F: include/linux/pm.h
10436 F: include/linux/pm_*
10437 F: include/linux/powercap.h
10438 F: drivers/powercap/
10440 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
10441 M: Sebastian Reichel <sre@kernel.org>
10442 L: linux-pm@vger.kernel.org
10443 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
10445 F: Documentation/devicetree/bindings/power/supply/
10446 F: include/linux/power_supply.h
10447 F: drivers/power/supply/
10449 POWER STATE COORDINATION INTERFACE (PSCI)
10450 M: Mark Rutland <mark.rutland@arm.com>
10451 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
10452 L: linux-arm-kernel@lists.infradead.org
10454 F: drivers/firmware/psci*.c
10455 F: include/linux/psci.h
10456 F: include/uapi/linux/psci.h
10458 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
10459 M: Suraj Jitindar Singh <sjitindarsingh@gmail.com>
10460 L: linuxppc-dev@lists.ozlabs.org
10462 F: drivers/char/powernv-op-panel.c
10465 M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
10469 PPP PROTOCOL DRIVERS AND COMPRESSORS
10470 M: Paul Mackerras <paulus@samba.org>
10471 L: linux-ppp@vger.kernel.org
10473 F: drivers/net/ppp/ppp_*
10475 PPP OVER ATM (RFC 2364)
10476 M: Mitchell Blank Jr <mitch@sfgoth.com>
10478 F: net/atm/pppoatm.c
10479 F: include/uapi/linux/atmppp.h
10482 M: Michal Ostrowski <mostrows@earthlink.net>
10484 F: drivers/net/ppp/pppoe.c
10485 F: drivers/net/ppp/pppox.c
10488 M: James Chapman <jchapman@katalix.com>
10490 F: net/l2tp/l2tp_ppp.c
10491 F: include/linux/if_pppol2tp.h
10492 F: include/uapi/linux/if_pppol2tp.h
10495 M: Rodolfo Giometti <giometti@enneenne.com>
10496 W: http://wiki.enneenne.com/index.php/LinuxPPS_support
10497 L: linuxpps@ml.enneenne.com (subscribers-only)
10499 F: Documentation/pps/
10501 F: include/linux/pps*.h
10504 M: Dmitry Kozlov <xeb@mail.ru>
10505 L: netdev@vger.kernel.org
10507 F: drivers/net/ppp/pptp.c
10508 W: http://sourceforge.net/projects/accel-pptp
10511 M: Robert Love <rml@tech9.net>
10512 L: kpreempt-tech@lists.sourceforge.net
10513 W: https://www.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
10515 F: Documentation/preempt-locking.txt
10516 F: include/linux/preempt.h
10519 M: Petr Mladek <pmladek@suse.com>
10520 M: Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
10521 R: Steven Rostedt <rostedt@goodmis.org>
10524 F: include/linux/printk.h
10526 PRISM54 WIRELESS DRIVER
10527 M: "Luis R. Rodriguez" <mcgrof@gmail.com>
10528 L: linux-wireless@vger.kernel.org
10529 W: http://wireless.kernel.org/en/users/Drivers/p54
10531 F: drivers/net/wireless/intersil/prism54/
10533 PS3 NETWORK SUPPORT
10534 M: Geoff Levand <geoff@infradead.org>
10535 L: netdev@vger.kernel.org
10536 L: linuxppc-dev@lists.ozlabs.org
10538 F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
10540 PS3 PLATFORM SUPPORT
10541 M: Geoff Levand <geoff@infradead.org>
10542 L: linuxppc-dev@lists.ozlabs.org
10544 F: arch/powerpc/boot/ps3*
10545 F: arch/powerpc/include/asm/lv1call.h
10546 F: arch/powerpc/include/asm/ps3*.h
10547 F: arch/powerpc/platforms/ps3/
10550 F: drivers/rtc/rtc-ps3.c
10551 F: drivers/usb/host/*ps3.c
10552 F: sound/ppc/snd_ps3*
10555 M: Jim Paris <jim@jtan.com>
10556 M: Geoff Levand <geoff@infradead.org>
10557 L: linuxppc-dev@lists.ozlabs.org
10559 F: drivers/block/ps3vram.c
10561 PSAMPLE PACKET SAMPLING SUPPORT:
10562 M: Yotam Gigi <yotamg@mellanox.com>
10565 F: include/net/psample.h
10566 F: include/uapi/linux/psample.h
10569 M: Kees Cook <keescook@chromium.org>
10570 M: Anton Vorontsov <anton@enomsg.org>
10571 M: Colin Cross <ccross@android.com>
10572 M: Tony Luck <tony.luck@intel.com>
10574 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
10576 F: include/linux/pstore*
10577 F: drivers/firmware/efi/efi-pstore.c
10578 F: drivers/acpi/apei/erst.c
10579 F: Documentation/admin-guide/ramoops.rst
10580 F: Documentation/devicetree/bindings/reserved-memory/ramoops.txt
10581 K: \b(pstore|ramoops)
10583 PTP HARDWARE CLOCK SUPPORT
10584 M: Richard Cochran <richardcochran@gmail.com>
10585 L: netdev@vger.kernel.org
10587 W: http://linuxptp.sourceforge.net/
10588 F: Documentation/ABI/testing/sysfs-ptp
10589 F: Documentation/ptp/*
10590 F: drivers/net/ethernet/freescale/gianfar_ptp.c
10591 F: drivers/net/phy/dp83640*
10593 F: include/linux/ptp_cl*
10596 M: Roland McGrath <roland@hack.frob.com>
10597 M: Oleg Nesterov <oleg@redhat.com>
10599 F: include/asm-generic/syscall.h
10600 F: include/linux/ptrace.h
10601 F: include/linux/regset.h
10602 F: include/linux/tracehook.h
10603 F: include/uapi/linux/ptrace.h
10607 M: Hans Verkuil <hverkuil@xs4all.nl>
10608 L: linux-media@vger.kernel.org
10609 T: git git://linuxtv.org/media_tree.git
10611 F: drivers/media/usb/pulse8-cec/*
10613 PVRUSB2 VIDEO4LINUX DRIVER
10614 M: Mike Isely <isely@pobox.com>
10615 L: pvrusb2@isely.net (subscribers-only)
10616 L: linux-media@vger.kernel.org
10617 W: http://www.isely.net/pvrusb2/
10618 T: git git://linuxtv.org/media_tree.git
10620 F: Documentation/media/v4l-drivers/pvrusb2*
10621 F: drivers/media/usb/pvrusb2/
10624 M: Hans Verkuil <hverkuil@xs4all.nl>
10625 L: linux-media@vger.kernel.org
10626 T: git git://linuxtv.org/media_tree.git
10628 F: drivers/media/usb/pwc/*
10631 M: Kamil Debski <kamil@wypas.org>
10632 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10633 L: linux-hwmon@vger.kernel.org
10635 F: Documentation/devicetree/bindings/hwmon/pwm-fan.txt
10636 F: Documentation/hwmon/pwm-fan
10637 F: drivers/hwmon/pwm-fan.c
10640 M: Thierry Reding <thierry.reding@gmail.com>
10641 L: linux-pwm@vger.kernel.org
10643 T: git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
10644 F: Documentation/pwm.txt
10645 F: Documentation/devicetree/bindings/pwm/
10646 F: include/linux/pwm.h
10648 F: drivers/video/backlight/pwm_bl.c
10649 F: include/linux/pwm_backlight.h
10650 F: drivers/gpio/gpio-mvebu.c
10651 F: Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
10653 PXA2xx/PXA3xx SUPPORT
10654 M: Daniel Mack <daniel@zonque.org>
10655 M: Haojian Zhuang <haojian.zhuang@gmail.com>
10656 M: Robert Jarzmik <robert.jarzmik@free.fr>
10657 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10658 T: git git://github.com/hzhuang1/linux.git
10659 T: git git://github.com/rjarzmik/linux.git
10661 F: arch/arm/boot/dts/pxa*
10662 F: arch/arm/mach-pxa/
10663 F: drivers/dma/pxa*
10664 F: drivers/pcmcia/pxa2xx*
10665 F: drivers/pinctrl/pxa/
10666 F: drivers/spi/spi-pxa2xx*
10667 F: drivers/usb/gadget/udc/pxa2*
10668 F: include/sound/pxa2xx-lib.h
10673 M: Robert Jarzmik <robert.jarzmik@free.fr>
10674 L: linux-gpio@vger.kernel.org
10676 F: drivers/gpio/gpio-pxa.c
10678 PXA3xx NAND FLASH DRIVER
10679 M: Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
10680 L: linux-mtd@lists.infradead.org
10682 F: drivers/mtd/nand/pxa3xx_nand.c
10685 M: Eric Miao <eric.y.miao@gmail.com>
10686 M: Haojian Zhuang <haojian.zhuang@gmail.com>
10687 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10688 T: git git://github.com/hzhuang1/linux.git
10689 T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
10691 F: arch/arm/boot/dts/mmp*
10692 F: arch/arm/mach-mmp/
10698 M: Robert Jarzmik <robert.jarzmik@free.fr>
10699 L: linux-rtc@vger.kernel.org
10703 M: Giovanni Cabiddu <giovanni.cabiddu@intel.com>
10704 M: Salvatore Benedetto <salvatore.benedetto@intel.com>
10705 L: qat-linux@intel.com
10707 F: drivers/crypto/qat/
10710 M: Mike Marciniszyn <infinipath@intel.com>
10711 L: linux-rdma@vger.kernel.org
10713 F: drivers/infiniband/hw/qib/
10715 QLOGIC QLA1280 SCSI DRIVER
10716 M: Michael Reed <mdr@sgi.com>
10717 L: linux-scsi@vger.kernel.org
10719 F: drivers/scsi/qla1280.[ch]
10721 QLOGIC QLA2XXX FC-SCSI DRIVER
10722 M: qla2xxx-upstream@qlogic.com
10723 L: linux-scsi@vger.kernel.org
10725 F: Documentation/scsi/LICENSE.qla2xxx
10726 F: drivers/scsi/qla2xxx/
10728 QLOGIC QLA4XXX iSCSI DRIVER
10729 M: QLogic-Storage-Upstream@qlogic.com
10730 L: linux-scsi@vger.kernel.org
10732 F: Documentation/scsi/LICENSE.qla4xxx
10733 F: drivers/scsi/qla4xxx/
10735 QLOGIC QLA3XXX NETWORK DRIVER
10736 M: Dept-GELinuxNICDev@cavium.com
10737 L: netdev@vger.kernel.org
10739 F: Documentation/networking/LICENSE.qla3xxx
10740 F: drivers/net/ethernet/qlogic/qla3xxx.*
10742 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
10743 M: Harish Patil <harish.patil@cavium.com>
10744 M: Manish Chopra <manish.chopra@cavium.com>
10745 M: Dept-GELinuxNICDev@cavium.com
10746 L: netdev@vger.kernel.org
10748 F: drivers/net/ethernet/qlogic/qlcnic/
10750 QLOGIC QLGE 10Gb ETHERNET DRIVER
10751 M: Harish Patil <harish.patil@cavium.com>
10752 M: Manish Chopra <manish.chopra@cavium.com>
10753 M: Dept-GELinuxNICDev@cavium.com
10754 L: netdev@vger.kernel.org
10756 F: drivers/net/ethernet/qlogic/qlge/
10758 QLOGIC QL4xxx ETHERNET DRIVER
10759 M: Yuval Mintz <Yuval.Mintz@cavium.com>
10760 M: Ariel Elior <Ariel.Elior@cavium.com>
10761 M: everest-linux-l2@cavium.com
10762 L: netdev@vger.kernel.org
10764 F: drivers/net/ethernet/qlogic/qed/
10765 F: include/linux/qed/
10766 F: drivers/net/ethernet/qlogic/qede/
10768 QLOGIC QL41xxx ISCSI DRIVER
10769 M: QLogic-Storage-Upstream@cavium.com
10770 L: linux-scsi@vger.kernel.org
10772 F: drivers/scsi/qedi/
10774 QLOGIC QL41xxx FCOE DRIVER
10775 M: QLogic-Storage-Upstream@cavium.com
10776 L: linux-scsi@vger.kernel.org
10778 F: drivers/scsi/qedf/
10781 M: Anders Larsen <al@alarsen.net>
10782 W: http://www.alarsen.net/linux/qnx4fs/
10785 F: include/uapi/linux/qnx4_fs.h
10786 F: include/uapi/linux/qnxtypes.h
10788 QORIQ DPAA2 FSL-MC BUS DRIVER
10789 M: Stuart Yoder <stuyoder@gmail.com>
10790 M: Laurentiu Tudor <laurentiu.tudor@nxp.com>
10791 L: linux-kernel@vger.kernel.org
10793 F: drivers/staging/fsl-mc/
10794 F: Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
10796 QT1010 MEDIA DRIVER
10797 M: Antti Palosaari <crope@iki.fi>
10798 L: linux-media@vger.kernel.org
10799 W: https://linuxtv.org
10800 W: http://palosaari.fi/linux/
10801 Q: http://patchwork.linuxtv.org/project/linux-media/list/
10802 T: git git://linuxtv.org/anttip/media_tree.git
10804 F: drivers/media/tuners/qt1010*
10806 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
10807 M: QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
10808 L: linux-wireless@vger.kernel.org
10809 W: http://wireless.kernel.org/en/users/Drivers/ath9k
10811 F: drivers/net/wireless/ath/ath9k/
10813 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
10814 M: Kalle Valo <kvalo@qca.qualcomm.com>
10815 L: ath10k@lists.infradead.org
10816 W: http://wireless.kernel.org/en/users/Drivers/ath10k
10817 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
10819 F: drivers/net/wireless/ath/ath10k/
10821 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
10822 M: Timur Tabi <timur@codeaurora.org>
10823 L: netdev@vger.kernel.org
10825 F: drivers/net/ethernet/qualcomm/emac/
10827 QUALCOMM HEXAGON ARCHITECTURE
10828 M: Richard Kuo <rkuo@codeaurora.org>
10829 L: linux-hexagon@vger.kernel.org
10830 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rkuo/linux-hexagon-kernel.git
10834 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
10835 M: Stanimir Varbanov <stanimir.varbanov@linaro.org>
10836 L: linux-media@vger.kernel.org
10837 L: linux-arm-msm@vger.kernel.org
10838 T: git git://linuxtv.org/media_tree.git
10840 F: drivers/media/platform/qcom/venus/
10842 QUALCOMM WCN36XX WIRELESS DRIVER
10843 M: Eugene Krasnikov <k.eugene.e@gmail.com>
10844 L: wcn36xx@lists.infradead.org
10845 W: http://wireless.kernel.org/en/users/Drivers/wcn36xx
10846 T: git git://github.com/KrasnikovEugene/wcn36xx.git
10848 F: drivers/net/wireless/ath/wcn36xx/
10850 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
10851 M: Gabriel Somlo <somlo@cmu.edu>
10852 M: "Michael S. Tsirkin" <mst@redhat.com>
10853 L: qemu-devel@nongnu.org
10855 F: drivers/firmware/qemu_fw_cfg.c
10857 QUANTENNA QTNFMAC WIRELESS DRIVER
10858 M: Igor Mitsyanko <imitsyanko@quantenna.com>
10859 M: Avinash Patil <avinashp@quantenna.com>
10860 M: Sergey Matyukevich <smatyukevich@quantenna.com>
10861 L: linux-wireless@vger.kernel.org
10863 F: drivers/net/wireless/quantenna
10865 RADOS BLOCK DEVICE (RBD)
10866 M: Ilya Dryomov <idryomov@gmail.com>
10867 M: Sage Weil <sage@redhat.com>
10868 M: Alex Elder <elder@kernel.org>
10869 L: ceph-devel@vger.kernel.org
10870 W: http://ceph.com/
10871 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
10872 T: git git://github.com/ceph/ceph-client.git
10874 F: Documentation/ABI/testing/sysfs-bus-rbd
10875 F: drivers/block/rbd.c
10876 F: drivers/block/rbd_types.h
10878 RADEON FRAMEBUFFER DISPLAY DRIVER
10879 M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
10880 L: linux-fbdev@vger.kernel.org
10882 F: drivers/video/fbdev/aty/radeon*
10883 F: include/uapi/linux/radeonfb.h
10885 RADIOSHARK RADIO DRIVER
10886 M: Hans Verkuil <hverkuil@xs4all.nl>
10887 L: linux-media@vger.kernel.org
10888 T: git git://linuxtv.org/media_tree.git
10890 F: drivers/media/radio/radio-shark.c
10892 RADIOSHARK2 RADIO DRIVER
10893 M: Hans Verkuil <hverkuil@xs4all.nl>
10894 L: linux-media@vger.kernel.org
10895 T: git git://linuxtv.org/media_tree.git
10897 F: drivers/media/radio/radio-shark2.c
10898 F: drivers/media/radio/radio-tea5777.c
10900 RAGE128 FRAMEBUFFER DISPLAY DRIVER
10901 M: Paul Mackerras <paulus@samba.org>
10902 L: linux-fbdev@vger.kernel.org
10904 F: drivers/video/fbdev/aty/aty128fb.c
10906 RAINSHADOW-CEC DRIVER
10907 M: Hans Verkuil <hverkuil@xs4all.nl>
10908 L: linux-media@vger.kernel.org
10909 T: git git://linuxtv.org/media_tree.git
10911 F: drivers/media/usb/rainshadow-cec/*
10913 RALINK MIPS ARCHITECTURE
10914 M: John Crispin <john@phrozen.org>
10915 L: linux-mips@linux-mips.org
10917 F: arch/mips/ralink
10919 RALINK RT2X00 WIRELESS LAN DRIVER
10921 M: Stanislaw Gruszka <sgruszka@redhat.com>
10922 M: Helmut Schaa <helmut.schaa@googlemail.com>
10923 L: linux-wireless@vger.kernel.org
10925 F: drivers/net/wireless/ralink/rt2x00/
10927 RAMDISK RAM BLOCK DEVICE DRIVER
10928 M: Jens Axboe <axboe@kernel.dk>
10930 F: Documentation/blockdev/ramdisk.txt
10931 F: drivers/block/brd.c
10933 RANDOM NUMBER DRIVER
10934 M: "Theodore Ts'o" <tytso@mit.edu>
10936 F: drivers/char/random.c
10939 M: Matt Porter <mporter@kernel.crashing.org>
10940 M: Alexandre Bounine <alexandre.bounine@idt.com>
10942 F: drivers/rapidio/
10944 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
10945 L: linux-wireless@vger.kernel.org
10947 F: drivers/net/wireless/ray*
10950 M: Josh Triplett <josh@joshtriplett.org>
10951 M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
10952 L: linux-kernel@vger.kernel.org
10954 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
10955 F: Documentation/RCU/torture.txt
10956 F: kernel/rcu/rcutorture.c
10958 RCUTORTURE TEST FRAMEWORK
10959 M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
10960 M: Josh Triplett <josh@joshtriplett.org>
10961 R: Steven Rostedt <rostedt@goodmis.org>
10962 R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
10963 R: Lai Jiangshan <jiangshanlai@gmail.com>
10964 L: linux-kernel@vger.kernel.org
10966 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
10967 F: tools/testing/selftests/rcutorture
10970 M: Florian Fainelli <florian@openwrt.org>
10973 RDC R6040 FAST ETHERNET DRIVER
10974 M: Florian Fainelli <f.fainelli@gmail.com>
10975 L: netdev@vger.kernel.org
10977 F: drivers/net/ethernet/rdc/r6040.c
10979 RDS - RELIABLE DATAGRAM SOCKETS
10980 M: Santosh Shilimkar <santosh.shilimkar@oracle.com>
10981 L: netdev@vger.kernel.org
10982 L: linux-rdma@vger.kernel.org
10983 L: rds-devel@oss.oracle.com (moderated for non-subscribers)
10984 W: https://oss.oracle.com/projects/rds/
10987 F: Documentation/networking/rds.txt
10989 RDMAVT - RDMA verbs software
10990 M: Dennis Dalessandro <dennis.dalessandro@intel.com>
10991 L: linux-rdma@vger.kernel.org
10993 F: drivers/infiniband/sw/rdmavt
10995 RDT - RESOURCE ALLOCATION
10996 M: Fenghua Yu <fenghua.yu@intel.com>
10997 L: linux-kernel@vger.kernel.org
10999 F: arch/x86/kernel/cpu/intel_rdt*
11000 F: arch/x86/include/asm/intel_rdt*
11001 F: Documentation/x86/intel_rdt*
11003 READ-COPY UPDATE (RCU)
11004 M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
11005 M: Josh Triplett <josh@joshtriplett.org>
11006 R: Steven Rostedt <rostedt@goodmis.org>
11007 R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
11008 R: Lai Jiangshan <jiangshanlai@gmail.com>
11009 L: linux-kernel@vger.kernel.org
11010 W: http://www.rdrop.com/users/paulmck/RCU/
11012 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
11013 F: Documentation/RCU/
11014 X: Documentation/RCU/torture.txt
11015 F: include/linux/rcu*
11016 X: include/linux/srcu.h
11018 X: kernel/torture.c
11020 REAL TIME CLOCK (RTC) SUBSYSTEM
11021 M: Alessandro Zummo <a.zummo@towertech.it>
11022 M: Alexandre Belloni <alexandre.belloni@free-electrons.com>
11023 L: linux-rtc@vger.kernel.org
11024 Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
11025 T: git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
11027 F: Documentation/devicetree/bindings/rtc/
11028 F: Documentation/rtc.txt
11030 F: include/linux/rtc.h
11031 F: include/uapi/linux/rtc.h
11032 F: include/linux/rtc/
11033 F: include/linux/platform_data/rtc-*
11034 F: tools/testing/selftests/timers/rtctest.c
11036 REALTEK AUDIO CODECS
11037 M: Bard Liao <bardliao@realtek.com>
11038 M: Oder Chiou <oder_chiou@realtek.com>
11040 F: sound/soc/codecs/rt*
11041 F: include/sound/rt*.h
11043 REISERFS FILE SYSTEM
11044 L: reiserfs-devel@vger.kernel.org
11048 REGISTER MAP ABSTRACTION
11049 M: Mark Brown <broonie@kernel.org>
11050 L: linux-kernel@vger.kernel.org
11051 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
11053 F: Documentation/devicetree/bindings/regmap/
11054 F: drivers/base/regmap/
11055 F: include/linux/regmap.h
11057 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
11058 M: Ohad Ben-Cohen <ohad@wizery.com>
11059 M: Bjorn Andersson <bjorn.andersson@linaro.org>
11060 L: linux-remoteproc@vger.kernel.org
11061 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
11063 F: Documentation/devicetree/bindings/remoteproc/
11064 F: Documentation/remoteproc.txt
11065 F: drivers/remoteproc/
11066 F: include/linux/remoteproc.h
11068 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
11069 M: Ohad Ben-Cohen <ohad@wizery.com>
11070 M: Bjorn Andersson <bjorn.andersson@linaro.org>
11071 L: linux-remoteproc@vger.kernel.org
11072 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
11075 F: Documentation/rpmsg.txt
11076 F: include/linux/rpmsg.h
11077 F: include/linux/rpmsg/
11079 RENESAS CLOCK DRIVERS
11080 M: Geert Uytterhoeven <geert+renesas@glider.be>
11081 L: linux-renesas-soc@vger.kernel.org
11083 F: drivers/clk/renesas/
11085 RENESAS ETHERNET DRIVERS
11086 R: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
11087 L: netdev@vger.kernel.org
11088 L: linux-renesas-soc@vger.kernel.org
11089 F: drivers/net/ethernet/renesas/
11090 F: include/linux/sh_eth.h
11092 RENESAS R-CAR GYROADC DRIVER
11093 M: Marek Vasut <marek.vasut@gmail.com>
11094 L: linux-iio@vger.kernel.org
11096 F: drivers/iio/adc/rcar_gyro_adc.c
11098 RENESAS USB PHY DRIVER
11099 M: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
11100 L: linux-renesas-soc@vger.kernel.org
11102 F: drivers/phy/renesas/phy-rcar-gen3-usb*.c
11104 RESET CONTROLLER FRAMEWORK
11105 M: Philipp Zabel <p.zabel@pengutronix.de>
11106 T: git git://git.pengutronix.de/git/pza/linux
11109 F: Documentation/devicetree/bindings/reset/
11110 F: include/dt-bindings/reset/
11111 F: include/linux/reset.h
11112 F: include/linux/reset-controller.h
11115 M: Johannes Berg <johannes@sipsolutions.net>
11116 L: linux-wireless@vger.kernel.org
11117 W: http://wireless.kernel.org/
11118 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
11119 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
11121 F: Documentation/rfkill.txt
11125 M: Thomas Graf <tgraf@suug.ch>
11126 M: Herbert Xu <herbert@gondor.apana.org.au>
11127 L: netdev@vger.kernel.org
11129 F: lib/rhashtable.c
11130 F: include/linux/rhashtable.h
11132 RICOH SMARTMEDIA/XD DRIVER
11133 M: Maxim Levitsky <maximlevitsky@gmail.com>
11135 F: drivers/mtd/nand/r852.c
11136 F: drivers/mtd/nand/r852.h
11138 RICOH R5C592 MEMORYSTICK DRIVER
11139 M: Maxim Levitsky <maximlevitsky@gmail.com>
11141 F: drivers/memstick/host/r592.*
11144 M: Stefan Achatz <erazor_de@users.sourceforge.net>
11145 W: http://sourceforge.net/projects/roccat/
11147 F: drivers/hid/hid-roccat*
11148 F: include/linux/hid-roccat*
11149 F: Documentation/ABI/*/sysfs-driver-hid-roccat*
11152 M: Jiri Pirko <jiri@resnulli.us>
11153 L: netdev@vger.kernel.org
11155 F: drivers/net/ethernet/rocker/
11159 W: http://www.comtrol.com
11161 F: Documentation/serial/rocket.txt
11162 F: drivers/tty/rocket*
11164 ROCKETPORT EXPRESS/INFINITY DRIVER
11165 M: Kevin Cernekee <cernekee@gmail.com>
11166 L: linux-serial@vger.kernel.org
11168 F: drivers/tty/serial/rp2.*
11171 M: Ralf Baechle <ralf@linux-mips.org>
11172 L: linux-hams@vger.kernel.org
11173 W: http://www.linux-ax25.org/
11175 F: include/net/rose.h
11176 F: include/uapi/linux/rose.h
11179 RTL2830 MEDIA DRIVER
11180 M: Antti Palosaari <crope@iki.fi>
11181 L: linux-media@vger.kernel.org
11182 W: https://linuxtv.org
11183 W: http://palosaari.fi/linux/
11184 Q: http://patchwork.linuxtv.org/project/linux-media/list/
11185 T: git git://linuxtv.org/anttip/media_tree.git
11187 F: drivers/media/dvb-frontends/rtl2830*
11189 RTL2832 MEDIA DRIVER
11190 M: Antti Palosaari <crope@iki.fi>
11191 L: linux-media@vger.kernel.org
11192 W: https://linuxtv.org
11193 W: http://palosaari.fi/linux/
11194 Q: http://patchwork.linuxtv.org/project/linux-media/list/
11195 T: git git://linuxtv.org/anttip/media_tree.git
11197 F: drivers/media/dvb-frontends/rtl2832*
11199 RTL2832_SDR MEDIA DRIVER
11200 M: Antti Palosaari <crope@iki.fi>
11201 L: linux-media@vger.kernel.org
11202 W: https://linuxtv.org
11203 W: http://palosaari.fi/linux/
11204 Q: http://patchwork.linuxtv.org/project/linux-media/list/
11205 T: git git://linuxtv.org/anttip/media_tree.git
11207 F: drivers/media/dvb-frontends/rtl2832_sdr*
11209 RTL8180 WIRELESS DRIVER
11210 L: linux-wireless@vger.kernel.org
11211 W: http://wireless.kernel.org/
11212 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
11214 F: drivers/net/wireless/realtek/rtl818x/rtl8180/
11216 RTL8187 WIRELESS DRIVER
11217 M: Herton Ronaldo Krzesinski <herton@canonical.com>
11218 M: Hin-Tak Leung <htl10@users.sourceforge.net>
11219 M: Larry Finger <Larry.Finger@lwfinger.net>
11220 L: linux-wireless@vger.kernel.org
11221 W: http://wireless.kernel.org/
11222 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
11224 F: drivers/net/wireless/realtek/rtl818x/rtl8187/
11226 RTL8192CE WIRELESS DRIVER
11227 M: Larry Finger <Larry.Finger@lwfinger.net>
11228 M: Chaoming Li <chaoming_li@realsil.com.cn>
11229 L: linux-wireless@vger.kernel.org
11230 W: http://wireless.kernel.org/
11231 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
11233 F: drivers/net/wireless/realtek/rtlwifi/
11234 F: drivers/net/wireless/realtek/rtlwifi/rtl8192ce/
11236 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
11237 M: Jes Sorensen <Jes.Sorensen@gmail.com>
11238 L: linux-wireless@vger.kernel.org
11239 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
11241 F: drivers/net/wireless/realtek/rtl8xxxu/
11243 S3 SAVAGE FRAMEBUFFER DRIVER
11244 M: Antonino Daplas <adaplas@gmail.com>
11245 L: linux-fbdev@vger.kernel.org
11247 F: drivers/video/fbdev/savage/
11250 M: Martin Schwidefsky <schwidefsky@de.ibm.com>
11251 M: Heiko Carstens <heiko.carstens@de.ibm.com>
11252 L: linux-s390@vger.kernel.org
11253 W: http://www.ibm.com/developerworks/linux/linux390/
11254 T: git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
11258 F: Documentation/s390/
11259 F: Documentation/driver-api/s390-drivers.rst
11261 S390 COMMON I/O LAYER
11262 M: Sebastian Ott <sebott@linux.vnet.ibm.com>
11263 M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
11264 L: linux-s390@vger.kernel.org
11265 W: http://www.ibm.com/developerworks/linux/linux390/
11267 F: drivers/s390/cio/
11270 M: Stefan Haberland <sth@linux.vnet.ibm.com>
11271 M: Jan Hoeppner <hoeppner@linux.vnet.ibm.com>
11272 L: linux-s390@vger.kernel.org
11273 W: http://www.ibm.com/developerworks/linux/linux390/
11275 F: drivers/s390/block/dasd*
11276 F: block/partitions/ibm.c
11278 S390 NETWORK DRIVERS
11279 M: Julian Wiedmann <jwi@linux.vnet.ibm.com>
11280 M: Ursula Braun <ubraun@linux.vnet.ibm.com>
11281 L: linux-s390@vger.kernel.org
11282 W: http://www.ibm.com/developerworks/linux/linux390/
11284 F: drivers/s390/net/
11287 M: Sebastian Ott <sebott@linux.vnet.ibm.com>
11288 M: Gerald Schaefer <gerald.schaefer@de.ibm.com>
11289 L: linux-s390@vger.kernel.org
11290 W: http://www.ibm.com/developerworks/linux/linux390/
11293 F: drivers/pci/hotplug/s390_pci_hpc.c
11296 M: Harald Freudenberger <freude@de.ibm.com>
11297 L: linux-s390@vger.kernel.org
11298 W: http://www.ibm.com/developerworks/linux/linux390/
11300 F: drivers/s390/crypto/
11303 M: Steffen Maier <maier@linux.vnet.ibm.com>
11304 L: linux-s390@vger.kernel.org
11305 W: http://www.ibm.com/developerworks/linux/linux390/
11307 F: drivers/s390/scsi/zfcp_*
11309 S390 IUCV NETWORK LAYER
11310 M: Julian Wiedmann <jwi@linux.vnet.ibm.com>
11311 M: Ursula Braun <ubraun@linux.vnet.ibm.com>
11312 L: linux-s390@vger.kernel.org
11313 W: http://www.ibm.com/developerworks/linux/linux390/
11315 F: drivers/s390/net/*iucv*
11316 F: include/net/iucv/
11320 M: Gerald Schaefer <gerald.schaefer@de.ibm.com>
11321 L: linux-s390@vger.kernel.org
11322 W: http://www.ibm.com/developerworks/linux/linux390/
11324 F: drivers/iommu/s390-iommu.c
11326 S390 VFIO-CCW DRIVER
11327 M: Cornelia Huck <cohuck@redhat.com>
11328 M: Dong Jia Shi <bjsdjshi@linux.vnet.ibm.com>
11329 L: linux-s390@vger.kernel.org
11330 L: kvm@vger.kernel.org
11332 F: drivers/s390/cio/vfio_ccw*
11333 F: Documentation/s390/vfio-ccw.txt
11334 F: include/uapi/linux/vfio_ccw.h
11336 S3C24XX SD/MMC Driver
11337 M: Ben Dooks <ben-linux@fluff.org>
11338 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11340 F: drivers/mmc/host/s3cmci.*
11342 SAA6588 RDS RECEIVER DRIVER
11343 M: Hans Verkuil <hverkuil@xs4all.nl>
11344 L: linux-media@vger.kernel.org
11345 T: git git://linuxtv.org/media_tree.git
11346 W: https://linuxtv.org
11348 F: drivers/media/i2c/saa6588*
11350 SAA7134 VIDEO4LINUX DRIVER
11351 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
11352 M: Mauro Carvalho Chehab <mchehab@kernel.org>
11353 L: linux-media@vger.kernel.org
11354 W: https://linuxtv.org
11355 T: git git://linuxtv.org/media_tree.git
11357 F: Documentation/media/v4l-drivers/saa7134*
11358 F: drivers/media/pci/saa7134/
11360 SAA7146 VIDEO4LINUX-2 DRIVER
11361 M: Hans Verkuil <hverkuil@xs4all.nl>
11362 L: linux-media@vger.kernel.org
11363 T: git git://linuxtv.org/media_tree.git
11365 F: drivers/media/common/saa7146/
11366 F: drivers/media/pci/saa7146/
11367 F: include/media/saa7146*
11369 SAMSUNG LAPTOP DRIVER
11370 M: Corentin Chary <corentin.chary@gmail.com>
11371 L: platform-driver-x86@vger.kernel.org
11373 F: drivers/platform/x86/samsung-laptop.c
11375 SAMSUNG AUDIO (ASoC) DRIVERS
11376 M: Krzysztof Kozlowski <krzk@kernel.org>
11377 M: Sangbeom Kim <sbkim73@samsung.com>
11378 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
11379 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
11381 F: sound/soc/samsung/
11383 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
11384 M: Krzysztof Kozlowski <krzk@kernel.org>
11385 L: linux-crypto@vger.kernel.org
11386 L: linux-samsung-soc@vger.kernel.org
11388 F: drivers/crypto/exynos-rng.c
11389 F: Documentation/devicetree/bindings/rng/samsung,exynos-rng4.txt
11391 SAMSUNG FRAMEBUFFER DRIVER
11392 M: Jingoo Han <jingoohan1@gmail.com>
11393 L: linux-fbdev@vger.kernel.org
11395 F: drivers/video/fbdev/s3c-fb.c
11397 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
11398 M: Sangbeom Kim <sbkim73@samsung.com>
11399 M: Krzysztof Kozlowski <krzk@kernel.org>
11400 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11401 L: linux-kernel@vger.kernel.org
11402 L: linux-samsung-soc@vger.kernel.org
11404 F: drivers/mfd/sec*.c
11405 F: drivers/regulator/s2m*.c
11406 F: drivers/regulator/s5m*.c
11407 F: drivers/clk/clk-s2mps11.c
11408 F: drivers/rtc/rtc-s5m.c
11409 F: include/linux/mfd/samsung/
11410 F: Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
11411 F: Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
11412 F: Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
11413 F: Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
11415 SAMSUNG S5P Security SubSystem (SSS) DRIVER
11416 M: Krzysztof Kozlowski <krzk@kernel.org>
11417 M: Vladimir Zapolskiy <vz@mleia.com>
11418 L: linux-crypto@vger.kernel.org
11419 L: linux-samsung-soc@vger.kernel.org
11421 F: drivers/crypto/s5p-sss.c
11423 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
11424 M: Kyungmin Park <kyungmin.park@samsung.com>
11425 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
11426 L: linux-media@vger.kernel.org
11427 Q: https://patchwork.linuxtv.org/project/linux-media/list/
11429 F: drivers/media/platform/exynos4-is/
11431 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
11432 M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
11433 L: linux-media@vger.kernel.org
11434 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
11436 F: drivers/media/platform/s3c-camif/
11437 F: include/media/drv-intf/s3c_camif.h
11439 SAMSUNG S5C73M3 CAMERA DRIVER
11440 M: Kyungmin Park <kyungmin.park@samsung.com>
11441 M: Andrzej Hajda <a.hajda@samsung.com>
11442 L: linux-media@vger.kernel.org
11444 F: drivers/media/i2c/s5c73m3/*
11446 SAMSUNG S5K5BAF CAMERA DRIVER
11447 M: Kyungmin Park <kyungmin.park@samsung.com>
11448 M: Andrzej Hajda <a.hajda@samsung.com>
11449 L: linux-media@vger.kernel.org
11451 F: drivers/media/i2c/s5k5baf.c
11453 SAMSUNG S3FWRN5 NFC DRIVER
11454 M: Robert Baldyga <r.baldyga@samsung.com>
11455 M: Krzysztof Opasiak <k.opasiak@samsung.com>
11456 L: linux-nfc@lists.01.org (moderated for non-subscribers)
11458 F: drivers/nfc/s3fwrn5
11460 SAMSUNG SOC CLOCK DRIVERS
11461 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
11462 M: Tomasz Figa <tomasz.figa@gmail.com>
11463 M: Chanwoo Choi <cw00.choi@samsung.com>
11465 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
11466 F: drivers/clk/samsung/
11467 F: include/dt-bindings/clock/exynos*.h
11468 F: Documentation/devicetree/bindings/clock/exynos*.txt
11470 SAMSUNG SPI DRIVERS
11471 M: Kukjin Kim <kgene@kernel.org>
11472 M: Krzysztof Kozlowski <krzk@kernel.org>
11473 M: Andi Shyti <andi.shyti@samsung.com>
11474 L: linux-spi@vger.kernel.org
11475 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
11477 F: Documentation/devicetree/bindings/spi/spi-samsung.txt
11478 F: drivers/spi/spi-s3c*
11479 F: include/linux/platform_data/spi-s3c64xx.h
11481 SAMSUNG SXGBE DRIVERS
11482 M: Byungho An <bh74.an@samsung.com>
11483 M: Girish K S <ks.giri@samsung.com>
11484 M: Vipul Pandya <vipul.pandya@samsung.com>
11486 L: netdev@vger.kernel.org
11487 F: drivers/net/ethernet/samsung/sxgbe/
11489 SAMSUNG THERMAL DRIVER
11490 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11491 L: linux-pm@vger.kernel.org
11492 L: linux-samsung-soc@vger.kernel.org
11494 T: git https://github.com/lmajewski/linux-samsung-thermal.git
11495 F: drivers/thermal/samsung/
11497 SAMSUNG USB2 PHY DRIVER
11498 M: Kamil Debski <kamil@wypas.org>
11499 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
11500 L: linux-kernel@vger.kernel.org
11502 F: Documentation/devicetree/bindings/phy/samsung-phy.txt
11503 F: Documentation/phy/samsung-usb2.txt
11504 F: drivers/phy/samsung/phy-exynos4210-usb2.c
11505 F: drivers/phy/samsung/phy-exynos4x12-usb2.c
11506 F: drivers/phy/samsung/phy-exynos5250-usb2.c
11507 F: drivers/phy/samsung/phy-s5pv210-usb2.c
11508 F: drivers/phy/samsung/phy-samsung-usb2.c
11509 F: drivers/phy/samsung/phy-samsung-usb2.h
11512 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11513 L: linux-serial@vger.kernel.org
11515 F: Documentation/devicetree/bindings/serial/
11516 F: drivers/tty/serial/
11519 M: Rob Herring <robh@kernel.org>
11520 L: linux-serial@vger.kernel.org
11522 F: Documentation/devicetree/bindings/serial/slave-device.txt
11523 F: drivers/tty/serdev/
11524 F: include/linux/serdev.h
11527 M: Sean Young <sean@mess.org>
11528 L: linux-media@vger.kernel.org
11530 F: drivers/media/rc/serial_ir.c
11533 M: Benjamin Gaignard <benjamin.gaignard@linaro.org>
11535 F: drivers/staging/media/st-cec/
11536 F: Documentation/devicetree/bindings/media/stih-cec.txt
11538 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
11539 M: Ursula Braun <ubraun@linux.vnet.ibm.com>
11540 L: linux-s390@vger.kernel.org
11541 W: http://www.ibm.com/developerworks/linux/linux390/
11545 SYNOPSYS DESIGNWARE DMAC DRIVER
11546 M: Viresh Kumar <vireshk@kernel.org>
11547 M: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
11549 F: include/linux/dma/dw.h
11550 F: include/linux/platform_data/dma-dw.h
11553 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
11554 M: Jie Deng <jiedeng@synopsys.com>
11555 L: netdev@vger.kernel.org
11557 F: drivers/net/ethernet/synopsys/
11559 SYNOPSYS DESIGNWARE I2C DRIVER
11560 M: Jarkko Nikula <jarkko.nikula@linux.intel.com>
11561 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
11562 R: Mika Westerberg <mika.westerberg@linux.intel.com>
11563 L: linux-i2c@vger.kernel.org
11565 F: drivers/i2c/busses/i2c-designware-*
11566 F: include/linux/platform_data/i2c-designware.h
11568 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
11569 M: Jaehoon Chung <jh80.chung@samsung.com>
11570 L: linux-mmc@vger.kernel.org
11572 F: drivers/mmc/host/dw_mmc*
11574 SYSTEM TRACE MODULE CLASS
11575 M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
11577 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
11578 F: Documentation/trace/stm.txt
11579 F: drivers/hwtracing/stm/
11580 F: include/linux/stm.h
11581 F: include/uapi/linux/stm.h
11584 M: Jens Wiklander <jens.wiklander@linaro.org>
11586 F: include/linux/tee_drv.h
11587 F: include/uapi/linux/tee.h
11589 F: Documentation/tee.txt
11592 M: Andreas Noever <andreas.noever@gmail.com>
11593 M: Michael Jamet <michael.jamet@intel.com>
11594 M: Mika Westerberg <mika.westerberg@linux.intel.com>
11595 M: Yehezkel Bernat <yehezkel.bernat@intel.com>
11597 F: drivers/thunderbolt/
11599 TI BQ27XXX POWER SUPPLY DRIVER
11600 R: Andrew F. Davis <afd@ti.com>
11601 F: include/linux/power/bq27xxx_battery.h
11602 F: drivers/power/supply/bq27xxx_battery.c
11603 F: drivers/power/supply/bq27xxx_battery_i2c.c
11605 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
11606 M: John Stultz <john.stultz@linaro.org>
11607 M: Thomas Gleixner <tglx@linutronix.de>
11608 R: Stephen Boyd <sboyd@codeaurora.org>
11609 L: linux-kernel@vger.kernel.org
11610 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
11612 F: include/linux/clocksource.h
11613 F: include/linux/time.h
11614 F: include/linux/timex.h
11615 F: include/uapi/linux/time.h
11616 F: include/uapi/linux/timex.h
11617 F: kernel/time/clocksource.c
11618 F: kernel/time/time*.c
11619 F: kernel/time/alarmtimer.c
11620 F: kernel/time/ntp.c
11621 F: tools/testing/selftests/timers/
11623 TI TRF7970A NFC DRIVER
11624 M: Mark Greer <mgreer@animalcreek.com>
11625 L: linux-wireless@vger.kernel.org
11626 L: linux-nfc@lists.01.org (moderated for non-subscribers)
11628 F: drivers/nfc/trf7970a.c
11629 F: Documentation/devicetree/bindings/net/nfc/trf7970a.txt
11632 M: Zwane Mwaikambo <zwanem@gmail.com>
11634 F: drivers/watchdog/sc1200wdt.c
11637 M: Ingo Molnar <mingo@redhat.com>
11638 M: Peter Zijlstra <peterz@infradead.org>
11639 L: linux-kernel@vger.kernel.org
11640 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
11643 F: include/linux/sched.h
11644 F: include/uapi/linux/sched.h
11645 F: include/linux/wait.h
11648 M: Chen Liqin <liqin.linux@gmail.com>
11649 M: Lennox Wu <lennox.wu@gmail.com>
11650 W: http://www.sunplus.com
11654 SCR24X CHIP CARD INTERFACE DRIVER
11655 M: Lubomir Rintel <lkundrak@v3.sk>
11657 F: drivers/char/pcmcia/scr24x_cs.c
11659 SYSTEM CONTROL & POWER INTERFACE (SCPI) Message Protocol drivers
11660 M: Sudeep Holla <sudeep.holla@arm.com>
11661 L: linux-arm-kernel@lists.infradead.org
11663 F: Documentation/devicetree/bindings/arm/arm,scpi.txt
11664 F: drivers/clk/clk-scpi.c
11665 F: drivers/cpufreq/scpi-cpufreq.c
11666 F: drivers/firmware/arm_scpi.c
11667 F: include/linux/scpi_protocol.h
11670 M: Jens Axboe <axboe@kernel.dk>
11671 L: linux-scsi@vger.kernel.org
11672 W: http://www.kernel.dk
11674 F: drivers/scsi/sr*
11676 SCSI RDMA PROTOCOL (SRP) INITIATOR
11677 M: Bart Van Assche <bart.vanassche@sandisk.com>
11678 L: linux-rdma@vger.kernel.org
11680 W: http://www.openfabrics.org
11681 Q: http://patchwork.kernel.org/project/linux-rdma/list/
11682 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
11683 F: drivers/infiniband/ulp/srp/
11684 F: include/scsi/srp.h
11687 M: Doug Gilbert <dgilbert@interlog.com>
11688 L: linux-scsi@vger.kernel.org
11689 W: http://sg.danny.cz/sg
11691 F: Documentation/scsi/scsi-generic.txt
11692 F: drivers/scsi/sg.c
11693 F: include/scsi/sg.h
11696 M: "James E.J. Bottomley" <jejb@linux.vnet.ibm.com>
11697 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
11698 M: "Martin K. Petersen" <martin.petersen@oracle.com>
11699 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
11700 L: linux-scsi@vger.kernel.org
11702 F: Documentation/devicetree/bindings/scsi/
11707 M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
11708 L: linux-scsi@vger.kernel.org
11710 F: Documentation/scsi/st.txt
11711 F: drivers/scsi/st.*
11712 F: drivers/scsi/st_*.h
11715 M: Vlad Yasevich <vyasevich@gmail.com>
11716 M: Neil Horman <nhorman@tuxdriver.com>
11717 L: linux-sctp@vger.kernel.org
11718 W: http://lksctp.sourceforge.net
11720 F: Documentation/networking/sctp.txt
11721 F: include/linux/sctp.h
11722 F: include/uapi/linux/sctp.h
11723 F: include/net/sctp/
11727 M: Jim Cromie <jim.cromie@gmail.com>
11729 F: Documentation/i2c/busses/scx200_acb
11730 F: arch/x86/platform/scx200/
11731 F: drivers/watchdog/scx200_wdt.c
11732 F: drivers/i2c/busses/scx200*
11733 F: drivers/mtd/maps/scx200_docflash.c
11734 F: include/linux/scx200.h
11737 M: Jim Cromie <jim.cromie@gmail.com>
11739 F: drivers/char/scx200_gpio.c
11740 F: include/linux/scx200_gpio.h
11742 SCx200 HRT CLOCKSOURCE DRIVER
11743 M: Jim Cromie <jim.cromie@gmail.com>
11745 F: drivers/clocksource/scx200_hrt.c
11747 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
11748 M: Sascha Sommer <saschasommer@freenet.de>
11749 L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
11751 F: drivers/mmc/host/sdricoh_cs.c
11753 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
11754 M: Adrian Hunter <adrian.hunter@intel.com>
11755 L: linux-mmc@vger.kernel.org
11756 T: git git://git.infradead.org/users/ahunter/linux-sdhci.git
11758 F: drivers/mmc/host/sdhci*
11759 F: include/linux/mmc/sdhci*
11762 M: Kees Cook <keescook@chromium.org>
11763 R: Andy Lutomirski <luto@amacapital.net>
11764 R: Will Drewry <wad@chromium.org>
11765 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
11767 F: kernel/seccomp.c
11768 F: include/uapi/linux/seccomp.h
11769 F: include/linux/seccomp.h
11770 F: tools/testing/selftests/seccomp/*
11771 F: tools/testing/selftests/kselftest_harness.h
11772 F: Documentation/userspace-api/seccomp_filter.rst
11773 K: \bsecure_computing
11776 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
11777 M: Al Cooper <alcooperx@gmail.com>
11778 L: linux-mmc@vger.kernel.org
11779 L: bcm-kernel-feedback-list@broadcom.com
11781 F: drivers/mmc/host/sdhci-brcmstb*
11783 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
11784 M: Ben Dooks <ben-linux@fluff.org>
11785 M: Jaehoon Chung <jh80.chung@samsung.com>
11786 L: linux-mmc@vger.kernel.org
11788 F: drivers/mmc/host/sdhci-s3c*
11790 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
11791 M: Viresh Kumar <vireshk@kernel.org>
11792 L: linux-mmc@vger.kernel.org
11794 F: drivers/mmc/host/sdhci-spear.c
11796 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
11797 M: Scott Bauer <scott.bauer@intel.com>
11798 M: Jonathan Derrick <jonathan.derrick@intel.com>
11799 M: Rafael Antognolli <rafael.antognolli@intel.com>
11800 L: linux-block@vger.kernel.org
11803 F: block/opal_proto.h
11804 F: include/linux/sed*
11805 F: include/uapi/linux/sed*
11808 M: James Morris <james.l.morris@oracle.com>
11809 M: "Serge E. Hallyn" <serge@hallyn.com>
11810 L: linux-security-module@vger.kernel.org (suggested Cc:)
11811 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
11812 W: http://kernsec.org/
11817 M: Security Officers <security@kernel.org>
11820 SELINUX SECURITY MODULE
11821 M: Paul Moore <paul@paul-moore.com>
11822 M: Stephen Smalley <sds@tycho.nsa.gov>
11823 M: Eric Paris <eparis@parisplace.org>
11824 L: selinux@tycho.nsa.gov (moderated for non-subscribers)
11825 W: http://selinuxproject.org
11826 T: git git://git.infradead.org/users/pcmoore/selinux
11828 F: include/linux/selinux*
11829 F: security/selinux/
11830 F: scripts/selinux/
11831 F: Documentation/admin-guide/LSM/SELinux.rst
11833 APPARMOR SECURITY MODULE
11834 M: John Johansen <john.johansen@canonical.com>
11835 L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
11836 W: apparmor.wiki.kernel.org
11837 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
11839 F: security/apparmor/
11840 F: Documentation/admin-guide/LSM/apparmor.rst
11842 LOADPIN SECURITY MODULE
11843 M: Kees Cook <keescook@chromium.org>
11844 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
11846 F: security/loadpin/
11847 F: Documentation/admin-guide/LSM/LoadPin.rst
11849 YAMA SECURITY MODULE
11850 M: Kees Cook <keescook@chromium.org>
11851 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
11854 F: Documentation/admin-guide/LSM/Yama.rst
11857 M: Jiri Slaby <jirislaby@gmail.com>
11859 F: drivers/misc/phantom.c
11860 F: include/uapi/linux/phantom.h
11862 Emulex 10Gbps iSCSI - OneConnect DRIVER
11863 M: Subbu Seetharaman <subbu.seetharaman@broadcom.com>
11864 M: Ketan Mukadam <ketan.mukadam@broadcom.com>
11865 M: Jitendra Bhivare <jitendra.bhivare@broadcom.com>
11866 L: linux-scsi@vger.kernel.org
11867 W: http://www.broadcom.com
11869 F: drivers/scsi/be2iscsi/
11871 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
11872 M: Sathya Perla <sathya.perla@broadcom.com>
11873 M: Ajit Khaparde <ajit.khaparde@broadcom.com>
11874 M: Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
11875 M: Somnath Kotur <somnath.kotur@broadcom.com>
11876 L: netdev@vger.kernel.org
11877 W: http://www.emulex.com
11879 F: drivers/net/ethernet/emulex/benet/
11881 EMULEX ONECONNECT ROCE DRIVER
11882 M: Selvin Xavier <selvin.xavier@broadcom.com>
11883 M: Devesh Sharma <devesh.sharma@broadcom.com>
11884 L: linux-rdma@vger.kernel.org
11885 W: http://www.broadcom.com
11887 F: drivers/infiniband/hw/ocrdma/
11888 F: include/uapi/rdma/ocrdma-abi.h
11891 M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
11892 M: Edward Cree <ecree@solarflare.com>
11893 M: Bert Kenward <bkenward@solarflare.com>
11894 L: netdev@vger.kernel.org
11896 F: drivers/net/ethernet/sfc/
11899 M: Dimitri Sivanich <sivanich@sgi.com>
11901 F: drivers/misc/sgi-gru/
11903 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
11904 M: Pat Gefre <pfg@sgi.com>
11905 L: linux-ia64@vger.kernel.org
11907 F: Documentation/ia64/serial.txt
11908 F: drivers/tty/serial/ioc?_serial.c
11909 F: include/linux/ioc?.h
11911 SGI XP/XPC/XPNET DRIVER
11912 M: Cliff Whickman <cpw@sgi.com>
11913 M: Robin Holt <robinmholt@gmail.com>
11915 F: drivers/misc/sgi-xp/
11917 SI2157 MEDIA DRIVER
11918 M: Antti Palosaari <crope@iki.fi>
11919 L: linux-media@vger.kernel.org
11920 W: https://linuxtv.org
11921 W: http://palosaari.fi/linux/
11922 Q: http://patchwork.linuxtv.org/project/linux-media/list/
11923 T: git git://linuxtv.org/anttip/media_tree.git
11925 F: drivers/media/tuners/si2157*
11927 SI2168 MEDIA DRIVER
11928 M: Antti Palosaari <crope@iki.fi>
11929 L: linux-media@vger.kernel.org
11930 W: https://linuxtv.org
11931 W: http://palosaari.fi/linux/
11932 Q: http://patchwork.linuxtv.org/project/linux-media/list/
11933 T: git git://linuxtv.org/anttip/media_tree.git
11935 F: drivers/media/dvb-frontends/si2168*
11937 SI470X FM RADIO RECEIVER I2C DRIVER
11938 M: Hans Verkuil <hverkuil@xs4all.nl>
11939 L: linux-media@vger.kernel.org
11940 T: git git://linuxtv.org/media_tree.git
11941 W: https://linuxtv.org
11943 F: drivers/media/radio/si470x/radio-si470x-i2c.c
11945 SI470X FM RADIO RECEIVER USB DRIVER
11946 M: Hans Verkuil <hverkuil@xs4all.nl>
11947 L: linux-media@vger.kernel.org
11948 T: git git://linuxtv.org/media_tree.git
11949 W: https://linuxtv.org
11951 F: drivers/media/radio/si470x/radio-si470x-common.c
11952 F: drivers/media/radio/si470x/radio-si470x.h
11953 F: drivers/media/radio/si470x/radio-si470x-usb.c
11955 SI4713 FM RADIO TRANSMITTER I2C DRIVER
11956 M: Eduardo Valentin <edubezval@gmail.com>
11957 L: linux-media@vger.kernel.org
11958 T: git git://linuxtv.org/media_tree.git
11959 W: https://linuxtv.org
11961 F: drivers/media/radio/si4713/si4713.?
11963 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
11964 M: Eduardo Valentin <edubezval@gmail.com>
11965 L: linux-media@vger.kernel.org
11966 T: git git://linuxtv.org/media_tree.git
11967 W: https://linuxtv.org
11969 F: drivers/media/radio/si4713/radio-platform-si4713.c
11971 SI4713 FM RADIO TRANSMITTER USB DRIVER
11972 M: Hans Verkuil <hverkuil@xs4all.nl>
11973 L: linux-media@vger.kernel.org
11974 T: git git://linuxtv.org/media_tree.git
11975 W: https://linuxtv.org
11977 F: drivers/media/radio/si4713/radio-usb-si4713.c
11980 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
11981 M: Mauro Carvalho Chehab <mchehab@kernel.org>
11982 L: linux-media@vger.kernel.org
11983 W: https://linuxtv.org
11984 T: git git://linuxtv.org/media_tree.git
11986 F: drivers/media/common/siano/
11987 F: drivers/media/usb/siano/
11988 F: drivers/media/usb/siano/
11989 F: drivers/media/mmc/siano/
11991 SILEAD TOUCHSCREEN DRIVER
11992 M: Hans de Goede <hdegoede@redhat.com>
11993 L: linux-input@vger.kernel.org
11994 L: platform-driver-x86@vger.kernel.org
11996 F: drivers/input/touchscreen/silead.c
11997 F: drivers/platform/x86/silead_dmi.c
12000 M: Hans de Goede <hdegoede@redhat.com>
12001 L: linux-fbdev@vger.kernel.org
12003 F: Documentation/devicetree/bindings/display/simple-framebuffer.txt
12004 F: drivers/video/fbdev/simplefb.c
12005 F: include/linux/platform_data/simplefb.h
12007 SH_VEU V4L2 MEM2MEM DRIVER
12008 L: linux-media@vger.kernel.org
12010 F: drivers/media/platform/sh_veu.c
12012 SH_VOU V4L2 OUTPUT DRIVER
12013 L: linux-media@vger.kernel.org
12015 F: drivers/media/platform/sh_vou.c
12016 F: include/media/drv-intf/sh_vou.h
12018 SIMPLE FIRMWARE INTERFACE (SFI)
12019 M: Len Brown <lenb@kernel.org>
12020 L: sfi-devel@simplefirmware.org
12021 W: http://simplefirmware.org/
12022 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
12024 F: arch/x86/platform/sfi/
12026 F: include/linux/sfi*.h
12028 SIMTEC EB110ATX (Chalice CATS)
12030 P: Vincent Sanders <vince@simtec.co.uk>
12031 M: Simtec Linux Team <linux@simtec.co.uk>
12032 W: http://www.simtec.co.uk/products/EB110ATX/
12035 SIMTEC EB2410ITX (BAST)
12037 P: Vincent Sanders <vince@simtec.co.uk>
12038 M: Simtec Linux Team <linux@simtec.co.uk>
12039 W: http://www.simtec.co.uk/products/EB2410ITX/
12041 F: arch/arm/mach-s3c24xx/mach-bast.c
12042 F: arch/arm/mach-s3c24xx/bast-ide.c
12043 F: arch/arm/mach-s3c24xx/bast-irq.c
12045 SIPHASH PRF ROUTINES
12046 M: Jason A. Donenfeld <Jason@zx2c4.com>
12049 F: lib/test_siphash.c
12050 F: include/linux/siphash.h
12052 TI DAVINCI MACHINE SUPPORT
12053 M: Sekhar Nori <nsekhar@ti.com>
12054 M: Kevin Hilman <khilman@kernel.org>
12055 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12056 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
12058 F: arch/arm/mach-davinci/
12059 F: drivers/i2c/busses/i2c-davinci.c
12060 F: arch/arm/boot/dts/da850*
12062 TI DAVINCI SERIES MEDIA DRIVER
12063 M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
12064 L: linux-media@vger.kernel.org
12065 W: https://linuxtv.org
12066 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12067 T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
12069 F: drivers/media/platform/davinci/
12070 F: include/media/davinci/
12072 TI DAVINCI SERIES GPIO DRIVER
12073 M: Keerthy <j-keerthy@ti.com>
12074 L: linux-gpio@vger.kernel.org
12076 F: Documentation/devicetree/bindings/gpio/gpio-davinci.txt
12077 F: drivers/gpio/gpio-davinci.c
12079 TI AM437X VPFE DRIVER
12080 M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
12081 L: linux-media@vger.kernel.org
12082 W: https://linuxtv.org
12083 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12084 T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
12086 F: drivers/media/platform/am437x/
12088 OV2659 OMNIVISION SENSOR DRIVER
12089 M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
12090 L: linux-media@vger.kernel.org
12091 W: https://linuxtv.org
12092 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12093 T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
12095 F: drivers/media/i2c/ov2659.c
12096 F: include/media/i2c/ov2659.h
12098 SILICON MOTION SM712 FRAME BUFFER DRIVER
12099 M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
12100 M: Teddy Wang <teddy.wang@siliconmotion.com>
12101 M: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
12102 L: linux-fbdev@vger.kernel.org
12104 F: drivers/video/fbdev/sm712*
12105 F: Documentation/fb/sm712fb.txt
12107 SIS 190 ETHERNET DRIVER
12108 M: Francois Romieu <romieu@fr.zoreil.com>
12109 L: netdev@vger.kernel.org
12111 F: drivers/net/ethernet/sis/sis190.c
12113 SIS 900/7016 FAST ETHERNET DRIVER
12114 M: Daniele Venzano <venza@brownhat.org>
12115 W: http://www.brownhat.org/sis900.html
12116 L: netdev@vger.kernel.org
12118 F: drivers/net/ethernet/sis/sis900.*
12120 SIS FRAMEBUFFER DRIVER
12121 M: Thomas Winischhofer <thomas@winischhofer.net>
12122 W: http://www.winischhofer.net/linuxsisvga.shtml
12124 F: Documentation/fb/sisfb.txt
12125 F: drivers/video/fbdev/sis/
12126 F: include/video/sisfb.h
12129 M: Thomas Winischhofer <thomas@winischhofer.net>
12130 W: http://www.winischhofer.at/linuxsisusbvga.shtml
12132 F: drivers/usb/misc/sisusbvga/
12135 M: Christoph Lameter <cl@linux.com>
12136 M: Pekka Enberg <penberg@kernel.org>
12137 M: David Rientjes <rientjes@google.com>
12138 M: Joonsoo Kim <iamjoonsoo.kim@lge.com>
12139 M: Andrew Morton <akpm@linux-foundation.org>
12140 L: linux-mm@kvack.org
12142 F: include/linux/sl?b*.h
12145 SLEEPABLE READ-COPY UPDATE (SRCU)
12146 M: Lai Jiangshan <jiangshanlai@gmail.com>
12147 M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
12148 M: Josh Triplett <josh@joshtriplett.org>
12149 R: Steven Rostedt <rostedt@goodmis.org>
12150 R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
12151 L: linux-kernel@vger.kernel.org
12152 W: http://www.rdrop.com/users/paulmck/RCU/
12154 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
12155 F: include/linux/srcu.h
12156 F: kernel/rcu/srcu.c
12158 SMACK SECURITY MODULE
12159 M: Casey Schaufler <casey@schaufler-ca.com>
12160 L: linux-security-module@vger.kernel.org
12161 W: http://schaufler-ca.com
12162 T: git git://github.com/cschaufler/smack-next
12164 F: Documentation/admin-guide/LSM/Smack.rst
12167 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
12168 M: Kevin Hilman <khilman@kernel.org>
12169 M: Nishanth Menon <nm@ti.com>
12171 F: drivers/power/avs/
12172 F: include/linux/power/smartreflex.h
12173 L: linux-pm@vger.kernel.org
12175 SMC91x ETHERNET DRIVER
12176 M: Nicolas Pitre <nico@fluxnic.net>
12178 F: drivers/net/ethernet/smsc/smc91x.*
12180 SMIA AND SMIA++ IMAGE SENSOR DRIVER
12181 M: Sakari Ailus <sakari.ailus@iki.fi>
12182 L: linux-media@vger.kernel.org
12184 F: drivers/media/i2c/smiapp/
12185 F: include/media/i2c/smiapp.h
12186 F: drivers/media/i2c/smiapp-pll.c
12187 F: drivers/media/i2c/smiapp-pll.h
12188 F: include/uapi/linux/smiapp.h
12189 F: Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
12191 SMM665 HARDWARE MONITOR DRIVER
12192 M: Guenter Roeck <linux@roeck-us.net>
12193 L: linux-hwmon@vger.kernel.org
12195 F: Documentation/hwmon/smm665
12196 F: drivers/hwmon/smm665.c
12198 SMSC EMC2103 HARDWARE MONITOR DRIVER
12199 M: Steve Glendinning <steve.glendinning@shawell.net>
12200 L: linux-hwmon@vger.kernel.org
12202 F: Documentation/hwmon/emc2103
12203 F: drivers/hwmon/emc2103.c
12205 SMSC SCH5627 HARDWARE MONITOR DRIVER
12206 M: Hans de Goede <hdegoede@redhat.com>
12207 L: linux-hwmon@vger.kernel.org
12209 F: Documentation/hwmon/sch5627
12210 F: drivers/hwmon/sch5627.c
12212 SMSC47B397 HARDWARE MONITOR DRIVER
12213 M: Jean Delvare <jdelvare@suse.com>
12214 L: linux-hwmon@vger.kernel.org
12216 F: Documentation/hwmon/smsc47b397
12217 F: drivers/hwmon/smsc47b397.c
12219 SMSC911x ETHERNET DRIVER
12220 M: Steve Glendinning <steve.glendinning@shawell.net>
12221 L: netdev@vger.kernel.org
12223 F: include/linux/smsc911x.h
12224 F: drivers/net/ethernet/smsc/smsc911x.*
12226 SMSC9420 PCI ETHERNET DRIVER
12227 M: Steve Glendinning <steve.glendinning@shawell.net>
12228 L: netdev@vger.kernel.org
12230 F: drivers/net/ethernet/smsc/smsc9420.*
12232 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
12233 M: Steve Glendinning <steve.glendinning@shawell.net>
12234 L: linux-fbdev@vger.kernel.org
12236 F: drivers/video/fbdev/smscufx.c
12238 SOC-CAMERA V4L2 SUBSYSTEM
12239 M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
12240 L: linux-media@vger.kernel.org
12241 T: git git://linuxtv.org/media_tree.git
12243 F: include/media/soc*
12244 F: drivers/media/i2c/soc_camera/
12245 F: drivers/media/platform/soc_camera/
12247 SOEKRIS NET48XX LED SUPPORT
12248 M: Chris Boot <bootc@bootc.net>
12250 F: drivers/leds/leds-net48xx.c
12252 SOFTLOGIC 6x10 MPEG CODEC
12253 M: Bluecherry Maintainers <maintainers@bluecherrydvr.com>
12254 M: Anton Sviridenko <anton@corp.bluecherry.net>
12255 M: Andrey Utkin <andrey.utkin@corp.bluecherry.net>
12256 M: Andrey Utkin <andrey_utkin@fastmail.com>
12257 M: Ismael Luceno <ismael@iodev.co.uk>
12258 L: linux-media@vger.kernel.org
12260 F: drivers/media/pci/solo6x10/
12262 SOFTWARE RAID (Multiple Disks) SUPPORT
12263 M: Shaohua Li <shli@kernel.org>
12264 L: linux-raid@vger.kernel.org
12265 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shli/md.git
12268 F: include/linux/raid/
12269 F: include/uapi/linux/raid/
12271 SONIC NETWORK DRIVER
12272 M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12273 L: netdev@vger.kernel.org
12275 F: drivers/net/ethernet/natsemi/sonic.*
12277 SONICS SILICON BACKPLANE DRIVER (SSB)
12278 M: Michael Buesch <m@bues.ch>
12279 L: linux-wireless@vger.kernel.org
12282 F: include/linux/ssb/
12284 SONY VAIO CONTROL DEVICE DRIVER
12285 M: Mattia Dongili <malattia@linux.it>
12286 L: platform-driver-x86@vger.kernel.org
12287 W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
12289 F: Documentation/laptops/sony-laptop.txt
12290 F: drivers/char/sonypi.c
12291 F: drivers/platform/x86/sony-laptop.c
12292 F: include/linux/sony-laptop.h
12294 SONY MEMORYSTICK CARD SUPPORT
12295 M: Alex Dubov <oakad@yahoo.com>
12296 W: http://tifmxx.berlios.de/
12298 F: drivers/memstick/host/tifm_ms.c
12300 SONY MEMORYSTICK STANDARD SUPPORT
12301 M: Maxim Levitsky <maximlevitsky@gmail.com>
12303 F: drivers/memstick/core/ms_block.*
12306 M: Jaroslav Kysela <perex@perex.cz>
12307 M: Takashi Iwai <tiwai@suse.com>
12308 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
12309 W: http://www.alsa-project.org/
12310 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
12311 T: git git://git.alsa-project.org/alsa-kernel.git
12312 Q: http://patchwork.kernel.org/project/alsa-devel/list/
12314 F: Documentation/sound/
12316 F: include/uapi/sound/
12319 SOUND - COMPRESSED AUDIO
12320 M: Vinod Koul <vinod.koul@intel.com>
12321 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
12322 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
12324 F: Documentation/sound/alsa/compress_offload.txt
12325 F: include/sound/compress_driver.h
12326 F: include/uapi/sound/compress_*
12327 F: sound/core/compress_offload.c
12328 F: sound/soc/soc-compress.c
12330 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
12331 M: Liam Girdwood <lgirdwood@gmail.com>
12332 M: Mark Brown <broonie@kernel.org>
12333 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
12334 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
12335 W: http://alsa-project.org/main/index.php/ASoC
12337 F: Documentation/devicetree/bindings/sound/
12338 F: Documentation/sound/alsa/soc/
12340 F: include/sound/soc*
12342 SOUND - DMAENGINE HELPERS
12343 M: Lars-Peter Clausen <lars@metafoo.de>
12345 F: include/sound/dmaengine_pcm.h
12346 F: sound/core/pcm_dmaengine.c
12347 F: sound/soc/soc-generic-dmaengine-pcm.c
12350 M: Olli Salonen <olli.salonen@iki.fi>
12351 L: linux-media@vger.kernel.org
12352 W: https://linuxtv.org
12353 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12355 F: drivers/media/dvb-frontends/sp2*
12357 SPARC + UltraSPARC (sparc/sparc64)
12358 M: "David S. Miller" <davem@davemloft.net>
12359 L: sparclinux@vger.kernel.org
12360 Q: http://patchwork.ozlabs.org/project/sparclinux/list/
12361 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
12362 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
12367 SPARC SERIAL DRIVERS
12368 M: "David S. Miller" <davem@davemloft.net>
12369 L: sparclinux@vger.kernel.org
12370 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
12371 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
12373 F: include/linux/sunserialcore.h
12374 F: drivers/tty/serial/suncore.c
12375 F: drivers/tty/serial/sunhv.c
12376 F: drivers/tty/serial/sunsab.c
12377 F: drivers/tty/serial/sunsab.h
12378 F: drivers/tty/serial/sunsu.c
12379 F: drivers/tty/serial/sunzilog.c
12380 F: drivers/tty/serial/sunzilog.h
12383 M: "Christopher Li" <sparse@chrisli.org>
12384 L: linux-sparse@vger.kernel.org
12385 W: https://sparse.wiki.kernel.org/
12386 T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
12387 T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
12389 F: include/linux/compiler.h
12391 SPEAR PLATFORM SUPPORT
12392 M: Viresh Kumar <vireshk@kernel.org>
12393 M: Shiraz Hashim <shiraz.linux.kernel@gmail.com>
12394 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12395 W: http://www.st.com/spear
12397 F: arch/arm/boot/dts/spear*
12398 F: arch/arm/mach-spear/
12400 SPEAR CLOCK FRAMEWORK SUPPORT
12401 M: Viresh Kumar <vireshk@kernel.org>
12402 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12403 W: http://www.st.com/spear
12405 F: drivers/clk/spear/
12408 M: Cyrille Pitchen <cyrille.pitchen@wedev4u.fr>
12409 M: Marek Vasut <marek.vasut@gmail.com>
12410 L: linux-mtd@lists.infradead.org
12411 W: http://www.linux-mtd.infradead.org/
12412 Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
12413 T: git git://github.com/spi-nor/linux.git
12415 F: drivers/mtd/spi-nor/
12416 F: include/linux/mtd/spi-nor.h
12419 M: Mark Brown <broonie@kernel.org>
12420 L: linux-spi@vger.kernel.org
12421 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
12422 Q: http://patchwork.kernel.org/project/spi-devel-general/list/
12424 F: Documentation/devicetree/bindings/spi/
12425 F: Documentation/spi/
12427 F: include/linux/spi/
12428 F: include/uapi/linux/spi/
12431 SPIDERNET NETWORK DRIVER for CELL
12432 M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
12433 L: netdev@vger.kernel.org
12435 F: Documentation/networking/spider_net.txt
12436 F: drivers/net/ethernet/toshiba/spider_net*
12439 M: Jeremy Kerr <jk@ozlabs.org>
12440 L: linuxppc-dev@lists.ozlabs.org
12441 W: http://www.ibm.com/developerworks/power/cell/
12443 F: Documentation/filesystems/spufs.txt
12444 F: arch/powerpc/platforms/cell/spufs/
12446 SQUASHFS FILE SYSTEM
12447 M: Phillip Lougher <phillip@squashfs.org.uk>
12448 L: squashfs-devel@lists.sourceforge.net (subscribers-only)
12449 W: http://squashfs.org.uk
12450 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
12452 F: Documentation/filesystems/squashfs.txt
12455 SRM (Alpha) environment access
12456 M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
12458 F: arch/alpha/kernel/srm_env.c
12461 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
12462 L: stable@vger.kernel.org
12464 F: Documentation/process/stable-kernel-rules.rst
12467 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
12468 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
12469 L: devel@driverdev.osuosl.org
12471 F: drivers/staging/
12474 M: Ian Abbott <abbotti@mev.co.uk>
12475 M: H Hartley Sweeten <hsweeten@visionengravers.com>
12477 F: drivers/staging/comedi/
12479 STAGING - FLARION FT1000 DRIVERS
12480 M: Marek Belisko <marek.belisko@gmail.com>
12482 F: drivers/staging/ft1000/
12484 STAGING - INDUSTRIAL IO
12485 M: Jonathan Cameron <jic23@kernel.org>
12486 L: linux-iio@vger.kernel.org
12488 F: Documentation/devicetree/bindings/staging/iio/
12489 F: drivers/staging/iio/
12491 STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
12492 M: Jarod Wilson <jarod@wilsonet.com>
12493 W: http://www.lirc.org/
12495 F: drivers/staging/media/lirc/
12497 STAGING - LUSTRE PARALLEL FILESYSTEM
12498 M: Oleg Drokin <oleg.drokin@intel.com>
12499 M: Andreas Dilger <andreas.dilger@intel.com>
12500 M: James Simmons <jsimmons@infradead.org>
12501 L: lustre-devel@lists.lustre.org (moderated for non-subscribers)
12502 W: http://wiki.lustre.org/
12504 F: drivers/staging/lustre
12506 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
12507 M: Marc Dietrich <marvin24@gmx.de>
12508 L: ac100@lists.launchpad.net (moderated for non-subscribers)
12509 L: linux-tegra@vger.kernel.org
12511 F: drivers/staging/nvec/
12513 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
12514 M: Jens Frederich <jfrederich@gmail.com>
12515 M: Daniel Drake <dsd@laptop.org>
12516 M: Jon Nettleton <jon.nettleton@gmail.com>
12517 W: http://wiki.laptop.org/go/DCON
12519 F: drivers/staging/olpc_dcon/
12521 STAGING - REALTEK RTL8712U DRIVERS
12522 M: Larry Finger <Larry.Finger@lwfinger.net>
12523 M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
12525 F: drivers/staging/rtl8712/
12527 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
12528 M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
12529 M: Teddy Wang <teddy.wang@siliconmotion.com>
12530 M: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
12531 L: linux-fbdev@vger.kernel.org
12533 F: drivers/staging/sm750fb/
12535 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
12536 M: William Hubbs <w.d.hubbs@gmail.com>
12537 M: Chris Brannon <chris@the-brannons.com>
12538 M: Kirk Reiser <kirk@reisers.ca>
12539 M: Samuel Thibault <samuel.thibault@ens-lyon.org>
12540 L: speakup@linux-speakup.org
12541 W: http://www.linux-speakup.org/
12543 F: drivers/staging/speakup/
12545 STAGING - VIA VT665X DRIVERS
12546 M: Forest Bond <forest@alittletooquiet.net>
12548 F: drivers/staging/vt665?/
12550 STAGING - WILC1000 WIFI DRIVER
12551 M: Aditya Shankar <aditya.shankar@microchip.com>
12552 M: Ganesh Krishna <ganesh.krishna@microchip.com>
12553 L: linux-wireless@vger.kernel.org
12555 F: drivers/staging/wilc1000/
12557 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
12558 M: Arnaud Patard <arnaud.patard@rtp-net.org>
12560 F: drivers/staging/xgifb/
12562 STARFIRE/DURALAN NETWORK DRIVER
12563 M: Ion Badulescu <ionut@badula.org>
12565 F: drivers/net/ethernet/adaptec/starfire*
12568 M: Sam Creasey <sammy@sammy.net>
12569 W: http://sammy.net/sun3/
12571 F: arch/m68k/kernel/*sun3*
12572 F: arch/m68k/sun3*/
12573 F: arch/m68k/include/asm/sun3*
12574 F: drivers/net/ethernet/i825xx/sun3*
12576 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
12577 M: Hans de Goede <hdegoede@redhat.com>
12578 L: linux-input@vger.kernel.org
12580 F: Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
12581 F: drivers/input/keyboard/sun4i-lradc-keys.c
12583 SUNDANCE NETWORK DRIVER
12584 M: Denis Kirjanov <kda@linux-powerpc.org>
12585 L: netdev@vger.kernel.org
12587 F: drivers/net/ethernet/dlink/sundance.c
12590 M: Yoshinori Sato <ysato@users.sourceforge.jp>
12591 M: Rich Felker <dalias@libc.org>
12592 L: linux-sh@vger.kernel.org
12593 Q: http://patchwork.kernel.org/project/linux-sh/list/
12595 F: Documentation/sh/
12600 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
12601 M: Len Brown <len.brown@intel.com>
12602 M: Pavel Machek <pavel@ucw.cz>
12603 L: linux-pm@vger.kernel.org
12604 B: https://bugzilla.kernel.org
12606 F: Documentation/power/
12607 F: arch/x86/kernel/acpi/
12608 F: drivers/base/power/
12610 F: include/linux/suspend.h
12611 F: include/linux/freezer.h
12612 F: include/linux/pm.h
12615 M: Martin Mares <mj@ucw.cz>
12616 L: linux-video@atrey.karlin.mff.cuni.cz
12618 F: Documentation/svga.txt
12619 F: arch/x86/boot/video*
12622 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
12623 L: linux-kernel@vger.kernel.org
12624 T: git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
12627 F: arch/*/kernel/pci-swiotlb.c
12628 F: include/linux/swiotlb.h
12631 M: Jiri Pirko <jiri@resnulli.us>
12632 M: Ivan Vecera <ivecera@redhat.com>
12633 L: netdev@vger.kernel.org
12636 F: include/net/switchdev.h
12638 SYNOPSYS ARC ARCHITECTURE
12639 M: Vineet Gupta <vgupta@synopsys.com>
12640 L: linux-snps-arc@lists.infradead.org
12643 F: Documentation/devicetree/bindings/arc/*
12644 F: Documentation/devicetree/bindings/interrupt-controller/snps,arc*
12645 F: drivers/clocksource/arc_timer.c
12646 F: drivers/tty/serial/arc_uart.c
12647 T: git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
12649 SYNOPSYS ARC SDP platform support
12650 M: Alexey Brodkin <abrodkin@synopsys.com>
12652 F: arch/arc/plat-axs10x
12653 F: arch/arc/boot/dts/ax*
12654 F: Documentation/devicetree/bindings/arc/axs10*
12656 SYSTEM CONFIGURATION (SYSCON)
12657 M: Lee Jones <lee.jones@linaro.org>
12658 M: Arnd Bergmann <arnd@arndb.de>
12659 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
12661 F: drivers/mfd/syscon.c
12663 SYSTEM RESET/SHUTDOWN DRIVERS
12664 M: Sebastian Reichel <sre@kernel.org>
12665 L: linux-pm@vger.kernel.org
12666 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
12668 F: Documentation/devicetree/bindings/power/reset/
12669 F: drivers/power/reset/
12672 M: Christoph Hellwig <hch@infradead.org>
12674 F: Documentation/filesystems/sysv-fs.txt
12676 F: include/linux/sysv_fs.h
12679 M: "Nicholas A. Bellinger" <nab@linux-iscsi.org>
12680 L: linux-scsi@vger.kernel.org
12681 L: target-devel@vger.kernel.org
12682 W: http://www.linux-iscsi.org
12683 W: http://groups.google.com/group/linux-iscsi-target-dev
12684 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
12688 F: Documentation/target/
12690 TASKSTATS STATISTICS INTERFACE
12691 M: Balbir Singh <bsingharora@gmail.com>
12693 F: Documentation/accounting/taskstats*
12694 F: include/linux/taskstats*
12695 F: kernel/taskstats.c
12698 M: Jamal Hadi Salim <jhs@mojatatu.com>
12699 M: Cong Wang <xiyou.wangcong@gmail.com>
12700 M: Jiri Pirko <jiri@resnulli.us>
12701 L: netdev@vger.kernel.org
12703 F: include/net/pkt_cls.h
12704 F: include/net/pkt_sched.h
12705 F: include/net/tc_act/
12706 F: include/uapi/linux/pkt_cls.h
12707 F: include/uapi/linux/pkt_sched.h
12708 F: include/uapi/linux/tc_act/
12709 F: include/uapi/linux/tc_ematch/
12712 TCP LOW PRIORITY MODULE
12713 M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
12714 M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
12715 W: http://tcp-lp-mod.sourceforge.net/
12717 F: net/ipv4/tcp_lp.c
12719 TDA10071 MEDIA DRIVER
12720 M: Antti Palosaari <crope@iki.fi>
12721 L: linux-media@vger.kernel.org
12722 W: https://linuxtv.org
12723 W: http://palosaari.fi/linux/
12724 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12725 T: git git://linuxtv.org/anttip/media_tree.git
12727 F: drivers/media/dvb-frontends/tda10071*
12729 TDA18212 MEDIA DRIVER
12730 M: Antti Palosaari <crope@iki.fi>
12731 L: linux-media@vger.kernel.org
12732 W: https://linuxtv.org
12733 W: http://palosaari.fi/linux/
12734 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12735 T: git git://linuxtv.org/anttip/media_tree.git
12737 F: drivers/media/tuners/tda18212*
12739 TDA18218 MEDIA DRIVER
12740 M: Antti Palosaari <crope@iki.fi>
12741 L: linux-media@vger.kernel.org
12742 W: https://linuxtv.org
12743 W: http://palosaari.fi/linux/
12744 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12745 T: git git://linuxtv.org/anttip/media_tree.git
12747 F: drivers/media/tuners/tda18218*
12749 TDA18271 MEDIA DRIVER
12750 M: Michael Krufky <mkrufky@linuxtv.org>
12751 L: linux-media@vger.kernel.org
12752 W: https://linuxtv.org
12753 W: http://github.com/mkrufky
12754 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12755 T: git git://linuxtv.org/mkrufky/tuners.git
12757 F: drivers/media/tuners/tda18271*
12759 TDA827x MEDIA DRIVER
12760 M: Michael Krufky <mkrufky@linuxtv.org>
12761 L: linux-media@vger.kernel.org
12762 W: https://linuxtv.org
12763 W: http://github.com/mkrufky
12764 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12765 T: git git://linuxtv.org/mkrufky/tuners.git
12767 F: drivers/media/tuners/tda8290.*
12769 TDA8290 MEDIA DRIVER
12770 M: Michael Krufky <mkrufky@linuxtv.org>
12771 L: linux-media@vger.kernel.org
12772 W: https://linuxtv.org
12773 W: http://github.com/mkrufky
12774 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12775 T: git git://linuxtv.org/mkrufky/tuners.git
12777 F: drivers/media/tuners/tda8290.*
12779 TDA9840 MEDIA DRIVER
12780 M: Hans Verkuil <hverkuil@xs4all.nl>
12781 L: linux-media@vger.kernel.org
12782 T: git git://linuxtv.org/media_tree.git
12783 W: https://linuxtv.org
12785 F: drivers/media/i2c/tda9840*
12787 TEA5761 TUNER DRIVER
12788 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
12789 M: Mauro Carvalho Chehab <mchehab@kernel.org>
12790 L: linux-media@vger.kernel.org
12791 W: https://linuxtv.org
12792 T: git git://linuxtv.org/media_tree.git
12794 F: drivers/media/tuners/tea5761.*
12796 TEA5767 TUNER DRIVER
12797 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
12798 M: Mauro Carvalho Chehab <mchehab@kernel.org>
12799 L: linux-media@vger.kernel.org
12800 W: https://linuxtv.org
12801 T: git git://linuxtv.org/media_tree.git
12803 F: drivers/media/tuners/tea5767.*
12805 TEA6415C MEDIA DRIVER
12806 M: Hans Verkuil <hverkuil@xs4all.nl>
12807 L: linux-media@vger.kernel.org
12808 T: git git://linuxtv.org/media_tree.git
12809 W: https://linuxtv.org
12811 F: drivers/media/i2c/tea6415c*
12813 TEA6420 MEDIA DRIVER
12814 M: Hans Verkuil <hverkuil@xs4all.nl>
12815 L: linux-media@vger.kernel.org
12816 T: git git://linuxtv.org/media_tree.git
12817 W: https://linuxtv.org
12819 F: drivers/media/i2c/tea6420*
12822 M: Jiri Pirko <jiri@resnulli.us>
12823 L: netdev@vger.kernel.org
12825 F: drivers/net/team/
12826 F: include/linux/if_team.h
12827 F: include/uapi/linux/if_team.h
12829 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
12830 M: "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
12832 F: arch/x86/platform/ts5500/
12834 TECHNOTREND USB IR RECEIVER
12835 M: Sean Young <sean@mess.org>
12836 L: linux-media@vger.kernel.org
12838 F: drivers/media/rc/ttusbir.c
12840 TEGRA ARCHITECTURE SUPPORT
12841 M: Thierry Reding <thierry.reding@gmail.com>
12842 M: Jonathan Hunter <jonathanh@nvidia.com>
12843 L: linux-tegra@vger.kernel.org
12844 Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
12845 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
12850 M: Peter De Schrijver <pdeschrijver@nvidia.com>
12851 M: Prashant Gaikwad <pgaikwad@nvidia.com>
12853 F: drivers/clk/tegra/
12856 M: Laxman Dewangan <ldewangan@nvidia.com>
12857 M: Jon Hunter <jonathanh@nvidia.com>
12859 F: drivers/dma/tegra*
12862 M: Laxman Dewangan <ldewangan@nvidia.com>
12864 F: drivers/i2c/busses/i2c-tegra.c
12866 TEGRA IOMMU DRIVERS
12867 M: Hiroshi Doyu <hdoyu@nvidia.com>
12869 F: drivers/iommu/tegra*
12872 M: Rakesh Iyer <riyer@nvidia.com>
12873 M: Laxman Dewangan <ldewangan@nvidia.com>
12875 F: drivers/input/keyboard/tegra-kbc.c
12878 M: Thierry Reding <thierry.reding@gmail.com>
12880 F: drivers/pwm/pwm-tegra.c
12882 TEGRA SERIAL DRIVER
12883 M: Laxman Dewangan <ldewangan@nvidia.com>
12885 F: drivers/tty/serial/serial-tegra.c
12888 M: Laxman Dewangan <ldewangan@nvidia.com>
12890 F: drivers/spi/spi-tegra*
12892 TEHUTI ETHERNET DRIVER
12893 M: Andy Gospodarek <andy@greyhouse.net>
12894 L: netdev@vger.kernel.org
12896 F: drivers/net/ethernet/tehuti/*
12898 Telecom Clock Driver for MCPL0010
12899 M: Mark Gross <mark.gross@intel.com>
12901 F: drivers/char/tlclk.c
12903 TENSILICA XTENSA PORT (xtensa)
12904 M: Chris Zankel <chris@zankel.net>
12905 M: Max Filippov <jcmvbkbc@gmail.com>
12906 L: linux-xtensa@linux-xtensa.org
12907 T: git git://github.com/czankel/xtensa-linux.git
12910 F: drivers/irqchip/irq-xtensa-*
12912 Texas Instruments' System Control Interface (TISCI) Protocol Driver
12913 M: Nishanth Menon <nm@ti.com>
12914 M: Tero Kristo <t-kristo@ti.com>
12915 M: Santosh Shilimkar <ssantosh@kernel.org>
12916 L: linux-arm-kernel@lists.infradead.org
12918 F: Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
12919 F: drivers/firmware/ti_sci*
12920 F: include/linux/soc/ti/ti_sci_protocol.h
12921 F: Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
12922 F: include/dt-bindings/genpd/k2g.h
12923 F: drivers/soc/ti/ti_sci_pm_domains.c
12924 F: Documentation/devicetree/bindings/reset/ti,sci-reset.txt
12925 F: Documentation/devicetree/bindings/clock/ti,sci-clk.txt
12926 F: drivers/clk/keystone/sci-clk.c
12927 F: drivers/reset/reset-ti-sci.c
12929 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
12930 M: Hans Verkuil <hverkuil@xs4all.nl>
12931 L: linux-media@vger.kernel.org
12932 T: git git://linuxtv.org/media_tree.git
12933 W: https://linuxtv.org
12935 F: drivers/media/radio/radio-raremono.c
12938 M: Zhang Rui <rui.zhang@intel.com>
12939 M: Eduardo Valentin <edubezval@gmail.com>
12940 L: linux-pm@vger.kernel.org
12941 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
12942 T: git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
12943 Q: https://patchwork.kernel.org/project/linux-pm/list/
12945 F: drivers/thermal/
12946 F: include/linux/thermal.h
12947 F: include/uapi/linux/thermal.h
12948 F: include/linux/cpu_cooling.h
12949 F: Documentation/devicetree/bindings/thermal/
12951 THERMAL/CPU_COOLING
12952 M: Amit Daniel Kachhap <amit.kachhap@gmail.com>
12953 M: Viresh Kumar <viresh.kumar@linaro.org>
12954 M: Javi Merino <javi.merino@kernel.org>
12955 L: linux-pm@vger.kernel.org
12957 F: Documentation/thermal/cpu-cooling-api.txt
12958 F: drivers/thermal/cpu_cooling.c
12959 F: include/linux/cpu_cooling.h
12961 THINKPAD ACPI EXTRAS DRIVER
12962 M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
12963 L: ibm-acpi-devel@lists.sourceforge.net
12964 L: platform-driver-x86@vger.kernel.org
12965 W: http://ibm-acpi.sourceforge.net
12966 W: http://thinkwiki.org/wiki/Ibm-acpi
12967 T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
12969 F: drivers/platform/x86/thinkpad_acpi.c
12971 TI BANDGAP AND THERMAL DRIVER
12972 M: Eduardo Valentin <edubezval@gmail.com>
12973 M: Keerthy <j-keerthy@ti.com>
12974 L: linux-pm@vger.kernel.org
12975 L: linux-omap@vger.kernel.org
12977 F: drivers/thermal/ti-soc-thermal/
12980 M: Benoit Parrot <bparrot@ti.com>
12981 L: linux-media@vger.kernel.org
12982 W: http://linuxtv.org/
12983 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12985 F: drivers/media/platform/ti-vpe/
12987 TI CDCE706 CLOCK DRIVER
12988 M: Max Filippov <jcmvbkbc@gmail.com>
12990 F: drivers/clk/clk-cdce706.c
12993 M: Tero Kristo <t-kristo@ti.com>
12994 L: linux-omap@vger.kernel.org
12997 F: include/linux/clk/ti.h
12999 TI ETHERNET SWITCH DRIVER (CPSW)
13000 R: Grygorii Strashko <grygorii.strashko@ti.com>
13001 L: linux-omap@vger.kernel.org
13002 L: netdev@vger.kernel.org
13004 F: drivers/net/ethernet/ti/cpsw*
13005 F: drivers/net/ethernet/ti/davinci*
13007 TI FLASH MEDIA INTERFACE DRIVER
13008 M: Alex Dubov <oakad@yahoo.com>
13010 F: drivers/misc/tifm*
13011 F: drivers/mmc/host/tifm_sd.c
13012 F: include/linux/tifm.h
13014 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
13015 M: Santosh Shilimkar <ssantosh@kernel.org>
13016 L: linux-kernel@vger.kernel.org
13017 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13019 F: drivers/soc/ti/*
13020 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
13023 TI LM49xxx FAMILY ASoC CODEC DRIVERS
13024 M: M R Swami Reddy <mr.swami.reddy@ti.com>
13025 M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
13026 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
13028 F: sound/soc/codecs/lm49453*
13029 F: sound/soc/codecs/isabelle*
13031 TI LP855x BACKLIGHT DRIVER
13032 M: Milo Kim <milo.kim@ti.com>
13034 F: Documentation/backlight/lp855x-driver.txt
13035 F: drivers/video/backlight/lp855x_bl.c
13036 F: include/linux/platform_data/lp855x.h
13038 TI LP8727 CHARGER DRIVER
13039 M: Milo Kim <milo.kim@ti.com>
13041 F: drivers/power/supply/lp8727_charger.c
13042 F: include/linux/platform_data/lp8727.h
13044 TI LP8788 MFD DRIVER
13045 M: Milo Kim <milo.kim@ti.com>
13047 F: drivers/iio/adc/lp8788_adc.c
13048 F: drivers/leds/leds-lp8788.c
13049 F: drivers/mfd/lp8788*.c
13050 F: drivers/power/supply/lp8788-charger.c
13051 F: drivers/regulator/lp8788-*.c
13052 F: include/linux/mfd/lp8788*.h
13054 TI NETCP ETHERNET DRIVER
13055 M: Wingman Kwok <w-kwok2@ti.com>
13056 M: Murali Karicheri <m-karicheri2@ti.com>
13057 L: netdev@vger.kernel.org
13059 F: drivers/net/ethernet/ti/netcp*
13061 TI TAS571X FAMILY ASoC CODEC DRIVER
13062 M: Kevin Cernekee <cernekee@chromium.org>
13063 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
13065 F: sound/soc/codecs/tas571x*
13067 TI TWL4030 SERIES SOC CODEC DRIVER
13068 M: Peter Ujfalusi <peter.ujfalusi@ti.com>
13069 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
13071 F: sound/soc/codecs/twl4030*
13073 TI WILINK WIRELESS DRIVERS
13074 L: linux-wireless@vger.kernel.org
13075 W: http://wireless.kernel.org/en/users/Drivers/wl12xx
13076 W: http://wireless.kernel.org/en/users/Drivers/wl1251
13077 T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
13079 F: drivers/net/wireless/ti/
13080 F: include/linux/wl12xx.h
13083 M: Jon Maloy <jon.maloy@ericsson.com>
13084 M: Ying Xue <ying.xue@windriver.com>
13085 L: netdev@vger.kernel.org (core kernel code)
13086 L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
13087 W: http://tipc.sourceforge.net/
13089 F: include/uapi/linux/tipc*.h
13093 M: Chris Metcalf <cmetcalf@mellanox.com>
13094 W: http://www.mellanox.com/repository/solutions/tile-scm/
13095 T: git git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile.git
13098 F: drivers/char/tile-srom.c
13099 F: drivers/edac/tile_edac.c
13100 F: drivers/net/ethernet/tile/
13101 F: drivers/rtc/rtc-tile.c
13102 F: drivers/tty/hvc/hvc_tile.c
13103 F: drivers/tty/serial/tilegx.c
13104 F: drivers/usb/host/*-tilegx.c
13105 F: include/linux/usb/tilegx.h
13107 TLAN NETWORK DRIVER
13108 M: Samuel Chessman <chessman@tux.org>
13109 L: tlan-devel@lists.sourceforge.net (subscribers-only)
13110 W: http://sourceforge.net/projects/tlan/
13112 F: Documentation/networking/tlan.txt
13113 F: drivers/net/ethernet/ti/tlan.*
13115 TOMOYO SECURITY MODULE
13116 M: Kentaro Takeda <takedakn@nttdata.co.jp>
13117 M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
13118 L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
13119 L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
13120 L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
13121 L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
13122 W: http://tomoyo.sourceforge.jp/
13123 T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
13125 F: security/tomoyo/
13127 TOPSTAR LAPTOP EXTRAS DRIVER
13128 M: Herton Ronaldo Krzesinski <herton@canonical.com>
13129 L: platform-driver-x86@vger.kernel.org
13131 F: drivers/platform/x86/topstar-laptop.c
13133 TOSHIBA ACPI EXTRAS DRIVER
13134 M: Azael Avalos <coproscefalo@gmail.com>
13135 L: platform-driver-x86@vger.kernel.org
13137 F: drivers/platform/x86/toshiba_acpi.c
13139 TOSHIBA BLUETOOTH DRIVER
13140 M: Azael Avalos <coproscefalo@gmail.com>
13141 L: platform-driver-x86@vger.kernel.org
13143 F: drivers/platform/x86/toshiba_bluetooth.c
13145 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
13146 M: Azael Avalos <coproscefalo@gmail.com>
13147 L: platform-driver-x86@vger.kernel.org
13149 F: drivers/platform/x86/toshiba_haps.c
13151 TOSHIBA WMI HOTKEYS DRIVER
13152 M: Azael Avalos <coproscefalo@gmail.com>
13153 L: platform-driver-x86@vger.kernel.org
13155 F: drivers/platform/x86/toshiba-wmi.c
13158 M: Jonathan Buzzard <jonathan@buzzard.org.uk>
13159 W: http://www.buzzard.org.uk/toshiba/
13161 F: drivers/char/toshiba.c
13162 F: include/linux/toshiba.h
13163 F: include/uapi/linux/toshiba.h
13165 TOSHIBA TC358743 DRIVER
13166 M: Mats Randgaard <matrandg@cisco.com>
13167 L: linux-media@vger.kernel.org
13169 F: drivers/media/i2c/tc358743*
13170 F: include/media/i2c/tc358743.h
13172 TMIO/SDHI MMC DRIVER
13173 M: Wolfram Sang <wsa+renesas@sang-engineering.com>
13174 L: linux-mmc@vger.kernel.org
13176 F: drivers/mmc/host/tmio_mmc*
13177 F: drivers/mmc/host/renesas_sdhi*
13178 F: include/linux/mfd/tmio.h
13180 TMP401 HARDWARE MONITOR DRIVER
13181 M: Guenter Roeck <linux@roeck-us.net>
13182 L: linux-hwmon@vger.kernel.org
13184 F: Documentation/hwmon/tmp401
13185 F: drivers/hwmon/tmp401.c
13187 TMPFS (SHMEM FILESYSTEM)
13188 M: Hugh Dickins <hughd@google.com>
13189 L: linux-mm@kvack.org
13191 F: include/linux/shmem_fs.h
13194 TM6000 VIDEO4LINUX DRIVER
13195 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
13196 M: Mauro Carvalho Chehab <mchehab@kernel.org>
13197 L: linux-media@vger.kernel.org
13198 W: https://linuxtv.org
13199 T: git git://linuxtv.org/media_tree.git
13201 F: drivers/media/usb/tm6000/
13202 F: Documentation/media/v4l-drivers/tm6000*
13204 TW5864 VIDEO4LINUX DRIVER
13205 M: Bluecherry Maintainers <maintainers@bluecherrydvr.com>
13206 M: Anton Sviridenko <anton@corp.bluecherry.net>
13207 M: Andrey Utkin <andrey.utkin@corp.bluecherry.net>
13208 M: Andrey Utkin <andrey_utkin@fastmail.com>
13209 L: linux-media@vger.kernel.org
13211 F: drivers/media/pci/tw5864/
13213 TW68 VIDEO4LINUX DRIVER
13214 M: Hans Verkuil <hverkuil@xs4all.nl>
13215 L: linux-media@vger.kernel.org
13216 T: git git://linuxtv.org/media_tree.git
13217 W: https://linuxtv.org
13219 F: drivers/media/pci/tw68/
13221 TW686X VIDEO4LINUX DRIVER
13222 M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
13223 L: linux-media@vger.kernel.org
13224 T: git git://linuxtv.org/media_tree.git
13225 W: http://linuxtv.org
13227 F: drivers/media/pci/tw686x/
13230 M: Peter Huewe <peterhuewe@gmx.de>
13231 M: Marcel Selhorst <tpmdd@selhorst.net>
13232 M: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
13233 R: Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
13234 W: http://tpmdd.sourceforge.net
13235 L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
13236 Q: https://patchwork.kernel.org/project/tpmdd-devel/list/
13237 T: git git://git.infradead.org/users/jjs/linux-tpmdd.git
13239 F: drivers/char/tpm/
13241 TPM IBM_VTPM DEVICE DRIVER
13242 M: Ashley Lai <ashleydlai@gmail.com>
13243 W: http://tpmdd.sourceforge.net
13244 L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
13246 F: drivers/char/tpm/tpm_ibmvtpm*
13249 M: Steven Rostedt <rostedt@goodmis.org>
13250 M: Ingo Molnar <mingo@redhat.com>
13251 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
13253 F: Documentation/trace/ftrace.txt
13254 F: arch/*/*/*/ftrace.h
13255 F: arch/*/kernel/ftrace.c
13256 F: include/*/ftrace.h
13257 F: include/linux/trace*.h
13260 F: tools/testing/selftests/ftrace/
13262 TRACING MMIO ACCESSES (MMIOTRACE)
13263 M: Steven Rostedt <rostedt@goodmis.org>
13264 M: Ingo Molnar <mingo@kernel.org>
13265 R: Karol Herbst <karolherbst@gmail.com>
13266 R: Pekka Paalanen <ppaalanen@gmail.com>
13268 L: linux-kernel@vger.kernel.org
13269 L: nouveau@lists.freedesktop.org
13270 F: kernel/trace/trace_mmiotrace.c
13271 F: include/linux/mmiotrace.h
13272 F: arch/x86/mm/kmmio.c
13273 F: arch/x86/mm/mmio-mod.c
13274 F: arch/x86/mm/testmmiotrace.c
13277 M: Jiri Kosina <trivial@kernel.org>
13278 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
13280 K: ^Subject:.*(?i)trivial
13283 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
13284 M: Jiri Slaby <jslaby@suse.com>
13286 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
13287 F: Documentation/serial/
13289 F: drivers/tty/serial/serial_core.c
13290 F: include/linux/serial_core.h
13291 F: include/linux/serial.h
13292 F: include/linux/tty.h
13293 F: include/uapi/linux/serial_core.h
13294 F: include/uapi/linux/serial.h
13295 F: include/uapi/linux/tty.h
13297 TUA9001 MEDIA DRIVER
13298 M: Antti Palosaari <crope@iki.fi>
13299 L: linux-media@vger.kernel.org
13300 W: https://linuxtv.org
13301 W: http://palosaari.fi/linux/
13302 Q: http://patchwork.linuxtv.org/project/linux-media/list/
13303 T: git git://linuxtv.org/anttip/media_tree.git
13305 F: drivers/media/tuners/tua9001*
13307 TULIP NETWORK DRIVERS
13308 L: netdev@vger.kernel.org
13309 L: linux-parisc@vger.kernel.org
13311 F: drivers/net/ethernet/dec/tulip/
13314 M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
13315 W: http://vtun.sourceforge.net/tun
13317 F: Documentation/networking/tuntap.txt
13318 F: arch/um/os-Linux/drivers/
13320 TURBOCHANNEL SUBSYSTEM
13321 M: "Maciej W. Rozycki" <macro@linux-mips.org>
13322 M: Ralf Baechle <ralf@linux-mips.org>
13323 L: linux-mips@linux-mips.org
13324 Q: http://patchwork.linux-mips.org/project/linux-mips/list/
13327 F: include/linux/tc.h
13329 UBI FILE SYSTEM (UBIFS)
13330 M: Richard Weinberger <richard@nod.at>
13331 M: Artem Bityutskiy <dedekind1@gmail.com>
13332 M: Adrian Hunter <adrian.hunter@intel.com>
13333 L: linux-mtd@lists.infradead.org
13334 T: git git://git.infradead.org/ubifs-2.6.git
13335 W: http://www.linux-mtd.infradead.org/doc/ubifs.html
13337 F: Documentation/filesystems/ubifs.txt
13340 UCLINUX (M68KNOMMU AND COLDFIRE)
13341 M: Greg Ungerer <gerg@linux-m68k.org>
13342 W: http://www.linux-m68k.org/
13343 W: http://www.uclinux.org/
13344 L: linux-m68k@lists.linux-m68k.org
13345 L: uclinux-dev@uclinux.org (subscribers-only)
13346 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
13348 F: arch/m68k/coldfire/
13350 F: arch/m68k/*/*_no.*
13351 F: arch/m68k/include/asm/*_no.*
13354 M: Jan Kara <jack@suse.com>
13356 F: Documentation/filesystems/udf.txt
13360 M: Bastien Nocera <hadess@hadess.net>
13361 L: linux-input@vger.kernel.org
13363 F: drivers/hid/hid-udraw.c
13366 M: Evgeniy Dushistov <dushistov@mail.ru>
13368 F: Documentation/filesystems/ufs.txt
13371 UHID USERSPACE HID IO DRIVER:
13372 M: David Herrmann <dh.herrmann@googlemail.com>
13373 L: linux-input@vger.kernel.org
13375 F: drivers/hid/uhid.c
13376 F: include/uapi/linux/uhid.h
13378 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
13379 L: linux-usb@vger.kernel.org
13382 F: include/linux/uwb.h
13383 F: include/linux/uwb/
13385 UNICORE32 ARCHITECTURE:
13386 M: Guan Xuetao <gxt@mprc.pku.edu.cn>
13387 W: http://mprc.pku.edu.cn/~guanxuetao/linux
13389 T: git git://github.com/gxt/linux.git
13393 M: Tony Finch <dot@dotat.at>
13394 W: http://dotat.at/prog/unifdef
13396 F: scripts/unifdef.c
13398 UNIFORM CDROM DRIVER
13399 M: Jens Axboe <axboe@kernel.dk>
13400 W: http://www.kernel.dk
13402 F: Documentation/cdrom/
13403 F: drivers/cdrom/cdrom.c
13404 F: include/linux/cdrom.h
13405 F: include/uapi/linux/cdrom.h
13407 UNISYS S-PAR DRIVERS
13408 M: David Kershner <david.kershner@unisys.com>
13409 L: sparmaintainer@unisys.com (Unisys internal)
13411 F: drivers/staging/unisys/
13413 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
13414 M: Vinayak Holikatti <vinholikatti@gmail.com>
13415 L: linux-scsi@vger.kernel.org
13417 F: Documentation/scsi/ufs.txt
13418 F: drivers/scsi/ufs/
13420 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
13421 M: Manjunath M Bettegowda <manjumb@synopsys.com>
13422 M: Prabu Thangamuthu <prabut@synopsys.com>
13423 L: linux-scsi@vger.kernel.org
13425 F: drivers/scsi/ufs/*dwc*
13427 UNSORTED BLOCK IMAGES (UBI)
13428 M: Artem Bityutskiy <dedekind1@gmail.com>
13429 M: Richard Weinberger <richard@nod.at>
13430 W: http://www.linux-mtd.infradead.org/
13431 L: linux-mtd@lists.infradead.org
13432 T: git git://git.infradead.org/ubifs-2.6.git
13434 F: drivers/mtd/ubi/
13435 F: include/linux/mtd/ubi.h
13436 F: include/uapi/mtd/ubi-user.h
13439 M: Oliver Neukum <oneukum@suse.com>
13440 L: linux-usb@vger.kernel.org
13442 F: Documentation/usb/acm.txt
13443 F: drivers/usb/class/cdc-acm.*
13445 USB AR5523 WIRELESS DRIVER
13446 M: Pontus Fuchs <pontus.fuchs@gmail.com>
13447 L: linux-wireless@vger.kernel.org
13449 F: drivers/net/wireless/ath/ar5523/
13452 M: Oliver Neukum <oneukum@suse.com>
13453 L: linux-usb@vger.kernel.org
13454 L: linux-scsi@vger.kernel.org
13456 F: drivers/usb/storage/uas.c
13458 USB CDC ETHERNET DRIVER
13459 M: Oliver Neukum <oliver@neukum.org>
13460 L: linux-usb@vger.kernel.org
13462 F: drivers/net/usb/cdc_*.c
13463 F: include/uapi/linux/usb/cdc.h
13465 USB CHAOSKEY DRIVER
13466 M: Keith Packard <keithp@keithp.com>
13467 L: linux-usb@vger.kernel.org
13469 F: drivers/usb/misc/chaoskey.c
13471 USB CYPRESS C67X00 DRIVER
13472 M: Peter Korsgaard <jacmet@sunsite.dk>
13473 L: linux-usb@vger.kernel.org
13475 F: drivers/usb/c67x00/
13477 USB DAVICOM DM9601 DRIVER
13478 M: Peter Korsgaard <jacmet@sunsite.dk>
13479 L: netdev@vger.kernel.org
13480 W: http://www.linux-usb.org/usbnet
13482 F: drivers/net/usb/dm9601.c
13484 USB DIAMOND RIO500 DRIVER
13485 M: Cesar Miquel <miquel@df.uba.ar>
13486 L: rio500-users@lists.sourceforge.net
13487 W: http://rio500.sourceforge.net
13489 F: drivers/usb/misc/rio500*
13492 M: Alan Stern <stern@rowland.harvard.edu>
13493 L: linux-usb@vger.kernel.org
13495 F: Documentation/usb/ehci.txt
13496 F: drivers/usb/host/ehci*
13498 USB GADGET/PERIPHERAL SUBSYSTEM
13499 M: Felipe Balbi <balbi@kernel.org>
13500 L: linux-usb@vger.kernel.org
13501 W: http://www.linux-usb.org/gadget
13502 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
13504 F: drivers/usb/gadget/
13505 F: include/linux/usb/gadget*
13507 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
13508 M: Jiri Kosina <jikos@kernel.org>
13509 R: Benjamin Tissoires <benjamin.tissoires@redhat.com>
13510 L: linux-usb@vger.kernel.org
13511 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
13513 F: Documentation/hid/hiddev.txt
13514 F: drivers/hid/usbhid/
13517 M: Olav Kongas <ok@artecdesign.ee>
13518 L: linux-usb@vger.kernel.org
13520 F: drivers/usb/host/isp116x*
13521 F: include/linux/usb/isp116x.h
13523 USB LAN78XX ETHERNET DRIVER
13524 M: Woojung Huh <woojung.huh@microchip.com>
13525 M: Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
13526 L: netdev@vger.kernel.org
13528 F: drivers/net/usb/lan78xx.*
13530 USB MASS STORAGE DRIVER
13531 M: Alan Stern <stern@rowland.harvard.edu>
13532 L: linux-usb@vger.kernel.org
13533 L: usb-storage@lists.one-eyed-alien.net
13535 W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
13536 F: drivers/usb/storage/
13539 M: Clemens Ladisch <clemens@ladisch.de>
13540 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
13541 T: git git://git.alsa-project.org/alsa-kernel.git
13543 F: sound/usb/midi.*
13545 USB NETWORKING DRIVERS
13546 L: linux-usb@vger.kernel.org
13548 F: drivers/net/usb/
13551 M: Alan Stern <stern@rowland.harvard.edu>
13552 L: linux-usb@vger.kernel.org
13554 F: Documentation/usb/ohci.txt
13555 F: drivers/usb/host/ohci*
13557 USB OTG FSM (Finite State Machine)
13558 M: Peter Chen <Peter.Chen@nxp.com>
13559 T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
13560 L: linux-usb@vger.kernel.org
13562 F: drivers/usb/common/usb-otg-fsm.c
13565 M: Valentina Manea <valentina.manea.m@gmail.com>
13566 M: Shuah Khan <shuahkh@osg.samsung.com>
13567 M: Shuah Khan <shuah@kernel.org>
13568 L: linux-usb@vger.kernel.org
13570 F: Documentation/usb/usbip_protocol.txt
13571 F: drivers/usb/usbip/
13572 F: tools/usb/usbip/
13575 M: Petko Manolov <petkan@nucleusys.com>
13576 L: linux-usb@vger.kernel.org
13577 L: netdev@vger.kernel.org
13578 T: git git://github.com/petkan/pegasus.git
13579 W: https://github.com/petkan/pegasus
13581 F: drivers/net/usb/pegasus.*
13584 M: Felipe Balbi <balbi@kernel.org>
13585 L: linux-usb@vger.kernel.org
13586 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
13588 F: drivers/usb/phy/
13590 USB PRINTER DRIVER (usblp)
13591 M: Pete Zaitcev <zaitcev@redhat.com>
13592 L: linux-usb@vger.kernel.org
13594 F: drivers/usb/class/usblp.c
13596 USB QMI WWAN NETWORK DRIVER
13597 M: Bjørn Mork <bjorn@mork.no>
13598 L: netdev@vger.kernel.org
13600 F: Documentation/ABI/testing/sysfs-class-net-qmi
13601 F: drivers/net/usb/qmi_wwan.c
13604 M: Petko Manolov <petkan@nucleusys.com>
13605 L: linux-usb@vger.kernel.org
13606 L: netdev@vger.kernel.org
13607 T: git git://github.com/petkan/rtl8150.git
13608 W: https://github.com/petkan/rtl8150
13610 F: drivers/net/usb/rtl8150.c
13612 USB SERIAL SUBSYSTEM
13613 M: Johan Hovold <johan@kernel.org>
13614 L: linux-usb@vger.kernel.org
13615 T: git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
13617 F: Documentation/usb/usb-serial.txt
13618 F: drivers/usb/serial/
13619 F: include/linux/usb/serial.h
13621 USB SMSC75XX ETHERNET DRIVER
13622 M: Steve Glendinning <steve.glendinning@shawell.net>
13623 L: netdev@vger.kernel.org
13625 F: drivers/net/usb/smsc75xx.*
13627 USB SMSC95XX ETHERNET DRIVER
13628 M: Steve Glendinning <steve.glendinning@shawell.net>
13629 M: Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
13630 L: netdev@vger.kernel.org
13632 F: drivers/net/usb/smsc95xx.*
13635 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
13636 L: linux-usb@vger.kernel.org
13637 W: http://www.linux-usb.org
13638 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
13640 F: Documentation/devicetree/bindings/usb/
13641 F: Documentation/usb/
13643 F: include/linux/usb.h
13644 F: include/linux/usb/
13646 USB TYPEC SUBSYSTEM
13647 M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
13648 L: linux-usb@vger.kernel.org
13650 F: Documentation/ABI/testing/sysfs-class-typec
13651 F: Documentation/usb/typec.rst
13652 F: drivers/usb/typec/
13653 F: include/linux/usb/typec.h
13656 M: Alan Stern <stern@rowland.harvard.edu>
13657 L: linux-usb@vger.kernel.org
13659 F: drivers/usb/host/uhci*
13661 USB "USBNET" DRIVER FRAMEWORK
13662 M: Oliver Neukum <oneukum@suse.com>
13663 L: netdev@vger.kernel.org
13664 W: http://www.linux-usb.org/usbnet
13666 F: drivers/net/usb/usbnet.c
13667 F: include/linux/usb/usbnet.h
13670 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13671 L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
13672 L: linux-media@vger.kernel.org
13673 T: git git://linuxtv.org/media_tree.git
13674 W: http://www.ideasonboard.org/uvc/
13676 F: drivers/media/usb/uvc/
13677 F: include/uapi/linux/uvcvideo.h
13680 M: Hans Verkuil <hverkuil@xs4all.nl>
13681 L: linux-media@vger.kernel.org
13682 T: git git://linuxtv.org/media_tree.git
13683 W: https://linuxtv.org
13685 F: drivers/media/usb/usbvision/
13688 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13689 L: linux-usb@vger.kernel.org
13691 F: drivers/usb/gadget/function/*uvc*
13692 F: drivers/usb/gadget/legacy/webcam.c
13694 USB WIRELESS RNDIS DRIVER (rndis_wlan)
13695 M: Jussi Kivilinna <jussi.kivilinna@iki.fi>
13696 L: linux-wireless@vger.kernel.org
13698 F: drivers/net/wireless/rndis_wlan.c
13701 M: Mathias Nyman <mathias.nyman@intel.com>
13702 L: linux-usb@vger.kernel.org
13704 F: drivers/usb/host/xhci*
13705 F: drivers/usb/host/pci-quirks*
13708 L: linux-wireless@vger.kernel.org
13709 W: http://linux-lc100020.sourceforge.net
13711 F: drivers/net/wireless/zydas/zd1201.*
13714 M: Antoine Jacquet <royale@zerezo.com>
13715 L: linux-usb@vger.kernel.org
13716 L: linux-media@vger.kernel.org
13717 T: git git://linuxtv.org/media_tree.git
13718 W: http://royale.zerezo.com/zr364xx/
13720 F: Documentation/media/v4l-drivers/zr364xx*
13721 F: drivers/media/usb/zr364xx/
13724 M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
13725 L: linux-usb@vger.kernel.org
13727 F: drivers/usb/common/ulpi.c
13728 F: include/linux/ulpi/
13730 USER-MODE LINUX (UML)
13731 M: Jeff Dike <jdike@addtoit.com>
13732 M: Richard Weinberger <richard@nod.at>
13733 L: user-mode-linux-devel@lists.sourceforge.net
13734 L: user-mode-linux-user@lists.sourceforge.net
13735 W: http://user-mode-linux.sourceforge.net
13736 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
13738 F: Documentation/virtual/uml/
13744 USERSPACE I/O (UIO)
13745 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
13747 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
13748 F: Documentation/driver-api/uio-howto.rst
13750 F: include/linux/uio*.h
13753 M: Karel Zak <kzak@redhat.com>
13754 L: util-linux@vger.kernel.org
13755 W: http://en.wikipedia.org/wiki/Util-linux
13756 T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
13760 M: Christoph Hellwig <hch@lst.de>
13761 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
13762 L: linux-kernel@vger.kernel.org
13763 T: git git://git.infradead.org/users/hch/uuid.git
13766 F: include/linux/uuid.h
13767 F: include/uapi/linux/uuid.h
13771 M: Michal Januszewski <spock@gentoo.org>
13772 L: linux-fbdev@vger.kernel.org
13773 W: http://dev.gentoo.org/~spock/projects/uvesafb/
13775 F: Documentation/fb/uvesafb.txt
13776 F: drivers/video/fbdev/uvesafb.*
13779 M: Stefan Agner <stefan@agner.ch>
13780 L: linux-mtd@lists.infradead.org
13782 F: drivers/mtd/nand/vf610_nfc.c
13784 VFAT/FAT/MSDOS FILESYSTEM
13785 M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
13787 F: Documentation/filesystems/vfat.txt
13791 M: Alex Williamson <alex.williamson@redhat.com>
13792 L: kvm@vger.kernel.org
13793 T: git git://github.com/awilliam/linux-vfio.git
13795 F: Documentation/vfio.txt
13797 F: include/linux/vfio.h
13798 F: include/uapi/linux/vfio.h
13800 VFIO MEDIATED DEVICE DRIVERS
13801 M: Kirti Wankhede <kwankhede@nvidia.com>
13802 L: kvm@vger.kernel.org
13804 F: Documentation/vfio-mediated-device.txt
13805 F: drivers/vfio/mdev/
13806 F: include/linux/mdev.h
13807 F: samples/vfio-mdev/
13809 VFIO PLATFORM DRIVER
13810 M: Baptiste Reynal <b.reynal@virtualopensystems.com>
13811 L: kvm@vger.kernel.org
13813 F: drivers/vfio/platform/
13816 R: Lukas Wunner <lukas@wunner.de>
13818 F: Documentation/gpu/vga-switcheroo.rst
13819 F: drivers/gpu/vga/vga_switcheroo.c
13820 F: include/linux/vga_switcheroo.h
13821 T: git git://anongit.freedesktop.org/drm/drm-misc
13823 VIDEOBUF2 FRAMEWORK
13824 M: Pawel Osciak <pawel@osciak.com>
13825 M: Marek Szyprowski <m.szyprowski@samsung.com>
13826 M: Kyungmin Park <kyungmin.park@samsung.com>
13827 L: linux-media@vger.kernel.org
13829 F: drivers/media/v4l2-core/videobuf2-*
13830 F: include/media/videobuf2-*
13832 VIDEO MULTIPLEXER DRIVER
13833 M: Philipp Zabel <p.zabel@pengutronix.de>
13834 L: linux-media@vger.kernel.org
13836 F: drivers/media/platform/video-mux.c
13838 VIRTIO AND VHOST VSOCK DRIVER
13839 M: Stefan Hajnoczi <stefanha@redhat.com>
13840 L: kvm@vger.kernel.org
13841 L: virtualization@lists.linux-foundation.org
13842 L: netdev@vger.kernel.org
13844 F: include/linux/virtio_vsock.h
13845 F: include/uapi/linux/virtio_vsock.h
13846 F: include/uapi/linux/vsockmon.h
13847 F: net/vmw_vsock/af_vsock_tap.c
13848 F: net/vmw_vsock/virtio_transport_common.c
13849 F: net/vmw_vsock/virtio_transport.c
13850 F: drivers/net/vsockmon.c
13851 F: drivers/vhost/vsock.c
13852 F: drivers/vhost/vsock.h
13854 VIRTUAL SERIO DEVICE DRIVER
13855 M: Stephen Chandler Paul <thatslyude@gmail.com>
13857 F: drivers/input/serio/userio.c
13858 F: include/uapi/linux/userio.h
13860 VIRTIO CONSOLE DRIVER
13861 M: Amit Shah <amit@kernel.org>
13862 L: virtualization@lists.linux-foundation.org
13864 F: drivers/char/virtio_console.c
13865 F: include/linux/virtio_console.h
13866 F: include/uapi/linux/virtio_console.h
13868 VIRTIO CORE, NET AND BLOCK DRIVERS
13869 M: "Michael S. Tsirkin" <mst@redhat.com>
13870 M: Jason Wang <jasowang@redhat.com>
13871 L: virtualization@lists.linux-foundation.org
13873 F: Documentation/devicetree/bindings/virtio/
13876 F: drivers/net/virtio_net.c
13877 F: drivers/block/virtio_blk.c
13878 F: include/linux/virtio*.h
13879 F: include/uapi/linux/virtio_*.h
13880 F: drivers/crypto/virtio/
13882 VIRTIO DRIVERS FOR S390
13883 M: Cornelia Huck <cohuck@redhat.com>
13884 M: Halil Pasic <pasic@linux.vnet.ibm.com>
13885 L: linux-s390@vger.kernel.org
13886 L: virtualization@lists.linux-foundation.org
13887 L: kvm@vger.kernel.org
13889 F: drivers/s390/virtio/
13892 M: David Airlie <airlied@linux.ie>
13893 M: Gerd Hoffmann <kraxel@redhat.com>
13894 L: dri-devel@lists.freedesktop.org
13895 L: virtualization@lists.linux-foundation.org
13896 T: git git://anongit.freedesktop.org/drm/drm-misc
13898 F: drivers/gpu/drm/virtio/
13899 F: include/uapi/linux/virtio_gpu.h
13901 VIRTIO HOST (VHOST)
13902 M: "Michael S. Tsirkin" <mst@redhat.com>
13903 M: Jason Wang <jasowang@redhat.com>
13904 L: kvm@vger.kernel.org
13905 L: virtualization@lists.linux-foundation.org
13906 L: netdev@vger.kernel.org
13907 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
13910 F: include/uapi/linux/vhost.h
13912 VIRTIO INPUT DRIVER
13913 M: Gerd Hoffmann <kraxel@redhat.com>
13915 F: drivers/virtio/virtio_input.c
13916 F: include/uapi/linux/virtio_input.h
13918 VIRTIO CRYPTO DRIVER
13919 M: Gonglei <arei.gonglei@huawei.com>
13920 L: virtualization@lists.linux-foundation.org
13921 L: linux-crypto@vger.kernel.org
13923 F: drivers/crypto/virtio/
13924 F: include/uapi/linux/virtio_crypto.h
13926 VIA RHINE NETWORK DRIVER
13928 F: drivers/net/ethernet/via/via-rhine.c
13930 VIA SD/MMC CARD CONTROLLER DRIVER
13931 M: Bruce Chang <brucechang@via.com.tw>
13932 M: Harald Welte <HaraldWelte@viatech.com>
13934 F: drivers/mmc/host/via-sdmmc.c
13936 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
13937 M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
13938 L: linux-fbdev@vger.kernel.org
13940 F: include/linux/via-core.h
13941 F: include/linux/via-gpio.h
13942 F: include/linux/via_i2c.h
13943 F: drivers/video/fbdev/via/
13945 VIA VELOCITY NETWORK DRIVER
13946 M: Francois Romieu <romieu@fr.zoreil.com>
13947 L: netdev@vger.kernel.org
13949 F: drivers/net/ethernet/via/via-velocity.*
13952 M: Alex Williamson <alex.williamson@redhat.com>
13953 M: Paolo Bonzini <pbonzini@redhat.com>
13954 L: kvm@vger.kernel.org
13958 VIVID VIRTUAL VIDEO DRIVER
13959 M: Hans Verkuil <hverkuil@xs4all.nl>
13960 L: linux-media@vger.kernel.org
13961 T: git git://linuxtv.org/media_tree.git
13962 W: https://linuxtv.org
13964 F: drivers/media/platform/vivid/*
13966 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
13967 M: Helen Koike <helen.koike@collabora.com>
13968 L: linux-media@vger.kernel.org
13969 T: git git://linuxtv.org/media_tree.git
13970 W: https://linuxtv.org
13972 F: drivers/media/platform/vimc/*
13975 M: Florian Fainelli <f.fainelli@gmail.com>
13976 L: openwrt-devel@lists.openwrt.org (subscribers-only)
13978 F: drivers/vlynq/vlynq.c
13979 F: include/linux/vlynq.h
13982 M: Martyn Welch <martyn@welchs.me.uk>
13983 M: Manohar Vanga <manohar.vanga@gmail.com>
13984 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
13985 L: devel@driverdev.osuosl.org
13987 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
13988 F: Documentation/driver-api/vme.rst
13989 F: drivers/staging/vme/
13991 F: include/linux/vme*
13993 VMWARE HYPERVISOR INTERFACE
13994 M: Alok Kataria <akataria@vmware.com>
13995 L: virtualization@lists.linux-foundation.org
13997 F: arch/x86/kernel/cpu/vmware.c
13999 VMWARE BALLOON DRIVER
14000 M: Xavier Deguillard <xdeguillard@vmware.com>
14001 M: Philip Moltmann <moltmann@vmware.com>
14002 M: "VMware, Inc." <pv-drivers@vmware.com>
14003 L: linux-kernel@vger.kernel.org
14005 F: drivers/misc/vmw_balloon.c
14007 VMWARE VMMOUSE SUBDRIVER
14008 M: "VMware Graphics" <linux-graphics-maintainer@vmware.com>
14009 M: "VMware, Inc." <pv-drivers@vmware.com>
14010 L: linux-input@vger.kernel.org
14012 F: drivers/input/mouse/vmmouse.c
14013 F: drivers/input/mouse/vmmouse.h
14015 VMWARE VMXNET3 ETHERNET DRIVER
14016 M: Shrikrishna Khare <skhare@vmware.com>
14017 M: "VMware, Inc." <pv-drivers@vmware.com>
14018 L: netdev@vger.kernel.org
14020 F: drivers/net/vmxnet3/
14022 VMware PVSCSI driver
14023 M: Jim Gill <jgill@vmware.com>
14024 M: VMware PV-Drivers <pv-drivers@vmware.com>
14025 L: linux-scsi@vger.kernel.org
14027 F: drivers/scsi/vmw_pvscsi.c
14028 F: drivers/scsi/vmw_pvscsi.h
14030 VMWARE PVRDMA DRIVER
14031 M: Adit Ranadive <aditr@vmware.com>
14032 M: VMware PV-Drivers <pv-drivers@vmware.com>
14033 L: linux-rdma@vger.kernel.org
14035 F: drivers/infiniband/hw/vmw_pvrdma/
14037 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
14038 M: Liam Girdwood <lgirdwood@gmail.com>
14039 M: Mark Brown <broonie@kernel.org>
14040 L: linux-kernel@vger.kernel.org
14041 W: http://www.slimlogic.co.uk/?p=48
14042 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
14044 F: Documentation/devicetree/bindings/regulator/
14045 F: drivers/regulator/
14046 F: include/dt-bindings/regulator/
14047 F: include/linux/regulator/
14050 M: David Ahern <dsa@cumulusnetworks.com>
14051 M: Shrijeet Mukherjee <shm@cumulusnetworks.com>
14052 L: netdev@vger.kernel.org
14054 F: drivers/net/vrf.c
14055 F: Documentation/networking/vrf.txt
14057 VT1211 HARDWARE MONITOR DRIVER
14058 M: Juerg Haefliger <juergh@gmail.com>
14059 L: linux-hwmon@vger.kernel.org
14061 F: Documentation/hwmon/vt1211
14062 F: drivers/hwmon/vt1211.c
14064 VT8231 HARDWARE MONITOR DRIVER
14065 M: Roger Lucas <vt8231@hiddenengine.co.uk>
14066 L: linux-hwmon@vger.kernel.org
14068 F: drivers/hwmon/vt8231.c
14070 VUB300 USB to SDIO/SD/MMC bridge chip
14071 M: Tony Olech <tony.olech@elandigitalsystems.com>
14072 L: linux-mmc@vger.kernel.org
14073 L: linux-usb@vger.kernel.org
14075 F: drivers/mmc/host/vub300.c
14077 W1 DALLAS'S 1-WIRE BUS
14078 M: Evgeniy Polyakov <zbr@ioremap.net>
14080 F: Documentation/w1/
14082 F: include/linux/w1.h
14084 W83791D HARDWARE MONITORING DRIVER
14085 M: Marc Hulsman <m.hulsman@tudelft.nl>
14086 L: linux-hwmon@vger.kernel.org
14088 F: Documentation/hwmon/w83791d
14089 F: drivers/hwmon/w83791d.c
14091 W83793 HARDWARE MONITORING DRIVER
14092 M: Rudolf Marek <r.marek@assembler.cz>
14093 L: linux-hwmon@vger.kernel.org
14095 F: Documentation/hwmon/w83793
14096 F: drivers/hwmon/w83793.c
14098 W83795 HARDWARE MONITORING DRIVER
14099 M: Jean Delvare <jdelvare@suse.com>
14100 L: linux-hwmon@vger.kernel.org
14102 F: drivers/hwmon/w83795.c
14104 W83L51xD SD/MMC CARD INTERFACE DRIVER
14105 M: Pierre Ossman <pierre@ossman.eu>
14107 F: drivers/mmc/host/wbsd.*
14109 WACOM PROTOCOL 4 SERIAL TABLETS
14110 M: Julian Squires <julian@cipht.net>
14111 M: Hans de Goede <hdegoede@redhat.com>
14112 L: linux-input@vger.kernel.org
14114 F: drivers/input/tablet/wacom_serial4.c
14116 WATCHDOG DEVICE DRIVERS
14117 M: Wim Van Sebroeck <wim@iguana.be>
14118 R: Guenter Roeck <linux@roeck-us.net>
14119 L: linux-watchdog@vger.kernel.org
14120 W: http://www.linux-watchdog.org/
14121 T: git git://www.linux-watchdog.org/linux-watchdog.git
14123 F: Documentation/devicetree/bindings/watchdog/
14124 F: Documentation/watchdog/
14125 F: drivers/watchdog/
14126 F: include/linux/watchdog.h
14127 F: include/uapi/linux/watchdog.h
14130 M: David Herrmann <dh.herrmann@googlemail.com>
14131 L: linux-input@vger.kernel.org
14133 F: drivers/hid/hid-wiimote*
14136 M: David Härdeman <david@hardeman.nu>
14138 F: drivers/media/rc/winbond-cir.c
14140 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
14141 M: William Breathitt Gray <vilhelm.gray@gmail.com>
14142 L: linux-watchdog@vger.kernel.org
14144 F: drivers/watchdog/ebc-c384_wdt.c
14146 WINSYSTEMS WS16C48 GPIO DRIVER
14147 M: William Breathitt Gray <vilhelm.gray@gmail.com>
14148 L: linux-gpio@vger.kernel.org
14150 F: drivers/gpio/gpio-ws16c48.c
14153 M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
14154 M: linux-wimax@intel.com
14155 L: wimax@linuxwimax.org (subscribers-only)
14157 W: http://linuxwimax.org
14158 F: Documentation/wimax/README.wimax
14159 F: include/linux/wimax/debug.h
14160 F: include/net/wimax.h
14161 F: include/uapi/linux/wimax.h
14164 WISTRON LAPTOP BUTTON DRIVER
14165 M: Miloslav Trmac <mitr@volny.cz>
14167 F: drivers/input/misc/wistron_btns.c
14169 WL3501 WIRELESS PCMCIA CARD DRIVER
14170 L: linux-wireless@vger.kernel.org
14172 F: drivers/net/wireless/wl3501*
14174 WOLFSON MICROELECTRONICS DRIVERS
14175 L: patches@opensource.cirrus.com
14176 T: git https://github.com/CirrusLogic/linux-drivers.git
14177 W: https://github.com/CirrusLogic/linux-drivers/wiki
14179 F: Documentation/hwmon/wm83??
14180 F: Documentation/devicetree/bindings/extcon/extcon-arizona.txt
14181 F: Documentation/devicetree/bindings/regulator/arizona-regulator.txt
14182 F: Documentation/devicetree/bindings/mfd/arizona.txt
14183 F: Documentation/devicetree/bindings/mfd/wm831x.txt
14184 F: arch/arm/mach-s3c64xx/mach-crag6410*
14185 F: drivers/clk/clk-wm83*.c
14186 F: drivers/extcon/extcon-arizona.c
14187 F: drivers/leds/leds-wm83*.c
14188 F: drivers/gpio/gpio-*wm*.c
14189 F: drivers/gpio/gpio-arizona.c
14190 F: drivers/hwmon/wm83??-hwmon.c
14191 F: drivers/input/misc/wm831x-on.c
14192 F: drivers/input/touchscreen/wm831x-ts.c
14193 F: drivers/input/touchscreen/wm97*.c
14194 F: drivers/mfd/arizona*
14195 F: drivers/mfd/wm*.c
14196 F: drivers/mfd/cs47l24*
14197 F: drivers/power/supply/wm83*.c
14198 F: drivers/rtc/rtc-wm83*.c
14199 F: drivers/regulator/wm8*.c
14200 F: drivers/regulator/arizona*
14201 F: drivers/video/backlight/wm83*_bl.c
14202 F: drivers/watchdog/wm83*_wdt.c
14203 F: include/linux/mfd/arizona/
14204 F: include/linux/mfd/wm831x/
14205 F: include/linux/mfd/wm8350/
14206 F: include/linux/mfd/wm8400*
14207 F: include/linux/regulator/arizona*
14208 F: include/linux/wm97xx.h
14209 F: include/sound/wm????.h
14210 F: sound/soc/codecs/arizona.?
14211 F: sound/soc/codecs/wm*
14212 F: sound/soc/codecs/cs47l24*
14215 M: Tejun Heo <tj@kernel.org>
14216 R: Lai Jiangshan <jiangshanlai@gmail.com>
14217 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
14219 F: include/linux/workqueue.h
14220 F: kernel/workqueue.c
14221 F: Documentation/core-api/workqueue.rst
14223 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
14224 M: Chen-Yu Tsai <wens@csie.org>
14225 L: linux-kernel@vger.kernel.org
14230 M: Andrew Hendry <andrew.hendry@gmail.com>
14231 L: linux-x25@vger.kernel.org
14233 F: Documentation/networking/x25*
14234 F: include/net/x25*
14237 X86 ARCHITECTURE (32-BIT AND 64-BIT)
14238 M: Thomas Gleixner <tglx@linutronix.de>
14239 M: Ingo Molnar <mingo@redhat.com>
14240 M: "H. Peter Anvin" <hpa@zytor.com>
14242 L: linux-kernel@vger.kernel.org
14243 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
14245 F: Documentation/x86/
14248 X86 PLATFORM DRIVERS
14249 M: Darren Hart <dvhart@infradead.org>
14250 M: Andy Shevchenko <andy@infradead.org>
14251 L: platform-driver-x86@vger.kernel.org
14252 T: git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
14254 F: drivers/platform/x86/
14255 F: drivers/platform/olpc/
14257 X86 MCE INFRASTRUCTURE
14258 M: Tony Luck <tony.luck@intel.com>
14259 M: Borislav Petkov <bp@alien8.de>
14260 L: linux-edac@vger.kernel.org
14262 F: arch/x86/kernel/cpu/mcheck/*
14264 X86 MICROCODE UPDATE SUPPORT
14265 M: Borislav Petkov <bp@alien8.de>
14267 F: arch/x86/kernel/cpu/microcode/*
14270 M: Andy Lutomirski <luto@amacapital.net>
14271 L: linux-kernel@vger.kernel.org
14272 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
14274 F: arch/x86/entry/vdso/
14276 XC2028/3028 TUNER DRIVER
14277 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
14278 M: Mauro Carvalho Chehab <mchehab@kernel.org>
14279 L: linux-media@vger.kernel.org
14280 W: https://linuxtv.org
14281 T: git git://linuxtv.org/media_tree.git
14283 F: drivers/media/tuners/tuner-xc2028.*
14285 XEN HYPERVISOR INTERFACE
14286 M: Boris Ostrovsky <boris.ostrovsky@oracle.com>
14287 M: Juergen Gross <jgross@suse.com>
14288 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
14289 T: git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
14292 F: drivers/*/xen-*front.c
14294 F: arch/x86/include/asm/xen/
14296 F: include/uapi/xen/
14297 F: Documentation/ABI/stable/sysfs-hypervisor-xen
14298 F: Documentation/ABI/testing/sysfs-hypervisor-xen
14301 M: Stefano Stabellini <sstabellini@kernel.org>
14302 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
14305 F: arch/arm/include/asm/xen/
14307 XEN HYPERVISOR ARM64
14308 M: Stefano Stabellini <sstabellini@kernel.org>
14309 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
14312 F: arch/arm64/include/asm/xen/
14314 XEN NETWORK BACKEND DRIVER
14315 M: Wei Liu <wei.liu2@citrix.com>
14316 M: Paul Durrant <paul.durrant@citrix.com>
14317 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
14318 L: netdev@vger.kernel.org
14320 F: drivers/net/xen-netback/*
14323 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
14324 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
14326 F: arch/x86/pci/*xen*
14327 F: drivers/pci/*xen*
14329 XEN BLOCK SUBSYSTEM
14330 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
14331 M: Roger Pau Monné <roger.pau@citrix.com>
14332 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
14334 F: drivers/block/xen-blkback/*
14335 F: drivers/block/xen*
14338 M: Juergen Gross <jgross@suse.com>
14339 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
14340 L: linux-scsi@vger.kernel.org
14342 F: drivers/scsi/xen-scsifront.c
14343 F: drivers/xen/xen-scsiback.c
14344 F: include/xen/interface/io/vscsiif.h
14346 XEN SWIOTLB SUBSYSTEM
14347 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
14348 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
14350 F: arch/x86/xen/*swiotlb*
14351 F: drivers/xen/*swiotlb*
14354 M: Darrick J. Wong <darrick.wong@oracle.com>
14355 M: linux-xfs@vger.kernel.org
14356 L: linux-xfs@vger.kernel.org
14358 T: git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
14360 F: Documentation/filesystems/xfs.txt
14363 XILINX AXI ETHERNET DRIVER
14364 M: Anirudha Sarangi <anirudh@xilinx.com>
14365 M: John Linn <John.Linn@xilinx.com>
14367 F: drivers/net/ethernet/xilinx/xilinx_axienet*
14369 XILINX UARTLITE SERIAL DRIVER
14370 M: Peter Korsgaard <jacmet@sunsite.dk>
14371 L: linux-serial@vger.kernel.org
14373 F: drivers/tty/serial/uartlite.c
14375 XILINX VIDEO IP CORES
14376 M: Hyun Kwon <hyun.kwon@xilinx.com>
14377 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14378 L: linux-media@vger.kernel.org
14379 T: git git://linuxtv.org/media_tree.git
14381 F: Documentation/devicetree/bindings/media/xilinx/
14382 F: drivers/media/platform/xilinx/
14383 F: include/uapi/linux/xilinx-v4l2-controls.h
14386 M: Eli Billauer <eli.billauer@gmail.com>
14387 L: linux-kernel@vger.kernel.org
14389 F: drivers/char/xillybus/
14391 XRA1403 GPIO EXPANDER
14392 M: Nandor Han <nandor.han@ge.com>
14393 M: Semi Malinen <semi.malinen@ge.com>
14394 L: linux-gpio@vger.kernel.org
14396 F: drivers/gpio/gpio-xra1403.c
14397 F: Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
14399 XTENSA XTFPGA PLATFORM SUPPORT
14400 M: Max Filippov <jcmvbkbc@gmail.com>
14401 L: linux-xtensa@linux-xtensa.org
14403 F: drivers/spi/spi-xtensa-xtfpga.c
14404 F: sound/soc/xtensa/xtfpga-i2s.c
14406 YAM DRIVER FOR AX.25
14407 M: Jean-Paul Roubelat <jpr@f6fbb.org>
14408 L: linux-hams@vger.kernel.org
14410 F: drivers/net/hamradio/yam*
14411 F: include/linux/yam.h
14413 YEALINK PHONE DRIVER
14414 M: Henk Vergonet <Henk.Vergonet@gmail.com>
14415 L: usbb2k-api-dev@nongnu.org
14417 F: Documentation/input/yealink.rst
14418 F: drivers/input/misc/yealink.*
14420 Z8530 DRIVER FOR AX.25
14421 M: Joerg Reuter <jreuter@yaina.de>
14422 W: http://yaina.de/jreuter/
14423 W: http://www.qsl.net/dl1bke/
14424 L: linux-hams@vger.kernel.org
14426 F: Documentation/networking/z8530drv.txt
14427 F: drivers/net/hamradio/*scc.c
14428 F: drivers/net/hamradio/z8530.h
14430 ZBUD COMPRESSED PAGE ALLOCATOR
14431 M: Seth Jennings <sjenning@redhat.com>
14432 M: Dan Streetman <ddstreet@ieee.org>
14433 L: linux-mm@kvack.org
14436 F: include/linux/zbud.h
14438 ZD1211RW WIRELESS DRIVER
14439 M: Daniel Drake <dsd@gentoo.org>
14440 M: Ulrich Kunitz <kune@deine-taler.de>
14441 W: http://zd1211.ath.cx/wiki/DriverRewrite
14442 L: linux-wireless@vger.kernel.org
14443 L: zd1211-devs@lists.sourceforge.net (subscribers-only)
14445 F: drivers/net/wireless/zydas/zd1211rw/
14447 ZD1301_DEMOD MEDIA DRIVER
14448 M: Antti Palosaari <crope@iki.fi>
14449 L: linux-media@vger.kernel.org
14450 W: https://linuxtv.org/
14451 W: http://palosaari.fi/linux/
14452 Q: https://patchwork.linuxtv.org/project/linux-media/list/
14454 F: drivers/media/dvb-frontends/zd1301_demod*
14456 ZD1301 MEDIA DRIVER
14457 M: Antti Palosaari <crope@iki.fi>
14458 L: linux-media@vger.kernel.org
14459 W: https://linuxtv.org/
14460 W: http://palosaari.fi/linux/
14461 Q: https://patchwork.linuxtv.org/project/linux-media/list/
14463 F: drivers/media/usb/dvb-usb-v2/zd1301*
14465 ZPOOL COMPRESSED PAGE STORAGE API
14466 M: Dan Streetman <ddstreet@ieee.org>
14467 L: linux-mm@kvack.org
14470 F: include/linux/zpool.h
14472 ZR36067 VIDEO FOR LINUX DRIVER
14473 L: mjpeg-users@lists.sourceforge.net
14474 L: linux-media@vger.kernel.org
14475 W: http://mjpeg.sourceforge.net/driver-zoran/
14476 T: hg https://linuxtv.org/hg/v4l-dvb
14478 F: drivers/media/pci/zoran/
14480 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
14481 M: Minchan Kim <minchan@kernel.org>
14482 M: Nitin Gupta <ngupta@vflare.org>
14483 R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
14484 L: linux-kernel@vger.kernel.org
14486 F: drivers/block/zram/
14487 F: Documentation/blockdev/zram.txt
14489 ZS DECSTATION Z85C30 SERIAL DRIVER
14490 M: "Maciej W. Rozycki" <macro@linux-mips.org>
14492 F: drivers/tty/serial/zs.*
14494 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
14495 M: Minchan Kim <minchan@kernel.org>
14496 M: Nitin Gupta <ngupta@vflare.org>
14497 R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
14498 L: linux-mm@kvack.org
14501 F: include/linux/zsmalloc.h
14502 F: Documentation/vm/zsmalloc.txt
14504 ZSWAP COMPRESSED SWAP CACHING
14505 M: Seth Jennings <sjenning@redhat.com>
14506 M: Dan Streetman <ddstreet@ieee.org>
14507 L: linux-mm@kvack.org
14512 M: Linus Torvalds <torvalds@linux-foundation.org>
14513 L: linux-kernel@vger.kernel.org
14514 Q: http://patchwork.kernel.org/project/LKML/list/
14515 T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
14516 S: Buried alive in reporters