3 List of maintainers and how to submit kernel changes
5 Please try to follow the guidelines below. This will make things
6 easier on the maintainers. Not all of these guidelines matter for every
7 trivial patch so apply some common sense.
9 1. Always _test_ your changes, however small, on at least 4 or
10 5 people, preferably many more.
12 2. Try to release a few ALPHA test versions to the net. Announce
13 them onto the kernel channel and await results. This is especially
14 important for device drivers, because often that's the only way
15 you will find things like the fact version 3 firmware needs
16 a magic fix you didn't know about, or some clown changed the
17 chips on a board and not its name. (Don't laugh! Look at the
18 SMC etherpower for that.)
20 3. Make sure your changes compile correctly in multiple
21 configurations. In particular check that changes work both as a
22 module and built into the kernel.
24 4. When you are happy with a change make it generally available for
25 testing and await feedback.
27 5. Make a patch available to the relevant maintainer in the list. Use
28 'diff -u' to make the patch easy to merge. Be prepared to get your
29 changes sent back with seemingly silly requests about formatting
30 and variable names. These aren't as silly as they seem. One
31 job the maintainers (and especially Linus) do is to keep things
32 looking the same. Sometimes this means that the clever hack in
33 your driver to get around a problem actually needs to become a
34 generalized kernel feature ready for next time.
36 PLEASE check your patch with the automated style checker
37 (scripts/checkpatch.pl) to catch trivial style violations.
38 See Documentation/process/coding-style.rst for guidance here.
40 PLEASE CC: the maintainers and mailing lists that are generated
41 by scripts/get_maintainer.pl. The results returned by the
42 script will be best if you have git installed and are making
43 your changes in a branch derived from Linus' latest git tree.
44 See Documentation/process/submitting-patches.rst for details.
46 PLEASE try to include any credit lines you want added with the
47 patch. It avoids people being missed off by mistake and makes
48 it easier to know who wants adding and who doesn't.
50 PLEASE document known bugs. If it doesn't work for everything
51 or does something very odd once a month document it.
53 PLEASE remember that submissions must be made under the terms
54 of the Linux Foundation certificate of contribution and should
55 include a Signed-off-by: line. The current version of this
56 "Developer's Certificate of Origin" (DCO) is listed in the file
57 Documentation/process/submitting-patches.rst.
59 6. Make sure you have the right to send any changes you make. If you
60 do changes at work you may find your employer owns the patch
63 7. When sending security related changes or reports to a maintainer
64 please Cc: security@kernel.org, especially if the maintainer
69 Descriptions of section entries:
72 M: Mail patches to: FullName <address@domain>
73 R: Designated reviewer: FullName <address@domain>
74 These reviewers should be CCed on patches.
75 L: Mailing list that is relevant to this area
76 W: Web-page with status/info
77 B: URI for where to file bugs. A web-page with detailed bug
78 filing info, a direct bug tracker link, or a mailto: URI.
79 C: URI for chat protocol, server and channel where developers
80 usually hang out, for example irc://server/channel.
81 Q: Patchwork web based patch tracking system site
82 T: SCM tree type and location.
83 Type is one of: git, hg, quilt, stgit, topgit
84 S: Status, one of the following:
85 Supported: Someone is actually paid to look after this.
86 Maintained: Someone actually looks after it.
87 Odd Fixes: It has a maintainer but they don't have time to do
88 much other than throw the odd patch in. See below..
89 Orphan: No current maintainer [but maybe you could take the
90 role as you write your new code].
91 Obsolete: Old code. Something tagged obsolete generally means
92 it has been replaced by a better system and you
94 F: Files and directories with wildcard patterns.
95 A trailing slash includes all files and subdirectory files.
96 F: drivers/net/ all files in and below drivers/net
97 F: drivers/net/* all files in drivers/net, but not below
98 F: */net/* all files in "any top level directory"/net
99 One pattern per line. Multiple F: lines acceptable.
100 N: Files and directories with regex patterns.
101 N: [^a-z]tegra all files whose path contains the word tegra
102 One pattern per line. Multiple N: lines acceptable.
103 scripts/get_maintainer.pl has different behavior for files that
104 match F: pattern and matches of N: patterns. By default,
105 get_maintainer will not look at git log history when an F: pattern
106 match occurs. When an N: match occurs, git log history is used
107 to also notify the people that have git commit signatures.
108 X: Files and directories that are NOT maintained, same rules as F:
109 Files exclusions are tested before file matches.
110 Can be useful for excluding a specific subdirectory, for instance:
113 matches all files in and below net excluding net/ipv6/
114 K: Keyword perl extended regex pattern to match content in a
115 patch or file. For instance:
117 matches patches or files that contain "of_get_profile"
118 K: \b(printk|pr_(info|err))\b
119 matches patches or files that contain one or more of the words
120 printk, pr_info or pr_err
121 One regex pattern per line. Multiple K: lines acceptable.
123 Note: For the hard of thinking, this list is meant to remain in alphabetical
124 order. If you could add yourselves to it in alphabetical order that would be
127 Maintainers List (try to look for most precise areas first)
129 -----------------------------------
132 M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
133 L: netdev@vger.kernel.org
135 F: Documentation/networking/vortex.txt
136 F: drivers/net/ethernet/3com/3c59x.c
138 3CR990 NETWORK DRIVER
139 M: David Dillow <dave@thedillows.org>
140 L: netdev@vger.kernel.org
142 F: drivers/net/ethernet/3com/typhoon*
144 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
145 M: Adam Radford <aradford@gmail.com>
146 L: linux-scsi@vger.kernel.org
147 W: http://www.lsi.com
151 53C700 AND 53C700-66 SCSI DRIVER
152 M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
153 L: linux-scsi@vger.kernel.org
155 F: drivers/scsi/53c700*
157 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
158 M: Alexander Aring <alex.aring@gmail.com>
159 M: Jukka Rissanen <jukka.rissanen@linux.intel.com>
160 L: linux-bluetooth@vger.kernel.org
161 L: linux-wpan@vger.kernel.org
164 F: include/net/6lowpan.h
165 F: Documentation/networking/6lowpan.txt
167 6PACK NETWORK DRIVER FOR AX.25
168 M: Andreas Koensgen <ajk@comnets.uni-bremen.de>
169 L: linux-hams@vger.kernel.org
171 F: drivers/net/hamradio/6pack.c
173 8169 10/100/1000 GIGABIT ETHERNET DRIVER
174 M: Realtek linux nic maintainers <nic_swsd@realtek.com>
175 L: netdev@vger.kernel.org
177 F: drivers/net/ethernet/realtek/r8169.c
179 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
180 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
181 L: linux-serial@vger.kernel.org
183 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
184 F: drivers/tty/serial/8250*
185 F: include/linux/serial_8250.h
187 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
188 L: netdev@vger.kernel.org
190 F: drivers/net/ethernet/8390/
193 M: Eric Van Hensbergen <ericvh@gmail.com>
194 M: Ron Minnich <rminnich@sandia.gov>
195 M: Latchesar Ionkov <lucho@ionkov.net>
196 L: v9fs-developer@lists.sourceforge.net
197 W: http://swik.net/v9fs
198 Q: http://patchwork.kernel.org/project/v9fs-devel/list/
199 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
201 F: Documentation/filesystems/9p.txt
205 F: include/uapi/linux/virtio_9p.h
206 F: include/trace/events/9p.h
209 M: Antti Palosaari <crope@iki.fi>
210 L: linux-media@vger.kernel.org
211 W: https://linuxtv.org
212 W: http://palosaari.fi/linux/
213 Q: http://patchwork.linuxtv.org/project/linux-media/list/
214 T: git git://linuxtv.org/anttip/media_tree.git
216 F: drivers/media/dvb-frontends/a8293*
218 AACRAID SCSI RAID DRIVER
219 M: Adaptec OEM Raid Solutions <aacraid@microsemi.com>
220 L: linux-scsi@vger.kernel.org
221 W: http://www.adaptec.com/
223 F: Documentation/scsi/aacraid.txt
224 F: drivers/scsi/aacraid/
227 L: linux-api@vger.kernel.org
228 F: include/linux/syscalls.h
231 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
232 M: Hans de Goede <hdegoede@redhat.com>
233 L: linux-hwmon@vger.kernel.org
235 F: drivers/hwmon/abituguru.c
237 ABIT UGURU 3 HARDWARE MONITOR DRIVER
238 M: Alistair John Strachan <alistair@devzero.co.uk>
239 L: linux-hwmon@vger.kernel.org
241 F: drivers/hwmon/abituguru3.c
243 ACCES 104-DIO-48E GPIO DRIVER
244 M: William Breathitt Gray <vilhelm.gray@gmail.com>
245 L: linux-gpio@vger.kernel.org
247 F: drivers/gpio/gpio-104-dio-48e.c
249 ACCES 104-IDI-48 GPIO DRIVER
250 M: "William Breathitt Gray" <vilhelm.gray@gmail.com>
251 L: linux-gpio@vger.kernel.org
253 F: drivers/gpio/gpio-104-idi-48.c
255 ACCES 104-IDIO-16 GPIO DRIVER
256 M: "William Breathitt Gray" <vilhelm.gray@gmail.com>
257 L: linux-gpio@vger.kernel.org
259 F: drivers/gpio/gpio-104-idio-16.c
261 ACCES 104-QUAD-8 IIO DRIVER
262 M: William Breathitt Gray <vilhelm.gray@gmail.com>
263 L: linux-iio@vger.kernel.org
265 F: drivers/iio/counter/104-quad-8.c
267 ACCES PCI-IDIO-16 GPIO DRIVER
268 M: William Breathitt Gray <vilhelm.gray@gmail.com>
269 L: linux-gpio@vger.kernel.org
271 F: drivers/gpio/gpio-pci-idio-16.c
274 M: Jes Sorensen <jes@trained-monkey.org>
275 L: linux-acenic@sunsite.dk
277 F: drivers/net/ethernet/alteon/acenic*
279 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
280 M: Peter Feuerer <peter@piie.net>
281 L: platform-driver-x86@vger.kernel.org
282 W: http://piie.net/?section=acerhdf
284 F: drivers/platform/x86/acerhdf.c
286 ACER WMI LAPTOP EXTRAS
287 M: "Lee, Chun-Yi" <jlee@suse.com>
288 L: platform-driver-x86@vger.kernel.org
290 F: drivers/platform/x86/acer-wmi.c
293 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
294 M: Len Brown <lenb@kernel.org>
295 L: linux-acpi@vger.kernel.org
296 W: https://01.org/linux-acpi
297 Q: https://patchwork.kernel.org/project/linux-acpi/list/
298 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
299 B: https://bugzilla.kernel.org
302 F: drivers/pnp/pnpacpi/
303 F: include/linux/acpi.h
304 F: include/linux/fwnode.h
306 F: Documentation/acpi/
307 F: Documentation/ABI/testing/sysfs-bus-acpi
308 F: Documentation/ABI/testing/configfs-acpi
309 F: drivers/pci/*acpi*
310 F: drivers/pci/*/*acpi*
311 F: drivers/pci/*/*/*acpi*
315 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
316 M: Len Brown <lenb@kernel.org>
317 L: linux-acpi@vger.kernel.org
318 R: Tony Luck <tony.luck@intel.com>
319 R: Borislav Petkov <bp@alien8.de>
320 F: drivers/acpi/apei/
322 ACPI COMPONENT ARCHITECTURE (ACPICA)
323 M: Robert Moore <robert.moore@intel.com>
324 M: Lv Zheng <lv.zheng@intel.com>
325 M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
326 L: linux-acpi@vger.kernel.org
328 W: https://acpica.org/
329 W: https://github.com/acpica/acpica/
330 Q: https://patchwork.kernel.org/project/linux-acpi/list/
331 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
332 B: https://bugzilla.kernel.org
333 B: https://bugs.acpica.org
335 F: drivers/acpi/acpica/
340 M: Zhang Rui <rui.zhang@intel.com>
341 L: linux-acpi@vger.kernel.org
342 W: https://01.org/linux-acpi
343 B: https://bugzilla.kernel.org
345 F: drivers/acpi/fan.c
347 ACPI FOR ARM64 (ACPI/arm64)
348 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
349 M: Hanjun Guo <hanjun.guo@linaro.org>
350 M: Sudeep Holla <sudeep.holla@arm.com>
351 L: linux-acpi@vger.kernel.org
353 F: drivers/acpi/arm64
356 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
357 M: Len Brown <lenb@kernel.org>
358 R: Andy Shevchenko <andy@infradead.org>
359 R: Mika Westerberg <mika.westerberg@linux.intel.com>
360 L: linux-acpi@vger.kernel.org
361 Q: https://patchwork.kernel.org/project/linux-acpi/list/
362 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
363 B: https://bugzilla.kernel.org
365 F: drivers/acpi/pmic/
368 M: Zhang Rui <rui.zhang@intel.com>
369 L: linux-acpi@vger.kernel.org
370 W: https://01.org/linux-acpi
371 B: https://bugzilla.kernel.org
373 F: drivers/acpi/*thermal*
376 M: Zhang Rui <rui.zhang@intel.com>
377 L: linux-acpi@vger.kernel.org
378 W: https://01.org/linux-acpi
379 B: https://bugzilla.kernel.org
381 F: drivers/acpi/acpi_video.c
384 L: platform-driver-x86@vger.kernel.org
386 F: drivers/platform/x86/wmi.c
387 F: include/uapi/linux/wmi.h
389 AD1889 ALSA SOUND DRIVER
390 M: Thibaut Varene <T-Bone@parisc-linux.org>
391 W: http://wiki.parisc-linux.org/AD1889
392 L: linux-parisc@vger.kernel.org
394 F: sound/pci/ad1889.*
396 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
397 M: Michael Hennerich <michael.hennerich@analog.com>
398 W: http://wiki.analog.com/AD5254
399 W: http://ez.analog.com/community/linux-device-drivers
401 F: drivers/misc/ad525x_dpot.c
403 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
404 M: Michael Hennerich <michael.hennerich@analog.com>
405 W: http://wiki.analog.com/AD5398
406 W: http://ez.analog.com/community/linux-device-drivers
408 F: drivers/regulator/ad5398.c
410 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
411 M: Michael Hennerich <michael.hennerich@analog.com>
412 W: http://wiki.analog.com/AD7142
413 W: http://ez.analog.com/community/linux-device-drivers
415 F: drivers/input/misc/ad714x.c
417 AD7877 TOUCHSCREEN DRIVER
418 M: Michael Hennerich <michael.hennerich@analog.com>
419 W: http://wiki.analog.com/AD7877
420 W: http://ez.analog.com/community/linux-device-drivers
422 F: drivers/input/touchscreen/ad7877.c
424 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
425 M: Michael Hennerich <michael.hennerich@analog.com>
426 W: http://wiki.analog.com/AD7879
427 W: http://ez.analog.com/community/linux-device-drivers
429 F: drivers/input/touchscreen/ad7879.c
431 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
432 M: Jiri Kosina <jikos@kernel.org>
435 ADF7242 IEEE 802.15.4 RADIO DRIVER
436 M: Michael Hennerich <michael.hennerich@analog.com>
437 W: https://wiki.analog.com/ADF7242
438 W: http://ez.analog.com/community/linux-device-drivers
439 L: linux-wpan@vger.kernel.org
441 F: drivers/net/ieee802154/adf7242.c
442 F: Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
444 ADM1025 HARDWARE MONITOR DRIVER
445 M: Jean Delvare <jdelvare@suse.com>
446 L: linux-hwmon@vger.kernel.org
448 F: Documentation/hwmon/adm1025
449 F: drivers/hwmon/adm1025.c
451 ADM1029 HARDWARE MONITOR DRIVER
452 M: Corentin Labbe <clabbe.montjoie@gmail.com>
453 L: linux-hwmon@vger.kernel.org
455 F: drivers/hwmon/adm1029.c
457 ADM8211 WIRELESS DRIVER
458 L: linux-wireless@vger.kernel.org
459 W: http://wireless.kernel.org/
461 F: drivers/net/wireless/admtek/adm8211.*
463 ADP1653 FLASH CONTROLLER DRIVER
464 M: Sakari Ailus <sakari.ailus@iki.fi>
465 L: linux-media@vger.kernel.org
467 F: drivers/media/i2c/adp1653.c
468 F: include/media/i2c/adp1653.h
470 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
471 M: Michael Hennerich <michael.hennerich@analog.com>
472 W: http://wiki.analog.com/ADP5520
473 W: http://ez.analog.com/community/linux-device-drivers
475 F: drivers/mfd/adp5520.c
476 F: drivers/video/backlight/adp5520_bl.c
477 F: drivers/leds/leds-adp5520.c
478 F: drivers/gpio/gpio-adp5520.c
479 F: drivers/input/keyboard/adp5520-keys.c
481 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
482 M: Michael Hennerich <michael.hennerich@analog.com>
483 W: http://wiki.analog.com/ADP5588
484 W: http://ez.analog.com/community/linux-device-drivers
486 F: drivers/input/keyboard/adp5588-keys.c
487 F: drivers/gpio/gpio-adp5588.c
489 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
490 M: Michael Hennerich <michael.hennerich@analog.com>
491 W: http://wiki.analog.com/ADP8860
492 W: http://ez.analog.com/community/linux-device-drivers
494 F: drivers/video/backlight/adp8860_bl.c
496 ADS1015 HARDWARE MONITOR DRIVER
497 M: Dirk Eibach <eibach@gdsys.de>
498 L: linux-hwmon@vger.kernel.org
500 F: Documentation/hwmon/ads1015
501 F: drivers/hwmon/ads1015.c
502 F: include/linux/platform_data/ads1015.h
505 M: Colin Leroy <colin@colino.net>
507 F: drivers/macintosh/therm_adt746x.c
509 ADT7475 HARDWARE MONITOR DRIVER
510 M: Jean Delvare <jdelvare@suse.com>
511 L: linux-hwmon@vger.kernel.org
513 F: Documentation/hwmon/adt7475
514 F: drivers/hwmon/adt7475.c
517 M: Matthew Wilcox <matthew@wil.cx>
518 M: Hannes Reinecke <hare@suse.com>
519 L: linux-scsi@vger.kernel.org
521 F: Documentation/scsi/advansys.txt
522 F: drivers/scsi/advansys.c
524 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
525 M: Michael Hennerich <michael.hennerich@analog.com>
526 W: http://wiki.analog.com/ADXL345
527 W: http://ez.analog.com/community/linux-device-drivers
529 F: drivers/input/misc/adxl34x.c
532 M: Antti Palosaari <crope@iki.fi>
533 L: linux-media@vger.kernel.org
534 W: https://linuxtv.org
535 W: http://palosaari.fi/linux/
536 Q: http://patchwork.linuxtv.org/project/linux-media/list/
537 T: git git://linuxtv.org/anttip/media_tree.git
539 F: drivers/media/dvb-frontends/af9013*
542 M: Antti Palosaari <crope@iki.fi>
543 L: linux-media@vger.kernel.org
544 W: https://linuxtv.org
545 W: http://palosaari.fi/linux/
546 Q: http://patchwork.linuxtv.org/project/linux-media/list/
547 T: git git://linuxtv.org/anttip/media_tree.git
549 F: drivers/media/dvb-frontends/af9033*
552 L: linux-fsdevel@vger.kernel.org
554 F: Documentation/filesystems/affs.txt
557 AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
558 M: David Howells <dhowells@redhat.com>
559 L: linux-afs@lists.infradead.org
562 F: include/net/af_rxrpc.h
563 F: net/rxrpc/af_rxrpc.c
564 W: https://www.infradead.org/~dhowells/kafs/
567 M: David Airlie <airlied@linux.ie>
568 T: git git://people.freedesktop.org/~airlied/linux (part of drm maint)
571 F: include/linux/agp*
572 F: include/uapi/linux/agp*
575 M: "Juergen E. Fischer" <fischer@norbit.de>
576 L: linux-scsi@vger.kernel.org
578 F: drivers/scsi/aha152x*
579 F: drivers/scsi/pcmcia/aha152x*
581 AIC7XXX / AIC79XX SCSI DRIVER
582 M: Hannes Reinecke <hare@suse.com>
583 L: linux-scsi@vger.kernel.org
585 F: drivers/scsi/aic7xxx/
587 AIMSLAB FM RADIO RECEIVER DRIVER
588 M: Hans Verkuil <hverkuil@xs4all.nl>
589 L: linux-media@vger.kernel.org
590 T: git git://linuxtv.org/media_tree.git
591 W: https://linuxtv.org
593 F: drivers/media/radio/radio-aimslab*
596 M: Benjamin LaHaise <bcrl@kvack.org>
597 L: linux-aio@kvack.org
600 F: include/linux/*aio*.h
603 M: Antti Palosaari <crope@iki.fi>
604 L: linux-media@vger.kernel.org
605 W: https://linuxtv.org
606 W: http://palosaari.fi/linux/
607 Q: http://patchwork.linuxtv.org/project/linux-media/list/
608 T: git git://linuxtv.org/anttip/media_tree.git
610 F: drivers/media/usb/airspy/
612 ALACRITECH GIGABIT ETHERNET DRIVER
613 M: Lino Sanfilippo <LinoSanfilippo@gmx.de>
615 F: drivers/net/ethernet/alacritech/*
617 ALCATEL SPEEDTOUCH USB DRIVER
618 M: Duncan Sands <duncan.sands@free.fr>
619 L: linux-usb@vger.kernel.org
620 W: http://www.linux-usb.org/SpeedTouch/
622 F: drivers/usb/atm/speedtch.c
623 F: drivers/usb/atm/usbatm.c
625 ALCHEMY AU1XX0 MMC DRIVER
626 M: Manuel Lauss <manuel.lauss@gmail.com>
628 F: drivers/mmc/host/au1xmmc.c
631 M: Rudolf Marek <r.marek@assembler.cz>
632 L: linux-i2c@vger.kernel.org
634 F: Documentation/i2c/busses/i2c-ali1563
635 F: drivers/i2c/busses/i2c-ali1563.c
637 ALLWINNER SECURITY SYSTEM
638 M: Corentin Labbe <clabbe.montjoie@gmail.com>
639 L: linux-crypto@vger.kernel.org
641 F: drivers/crypto/sunxi-ss/
644 M: Richard Henderson <rth@twiddle.net>
645 M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
646 M: Matt Turner <mattst88@gmail.com>
648 L: linux-alpha@vger.kernel.org
651 ALPS PS/2 TOUCHPAD DRIVER
652 R: Pali Rohár <pali.rohar@gmail.com>
653 F: drivers/input/mouse/alps.*
655 ALTERA I2C CONTROLLER DRIVER
656 M: Thor Thayer <thor.thayer@linux.intel.com>
658 F: drivers/i2c/busses/i2c-altera.c
660 ALTERA MAILBOX DRIVER
661 M: Ley Foon Tan <lftan@altera.com>
662 L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
664 F: drivers/mailbox/mailbox-altera.c
667 M: Tien Hock Loh <thloh@altera.com>
668 L: linux-gpio@vger.kernel.org
670 F: drivers/gpio/gpio-altera.c
672 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
673 M: Thor Thayer <thor.thayer@linux.intel.com>
675 F: drivers/gpio/gpio-altera-a10sr.c
676 F: drivers/mfd/altera-a10sr.c
677 F: drivers/reset/reset-a10sr.c
678 F: include/linux/mfd/altera-a10sr.h
679 F: include/dt-bindings/reset/altr,rst-mgr-a10sr.h
681 ALTERA TRIPLE SPEED ETHERNET DRIVER
682 M: Vince Bridgers <vbridger@opensource.altera.com>
683 L: netdev@vger.kernel.org
684 L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
686 F: drivers/net/ethernet/altera/
688 ALTERA UART/JTAG UART SERIAL DRIVERS
689 M: Tobias Klauser <tklauser@distanz.ch>
690 L: linux-serial@vger.kernel.org
691 L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
693 F: drivers/tty/serial/altera_uart.c
694 F: drivers/tty/serial/altera_jtaguart.c
695 F: include/linux/altera_uart.h
696 F: include/linux/altera_jtaguart.h
698 AMAZON ETHERNET DRIVERS
699 M: Netanel Belgazal <netanel@amazon.com>
700 R: Saeed Bishara <saeedb@amazon.com>
701 R: Zorik Machulsky <zorik@amazon.com>
702 L: netdev@vger.kernel.org
704 F: Documentation/networking/ena.txt
705 F: drivers/net/ethernet/amazon/
707 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
708 M: Tom Lendacky <thomas.lendacky@amd.com>
709 M: Gary Hook <gary.hook@amd.com>
710 L: linux-crypto@vger.kernel.org
712 F: drivers/crypto/ccp/
713 F: include/linux/ccp.h
715 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
716 M: Huang Rui <ray.huang@amd.com>
717 L: linux-hwmon@vger.kernel.org
719 F: Documentation/hwmon/fam15h_power
720 F: drivers/hwmon/fam15h_power.c
722 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
723 L: linux-geode@lists.infradead.org (moderated for non-subscribers)
725 F: drivers/usb/gadget/udc/amd5536udc.*
727 AMD GEODE PROCESSOR/CHIPSET SUPPORT
728 P: Andres Salomon <dilinger@queued.net>
729 L: linux-geode@lists.infradead.org (moderated for non-subscribers)
730 W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
732 F: drivers/char/hw_random/geode-rng.c
733 F: drivers/crypto/geode*
734 F: drivers/video/fbdev/geode/
735 F: arch/x86/include/asm/geode.h
738 M: Joerg Roedel <joro@8bytes.org>
739 L: iommu@lists.linux-foundation.org
740 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
742 F: drivers/iommu/amd_iommu*.[ch]
743 F: include/linux/amd-iommu.h
746 M: Oded Gabbay <oded.gabbay@gmail.com>
747 L: dri-devel@lists.freedesktop.org
748 T: git git://people.freedesktop.org/~gabbayo/linux.git
750 F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
751 F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
752 F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
753 F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
754 F: drivers/gpu/drm/amd/amdkfd/
755 F: drivers/gpu/drm/amd/include/cik_structs.h
756 F: drivers/gpu/drm/amd/include/kgd_kfd_interface.h
757 F: drivers/gpu/drm/amd/include/vi_structs.h
758 F: include/uapi/linux/kfd_ioctl.h
760 AMD SEATTLE DEVICE TREE SUPPORT
761 M: Brijesh Singh <brijeshkumar.singh@amd.com>
762 M: Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
763 M: Tom Lendacky <thomas.lendacky@amd.com>
765 F: arch/arm64/boot/dts/amd/
768 M: Tom Lendacky <thomas.lendacky@amd.com>
769 L: netdev@vger.kernel.org
771 F: drivers/net/ethernet/amd/xgbe/
772 F: arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
774 AMS (Apple Motion Sensor) DRIVER
775 M: Michael Hanselmann <linux-kernel@hansmi.ch>
777 F: drivers/macintosh/ams/
779 ANALOG DEVICES INC AD9389B DRIVER
780 M: Hans Verkuil <hans.verkuil@cisco.com>
781 L: linux-media@vger.kernel.org
783 F: drivers/media/i2c/ad9389b*
785 ANALOG DEVICES INC ADV7180 DRIVER
786 M: Lars-Peter Clausen <lars@metafoo.de>
787 L: linux-media@vger.kernel.org
788 W: http://ez.analog.com/community/linux-device-drivers
790 F: drivers/media/i2c/adv7180.c
792 ANALOG DEVICES INC ADV748X DRIVER
793 M: Kieran Bingham <kieran.bingham@ideasonboard.com>
794 L: linux-media@vger.kernel.org
796 F: drivers/media/i2c/adv748x/*
798 ANALOG DEVICES INC ADV7511 DRIVER
799 M: Hans Verkuil <hans.verkuil@cisco.com>
800 L: linux-media@vger.kernel.org
802 F: drivers/media/i2c/adv7511*
804 ANALOG DEVICES INC ADV7604 DRIVER
805 M: Hans Verkuil <hans.verkuil@cisco.com>
806 L: linux-media@vger.kernel.org
808 F: drivers/media/i2c/adv7604*
810 ANALOG DEVICES INC ADV7842 DRIVER
811 M: Hans Verkuil <hans.verkuil@cisco.com>
812 L: linux-media@vger.kernel.org
814 F: drivers/media/i2c/adv7842*
816 ANALOG DEVICES INC ASOC CODEC DRIVERS
817 M: Lars-Peter Clausen <lars@metafoo.de>
818 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
819 W: http://wiki.analog.com/
820 W: http://ez.analog.com/community/linux-device-drivers
822 F: sound/soc/codecs/adau*
823 F: sound/soc/codecs/adav*
824 F: sound/soc/codecs/ad1*
825 F: sound/soc/codecs/ad7*
826 F: sound/soc/codecs/ssm*
827 F: sound/soc/codecs/sigmadsp.*
829 ANALOG DEVICES INC ASOC DRIVERS
830 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
831 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
832 W: http://blackfin.uclinux.org/
834 F: sound/soc/blackfin/*
836 ANALOG DEVICES INC DMA DRIVERS
837 M: Lars-Peter Clausen <lars@metafoo.de>
838 W: http://ez.analog.com/community/linux-device-drivers
840 F: drivers/dma/dma-axi-dmac.c
842 ANALOG DEVICES INC IIO DRIVERS
843 M: Lars-Peter Clausen <lars@metafoo.de>
844 M: Michael Hennerich <Michael.Hennerich@analog.com>
845 W: http://wiki.analog.com/
846 W: http://ez.analog.com/community/linux-device-drivers
849 F: drivers/iio/adc/ltc2497*
850 X: drivers/iio/*/adjd*
851 F: drivers/staging/iio/*/ad*
852 F: drivers/staging/iio/trigger/iio-trig-bfin-timer.c
854 ANDROID CONFIG FRAGMENTS
855 M: Rob Herring <robh@kernel.org>
857 F: kernel/configs/android*
860 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
861 M: Arve Hjønnevåg <arve@android.com>
862 M: Riley Andrews <riandrews@android.com>
863 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
864 L: devel@driverdev.osuosl.org
867 F: drivers/staging/android/
869 ANDROID GOLDFISH RTC DRIVER
870 M: Miodrag Dinic <miodrag.dinic@mips.com>
872 F: Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
873 F: drivers/rtc/rtc-goldfish.c
876 M: Laura Abbott <labbott@redhat.com>
877 M: Sumit Semwal <sumit.semwal@linaro.org>
878 L: devel@driverdev.osuosl.org
880 F: drivers/staging/android/ion
881 F: drivers/staging/android/uapi/ion.h
882 F: drivers/staging/android/uapi/ion_test.h
884 AOA (Apple Onboard Audio) ALSA DRIVER
885 M: Johannes Berg <johannes@sipsolutions.net>
886 L: linuxppc-dev@lists.ozlabs.org
887 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
891 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
892 M: William Breathitt Gray <vilhelm.gray@gmail.com>
893 L: linux-iio@vger.kernel.org
895 F: drivers/iio/adc/stx104.c
898 M: Jiri Kosina <jikos@kernel.org>
900 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
901 F: arch/x86/kernel/apm_32.c
902 F: include/linux/apm_bios.h
903 F: include/uapi/linux/apm_bios.h
904 F: drivers/char/apm-emulation.c
906 APPARMOR SECURITY MODULE
907 M: John Johansen <john.johansen@canonical.com>
908 L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
909 W: apparmor.wiki.kernel.org
910 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
912 F: security/apparmor/
913 F: Documentation/admin-guide/LSM/apparmor.rst
915 APPLE BCM5974 MULTITOUCH DRIVER
916 M: Henrik Rydberg <rydberg@bitmath.org>
917 L: linux-input@vger.kernel.org
919 F: drivers/input/mouse/bcm5974.c
922 M: Henrik Rydberg <rydberg@bitmath.org>
923 L: linux-hwmon@vger.kernel.org
925 F: drivers/hwmon/applesmc.c
927 APPLETALK NETWORK LAYER
928 L: netdev@vger.kernel.org
930 F: drivers/net/appletalk/
933 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
934 M: Duc Dang <dhdang@apm.com>
936 F: arch/arm64/boot/dts/apm/
938 APPLIED MICRO (APM) X-GENE SOC EDAC
939 M: Loc Ho <lho@apm.com>
941 F: drivers/edac/xgene_edac.c
942 F: Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
944 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
945 M: Iyappan Subramanian <isubramanian@apm.com>
946 M: Keyur Chudgar <kchudgar@apm.com>
948 F: drivers/net/ethernet/apm/xgene-v2/
950 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
951 M: Iyappan Subramanian <isubramanian@apm.com>
952 M: Keyur Chudgar <kchudgar@apm.com>
953 M: Quan Nguyen <qnguyen@apm.com>
955 F: drivers/net/ethernet/apm/xgene/
956 F: drivers/net/phy/mdio-xgene.c
957 F: Documentation/devicetree/bindings/net/apm-xgene-enet.txt
958 F: Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
960 APPLIED MICRO (APM) X-GENE SOC PMU
961 M: Tai Nguyen <ttnguyen@apm.com>
963 F: drivers/perf/xgene_pmu.c
964 F: Documentation/perf/xgene-pmu.txt
965 F: Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
967 APTINA CAMERA SENSOR PLL
968 M: Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
969 L: linux-media@vger.kernel.org
971 F: drivers/media/i2c/aptina-pll.*
973 ARC FRAMEBUFFER DRIVER
974 M: Jaya Kumar <jayalk@intworks.biz>
976 F: drivers/video/fbdev/arcfb.c
977 F: drivers/video/fbdev/core/fb_defio.c
980 M: Alexey Brodkin <abrodkin@synopsys.com>
982 F: drivers/gpu/drm/arc/
983 F: Documentation/devicetree/bindings/display/snps,arcpgu.txt
986 M: Michael Grzeschik <m.grzeschik@pengutronix.de>
987 L: netdev@vger.kernel.org
989 F: drivers/net/arcnet/
990 F: include/uapi/linux/if_arcnet.h
992 ARM ARCHITECTED TIMER DRIVER
993 M: Mark Rutland <mark.rutland@arm.com>
994 M: Marc Zyngier <marc.zyngier@arm.com>
995 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
997 F: arch/arm/include/asm/arch_timer.h
998 F: arch/arm64/include/asm/arch_timer.h
999 F: drivers/clocksource/arm_arch_timer.c
1001 ARM HDLCD DRM DRIVER
1002 M: Liviu Dudau <liviu.dudau@arm.com>
1004 F: drivers/gpu/drm/arm/hdlcd_*
1005 F: Documentation/devicetree/bindings/display/arm,hdlcd.txt
1007 ARM MALI-DP DRM DRIVER
1008 M: Liviu Dudau <liviu.dudau@arm.com>
1009 M: Brian Starkey <brian.starkey@arm.com>
1010 M: Mali DP Maintainers <malidp@foss.arm.com>
1012 F: drivers/gpu/drm/arm/
1013 F: Documentation/devicetree/bindings/display/arm,malidp.txt
1015 ARM MFM AND FLOPPY DRIVERS
1016 M: Ian Molton <spyro@f2s.com>
1018 F: arch/arm/lib/floppydma.S
1019 F: arch/arm/include/asm/floppy.h
1021 ARM PMU PROFILING AND DEBUGGING
1022 M: Will Deacon <will.deacon@arm.com>
1023 M: Mark Rutland <mark.rutland@arm.com>
1025 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1026 F: arch/arm*/kernel/perf_*
1027 F: arch/arm/oprofile/common.c
1028 F: arch/arm*/kernel/hw_breakpoint.c
1029 F: arch/arm*/include/asm/hw_breakpoint.h
1030 F: arch/arm*/include/asm/perf_event.h
1032 F: include/linux/perf/arm_pmu.h
1033 F: Documentation/devicetree/bindings/arm/pmu.txt
1034 F: Documentation/devicetree/bindings/perf/
1037 M: Russell King <linux@armlinux.org.uk>
1038 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1039 W: http://www.armlinux.org.uk/
1041 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git
1044 ARM PRIMECELL AACI PL041 DRIVER
1045 M: Russell King <linux@armlinux.org.uk>
1049 ARM PRIMECELL BUS SUPPORT
1050 M: Russell King <linux@armlinux.org.uk>
1053 F: include/linux/amba/bus.h
1055 ARM PRIMECELL CLCD PL110 DRIVER
1056 M: Russell King <linux@armlinux.org.uk>
1058 F: drivers/video/fbdev/amba-clcd.*
1060 ARM PRIMECELL KMI PL050 DRIVER
1061 M: Russell King <linux@armlinux.org.uk>
1063 F: drivers/input/serio/ambakmi.*
1064 F: include/linux/amba/kmi.h
1066 ARM PRIMECELL MMCI PL180/1 DRIVER
1067 M: Russell King <linux@armlinux.org.uk>
1069 F: drivers/mmc/host/mmci.*
1070 F: include/linux/amba/mmci.h
1072 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1073 M: Russell King <linux@armlinux.org.uk>
1075 F: drivers/tty/serial/amba-pl01*.c
1076 F: include/linux/amba/serial.h
1079 M: Will Deacon <will.deacon@arm.com>
1080 R: Robin Murphy <robin.murphy@arm.com>
1081 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1083 F: drivers/iommu/arm-smmu.c
1084 F: drivers/iommu/arm-smmu-v3.c
1085 F: drivers/iommu/io-pgtable-arm.c
1086 F: drivers/iommu/io-pgtable-arm-v7s.c
1088 ARM SUB-ARCHITECTURES
1089 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1093 T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
1095 ARM/ACTIONS SEMI ARCHITECTURE
1096 M: Andreas Färber <afaerber@suse.de>
1097 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1100 F: arch/arm/mach-actions/
1101 F: arch/arm/boot/dts/owl-*
1102 F: arch/arm64/boot/dts/actions/
1103 F: drivers/clocksource/owl-*
1104 F: drivers/soc/actions/
1105 F: include/dt-bindings/power/owl-*
1106 F: include/linux/soc/actions/
1107 F: Documentation/devicetree/bindings/arm/actions.txt
1108 F: Documentation/devicetree/bindings/power/actions,owl-sps.txt
1109 F: Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1111 ARM/ADS SPHERE MACHINE SUPPORT
1112 M: Lennert Buytenhek <kernel@wantstofly.org>
1113 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1116 ARM/AFEB9260 MACHINE SUPPORT
1117 M: Sergey Lapin <slapin@ossfans.org>
1118 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1121 ARM/AJECO 1ARM MACHINE SUPPORT
1122 M: Lennert Buytenhek <kernel@wantstofly.org>
1123 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1126 ARM/Allwinner SoC Clock Support
1127 M: Emilio López <emilio@elopez.com.ar>
1129 F: drivers/clk/sunxi/
1131 ARM/Allwinner sunXi SoC support
1132 M: Maxime Ripard <maxime.ripard@free-electrons.com>
1133 M: Chen-Yu Tsai <wens@csie.org>
1134 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1138 F: arch/arm/mach-sunxi/
1139 F: arch/arm64/boot/dts/allwinner/
1140 F: drivers/clk/sunxi-ng/
1141 F: drivers/pinctrl/sunxi/
1142 F: drivers/soc/sunxi/
1143 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1145 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1146 M: Neil Armstrong <narmstrong@baylibre.com>
1147 M: Jerome Brunet <jbrunet@baylibre.com>
1148 L: linux-amlogic@lists.infradead.org
1150 F: drivers/clk/meson/
1151 F: include/dt-bindings/clock/meson*
1152 F: include/dt-bindings/clock/gxbb*
1153 F: Documentation/devicetree/bindings/clock/amlogic*
1155 ARM/Amlogic Meson SoC support
1156 M: Carlo Caione <carlo@caione.org>
1157 M: Kevin Hilman <khilman@baylibre.com>
1158 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1159 L: linux-amlogic@lists.infradead.org
1160 W: http://linux-meson.com/
1162 F: arch/arm/mach-meson/
1163 F: arch/arm/boot/dts/meson*
1164 F: arch/arm64/boot/dts/amlogic/
1165 F: drivers/pinctrl/meson/
1166 F: drivers/mmc/host/meson*
1169 ARM/Annapurna Labs ALPINE ARCHITECTURE
1170 M: Tsahee Zidenberg <tsahee@annapurnalabs.com>
1171 M: Antoine Tenart <antoine.tenart@free-electrons.com>
1172 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1174 F: arch/arm/mach-alpine/
1175 F: arch/arm/boot/dts/alpine*
1176 F: arch/arm64/boot/dts/al/
1177 F: drivers/*/*alpine*
1179 ARM/ARTPEC MACHINE SUPPORT
1180 M: Jesper Nilsson <jesper.nilsson@axis.com>
1181 M: Lars Persson <lars.persson@axis.com>
1182 M: Niklas Cassel <niklas.cassel@axis.com>
1184 L: linux-arm-kernel@axis.com
1185 F: arch/arm/mach-artpec
1186 F: arch/arm/boot/dts/artpec6*
1188 F: drivers/crypto/axis
1189 F: drivers/pinctrl/pinctrl-artpec*
1190 F: Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1192 ARM/ASPEED I2C DRIVER
1193 M: Brendan Higgins <brendanhiggins@google.com>
1194 R: Benjamin Herrenschmidt <benh@kernel.crashing.org>
1195 R: Joel Stanley <joel@jms.id.au>
1196 L: linux-i2c@vger.kernel.org
1197 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
1199 F: drivers/irqchip/irq-aspeed-i2c-ic.c
1200 F: drivers/i2c/busses/i2c-aspeed.c
1201 F: Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1202 F: Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1204 ARM/ASPEED MACHINE SUPPORT
1205 M: Joel Stanley <joel@jms.id.au>
1207 F: arch/arm/mach-aspeed/
1208 F: arch/arm/boot/dts/aspeed-*
1209 F: drivers/*/*aspeed*
1211 ARM/ATMEL AT91 Clock Support
1212 M: Boris Brezillon <boris.brezillon@free-electrons.com>
1216 ARM/ATMEL AT91RM9200, AT91SAM9 AND SAMA5 SOC SUPPORT
1217 M: Nicolas Ferre <nicolas.ferre@microchip.com>
1218 M: Alexandre Belloni <alexandre.belloni@free-electrons.com>
1219 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1220 W: http://www.linux4sam.org
1221 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nferre/linux-at91.git
1225 F: arch/arm/mach-at91/
1226 F: include/soc/at91/
1227 F: arch/arm/boot/dts/at91*.dts
1228 F: arch/arm/boot/dts/at91*.dtsi
1229 F: arch/arm/boot/dts/sama*.dts
1230 F: arch/arm/boot/dts/sama*.dtsi
1231 F: arch/arm/include/debug/at91.S
1232 F: drivers/memory/atmel*
1233 F: drivers/watchdog/sama5d4_wdt.c
1234 X: drivers/input/touchscreen/atmel_mxt_ts.c
1235 X: drivers/net/wireless/atmel/
1237 ARM/CALXEDA HIGHBANK ARCHITECTURE
1238 M: Rob Herring <robh@kernel.org>
1239 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1241 F: arch/arm/mach-highbank/
1242 F: arch/arm/boot/dts/highbank.dts
1243 F: arch/arm/boot/dts/ecx-*.dts*
1245 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1246 M: Krzysztof Halasa <khalasa@piap.pl>
1248 F: arch/arm/mach-cns3xxx/
1250 ARM/CAVIUM THUNDER NETWORK DRIVER
1251 M: Sunil Goutham <sgoutham@cavium.com>
1252 M: Robert Richter <rric@kernel.org>
1253 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1255 F: drivers/net/ethernet/cavium/thunder/
1257 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1258 M: Alexander Shiyan <shc_work@mail.ru>
1259 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1263 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1264 M: Lennert Buytenhek <kernel@wantstofly.org>
1265 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1268 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1269 M: Hartley Sweeten <hsweeten@visionengravers.com>
1270 M: Alexander Sverdlin <alexander.sverdlin@gmail.com>
1271 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1273 F: arch/arm/mach-ep93xx/
1274 F: arch/arm/mach-ep93xx/include/mach/
1277 M: Russell King <linux@armlinux.org.uk>
1278 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1280 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1281 F: arch/arm/include/asm/clkdev.h
1282 F: drivers/clk/clkdev.c
1284 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
1285 M: Mike Rapoport <mike@compulab.co.il>
1286 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1289 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1290 M: Baruch Siach <baruch@tkos.co.il>
1291 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1293 F: arch/arm/boot/dts/cx92755*
1296 ARM/CONTEC MICRO9 MACHINE SUPPORT
1297 M: Hubert Feurstein <hubert.feurstein@contec.at>
1299 F: arch/arm/mach-ep93xx/micro9.c
1301 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1302 M: Mathieu Poirier <mathieu.poirier@linaro.org>
1303 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1305 F: drivers/hwtracing/coresight/*
1306 F: Documentation/trace/coresight.txt
1307 F: Documentation/trace/coresight-cpu-debug.txt
1308 F: Documentation/devicetree/bindings/arm/coresight.txt
1309 F: Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1310 F: Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1311 F: tools/perf/arch/arm/util/pmu.c
1312 F: tools/perf/arch/arm/util/auxtrace.c
1313 F: tools/perf/arch/arm/util/cs-etm.c
1314 F: tools/perf/arch/arm/util/cs-etm.h
1315 F: tools/perf/util/cs-etm.h
1317 ARM/CORGI MACHINE SUPPORT
1318 M: Richard Purdie <rpurdie@rpsys.net>
1321 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1322 M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
1323 M: Linus Walleij <linus.walleij@linaro.org>
1324 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1325 T: git git://github.com/ulli-kroll/linux.git
1327 F: Documentation/devicetree/bindings/arm/gemini.txt
1328 F: Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1329 F: Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1330 F: arch/arm/mach-gemini/
1331 F: drivers/pinctrl/pinctrl-gemini.c
1332 F: drivers/rtc/rtc-ftrtc010.c
1334 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1335 M: Barry Song <baohua@kernel.org>
1336 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1337 T: git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1339 F: arch/arm/boot/dts/prima2*
1340 F: arch/arm/mach-prima2/
1341 F: drivers/clk/sirf/
1342 F: drivers/clocksource/timer-prima2.c
1343 F: drivers/clocksource/timer-atlas7.c
1346 ARM/EBSA110 MACHINE SUPPORT
1347 M: Russell King <linux@armlinux.org.uk>
1348 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1349 W: http://www.armlinux.org.uk/
1351 F: arch/arm/mach-ebsa110/
1352 F: drivers/net/ethernet/amd/am79c961a.*
1354 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1355 M: Uwe Kleine-König <kernel@pengutronix.de>
1356 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1360 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1361 M: Robert Jarzmik <robert.jarzmik@free.fr>
1362 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1364 F: arch/arm/mach-pxa/ezx.c
1366 ARM/FARADAY FA526 PORT
1367 M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
1368 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1370 T: git git://git.berlios.de/gemini-board
1371 F: arch/arm/mm/*-fa*
1373 ARM/FOOTBRIDGE ARCHITECTURE
1374 M: Russell King <linux@armlinux.org.uk>
1375 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1376 W: http://www.armlinux.org.uk/
1378 F: arch/arm/include/asm/hardware/dec21285.h
1379 F: arch/arm/mach-footbridge/
1381 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1382 M: Shawn Guo <shawnguo@kernel.org>
1383 M: Sascha Hauer <kernel@pengutronix.de>
1384 R: Fabio Estevam <fabio.estevam@nxp.com>
1385 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1387 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1388 F: arch/arm/mach-imx/
1389 F: arch/arm/mach-mxs/
1390 F: arch/arm/boot/dts/imx*
1391 F: arch/arm/configs/imx*_defconfig
1396 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1397 M: Shawn Guo <shawnguo@kernel.org>
1398 M: Sascha Hauer <kernel@pengutronix.de>
1399 R: Stefan Agner <stefan@agner.ch>
1400 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1402 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1403 F: arch/arm/mach-imx/*vf610*
1404 F: arch/arm/boot/dts/vf*
1406 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1407 M: Lennert Buytenhek <kernel@wantstofly.org>
1408 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1411 ARM/GUMSTIX MACHINE SUPPORT
1412 M: Steve Sakoman <sakoman@gmail.com>
1413 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1416 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1417 M: Philipp Zabel <philipp.zabel@gmail.com>
1418 M: Paul Parsons <lost.distance@yahoo.com>
1419 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1421 F: arch/arm/mach-pxa/hx4700.c
1422 F: arch/arm/mach-pxa/include/mach/hx4700.h
1423 F: sound/soc/pxa/hx4700.c
1425 ARM/HISILICON SOC SUPPORT
1426 M: Wei Xu <xuwei5@hisilicon.com>
1427 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1428 W: http://www.hisilicon.com
1430 T: git git://github.com/hisilicon/linux-hisi.git
1431 F: arch/arm/mach-hisi/
1432 F: arch/arm/boot/dts/hi3*
1433 F: arch/arm/boot/dts/hip*
1434 F: arch/arm/boot/dts/hisi*
1435 F: arch/arm64/boot/dts/hisilicon/
1437 ARM/HP JORNADA 7XX MACHINE SUPPORT
1438 M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
1441 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1442 F: arch/arm/mach-sa1100/jornada720.c
1443 F: arch/arm/mach-sa1100/include/mach/jornada720.h
1445 ARM/IGEP MACHINE SUPPORT
1446 M: Enric Balletbo i Serra <eballetbo@gmail.com>
1447 M: Javier Martinez Canillas <javier@dowhile0.org>
1448 L: linux-omap@vger.kernel.org
1449 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1451 F: arch/arm/boot/dts/omap3-igep*
1453 ARM/INCOME PXA270 SUPPORT
1454 M: Marek Vasut <marek.vasut@gmail.com>
1455 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1457 F: arch/arm/mach-pxa/colibri-pxa270-income.c
1459 ARM/INTEL IOP13XX ARM ARCHITECTURE
1460 M: Lennert Buytenhek <kernel@wantstofly.org>
1461 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1464 ARM/INTEL IOP32X ARM ARCHITECTURE
1465 M: Lennert Buytenhek <kernel@wantstofly.org>
1466 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1469 ARM/INTEL IOP33X ARM ARCHITECTURE
1470 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1473 ARM/INTEL IQ81342EX MACHINE SUPPORT
1474 M: Lennert Buytenhek <kernel@wantstofly.org>
1475 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1478 ARM/INTEL IXDP2850 MACHINE SUPPORT
1479 M: Lennert Buytenhek <kernel@wantstofly.org>
1480 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1483 ARM/INTEL IXP4XX ARM ARCHITECTURE
1484 M: Imre Kaloz <kaloz@openwrt.org>
1485 M: Krzysztof Halasa <khalasa@piap.pl>
1486 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1488 F: arch/arm/mach-ixp4xx/
1490 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1491 M: Jonathan Cameron <jic23@cam.ac.uk>
1492 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1494 F: arch/arm/mach-pxa/stargate2.c
1495 F: drivers/pcmcia/pxa2xx_stargate2.c
1497 ARM/INTEL XSC3 (MANZANO) ARM CORE
1498 M: Lennert Buytenhek <kernel@wantstofly.org>
1499 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1502 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1503 M: Lennert Buytenhek <kernel@wantstofly.org>
1504 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1507 ARM/LG1K ARCHITECTURE
1508 M: Chanho Min <chanho.min@lge.com>
1509 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1511 F: arch/arm64/boot/dts/lg/
1513 ARM/LOGICPD PXA270 MACHINE SUPPORT
1514 M: Lennert Buytenhek <kernel@wantstofly.org>
1515 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1518 ARM/LPC18XX ARCHITECTURE
1519 M: Joachim Eastwood <manabian@gmail.com>
1520 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1522 F: arch/arm/boot/dts/lpc43*
1523 F: drivers/clk/nxp/clk-lpc18xx*
1524 F: drivers/clocksource/time-lpc32xx.c
1525 F: drivers/i2c/busses/i2c-lpc2k.c
1526 F: drivers/memory/pl172.c
1527 F: drivers/mtd/spi-nor/nxp-spifi.c
1528 F: drivers/rtc/rtc-lpc24xx.c
1531 ARM/LPC32XX SOC SUPPORT
1532 M: Vladimir Zapolskiy <vz@mleia.com>
1533 M: Sylvain Lemieux <slemieux.tyco@gmail.com>
1534 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1535 T: git git://github.com/vzapolskiy/linux-lpc32xx.git
1537 F: arch/arm/boot/dts/lpc32*
1538 F: arch/arm/mach-lpc32xx/
1539 F: drivers/i2c/busses/i2c-pnx.c
1540 F: drivers/net/ethernet/nxp/lpc_eth.c
1541 F: drivers/usb/host/ohci-nxp.c
1542 F: drivers/watchdog/pnx4008_wdt.c
1545 ARM/MAGICIAN MACHINE SUPPORT
1546 M: Philipp Zabel <philipp.zabel@gmail.com>
1549 ARM/Marvell Berlin SoC support
1550 M: Jisheng Zhang <jszhang@marvell.com>
1551 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1552 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1554 F: arch/arm/mach-berlin/
1555 F: arch/arm/boot/dts/berlin*
1556 F: arch/arm64/boot/dts/marvell/berlin*
1558 ARM/Marvell Dove/MV78xx0/Orion SOC support
1559 M: Jason Cooper <jason@lakedaemon.net>
1560 M: Andrew Lunn <andrew@lunn.ch>
1561 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1562 M: Gregory Clement <gregory.clement@free-electrons.com>
1563 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1565 F: Documentation/devicetree/bindings/soc/dove/
1566 F: arch/arm/mach-dove/
1567 F: arch/arm/mach-mv78xx0/
1568 F: arch/arm/mach-orion5x/
1569 F: arch/arm/plat-orion/
1570 F: arch/arm/boot/dts/dove*
1571 F: arch/arm/boot/dts/orion5x*
1573 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K SOC support
1574 M: Jason Cooper <jason@lakedaemon.net>
1575 M: Andrew Lunn <andrew@lunn.ch>
1576 M: Gregory Clement <gregory.clement@free-electrons.com>
1577 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1578 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1580 F: arch/arm/boot/dts/armada*
1581 F: arch/arm/boot/dts/kirkwood*
1582 F: arch/arm/configs/mvebu_*_defconfig
1583 F: arch/arm/mach-mvebu/
1584 F: arch/arm64/boot/dts/marvell/armada*
1585 F: drivers/cpufreq/mvebu-cpufreq.c
1586 F: drivers/irqchip/irq-armada-370-xp.c
1587 F: drivers/irqchip/irq-mvebu-*
1588 F: drivers/pinctrl/mvebu/
1589 F: drivers/rtc/rtc-armada38x.c
1591 ARM/Mediatek RTC DRIVER
1592 M: Eddie Huang <eddie.huang@mediatek.com>
1593 M: Sean Wang <sean.wang@mediatek.com>
1594 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1595 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1597 F: Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
1598 F: drivers/rtc/rtc-mt6397.c
1599 F: drivers/rtc/rtc-mt7622.c
1601 ARM/Mediatek SoC support
1602 M: Matthias Brugger <matthias.bgg@gmail.com>
1603 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1604 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1606 F: arch/arm/boot/dts/mt6*
1607 F: arch/arm/boot/dts/mt7*
1608 F: arch/arm/boot/dts/mt8*
1609 F: arch/arm/mach-mediatek/
1610 F: arch/arm64/boot/dts/mediatek/
1614 ARM/Mediatek USB3 PHY DRIVER
1615 M: Chunfeng Yun <chunfeng.yun@mediatek.com>
1616 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1617 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1619 F: drivers/phy/mediatek/phy-mtk-tphy.c
1621 ARM/MICREL KS8695 ARCHITECTURE
1622 M: Greg Ungerer <gerg@uclinux.org>
1623 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1624 F: arch/arm/mach-ks8695/
1627 ARM/MIOA701 MACHINE SUPPORT
1628 M: Robert Jarzmik <robert.jarzmik@free.fr>
1629 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1630 F: arch/arm/mach-pxa/mioa701.c
1633 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1634 M: Michael Petchkovsky <mkpetch@internode.on.net>
1637 ARM/NOMADIK ARCHITECTURE
1638 M: Alessandro Rubini <rubini@unipv.it>
1639 M: Linus Walleij <linus.walleij@linaro.org>
1640 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1642 F: arch/arm/mach-nomadik/
1643 F: drivers/pinctrl/nomadik/
1644 F: drivers/i2c/busses/i2c-nomadik.c
1645 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1647 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1648 M: Wan ZongShun <mcuos.com@gmail.com>
1649 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1650 W: http://www.mcuos.com
1652 F: arch/arm/mach-w90x900/
1653 F: drivers/input/keyboard/w90p910_keypad.c
1654 F: drivers/input/touchscreen/w90p910_ts.c
1655 F: drivers/watchdog/nuc900_wdt.c
1656 F: drivers/net/ethernet/nuvoton/w90p910_ether.c
1657 F: drivers/mtd/nand/nuc900_nand.c
1658 F: drivers/rtc/rtc-nuc900.c
1659 F: drivers/spi/spi-nuc900.c
1660 F: drivers/usb/host/ehci-w90x900.c
1661 F: drivers/video/fbdev/nuc900fb.c
1663 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1664 M: Nelson Castillo <arhuaco@freaks-unidos.net>
1665 L: openmoko-kernel@lists.openmoko.org (subscribers-only)
1666 W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
1669 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1670 M: Alexander Clouter <alex@digriz.org.uk>
1671 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1672 W: http://www.digriz.org.uk/ts78xx/kernel
1674 F: arch/arm/mach-orion5x/ts78xx-*
1676 ARM/OXNAS platform support
1677 M: Neil Armstrong <narmstrong@baylibre.com>
1678 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1679 L: linux-oxnas@lists.tuxfamily.org (moderated for non-subscribers)
1681 F: arch/arm/mach-oxnas/
1682 F: arch/arm/boot/dts/ox8*.dtsi
1683 F: arch/arm/boot/dts/wd-mbwe.dts
1684 F: arch/arm/boot/dts/cloudengines-pogoplug-series-3.dts
1687 ARM/PALM TREO SUPPORT
1688 M: Tomas Cech <sleep_walker@suse.com>
1689 L: linux-arm-kernel@lists.infradead.org
1690 W: http://hackndev.com
1692 F: arch/arm/mach-pxa/include/mach/palmtreo.h
1693 F: arch/arm/mach-pxa/palmtreo.c
1695 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1696 M: Marek Vasut <marek.vasut@gmail.com>
1697 L: linux-arm-kernel@lists.infradead.org
1698 W: http://hackndev.com
1700 F: arch/arm/mach-pxa/include/mach/palmtx.h
1701 F: arch/arm/mach-pxa/palmtx.c
1702 F: arch/arm/mach-pxa/include/mach/palmt5.h
1703 F: arch/arm/mach-pxa/palmt5.c
1704 F: arch/arm/mach-pxa/include/mach/palmld.h
1705 F: arch/arm/mach-pxa/palmld.c
1706 F: arch/arm/mach-pxa/include/mach/palmte2.h
1707 F: arch/arm/mach-pxa/palmte2.c
1708 F: arch/arm/mach-pxa/include/mach/palmtc.h
1709 F: arch/arm/mach-pxa/palmtc.c
1712 M: Sergey Lapin <slapin@ossfans.org>
1713 L: linux-arm-kernel@lists.infradead.org
1714 W: http://hackndev.com
1716 F: arch/arm/mach-pxa/include/mach/palmz72.h
1717 F: arch/arm/mach-pxa/palmz72.c
1720 M: Peter Chubb <pleb@gelato.unsw.edu.au>
1721 W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1724 ARM/PT DIGITAL BOARD PORT
1725 M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1726 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1727 W: http://www.armlinux.org.uk/
1730 ARM/QUALCOMM SUPPORT
1731 M: Andy Gross <andy.gross@linaro.org>
1732 M: David Brown <david.brown@linaro.org>
1733 L: linux-arm-msm@vger.kernel.org
1734 L: linux-soc@vger.kernel.org
1736 F: Documentation/devicetree/bindings/soc/qcom/
1737 F: arch/arm/boot/dts/qcom-*.dts
1738 F: arch/arm/boot/dts/qcom-*.dtsi
1739 F: arch/arm/mach-qcom/
1740 F: arch/arm64/boot/dts/qcom/*
1741 F: drivers/i2c/busses/i2c-qup.c
1742 F: drivers/clk/qcom/
1743 F: drivers/dma/qcom/
1744 F: drivers/soc/qcom/
1745 F: drivers/spi/spi-qup.c
1746 F: drivers/tty/serial/msm_serial.h
1747 F: drivers/tty/serial/msm_serial.c
1748 F: drivers/*/pm8???-*
1749 F: drivers/mfd/ssbi.c
1750 F: drivers/firmware/qcom_scm.c
1751 T: git git://git.kernel.org/pub/scm/linux/kernel/git/agross/linux.git
1753 ARM/RADISYS ENP2611 MACHINE SUPPORT
1754 M: Lennert Buytenhek <kernel@wantstofly.org>
1755 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1758 ARM/REALTEK ARCHITECTURE
1759 M: Andreas Färber <afaerber@suse.de>
1760 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1762 F: arch/arm64/boot/dts/realtek/
1763 F: Documentation/devicetree/bindings/arm/realtek.txt
1765 ARM/RENESAS ARM64 ARCHITECTURE
1766 M: Simon Horman <horms@verge.net.au>
1767 M: Magnus Damm <magnus.damm@gmail.com>
1768 L: linux-renesas-soc@vger.kernel.org
1769 Q: http://patchwork.kernel.org/project/linux-renesas-soc/list/
1770 T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1772 F: arch/arm64/boot/dts/renesas/
1773 F: Documentation/devicetree/bindings/arm/shmobile.txt
1774 F: drivers/soc/renesas/
1775 F: include/linux/soc/renesas/
1777 ARM/RISCPC ARCHITECTURE
1778 M: Russell King <linux@armlinux.org.uk>
1779 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1780 W: http://www.armlinux.org.uk/
1782 F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1783 F: arch/arm/include/asm/hardware/ioc.h
1784 F: arch/arm/include/asm/hardware/iomd.h
1785 F: arch/arm/include/asm/hardware/memc.h
1786 F: arch/arm/mach-rpc/
1787 F: drivers/net/ethernet/8390/etherh.c
1788 F: drivers/net/ethernet/i825xx/ether1*
1789 F: drivers/net/ethernet/seeq/ether3*
1790 F: drivers/scsi/arm/
1792 ARM/Rockchip SoC support
1793 M: Heiko Stuebner <heiko@sntech.de>
1794 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1795 L: linux-rockchip@lists.infradead.org
1796 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
1798 F: arch/arm/boot/dts/rk3*
1799 F: arch/arm/boot/dts/rv1108*
1800 F: arch/arm/mach-rockchip/
1801 F: drivers/clk/rockchip/
1802 F: drivers/i2c/busses/i2c-rk3x.c
1803 F: drivers/*/*rockchip*
1804 F: drivers/*/*/*rockchip*
1805 F: sound/soc/rockchip/
1808 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1809 M: Kukjin Kim <kgene@kernel.org>
1810 M: Krzysztof Kozlowski <krzk@kernel.org>
1811 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1812 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1813 Q: https://patchwork.kernel.org/project/linux-samsung-soc/list/
1815 F: arch/arm/boot/dts/s3c*
1816 F: arch/arm/boot/dts/s5p*
1817 F: arch/arm/boot/dts/samsung*
1818 F: arch/arm/boot/dts/exynos*
1819 F: arch/arm64/boot/dts/exynos/
1820 F: arch/arm/plat-samsung/
1821 F: arch/arm/mach-s3c24*/
1822 F: arch/arm/mach-s3c64xx/
1823 F: arch/arm/mach-s5p*/
1824 F: arch/arm/mach-exynos*/
1825 F: drivers/*/*s3c24*
1826 F: drivers/*/*/*s3c24*
1827 F: drivers/*/*s3c64xx*
1828 F: drivers/*/*s5pv210*
1829 F: drivers/memory/samsung/*
1830 F: drivers/soc/samsung/*
1831 F: Documentation/arm/Samsung/
1832 F: Documentation/devicetree/bindings/arm/samsung/
1833 F: Documentation/devicetree/bindings/sram/samsung-sram.txt
1834 F: Documentation/devicetree/bindings/power/pd-samsung.txt
1837 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1838 M: Kyungmin Park <kyungmin.park@samsung.com>
1839 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1841 F: arch/arm/mach-s5pv210/
1843 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1844 M: Kyungmin Park <kyungmin.park@samsung.com>
1845 M: Kamil Debski <kamil@wypas.org>
1846 M: Andrzej Hajda <a.hajda@samsung.com>
1847 L: linux-arm-kernel@lists.infradead.org
1848 L: linux-media@vger.kernel.org
1850 F: drivers/media/platform/s5p-g2d/
1852 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
1853 M: Marek Szyprowski <m.szyprowski@samsung.com>
1854 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1855 L: linux-media@vger.kernel.org
1857 F: drivers/media/platform/s5p-cec/
1858 F: Documentation/devicetree/bindings/media/s5p-cec.txt
1860 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
1861 M: Andrzej Pietrasiewicz <andrzej.p@samsung.com>
1862 M: Jacek Anaszewski <jacek.anaszewski@gmail.com>
1863 L: linux-arm-kernel@lists.infradead.org
1864 L: linux-media@vger.kernel.org
1866 F: drivers/media/platform/s5p-jpeg/
1868 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1869 M: Kyungmin Park <kyungmin.park@samsung.com>
1870 M: Kamil Debski <kamil@wypas.org>
1871 M: Jeongtae Park <jtp.park@samsung.com>
1872 M: Andrzej Hajda <a.hajda@samsung.com>
1873 L: linux-arm-kernel@lists.infradead.org
1874 L: linux-media@vger.kernel.org
1876 F: arch/arm/plat-samsung/s5p-dev-mfc.c
1877 F: drivers/media/platform/s5p-mfc/
1879 ARM/SHMOBILE ARM ARCHITECTURE
1880 M: Simon Horman <horms@verge.net.au>
1881 M: Magnus Damm <magnus.damm@gmail.com>
1882 L: linux-renesas-soc@vger.kernel.org
1883 Q: http://patchwork.kernel.org/project/linux-renesas-soc/list/
1884 T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1886 F: arch/arm/boot/dts/emev2*
1887 F: arch/arm/boot/dts/r7s*
1888 F: arch/arm/boot/dts/r8a*
1889 F: arch/arm/boot/dts/sh*
1890 F: arch/arm/configs/shmobile_defconfig
1891 F: arch/arm/include/debug/renesas-scif.S
1892 F: arch/arm/mach-shmobile/
1893 F: Documentation/devicetree/bindings/arm/shmobile.txt
1894 F: drivers/soc/renesas/
1895 F: include/linux/soc/renesas/
1897 ARM/SOCFPGA ARCHITECTURE
1898 M: Dinh Nguyen <dinguyen@kernel.org>
1900 F: arch/arm/mach-socfpga/
1901 F: arch/arm/boot/dts/socfpga*
1902 F: arch/arm/configs/socfpga_defconfig
1903 F: arch/arm64/boot/dts/altera/
1904 W: http://www.rocketboards.org
1905 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
1907 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1908 M: Dinh Nguyen <dinguyen@kernel.org>
1910 F: drivers/clk/socfpga/
1912 ARM/SOCFPGA EDAC SUPPORT
1913 M: Thor Thayer <thor.thayer@linux.intel.com>
1915 F: drivers/edac/altera_edac.
1917 ARM/STI ARCHITECTURE
1918 M: Patrice Chotard <patrice.chotard@st.com>
1919 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1920 W: http://www.stlinux.com
1922 F: arch/arm/mach-sti/
1923 F: arch/arm/boot/dts/sti*
1924 F: drivers/char/hw_random/st-rng.c
1925 F: drivers/clocksource/arm_global_timer.c
1926 F: drivers/clocksource/clksrc_st_lpc.c
1927 F: drivers/cpufreq/sti-cpufreq.c
1928 F: drivers/dma/st_fdma*
1929 F: drivers/i2c/busses/i2c-st.c
1930 F: drivers/media/rc/st_rc.c
1931 F: drivers/media/platform/sti/c8sectpfe/
1932 F: drivers/mmc/host/sdhci-st.c
1933 F: drivers/phy/st/phy-miphy28lp.c
1934 F: drivers/phy/st/phy-stih407-usb.c
1935 F: drivers/pinctrl/pinctrl-st.c
1936 F: drivers/remoteproc/st_remoteproc.c
1937 F: drivers/remoteproc/st_slim_rproc.c
1938 F: drivers/reset/sti/
1939 F: drivers/rtc/rtc-st-lpc.c
1940 F: drivers/tty/serial/st-asc.c
1941 F: drivers/usb/dwc3/dwc3-st.c
1942 F: drivers/usb/host/ehci-st.c
1943 F: drivers/usb/host/ohci-st.c
1944 F: drivers/watchdog/st_lpc_wdt.c
1945 F: drivers/ata/ahci_st.c
1946 F: include/linux/remoteproc/st_slim_rproc.h
1948 ARM/STM32 ARCHITECTURE
1949 M: Maxime Coquelin <mcoquelin.stm32@gmail.com>
1950 M: Alexandre Torgue <alexandre.torgue@st.com>
1951 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1953 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git
1955 F: drivers/clocksource/armv7m_systick.c
1957 ARM/TANGO ARCHITECTURE
1958 M: Marc Gonzalez <marc_gonzalez@sigmadesigns.com>
1959 L: linux-arm-kernel@lists.infradead.org
1963 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
1964 M: Lennert Buytenhek <kernel@wantstofly.org>
1965 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1968 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
1969 M: Hans Verkuil <hans.verkuil@cisco.com>
1970 L: linux-tegra@vger.kernel.org
1971 L: linux-media@vger.kernel.org
1973 F: drivers/media/platform/tegra-cec/
1974 F: Documentation/devicetree/bindings/media/tegra-cec.txt
1976 ARM/TETON BGA MACHINE SUPPORT
1977 M: "Mark F. Brown" <mark.brown314@gmail.com>
1978 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1981 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
1982 M: Santosh Shilimkar <ssantosh@kernel.org>
1983 L: linux-kernel@vger.kernel.org
1985 F: drivers/memory/*emif*
1987 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
1988 M: Santosh Shilimkar <ssantosh@kernel.org>
1989 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1991 F: arch/arm/mach-keystone/
1992 F: arch/arm/boot/dts/keystone-*
1993 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
1995 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
1996 M: Santosh Shilimkar <ssantosh@kernel.org>
1997 L: linux-kernel@vger.kernel.org
1999 F: drivers/clk/keystone/
2001 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
2002 M: Santosh Shilimkar <ssantosh@kernel.org>
2003 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2004 L: linux-kernel@vger.kernel.org
2006 F: drivers/clocksource/timer-keystone.c
2008 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2009 M: Santosh Shilimkar <ssantosh@kernel.org>
2010 L: linux-kernel@vger.kernel.org
2012 F: drivers/power/reset/keystone-reset.c
2014 ARM/THECUS N2100 MACHINE SUPPORT
2015 M: Lennert Buytenhek <kernel@wantstofly.org>
2016 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2019 ARM/TOSA MACHINE SUPPORT
2020 M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2021 M: Dirk Opfer <dirk@opfer-online.de>
2024 ARM/U300 MACHINE SUPPORT
2025 M: Linus Walleij <linus.walleij@linaro.org>
2026 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2028 F: arch/arm/mach-u300/
2029 F: drivers/clocksource/timer-u300.c
2030 F: drivers/i2c/busses/i2c-stu300.c
2031 F: drivers/rtc/rtc-coh901331.c
2032 F: drivers/watchdog/coh901327_wdt.c
2033 F: drivers/dma/coh901318*
2034 F: drivers/mfd/ab3100*
2035 F: drivers/rtc/rtc-ab3100.c
2036 F: drivers/rtc/rtc-coh901331.c
2037 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
2039 ARM/UNIPHIER ARCHITECTURE
2040 M: Masahiro Yamada <yamada.masahiro@socionext.com>
2041 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2042 T: git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-uniphier.git
2044 F: Documentation/devicetree/bindings/gpio/gpio-uniphier.txt
2045 F: arch/arm/boot/dts/uniphier*
2046 F: arch/arm/include/asm/hardware/cache-uniphier.h
2047 F: arch/arm/mach-uniphier/
2048 F: arch/arm/mm/cache-uniphier.c
2049 F: arch/arm64/boot/dts/socionext/
2050 F: drivers/bus/uniphier-system-bus.c
2051 F: drivers/clk/uniphier/
2052 F: drivers/gpio/gpio-uniphier.c
2053 F: drivers/i2c/busses/i2c-uniphier*
2054 F: drivers/irqchip/irq-uniphier-aidet.c
2055 F: drivers/pinctrl/uniphier/
2056 F: drivers/reset/reset-uniphier.c
2057 F: drivers/tty/serial/8250/8250_uniphier.c
2060 ARM/Ux500 ARM ARCHITECTURE
2061 M: Linus Walleij <linus.walleij@linaro.org>
2062 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2064 F: arch/arm/mach-ux500/
2065 F: drivers/clocksource/clksrc-dbx500-prcmu.c
2066 F: drivers/dma/ste_dma40*
2067 F: drivers/hwspinlock/u8500_hsem.c
2068 F: drivers/mfd/abx500*
2069 F: drivers/mfd/ab8500*
2070 F: drivers/mfd/dbx500*
2071 F: drivers/mfd/db8500*
2072 F: drivers/pinctrl/nomadik/pinctrl-ab*
2073 F: drivers/pinctrl/nomadik/pinctrl-nomadik*
2074 F: drivers/rtc/rtc-ab8500.c
2075 F: drivers/rtc/rtc-pl031.c
2076 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
2078 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
2079 M: Ulf Hansson <ulf.hansson@linaro.org>
2080 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2081 T: git git://git.linaro.org/people/ulfh/clk.git
2083 F: drivers/clk/ux500/
2085 ARM/VERSATILE EXPRESS PLATFORM
2086 M: Liviu Dudau <liviu.dudau@arm.com>
2087 M: Sudeep Holla <sudeep.holla@arm.com>
2088 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2089 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2091 F: arch/arm/boot/dts/vexpress*
2092 F: arch/arm64/boot/dts/arm/
2093 F: arch/arm/mach-vexpress/
2096 F: drivers/clk/versatile/clk-vexpress-osc.c
2097 F: drivers/clocksource/versatile.c
2101 M: Russell King <linux@armlinux.org.uk>
2102 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2103 W: http://www.armlinux.org.uk/
2107 ARM/VOIPAC PXA270 SUPPORT
2108 M: Marek Vasut <marek.vasut@gmail.com>
2109 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2111 F: arch/arm/mach-pxa/vpac270.c
2112 F: arch/arm/mach-pxa/include/mach/vpac270.h
2114 ARM/VT8500 ARM ARCHITECTURE
2115 M: Tony Prisk <linux@prisktech.co.nz>
2116 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2118 F: arch/arm/mach-vt8500/
2119 F: drivers/clocksource/vt8500_timer.c
2120 F: drivers/i2c/busses/i2c-wmt.c
2121 F: drivers/mmc/host/wmt-sdmmc.c
2122 F: drivers/pwm/pwm-vt8500.c
2123 F: drivers/rtc/rtc-vt8500.c
2124 F: drivers/tty/serial/vt8500_serial.c
2125 F: drivers/usb/host/ehci-platform.c
2126 F: drivers/usb/host/uhci-platform.c
2127 F: drivers/video/fbdev/vt8500lcdfb.*
2128 F: drivers/video/fbdev/wm8505fb*
2129 F: drivers/video/fbdev/wmt_ge_rops.*
2131 ARM/ZIPIT Z2 SUPPORT
2132 M: Marek Vasut <marek.vasut@gmail.com>
2133 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2135 F: arch/arm/mach-pxa/z2.c
2136 F: arch/arm/mach-pxa/include/mach/z2.h
2138 ARM/ZTE ARCHITECTURE
2139 M: Jun Nie <jun.nie@linaro.org>
2140 M: Baoyou Xie <baoyou.xie@linaro.org>
2141 M: Shawn Guo <shawnguo@kernel.org>
2142 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2144 F: arch/arm/boot/dts/zx2967*
2145 F: arch/arm/mach-zx/
2146 F: arch/arm64/boot/dts/zte/
2148 F: drivers/dma/zx_dma.c
2149 F: drivers/gpio/gpio-zx.c
2150 F: drivers/i2c/busses/i2c-zx2967.c
2151 F: drivers/mmc/host/dw_mmc-zx.*
2152 F: drivers/pinctrl/zte/
2154 F: drivers/thermal/zx2967_thermal.c
2155 F: drivers/watchdog/zx2967_wdt.c
2156 F: Documentation/devicetree/bindings/arm/zte.txt
2157 F: Documentation/devicetree/bindings/clock/zx2967*.txt
2158 F: Documentation/devicetree/bindings/dma/zxdma.txt
2159 F: Documentation/devicetree/bindings/gpio/zx296702-gpio.txt
2160 F: Documentation/devicetree/bindings/i2c/i2c-zx2967.txt
2161 F: Documentation/devicetree/bindings/mmc/zx-dw-mshc.txt
2162 F: Documentation/devicetree/bindings/pinctrl/pinctrl-zx.txt
2163 F: Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt
2164 F: Documentation/devicetree/bindings/soc/zte/
2165 F: Documentation/devicetree/bindings/sound/zte,*.txt
2166 F: Documentation/devicetree/bindings/thermal/zx2967-thermal.txt
2167 F: Documentation/devicetree/bindings/watchdog/zte,zx2967-wdt.txt
2168 F: include/dt-bindings/clock/zx2967*.h
2169 F: include/dt-bindings/soc/zte,*.h
2170 F: sound/soc/codecs/zx_aud96p22.c
2173 ARM/ZYNQ ARCHITECTURE
2174 M: Michal Simek <michal.simek@xilinx.com>
2175 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2176 W: http://wiki.xilinx.com
2177 T: git https://github.com/Xilinx/linux-xlnx.git
2179 F: arch/arm/mach-zynq/
2180 F: drivers/cpuidle/cpuidle-zynq.c
2181 F: drivers/block/xsysace.c
2184 F: drivers/clocksource/cadence_ttc_timer.c
2185 F: drivers/i2c/busses/i2c-cadence.c
2186 F: drivers/mmc/host/sdhci-of-arasan.c
2187 F: drivers/edac/synopsys_edac.c
2189 ARM64 PORT (AARCH64 ARCHITECTURE)
2190 M: Catalin Marinas <catalin.marinas@arm.com>
2191 M: Will Deacon <will.deacon@arm.com>
2192 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2193 T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2196 F: Documentation/arm64/
2198 AS3645A LED FLASH CONTROLLER DRIVER
2199 M: Sakari Ailus <sakari.ailus@iki.fi>
2200 L: linux-leds@vger.kernel.org
2202 F: drivers/leds/leds-as3645a.c
2204 AS3645A LED FLASH CONTROLLER DRIVER
2205 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2206 L: linux-media@vger.kernel.org
2207 T: git git://linuxtv.org/media_tree.git
2209 F: drivers/media/i2c/as3645a.c
2210 F: include/media/i2c/as3645a.h
2212 ASAHI KASEI AK8974 DRIVER
2213 M: Linus Walleij <linus.walleij@linaro.org>
2214 L: linux-iio@vger.kernel.org
2215 W: http://www.akm.com/
2217 F: drivers/iio/magnetometer/ak8974.c
2219 ASC7621 HARDWARE MONITOR DRIVER
2220 M: George Joseph <george.joseph@fairview5.com>
2221 L: linux-hwmon@vger.kernel.org
2223 F: Documentation/hwmon/asc7621
2224 F: drivers/hwmon/asc7621.c
2226 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2227 M: Corentin Chary <corentin.chary@gmail.com>
2228 L: acpi4asus-user@lists.sourceforge.net
2229 L: platform-driver-x86@vger.kernel.org
2230 W: http://acpi4asus.sf.net
2232 F: drivers/platform/x86/asus*.c
2233 F: drivers/platform/x86/eeepc*.c
2235 ASUS WIRELESS RADIO CONTROL DRIVER
2236 M: João Paulo Rechi Vita <jprvita@gmail.com>
2237 L: platform-driver-x86@vger.kernel.org
2239 F: drivers/platform/x86/asus-wireless.c
2242 M: David Howells <dhowells@redhat.com>
2243 L: keyrings@vger.kernel.org
2245 F: Documentation/crypto/asymmetric-keys.txt
2246 F: include/linux/verification.h
2247 F: include/crypto/public_key.h
2248 F: include/crypto/pkcs7.h
2249 F: crypto/asymmetric_keys/
2251 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2252 R: Dan Williams <dan.j.williams@intel.com>
2253 W: http://sourceforge.net/projects/xscaleiop
2255 F: Documentation/crypto/async-tx-api.txt
2258 F: include/linux/dmaengine.h
2259 F: include/linux/async_tx.h
2262 M: Bartosz Golaszewski <brgl@bgdev.pl>
2263 L: linux-i2c@vger.kernel.org
2265 F: drivers/misc/eeprom/at24.c
2266 F: include/linux/platform_data/at24.h
2268 ATA OVER ETHERNET (AOE) DRIVER
2269 M: "Ed L. Cashin" <ed.cashin@acm.org>
2270 W: http://www.openaoe.org/
2272 F: Documentation/aoe/
2273 F: drivers/block/aoe/
2275 ATHEROS 71XX/9XXX GPIO DRIVER
2276 M: Alban Bedel <albeu@free.fr>
2277 W: https://github.com/AlbanBedel/linux
2278 T: git git://github.com/AlbanBedel/linux
2280 F: drivers/gpio/gpio-ath79.c
2281 F: Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2283 ATHEROS ATH GENERIC UTILITIES
2284 M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
2285 L: linux-wireless@vger.kernel.org
2287 F: drivers/net/wireless/ath/*
2289 ATHEROS ATH5K WIRELESS DRIVER
2290 M: Jiri Slaby <jirislaby@gmail.com>
2291 M: Nick Kossifidis <mickflemm@gmail.com>
2292 M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
2293 L: linux-wireless@vger.kernel.org
2294 W: http://wireless.kernel.org/en/users/Drivers/ath5k
2296 F: drivers/net/wireless/ath/ath5k/
2298 ATHEROS ATH6KL WIRELESS DRIVER
2299 M: Kalle Valo <kvalo@qca.qualcomm.com>
2300 L: linux-wireless@vger.kernel.org
2301 W: http://wireless.kernel.org/en/users/Drivers/ath6kl
2302 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2304 F: drivers/net/wireless/ath/ath6kl/
2307 M: Ville Syrjala <syrjala@sci.fi>
2309 F: drivers/input/misc/ati_remote2.c
2311 ATK0110 HWMON DRIVER
2312 M: Luca Tettamanti <kronos.it@gmail.com>
2313 L: linux-hwmon@vger.kernel.org
2315 F: drivers/hwmon/asus_atk0110.c
2317 ATLX ETHERNET DRIVERS
2318 M: Jay Cliburn <jcliburn@gmail.com>
2319 M: Chris Snook <chris.snook@gmail.com>
2320 L: netdev@vger.kernel.org
2321 W: http://sourceforge.net/projects/atl1
2322 W: http://atl1.sourceforge.net
2324 F: drivers/net/ethernet/atheros/
2327 M: Chas Williams <3chas3@gmail.com>
2328 L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
2329 L: netdev@vger.kernel.org
2330 W: http://linux-atm.sourceforge.net
2333 F: include/linux/atm*
2334 F: include/uapi/linux/atm*
2336 ATMEL AT91 / AT32 MCI DRIVER
2337 M: Ludovic Desroches <ludovic.desroches@microchip.com>
2339 F: drivers/mmc/host/atmel-mci.c
2341 ATMEL AT91 SAMA5D2-Compatible Shutdown Controller
2342 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2344 F: drivers/power/reset/at91-sama5d2_shdwc.c
2346 ATMEL Audio ALSA driver
2347 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2348 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2353 M: Ludovic Desroches <ludovic.desroches@microchip.com>
2354 L: linux-i2c@vger.kernel.org
2356 F: drivers/i2c/busses/i2c-at91.c
2359 M: Ludovic Desroches <ludovic.desroches@microchip.com>
2360 L: linux-media@vger.kernel.org
2362 F: drivers/media/platform/atmel/atmel-isi.c
2363 F: include/media/atmel-isi.h
2366 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2367 L: linux-fbdev@vger.kernel.org
2369 F: drivers/video/fbdev/atmel_lcdfb.c
2370 F: include/video/atmel_lcdc.h
2372 ATMEL MACB ETHERNET DRIVER
2373 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2375 F: drivers/net/ethernet/cadence/
2377 ATMEL MAXTOUCH DRIVER
2378 M: Nick Dyer <nick@shmanahar.org>
2379 T: git git://github.com/ndyer/linux.git
2381 F: Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2382 F: drivers/input/touchscreen/atmel_mxt_ts.c
2383 F: include/linux/platform_data/atmel_mxt_ts.h
2386 M: Wenyou Yang <wenyou.yang@atmel.com>
2387 M: Josh Wu <rainyfeeling@outlook.com>
2388 L: linux-mtd@lists.infradead.org
2390 F: drivers/mtd/nand/atmel/*
2392 ATMEL SAMA5D2 ADC DRIVER
2393 M: Ludovic Desroches <ludovic.desroches@microchip.com>
2394 L: linux-iio@vger.kernel.org
2396 F: drivers/iio/adc/at91-sama5d2_adc.c
2399 M: Ludovic Desroches <ludovic.desroches@microchip.com>
2400 L: linux-mmc@vger.kernel.org
2402 F: drivers/mmc/host/sdhci-of-at91.c
2405 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2407 F: drivers/spi/spi-atmel.*
2410 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2411 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2413 F: drivers/misc/atmel-ssc.c
2414 F: include/linux/atmel-ssc.h
2416 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
2417 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2418 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2420 F: drivers/misc/atmel_tclib.c
2421 F: drivers/clocksource/tcb_clksrc.c
2423 ATMEL USBA UDC DRIVER
2424 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2425 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2427 F: drivers/usb/gadget/udc/atmel_usba_udc.*
2429 ATMEL WIRELESS DRIVER
2430 M: Simon Kelley <simon@thekelleys.org.uk>
2431 L: linux-wireless@vger.kernel.org
2432 W: http://www.thekelleys.org.uk/atmel
2433 W: http://atmelwlandriver.sourceforge.net/
2435 F: drivers/net/wireless/atmel/atmel*
2438 M: Ludovic Desroches <ludovic.desroches@microchip.com>
2439 L: linux-arm-kernel@lists.infradead.org
2440 L: dmaengine@vger.kernel.org
2442 F: drivers/dma/at_xdmac.c
2444 ATOMIC INFRASTRUCTURE
2445 M: Will Deacon <will.deacon@arm.com>
2446 M: Peter Zijlstra <peterz@infradead.org>
2447 R: Boqun Feng <boqun.feng@gmail.com>
2448 L: linux-kernel@vger.kernel.org
2450 F: arch/*/include/asm/atomic*.h
2451 F: include/*/atomic*.h
2453 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2454 M: Bradley Grove <linuxdrivers@attotech.com>
2455 L: linux-scsi@vger.kernel.org
2456 W: http://www.attotech.com
2458 F: drivers/scsi/esas2r
2460 ATUSB IEEE 802.15.4 RADIO DRIVER
2461 M: Stefan Schmidt <stefan@osg.samsung.com>
2462 L: linux-wpan@vger.kernel.org
2464 F: drivers/net/ieee802154/atusb.c
2465 F: drivers/net/ieee802154/atusb.h
2466 F: drivers/net/ieee802154/at86rf230.h
2469 M: Paul Moore <paul@paul-moore.com>
2470 M: Eric Paris <eparis@redhat.com>
2471 L: linux-audit@redhat.com (moderated for non-subscribers)
2472 W: https://github.com/linux-audit
2473 W: https://people.redhat.com/sgrubb/audit
2474 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
2476 F: include/linux/audit.h
2477 F: include/uapi/linux/audit.h
2480 AUXILIARY DISPLAY DRIVERS
2481 M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2482 W: http://miguelojeda.es/auxdisplay.htm
2483 W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2485 F: drivers/auxdisplay/
2486 F: include/linux/cfag12864b.h
2489 M: Ralf Baechle <ralf@linux-mips.org>
2490 L: linux-hams@vger.kernel.org
2491 W: http://www.linux-ax25.org/
2493 F: include/uapi/linux/ax25.h
2494 F: include/net/ax25.h
2498 M: Peter Rosin <peda@axentia.se>
2499 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2501 F: Documentation/devicetree/bindings/arm/axentia.txt
2502 F: arch/arm/boot/dts/at91-linea.dtsi
2503 F: arch/arm/boot/dts/at91-tse850-3.dts
2505 AXENTIA ASOC DRIVERS
2506 M: Peter Rosin <peda@axentia.se>
2507 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2509 F: Documentation/devicetree/bindings/sound/axentia,*
2510 F: sound/soc/atmel/tse850-pcm5142.c
2513 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
2514 M: Mauro Carvalho Chehab <mchehab@kernel.org>
2515 L: linux-media@vger.kernel.org
2516 W: https://linuxtv.org
2517 T: git git://linuxtv.org/media_tree.git
2519 F: drivers/media/usb/dvb-usb-v2/az6007.c
2521 AZTECH FM RADIO RECEIVER DRIVER
2522 M: Hans Verkuil <hverkuil@xs4all.nl>
2523 L: linux-media@vger.kernel.org
2524 T: git git://linuxtv.org/media_tree.git
2525 W: https://linuxtv.org
2527 F: drivers/media/radio/radio-aztech*
2530 L: linux-wireless@vger.kernel.org
2531 L: b43-dev@lists.infradead.org
2532 W: http://wireless.kernel.org/en/users/Drivers/b43
2534 F: drivers/net/wireless/broadcom/b43/
2536 B43LEGACY WIRELESS DRIVER
2537 M: Larry Finger <Larry.Finger@lwfinger.net>
2538 L: linux-wireless@vger.kernel.org
2539 L: b43-dev@lists.infradead.org
2540 W: http://wireless.kernel.org/en/users/Drivers/b43
2542 F: drivers/net/wireless/broadcom/b43legacy/
2544 BACKLIGHT CLASS/SUBSYSTEM
2545 M: Lee Jones <lee.jones@linaro.org>
2546 M: Daniel Thompson <daniel.thompson@linaro.org>
2547 M: Jingoo Han <jingoohan1@gmail.com>
2548 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
2550 F: drivers/video/backlight/
2551 F: include/linux/backlight.h
2552 F: include/linux/pwm_backlight.h
2553 F: Documentation/devicetree/bindings/leds/backlight
2556 M: Marek Lindner <mareklindner@neomailbox.ch>
2557 M: Simon Wunderlich <sw@simonwunderlich.de>
2558 M: Antonio Quartulli <a@unstable.cc>
2559 L: b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
2560 W: https://www.open-mesh.org/
2561 Q: https://patchwork.open-mesh.org/project/batman/list/
2563 F: Documentation/ABI/testing/sysfs-class-net-batman-adv
2564 F: Documentation/ABI/testing/sysfs-class-net-mesh
2565 F: Documentation/networking/batman-adv.rst
2566 F: include/uapi/linux/batman_adv.h
2569 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2570 M: Thomas Sailer <t.sailer@alumni.ethz.ch>
2571 L: linux-hams@vger.kernel.org
2572 W: http://www.baycom.org/~tom/ham/ham.html
2574 F: drivers/net/hamradio/baycom*
2576 BCACHE (BLOCK LAYER CACHE)
2577 M: Michael Lyle <mlyle@lyle.org>
2578 M: Kent Overstreet <kent.overstreet@gmail.com>
2579 L: linux-bcache@vger.kernel.org
2580 W: http://bcache.evilpiepirate.org
2581 C: irc://irc.oftc.net/bcache
2583 F: drivers/md/bcache/
2585 BDISP ST MEDIA DRIVER
2586 M: Fabien Dessenne <fabien.dessenne@st.com>
2587 L: linux-media@vger.kernel.org
2588 T: git git://linuxtv.org/media_tree.git
2589 W: https://linuxtv.org
2591 F: drivers/media/platform/sti/bdisp
2593 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2594 M: Dariusz Marcinkiewicz <reksio@newterm.pl>
2595 L: netdev@vger.kernel.org
2597 F: drivers/net/ethernet/ec_bhf.c
2600 M: Luis de Bethencourt <luisbg@kernel.org>
2601 M: Salah Triki <salah.triki@gmail.com>
2603 T: git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
2604 F: Documentation/filesystems/befs.txt
2608 M: Paolo Valente <paolo.valente@linaro.org>
2609 M: Jens Axboe <axboe@kernel.dk>
2610 L: linux-block@vger.kernel.org
2613 F: Documentation/block/bfq-iosched.txt
2616 M: "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
2618 F: Documentation/filesystems/bfs.txt
2620 F: include/uapi/linux/bfs_fs.h
2622 BLACKFIN ARCHITECTURE
2623 M: Steven Miao <realmz6@gmail.com>
2624 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2625 T: git git://git.code.sf.net/p/adi-linux/code
2626 W: http://blackfin.uclinux.org
2630 BLACKFIN EMAC DRIVER
2631 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2632 W: http://blackfin.uclinux.org
2634 F: drivers/net/ethernet/adi/
2636 BLACKFIN MEDIA DRIVER
2637 M: Scott Jiang <scott.jiang.linux@gmail.com>
2638 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2639 W: http://blackfin.uclinux.org/
2641 F: drivers/media/platform/blackfin/
2642 F: drivers/media/i2c/adv7183*
2643 F: drivers/media/i2c/vs6624*
2646 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2647 W: http://blackfin.uclinux.org
2649 F: drivers/rtc/rtc-bfin.c
2652 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2653 W: http://blackfin.uclinux.org
2655 F: drivers/mmc/host/bfin_sdh.c
2657 BLACKFIN SERIAL DRIVER
2658 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2659 W: http://blackfin.uclinux.org
2661 F: drivers/tty/serial/bfin_uart.c
2663 BLACKFIN WATCHDOG DRIVER
2664 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2665 W: http://blackfin.uclinux.org
2667 F: drivers/watchdog/bfin_wdt.c
2669 BLINKM RGB LED DRIVER
2670 M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
2672 F: drivers/leds/leds-blinkm.c
2675 M: Jens Axboe <axboe@kernel.dk>
2676 L: linux-block@vger.kernel.org
2677 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2680 F: kernel/trace/blktrace.c
2684 M: Joern Engel <joern@lazybastard.org>
2685 L: linux-mtd@lists.infradead.org
2687 F: drivers/mtd/devices/block2mtd.c
2690 M: Marcel Holtmann <marcel@holtmann.org>
2691 M: Gustavo Padovan <gustavo@padovan.org>
2692 M: Johan Hedberg <johan.hedberg@gmail.com>
2693 L: linux-bluetooth@vger.kernel.org
2694 W: http://www.bluez.org/
2695 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2696 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2698 F: drivers/bluetooth/
2701 M: Marcel Holtmann <marcel@holtmann.org>
2702 M: Gustavo Padovan <gustavo@padovan.org>
2703 M: Johan Hedberg <johan.hedberg@gmail.com>
2704 L: linux-bluetooth@vger.kernel.org
2705 W: http://www.bluez.org/
2706 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2707 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2710 F: include/net/bluetooth/
2713 M: Jay Vosburgh <j.vosburgh@gmail.com>
2714 M: Veaceslav Falico <vfalico@gmail.com>
2715 M: Andy Gospodarek <andy@greyhouse.net>
2716 L: netdev@vger.kernel.org
2717 W: http://sourceforge.net/projects/bonding/
2719 F: drivers/net/bonding/
2720 F: include/uapi/linux/if_bonding.h
2722 BPF (Safe dynamic programs and tools)
2723 M: Alexei Starovoitov <ast@kernel.org>
2724 M: Daniel Borkmann <daniel@iogearbox.net>
2725 L: netdev@vger.kernel.org
2726 L: linux-kernel@vger.kernel.org
2728 F: arch/x86/net/bpf_jit*
2729 F: Documentation/networking/filter.txt
2730 F: Documentation/bpf/
2731 F: include/linux/bpf*
2732 F: include/linux/filter.h
2733 F: include/uapi/linux/bpf*
2734 F: include/uapi/linux/filter.h
2736 F: kernel/trace/bpf_trace.c
2739 F: net/core/filter.c
2740 F: net/sched/act_bpf.c
2741 F: net/sched/cls_bpf.c
2744 F: tools/testing/selftests/bpf/
2746 BROADCOM B44 10/100 ETHERNET DRIVER
2747 M: Michael Chan <michael.chan@broadcom.com>
2748 L: netdev@vger.kernel.org
2750 F: drivers/net/ethernet/broadcom/b44.*
2752 BROADCOM B53 ETHERNET SWITCH DRIVER
2753 M: Florian Fainelli <f.fainelli@gmail.com>
2754 L: netdev@vger.kernel.org
2755 L: openwrt-devel@lists.openwrt.org (subscribers-only)
2757 F: drivers/net/dsa/b53/*
2758 F: include/linux/platform_data/b53.h
2760 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2761 M: Florian Fainelli <f.fainelli@gmail.com>
2762 M: Ray Jui <rjui@broadcom.com>
2763 M: Scott Branden <sbranden@broadcom.com>
2764 M: bcm-kernel-feedback-list@broadcom.com
2765 T: git git://github.com/broadcom/mach-bcm
2771 F: arch/arm/mach-bcm/
2773 BROADCOM BCM2835 ARM ARCHITECTURE
2774 M: Eric Anholt <eric@anholt.net>
2775 M: Stefan Wahren <stefan.wahren@i2se.com>
2776 L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2777 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2778 T: git git://github.com/anholt/linux
2781 F: drivers/staging/vc04_services
2783 BROADCOM BCM47XX MIPS ARCHITECTURE
2784 M: Hauke Mehrtens <hauke@hauke-m.de>
2785 M: Rafał Miłecki <zajec5@gmail.com>
2786 L: linux-mips@linux-mips.org
2788 F: Documentation/devicetree/bindings/mips/brcm/
2789 F: arch/mips/bcm47xx/*
2790 F: arch/mips/include/asm/mach-bcm47xx/*
2792 BROADCOM BCM5301X ARM ARCHITECTURE
2793 M: Hauke Mehrtens <hauke@hauke-m.de>
2794 M: Rafał Miłecki <zajec5@gmail.com>
2795 M: Jon Mason <jonmason@broadcom.com>
2796 M: bcm-kernel-feedback-list@broadcom.com
2797 L: linux-arm-kernel@lists.infradead.org
2799 F: arch/arm/mach-bcm/bcm_5301x.c
2800 F: arch/arm/boot/dts/bcm5301x*.dtsi
2801 F: arch/arm/boot/dts/bcm470*
2802 F: arch/arm/boot/dts/bcm953012*
2804 BROADCOM BCM53573 ARM ARCHITECTURE
2805 M: Rafał Miłecki <rafal@milecki.pl>
2806 L: linux-arm-kernel@lists.infradead.org
2808 F: arch/arm/boot/dts/bcm53573*
2809 F: arch/arm/boot/dts/bcm47189*
2811 BROADCOM BCM63XX ARM ARCHITECTURE
2812 M: Florian Fainelli <f.fainelli@gmail.com>
2813 M: bcm-kernel-feedback-list@broadcom.com
2814 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2815 T: git git://github.com/broadcom/stblinux.git
2819 BROADCOM BCM63XX/BCM33XX UDC DRIVER
2820 M: Kevin Cernekee <cernekee@gmail.com>
2821 L: linux-usb@vger.kernel.org
2823 F: drivers/usb/gadget/udc/bcm63xx_udc.*
2825 BROADCOM BCM7XXX ARM ARCHITECTURE
2826 M: Brian Norris <computersforpeace@gmail.com>
2827 M: Gregory Fong <gregory.0xf0@gmail.com>
2828 M: Florian Fainelli <f.fainelli@gmail.com>
2829 M: bcm-kernel-feedback-list@broadcom.com
2830 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2831 T: git git://github.com/broadcom/stblinux.git
2833 F: arch/arm/mach-bcm/*brcmstb*
2834 F: arch/arm/boot/dts/bcm7*.dts*
2835 F: drivers/bus/brcmstb_gisb.c
2838 BROADCOM BMIPS CPUFREQ DRIVER
2839 M: Markus Mayer <mmayer@broadcom.com>
2840 M: bcm-kernel-feedback-list@broadcom.com
2841 L: linux-pm@vger.kernel.org
2843 F: drivers/cpufreq/bmips-cpufreq.c
2845 BROADCOM BMIPS MIPS ARCHITECTURE
2846 M: Kevin Cernekee <cernekee@gmail.com>
2847 M: Florian Fainelli <f.fainelli@gmail.com>
2848 L: linux-mips@linux-mips.org
2849 T: git git://github.com/broadcom/stblinux.git
2851 F: arch/mips/bmips/*
2852 F: arch/mips/include/asm/mach-bmips/*
2853 F: arch/mips/kernel/*bmips*
2854 F: arch/mips/boot/dts/brcm/bcm*.dts*
2855 F: drivers/irqchip/irq-bcm63*
2856 F: drivers/irqchip/irq-bcm7*
2857 F: drivers/irqchip/irq-brcmstb*
2858 F: include/linux/bcm963xx_nvram.h
2859 F: include/linux/bcm963xx_tag.h
2861 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
2862 M: Rasesh Mody <rasesh.mody@cavium.com>
2863 M: Harish Patil <harish.patil@cavium.com>
2864 M: Dept-GELinuxNICDev@cavium.com
2865 L: netdev@vger.kernel.org
2867 F: drivers/net/ethernet/broadcom/bnx2.*
2868 F: drivers/net/ethernet/broadcom/bnx2_*
2870 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2871 M: QLogic-Storage-Upstream@qlogic.com
2872 L: linux-scsi@vger.kernel.org
2874 F: drivers/scsi/bnx2fc/
2876 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2877 M: QLogic-Storage-Upstream@qlogic.com
2878 L: linux-scsi@vger.kernel.org
2880 F: drivers/scsi/bnx2i/
2882 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
2883 M: Ariel Elior <ariel.elior@cavium.com>
2884 M: everest-linux-l2@cavium.com
2885 L: netdev@vger.kernel.org
2887 F: drivers/net/ethernet/broadcom/bnx2x/
2889 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
2890 M: Michael Chan <michael.chan@broadcom.com>
2891 L: netdev@vger.kernel.org
2893 F: drivers/net/ethernet/broadcom/bnxt/
2895 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2896 M: Arend van Spriel <arend.vanspriel@broadcom.com>
2897 M: Franky Lin <franky.lin@broadcom.com>
2898 M: Hante Meuleman <hante.meuleman@broadcom.com>
2899 M: Chi-Hsien Lin <chi-hsien.lin@cypress.com>
2900 M: Wright Feng <wright.feng@cypress.com>
2901 L: linux-wireless@vger.kernel.org
2902 L: brcm80211-dev-list.pdl@broadcom.com
2903 L: brcm80211-dev-list@cypress.com
2905 F: drivers/net/wireless/broadcom/brcm80211/
2907 BROADCOM BRCMSTB GPIO DRIVER
2908 M: Gregory Fong <gregory.0xf0@gmail.com>
2909 L: bcm-kernel-feedback-list@broadcom.com
2911 F: drivers/gpio/gpio-brcmstb.c
2912 F: Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2914 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
2915 M: Al Cooper <alcooperx@gmail.com>
2916 L: linux-kernel@vger.kernel.org
2917 L: bcm-kernel-feedback-list@broadcom.com
2919 F: drivers/phy/broadcom/phy-brcm-usb*
2921 BROADCOM GENET ETHERNET DRIVER
2922 M: Doug Berger <opendmb@gmail.com>
2923 M: Florian Fainelli <f.fainelli@gmail.com>
2924 L: netdev@vger.kernel.org
2926 F: drivers/net/ethernet/broadcom/genet/
2928 BROADCOM IPROC ARM ARCHITECTURE
2929 M: Ray Jui <rjui@broadcom.com>
2930 M: Scott Branden <sbranden@broadcom.com>
2931 M: Jon Mason <jonmason@broadcom.com>
2932 M: bcm-kernel-feedback-list@broadcom.com
2933 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2934 T: git git://github.com/broadcom/cygnus-linux.git
2950 F: arch/arm64/boot/dts/broadcom/ns2*
2951 F: drivers/clk/bcm/clk-ns*
2952 F: drivers/pinctrl/bcm/pinctrl-ns*
2954 BROADCOM KONA GPIO DRIVER
2955 M: Ray Jui <rjui@broadcom.com>
2956 L: bcm-kernel-feedback-list@broadcom.com
2958 F: drivers/gpio/gpio-bcm-kona.c
2959 F: Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
2961 BROADCOM NETXTREME-E ROCE DRIVER
2962 M: Selvin Xavier <selvin.xavier@broadcom.com>
2963 M: Devesh Sharma <devesh.sharma@broadcom.com>
2964 M: Somnath Kotur <somnath.kotur@broadcom.com>
2965 M: Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
2966 L: linux-rdma@vger.kernel.org
2967 W: http://www.broadcom.com
2969 F: drivers/infiniband/hw/bnxt_re/
2970 F: include/uapi/rdma/bnxt_re-abi.h
2972 BROADCOM NVRAM DRIVER
2973 M: Rafał Miłecki <zajec5@gmail.com>
2974 L: linux-mips@linux-mips.org
2976 F: drivers/firmware/broadcom/*
2978 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2979 M: Rafał Miłecki <zajec5@gmail.com>
2980 L: linux-wireless@vger.kernel.org
2983 F: include/linux/bcma/
2985 BROADCOM STB AVS CPUFREQ DRIVER
2986 M: Markus Mayer <mmayer@broadcom.com>
2987 M: bcm-kernel-feedback-list@broadcom.com
2988 L: linux-pm@vger.kernel.org
2990 F: Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
2991 F: drivers/cpufreq/brcmstb*
2993 BROADCOM STB AVS TMON DRIVER
2994 M: Markus Mayer <mmayer@broadcom.com>
2995 M: bcm-kernel-feedback-list@broadcom.com
2996 L: linux-pm@vger.kernel.org
2998 F: Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
2999 F: drivers/thermal/broadcom/brcmstb*
3001 BROADCOM STB NAND FLASH DRIVER
3002 M: Brian Norris <computersforpeace@gmail.com>
3003 M: Kamal Dasu <kdasu.kdev@gmail.com>
3004 L: linux-mtd@lists.infradead.org
3005 L: bcm-kernel-feedback-list@broadcom.com
3007 F: drivers/mtd/nand/brcmnand/
3009 BROADCOM STB DPFE DRIVER
3010 M: Markus Mayer <mmayer@broadcom.com>
3011 M: bcm-kernel-feedback-list@broadcom.com
3012 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3014 F: Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3015 F: drivers/memory/brcmstb_dpfe.c
3017 BROADCOM SYSTEMPORT ETHERNET DRIVER
3018 M: Florian Fainelli <f.fainelli@gmail.com>
3019 L: netdev@vger.kernel.org
3021 F: drivers/net/ethernet/broadcom/bcmsysport.*
3023 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3024 M: Siva Reddy Kallam <siva.kallam@broadcom.com>
3025 M: Prashant Sreedharan <prashant@broadcom.com>
3026 M: Michael Chan <mchan@broadcom.com>
3027 L: netdev@vger.kernel.org
3029 F: drivers/net/ethernet/broadcom/tg3.*
3031 BROCADE BFA FC SCSI DRIVER
3032 M: Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3033 M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3034 L: linux-scsi@vger.kernel.org
3036 F: drivers/scsi/bfa/
3038 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3039 M: Rasesh Mody <rasesh.mody@cavium.com>
3040 M: Sudarsana Kalluru <sudarsana.kalluru@cavium.com>
3041 M: Dept-GELinuxNICDev@cavium.com
3042 L: netdev@vger.kernel.org
3044 F: drivers/net/ethernet/brocade/bna/
3046 BSG (block layer generic sg v4 driver)
3047 M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3048 L: linux-scsi@vger.kernel.org
3051 F: include/linux/bsg.h
3052 F: include/uapi/linux/bsg.h
3055 M: Clemens Ladisch <clemens@ladisch.de>
3056 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3057 T: git git://git.alsa-project.org/alsa-kernel.git
3059 F: Documentation/sound/alsa/Bt87x.txt
3060 F: sound/pci/bt87x.c
3063 M: Michael Buesch <m@bues.ch>
3064 W: http://bu3sch.de/btgpio.php
3066 F: drivers/gpio/gpio-bt8xx.c
3069 M: Chris Mason <clm@fb.com>
3070 M: Josef Bacik <jbacik@fb.com>
3071 M: David Sterba <dsterba@suse.com>
3072 L: linux-btrfs@vger.kernel.org
3073 W: http://btrfs.wiki.kernel.org/
3074 Q: http://patchwork.kernel.org/project/linux-btrfs/list/
3075 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
3077 F: Documentation/filesystems/btrfs.txt
3079 F: include/linux/btrfs*
3080 F: include/uapi/linux/btrfs*
3082 BTTV VIDEO4LINUX DRIVER
3083 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
3084 M: Mauro Carvalho Chehab <mchehab@kernel.org>
3085 L: linux-media@vger.kernel.org
3086 W: https://linuxtv.org
3087 T: git git://linuxtv.org/media_tree.git
3089 F: Documentation/media/v4l-drivers/bttv*
3090 F: drivers/media/pci/bt8xx/bttv*
3092 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3093 M: Chanwoo Choi <cw00.choi@samsung.com>
3094 L: linux-pm@vger.kernel.org
3095 L: linux-samsung-soc@vger.kernel.org
3096 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3098 F: drivers/devfreq/exynos-bus.c
3099 F: Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3101 BUSLOGIC SCSI DRIVER
3102 M: Khalid Aziz <khalid@gonehiking.org>
3103 L: linux-scsi@vger.kernel.org
3105 F: drivers/scsi/BusLogic.*
3106 F: drivers/scsi/FlashPoint.*
3108 C-MEDIA CMI8788 DRIVER
3109 M: Clemens Ladisch <clemens@ladisch.de>
3110 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3111 T: git git://git.alsa-project.org/alsa-kernel.git
3113 F: sound/pci/oxygen/
3116 M: Mark Salter <msalter@redhat.com>
3117 M: Aurelien Jacquiot <jacquiot.aurelien@gmail.com>
3118 L: linux-c6x-dev@linux-c6x.org
3119 W: http://www.linux-c6x.org/wiki/index.php/Main_Page
3123 CA8210 IEEE-802.15.4 RADIO DRIVER
3124 M: Harry Morris <h.morris@cascoda.com>
3125 L: linux-wpan@vger.kernel.org
3126 W: https://github.com/Cascoda/ca8210-linux.git
3128 F: drivers/net/ieee802154/ca8210.c
3129 F: Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3131 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3132 M: David Howells <dhowells@redhat.com>
3133 L: linux-cachefs@redhat.com (moderated for non-subscribers)
3135 F: Documentation/filesystems/caching/cachefiles.txt
3138 CADET FM/AM RADIO RECEIVER DRIVER
3139 M: Hans Verkuil <hverkuil@xs4all.nl>
3140 L: linux-media@vger.kernel.org
3141 T: git git://linuxtv.org/media_tree.git
3142 W: https://linuxtv.org
3144 F: drivers/media/radio/radio-cadet*
3146 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3147 M: Jonathan Corbet <corbet@lwn.net>
3148 L: linux-media@vger.kernel.org
3149 T: git git://linuxtv.org/media_tree.git
3151 F: Documentation/media/v4l-drivers/cafe_ccic*
3152 F: drivers/media/platform/marvell-ccic/
3155 M: Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
3156 L: netdev@vger.kernel.org
3158 F: Documentation/networking/caif/
3159 F: drivers/net/caif/
3160 F: include/uapi/linux/caif/
3161 F: include/net/caif/
3164 CALGARY x86-64 IOMMU
3165 M: Muli Ben-Yehuda <mulix@mulix.org>
3166 M: Jon Mason <jdmason@kudzu.us>
3167 L: iommu@lists.linux-foundation.org
3169 F: arch/x86/kernel/pci-calgary_64.c
3170 F: arch/x86/kernel/tce_64.c
3171 F: arch/x86/include/asm/calgary.h
3172 F: arch/x86/include/asm/tce.h
3175 M: Wolfgang Grandegger <wg@grandegger.com>
3176 M: Marc Kleine-Budde <mkl@pengutronix.de>
3177 L: linux-can@vger.kernel.org
3178 W: https://github.com/linux-can
3179 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3180 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3182 F: Documentation/devicetree/bindings/net/can/
3184 F: include/linux/can/dev.h
3185 F: include/linux/can/platform/
3186 F: include/uapi/linux/can/error.h
3187 F: include/uapi/linux/can/netlink.h
3190 M: Oliver Hartkopp <socketcan@hartkopp.net>
3191 M: Marc Kleine-Budde <mkl@pengutronix.de>
3192 L: linux-can@vger.kernel.org
3193 W: https://github.com/linux-can
3194 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3195 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3197 F: Documentation/networking/can.txt
3199 F: include/linux/can/core.h
3200 F: include/uapi/linux/can.h
3201 F: include/uapi/linux/can/bcm.h
3202 F: include/uapi/linux/can/raw.h
3203 F: include/uapi/linux/can/gw.h
3206 M: Serge Hallyn <serge@hallyn.com>
3207 L: linux-security-module@vger.kernel.org
3209 F: include/linux/capability.h
3210 F: include/uapi/linux/capability.h
3211 F: security/commoncap.c
3212 F: kernel/capability.c
3214 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3215 M: Kevin Tsai <ktsai@capellamicro.com>
3217 F: drivers/iio/light/cm*
3219 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
3220 M: Christian Lamparter <chunkeey@googlemail.com>
3221 L: linux-wireless@vger.kernel.org
3222 W: http://wireless.kernel.org/en/users/Drivers/carl9170
3224 F: drivers/net/wireless/ath/carl9170/
3227 M: Jan Glauber <jglauber@cavium.com>
3228 M: David Daney <david.daney@cavium.com>
3229 W: http://www.cavium.com
3231 F: drivers/i2c/busses/i2c-octeon*
3232 F: drivers/i2c/busses/i2c-thunderx*
3234 CAVIUM LIQUIDIO NETWORK DRIVER
3235 M: Derek Chickles <derek.chickles@caviumnetworks.com>
3236 M: Satanand Burla <satananda.burla@caviumnetworks.com>
3237 M: Felix Manlunas <felix.manlunas@caviumnetworks.com>
3238 M: Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
3239 L: netdev@vger.kernel.org
3240 W: http://www.cavium.com
3242 F: drivers/net/ethernet/cavium/liquidio/
3245 M: Jan Glauber <jglauber@cavium.com>
3246 M: David Daney <david.daney@cavium.com>
3247 M: Steven J. Hill <Steven.Hill@cavium.com>
3248 W: http://www.cavium.com
3250 F: drivers/mmc/host/cavium*
3252 CAVIUM OCTEON-TX CRYPTO DRIVER
3253 M: George Cherian <george.cherian@cavium.com>
3254 L: linux-crypto@vger.kernel.org
3255 W: http://www.cavium.com
3257 F: drivers/crypto/cavium/cpt/
3259 CAVIUM THUNDERX2 ARM64 SOC
3260 M: Robert Richter <rrichter@cavium.com>
3261 M: Jayachandran C <jnair@caviumnetworks.com>
3262 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3264 F: arch/arm64/boot/dts/cavium/thunder2-99xx*
3265 F: Documentation/devicetree/bindings/arm/cavium-thunder2.txt
3267 CC2520 IEEE-802.15.4 RADIO DRIVER
3268 M: Varka Bhadram <varkabhadram@gmail.com>
3269 L: linux-wpan@vger.kernel.org
3271 F: drivers/net/ieee802154/cc2520.c
3272 F: include/linux/spi/cc2520.h
3273 F: Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
3275 CCREE ARM TRUSTZONE CRYPTOCELL 700 REE DRIVER
3276 M: Gilad Ben-Yossef <gilad@benyossef.com>
3277 L: linux-crypto@vger.kernel.org
3278 L: driverdev-devel@linuxdriverproject.org
3280 F: drivers/staging/ccree/
3281 W: https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
3284 M: Hans Verkuil <hans.verkuil@cisco.com>
3285 L: linux-media@vger.kernel.org
3286 T: git git://linuxtv.org/media_tree.git
3287 W: http://linuxtv.org
3289 F: Documentation/media/kapi/cec-core.rst
3290 F: Documentation/media/uapi/cec
3291 F: drivers/media/cec/
3292 F: drivers/media/rc/keymaps/rc-cec.c
3293 F: include/media/cec.h
3294 F: include/media/cec-notifier.h
3295 F: include/uapi/linux/cec.h
3296 F: include/uapi/linux/cec-funcs.h
3297 F: Documentation/devicetree/bindings/media/cec.txt
3300 M: Hans Verkuil <hans.verkuil@cisco.com>
3301 L: linux-media@vger.kernel.org
3302 T: git git://linuxtv.org/media_tree.git
3303 W: http://linuxtv.org
3305 F: drivers/media/platform/cec-gpio/
3306 F: Documentation/devicetree/bindings/media/cec-gpio.txt
3308 CELL BROADBAND ENGINE ARCHITECTURE
3309 M: Arnd Bergmann <arnd@arndb.de>
3310 L: linuxppc-dev@lists.ozlabs.org
3311 W: http://www.ibm.com/developerworks/power/cell/
3313 F: arch/powerpc/include/asm/cell*.h
3314 F: arch/powerpc/include/asm/spu*.h
3315 F: arch/powerpc/include/uapi/asm/spu*.h
3316 F: arch/powerpc/oprofile/*cell*
3317 F: arch/powerpc/platforms/cell/
3319 CEPH COMMON CODE (LIBCEPH)
3320 M: Ilya Dryomov <idryomov@gmail.com>
3321 M: "Yan, Zheng" <zyan@redhat.com>
3322 M: Sage Weil <sage@redhat.com>
3323 L: ceph-devel@vger.kernel.org
3325 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3326 T: git git://github.com/ceph/ceph-client.git
3329 F: include/linux/ceph/
3330 F: include/linux/crush/
3332 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
3333 M: "Yan, Zheng" <zyan@redhat.com>
3334 M: Sage Weil <sage@redhat.com>
3335 M: Ilya Dryomov <idryomov@gmail.com>
3336 L: ceph-devel@vger.kernel.org
3338 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3339 T: git git://github.com/ceph/ceph-client.git
3341 F: Documentation/filesystems/ceph.txt
3344 CERTIFICATE HANDLING:
3345 M: David Howells <dhowells@redhat.com>
3346 M: David Woodhouse <dwmw2@infradead.org>
3347 L: keyrings@vger.kernel.org
3349 F: Documentation/module-signing.txt
3351 F: scripts/sign-file.c
3352 F: scripts/extract-cert.c
3354 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
3355 L: linux-usb@vger.kernel.org
3357 F: Documentation/usb/WUSB-Design-overview.txt
3358 F: Documentation/usb/wusb-cbaf
3359 F: drivers/usb/host/hwa-hc.c
3360 F: drivers/usb/host/whci/
3361 F: drivers/usb/wusbcore/
3362 F: include/linux/usb/wusb*
3364 CFAG12864B LCD DRIVER
3365 M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3366 W: http://miguelojeda.es/auxdisplay.htm
3367 W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
3369 F: drivers/auxdisplay/cfag12864b.c
3370 F: include/linux/cfag12864b.h
3372 CFAG12864BFB LCD FRAMEBUFFER DRIVER
3373 M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3374 W: http://miguelojeda.es/auxdisplay.htm
3375 W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
3377 F: drivers/auxdisplay/cfag12864bfb.c
3378 F: include/linux/cfag12864b.h
3380 802.11 (including CFG80211/NL80211)
3381 M: Johannes Berg <johannes@sipsolutions.net>
3382 L: linux-wireless@vger.kernel.org
3383 W: http://wireless.kernel.org/
3384 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
3385 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
3388 F: include/uapi/linux/nl80211.h
3389 F: include/linux/ieee80211.h
3390 F: include/net/wext.h
3391 F: include/net/cfg80211.h
3392 F: include/net/iw_handler.h
3393 F: include/net/ieee80211_radiotap.h
3394 F: Documentation/driver-api/80211/cfg80211.rst
3395 F: Documentation/networking/regulatory.txt
3397 CHAR and MISC DRIVERS
3398 M: Arnd Bergmann <arnd@arndb.de>
3399 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3400 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
3404 F: include/linux/miscdevice.h
3407 M: Andy Whitcroft <apw@canonical.com>
3408 M: Joe Perches <joe@perches.com>
3410 F: scripts/checkpatch.pl
3412 CHINESE DOCUMENTATION
3413 M: Harry Wei <harryxiyou@gmail.com>
3414 L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
3415 L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
3417 F: Documentation/translations/zh_CN/
3419 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
3420 M: Peter Chen <Peter.Chen@nxp.com>
3421 T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
3422 L: linux-usb@vger.kernel.org
3424 F: drivers/usb/chipidea/
3426 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
3427 M: Hans de Goede <hdegoede@redhat.com>
3428 L: linux-input@vger.kernel.org
3430 F: Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
3431 F: drivers/input/touchscreen/chipone_icn8318.c
3433 CHROME HARDWARE PLATFORM SUPPORT
3434 M: Benson Leung <bleung@chromium.org>
3435 M: Olof Johansson <olof@lixom.net>
3437 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bleung/chrome-platform.git
3438 F: drivers/platform/chrome/
3440 CIRRUS LOGIC AUDIO CODEC DRIVERS
3441 M: Brian Austin <brian.austin@cirrus.com>
3442 M: Paul Handrigan <Paul.Handrigan@cirrus.com>
3443 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3445 F: sound/soc/codecs/cs*
3447 CIRRUS LOGIC EP93XX ETHERNET DRIVER
3448 M: Hartley Sweeten <hsweeten@visionengravers.com>
3449 L: netdev@vger.kernel.org
3451 F: drivers/net/ethernet/cirrus/ep93xx_eth.c
3453 CISCO FCOE HBA DRIVER
3454 M: Satish Kharat <satishkh@cisco.com>
3455 M: Sesidhar Baddela <sebaddel@cisco.com>
3456 M: Karan Tilak Kumar <kartilak@cisco.com>
3457 L: linux-scsi@vger.kernel.org
3459 F: drivers/scsi/fnic/
3461 CISCO SCSI HBA DRIVER
3462 M: Karan Tilak Kumar <kartilak@cisco.com>
3463 M: Sesidhar Baddela <sebaddel@cisco.com>
3464 L: linux-scsi@vger.kernel.org
3466 F: drivers/scsi/snic/
3468 CISCO VIC ETHERNET NIC DRIVER
3469 M: Christian Benvenuti <benve@cisco.com>
3470 M: Govindarajulu Varadarajan <_govind@gmx.com>
3471 M: Parvi Kaustubhi <pkaustub@cisco.com>
3473 F: drivers/net/ethernet/cisco/enic/
3475 CISCO VIC LOW LATENCY NIC DRIVER
3476 M: Christian Benvenuti <benve@cisco.com>
3477 M: Dave Goodell <dgoodell@cisco.com>
3479 F: drivers/infiniband/hw/usnic/
3482 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3483 L: linux-kernel@vger.kernel.org
3486 F: include/linux/cleancache.h
3489 M: Russell King <linux@armlinux.org.uk>
3490 L: linux-clk@vger.kernel.org
3492 F: include/linux/clk.h
3494 CLOCKSOURCE, CLOCKEVENT DRIVERS
3495 M: Daniel Lezcano <daniel.lezcano@linaro.org>
3496 M: Thomas Gleixner <tglx@linutronix.de>
3497 L: linux-kernel@vger.kernel.org
3498 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
3500 F: drivers/clocksource/
3501 F: Documentation/devicetree/bindings/timer/
3504 M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
3505 M: Daniel Oliveira Nascimento <don@syst.com.br>
3506 L: platform-driver-x86@vger.kernel.org
3508 F: drivers/platform/x86/classmate-laptop.c
3511 M: Hans Verkuil <hans.verkuil@cisco.com>
3512 L: linux-media@vger.kernel.org
3513 T: git git://linuxtv.org/media_tree.git
3514 W: https://linuxtv.org
3516 F: drivers/media/pci/cobalt/
3518 COCCINELLE/Semantic Patches (SmPL)
3519 M: Julia Lawall <Julia.Lawall@lip6.fr>
3520 M: Gilles Muller <Gilles.Muller@lip6.fr>
3521 M: Nicolas Palix <nicolas.palix@imag.fr>
3522 M: Michal Marek <michal.lkml@markovi.net>
3523 L: cocci@systeme.lip6.fr (moderated for non-subscribers)
3524 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
3525 W: http://coccinelle.lip6.fr/
3527 F: Documentation/dev-tools/coccinelle.rst
3528 F: scripts/coccinelle/
3529 F: scripts/coccicheck
3532 M: Jan Harkes <jaharkes@cs.cmu.edu>
3534 L: codalist@coda.cs.cmu.edu
3535 W: http://www.coda.cs.cmu.edu/
3537 F: Documentation/filesystems/coda.txt
3539 F: include/linux/coda*.h
3540 F: include/uapi/linux/coda*.h
3542 CODA V4L2 MEM2MEM DRIVER
3543 M: Philipp Zabel <p.zabel@pengutronix.de>
3544 L: linux-media@vger.kernel.org
3546 F: Documentation/devicetree/bindings/media/coda.txt
3547 F: drivers/media/platform/coda/
3549 COMMON CLK FRAMEWORK
3550 M: Michael Turquette <mturquette@baylibre.com>
3551 M: Stephen Boyd <sboyd@codeaurora.org>
3552 L: linux-clk@vger.kernel.org
3553 Q: http://patchwork.kernel.org/project/linux-clk/list/
3554 T: git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
3556 F: Documentation/devicetree/bindings/clock/
3558 X: drivers/clk/clkdev.c
3559 F: include/linux/clk-pr*
3560 F: include/linux/clk/
3562 COMMON INTERNET FILE SYSTEM (CIFS)
3563 M: Steve French <sfrench@samba.org>
3564 L: linux-cifs@vger.kernel.org
3565 L: samba-technical@lists.samba.org (moderated for non-subscribers)
3566 W: http://linux-cifs.samba.org/
3567 T: git git://git.samba.org/sfrench/cifs-2.6.git
3569 F: Documentation/filesystems/cifs/
3572 COMPACTPCI HOTPLUG CORE
3573 M: Scott Murray <scott@spiteful.org>
3574 L: linux-pci@vger.kernel.org
3576 F: drivers/pci/hotplug/cpci_hotplug*
3578 COMPACTPCI HOTPLUG GENERIC DRIVER
3579 M: Scott Murray <scott@spiteful.org>
3580 L: linux-pci@vger.kernel.org
3582 F: drivers/pci/hotplug/cpcihp_generic.c
3584 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
3585 M: Scott Murray <scott@spiteful.org>
3586 L: linux-pci@vger.kernel.org
3588 F: drivers/pci/hotplug/cpcihp_zt5550.*
3590 COMPAL LAPTOP SUPPORT
3591 M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
3592 L: platform-driver-x86@vger.kernel.org
3594 F: drivers/platform/x86/compal-laptop.c
3596 CONEXANT ACCESSRUNNER USB DRIVER
3597 L: accessrunner-general@lists.sourceforge.net
3598 W: http://accessrunner.sourceforge.net/
3600 F: drivers/usb/atm/cxacru.c
3603 M: Joel Becker <jlbec@evilplan.org>
3604 M: Christoph Hellwig <hch@lst.de>
3605 T: git git://git.infradead.org/users/hch/configfs.git
3608 F: include/linux/configfs.h
3611 M: Evgeniy Polyakov <zbr@ioremap.net>
3612 L: netdev@vger.kernel.org
3614 F: drivers/connector/
3616 CONTROL GROUP (CGROUP)
3617 M: Tejun Heo <tj@kernel.org>
3618 M: Li Zefan <lizefan@huawei.com>
3619 M: Johannes Weiner <hannes@cmpxchg.org>
3620 L: cgroups@vger.kernel.org
3621 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3623 F: Documentation/cgroup*
3624 F: include/linux/cgroup*
3627 CONTROL GROUP - CPUSET
3628 M: Li Zefan <lizefan@huawei.com>
3629 L: cgroups@vger.kernel.org
3630 W: http://www.bullopensource.org/cpuset/
3631 W: http://oss.sgi.com/projects/cpusets/
3632 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3634 F: Documentation/cgroup-v1/cpusets.txt
3635 F: include/linux/cpuset.h
3636 F: kernel/cgroup/cpuset.c
3638 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
3639 M: Johannes Weiner <hannes@cmpxchg.org>
3640 M: Michal Hocko <mhocko@kernel.org>
3641 M: Vladimir Davydov <vdavydov.dev@gmail.com>
3642 L: cgroups@vger.kernel.org
3643 L: linux-mm@kvack.org
3648 CORETEMP HARDWARE MONITORING DRIVER
3649 M: Fenghua Yu <fenghua.yu@intel.com>
3650 L: linux-hwmon@vger.kernel.org
3652 F: Documentation/hwmon/coretemp
3653 F: drivers/hwmon/coretemp.c
3655 COSA/SRP SYNC SERIAL DRIVER
3656 M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
3657 W: http://www.fi.muni.cz/~kas/cosa/
3659 F: drivers/net/wan/cosa*
3661 CPMAC ETHERNET DRIVER
3662 M: Florian Fainelli <f.fainelli@gmail.com>
3663 L: netdev@vger.kernel.org
3665 F: drivers/net/ethernet/ti/cpmac.c
3667 CPU FREQUENCY DRIVERS
3668 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
3669 M: Viresh Kumar <viresh.kumar@linaro.org>
3670 L: linux-pm@vger.kernel.org
3672 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3673 T: git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
3674 B: https://bugzilla.kernel.org
3675 F: Documentation/cpu-freq/
3676 F: Documentation/devicetree/bindings/cpufreq/
3678 F: include/linux/cpufreq.h
3679 F: tools/testing/selftests/cpufreq/
3681 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
3682 M: Viresh Kumar <viresh.kumar@linaro.org>
3683 M: Sudeep Holla <sudeep.holla@arm.com>
3684 L: linux-pm@vger.kernel.org
3685 W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php
3687 F: drivers/cpufreq/arm_big_little.h
3688 F: drivers/cpufreq/arm_big_little.c
3689 F: drivers/cpufreq/arm_big_little_dt.c
3691 CPU POWER MONITORING SUBSYSTEM
3692 M: Thomas Renninger <trenn@suse.com>
3693 M: Shuah Khan <shuahkh@osg.samsung.com>
3694 M: Shuah Khan <shuah@kernel.org>
3695 L: linux-pm@vger.kernel.org
3697 F: tools/power/cpupower/
3700 M: "H. Peter Anvin" <hpa@zytor.com>
3702 F: arch/x86/kernel/cpuid.c
3703 F: arch/x86/kernel/msr.c
3705 CPUIDLE DRIVER - ARM BIG LITTLE
3706 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
3707 M: Daniel Lezcano <daniel.lezcano@linaro.org>
3708 L: linux-pm@vger.kernel.org
3709 L: linux-arm-kernel@lists.infradead.org
3710 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3712 F: drivers/cpuidle/cpuidle-big_little.c
3714 CPUIDLE DRIVER - ARM EXYNOS
3715 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
3716 M: Daniel Lezcano <daniel.lezcano@linaro.org>
3717 M: Kukjin Kim <kgene@kernel.org>
3718 L: linux-pm@vger.kernel.org
3719 L: linux-samsung-soc@vger.kernel.org
3721 F: drivers/cpuidle/cpuidle-exynos.c
3722 F: arch/arm/mach-exynos/pm.c
3725 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
3726 M: Daniel Lezcano <daniel.lezcano@linaro.org>
3727 L: linux-pm@vger.kernel.org
3729 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3730 B: https://bugzilla.kernel.org
3731 F: drivers/cpuidle/*
3732 F: include/linux/cpuidle.h
3735 M: Nicolas Pitre <nico@linaro.org>
3737 F: Documentation/filesystems/cramfs.txt
3741 M: Mikael Starvik <starvik@axis.com>
3742 M: Jesper Nilsson <jesper.nilsson@axis.com>
3743 L: linux-cris-kernel@axis.com
3744 W: http://developer.axis.com
3745 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesper/cris.git
3748 F: drivers/tty/serial/crisv10.*
3751 M: Herbert Xu <herbert@gondor.apana.org.au>
3752 M: "David S. Miller" <davem@davemloft.net>
3753 L: linux-crypto@vger.kernel.org
3754 T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
3755 T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
3757 F: Documentation/crypto/
3758 F: Documentation/devicetree/bindings/crypto/
3763 F: include/linux/crypto*
3765 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
3766 M: Neil Horman <nhorman@tuxdriver.com>
3767 L: linux-crypto@vger.kernel.org
3769 F: crypto/ansi_cprng.c
3773 M: Hans Verkuil <hverkuil@xs4all.nl>
3774 L: linux-media@vger.kernel.org
3775 T: git git://linuxtv.org/media_tree.git
3776 W: http://linuxtv.org
3778 F: drivers/media/i2c/cs3308.c
3779 F: drivers/media/i2c/cs3308.h
3781 CS5535 Audio ALSA driver
3782 M: Jaya Kumar <jayakumar.alsa@gmail.com>
3784 F: sound/pci/cs5535audio/
3787 M: Solomon Peachy <pizza@shaftnet.org>
3789 F: drivers/net/wireless/st/cw1200/
3791 CX18 VIDEO4LINUX DRIVER
3792 M: Andy Walls <awalls@md.metrocast.net>
3793 L: ivtv-devel@ivtvdriver.org (subscribers-only)
3794 L: linux-media@vger.kernel.org
3795 T: git git://linuxtv.org/media_tree.git
3796 W: https://linuxtv.org
3797 W: http://www.ivtvdriver.org/index.php/Cx18
3799 F: Documentation/media/v4l-drivers/cx18*
3800 F: drivers/media/pci/cx18/
3801 F: include/uapi/linux/ivtv*
3803 CX2341X MPEG ENCODER HELPER MODULE
3804 M: Hans Verkuil <hverkuil@xs4all.nl>
3805 L: linux-media@vger.kernel.org
3806 T: git git://linuxtv.org/media_tree.git
3807 W: https://linuxtv.org
3809 F: drivers/media/common/cx2341x*
3810 F: include/media/cx2341x*
3812 CX24120 MEDIA DRIVER
3813 M: Jemma Denson <jdenson@gmail.com>
3814 M: Patrick Boettcher <patrick.boettcher@posteo.de>
3815 L: linux-media@vger.kernel.org
3816 W: https://linuxtv.org
3817 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3819 F: drivers/media/dvb-frontends/cx24120*
3821 CX88 VIDEO4LINUX DRIVER
3822 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
3823 M: Mauro Carvalho Chehab <mchehab@kernel.org>
3824 L: linux-media@vger.kernel.org
3825 W: https://linuxtv.org
3826 T: git git://linuxtv.org/media_tree.git
3828 F: Documentation/media/v4l-drivers/cx88*
3829 F: drivers/media/pci/cx88/
3831 CXD2820R MEDIA DRIVER
3832 M: Antti Palosaari <crope@iki.fi>
3833 L: linux-media@vger.kernel.org
3834 W: https://linuxtv.org
3835 W: http://palosaari.fi/linux/
3836 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3837 T: git git://linuxtv.org/anttip/media_tree.git
3839 F: drivers/media/dvb-frontends/cxd2820r*
3841 CXGB3 ETHERNET DRIVER (CXGB3)
3842 M: Santosh Raspatur <santosh@chelsio.com>
3843 L: netdev@vger.kernel.org
3844 W: http://www.chelsio.com
3846 F: drivers/net/ethernet/chelsio/cxgb3/
3848 CXGB3 ISCSI DRIVER (CXGB3I)
3849 M: Karen Xie <kxie@chelsio.com>
3850 L: linux-scsi@vger.kernel.org
3851 W: http://www.chelsio.com
3853 F: drivers/scsi/cxgbi/cxgb3i
3855 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
3856 M: Steve Wise <swise@chelsio.com>
3857 L: linux-rdma@vger.kernel.org
3858 W: http://www.openfabrics.org
3860 F: drivers/infiniband/hw/cxgb3/
3861 F: include/uapi/rdma/cxgb3-abi.h
3863 CXGB4 CRYPTO DRIVER (chcr)
3864 M: Harsh Jain <harsh@chelsio.com>
3865 L: linux-crypto@vger.kernel.org
3866 W: http://www.chelsio.com
3868 F: drivers/crypto/chelsio
3870 CXGB4 ETHERNET DRIVER (CXGB4)
3871 M: Ganesh Goudar <ganeshgr@chelsio.com>
3872 L: netdev@vger.kernel.org
3873 W: http://www.chelsio.com
3875 F: drivers/net/ethernet/chelsio/cxgb4/
3877 CXGB4 ISCSI DRIVER (CXGB4I)
3878 M: Karen Xie <kxie@chelsio.com>
3879 L: linux-scsi@vger.kernel.org
3880 W: http://www.chelsio.com
3882 F: drivers/scsi/cxgbi/cxgb4i
3884 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3885 M: Steve Wise <swise@chelsio.com>
3886 L: linux-rdma@vger.kernel.org
3887 W: http://www.openfabrics.org
3889 F: drivers/infiniband/hw/cxgb4/
3890 F: include/uapi/rdma/cxgb4-abi.h
3892 CXGB4VF ETHERNET DRIVER (CXGB4VF)
3893 M: Casey Leedom <leedom@chelsio.com>
3894 L: netdev@vger.kernel.org
3895 W: http://www.chelsio.com
3897 F: drivers/net/ethernet/chelsio/cxgb4vf/
3899 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3900 M: Frederic Barrat <fbarrat@linux.vnet.ibm.com>
3901 M: Andrew Donnellan <andrew.donnellan@au1.ibm.com>
3902 L: linuxppc-dev@lists.ozlabs.org
3904 F: arch/powerpc/platforms/powernv/pci-cxl.c
3905 F: drivers/misc/cxl/
3906 F: include/misc/cxl*
3907 F: include/uapi/misc/cxl.h
3908 F: Documentation/powerpc/cxl.txt
3909 F: Documentation/ABI/testing/sysfs-class-cxl
3911 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
3912 M: Manoj N. Kumar <manoj@linux.vnet.ibm.com>
3913 M: Matthew R. Ochs <mrochs@linux.vnet.ibm.com>
3914 M: Uma Krishnan <ukrishn@linux.vnet.ibm.com>
3915 L: linux-scsi@vger.kernel.org
3917 F: drivers/scsi/cxlflash/
3918 F: include/uapi/scsi/cxlflash_ioctls.h
3919 F: Documentation/powerpc/cxlflash.txt
3922 M: Russell King <linux@armlinux.org.uk>
3923 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3924 W: http://www.armlinux.org.uk/
3926 F: drivers/video/fbdev/cyber2000fb.*
3928 CYCLADES ASYNC MUX DRIVER
3929 W: http://www.cyclades.com/
3931 F: drivers/tty/cyclades.c
3932 F: include/linux/cyclades.h
3933 F: include/uapi/linux/cyclades.h
3935 CYCLADES PC300 DRIVER
3936 W: http://www.cyclades.com/
3938 F: drivers/net/wan/pc300*
3940 CYPRESS_FIRMWARE MEDIA DRIVER
3941 M: Antti Palosaari <crope@iki.fi>
3942 L: linux-media@vger.kernel.org
3943 W: https://linuxtv.org
3944 W: http://palosaari.fi/linux/
3945 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3946 T: git git://linuxtv.org/anttip/media_tree.git
3948 F: drivers/media/common/cypress_firmware*
3950 CYTTSP TOUCHSCREEN DRIVER
3951 M: Ferruh Yigit <fery@cypress.com>
3952 L: linux-input@vger.kernel.org
3954 F: drivers/input/touchscreen/cyttsp*
3955 F: include/linux/input/cyttsp.h
3957 D-LINK DIR-685 TOUCHKEYS DRIVER