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
496 M: Matthew Wilcox <matthew@wil.cx>
497 M: Hannes Reinecke <hare@suse.com>
498 L: linux-scsi@vger.kernel.org
500 F: Documentation/scsi/advansys.txt
501 F: drivers/scsi/advansys.c
503 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
504 M: Michael Hennerich <michael.hennerich@analog.com>
505 W: http://wiki.analog.com/ADXL345
506 W: http://ez.analog.com/community/linux-device-drivers
508 F: drivers/input/misc/adxl34x.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 APPARMOR SECURITY MODULE
876 M: John Johansen <john.johansen@canonical.com>
877 L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
878 W: apparmor.wiki.kernel.org
879 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
881 F: security/apparmor/
882 F: Documentation/admin-guide/LSM/apparmor.rst
884 APPLE BCM5974 MULTITOUCH DRIVER
885 M: Henrik Rydberg <rydberg@bitmath.org>
886 L: linux-input@vger.kernel.org
888 F: drivers/input/mouse/bcm5974.c
891 M: Henrik Rydberg <rydberg@bitmath.org>
892 L: linux-hwmon@vger.kernel.org
894 F: drivers/hwmon/applesmc.c
896 APPLETALK NETWORK LAYER
897 L: netdev@vger.kernel.org
899 F: drivers/net/appletalk/
902 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
903 M: Duc Dang <dhdang@apm.com>
905 F: arch/arm64/boot/dts/apm/
907 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
908 M: Iyappan Subramanian <isubramanian@apm.com>
909 M: Keyur Chudgar <kchudgar@apm.com>
910 M: Quan Nguyen <qnguyen@apm.com>
912 F: drivers/net/ethernet/apm/xgene/
913 F: drivers/net/phy/mdio-xgene.c
914 F: Documentation/devicetree/bindings/net/apm-xgene-enet.txt
915 F: Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
917 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
918 M: Iyappan Subramanian <isubramanian@apm.com>
919 M: Keyur Chudgar <kchudgar@apm.com>
921 F: drivers/net/ethernet/apm/xgene-v2/
923 APPLIED MICRO (APM) X-GENE SOC PMU
924 M: Tai Nguyen <ttnguyen@apm.com>
926 F: drivers/perf/xgene_pmu.c
927 F: Documentation/perf/xgene-pmu.txt
928 F: Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
930 APTINA CAMERA SENSOR PLL
931 M: Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
932 L: linux-media@vger.kernel.org
934 F: drivers/media/i2c/aptina-pll.*
936 ARC FRAMEBUFFER DRIVER
937 M: Jaya Kumar <jayalk@intworks.biz>
939 F: drivers/video/fbdev/arcfb.c
940 F: drivers/video/fbdev/core/fb_defio.c
943 M: Alexey Brodkin <abrodkin@synopsys.com>
945 F: drivers/gpu/drm/arc/
946 F: Documentation/devicetree/bindings/display/snps,arcpgu.txt
949 M: Michael Grzeschik <m.grzeschik@pengutronix.de>
950 L: netdev@vger.kernel.org
952 F: drivers/net/arcnet/
953 F: include/uapi/linux/if_arcnet.h
955 ARM ARCHITECTED TIMER DRIVER
956 M: Mark Rutland <mark.rutland@arm.com>
957 M: Marc Zyngier <marc.zyngier@arm.com>
958 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
960 F: arch/arm/include/asm/arch_timer.h
961 F: arch/arm64/include/asm/arch_timer.h
962 F: drivers/clocksource/arm_arch_timer.c
965 M: Liviu Dudau <liviu.dudau@arm.com>
967 F: drivers/gpu/drm/arm/hdlcd_*
968 F: Documentation/devicetree/bindings/display/arm,hdlcd.txt
970 ARM MALI-DP DRM DRIVER
971 M: Liviu Dudau <liviu.dudau@arm.com>
972 M: Brian Starkey <brian.starkey@arm.com>
973 M: Mali DP Maintainers <malidp@foss.arm.com>
975 F: drivers/gpu/drm/arm/
976 F: Documentation/devicetree/bindings/display/arm,malidp.txt
978 ARM MFM AND FLOPPY DRIVERS
979 M: Ian Molton <spyro@f2s.com>
981 F: arch/arm/lib/floppydma.S
982 F: arch/arm/include/asm/floppy.h
984 ARM PMU PROFILING AND DEBUGGING
985 M: Will Deacon <will.deacon@arm.com>
986 M: Mark Rutland <mark.rutland@arm.com>
988 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
989 F: arch/arm*/kernel/perf_*
990 F: arch/arm/oprofile/common.c
991 F: arch/arm*/kernel/hw_breakpoint.c
992 F: arch/arm*/include/asm/hw_breakpoint.h
993 F: arch/arm*/include/asm/perf_event.h
995 F: include/linux/perf/arm_pmu.h
996 F: Documentation/devicetree/bindings/arm/pmu.txt
997 F: Documentation/devicetree/bindings/perf/
1000 M: Russell King <linux@armlinux.org.uk>
1001 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1002 W: http://www.armlinux.org.uk/
1004 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git
1007 ARM SUB-ARCHITECTURES
1008 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1012 T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
1014 ARM PRIMECELL AACI PL041 DRIVER
1015 M: Russell King <linux@armlinux.org.uk>
1019 ARM PRIMECELL CLCD PL110 DRIVER
1020 M: Russell King <linux@armlinux.org.uk>
1022 F: drivers/video/fbdev/amba-clcd.*
1024 ARM PRIMECELL KMI PL050 DRIVER
1025 M: Russell King <linux@armlinux.org.uk>
1027 F: drivers/input/serio/ambakmi.*
1028 F: include/linux/amba/kmi.h
1030 ARM PRIMECELL MMCI PL180/1 DRIVER
1031 M: Russell King <linux@armlinux.org.uk>
1033 F: drivers/mmc/host/mmci.*
1034 F: include/linux/amba/mmci.h
1036 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1037 M: Russell King <linux@armlinux.org.uk>
1039 F: drivers/tty/serial/amba-pl01*.c
1040 F: include/linux/amba/serial.h
1042 ARM PRIMECELL BUS SUPPORT
1043 M: Russell King <linux@armlinux.org.uk>
1046 F: include/linux/amba/bus.h
1048 ARM/ACTIONS SEMI ARCHITECTURE
1049 M: Andreas Färber <afaerber@suse.de>
1050 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1053 F: arch/arm/mach-actions/
1054 F: arch/arm/boot/dts/owl-*
1055 F: arch/arm64/boot/dts/actions/
1056 F: drivers/clocksource/owl-*
1057 F: drivers/soc/actions/
1058 F: include/dt-bindings/power/owl-*
1059 F: include/linux/soc/actions/
1060 F: Documentation/devicetree/bindings/arm/actions.txt
1061 F: Documentation/devicetree/bindings/power/actions,owl-sps.txt
1062 F: Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1064 ARM/ADS SPHERE MACHINE SUPPORT
1065 M: Lennert Buytenhek <kernel@wantstofly.org>
1066 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1069 ARM/AFEB9260 MACHINE SUPPORT
1070 M: Sergey Lapin <slapin@ossfans.org>
1071 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1074 ARM/AJECO 1ARM MACHINE SUPPORT
1075 M: Lennert Buytenhek <kernel@wantstofly.org>
1076 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1079 ARM/Allwinner sunXi SoC support
1080 M: Maxime Ripard <maxime.ripard@free-electrons.com>
1081 M: Chen-Yu Tsai <wens@csie.org>
1082 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1086 F: arch/arm/mach-sunxi/
1087 F: arch/arm64/boot/dts/allwinner/
1088 F: drivers/clk/sunxi-ng/
1089 F: drivers/pinctrl/sunxi/
1090 F: drivers/soc/sunxi/
1091 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1093 ARM/Allwinner SoC Clock Support
1094 M: Emilio López <emilio@elopez.com.ar>
1096 F: drivers/clk/sunxi/
1098 ARM/Amlogic Meson SoC support
1099 M: Carlo Caione <carlo@caione.org>
1100 M: Kevin Hilman <khilman@baylibre.com>
1101 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1102 L: linux-amlogic@lists.infradead.org
1103 W: http://linux-meson.com/
1105 F: arch/arm/mach-meson/
1106 F: arch/arm/boot/dts/meson*
1107 F: arch/arm64/boot/dts/amlogic/
1108 F: drivers/pinctrl/meson/
1109 F: drivers/mmc/host/meson*
1112 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1113 M: Neil Armstrong <narmstrong@baylibre.com>
1114 M: Jerome Brunet <jbrunet@baylibre.com>
1115 L: linux-amlogic@lists.infradead.org
1117 F: drivers/clk/meson/
1118 F: include/dt-bindings/clock/meson*
1119 F: include/dt-bindings/clock/gxbb*
1120 F: Documentation/devicetree/bindings/clock/amlogic*
1122 ARM/Annapurna Labs ALPINE ARCHITECTURE
1123 M: Tsahee Zidenberg <tsahee@annapurnalabs.com>
1124 M: Antoine Tenart <antoine.tenart@free-electrons.com>
1125 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1127 F: arch/arm/mach-alpine/
1128 F: arch/arm/boot/dts/alpine*
1129 F: arch/arm64/boot/dts/al/
1130 F: drivers/*/*alpine*
1132 ARM/ARTPEC MACHINE SUPPORT
1133 M: Jesper Nilsson <jesper.nilsson@axis.com>
1134 M: Lars Persson <lars.persson@axis.com>
1135 M: Niklas Cassel <niklas.cassel@axis.com>
1137 L: linux-arm-kernel@axis.com
1138 F: arch/arm/mach-artpec
1139 F: arch/arm/boot/dts/artpec6*
1141 F: drivers/pinctrl/pinctrl-artpec*
1142 F: Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1144 ARM/ASPEED MACHINE SUPPORT
1145 M: Joel Stanley <joel@jms.id.au>
1147 F: arch/arm/mach-aspeed/
1148 F: arch/arm/boot/dts/aspeed-*
1149 F: drivers/*/*aspeed*
1151 ARM/ASPEED I2C DRIVER
1152 M: Brendan Higgins <brendanhiggins@google.com>
1153 R: Benjamin Herrenschmidt <benh@kernel.crashing.org>
1154 R: Joel Stanley <joel@jms.id.au>
1155 L: linux-i2c@vger.kernel.org
1156 L: openbmc@lists.ozlabs.org
1158 F: drivers/irqchip/irq-aspeed-i2c-ic.c
1159 F: drivers/i2c/busses/i2c-aspeed.c
1160 F: Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1161 F: Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1163 ARM/ATMEL AT91RM9200, AT91SAM9 AND SAMA5 SOC SUPPORT
1164 M: Nicolas Ferre <nicolas.ferre@microchip.com>
1165 M: Alexandre Belloni <alexandre.belloni@free-electrons.com>
1166 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1167 W: http://www.linux4sam.org
1168 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nferre/linux-at91.git
1170 F: arch/arm/mach-at91/
1171 F: include/soc/at91/
1172 F: arch/arm/boot/dts/at91*.dts
1173 F: arch/arm/boot/dts/at91*.dtsi
1174 F: arch/arm/boot/dts/sama*.dts
1175 F: arch/arm/boot/dts/sama*.dtsi
1176 F: arch/arm/include/debug/at91.S
1177 F: drivers/memory/atmel*
1179 ARM/ATMEL AT91 Clock Support
1180 M: Boris Brezillon <boris.brezillon@free-electrons.com>
1184 ARM/CALXEDA HIGHBANK ARCHITECTURE
1185 M: Rob Herring <robh@kernel.org>
1186 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1188 F: arch/arm/mach-highbank/
1189 F: arch/arm/boot/dts/highbank.dts
1190 F: arch/arm/boot/dts/ecx-*.dts*
1192 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1193 M: Krzysztof Halasa <khalasa@piap.pl>
1195 F: arch/arm/mach-cns3xxx/
1197 ARM/CAVIUM THUNDER NETWORK DRIVER
1198 M: Sunil Goutham <sgoutham@cavium.com>
1199 M: Robert Richter <rric@kernel.org>
1200 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1202 F: drivers/net/ethernet/cavium/thunder/
1204 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1205 M: Alexander Shiyan <shc_work@mail.ru>
1206 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1210 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1211 M: Hartley Sweeten <hsweeten@visionengravers.com>
1212 M: Alexander Sverdlin <alexander.sverdlin@gmail.com>
1213 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1215 F: arch/arm/mach-ep93xx/
1216 F: arch/arm/mach-ep93xx/include/mach/
1218 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1219 M: Lennert Buytenhek <kernel@wantstofly.org>
1220 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1224 M: Russell King <linux@armlinux.org.uk>
1225 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1227 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1228 F: arch/arm/include/asm/clkdev.h
1229 F: drivers/clk/clkdev.c
1231 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
1232 M: Mike Rapoport <mike@compulab.co.il>
1233 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1236 ARM/CONTEC MICRO9 MACHINE SUPPORT
1237 M: Hubert Feurstein <hubert.feurstein@contec.at>
1239 F: arch/arm/mach-ep93xx/micro9.c
1241 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1242 M: Mathieu Poirier <mathieu.poirier@linaro.org>
1243 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1245 F: drivers/hwtracing/coresight/*
1246 F: Documentation/trace/coresight.txt
1247 F: Documentation/trace/coresight-cpu-debug.txt
1248 F: Documentation/devicetree/bindings/arm/coresight.txt
1249 F: Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1250 F: Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1251 F: tools/perf/arch/arm/util/pmu.c
1252 F: tools/perf/arch/arm/util/auxtrace.c
1253 F: tools/perf/arch/arm/util/cs-etm.c
1254 F: tools/perf/arch/arm/util/cs-etm.h
1255 F: tools/perf/util/cs-etm.h
1257 ARM/CORGI MACHINE SUPPORT
1258 M: Richard Purdie <rpurdie@rpsys.net>
1261 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1262 M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
1263 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1264 T: git git://github.com/ulli-kroll/linux.git
1266 F: arch/arm/mach-gemini/
1267 F: drivers/rtc/rtc-ftrtc010.c
1269 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1270 M: Barry Song <baohua@kernel.org>
1271 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1272 T: git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1274 F: arch/arm/boot/dts/prima2*
1275 F: arch/arm/mach-prima2/
1276 F: drivers/clk/sirf/
1277 F: drivers/clocksource/timer-prima2.c
1278 F: drivers/clocksource/timer-atlas7.c
1281 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1282 M: Baruch Siach <baruch@tkos.co.il>
1283 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1285 F: arch/arm/boot/dts/cx92755*
1288 ARM/EBSA110 MACHINE SUPPORT
1289 M: Russell King <linux@armlinux.org.uk>
1290 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1291 W: http://www.armlinux.org.uk/
1293 F: arch/arm/mach-ebsa110/
1294 F: drivers/net/ethernet/amd/am79c961a.*
1296 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1297 M: Uwe Kleine-König <kernel@pengutronix.de>
1298 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1302 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1303 M: Robert Jarzmik <robert.jarzmik@free.fr>
1304 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1306 F: arch/arm/mach-pxa/ezx.c
1308 ARM/FARADAY FA526 PORT
1309 M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
1310 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1312 T: git git://git.berlios.de/gemini-board
1313 F: arch/arm/mm/*-fa*
1315 ARM/FOOTBRIDGE ARCHITECTURE
1316 M: Russell King <linux@armlinux.org.uk>
1317 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1318 W: http://www.armlinux.org.uk/
1320 F: arch/arm/include/asm/hardware/dec21285.h
1321 F: arch/arm/mach-footbridge/
1323 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1324 M: Shawn Guo <shawnguo@kernel.org>
1325 M: Sascha Hauer <kernel@pengutronix.de>
1326 R: Fabio Estevam <fabio.estevam@nxp.com>
1327 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1329 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1330 F: arch/arm/mach-imx/
1331 F: arch/arm/mach-mxs/
1332 F: arch/arm/boot/dts/imx*
1333 F: arch/arm/configs/imx*_defconfig
1338 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1339 M: Shawn Guo <shawnguo@kernel.org>
1340 M: Sascha Hauer <kernel@pengutronix.de>
1341 R: Stefan Agner <stefan@agner.ch>
1342 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1344 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1345 F: arch/arm/mach-imx/*vf610*
1346 F: arch/arm/boot/dts/vf*
1348 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1349 M: Lennert Buytenhek <kernel@wantstofly.org>
1350 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1353 ARM/GUMSTIX MACHINE SUPPORT
1354 M: Steve Sakoman <sakoman@gmail.com>
1355 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1358 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1359 M: Philipp Zabel <philipp.zabel@gmail.com>
1360 M: Paul Parsons <lost.distance@yahoo.com>
1361 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1363 F: arch/arm/mach-pxa/hx4700.c
1364 F: arch/arm/mach-pxa/include/mach/hx4700.h
1365 F: sound/soc/pxa/hx4700.c
1367 ARM/HISILICON SOC SUPPORT
1368 M: Wei Xu <xuwei5@hisilicon.com>
1369 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1370 W: http://www.hisilicon.com
1372 T: git git://github.com/hisilicon/linux-hisi.git
1373 F: arch/arm/mach-hisi/
1374 F: arch/arm/boot/dts/hi3*
1375 F: arch/arm/boot/dts/hip*
1376 F: arch/arm/boot/dts/hisi*
1377 F: arch/arm64/boot/dts/hisilicon/
1379 ARM/HP JORNADA 7XX MACHINE SUPPORT
1380 M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
1383 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1384 F: arch/arm/mach-sa1100/jornada720.c
1385 F: arch/arm/mach-sa1100/include/mach/jornada720.h
1387 ARM/IGEP MACHINE SUPPORT
1388 M: Enric Balletbo i Serra <eballetbo@gmail.com>
1389 M: Javier Martinez Canillas <javier@dowhile0.org>
1390 L: linux-omap@vger.kernel.org
1391 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1393 F: arch/arm/boot/dts/omap3-igep*
1395 ARM/INCOME PXA270 SUPPORT
1396 M: Marek Vasut <marek.vasut@gmail.com>
1397 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1399 F: arch/arm/mach-pxa/colibri-pxa270-income.c
1401 ARM/INTEL IOP32X ARM ARCHITECTURE
1402 M: Lennert Buytenhek <kernel@wantstofly.org>
1403 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1406 ARM/INTEL IOP33X ARM ARCHITECTURE
1407 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1410 ARM/INTEL IOP13XX ARM ARCHITECTURE
1411 M: Lennert Buytenhek <kernel@wantstofly.org>
1412 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1415 ARM/INTEL IQ81342EX MACHINE SUPPORT
1416 M: Lennert Buytenhek <kernel@wantstofly.org>
1417 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1420 ARM/INTEL IXDP2850 MACHINE SUPPORT
1421 M: Lennert Buytenhek <kernel@wantstofly.org>
1422 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1425 ARM/INTEL IXP4XX ARM ARCHITECTURE
1426 M: Imre Kaloz <kaloz@openwrt.org>
1427 M: Krzysztof Halasa <khalasa@piap.pl>
1428 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1430 F: arch/arm/mach-ixp4xx/
1432 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1433 M: Jonathan Cameron <jic23@cam.ac.uk>
1434 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1436 F: arch/arm/mach-pxa/stargate2.c
1437 F: drivers/pcmcia/pxa2xx_stargate2.c
1439 ARM/INTEL XSC3 (MANZANO) ARM CORE
1440 M: Lennert Buytenhek <kernel@wantstofly.org>
1441 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1444 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1445 M: Lennert Buytenhek <kernel@wantstofly.org>
1446 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1449 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
1450 M: Santosh Shilimkar <ssantosh@kernel.org>
1451 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1453 F: arch/arm/mach-keystone/
1454 F: arch/arm/boot/dts/keystone-*
1455 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
1457 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
1458 M: Santosh Shilimkar <ssantosh@kernel.org>
1459 L: linux-kernel@vger.kernel.org
1461 F: drivers/clk/keystone/
1463 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
1464 M: Santosh Shilimkar <ssantosh@kernel.org>
1465 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1466 L: linux-kernel@vger.kernel.org
1468 F: drivers/clocksource/timer-keystone.c
1470 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
1471 M: Santosh Shilimkar <ssantosh@kernel.org>
1472 L: linux-kernel@vger.kernel.org
1474 F: drivers/power/reset/keystone-reset.c
1476 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
1477 M: Santosh Shilimkar <ssantosh@kernel.org>
1478 L: linux-kernel@vger.kernel.org
1480 F: drivers/memory/*emif*
1482 ARM/LG1K ARCHITECTURE
1483 M: Chanho Min <chanho.min@lge.com>
1484 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1486 F: arch/arm64/boot/dts/lg/
1488 ARM/LOGICPD PXA270 MACHINE SUPPORT
1489 M: Lennert Buytenhek <kernel@wantstofly.org>
1490 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1493 ARM/LPC18XX ARCHITECTURE
1494 M: Joachim Eastwood <manabian@gmail.com>
1495 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1497 F: arch/arm/boot/dts/lpc43*
1498 F: drivers/clk/nxp/clk-lpc18xx*
1499 F: drivers/clocksource/time-lpc32xx.c
1500 F: drivers/i2c/busses/i2c-lpc2k.c
1501 F: drivers/memory/pl172.c
1502 F: drivers/mtd/spi-nor/nxp-spifi.c
1503 F: drivers/rtc/rtc-lpc24xx.c
1506 ARM/LPC32XX SOC SUPPORT
1507 M: Vladimir Zapolskiy <vz@mleia.com>
1508 M: Sylvain Lemieux <slemieux.tyco@gmail.com>
1509 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1510 T: git git://github.com/vzapolskiy/linux-lpc32xx.git
1512 F: arch/arm/boot/dts/lpc32*
1513 F: arch/arm/mach-lpc32xx/
1514 F: drivers/i2c/busses/i2c-pnx.c
1515 F: drivers/net/ethernet/nxp/lpc_eth.c
1516 F: drivers/usb/host/ohci-nxp.c
1517 F: drivers/watchdog/pnx4008_wdt.c
1520 ARM/MAGICIAN MACHINE SUPPORT
1521 M: Philipp Zabel <philipp.zabel@gmail.com>
1524 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K SOC support
1525 M: Jason Cooper <jason@lakedaemon.net>
1526 M: Andrew Lunn <andrew@lunn.ch>
1527 M: Gregory Clement <gregory.clement@free-electrons.com>
1528 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1529 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1531 F: arch/arm/boot/dts/armada*
1532 F: arch/arm/boot/dts/kirkwood*
1533 F: arch/arm/configs/mvebu_*_defconfig
1534 F: arch/arm/mach-mvebu/
1535 F: arch/arm64/boot/dts/marvell/armada*
1536 F: drivers/cpufreq/mvebu-cpufreq.c
1537 F: drivers/irqchip/irq-armada-370-xp.c
1538 F: drivers/irqchip/irq-mvebu-*
1539 F: drivers/pinctrl/mvebu/
1540 F: drivers/rtc/rtc-armada38x.c
1542 ARM/Marvell Berlin SoC support
1543 M: Jisheng Zhang <jszhang@marvell.com>
1544 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1545 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1547 F: arch/arm/mach-berlin/
1548 F: arch/arm/boot/dts/berlin*
1549 F: arch/arm64/boot/dts/marvell/berlin*
1552 ARM/Marvell Dove/MV78xx0/Orion SOC support
1553 M: Jason Cooper <jason@lakedaemon.net>
1554 M: Andrew Lunn <andrew@lunn.ch>
1555 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1556 M: Gregory Clement <gregory.clement@free-electrons.com>
1557 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1559 F: Documentation/devicetree/bindings/soc/dove/
1560 F: arch/arm/mach-dove/
1561 F: arch/arm/mach-mv78xx0/
1562 F: arch/arm/mach-orion5x/
1563 F: arch/arm/plat-orion/
1564 F: arch/arm/boot/dts/dove*
1565 F: arch/arm/boot/dts/orion5x*
1568 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1569 M: Alexander Clouter <alex@digriz.org.uk>
1570 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1571 W: http://www.digriz.org.uk/ts78xx/kernel
1573 F: arch/arm/mach-orion5x/ts78xx-*
1575 ARM/OXNAS platform support
1576 M: Neil Armstrong <narmstrong@baylibre.com>
1577 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1578 L: linux-oxnas@lists.tuxfamily.org (moderated for non-subscribers)
1580 F: arch/arm/mach-oxnas/
1581 F: arch/arm/boot/dts/ox8*.dtsi
1582 F: arch/arm/boot/dts/wd-mbwe.dts
1583 F: arch/arm/boot/dts/cloudengines-pogoplug-series-3.dts
1586 ARM/Mediatek RTC DRIVER
1587 M: Eddie Huang <eddie.huang@mediatek.com>
1588 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1589 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1591 F: drivers/rtc/rtc-mt6397.c
1593 ARM/Mediatek SoC support
1594 M: Matthias Brugger <matthias.bgg@gmail.com>
1595 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1596 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1598 F: arch/arm/boot/dts/mt6*
1599 F: arch/arm/boot/dts/mt7*
1600 F: arch/arm/boot/dts/mt8*
1601 F: arch/arm/mach-mediatek/
1602 F: arch/arm64/boot/dts/mediatek/
1606 ARM/Mediatek USB3 PHY DRIVER
1607 M: Chunfeng Yun <chunfeng.yun@mediatek.com>
1608 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1609 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1611 F: drivers/phy/phy-mt65xx-usb3.c
1613 ARM/MICREL KS8695 ARCHITECTURE
1614 M: Greg Ungerer <gerg@uclinux.org>
1615 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1616 F: arch/arm/mach-ks8695/
1619 ARM/MIOA701 MACHINE SUPPORT
1620 M: Robert Jarzmik <robert.jarzmik@free.fr>
1621 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1622 F: arch/arm/mach-pxa/mioa701.c
1625 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1626 M: Michael Petchkovsky <mkpetch@internode.on.net>
1629 ARM/NOMADIK ARCHITECTURE
1630 M: Alessandro Rubini <rubini@unipv.it>
1631 M: Linus Walleij <linus.walleij@linaro.org>
1632 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1634 F: arch/arm/mach-nomadik/
1635 F: drivers/pinctrl/nomadik/
1636 F: drivers/i2c/busses/i2c-nomadik.c
1637 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1639 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1640 M: Nelson Castillo <arhuaco@freaks-unidos.net>
1641 L: openmoko-kernel@lists.openmoko.org (subscribers-only)
1642 W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
1645 ARM/TOSA MACHINE SUPPORT
1646 M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1647 M: Dirk Opfer <dirk@opfer-online.de>
1650 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1651 M: Marek Vasut <marek.vasut@gmail.com>
1652 L: linux-arm-kernel@lists.infradead.org
1653 W: http://hackndev.com
1655 F: arch/arm/mach-pxa/include/mach/palmtx.h
1656 F: arch/arm/mach-pxa/palmtx.c
1657 F: arch/arm/mach-pxa/include/mach/palmt5.h
1658 F: arch/arm/mach-pxa/palmt5.c
1659 F: arch/arm/mach-pxa/include/mach/palmld.h
1660 F: arch/arm/mach-pxa/palmld.c
1661 F: arch/arm/mach-pxa/include/mach/palmte2.h
1662 F: arch/arm/mach-pxa/palmte2.c
1663 F: arch/arm/mach-pxa/include/mach/palmtc.h
1664 F: arch/arm/mach-pxa/palmtc.c
1666 ARM/PALM TREO SUPPORT
1667 M: Tomas Cech <sleep_walker@suse.com>
1668 L: linux-arm-kernel@lists.infradead.org
1669 W: http://hackndev.com
1671 F: arch/arm/mach-pxa/include/mach/palmtreo.h
1672 F: arch/arm/mach-pxa/palmtreo.c
1675 M: Sergey Lapin <slapin@ossfans.org>
1676 L: linux-arm-kernel@lists.infradead.org
1677 W: http://hackndev.com
1679 F: arch/arm/mach-pxa/include/mach/palmz72.h
1680 F: arch/arm/mach-pxa/palmz72.c
1683 M: Peter Chubb <pleb@gelato.unsw.edu.au>
1684 W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1687 ARM/PT DIGITAL BOARD PORT
1688 M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1689 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1690 W: http://www.armlinux.org.uk/
1693 ARM/QUALCOMM SUPPORT
1694 M: Andy Gross <andy.gross@linaro.org>
1695 M: David Brown <david.brown@linaro.org>
1696 L: linux-arm-msm@vger.kernel.org
1697 L: linux-soc@vger.kernel.org
1699 F: Documentation/devicetree/bindings/soc/qcom/
1700 F: arch/arm/boot/dts/qcom-*.dts
1701 F: arch/arm/boot/dts/qcom-*.dtsi
1702 F: arch/arm/mach-qcom/
1703 F: arch/arm64/boot/dts/qcom/*
1704 F: drivers/i2c/busses/i2c-qup.c
1705 F: drivers/clk/qcom/
1706 F: drivers/dma/qcom/
1707 F: drivers/soc/qcom/
1708 F: drivers/spi/spi-qup.c
1709 F: drivers/tty/serial/msm_serial.h
1710 F: drivers/tty/serial/msm_serial.c
1711 F: drivers/*/pm8???-*
1712 F: drivers/mfd/ssbi.c
1713 F: drivers/firmware/qcom_scm.c
1714 T: git git://git.kernel.org/pub/scm/linux/kernel/git/agross/linux.git
1716 ARM/RADISYS ENP2611 MACHINE SUPPORT
1717 M: Lennert Buytenhek <kernel@wantstofly.org>
1718 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1721 ARM/REALTEK ARCHITECTURE
1722 M: Andreas Färber <afaerber@suse.de>
1723 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1725 F: arch/arm64/boot/dts/realtek/
1726 F: Documentation/devicetree/bindings/arm/realtek.txt
1728 ARM/RENESAS ARM64 ARCHITECTURE
1729 M: Simon Horman <horms@verge.net.au>
1730 M: Magnus Damm <magnus.damm@gmail.com>
1731 L: linux-renesas-soc@vger.kernel.org
1732 Q: http://patchwork.kernel.org/project/linux-renesas-soc/list/
1733 T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1735 F: arch/arm64/boot/dts/renesas/
1736 F: drivers/soc/renesas/
1737 F: include/linux/soc/renesas/
1739 ARM/RISCPC ARCHITECTURE
1740 M: Russell King <linux@armlinux.org.uk>
1741 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1742 W: http://www.armlinux.org.uk/
1744 F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1745 F: arch/arm/include/asm/hardware/ioc.h
1746 F: arch/arm/include/asm/hardware/iomd.h
1747 F: arch/arm/include/asm/hardware/memc.h
1748 F: arch/arm/mach-rpc/
1749 F: drivers/net/ethernet/8390/etherh.c
1750 F: drivers/net/ethernet/i825xx/ether1*
1751 F: drivers/net/ethernet/seeq/ether3*
1752 F: drivers/scsi/arm/
1754 ARM/Rockchip SoC support
1755 M: Heiko Stuebner <heiko@sntech.de>
1756 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1757 L: linux-rockchip@lists.infradead.org
1758 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
1760 F: arch/arm/boot/dts/rk3*
1761 F: arch/arm/boot/dts/rv1108*
1762 F: arch/arm/mach-rockchip/
1763 F: drivers/clk/rockchip/
1764 F: drivers/i2c/busses/i2c-rk3x.c
1765 F: drivers/*/*rockchip*
1766 F: drivers/*/*/*rockchip*
1767 F: sound/soc/rockchip/
1770 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1771 M: Kukjin Kim <kgene@kernel.org>
1772 M: Krzysztof Kozlowski <krzk@kernel.org>
1773 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1774 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1775 Q: https://patchwork.kernel.org/project/linux-samsung-soc/list/
1777 F: arch/arm/boot/dts/s3c*
1778 F: arch/arm/boot/dts/s5p*
1779 F: arch/arm/boot/dts/samsung*
1780 F: arch/arm/boot/dts/exynos*
1781 F: arch/arm64/boot/dts/exynos/
1782 F: arch/arm/plat-samsung/
1783 F: arch/arm/mach-s3c24*/
1784 F: arch/arm/mach-s3c64xx/
1785 F: arch/arm/mach-s5p*/
1786 F: arch/arm/mach-exynos*/
1787 F: drivers/*/*s3c24*
1788 F: drivers/*/*/*s3c24*
1789 F: drivers/*/*s3c64xx*
1790 F: drivers/*/*s5pv210*
1791 F: drivers/memory/samsung/*
1792 F: drivers/soc/samsung/*
1793 F: Documentation/arm/Samsung/
1794 F: Documentation/devicetree/bindings/arm/samsung/
1795 F: Documentation/devicetree/bindings/sram/samsung-sram.txt
1796 F: Documentation/devicetree/bindings/power/pd-samsung.txt
1799 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1800 M: Kyungmin Park <kyungmin.park@samsung.com>
1801 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1803 F: arch/arm/mach-s5pv210/
1805 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1806 M: Kyungmin Park <kyungmin.park@samsung.com>
1807 M: Kamil Debski <kamil@wypas.org>
1808 M: Andrzej Hajda <a.hajda@samsung.com>
1809 L: linux-arm-kernel@lists.infradead.org
1810 L: linux-media@vger.kernel.org
1812 F: drivers/media/platform/s5p-g2d/
1814 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1815 M: Kyungmin Park <kyungmin.park@samsung.com>
1816 M: Kamil Debski <kamil@wypas.org>
1817 M: Jeongtae Park <jtp.park@samsung.com>
1818 M: Andrzej Hajda <a.hajda@samsung.com>
1819 L: linux-arm-kernel@lists.infradead.org
1820 L: linux-media@vger.kernel.org
1822 F: arch/arm/plat-samsung/s5p-dev-mfc.c
1823 F: drivers/media/platform/s5p-mfc/
1825 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
1826 M: Marek Szyprowski <m.szyprowski@samsung.com>
1827 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1828 L: linux-media@vger.kernel.org
1830 F: drivers/media/platform/s5p-cec/
1831 F: Documentation/devicetree/bindings/media/s5p-cec.txt
1833 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
1834 M: Andrzej Pietrasiewicz <andrzej.p@samsung.com>
1835 M: Jacek Anaszewski <jacek.anaszewski@gmail.com>
1836 L: linux-arm-kernel@lists.infradead.org
1837 L: linux-media@vger.kernel.org
1839 F: drivers/media/platform/s5p-jpeg/
1841 ARM/SHMOBILE ARM ARCHITECTURE
1842 M: Simon Horman <horms@verge.net.au>
1843 M: Magnus Damm <magnus.damm@gmail.com>
1844 L: linux-renesas-soc@vger.kernel.org
1845 Q: http://patchwork.kernel.org/project/linux-renesas-soc/list/
1846 T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1848 F: arch/arm/boot/dts/emev2*
1849 F: arch/arm/boot/dts/r7s*
1850 F: arch/arm/boot/dts/r8a*
1851 F: arch/arm/boot/dts/sh*
1852 F: arch/arm/configs/shmobile_defconfig
1853 F: arch/arm/include/debug/renesas-scif.S
1854 F: arch/arm/mach-shmobile/
1855 F: drivers/soc/renesas/
1856 F: include/linux/soc/renesas/
1858 ARM/SOCFPGA ARCHITECTURE
1859 M: Dinh Nguyen <dinguyen@kernel.org>
1861 F: arch/arm/mach-socfpga/
1862 F: arch/arm/boot/dts/socfpga*
1863 F: arch/arm/configs/socfpga_defconfig
1864 F: arch/arm64/boot/dts/altera/
1865 W: http://www.rocketboards.org
1866 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
1868 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1869 M: Dinh Nguyen <dinguyen@kernel.org>
1871 F: drivers/clk/socfpga/
1873 ARM/SOCFPGA EDAC SUPPORT
1874 M: Thor Thayer <thor.thayer@linux.intel.com>
1876 F: drivers/edac/altera_edac.
1878 ARM/STI ARCHITECTURE
1879 M: Patrice Chotard <patrice.chotard@st.com>
1880 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1881 W: http://www.stlinux.com
1883 F: arch/arm/mach-sti/
1884 F: arch/arm/boot/dts/sti*
1885 F: drivers/char/hw_random/st-rng.c
1886 F: drivers/clocksource/arm_global_timer.c
1887 F: drivers/clocksource/clksrc_st_lpc.c
1888 F: drivers/cpufreq/sti-cpufreq.c
1889 F: drivers/dma/st_fdma*
1890 F: drivers/i2c/busses/i2c-st.c
1891 F: drivers/media/rc/st_rc.c
1892 F: drivers/media/platform/sti/c8sectpfe/
1893 F: drivers/mmc/host/sdhci-st.c
1894 F: drivers/phy/st/phy-miphy28lp.c
1895 F: drivers/phy/st/phy-stih407-usb.c
1896 F: drivers/pinctrl/pinctrl-st.c
1897 F: drivers/remoteproc/st_remoteproc.c
1898 F: drivers/remoteproc/st_slim_rproc.c
1899 F: drivers/reset/sti/
1900 F: drivers/rtc/rtc-st-lpc.c
1901 F: drivers/tty/serial/st-asc.c
1902 F: drivers/usb/dwc3/dwc3-st.c
1903 F: drivers/usb/host/ehci-st.c
1904 F: drivers/usb/host/ohci-st.c
1905 F: drivers/watchdog/st_lpc_wdt.c
1906 F: drivers/ata/ahci_st.c
1907 F: include/linux/remoteproc/st_slim_rproc.h
1909 ARM/STM32 ARCHITECTURE
1910 M: Maxime Coquelin <mcoquelin.stm32@gmail.com>
1911 M: Alexandre Torgue <alexandre.torgue@st.com>
1912 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1914 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git
1916 F: drivers/clocksource/armv7m_systick.c
1918 ARM/TANGO ARCHITECTURE
1919 M: Marc Gonzalez <marc_gonzalez@sigmadesigns.com>
1920 L: linux-arm-kernel@lists.infradead.org
1924 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
1925 M: Lennert Buytenhek <kernel@wantstofly.org>
1926 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1929 ARM/TETON BGA MACHINE SUPPORT
1930 M: "Mark F. Brown" <mark.brown314@gmail.com>
1931 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1934 ARM/THECUS N2100 MACHINE SUPPORT
1935 M: Lennert Buytenhek <kernel@wantstofly.org>
1936 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1939 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1940 M: Wan ZongShun <mcuos.com@gmail.com>
1941 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1942 W: http://www.mcuos.com
1944 F: arch/arm/mach-w90x900/
1945 F: drivers/input/keyboard/w90p910_keypad.c
1946 F: drivers/input/touchscreen/w90p910_ts.c
1947 F: drivers/watchdog/nuc900_wdt.c
1948 F: drivers/net/ethernet/nuvoton/w90p910_ether.c
1949 F: drivers/mtd/nand/nuc900_nand.c
1950 F: drivers/rtc/rtc-nuc900.c
1951 F: drivers/spi/spi-nuc900.c
1952 F: drivers/usb/host/ehci-w90x900.c
1953 F: drivers/video/fbdev/nuc900fb.c
1955 ARM/U300 MACHINE SUPPORT
1956 M: Linus Walleij <linus.walleij@linaro.org>
1957 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1959 F: arch/arm/mach-u300/
1960 F: drivers/clocksource/timer-u300.c
1961 F: drivers/i2c/busses/i2c-stu300.c
1962 F: drivers/rtc/rtc-coh901331.c
1963 F: drivers/watchdog/coh901327_wdt.c
1964 F: drivers/dma/coh901318*
1965 F: drivers/mfd/ab3100*
1966 F: drivers/rtc/rtc-ab3100.c
1967 F: drivers/rtc/rtc-coh901331.c
1968 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1970 ARM/UNIPHIER ARCHITECTURE
1971 M: Masahiro Yamada <yamada.masahiro@socionext.com>
1972 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1973 T: git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-uniphier.git
1975 F: arch/arm/boot/dts/uniphier*
1976 F: arch/arm/include/asm/hardware/cache-uniphier.h
1977 F: arch/arm/mach-uniphier/
1978 F: arch/arm/mm/cache-uniphier.c
1979 F: arch/arm64/boot/dts/socionext/
1980 F: drivers/bus/uniphier-system-bus.c
1981 F: drivers/clk/uniphier/
1982 F: drivers/i2c/busses/i2c-uniphier*
1983 F: drivers/pinctrl/uniphier/
1984 F: drivers/reset/reset-uniphier.c
1985 F: drivers/tty/serial/8250/8250_uniphier.c
1988 ARM/Ux500 ARM ARCHITECTURE
1989 M: Linus Walleij <linus.walleij@linaro.org>
1990 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1992 F: arch/arm/mach-ux500/
1993 F: drivers/clocksource/clksrc-dbx500-prcmu.c
1994 F: drivers/dma/ste_dma40*
1995 F: drivers/hwspinlock/u8500_hsem.c
1996 F: drivers/mfd/abx500*
1997 F: drivers/mfd/ab8500*
1998 F: drivers/mfd/dbx500*
1999 F: drivers/mfd/db8500*
2000 F: drivers/pinctrl/nomadik/pinctrl-ab*
2001 F: drivers/pinctrl/nomadik/pinctrl-nomadik*
2002 F: drivers/rtc/rtc-ab8500.c
2003 F: drivers/rtc/rtc-pl031.c
2004 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
2006 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
2007 M: Ulf Hansson <ulf.hansson@linaro.org>
2008 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2009 T: git git://git.linaro.org/people/ulfh/clk.git
2011 F: drivers/clk/ux500/
2013 ARM/VERSATILE EXPRESS PLATFORM
2014 M: Liviu Dudau <liviu.dudau@arm.com>
2015 M: Sudeep Holla <sudeep.holla@arm.com>
2016 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2017 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2019 F: arch/arm/boot/dts/vexpress*
2020 F: arch/arm64/boot/dts/arm/
2021 F: arch/arm/mach-vexpress/
2024 F: drivers/clk/versatile/clk-vexpress-osc.c
2025 F: drivers/clocksource/versatile.c
2029 M: Russell King <linux@armlinux.org.uk>
2030 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2031 W: http://www.armlinux.org.uk/
2035 ARM/VOIPAC PXA270 SUPPORT
2036 M: Marek Vasut <marek.vasut@gmail.com>
2037 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2039 F: arch/arm/mach-pxa/vpac270.c
2040 F: arch/arm/mach-pxa/include/mach/vpac270.h
2042 ARM/VT8500 ARM ARCHITECTURE
2043 M: Tony Prisk <linux@prisktech.co.nz>
2044 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2046 F: arch/arm/mach-vt8500/
2047 F: drivers/clocksource/vt8500_timer.c
2048 F: drivers/i2c/busses/i2c-wmt.c
2049 F: drivers/mmc/host/wmt-sdmmc.c
2050 F: drivers/pwm/pwm-vt8500.c
2051 F: drivers/rtc/rtc-vt8500.c
2052 F: drivers/tty/serial/vt8500_serial.c
2053 F: drivers/usb/host/ehci-platform.c
2054 F: drivers/usb/host/uhci-platform.c
2055 F: drivers/video/fbdev/vt8500lcdfb.*
2056 F: drivers/video/fbdev/wm8505fb*
2057 F: drivers/video/fbdev/wmt_ge_rops.*
2059 ARM/ZIPIT Z2 SUPPORT
2060 M: Marek Vasut <marek.vasut@gmail.com>
2061 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2063 F: arch/arm/mach-pxa/z2.c
2064 F: arch/arm/mach-pxa/include/mach/z2.h
2066 ARM/ZTE ARCHITECTURE
2067 M: Jun Nie <jun.nie@linaro.org>
2068 M: Baoyou Xie <baoyou.xie@linaro.org>
2069 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2071 F: arch/arm/mach-zx/
2073 F: drivers/reset/reset-zx2967.c
2075 F: Documentation/devicetree/bindings/arm/zte.txt
2076 F: Documentation/devicetree/bindings/clock/zx296702-clk.txt
2077 F: Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt
2078 F: Documentation/devicetree/bindings/soc/zte/
2079 F: include/dt-bindings/soc/zx*.h
2081 ARM/ZYNQ ARCHITECTURE
2082 M: Michal Simek <michal.simek@xilinx.com>
2083 R: Sören Brinkmann <soren.brinkmann@xilinx.com>
2084 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2085 W: http://wiki.xilinx.com
2086 T: git https://github.com/Xilinx/linux-xlnx.git
2088 F: arch/arm/mach-zynq/
2089 F: drivers/cpuidle/cpuidle-zynq.c
2090 F: drivers/block/xsysace.c
2093 F: drivers/clocksource/cadence_ttc_timer.c
2094 F: drivers/i2c/busses/i2c-cadence.c
2095 F: drivers/mmc/host/sdhci-of-arasan.c
2096 F: drivers/edac/synopsys_edac.c
2099 M: Will Deacon <will.deacon@arm.com>
2100 R: Robin Murphy <robin.murphy@arm.com>
2101 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2103 F: drivers/iommu/arm-smmu.c
2104 F: drivers/iommu/arm-smmu-v3.c
2105 F: drivers/iommu/io-pgtable-arm.c
2106 F: drivers/iommu/io-pgtable-arm-v7s.c
2108 ARM64 PORT (AARCH64 ARCHITECTURE)
2109 M: Catalin Marinas <catalin.marinas@arm.com>
2110 M: Will Deacon <will.deacon@arm.com>
2111 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2112 T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2115 F: Documentation/arm64/
2117 AS3645A LED FLASH CONTROLLER DRIVER
2118 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2119 L: linux-media@vger.kernel.org
2120 T: git git://linuxtv.org/media_tree.git
2122 F: drivers/media/i2c/as3645a.c
2123 F: include/media/i2c/as3645a.h
2125 ASAHI KASEI AK8974 DRIVER
2126 M: Linus Walleij <linus.walleij@linaro.org>
2127 L: linux-iio@vger.kernel.org
2128 W: http://www.akm.com/
2130 F: drivers/iio/magnetometer/ak8974.c
2132 ASC7621 HARDWARE MONITOR DRIVER
2133 M: George Joseph <george.joseph@fairview5.com>
2134 L: linux-hwmon@vger.kernel.org
2136 F: Documentation/hwmon/asc7621
2137 F: drivers/hwmon/asc7621.c
2139 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2140 M: Corentin Chary <corentin.chary@gmail.com>
2141 L: acpi4asus-user@lists.sourceforge.net
2142 L: platform-driver-x86@vger.kernel.org
2143 W: http://acpi4asus.sf.net
2145 F: drivers/platform/x86/asus*.c
2146 F: drivers/platform/x86/eeepc*.c
2148 ASUS WIRELESS RADIO CONTROL DRIVER
2149 M: João Paulo Rechi Vita <jprvita@gmail.com>
2150 L: platform-driver-x86@vger.kernel.org
2152 F: drivers/platform/x86/asus-wireless.c
2155 M: David Howells <dhowells@redhat.com>
2156 L: keyrings@vger.kernel.org
2158 F: Documentation/crypto/asymmetric-keys.txt
2159 F: include/linux/verification.h
2160 F: include/crypto/public_key.h
2161 F: include/crypto/pkcs7.h
2162 F: crypto/asymmetric_keys/
2164 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2165 R: Dan Williams <dan.j.williams@intel.com>
2166 W: http://sourceforge.net/projects/xscaleiop
2168 F: Documentation/crypto/async-tx-api.txt
2171 F: include/linux/dmaengine.h
2172 F: include/linux/async_tx.h
2175 M: Wolfram Sang <wsa@the-dreams.de>
2176 L: linux-i2c@vger.kernel.org
2178 F: drivers/misc/eeprom/at24.c
2179 F: include/linux/platform_data/at24.h
2181 ATA OVER ETHERNET (AOE) DRIVER
2182 M: "Ed L. Cashin" <ed.cashin@acm.org>
2183 W: http://www.openaoe.org/
2185 F: Documentation/aoe/
2186 F: drivers/block/aoe/
2188 ATHEROS 71XX/9XXX GPIO DRIVER
2189 M: Alban Bedel <albeu@free.fr>
2190 W: https://github.com/AlbanBedel/linux
2191 T: git git://github.com/AlbanBedel/linux
2193 F: drivers/gpio/gpio-ath79.c
2194 F: Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2196 ATHEROS ATH GENERIC UTILITIES
2197 M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
2198 L: linux-wireless@vger.kernel.org
2200 F: drivers/net/wireless/ath/*
2202 ATHEROS ATH5K WIRELESS DRIVER
2203 M: Jiri Slaby <jirislaby@gmail.com>
2204 M: Nick Kossifidis <mickflemm@gmail.com>
2205 M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
2206 L: linux-wireless@vger.kernel.org
2207 W: http://wireless.kernel.org/en/users/Drivers/ath5k
2209 F: drivers/net/wireless/ath/ath5k/
2211 ATHEROS ATH6KL WIRELESS DRIVER
2212 M: Kalle Valo <kvalo@qca.qualcomm.com>
2213 L: linux-wireless@vger.kernel.org
2214 W: http://wireless.kernel.org/en/users/Drivers/ath6kl
2215 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2217 F: drivers/net/wireless/ath/ath6kl/
2220 M: Ville Syrjala <syrjala@sci.fi>
2222 F: drivers/input/misc/ati_remote2.c
2224 ATK0110 HWMON DRIVER
2225 M: Luca Tettamanti <kronos.it@gmail.com>
2226 L: linux-hwmon@vger.kernel.org
2228 F: drivers/hwmon/asus_atk0110.c
2230 ATLX ETHERNET DRIVERS
2231 M: Jay Cliburn <jcliburn@gmail.com>
2232 M: Chris Snook <chris.snook@gmail.com>
2233 L: netdev@vger.kernel.org
2234 W: http://sourceforge.net/projects/atl1
2235 W: http://atl1.sourceforge.net
2237 F: drivers/net/ethernet/atheros/
2240 M: Chas Williams <3chas3@gmail.com>
2241 L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
2242 L: netdev@vger.kernel.org
2243 W: http://linux-atm.sourceforge.net
2246 F: include/linux/atm*
2247 F: include/uapi/linux/atm*
2249 ATMEL AT91 / AT32 MCI DRIVER
2250 M: Ludovic Desroches <ludovic.desroches@microchip.com>
2252 F: drivers/mmc/host/atmel-mci.c
2254 ATMEL AT91 SAMA5D2-Compatible Shutdown Controller
2255 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2257 F: drivers/power/reset/at91-sama5d2_shdwc.c
2259 ATMEL SAMA5D2 ADC DRIVER
2260 M: Ludovic Desroches <ludovic.desroches@microchip.com>
2261 L: linux-iio@vger.kernel.org
2263 F: drivers/iio/adc/at91-sama5d2_adc.c
2265 ATMEL Audio ALSA driver
2266 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2267 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2272 M: Ludovic Desroches <ludovic.desroches@microchip.com>
2273 L: linux-arm-kernel@lists.infradead.org
2274 L: dmaengine@vger.kernel.org
2276 F: drivers/dma/at_xdmac.c
2279 M: Ludovic Desroches <ludovic.desroches@microchip.com>
2280 L: linux-i2c@vger.kernel.org
2282 F: drivers/i2c/busses/i2c-at91.c
2285 M: Ludovic Desroches <ludovic.desroches@microchip.com>
2286 L: linux-media@vger.kernel.org
2288 F: drivers/media/platform/atmel/atmel-isi.c
2289 F: include/media/atmel-isi.h
2292 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2293 L: linux-fbdev@vger.kernel.org
2295 F: drivers/video/fbdev/atmel_lcdfb.c
2296 F: include/video/atmel_lcdc.h
2298 ATMEL MACB ETHERNET DRIVER
2299 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2301 F: drivers/net/ethernet/cadence/
2304 M: Wenyou Yang <wenyou.yang@atmel.com>
2305 M: Josh Wu <rainyfeeling@outlook.com>
2306 L: linux-mtd@lists.infradead.org
2308 F: drivers/mtd/nand/atmel/*
2311 M: Ludovic Desroches <ludovic.desroches@microchip.com>
2312 L: linux-mmc@vger.kernel.org
2314 F: drivers/mmc/host/sdhci-of-at91.c
2317 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2319 F: drivers/spi/spi-atmel.*
2322 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2323 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2325 F: drivers/misc/atmel-ssc.c
2326 F: include/linux/atmel-ssc.h
2328 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
2329 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2330 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2332 F: drivers/misc/atmel_tclib.c
2333 F: drivers/clocksource/tcb_clksrc.c
2335 ATMEL USBA UDC DRIVER
2336 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2337 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2339 F: drivers/usb/gadget/udc/atmel_usba_udc.*
2341 ATMEL WIRELESS DRIVER
2342 M: Simon Kelley <simon@thekelleys.org.uk>
2343 L: linux-wireless@vger.kernel.org
2344 W: http://www.thekelleys.org.uk/atmel
2345 W: http://atmelwlandriver.sourceforge.net/
2347 F: drivers/net/wireless/atmel/atmel*
2349 ATMEL MAXTOUCH DRIVER
2350 M: Nick Dyer <nick@shmanahar.org>
2351 T: git git://github.com/ndyer/linux.git
2353 F: Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2354 F: drivers/input/touchscreen/atmel_mxt_ts.c
2355 F: include/linux/platform_data/atmel_mxt_ts.h
2357 ATOMIC INFRASTRUCTURE
2358 M: Will Deacon <will.deacon@arm.com>
2359 M: Peter Zijlstra <peterz@infradead.org>
2360 R: Boqun Feng <boqun.feng@gmail.com>
2361 L: linux-kernel@vger.kernel.org
2363 F: arch/*/include/asm/atomic*.h
2364 F: include/*/atomic*.h
2366 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2367 M: Bradley Grove <linuxdrivers@attotech.com>
2368 L: linux-scsi@vger.kernel.org
2369 W: http://www.attotech.com
2371 F: drivers/scsi/esas2r
2373 ATUSB IEEE 802.15.4 RADIO DRIVER
2374 M: Stefan Schmidt <stefan@osg.samsung.com>
2375 L: linux-wpan@vger.kernel.org
2377 F: drivers/net/ieee802154/atusb.c
2378 F: drivers/net/ieee802154/atusb.h
2379 F: drivers/net/ieee802154/at86rf230.h
2382 M: Paul Moore <paul@paul-moore.com>
2383 M: Eric Paris <eparis@redhat.com>
2384 L: linux-audit@redhat.com (moderated for non-subscribers)
2385 W: http://people.redhat.com/sgrubb/audit/
2386 T: git git://git.infradead.org/users/pcmoore/audit
2388 F: include/linux/audit.h
2389 F: include/uapi/linux/audit.h
2392 AUXILIARY DISPLAY DRIVERS
2393 M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2394 W: http://miguelojeda.es/auxdisplay.htm
2395 W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2397 F: drivers/auxdisplay/
2398 F: include/linux/cfag12864b.h
2401 M: Ralf Baechle <ralf@linux-mips.org>
2402 L: linux-hams@vger.kernel.org
2403 W: http://www.linux-ax25.org/
2405 F: include/uapi/linux/ax25.h
2406 F: include/net/ax25.h
2409 AXENTIA ASOC DRIVERS
2410 M: Peter Rosin <peda@axentia.se>
2411 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2413 F: Documentation/devicetree/bindings/sound/axentia,*
2414 F: sound/soc/atmel/tse850-pcm5142.c
2417 M: Peter Rosin <peda@axentia.se>
2418 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2420 F: Documentation/devicetree/bindings/arm/axentia.txt
2421 F: arch/arm/boot/dts/at91-linea.dtsi
2422 F: arch/arm/boot/dts/at91-tse850-3.dts
2425 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
2426 M: Mauro Carvalho Chehab <mchehab@kernel.org>
2427 L: linux-media@vger.kernel.org
2428 W: https://linuxtv.org
2429 T: git git://linuxtv.org/media_tree.git
2431 F: drivers/media/usb/dvb-usb-v2/az6007.c
2433 AZTECH FM RADIO RECEIVER DRIVER
2434 M: Hans Verkuil <hverkuil@xs4all.nl>
2435 L: linux-media@vger.kernel.org
2436 T: git git://linuxtv.org/media_tree.git
2437 W: https://linuxtv.org
2439 F: drivers/media/radio/radio-aztech*
2442 L: linux-wireless@vger.kernel.org
2443 L: b43-dev@lists.infradead.org
2444 W: http://wireless.kernel.org/en/users/Drivers/b43
2446 F: drivers/net/wireless/broadcom/b43/
2448 B43LEGACY WIRELESS DRIVER
2449 M: Larry Finger <Larry.Finger@lwfinger.net>
2450 L: linux-wireless@vger.kernel.org
2451 L: b43-dev@lists.infradead.org
2452 W: http://wireless.kernel.org/en/users/Drivers/b43
2454 F: drivers/net/wireless/broadcom/b43legacy/
2456 BACKLIGHT CLASS/SUBSYSTEM
2457 M: Lee Jones <lee.jones@linaro.org>
2458 M: Daniel Thompson <daniel.thompson@linaro.org>
2459 M: Jingoo Han <jingoohan1@gmail.com>
2460 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
2462 F: drivers/video/backlight/
2463 F: include/linux/backlight.h
2464 F: include/linux/pwm_backlight.h
2465 F: Documentation/devicetree/bindings/leds/backlight
2468 M: Marek Lindner <mareklindner@neomailbox.ch>
2469 M: Simon Wunderlich <sw@simonwunderlich.de>
2470 M: Antonio Quartulli <a@unstable.cc>
2471 L: b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
2472 W: https://www.open-mesh.org/
2473 Q: https://patchwork.open-mesh.org/project/batman/list/
2475 F: Documentation/ABI/testing/sysfs-class-net-batman-adv
2476 F: Documentation/ABI/testing/sysfs-class-net-mesh
2477 F: Documentation/networking/batman-adv.txt
2478 F: include/uapi/linux/batman_adv.h
2481 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2482 M: Thomas Sailer <t.sailer@alumni.ethz.ch>
2483 L: linux-hams@vger.kernel.org
2484 W: http://www.baycom.org/~tom/ham/ham.html
2486 F: drivers/net/hamradio/baycom*
2488 BCACHE (BLOCK LAYER CACHE)
2489 M: Kent Overstreet <kent.overstreet@gmail.com>
2490 L: linux-bcache@vger.kernel.org
2491 W: http://bcache.evilpiepirate.org
2493 F: drivers/md/bcache/
2495 BDISP ST MEDIA DRIVER
2496 M: Fabien Dessenne <fabien.dessenne@st.com>
2497 L: linux-media@vger.kernel.org
2498 T: git git://linuxtv.org/media_tree.git
2499 W: https://linuxtv.org
2501 F: drivers/media/platform/sti/bdisp
2503 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2504 M: Dariusz Marcinkiewicz <reksio@newterm.pl>
2505 L: netdev@vger.kernel.org
2507 F: drivers/net/ethernet/ec_bhf.c
2510 M: Luis de Bethencourt <luisbg@kernel.org>
2511 M: Salah Triki <salah.triki@gmail.com>
2513 T: git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
2514 F: Documentation/filesystems/befs.txt
2518 M: Paolo Valente <paolo.valente@linaro.org>
2519 M: Jens Axboe <axboe@kernel.dk>
2520 L: linux-block@vger.kernel.org
2523 F: Documentation/block/bfq-iosched.txt
2526 M: "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
2528 F: Documentation/filesystems/bfs.txt
2530 F: include/uapi/linux/bfs_fs.h
2532 BLACKFIN ARCHITECTURE
2533 M: Steven Miao <realmz6@gmail.com>
2534 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2535 T: git git://git.code.sf.net/p/adi-linux/code
2536 W: http://blackfin.uclinux.org
2540 BLACKFIN EMAC DRIVER
2541 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2542 W: http://blackfin.uclinux.org
2544 F: drivers/net/ethernet/adi/
2547 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2548 W: http://blackfin.uclinux.org
2550 F: drivers/rtc/rtc-bfin.c
2553 M: Sonic Zhang <sonic.zhang@analog.com>
2554 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2555 W: http://blackfin.uclinux.org
2557 F: drivers/mmc/host/bfin_sdh.c
2559 BLACKFIN SERIAL DRIVER
2560 M: Sonic Zhang <sonic.zhang@analog.com>
2561 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2562 W: http://blackfin.uclinux.org
2564 F: drivers/tty/serial/bfin_uart.c
2566 BLACKFIN WATCHDOG DRIVER
2567 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2568 W: http://blackfin.uclinux.org
2570 F: drivers/watchdog/bfin_wdt.c
2572 BLACKFIN I2C TWI DRIVER
2573 M: Sonic Zhang <sonic.zhang@analog.com>
2574 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2575 W: http://blackfin.uclinux.org/
2577 F: drivers/i2c/busses/i2c-bfin-twi.c
2579 BLACKFIN MEDIA DRIVER
2580 M: Scott Jiang <scott.jiang.linux@gmail.com>
2581 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2582 W: http://blackfin.uclinux.org/
2584 F: drivers/media/platform/blackfin/
2585 F: drivers/media/i2c/adv7183*
2586 F: drivers/media/i2c/vs6624*
2588 BLINKM RGB LED DRIVER
2589 M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
2591 F: drivers/leds/leds-blinkm.c
2594 M: Jens Axboe <axboe@kernel.dk>
2595 L: linux-block@vger.kernel.org
2596 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2599 F: kernel/trace/blktrace.c
2603 M: Joern Engel <joern@lazybastard.org>
2604 L: linux-mtd@lists.infradead.org
2606 F: drivers/mtd/devices/block2mtd.c
2609 M: Marcel Holtmann <marcel@holtmann.org>
2610 M: Gustavo Padovan <gustavo@padovan.org>
2611 M: Johan Hedberg <johan.hedberg@gmail.com>
2612 L: linux-bluetooth@vger.kernel.org
2613 W: http://www.bluez.org/
2614 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2615 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2617 F: drivers/bluetooth/
2620 M: Marcel Holtmann <marcel@holtmann.org>
2621 M: Gustavo Padovan <gustavo@padovan.org>
2622 M: Johan Hedberg <johan.hedberg@gmail.com>
2623 L: linux-bluetooth@vger.kernel.org
2624 W: http://www.bluez.org/
2625 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2626 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2629 F: include/net/bluetooth/
2632 M: Christoph Hellwig <hch@lst.de>
2633 M: Marek Szyprowski <m.szyprowski@samsung.com>
2634 R: Robin Murphy <robin.murphy@arm.com>
2635 L: linux-kernel@vger.kernel.org
2636 T: git git://git.infradead.org/users/hch/dma-mapping.git
2637 W: http://git.infradead.org/users/hch/dma-mapping.git
2642 F: drivers/base/dma-mapping.c
2643 F: drivers/base/dma-coherent.c
2644 F: include/linux/dma-mapping.h
2647 M: Jay Vosburgh <j.vosburgh@gmail.com>
2648 M: Veaceslav Falico <vfalico@gmail.com>
2649 M: Andy Gospodarek <andy@greyhouse.net>
2650 L: netdev@vger.kernel.org
2651 W: http://sourceforge.net/projects/bonding/
2653 F: drivers/net/bonding/
2654 F: include/uapi/linux/if_bonding.h
2656 BPF (Safe dynamic programs and tools)
2657 M: Alexei Starovoitov <ast@kernel.org>
2658 M: Daniel Borkmann <daniel@iogearbox.net>
2659 L: netdev@vger.kernel.org
2660 L: linux-kernel@vger.kernel.org
2662 F: arch/x86/net/bpf_jit*
2663 F: Documentation/networking/filter.txt
2664 F: include/linux/bpf*
2665 F: include/linux/filter.h
2666 F: include/uapi/linux/bpf*
2667 F: include/uapi/linux/filter.h
2669 F: kernel/trace/bpf_trace.c
2672 F: net/core/filter.c
2673 F: net/sched/act_bpf.c
2674 F: net/sched/cls_bpf.c
2677 F: tools/testing/selftests/bpf/
2679 BROADCOM B44 10/100 ETHERNET DRIVER
2680 M: Michael Chan <michael.chan@broadcom.com>
2681 L: netdev@vger.kernel.org
2683 F: drivers/net/ethernet/broadcom/b44.*
2685 BROADCOM B53 ETHERNET SWITCH DRIVER
2686 M: Florian Fainelli <f.fainelli@gmail.com>
2687 L: netdev@vger.kernel.org
2688 L: openwrt-devel@lists.openwrt.org (subscribers-only)
2690 F: drivers/net/dsa/b53/*
2691 F: include/linux/platform_data/b53.h
2693 BROADCOM GENET ETHERNET DRIVER
2694 M: Florian Fainelli <f.fainelli@gmail.com>
2695 L: netdev@vger.kernel.org
2697 F: drivers/net/ethernet/broadcom/genet/
2699 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
2700 M: Rasesh Mody <rasesh.mody@cavium.com>
2701 M: Harish Patil <harish.patil@cavium.com>
2702 M: Dept-GELinuxNICDev@cavium.com
2703 L: netdev@vger.kernel.org
2705 F: drivers/net/ethernet/broadcom/bnx2.*
2706 F: drivers/net/ethernet/broadcom/bnx2_*
2708 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
2709 M: Yuval Mintz <Yuval.Mintz@cavium.com>
2710 M: Ariel Elior <ariel.elior@cavium.com>
2711 M: everest-linux-l2@cavium.com
2712 L: netdev@vger.kernel.org
2714 F: drivers/net/ethernet/broadcom/bnx2x/
2716 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
2717 M: Michael Chan <michael.chan@broadcom.com>
2718 L: netdev@vger.kernel.org
2720 F: drivers/net/ethernet/broadcom/bnxt/
2722 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2723 M: Florian Fainelli <f.fainelli@gmail.com>
2724 M: Ray Jui <rjui@broadcom.com>
2725 M: Scott Branden <sbranden@broadcom.com>
2726 M: bcm-kernel-feedback-list@broadcom.com
2727 T: git git://github.com/broadcom/mach-bcm
2733 F: arch/arm/mach-bcm/
2735 BROADCOM BCM2835 ARM ARCHITECTURE
2736 M: Eric Anholt <eric@anholt.net>
2737 M: Stefan Wahren <stefan.wahren@i2se.com>
2738 L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2739 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2740 T: git git://github.com/anholt/linux
2743 F: drivers/staging/vc04_services
2745 BROADCOM BCM47XX MIPS ARCHITECTURE
2746 M: Hauke Mehrtens <hauke@hauke-m.de>
2747 M: Rafał Miłecki <zajec5@gmail.com>
2748 L: linux-mips@linux-mips.org
2750 F: Documentation/devicetree/bindings/mips/brcm/
2751 F: arch/mips/bcm47xx/*
2752 F: arch/mips/include/asm/mach-bcm47xx/*
2754 BROADCOM BCM5301X ARM ARCHITECTURE
2755 M: Hauke Mehrtens <hauke@hauke-m.de>
2756 M: Rafał Miłecki <zajec5@gmail.com>
2757 M: Jon Mason <jonmason@broadcom.com>
2758 M: bcm-kernel-feedback-list@broadcom.com
2759 L: linux-arm-kernel@lists.infradead.org
2761 F: arch/arm/mach-bcm/bcm_5301x.c
2762 F: arch/arm/boot/dts/bcm5301x*.dtsi
2763 F: arch/arm/boot/dts/bcm470*
2764 F: arch/arm/boot/dts/bcm953012*
2766 BROADCOM BCM53573 ARM ARCHITECTURE
2767 M: Rafał Miłecki <rafal@milecki.pl>
2768 L: linux-arm-kernel@lists.infradead.org
2770 F: arch/arm/boot/dts/bcm53573*
2771 F: arch/arm/boot/dts/bcm47189*
2773 BROADCOM BCM63XX ARM ARCHITECTURE
2774 M: Florian Fainelli <f.fainelli@gmail.com>
2775 M: bcm-kernel-feedback-list@broadcom.com
2776 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2777 T: git git://github.com/broadcom/stblinux.git
2781 BROADCOM BCM63XX/BCM33XX UDC DRIVER
2782 M: Kevin Cernekee <cernekee@gmail.com>
2783 L: linux-usb@vger.kernel.org
2785 F: drivers/usb/gadget/udc/bcm63xx_udc.*
2787 BROADCOM BCM7XXX ARM ARCHITECTURE
2788 M: Brian Norris <computersforpeace@gmail.com>
2789 M: Gregory Fong <gregory.0xf0@gmail.com>
2790 M: Florian Fainelli <f.fainelli@gmail.com>
2791 M: bcm-kernel-feedback-list@broadcom.com
2792 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2793 T: git git://github.com/broadcom/stblinux.git
2795 F: arch/arm/mach-bcm/*brcmstb*
2796 F: arch/arm/boot/dts/bcm7*.dts*
2797 F: drivers/bus/brcmstb_gisb.c
2800 BROADCOM BMIPS MIPS ARCHITECTURE
2801 M: Kevin Cernekee <cernekee@gmail.com>
2802 M: Florian Fainelli <f.fainelli@gmail.com>
2803 L: linux-mips@linux-mips.org
2804 T: git git://github.com/broadcom/stblinux.git
2806 F: arch/mips/bmips/*
2807 F: arch/mips/include/asm/mach-bmips/*
2808 F: arch/mips/kernel/*bmips*
2809 F: arch/mips/boot/dts/brcm/bcm*.dts*
2810 F: drivers/irqchip/irq-bcm63*
2811 F: drivers/irqchip/irq-bcm7*
2812 F: drivers/irqchip/irq-brcmstb*
2813 F: include/linux/bcm963xx_nvram.h
2814 F: include/linux/bcm963xx_tag.h
2816 BROADCOM BMIPS CPUFREQ DRIVER
2817 M: Markus Mayer <mmayer@broadcom.com>
2818 M: bcm-kernel-feedback-list@broadcom.com
2819 L: linux-pm@vger.kernel.org
2821 F: drivers/cpufreq/bmips-cpufreq.c
2823 BROADCOM TG3 GIGABIT ETHERNET DRIVER
2824 M: Siva Reddy Kallam <siva.kallam@broadcom.com>
2825 M: Prashant Sreedharan <prashant@broadcom.com>
2826 M: Michael Chan <mchan@broadcom.com>
2827 L: netdev@vger.kernel.org
2829 F: drivers/net/ethernet/broadcom/tg3.*
2831 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2832 M: Arend van Spriel <arend.vanspriel@broadcom.com>
2833 M: Franky Lin <franky.lin@broadcom.com>
2834 M: Hante Meuleman <hante.meuleman@broadcom.com>
2835 M: Chi-Hsien Lin <chi-hsien.lin@cypress.com>
2836 M: Wright Feng <wright.feng@cypress.com>
2837 L: linux-wireless@vger.kernel.org
2838 L: brcm80211-dev-list.pdl@broadcom.com
2839 L: brcm80211-dev-list@cypress.com
2841 F: drivers/net/wireless/broadcom/brcm80211/
2843 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2844 M: QLogic-Storage-Upstream@qlogic.com
2845 L: linux-scsi@vger.kernel.org
2847 F: drivers/scsi/bnx2fc/
2849 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2850 M: QLogic-Storage-Upstream@qlogic.com
2851 L: linux-scsi@vger.kernel.org
2853 F: drivers/scsi/bnx2i/
2855 BROADCOM IPROC ARM ARCHITECTURE
2856 M: Ray Jui <rjui@broadcom.com>
2857 M: Scott Branden <sbranden@broadcom.com>
2858 M: Jon Mason <jonmason@broadcom.com>
2859 M: bcm-kernel-feedback-list@broadcom.com
2860 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2861 T: git git://github.com/broadcom/cygnus-linux.git
2876 F: arch/arm64/boot/dts/broadcom/ns2*
2877 F: drivers/clk/bcm/clk-ns*
2878 F: drivers/pinctrl/bcm/pinctrl-ns*
2880 BROADCOM BRCMSTB GPIO DRIVER
2881 M: Gregory Fong <gregory.0xf0@gmail.com>
2882 L: bcm-kernel-feedback-list@broadcom.com
2884 F: drivers/gpio/gpio-brcmstb.c
2885 F: Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2887 BROADCOM KONA GPIO DRIVER
2888 M: Ray Jui <rjui@broadcom.com>
2889 L: bcm-kernel-feedback-list@broadcom.com
2891 F: drivers/gpio/gpio-bcm-kona.c
2892 F: Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
2894 BROADCOM NVRAM DRIVER
2895 M: Rafał Miłecki <zajec5@gmail.com>
2896 L: linux-mips@linux-mips.org
2898 F: drivers/firmware/broadcom/*
2900 BROADCOM STB NAND FLASH DRIVER
2901 M: Brian Norris <computersforpeace@gmail.com>
2902 M: Kamal Dasu <kdasu.kdev@gmail.com>
2903 L: linux-mtd@lists.infradead.org
2904 L: bcm-kernel-feedback-list@broadcom.com
2906 F: drivers/mtd/nand/brcmnand/
2908 BROADCOM STB AVS CPUFREQ DRIVER
2909 M: Markus Mayer <mmayer@broadcom.com>
2910 M: bcm-kernel-feedback-list@broadcom.com
2911 L: linux-pm@vger.kernel.org
2913 F: Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
2914 F: drivers/cpufreq/brcmstb*
2916 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2917 M: Rafał Miłecki <zajec5@gmail.com>
2918 L: linux-wireless@vger.kernel.org
2921 F: include/linux/bcma/
2923 BROADCOM SYSTEMPORT ETHERNET DRIVER
2924 M: Florian Fainelli <f.fainelli@gmail.com>
2925 L: netdev@vger.kernel.org
2927 F: drivers/net/ethernet/broadcom/bcmsysport.*
2929 BROADCOM NETXTREME-E ROCE DRIVER
2930 M: Selvin Xavier <selvin.xavier@broadcom.com>
2931 M: Devesh Sharma <devesh.sharma@broadcom.com>
2932 M: Somnath Kotur <somnath.kotur@broadcom.com>
2933 M: Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
2934 L: linux-rdma@vger.kernel.org
2935 W: http://www.broadcom.com
2937 F: drivers/infiniband/hw/bnxt_re/
2938 F: include/uapi/rdma/bnxt_re-abi.h
2940 BROCADE BFA FC SCSI DRIVER
2941 M: Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2942 M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
2943 L: linux-scsi@vger.kernel.org
2945 F: drivers/scsi/bfa/
2947 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
2948 M: Rasesh Mody <rasesh.mody@cavium.com>
2949 M: Sudarsana Kalluru <sudarsana.kalluru@cavium.com>
2950 M: Dept-GELinuxNICDev@cavium.com
2951 L: netdev@vger.kernel.org
2953 F: drivers/net/ethernet/brocade/bna/
2955 BSG (block layer generic sg v4 driver)
2956 M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
2957 L: linux-scsi@vger.kernel.org
2960 F: include/linux/bsg.h
2961 F: include/uapi/linux/bsg.h
2964 M: Clemens Ladisch <clemens@ladisch.de>
2965 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2966 T: git git://git.alsa-project.org/alsa-kernel.git
2968 F: Documentation/sound/alsa/Bt87x.txt
2969 F: sound/pci/bt87x.c
2972 M: Michael Buesch <m@bues.ch>
2973 W: http://bu3sch.de/btgpio.php
2975 F: drivers/gpio/gpio-bt8xx.c
2978 M: Chris Mason <clm@fb.com>
2979 M: Josef Bacik <jbacik@fb.com>
2980 M: David Sterba <dsterba@suse.com>
2981 L: linux-btrfs@vger.kernel.org
2982 W: http://btrfs.wiki.kernel.org/
2983 Q: http://patchwork.kernel.org/project/linux-btrfs/list/
2984 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
2986 F: Documentation/filesystems/btrfs.txt
2988 F: include/linux/btrfs*
2989 F: include/uapi/linux/btrfs*
2991 BTTV VIDEO4LINUX DRIVER
2992 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
2993 M: Mauro Carvalho Chehab <mchehab@kernel.org>
2994 L: linux-media@vger.kernel.org
2995 W: https://linuxtv.org
2996 T: git git://linuxtv.org/media_tree.git
2998 F: Documentation/media/v4l-drivers/bttv*
2999 F: drivers/media/pci/bt8xx/bttv*
3001 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3002 M: Chanwoo Choi <cw00.choi@samsung.com>
3003 L: linux-pm@vger.kernel.org
3004 L: linux-samsung-soc@vger.kernel.org
3005 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3007 F: drivers/devfreq/exynos-bus.c
3008 F: Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3010 BUSLOGIC SCSI DRIVER
3011 M: Khalid Aziz <khalid@gonehiking.org>
3012 L: linux-scsi@vger.kernel.org
3014 F: drivers/scsi/BusLogic.*
3015 F: drivers/scsi/FlashPoint.*
3017 C-MEDIA CMI8788 DRIVER
3018 M: Clemens Ladisch <clemens@ladisch.de>
3019 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3020 T: git git://git.alsa-project.org/alsa-kernel.git
3022 F: sound/pci/oxygen/
3025 M: Mark Salter <msalter@redhat.com>
3026 M: Aurelien Jacquiot <jacquiot.aurelien@gmail.com>
3027 L: linux-c6x-dev@linux-c6x.org
3028 W: http://www.linux-c6x.org/wiki/index.php/Main_Page
3032 CA8210 IEEE-802.15.4 RADIO DRIVER
3033 M: Harry Morris <h.morris@cascoda.com>
3034 M: linuxdev@cascoda.com
3035 L: linux-wpan@vger.kernel.org
3036 W: https://github.com/Cascoda/ca8210-linux.git
3038 F: drivers/net/ieee802154/ca8210.c
3039 F: Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3041 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3042 M: David Howells <dhowells@redhat.com>
3043 L: linux-cachefs@redhat.com (moderated for non-subscribers)
3045 F: Documentation/filesystems/caching/cachefiles.txt
3048 CADET FM/AM RADIO RECEIVER DRIVER
3049 M: Hans Verkuil <hverkuil@xs4all.nl>
3050 L: linux-media@vger.kernel.org
3051 T: git git://linuxtv.org/media_tree.git
3052 W: https://linuxtv.org
3054 F: drivers/media/radio/radio-cadet*
3056 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3057 M: Jonathan Corbet <corbet@lwn.net>
3058 L: linux-media@vger.kernel.org
3059 T: git git://linuxtv.org/media_tree.git
3061 F: Documentation/media/v4l-drivers/cafe_ccic*
3062 F: drivers/media/platform/marvell-ccic/
3065 M: Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
3066 L: netdev@vger.kernel.org
3068 F: Documentation/networking/caif/
3069 F: drivers/net/caif/
3070 F: include/uapi/linux/caif/
3071 F: include/net/caif/
3074 CALGARY x86-64 IOMMU
3075 M: Muli Ben-Yehuda <mulix@mulix.org>
3076 M: Jon Mason <jdmason@kudzu.us>
3077 L: iommu@lists.linux-foundation.org
3079 F: arch/x86/kernel/pci-calgary_64.c
3080 F: arch/x86/kernel/tce_64.c
3081 F: arch/x86/include/asm/calgary.h
3082 F: arch/x86/include/asm/tce.h
3085 M: Oliver Hartkopp <socketcan@hartkopp.net>
3086 M: Marc Kleine-Budde <mkl@pengutronix.de>
3087 L: linux-can@vger.kernel.org
3088 W: https://github.com/linux-can
3089 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3090 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3092 F: Documentation/networking/can.txt
3094 F: include/linux/can/core.h
3095 F: include/uapi/linux/can.h
3096 F: include/uapi/linux/can/bcm.h
3097 F: include/uapi/linux/can/raw.h
3098 F: include/uapi/linux/can/gw.h
3101 M: Wolfgang Grandegger <wg@grandegger.com>
3102 M: Marc Kleine-Budde <mkl@pengutronix.de>
3103 L: linux-can@vger.kernel.org
3104 W: https://github.com/linux-can
3105 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3106 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3108 F: Documentation/devicetree/bindings/net/can/
3110 F: include/linux/can/dev.h
3111 F: include/linux/can/platform/
3112 F: include/uapi/linux/can/error.h
3113 F: include/uapi/linux/can/netlink.h
3116 M: Serge Hallyn <serge@hallyn.com>
3117 L: linux-security-module@vger.kernel.org
3119 F: include/linux/capability.h
3120 F: include/uapi/linux/capability.h
3121 F: security/commoncap.c
3122 F: kernel/capability.c
3124 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3125 M: Kevin Tsai <ktsai@capellamicro.com>
3127 F: drivers/iio/light/cm*
3129 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
3130 M: Christian Lamparter <chunkeey@googlemail.com>
3131 L: linux-wireless@vger.kernel.org
3132 W: http://wireless.kernel.org/en/users/Drivers/carl9170
3134 F: drivers/net/wireless/ath/carl9170/
3136 CAVIUM THUNDERX2 ARM64 SOC
3137 M: Jayachandran C <jnair@caviumnetworks.com>
3138 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3140 F: arch/arm64/boot/dts/cavium/thunder2-99xx*
3141 F: Documentation/devicetree/bindings/arm/cavium-thunder2.txt
3144 M: Jan Glauber <jglauber@cavium.com>
3145 M: David Daney <david.daney@cavium.com>
3146 W: http://www.cavium.com
3148 F: drivers/i2c/busses/i2c-octeon*
3149 F: drivers/i2c/busses/i2c-thunderx*
3152 M: Jan Glauber <jglauber@cavium.com>
3153 M: David Daney <david.daney@cavium.com>
3154 M: Steven J. Hill <Steven.Hill@cavium.com>
3155 W: http://www.cavium.com
3157 F: drivers/mmc/host/cavium*
3159 CAVIUM LIQUIDIO NETWORK DRIVER
3160 M: Derek Chickles <derek.chickles@caviumnetworks.com>
3161 M: Satanand Burla <satananda.burla@caviumnetworks.com>
3162 M: Felix Manlunas <felix.manlunas@caviumnetworks.com>
3163 M: Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
3164 L: netdev@vger.kernel.org
3165 W: http://www.cavium.com
3167 F: drivers/net/ethernet/cavium/liquidio/
3169 CAVIUM OCTEON-TX CRYPTO DRIVER
3170 M: George Cherian <george.cherian@cavium.com>
3171 L: linux-crypto@vger.kernel.org
3172 W: http://www.cavium.com
3174 F: drivers/crypto/cavium/cpt/
3176 CC2520 IEEE-802.15.4 RADIO DRIVER
3177 M: Varka Bhadram <varkabhadram@gmail.com>
3178 L: linux-wpan@vger.kernel.org
3180 F: drivers/net/ieee802154/cc2520.c
3181 F: include/linux/spi/cc2520.h
3182 F: Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
3184 CCREE ARM TRUSTZONE CRYPTOCELL 700 REE DRIVER
3185 M: Gilad Ben-Yossef <gilad@benyossef.com>
3186 L: linux-crypto@vger.kernel.org
3187 L: driverdev-devel@linuxdriverproject.org
3189 F: drivers/staging/ccree/
3190 W: https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
3193 M: Hans Verkuil <hans.verkuil@cisco.com>
3194 L: linux-media@vger.kernel.org
3195 T: git git://linuxtv.org/media_tree.git
3196 W: http://linuxtv.org
3198 F: Documentation/media/kapi/cec-core.rst
3199 F: Documentation/media/uapi/cec
3200 F: drivers/media/cec/
3201 F: drivers/media/rc/keymaps/rc-cec.c
3202 F: include/media/cec.h
3203 F: include/media/cec-notifier.h
3204 F: include/uapi/linux/cec.h
3205 F: include/uapi/linux/cec-funcs.h
3206 F: Documentation/devicetree/bindings/media/cec.txt
3208 CELL BROADBAND ENGINE ARCHITECTURE
3209 M: Arnd Bergmann <arnd@arndb.de>
3210 L: linuxppc-dev@lists.ozlabs.org
3211 W: http://www.ibm.com/developerworks/power/cell/
3213 F: arch/powerpc/include/asm/cell*.h
3214 F: arch/powerpc/include/asm/spu*.h
3215 F: arch/powerpc/include/uapi/asm/spu*.h
3216 F: arch/powerpc/oprofile/*cell*
3217 F: arch/powerpc/platforms/cell/
3219 CEPH COMMON CODE (LIBCEPH)
3220 M: Ilya Dryomov <idryomov@gmail.com>
3221 M: "Yan, Zheng" <zyan@redhat.com>
3222 M: Sage Weil <sage@redhat.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
3229 F: include/linux/ceph/
3230 F: include/linux/crush/
3232 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
3233 M: "Yan, Zheng" <zyan@redhat.com>
3234 M: Sage Weil <sage@redhat.com>
3235 M: Ilya Dryomov <idryomov@gmail.com>
3236 L: ceph-devel@vger.kernel.org
3238 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3239 T: git git://github.com/ceph/ceph-client.git
3241 F: Documentation/filesystems/ceph.txt
3244 CERTIFICATE HANDLING:
3245 M: David Howells <dhowells@redhat.com>
3246 M: David Woodhouse <dwmw2@infradead.org>
3247 L: keyrings@vger.kernel.org
3249 F: Documentation/module-signing.txt
3251 F: scripts/sign-file.c
3252 F: scripts/extract-cert.c
3254 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
3255 L: linux-usb@vger.kernel.org
3257 F: Documentation/usb/WUSB-Design-overview.txt
3258 F: Documentation/usb/wusb-cbaf
3259 F: drivers/usb/host/hwa-hc.c
3260 F: drivers/usb/host/whci/
3261 F: drivers/usb/wusbcore/
3262 F: include/linux/usb/wusb*
3264 CFAG12864B LCD DRIVER
3265 M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3266 W: http://miguelojeda.es/auxdisplay.htm
3267 W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
3269 F: drivers/auxdisplay/cfag12864b.c
3270 F: include/linux/cfag12864b.h
3272 CFAG12864BFB LCD FRAMEBUFFER DRIVER
3273 M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3274 W: http://miguelojeda.es/auxdisplay.htm
3275 W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
3277 F: drivers/auxdisplay/cfag12864bfb.c
3278 F: include/linux/cfag12864b.h
3280 CFG80211 and NL80211
3281 M: Johannes Berg <johannes@sipsolutions.net>
3282 L: linux-wireless@vger.kernel.org
3283 W: http://wireless.kernel.org/
3284 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
3285 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
3287 F: include/uapi/linux/nl80211.h
3288 F: include/net/cfg80211.h
3290 X: net/wireless/wext*
3292 CHAR and MISC DRIVERS
3293 M: Arnd Bergmann <arnd@arndb.de>
3294 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3295 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
3299 F: include/linux/miscdevice.h
3302 M: Andy Whitcroft <apw@canonical.com>
3303 M: Joe Perches <joe@perches.com>
3305 F: scripts/checkpatch.pl
3307 CHINESE DOCUMENTATION
3308 M: Harry Wei <harryxiyou@gmail.com>
3309 L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
3310 L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
3312 F: Documentation/translations/zh_CN/
3314 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
3315 M: Peter Chen <Peter.Chen@nxp.com>
3316 T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
3317 L: linux-usb@vger.kernel.org
3319 F: drivers/usb/chipidea/
3321 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
3322 M: Hans de Goede <hdegoede@redhat.com>
3323 L: linux-input@vger.kernel.org
3325 F: Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
3326 F: drivers/input/touchscreen/chipone_icn8318.c
3328 CHROME HARDWARE PLATFORM SUPPORT
3329 M: Benson Leung <bleung@chromium.org>
3330 M: Olof Johansson <olof@lixom.net>
3332 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bleung/chrome-platform.git
3333 F: drivers/platform/chrome/
3335 CIRRUS LOGIC EP93XX ETHERNET DRIVER
3336 M: Hartley Sweeten <hsweeten@visionengravers.com>
3337 L: netdev@vger.kernel.org
3339 F: drivers/net/ethernet/cirrus/ep93xx_eth.c
3341 CIRRUS LOGIC AUDIO CODEC DRIVERS
3342 M: Brian Austin <brian.austin@cirrus.com>
3343 M: Paul Handrigan <Paul.Handrigan@cirrus.com>
3344 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3346 F: sound/soc/codecs/cs*
3348 CISCO FCOE HBA DRIVER
3349 M: Satish Kharat <satishkh@cisco.com>
3350 M: Sesidhar Baddela <sebaddel@cisco.com>
3351 M: Karan Tilak Kumar <kartilak@cisco.com>
3352 L: linux-scsi@vger.kernel.org
3354 F: drivers/scsi/fnic/
3356 CISCO SCSI HBA DRIVER
3357 M: Karan Tilak Kumar <kartilak@cisco.com>
3358 M: Sesidhar Baddela <sebaddel@cisco.com>
3359 L: linux-scsi@vger.kernel.org
3361 F: drivers/scsi/snic/
3363 CISCO VIC ETHERNET NIC DRIVER
3364 M: Christian Benvenuti <benve@cisco.com>
3365 M: Govindarajulu Varadarajan <_govind@gmx.com>
3366 M: Neel Patel <neepatel@cisco.com>
3368 F: drivers/net/ethernet/cisco/enic/
3370 CISCO VIC LOW LATENCY NIC DRIVER
3371 M: Christian Benvenuti <benve@cisco.com>
3372 M: Dave Goodell <dgoodell@cisco.com>
3374 F: drivers/infiniband/hw/usnic/
3377 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3378 L: linux-kernel@vger.kernel.org
3381 F: include/linux/cleancache.h
3384 M: Russell King <linux@armlinux.org.uk>
3385 L: linux-clk@vger.kernel.org
3387 F: include/linux/clk.h
3389 CLOCKSOURCE, CLOCKEVENT DRIVERS
3390 M: Daniel Lezcano <daniel.lezcano@linaro.org>
3391 M: Thomas Gleixner <tglx@linutronix.de>
3392 L: linux-kernel@vger.kernel.org
3393 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
3395 F: drivers/clocksource
3398 M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
3399 M: Daniel Oliveira Nascimento <don@syst.com.br>
3400 L: platform-driver-x86@vger.kernel.org
3402 F: drivers/platform/x86/classmate-laptop.c
3405 M: Hans Verkuil <hans.verkuil@cisco.com>
3406 L: linux-media@vger.kernel.org
3407 T: git git://linuxtv.org/media_tree.git
3408 W: https://linuxtv.org
3410 F: drivers/media/pci/cobalt/
3412 COCCINELLE/Semantic Patches (SmPL)
3413 M: Julia Lawall <Julia.Lawall@lip6.fr>
3414 M: Gilles Muller <Gilles.Muller@lip6.fr>
3415 M: Nicolas Palix <nicolas.palix@imag.fr>
3416 M: Michal Marek <mmarek@suse.com>
3417 L: cocci@systeme.lip6.fr (moderated for non-subscribers)
3418 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
3419 W: http://coccinelle.lip6.fr/
3421 F: Documentation/dev-tools/coccinelle.rst
3422 F: scripts/coccinelle/
3423 F: scripts/coccicheck
3426 M: Jan Harkes <jaharkes@cs.cmu.edu>
3428 L: codalist@coda.cs.cmu.edu
3429 W: http://www.coda.cs.cmu.edu/
3431 F: Documentation/filesystems/coda.txt
3433 F: include/linux/coda*.h
3434 F: include/uapi/linux/coda*.h
3436 CODA V4L2 MEM2MEM DRIVER
3437 M: Philipp Zabel <p.zabel@pengutronix.de>
3438 L: linux-media@vger.kernel.org
3440 F: Documentation/devicetree/bindings/media/coda.txt
3441 F: drivers/media/platform/coda/
3443 COMMON CLK FRAMEWORK
3444 M: Michael Turquette <mturquette@baylibre.com>
3445 M: Stephen Boyd <sboyd@codeaurora.org>
3446 L: linux-clk@vger.kernel.org
3447 Q: http://patchwork.kernel.org/project/linux-clk/list/
3448 T: git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
3450 F: Documentation/devicetree/bindings/clock/
3452 X: drivers/clk/clkdev.c
3453 F: include/linux/clk-pr*
3454 F: include/linux/clk/
3456 COMMON INTERNET FILE SYSTEM (CIFS)
3457 M: Steve French <sfrench@samba.org>
3458 L: linux-cifs@vger.kernel.org
3459 L: samba-technical@lists.samba.org (moderated for non-subscribers)
3460 W: http://linux-cifs.samba.org/
3461 T: git git://git.samba.org/sfrench/cifs-2.6.git
3463 F: Documentation/filesystems/cifs/
3466 COMPACTPCI HOTPLUG CORE
3467 M: Scott Murray <scott@spiteful.org>
3468 L: linux-pci@vger.kernel.org
3470 F: drivers/pci/hotplug/cpci_hotplug*
3472 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
3473 M: Scott Murray <scott@spiteful.org>
3474 L: linux-pci@vger.kernel.org
3476 F: drivers/pci/hotplug/cpcihp_zt5550.*
3478 COMPACTPCI HOTPLUG GENERIC DRIVER
3479 M: Scott Murray <scott@spiteful.org>
3480 L: linux-pci@vger.kernel.org
3482 F: drivers/pci/hotplug/cpcihp_generic.c
3484 COMPAL LAPTOP SUPPORT
3485 M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
3486 L: platform-driver-x86@vger.kernel.org
3488 F: drivers/platform/x86/compal-laptop.c
3490 CONEXANT ACCESSRUNNER USB DRIVER
3491 L: accessrunner-general@lists.sourceforge.net
3492 W: http://accessrunner.sourceforge.net/
3494 F: drivers/usb/atm/cxacru.c
3497 M: Joel Becker <jlbec@evilplan.org>
3498 M: Christoph Hellwig <hch@lst.de>
3499 T: git git://git.infradead.org/users/hch/configfs.git
3502 F: include/linux/configfs.h
3505 M: Evgeniy Polyakov <zbr@ioremap.net>
3506 L: netdev@vger.kernel.org
3508 F: drivers/connector/
3510 CONTROL GROUP (CGROUP)
3511 M: Tejun Heo <tj@kernel.org>
3512 M: Li Zefan <lizefan@huawei.com>
3513 M: Johannes Weiner <hannes@cmpxchg.org>
3514 L: cgroups@vger.kernel.org
3515 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3517 F: Documentation/cgroup*
3518 F: include/linux/cgroup*
3521 CONTROL GROUP - CPUSET
3522 M: Li Zefan <lizefan@huawei.com>
3523 L: cgroups@vger.kernel.org
3524 W: http://www.bullopensource.org/cpuset/
3525 W: http://oss.sgi.com/projects/cpusets/
3526 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3528 F: Documentation/cgroup-v1/cpusets.txt
3529 F: include/linux/cpuset.h
3532 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
3533 M: Johannes Weiner <hannes@cmpxchg.org>
3534 M: Michal Hocko <mhocko@kernel.org>
3535 M: Vladimir Davydov <vdavydov.dev@gmail.com>
3536 L: cgroups@vger.kernel.org
3537 L: linux-mm@kvack.org
3542 CORETEMP HARDWARE MONITORING DRIVER
3543 M: Fenghua Yu <fenghua.yu@intel.com>
3544 L: linux-hwmon@vger.kernel.org
3546 F: Documentation/hwmon/coretemp
3547 F: drivers/hwmon/coretemp.c
3549 COSA/SRP SYNC SERIAL DRIVER
3550 M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
3551 W: http://www.fi.muni.cz/~kas/cosa/
3553 F: drivers/net/wan/cosa*
3555 CPMAC ETHERNET DRIVER
3556 M: Florian Fainelli <f.fainelli@gmail.com>
3557 L: netdev@vger.kernel.org
3559 F: drivers/net/ethernet/ti/cpmac.c
3561 CPU FREQUENCY DRIVERS
3562 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
3563 M: Viresh Kumar <viresh.kumar@linaro.org>
3564 L: linux-pm@vger.kernel.org
3566 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3567 T: git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
3568 B: https://bugzilla.kernel.org
3569 F: Documentation/cpu-freq/
3570 F: Documentation/devicetree/bindings/cpufreq/
3572 F: include/linux/cpufreq.h
3573 F: tools/testing/selftests/cpufreq/
3575 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
3576 M: Viresh Kumar <viresh.kumar@linaro.org>
3577 M: Sudeep Holla <sudeep.holla@arm.com>
3578 L: linux-pm@vger.kernel.org
3579 W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php
3581 F: drivers/cpufreq/arm_big_little.h
3582 F: drivers/cpufreq/arm_big_little.c
3583 F: drivers/cpufreq/arm_big_little_dt.c
3585 CPU POWER MONITORING SUBSYSTEM
3586 M: Thomas Renninger <trenn@suse.com>
3587 L: linux-pm@vger.kernel.org
3589 F: tools/power/cpupower/
3592 M: "H. Peter Anvin" <hpa@zytor.com>
3594 F: arch/x86/kernel/cpuid.c
3595 F: arch/x86/kernel/msr.c
3597 CPUIDLE DRIVER - ARM BIG LITTLE
3598 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
3599 M: Daniel Lezcano <daniel.lezcano@linaro.org>
3600 L: linux-pm@vger.kernel.org
3601 L: linux-arm-kernel@lists.infradead.org
3602 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3604 F: drivers/cpuidle/cpuidle-big_little.c
3606 CPUIDLE DRIVER - ARM EXYNOS
3607 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
3608 M: Daniel Lezcano <daniel.lezcano@linaro.org>
3609 M: Kukjin Kim <kgene@kernel.org>
3610 L: linux-pm@vger.kernel.org
3611 L: linux-samsung-soc@vger.kernel.org
3613 F: drivers/cpuidle/cpuidle-exynos.c
3614 F: arch/arm/mach-exynos/pm.c
3617 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
3618 M: Daniel Lezcano <daniel.lezcano@linaro.org>
3619 L: linux-pm@vger.kernel.org
3621 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3622 B: https://bugzilla.kernel.org
3623 F: drivers/cpuidle/*
3624 F: include/linux/cpuidle.h
3627 W: http://sourceforge.net/projects/cramfs/
3628 S: Orphan / Obsolete
3629 F: Documentation/filesystems/cramfs.txt
3633 M: Mikael Starvik <starvik@axis.com>
3634 M: Jesper Nilsson <jesper.nilsson@axis.com>
3635 L: linux-cris-kernel@axis.com
3636 W: http://developer.axis.com
3637 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesper/cris.git
3640 F: drivers/tty/serial/crisv10.*
3643 M: Herbert Xu <herbert@gondor.apana.org.au>
3644 M: "David S. Miller" <davem@davemloft.net>
3645 L: linux-crypto@vger.kernel.org
3646 T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
3647 T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
3649 F: Documentation/crypto/
3650 F: Documentation/devicetree/bindings/crypto/
3655 F: include/linux/crypto*
3657 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
3658 M: Neil Horman <nhorman@tuxdriver.com>
3659 L: linux-crypto@vger.kernel.org
3661 F: crypto/ansi_cprng.c
3665 M: Hans Verkuil <hverkuil@xs4all.nl>
3666 L: linux-media@vger.kernel.org
3667 T: git git://linuxtv.org/media_tree.git
3668 W: http://linuxtv.org
3670 F: drivers/media/i2c/cs3308.c
3671 F: drivers/media/i2c/cs3308.h
3673 CS5535 Audio ALSA driver
3674 M: Jaya Kumar <jayakumar.alsa@gmail.com>
3676 F: sound/pci/cs5535audio/
3679 M: Solomon Peachy <pizza@shaftnet.org>
3681 F: drivers/net/wireless/st/cw1200/
3683 CX18 VIDEO4LINUX DRIVER
3684 M: Andy Walls <awalls@md.metrocast.net>
3685 L: ivtv-devel@ivtvdriver.org (subscribers-only)
3686 L: linux-media@vger.kernel.org
3687 T: git git://linuxtv.org/media_tree.git
3688 W: https://linuxtv.org
3689 W: http://www.ivtvdriver.org/index.php/Cx18
3691 F: Documentation/media/v4l-drivers/cx18*
3692 F: drivers/media/pci/cx18/
3693 F: include/uapi/linux/ivtv*
3695 CX2341X MPEG ENCODER HELPER MODULE
3696 M: Hans Verkuil <hverkuil@xs4all.nl>
3697 L: linux-media@vger.kernel.org
3698 T: git git://linuxtv.org/media_tree.git
3699 W: https://linuxtv.org
3701 F: drivers/media/common/cx2341x*
3702 F: include/media/cx2341x*
3704 CX24120 MEDIA DRIVER
3705 M: Jemma Denson <jdenson@gmail.com>
3706 M: Patrick Boettcher <patrick.boettcher@posteo.de>
3707 L: linux-media@vger.kernel.org
3708 W: https://linuxtv.org
3709 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3711 F: drivers/media/dvb-frontends/cx24120*
3713 CX88 VIDEO4LINUX DRIVER
3714 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
3715 M: Mauro Carvalho Chehab <mchehab@kernel.org>
3716 L: linux-media@vger.kernel.org
3717 W: https://linuxtv.org
3718 T: git git://linuxtv.org/media_tree.git
3720 F: Documentation/media/v4l-drivers/cx88*
3721 F: drivers/media/pci/cx88/
3723 CXD2820R MEDIA DRIVER
3724 M: Antti Palosaari <crope@iki.fi>
3725 L: linux-media@vger.kernel.org
3726 W: https://linuxtv.org
3727 W: http://palosaari.fi/linux/
3728 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3729 T: git git://linuxtv.org/anttip/media_tree.git
3731 F: drivers/media/dvb-frontends/cxd2820r*
3733 CXGB3 ETHERNET DRIVER (CXGB3)
3734 M: Santosh Raspatur <santosh@chelsio.com>
3735 L: netdev@vger.kernel.org
3736 W: http://www.chelsio.com
3738 F: drivers/net/ethernet/chelsio/cxgb3/
3740 CXGB3 ISCSI DRIVER (CXGB3I)
3741 M: Karen Xie <kxie@chelsio.com>
3742 L: linux-scsi@vger.kernel.org
3743 W: http://www.chelsio.com
3745 F: drivers/scsi/cxgbi/cxgb3i
3747 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
3748 M: Steve Wise <swise@chelsio.com>
3749 L: linux-rdma@vger.kernel.org
3750 W: http://www.openfabrics.org
3752 F: drivers/infiniband/hw/cxgb3/
3753 F: include/uapi/rdma/cxgb3-abi.h
3755 CXGB4 ETHERNET DRIVER (CXGB4)
3756 M: Ganesh Goudar <ganeshgr@chelsio.com>
3757 L: netdev@vger.kernel.org
3758 W: http://www.chelsio.com
3760 F: drivers/net/ethernet/chelsio/cxgb4/
3762 CXGB4 ISCSI DRIVER (CXGB4I)
3763 M: Karen Xie <kxie@chelsio.com>
3764 L: linux-scsi@vger.kernel.org
3765 W: http://www.chelsio.com
3767 F: drivers/scsi/cxgbi/cxgb4i
3769 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3770 M: Steve Wise <swise@chelsio.com>
3771 L: linux-rdma@vger.kernel.org
3772 W: http://www.openfabrics.org
3774 F: drivers/infiniband/hw/cxgb4/
3775 F: include/uapi/rdma/cxgb4-abi.h
3777 CXGB4 CRYPTO DRIVER (chcr)
3778 M: Harsh Jain <harsh@chelsio.com>
3779 L: linux-crypto@vger.kernel.org
3780 W: http://www.chelsio.com
3782 F: drivers/crypto/chelsio
3784 CXGB4VF ETHERNET DRIVER (CXGB4VF)
3785 M: Casey Leedom <leedom@chelsio.com>
3786 L: netdev@vger.kernel.org
3787 W: http://www.chelsio.com
3789 F: drivers/net/ethernet/chelsio/cxgb4vf/
3791 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3792 M: Frederic Barrat <fbarrat@linux.vnet.ibm.com>
3793 M: Andrew Donnellan <andrew.donnellan@au1.ibm.com>
3794 L: linuxppc-dev@lists.ozlabs.org
3796 F: arch/powerpc/platforms/powernv/pci-cxl.c
3797 F: drivers/misc/cxl/
3798 F: include/misc/cxl*
3799 F: include/uapi/misc/cxl.h
3800 F: Documentation/powerpc/cxl.txt
3801 F: Documentation/ABI/testing/sysfs-class-cxl
3803 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
3804 M: Manoj N. Kumar <manoj@linux.vnet.ibm.com>
3805 M: Matthew R. Ochs <mrochs@linux.vnet.ibm.com>
3806 M: Uma Krishnan <ukrishn@linux.vnet.ibm.com>
3807 L: linux-scsi@vger.kernel.org
3809 F: drivers/scsi/cxlflash/
3810 F: include/uapi/scsi/cxlflash_ioctls.h
3811 F: Documentation/powerpc/cxlflash.txt
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