blob: 11d3e37326991cec265f752fa82b5baf2acef6cb [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03002
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 List of maintainers and how to submit kernel changes
4
5Please try to follow the guidelines below. This will make things
6easier on the maintainers. Not all of these guidelines matter for every
7trivial patch so apply some common sense.
8
91. Always _test_ your changes, however small, on at least 4 or
10 5 people, preferably many more.
11
122. 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.)
19
203. 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.
23
244. When you are happy with a change make it generally available for
25 testing and await feedback.
26
275. 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
Andy Whitcroft0a920b52007-06-01 00:46:48 -070034 generalized kernel feature ready for next time.
35
36 PLEASE check your patch with the automated style checker
Akash Shende6f9e2452015-02-16 15:59:48 -080037 (scripts/checkpatch.pl) to catch trivial style violations.
Andy Whitcroft0a920b52007-06-01 00:46:48 -070038 See Documentation/CodingStyle for guidance here.
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Joe Perchesf70f8732009-06-16 15:34:08 -070040 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/SubmittingPatches for details.
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 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.
49
50 PLEASE document known bugs. If it doesn't work for everything
51 or does something very odd once a month document it.
52
Alan Coxc9ee1332006-05-20 15:00:12 -070053 PLEASE remember that submissions must be made under the terms
Stephen Hemminger08602d72015-06-03 13:32:02 -070054 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
Randy Dunlap45003712007-08-30 23:56:37 -070057 Documentation/SubmittingPatches.
Alan Coxc9ee1332006-05-20 15:00:12 -070058
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596. 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
61 not you.
62
Alan Coxc9ee1332006-05-20 15:00:12 -0700637. When sending security related changes or reports to a maintainer
64 please Cc: security@kernel.org, especially if the maintainer
65 does not respond.
66
678. Happy hacking.
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Joe Perchesc7c4fb12009-10-26 16:49:48 -070069Descriptions of section entries:
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Joe Perchesc7c4fb12009-10-26 16:49:48 -070071 P: Person (obsolete)
72 M: Mail patches to: FullName <address@domain>
Paul E. McKenneyeafbaac2014-06-02 09:06:37 -070073 R: Designated reviewer: FullName <address@domain>
74 These reviewers should be CCed on patches.
Joe Perchesc7c4fb12009-10-26 16:49:48 -070075 L: Mailing list that is relevant to this area
76 W: Web-page with status/info
Joe Perches8a6e2532010-03-05 13:43:11 -080077 Q: Patchwork web based patch tracking system site
Joe Perchescea83212014-03-03 15:38:38 -080078 T: SCM tree type and location.
79 Type is one of: git, hg, quilt, stgit, topgit
Joe Perchesc7c4fb12009-10-26 16:49:48 -070080 S: Status, one of the following:
81 Supported: Someone is actually paid to look after this.
82 Maintained: Someone actually looks after it.
83 Odd Fixes: It has a maintainer but they don't have time to do
84 much other than throw the odd patch in. See below..
85 Orphan: No current maintainer [but maybe you could take the
86 role as you write your new code].
87 Obsolete: Old code. Something tagged obsolete generally means
88 it has been replaced by a better system and you
89 should be using that.
90 F: Files and directories with wildcard patterns.
91 A trailing slash includes all files and subdirectory files.
92 F: drivers/net/ all files in and below drivers/net
93 F: drivers/net/* all files in drivers/net, but not below
94 F: */net/* all files in "any top level directory"/net
95 One pattern per line. Multiple F: lines acceptable.
Stephen Warrenbbbe96e2013-04-29 16:17:23 -070096 N: Files and directories with regex patterns.
97 N: [^a-z]tegra all files whose path contains the word tegra
98 One pattern per line. Multiple N: lines acceptable.
Joe Perches6ab88e02014-01-23 15:54:22 -080099 scripts/get_maintainer.pl has different behavior for files that
100 match F: pattern and matches of N: patterns. By default,
101 get_maintainer will not look at git log history when an F: pattern
102 match occurs. When an N: match occurs, git log history is used
103 to also notify the people that have git commit signatures.
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700104 X: Files and directories that are NOT maintained, same rules as F:
105 Files exclusions are tested before file matches.
106 Can be useful for excluding a specific subdirectory, for instance:
107 F: net/
108 X: net/ipv6/
109 matches all files in and below net excluding net/ipv6/
110 K: Keyword perl extended regex pattern to match content in a
Stephen Warrenbbbe96e2013-04-29 16:17:23 -0700111 patch or file. For instance:
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700112 K: of_get_profile
Stephen Warrenbbbe96e2013-04-29 16:17:23 -0700113 matches patches or files that contain "of_get_profile"
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700114 K: \b(printk|pr_(info|err))\b
Stephen Warrenbbbe96e2013-04-29 16:17:23 -0700115 matches patches or files that contain one or more of the words
116 printk, pr_info or pr_err
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700117 One regex pattern per line. Multiple K: lines acceptable.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
119Note: For the hard of thinking, this list is meant to remain in alphabetical
120order. If you could add yourselves to it in alphabetical order that would be
121so much easier [Ed]
122
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700123Maintainers List (try to look for most precise areas first)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700125 -----------------------------------
Joe Perches679655d2009-04-07 20:44:32 -0700126
Steffen Klasserta6d89912007-08-10 14:05:27 -07001273C59X NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700128M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
Steffen Klasserta6d89912007-08-10 14:05:27 -0700129L: netdev@vger.kernel.org
130S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700131F: Documentation/networking/vortex.txt
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700132F: drivers/net/ethernet/3com/3c59x.c
Steffen Klasserta6d89912007-08-10 14:05:27 -0700133
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343CR990 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700135M: David Dillow <dave@thedillows.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700136L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137S: Maintained
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700138F: drivers/net/ethernet/3com/typhoon*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
adam radfordc4de0ce2010-03-08 12:40:36 -08001403WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
141M: Adam Radford <linuxraid@lsi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142L: linux-scsi@vger.kernel.org
adam radfordc4de0ce2010-03-08 12:40:36 -0800143W: http://www.lsi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144S: Supported
adam radfordc4de0ce2010-03-08 12:40:36 -0800145F: drivers/scsi/3w-*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
14753C700 AND 53C700-66 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700148M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149L: linux-scsi@vger.kernel.org
150S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700151F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Alexander Aring68d96dc2014-07-11 10:24:19 +02001536LOWPAN GENERIC (BTLE/IEEE 802.15.4)
Alexander Aringaff3eaa2016-02-19 09:59:10 +0100154M: Alexander Aring <aar@pengutronix.de>
Jukka Rissanen6970c342014-09-15 11:03:36 +0300155M: Jukka Rissanen <jukka.rissanen@linux.intel.com>
Alexander Aring68d96dc2014-07-11 10:24:19 +0200156L: linux-bluetooth@vger.kernel.org
Varka Bhadramebef9c12014-08-08 17:32:45 +0530157L: linux-wpan@vger.kernel.org
Alexander Aring68d96dc2014-07-11 10:24:19 +0200158S: Maintained
159F: net/6lowpan/
Alexander Aring6304f8f2014-07-28 15:16:30 +0200160F: include/net/6lowpan.h
Alexander Aringea9eb692015-08-11 21:44:10 +0200161F: Documentation/networking/6lowpan.txt
Alexander Aring68d96dc2014-07-11 10:24:19 +0200162
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636PACK NETWORK DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -0700164M: Andreas Koensgen <ajk@comnets.uni-bremen.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165L: linux-hams@vger.kernel.org
166S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700167F: drivers/net/hamradio/6pack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698169 10/100/1000 GIGABIT ETHERNET DRIVER
Francois Romieuc8a75b32011-04-17 17:46:40 -0700170M: Realtek linux nic maintainers <nic_swsd@realtek.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700171L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172S: Maintained
Jeff Kirshera8fe65b2011-05-19 23:27:55 -0700173F: drivers/net/ethernet/realtek/r8169.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
1758250/16?50 (AND CLONE UARTS) SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -0800176M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177L: linux-serial@vger.kernel.org
178W: http://serial.sourceforge.net
Greg Kroah-Hartman8ee16a12010-10-06 13:29:44 -0700179S: Maintained
Joe Perches08deed12012-03-23 15:01:57 -0700180T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -0800181F: drivers/tty/serial/8250*
Joe Perches679655d2009-04-07 20:44:32 -0700182F: include/linux/serial_8250.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
1848390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
Ralf Baechle979b6c12005-06-13 14:30:40 -0700185L: netdev@vger.kernel.org
Paul Gortmaker0cf445c2011-01-01 13:28:30 +0000186S: Orphan / Obsolete
Jeff Kirsher644570b2011-04-02 06:20:12 -0700187F: drivers/net/ethernet/8390/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Eric Van Hensbergen67543e52006-03-25 03:07:29 -08001899P FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -0700190M: Eric Van Hensbergen <ericvh@gmail.com>
191M: Ron Minnich <rminnich@sandia.gov>
192M: Latchesar Ionkov <lucho@ionkov.net>
Jim Cromiece00f852006-11-30 04:49:44 +0100193L: v9fs-developer@lists.sourceforge.net
Eric Van Hensbergen27a2a5f2007-07-23 13:06:13 -0500194W: http://swik.net/v9fs
Joe Perches8a6e2532010-03-05 13:43:11 -0800195Q: http://patchwork.kernel.org/project/v9fs-devel/list/
Joe Percheseeba4442009-11-11 14:26:44 -0800196T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
Jim Cromiece00f852006-11-30 04:49:44 +0100197S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700198F: Documentation/filesystems/9p.txt
199F: fs/9p/
Rob Landley2315cb12013-05-28 13:47:58 -0500200F: net/9p/
201F: include/net/9p/
202F: include/uapi/linux/virtio_9p.h
203F: include/trace/events/9p.h
204
Eric Van Hensbergen67543e52006-03-25 03:07:29 -0800205
Antti Palosaari91952bc2012-10-01 12:28:46 -0300206A8293 MEDIA DRIVER
207M: Antti Palosaari <crope@iki.fi>
208L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -0200209W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -0300210W: http://palosaari.fi/linux/
211Q: http://patchwork.linuxtv.org/project/linux-media/list/
212T: git git://linuxtv.org/anttip/media_tree.git
213S: Maintained
214F: drivers/media/dvb-frontends/a8293*
215
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700216AACRAID SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700217M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700218L: linux-scsi@vger.kernel.org
219W: http://www.adaptec.com/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700221F: Documentation/scsi/aacraid.txt
222F: drivers/scsi/aacraid/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Josh Triplettea8f8fc2014-06-06 14:38:27 -0700224ABI/API
225L: linux-api@vger.kernel.org
Josh Triplettea8f8fc2014-06-06 14:38:27 -0700226F: include/linux/syscalls.h
Josh Triplettea8f8fc2014-06-06 14:38:27 -0700227F: kernel/sys_ni.c
228
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700229ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
Hans de Goede93d0cc52011-03-21 17:59:36 +0100230M: Hans de Goede <hdegoede@redhat.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -0700231L: linux-hwmon@vger.kernel.org
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200232S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700233F: drivers/hwmon/abituguru.c
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200234
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700235ABIT UGURU 3 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700236M: Alistair John Strachan <alistair@devzero.co.uk>
Guenter Roeck968ce1b2016-03-22 15:11:03 -0700237L: linux-hwmon@vger.kernel.org
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700238S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700239F: drivers/hwmon/abituguru3.c
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700240
William Breathitt Gray1b06d642016-01-20 13:50:11 -0500241ACCES 104-DIO-48E GPIO DRIVER
242M: William Breathitt Gray <vilhelm.gray@gmail.com>
243L: linux-gpio@vger.kernel.org
244S: Maintained
245F: drivers/gpio/gpio-104-dio-48e.c
246
William Breathitt Gray6ddcf9b2015-11-23 12:54:50 -0500247ACCES 104-IDI-48 GPIO DRIVER
248M: "William Breathitt Gray" <vilhelm.gray@gmail.com>
249L: linux-gpio@vger.kernel.org
250S: Maintained
251F: drivers/gpio/gpio-104-idi-48.c
252
William Breathitt Graye2558982015-10-28 17:24:16 -0400253ACCES 104-IDIO-16 GPIO DRIVER
254M: "William Breathitt Gray" <vilhelm.gray@gmail.com>
255L: linux-gpio@vger.kernel.org
256S: Maintained
257F: drivers/gpio/gpio-104-idio-16.c
258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259ACENIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700260M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261L: linux-acenic@sunsite.dk
262S: Maintained
Jeff Kirsher531c4f82011-08-13 00:37:14 -0700263F: drivers/net/ethernet/alteon/acenic*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Peter Feuerere86435e2009-06-21 18:53:03 +0200265ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700266M: Peter Feuerer <peter@piie.net>
Matthew Garrettd0944852010-02-11 10:40:13 -0500267L: platform-driver-x86@vger.kernel.org
Joe Perches4fc26e32009-07-29 15:04:22 -0700268W: http://piie.net/?section=acerhdf
269S: Maintained
270F: drivers/platform/x86/acerhdf.c
Peter Feuerere86435e2009-06-21 18:53:03 +0200271
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000272ACER WMI LAPTOP EXTRAS
Lee, Chun-Yi182ae552012-12-14 16:14:24 +0800273M: "Lee, Chun-Yi" <jlee@suse.com>
Matthew Garrettd0944852010-02-11 10:40:13 -0500274L: platform-driver-x86@vger.kernel.org
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000275S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700276F: drivers/platform/x86/acer-wmi.c
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000277
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278ACPI
Joe Perches9c3646d2015-06-25 15:02:00 -0700279M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Rafael J. Wysocki7fb06082014-03-20 03:34:47 +0100280M: Len Brown <lenb@kernel.org>
Len Brown6968e502005-12-30 00:32:49 -0500281L: linux-acpi@vger.kernel.org
Rafael J. Wysocki360818b2013-10-09 01:48:26 +0200282W: https://01.org/linux-acpi
283Q: https://patchwork.kernel.org/project/linux-acpi/list/
284T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
Len Brown8b59a452007-01-08 19:03:28 -0500285S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700286F: drivers/acpi/
287F: drivers/pnp/pnpacpi/
288F: include/linux/acpi.h
Felipe Contreras43368e72009-09-21 17:04:24 -0700289F: include/acpi/
Yaowei Bai3a75ef02015-01-17 15:31:07 +0800290F: Documentation/acpi/
Lv Zheng89ca78a2013-06-20 08:02:44 +0800291F: Documentation/ABI/testing/sysfs-bus-acpi
Bjorn Helgaas15fd8302013-06-26 13:38:37 -0600292F: drivers/pci/*acpi*
293F: drivers/pci/*/*acpi*
294F: drivers/pci/*/*/*acpi*
Yaowei Bai3a75ef02015-01-17 15:31:07 +0800295F: tools/power/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500296
Rafael J. Wysocki37749292013-10-09 01:48:35 +0200297ACPI COMPONENT ARCHITECTURE (ACPICA)
298M: Robert Moore <robert.moore@intel.com>
299M: Lv Zheng <lv.zheng@intel.com>
Joe Perches9c3646d2015-06-25 15:02:00 -0700300M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
Rafael J. Wysocki37749292013-10-09 01:48:35 +0200301L: linux-acpi@vger.kernel.org
302L: devel@acpica.org
303W: https://acpica.org/
304W: https://github.com/acpica/acpica/
305Q: https://patchwork.kernel.org/project/linux-acpi/list/
306T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
307S: Supported
308F: drivers/acpi/acpica/
309F: include/acpi/
Lv Zheng2754c442014-01-15 12:04:24 +0800310F: tools/power/acpi/
Rafael J. Wysocki37749292013-10-09 01:48:35 +0200311
Len Brown8b59a452007-01-08 19:03:28 -0500312ACPI FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700313M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500314L: linux-acpi@vger.kernel.org
Rafael J. Wysocki5ca92bd2013-10-10 23:03:44 +0200315W: https://01.org/linux-acpi
Len Brown8b59a452007-01-08 19:03:28 -0500316S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700317F: drivers/acpi/fan.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Len Brown8b59a452007-01-08 19:03:28 -0500319ACPI THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700320M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500321L: linux-acpi@vger.kernel.org
Rafael J. Wysocki5ca92bd2013-10-10 23:03:44 +0200322W: https://01.org/linux-acpi
Len Brown8b59a452007-01-08 19:03:28 -0500323S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700324F: drivers/acpi/*thermal*
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700325
Len Brown359acec2007-02-10 01:59:24 -0500326ACPI VIDEO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700327M: Zhang Rui <rui.zhang@intel.com>
Len Brown359acec2007-02-10 01:59:24 -0500328L: linux-acpi@vger.kernel.org
Rafael J. Wysocki5ca92bd2013-10-10 23:03:44 +0200329W: https://01.org/linux-acpi
Len Brown359acec2007-02-10 01:59:24 -0500330S: Supported
Dan Carpenter86f98a32015-12-01 11:58:40 +0300331F: drivers/acpi/acpi_video.c
Len Brown359acec2007-02-10 01:59:24 -0500332
Carlos Corbachobff431e2008-02-05 02:17:04 +0000333ACPI WMI DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -0500334L: platform-driver-x86@vger.kernel.org
Carlos Corbacho5b927252011-05-02 09:57:13 +0100335S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700336F: drivers/platform/x86/wmi.c
Carlos Corbachobff431e2008-02-05 02:17:04 +0000337
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100338AD1889 ALSA SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700339M: Thibaut Varene <T-Bone@parisc-linux.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200340W: http://wiki.parisc-linux.org/AD1889
341L: linux-parisc@vger.kernel.org
342S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700343F: sound/pci/ad1889.*
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100344
Michael Hennerich527a1a82010-10-28 11:31:28 +0000345AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
346M: Michael Hennerich <michael.hennerich@analog.com>
Joe Perchesa3f531a2011-03-22 16:34:28 -0700347W: http://wiki.analog.com/AD5254
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800348W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000349S: Supported
350F: drivers/misc/ad525x_dpot.c
351
352AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
353M: Michael Hennerich <michael.hennerich@analog.com>
Joe Perchesa3f531a2011-03-22 16:34:28 -0700354W: http://wiki.analog.com/AD5398
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800355W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000356S: Supported
357F: drivers/regulator/ad5398.c
358
359AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
360M: Michael Hennerich <michael.hennerich@analog.com>
Joe Perchesa3f531a2011-03-22 16:34:28 -0700361W: http://wiki.analog.com/AD7142
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800362W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000363S: Supported
364F: drivers/input/misc/ad714x.c
365
366AD7877 TOUCHSCREEN DRIVER
367M: Michael Hennerich <michael.hennerich@analog.com>
Joe Perchesa3f531a2011-03-22 16:34:28 -0700368W: http://wiki.analog.com/AD7877
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800369W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000370S: Supported
371F: drivers/input/touchscreen/ad7877.c
372
373AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
374M: Michael Hennerich <michael.hennerich@analog.com>
Joe Perchesa3f531a2011-03-22 16:34:28 -0700375W: http://wiki.analog.com/AD7879
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800376W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000377S: Supported
378F: drivers/input/touchscreen/ad7879.c
379
Jiri Kosina1330b0d2011-10-31 17:11:41 -0700380ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
Jiri Kosinae5f64502015-08-09 09:11:34 +0200381M: Jiri Kosina <jikos@kernel.org>
Jiri Kosina1330b0d2011-10-31 17:11:41 -0700382S: Maintained
383
Michael Hennerich7302b9d2015-12-11 11:17:15 +0100384ADF7242 IEEE 802.15.4 RADIO DRIVER
385M: Michael Hennerich <michael.hennerich@analog.com>
386W: https://wiki.analog.com/ADF7242
387W: http://ez.analog.com/community/linux-device-drivers
388L: linux-wpan@vger.kernel.org
389S: Supported
390F: drivers/net/ieee802154/adf7242.c
391F: Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
392
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393ADM1025 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -0700394M: Jean Delvare <jdelvare@suse.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -0700395L: linux-hwmon@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700397F: Documentation/hwmon/adm1025
398F: drivers/hwmon/adm1025.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
Corentin Labbecae2caa2007-02-14 21:15:04 +0100400ADM1029 HARDWARE MONITOR DRIVER
LABBE Corentinfce8ffa2014-05-08 16:07:45 +0200401M: Corentin Labbe <clabbe.montjoie@gmail.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -0700402L: linux-hwmon@vger.kernel.org
Corentin Labbecae2caa2007-02-14 21:15:04 +0100403S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700404F: drivers/hwmon/adm1029.c
Corentin Labbecae2caa2007-02-14 21:15:04 +0100405
Michael Wucc0b88c2007-08-31 01:15:25 -0400406ADM8211 WIRELESS DRIVER
Michael Wucc0b88c2007-08-31 01:15:25 -0400407L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +0200408W: http://wireless.kernel.org/
John W. Linvillee71bcbd2010-07-12 16:03:07 -0400409S: Orphan
Kalle Valod4a17302015-11-17 19:49:19 +0200410F: drivers/net/wireless/admtek/adm8211.*
Michael Wucc0b88c2007-08-31 01:15:25 -0400411
Sakari Ailuse8e31622012-11-12 18:14:39 -0300412ADP1653 FLASH CONTROLLER DRIVER
413M: Sakari Ailus <sakari.ailus@iki.fi>
414L: linux-media@vger.kernel.org
415S: Maintained
416F: drivers/media/i2c/adp1653.c
Mauro Carvalho Chehabb5dcee22015-11-10 12:01:44 -0200417F: include/media/i2c/adp1653.h
Sakari Ailuse8e31622012-11-12 18:14:39 -0300418
Michael Hennerich527a1a82010-10-28 11:31:28 +0000419ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
420M: Michael Hennerich <michael.hennerich@analog.com>
Joe Perchesa3f531a2011-03-22 16:34:28 -0700421W: http://wiki.analog.com/ADP5520
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800422W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000423S: Supported
424F: drivers/mfd/adp5520.c
425F: drivers/video/backlight/adp5520_bl.c
Joe Perches45b4e0d2011-03-22 16:34:27 -0700426F: drivers/leds/leds-adp5520.c
Joe Perches77278d52012-01-10 15:08:44 -0800427F: drivers/gpio/gpio-adp5520.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000428F: drivers/input/keyboard/adp5520-keys.c
429
430ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
431M: Michael Hennerich <michael.hennerich@analog.com>
Joe Perchesa3f531a2011-03-22 16:34:28 -0700432W: http://wiki.analog.com/ADP5588
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800433W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000434S: Supported
435F: drivers/input/keyboard/adp5588-keys.c
Joe Perches77278d52012-01-10 15:08:44 -0800436F: drivers/gpio/gpio-adp5588.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000437
438ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
439M: Michael Hennerich <michael.hennerich@analog.com>
Joe Perchesa3f531a2011-03-22 16:34:28 -0700440W: http://wiki.analog.com/ADP8860
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800441W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000442S: Supported
443F: drivers/video/backlight/adp8860_bl.c
444
Dirk Eibach8c22a8f2011-03-21 17:59:36 +0100445ADS1015 HARDWARE MONITOR DRIVER
446M: Dirk Eibach <eibach@gdsys.de>
Guenter Roeck968ce1b2016-03-22 15:11:03 -0700447L: linux-hwmon@vger.kernel.org
Dirk Eibach8c22a8f2011-03-21 17:59:36 +0100448S: Maintained
449F: Documentation/hwmon/ads1015
450F: drivers/hwmon/ads1015.c
451F: include/linux/i2c/ads1015.h
452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453ADT746X FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700454M: Colin Leroy <colin@colino.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700456F: drivers/macintosh/therm_adt746x.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
Jean Delvareb058b852009-12-09 20:36:08 +0100458ADT7475 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -0700459M: Jean Delvare <jdelvare@suse.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -0700460L: linux-hwmon@vger.kernel.org
Jean Delvareb058b852009-12-09 20:36:08 +0100461S: Maintained
462F: Documentation/hwmon/adt7475
463F: drivers/hwmon/adt7475.c
464
Michael Hennerich527a1a82010-10-28 11:31:28 +0000465ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
466M: Michael Hennerich <michael.hennerich@analog.com>
Joe Perchesa3f531a2011-03-22 16:34:28 -0700467W: http://wiki.analog.com/ADXL345
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800468W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000469S: Supported
470F: drivers/input/misc/adxl34x.c
471
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400472ADVANSYS SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700473M: Matthew Wilcox <matthew@wil.cx>
Jiri Slabyd8130622015-07-17 16:23:20 -0700474M: Hannes Reinecke <hare@suse.com>
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400475L: linux-scsi@vger.kernel.org
476S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700477F: Documentation/scsi/advansys.txt
478F: drivers/scsi/advansys.c
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400479
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480AEDSP16 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700481M: Riccardo Facchetti <fizban@tin.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700483F: sound/oss/aedsp16.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
Antti Palosaari91952bc2012-10-01 12:28:46 -0300485AF9013 MEDIA DRIVER
486M: Antti Palosaari <crope@iki.fi>
487L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -0200488W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -0300489W: http://palosaari.fi/linux/
490Q: http://patchwork.linuxtv.org/project/linux-media/list/
491T: git git://linuxtv.org/anttip/media_tree.git
492S: Maintained
493F: drivers/media/dvb-frontends/af9013*
494
495AF9033 MEDIA DRIVER
496M: Antti Palosaari <crope@iki.fi>
497L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -0200498W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -0300499W: http://palosaari.fi/linux/
500Q: http://patchwork.linuxtv.org/project/linux-media/list/
501T: git git://linuxtv.org/anttip/media_tree.git
502S: Maintained
503F: drivers/media/dvb-frontends/af9033*
504
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505AFFS FILE SYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +0200506L: linux-fsdevel@vger.kernel.org
507S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700508F: Documentation/filesystems/affs.txt
509F: fs/affs/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700511AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
Joe Perches8b58be82009-07-29 15:04:30 -0700512M: David Howells <dhowells@redhat.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700513L: linux-afs@lists.infradead.org
514S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700515F: fs/afs/
516F: include/net/af_rxrpc.h
517F: net/rxrpc/af_rxrpc.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700518
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519AGPGART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700520M: David Airlie <airlied@linux.ie>
Dave Airlie878eaf62014-02-27 14:51:55 +1000521T: git git://people.freedesktop.org/~airlied/linux (part of drm maint)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700523F: drivers/char/agp/
524F: include/linux/agp*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -0800525F: include/uapi/linux/agp*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
527AHA152X SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700528M: "Juergen E. Fischer" <fischer@norbit.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529L: linux-scsi@vger.kernel.org
530S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700531F: drivers/scsi/aha152x*
532F: drivers/scsi/pcmcia/aha152x*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
Hannes Reinecke64624d42007-10-19 10:32:29 +0200534AIC7XXX / AIC79XX SCSI DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -0700535M: Hannes Reinecke <hare@suse.com>
Hannes Reinecke64624d42007-10-19 10:32:29 +0200536L: linux-scsi@vger.kernel.org
537S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700538F: drivers/scsi/aic7xxx/
Hannes Reinecke64624d42007-10-19 10:32:29 +0200539
Hans Verkuil450500a2012-11-23 07:11:33 -0300540AIMSLAB FM RADIO RECEIVER DRIVER
541M: Hans Verkuil <hverkuil@xs4all.nl>
542L: linux-media@vger.kernel.org
543T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -0200544W: https://linuxtv.org
Hans Verkuil450500a2012-11-23 07:11:33 -0300545S: Maintained
546F: drivers/media/radio/radio-aimslab*
547
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700548AIO
Joe Perches8b58be82009-07-29 15:04:30 -0700549M: Benjamin LaHaise <bcrl@kvack.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700550L: linux-aio@kvack.org
551S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700552F: fs/aio.c
553F: include/linux/*aio*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700554
Antti Palosaari469d4ec2014-07-17 21:57:14 -0300555AIRSPY MEDIA DRIVER
556M: Antti Palosaari <crope@iki.fi>
557L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -0200558W: https://linuxtv.org
Antti Palosaari469d4ec2014-07-17 21:57:14 -0300559W: http://palosaari.fi/linux/
560Q: http://patchwork.linuxtv.org/project/linux-media/list/
561T: git git://linuxtv.org/anttip/media_tree.git
562S: Maintained
563F: drivers/media/usb/airspy/
564
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565ALCATEL SPEEDTOUCH USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700566M: Duncan Sands <duncan.sands@free.fr>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -0700567L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568W: http://www.linux-usb.org/SpeedTouch/
569S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700570F: drivers/usb/atm/speedtch.c
571F: drivers/usb/atm/usbatm.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
Pierre Ossman272f1332007-05-14 21:25:26 +0200573ALCHEMY AU1XX0 MMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700574M: Manuel Lauss <manuel.lauss@gmail.com>
Manuel Lauss08fcb722008-06-09 08:40:35 +0200575S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700576F: drivers/mmc/host/au1xmmc.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200577
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000578ALI1563 I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700579M: Rudolf Marek <r.marek@assembler.cz>
Jean Delvare846557d2008-10-30 15:55:47 +0100580L: linux-i2c@vger.kernel.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000581S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700582F: Documentation/i2c/busses/i2c-ali1563
583F: drivers/i2c/busses/i2c-ali1563.c
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000584
LABBE Corentinbc368792015-07-17 16:39:42 +0200585ALLWINNER SECURITY SYSTEM
586M: Corentin Labbe <clabbe.montjoie@gmail.com>
587L: linux-crypto@vger.kernel.org
588S: Maintained
589F: drivers/crypto/sunxi-ss/
590
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591ALPHA PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700592M: Richard Henderson <rth@twiddle.net>
Joe Perches8b58be82009-07-29 15:04:30 -0700593M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Matt Turnerabd4d602010-01-14 13:15:20 -0500594M: Matt Turner <mattst88@gmail.com>
Joe Perchesc89f4f92012-03-23 15:01:57 -0700595S: Odd Fixes
Cheng Renquana9406692009-03-31 15:23:35 -0700596L: linux-alpha@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -0700597F: arch/alpha/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Ley Foon Tanf62092f2015-02-04 16:32:18 +0800599ALTERA MAILBOX DRIVER
600M: Ley Foon Tan <lftan@altera.com>
601L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
602S: Maintained
603F: drivers/mailbox/mailbox-altera.c
604
Tien Hock Lohc5abbba2015-02-24 01:53:03 -0800605ALTERA PIO DRIVER
606M: Tien Hock Loh <thloh@altera.com>
607L: linux-gpio@vger.kernel.org
608S: Maintained
609F: drivers/gpio/gpio-altera.c
610
Vince Bridgers16b8b922014-03-17 17:52:40 -0500611ALTERA TRIPLE SPEED ETHERNET DRIVER
Vince Bridgersc53fed02014-10-09 10:08:42 -0500612M: Vince Bridgers <vbridger@opensource.altera.com>
Vince Bridgers16b8b922014-03-17 17:52:40 -0500613L: netdev@vger.kernel.org
614L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
615S: Maintained
616F: drivers/net/ethernet/altera/
617
Tobias Klauseradf92512011-02-09 10:58:29 +0100618ALTERA UART/JTAG UART SERIAL DRIVERS
619M: Tobias Klauser <tklauser@distanz.ch>
620L: linux-serial@vger.kernel.org
Tobias Klauser61bd0942014-02-25 15:01:49 -0800621L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
Tobias Klauseradf92512011-02-09 10:58:29 +0100622S: Maintained
623F: drivers/tty/serial/altera_uart.c
624F: drivers/tty/serial/altera_jtaguart.c
625F: include/linux/altera_uart.h
626F: include/linux/altera_jtaguart.h
627
Tom Lendackyf4875e12013-11-12 11:46:57 -0600628AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
629M: Tom Lendacky <thomas.lendacky@amd.com>
630L: linux-crypto@vger.kernel.org
631S: Supported
632F: drivers/crypto/ccp/
633F: include/linux/ccp.h
634
Andreas Herrmann512d1022011-05-25 20:43:31 +0200635AMD FAM15H PROCESSOR POWER MONITORING DRIVER
Huang Rui96818b52015-12-10 11:56:11 +0800636M: Huang Rui <ray.huang@amd.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -0700637L: linux-hwmon@vger.kernel.org
Huang Rui96818b52015-12-10 11:56:11 +0800638S: Supported
Andreas Herrmann512d1022011-05-25 20:43:31 +0200639F: Documentation/hwmon/fam15h_power
640F: drivers/hwmon/fam15h_power.c
641
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700642AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
Jordan Crouse67d76712008-05-12 14:02:22 -0700643L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Greg Kroah-Hartmanb4731972015-09-25 20:45:27 -0700644S: Orphan
Joe Perchesfaf2e1d2014-08-08 14:26:18 -0700645F: drivers/usb/gadget/udc/amd5536udc.*
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700646
Jordan Crousef90b8112006-01-06 00:12:14 -0800647AMD GEODE PROCESSOR/CHIPSET SUPPORT
Andres Salomon69006092010-12-21 17:24:23 -0800648P: Andres Salomon <dilinger@queued.net>
Jordan Crouse67d76712008-05-12 14:02:22 -0700649L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Jordan Crousef90b8112006-01-06 00:12:14 -0800650W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
651S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700652F: drivers/char/hw_random/geode-rng.c
653F: drivers/crypto/geode*
Jingoo Han8a61f012014-07-01 15:36:01 +0900654F: drivers/video/fbdev/geode/
Joe Perches679655d2009-04-07 20:44:32 -0700655F: arch/x86/include/asm/geode.h
Jordan Crousef90b8112006-01-06 00:12:14 -0800656
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200657AMD IOMMU (AMD-VI)
Joerg Roedele4110562012-10-23 16:16:23 +0200658M: Joerg Roedel <joro@8bytes.org>
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200659L: iommu@lists.linux-foundation.org
Joerg Roedel525b2332012-03-15 11:56:44 +0100660T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
Joerg Roedele4110562012-10-23 16:16:23 +0200661S: Maintained
Joe Perchesb2c16392011-12-08 20:21:40 -0800662F: drivers/iommu/amd_iommu*.[ch]
663F: include/linux/amd-iommu.h
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200664
Oded Gabbay16423d62014-07-15 13:08:36 +0300665AMD KFD
Oded Gabbay1241e0b2015-05-10 12:37:28 +0300666M: Oded Gabbay <oded.gabbay@gmail.com>
Joe Perches49e7d9d2015-04-15 16:17:31 -0700667L: dri-devel@lists.freedesktop.org
668T: git git://people.freedesktop.org/~gabbayo/linux.git
669S: Supported
Oded Gabbay130e0372015-06-12 21:35:14 +0300670F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
671F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
Oded Gabbay32c22e92015-06-12 21:38:22 +0300672F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
Ben Gozff758a12014-10-07 14:43:07 +0300673F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
Joe Perches49e7d9d2015-04-15 16:17:31 -0700674F: drivers/gpu/drm/amd/amdkfd/
Oded Gabbay04df25d2015-01-05 18:15:45 +0200675F: drivers/gpu/drm/amd/include/cik_structs.h
676F: drivers/gpu/drm/amd/include/kgd_kfd_interface.h
Ben Gozff758a12014-10-07 14:43:07 +0300677F: drivers/gpu/drm/amd/include/vi_structs.h
Joe Perches49e7d9d2015-04-15 16:17:31 -0700678F: drivers/gpu/drm/radeon/radeon_kfd.c
679F: drivers/gpu/drm/radeon/radeon_kfd.h
680F: include/uapi/linux/kfd_ioctl.h
Oded Gabbay16423d62014-07-15 13:08:36 +0300681
Suravee Suthikulpanit2510eb72016-02-08 11:59:06 -0600682AMD SEATTLE DEVICE TREE SUPPORT
683M: Brijesh Singh <brijeshkumar.singh@amd.com>
684M: Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
685M: Tom Lendacky <thomas.lendacky@amd.com>
686S: Supported
687F: arch/arm64/boot/dts/amd/
688
Lendacky, Thomas45198c72014-06-05 09:15:24 -0500689AMD XGBE DRIVER
690M: Tom Lendacky <thomas.lendacky@amd.com>
691L: netdev@vger.kernel.org
692S: Supported
693F: drivers/net/ethernet/amd/xgbe/
Tom Lendacky08b89402016-02-08 11:59:15 -0600694F: arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
Lendacky, Thomas45198c72014-06-05 09:15:24 -0500695
Stelian Pop284f42b2006-12-12 18:18:31 +0100696AMS (Apple Motion Sensor) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700697M: Michael Hanselmann <linux-kernel@hansmi.ch>
Stelian Pop284f42b2006-12-12 18:18:31 +0100698S: Supported
Jean Delvarebd5f47e2010-10-28 20:31:50 +0200699F: drivers/macintosh/ams/
Stelian Pop284f42b2006-12-12 18:18:31 +0100700
Hans Verkuil531fca12012-11-23 06:53:24 -0300701ANALOG DEVICES INC AD9389B DRIVER
702M: Hans Verkuil <hans.verkuil@cisco.com>
703L: linux-media@vger.kernel.org
704S: Maintained
705F: drivers/media/i2c/ad9389b*
706
Lars-Peter Clausen614b4382015-01-23 12:52:34 -0300707ANALOG DEVICES INC ADV7180 DRIVER
708M: Lars-Peter Clausen <lars@metafoo.de>
709L: linux-media@vger.kernel.org
710W: http://ez.analog.com/community/linux-device-drivers
711S: Supported
712F: drivers/media/i2c/adv7180.c
713
Hans Verkuilc40ddfa2013-08-12 10:02:48 -0300714ANALOG DEVICES INC ADV7511 DRIVER
715M: Hans Verkuil <hans.verkuil@cisco.com>
716L: linux-media@vger.kernel.org
717S: Maintained
718F: drivers/media/i2c/adv7511*
719
Hans Verkuil531fca12012-11-23 06:53:24 -0300720ANALOG DEVICES INC ADV7604 DRIVER
721M: Hans Verkuil <hans.verkuil@cisco.com>
722L: linux-media@vger.kernel.org
723S: Maintained
724F: drivers/media/i2c/adv7604*
725
Hans Verkuilc40ddfa2013-08-12 10:02:48 -0300726ANALOG DEVICES INC ADV7842 DRIVER
727M: Hans Verkuil <hans.verkuil@cisco.com>
728L: linux-media@vger.kernel.org
729S: Maintained
730F: drivers/media/i2c/adv7842*
731
Michael Hennerich527a1a82010-10-28 11:31:28 +0000732ANALOG DEVICES INC ASOC CODEC DRIVERS
Lars-Peter Clausen535bd162011-10-17 20:33:05 +0200733M: Lars-Peter Clausen <lars@metafoo.de>
Michael Hennerich527a1a82010-10-28 11:31:28 +0000734L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perchesa3f531a2011-03-22 16:34:28 -0700735W: http://wiki.analog.com/
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800736W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000737S: Supported
Mark Brown39c9d192011-06-17 11:22:27 +0100738F: sound/soc/codecs/adau*
Lars-Peter Clausencc526882011-06-27 17:04:01 +0200739F: sound/soc/codecs/adav*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000740F: sound/soc/codecs/ad1*
Mark Brownae48f5e2013-08-07 18:01:08 +0100741F: sound/soc/codecs/ad7*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000742F: sound/soc/codecs/ssm*
Lars-Peter Clausen40216ce2011-11-28 09:44:17 +0100743F: sound/soc/codecs/sigmadsp.*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000744
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400745ANALOG DEVICES INC ASOC DRIVERS
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -0700746L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400747L: alsa-devel@alsa-project.org (moderated for non-subscribers)
748W: http://blackfin.uclinux.org/
749S: Supported
750F: sound/soc/blackfin/*
Rob Herring7d1f9012014-12-26 13:47:30 -0600751
Lars-Peter Clausen4ce72ab2014-08-18 09:08:00 +0100752ANALOG DEVICES INC IIO DRIVERS
753M: Lars-Peter Clausen <lars@metafoo.de>
754M: Michael Hennerich <Michael.Hennerich@analog.com>
755W: http://wiki.analog.com/
756W: http://ez.analog.com/community/linux-device-drivers
757S: Supported
758F: drivers/iio/*/ad*
759X: drivers/iio/*/adjd*
760F: drivers/staging/iio/*/ad*
761F: staging/iio/trigger/iio-trig-bfin-timer.c
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400762
Lars-Peter Clausen0e3b67b2015-08-20 17:39:13 +0200763ANALOG DEVICES INC DMA DRIVERS
764M: Lars-Peter Clausen <lars@metafoo.de>
765W: http://ez.analog.com/community/linux-device-drivers
766S: Supported
767F: drivers/dma/dma-axi-dmac.c
768
Greg KH41c9e952015-01-18 16:33:24 +0900769ANDROID DRIVERS
770M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Baruch Siach27682402015-03-18 21:29:10 +0200771M: Arve Hjønnevåg <arve@android.com>
Greg KH41c9e952015-01-18 16:33:24 +0900772M: Riley Andrews <riandrews@android.com>
Lee Campbell0e4a5662015-05-24 14:47:38 -0700773T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg KH41c9e952015-01-18 16:33:24 +0900774L: devel@driverdev.osuosl.org
775S: Supported
776F: drivers/android/
777F: drivers/staging/android/
778
Johannes Berg42269062006-07-25 16:15:50 +0200779AOA (Apple Onboard Audio) ALSA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700780M: Johannes Berg <johannes@sipsolutions.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +1000781L: linuxppc-dev@lists.ozlabs.org
Joe Perches93711662009-06-16 15:34:07 -0700782L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Johannes Berg42269062006-07-25 16:15:50 +0200783S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700784F: sound/aoa/
Johannes Berg42269062006-07-25 16:15:50 +0200785
William Breathitt Gray97a445d2016-02-11 11:49:36 -0500786APEX EMBEDDED SYSTEMS STX104 DAC DRIVER
787M: William Breathitt Gray <vilhelm.gray@gmail.com>
788L: linux-iio@vger.kernel.org
789S: Maintained
790F: drivers/iio/dac/stx104.c
791
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792APM DRIVER
Jiri Kosinae5f64502015-08-09 09:11:34 +0200793M: Jiri Kosina <jikos@kernel.org>
Jiri Kosina81024fc2011-05-04 13:41:31 +0200794S: Odd fixes
Fengguang Wu9f273c22016-01-20 15:03:25 -0800795T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
Joe Perches679655d2009-04-07 20:44:32 -0700796F: arch/x86/kernel/apm_32.c
797F: include/linux/apm_bios.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -0800798F: include/uapi/linux/apm_bios.h
Jiri Kosina81024fc2011-05-04 13:41:31 +0200799F: drivers/char/apm-emulation.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700801APPLE BCM5974 MULTITOUCH DRIVER
Henrik Rydberg75dd1122015-01-08 14:32:21 -0800802M: Henrik Rydberg <rydberg@bitmath.org>
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700803L: linux-input@vger.kernel.org
Henrik Rydberg75dd1122015-01-08 14:32:21 -0800804S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -0700805F: drivers/input/mouse/bcm5974.c
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700806
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700807APPLE SMC DRIVER
Henrik Rydberg75dd1122015-01-08 14:32:21 -0800808M: Henrik Rydberg <rydberg@bitmath.org>
Guenter Roeck968ce1b2016-03-22 15:11:03 -0700809L: linux-hwmon@vger.kernel.org
Henrik Rydberg75dd1122015-01-08 14:32:21 -0800810S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -0700811F: drivers/hwmon/applesmc.c
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700812
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813APPLETALK NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -0700814M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700816F: drivers/net/appletalk/
817F: net/appletalk/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
Duc Dang21c75322015-08-12 17:01:12 -0700819APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
820M: Duc Dang <dhdang@apm.com>
821S: Supported
822F: arch/arm64/boot/dts/apm/
823
Iyappan Subramanian24299502014-08-07 15:14:25 -0700824APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
825M: Iyappan Subramanian <isubramanian@apm.com>
826M: Keyur Chudgar <kchudgar@apm.com>
Iyappan Subramanian24299502014-08-07 15:14:25 -0700827S: Supported
828F: drivers/net/ethernet/apm/xgene/
829F: Documentation/devicetree/bindings/net/apm-xgene-enet.txt
830
Laurent Pinchart62a37dc2013-08-09 08:46:11 -0300831APTINA CAMERA SENSOR PLL
832M: Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
833L: linux-media@vger.kernel.org
834S: Maintained
835F: drivers/media/i2c/aptina-pll.*
836
Jaya Kumar1154ea72005-06-21 17:17:04 -0700837ARC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700838M: Jaya Kumar <jayalk@intworks.biz>
Jaya Kumar1154ea72005-06-21 17:17:04 -0700839S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +0900840F: drivers/video/fbdev/arcfb.c
841F: drivers/video/fbdev/core/fb_defio.c
Jaya Kumar1154ea72005-06-21 17:17:04 -0700842
Michael Grzeschikc38f6ac2015-09-17 15:26:16 +0200843ARCNET NETWORK LAYER
844M: Michael Grzeschik <m.grzeschik@pengutronix.de>
845L: netdev@vger.kernel.org
846S: Maintained
847F: drivers/net/arcnet/
848F: include/uapi/linux/if_arcnet.h
849
Liviu Dudauc5a906a2015-08-04 17:41:58 +0100850ARM HDLCD DRM DRIVER
851M: Liviu Dudau <liviu.dudau@arm.com>
852S: Supported
853F: drivers/gpu/drm/arm/
854F: Documentation/devicetree/bindings/display/arm,hdlcd.txt
855
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856ARM MFM AND FLOPPY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -0700857M: Ian Molton <spyro@f2s.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700859F: arch/arm/lib/floppydma.S
860F: arch/arm/include/asm/floppy.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
Will Deacon6f965212011-07-01 14:38:53 +0100862ARM PMU PROFILING AND DEBUGGING
863M: Will Deacon <will.deacon@arm.com>
Mark Rutland70e238d2015-10-02 10:55:08 +0100864R: Mark Rutland <mark.rutland@arm.com>
Will Deacon6f965212011-07-01 14:38:53 +0100865S: Maintained
Mark Rutlanddd06a842015-10-02 10:55:07 +0100866F: arch/arm*/kernel/perf_*
Will Deacon6f965212011-07-01 14:38:53 +0100867F: arch/arm/oprofile/common.c
Mark Rutlanddd06a842015-10-02 10:55:07 +0100868F: arch/arm*/kernel/hw_breakpoint.c
869F: arch/arm*/include/asm/hw_breakpoint.h
870F: arch/arm*/include/asm/perf_event.h
Mark Rutlandfa8ad782015-07-06 12:23:53 +0100871F: drivers/perf/arm_pmu.c
872F: include/linux/perf/arm_pmu.h
Will Deacon6f965212011-07-01 14:38:53 +0100873
Russell Kingd4275352009-04-16 14:05:27 +0100874ARM PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700875M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700876L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100877W: http://www.arm.linux.org.uk/
878S: Maintained
879F: arch/arm/
880
Stephen Boydd323c2432012-10-24 11:00:29 -0700881ARM SUB-ARCHITECTURES
882L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Zhang Yanfei56ca9d92013-01-11 14:32:04 -0800883S: Maintained
Stephen Boydd323c2432012-10-24 11:00:29 -0700884F: arch/arm/mach-*/
885F: arch/arm/plat-*/
886T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
887
Russell Kingcefbf4e2009-11-22 17:40:28 +0000888ARM PRIMECELL AACI PL041 DRIVER
889M: Russell King <linux@arm.linux.org.uk>
890S: Maintained
891F: sound/arm/aaci.*
892
893ARM PRIMECELL CLCD PL110 DRIVER
894M: Russell King <linux@arm.linux.org.uk>
895S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +0900896F: drivers/video/fbdev/amba-clcd.*
Russell Kingcefbf4e2009-11-22 17:40:28 +0000897
898ARM PRIMECELL KMI PL050 DRIVER
899M: Russell King <linux@arm.linux.org.uk>
900S: Maintained
901F: drivers/input/serio/ambakmi.*
902F: include/linux/amba/kmi.h
903
Russell King2761f5c2007-05-24 06:56:08 +0200904ARM PRIMECELL MMCI PL180/1 DRIVER
Russell King08a5c9a2013-02-11 15:28:51 +0000905M: Russell King <linux@arm.linux.org.uk>
906S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700907F: drivers/mmc/host/mmci.*
Russell King2f748aa2013-02-11 15:28:05 +0000908F: include/linux/amba/mmci.h
Russell King2761f5c2007-05-24 06:56:08 +0200909
Russell King1b4304e2013-02-11 15:26:27 +0000910ARM PRIMECELL UART PL010 AND PL011 DRIVERS
911M: Russell King <linux@arm.linux.org.uk>
912S: Maintained
913F: drivers/tty/serial/amba-pl01*.c
914F: include/linux/amba/serial.h
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800915
Russell Kingcefbf4e2009-11-22 17:40:28 +0000916ARM PRIMECELL BUS SUPPORT
917M: Russell King <linux@arm.linux.org.uk>
918S: Maintained
919F: drivers/amba/
920F: include/linux/amba/bus.h
921
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800922ARM/ADS SPHERE MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700923M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700924L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800925S: Maintained
926
Sergey Lapin9c784f92008-08-03 02:29:48 +0100927ARM/AFEB9260 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700928M: Sergey Lapin <slapin@ossfans.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700929L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sergey Lapin9c784f92008-08-03 02:29:48 +0100930S: Maintained
931
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800932ARM/AJECO 1ARM MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700933M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700934L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800935S: Maintained
936
Maxime Ripard5c6dcd72015-10-07 18:39:40 +0100937ARM/Allwinner sunXi SoC support
Maxime Ripard1b106692012-11-15 21:51:26 +0100938M: Maxime Ripard <maxime.ripard@free-electrons.com>
Maxime Ripard5c6dcd72015-10-07 18:39:40 +0100939M: Chen-Yu Tsai <wens@csie.org>
Maxime Ripard1b106692012-11-15 21:51:26 +0100940L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
941S: Maintained
Maxime Ripard5c6dcd72015-10-07 18:39:40 +0100942N: sun[x456789]i
Maxime Ripard60b0f382013-12-30 16:03:33 +0100943
944ARM/Allwinner SoC Clock Support
945M: Emilio López <emilio@elopez.com.ar>
946S: Maintained
947F: drivers/clk/sunxi/
Maxime Ripard1b106692012-11-15 21:51:26 +0100948
Carlo Caione79318452016-02-23 10:43:11 +0100949ARM/Amlogic Meson SoC support
Carlo Caione7c1e3872014-09-12 20:18:31 +0200950M: Carlo Caione <carlo@caione.org>
951L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Carlo Caione79318452016-02-23 10:43:11 +0100952L: linux-meson@googlegroups.com
953W: http://linux-meson.com/
Carlo Caione7c1e3872014-09-12 20:18:31 +0200954S: Maintained
Carlo Caione79318452016-02-23 10:43:11 +0100955F: arch/arm/mach-meson/
956F: arch/arm/boot/dts/meson*
957N: meson
Carlo Caione7c1e3872014-09-12 20:18:31 +0200958
Tsahee Zidenbergeff506f2015-03-12 13:53:25 +0200959ARM/Annapurna Labs ALPINE ARCHITECTURE
960M: Tsahee Zidenberg <tsahee@annapurnalabs.com>
Antoine Tenarta9e55472016-02-22 14:22:30 +0100961M: Antoine Tenart <antoine.tenart@free-electrons.com>
Tsahee Zidenbergeff506f2015-03-12 13:53:25 +0200962S: Maintained
963F: arch/arm/mach-alpine/
Antoine Tenarta9e55472016-02-22 14:22:30 +0100964F: arch/arm/boot/dts/alpine*
965F: arch/arm64/boot/dts/al/
966F: drivers/*/*alpine*
Tsahee Zidenbergeff506f2015-03-12 13:53:25 +0200967
Lars Persson5255034d2016-02-11 17:06:21 +0100968ARM/ARTPEC MACHINE SUPPORT
969M: Jesper Nilsson <jesper.nilsson@axis.com>
970M: Lars Persson <lars.persson@axis.com>
971M: Niklas Cassel <niklas.cassel@axis.com>
972S: Maintained
973L: linux-arm-kernel@axis.com
974F: arch/arm/mach-artpec
975F: arch/arm/boot/dts/artpec6*
976F: drivers/clk/clk-artpec6.c
977
Alexandre Belloni8dca5ce2015-09-02 18:24:21 +0200978ARM/ATMEL AT91RM9200, AT91SAM9 AND SAMA5 SOC SUPPORT
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800979M: Nicolas Ferre <nicolas.ferre@atmel.com>
Nicolas Ferred68b35f2015-04-29 11:57:18 +0200980M: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800981M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700982L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800983W: http://www.linux4sam.org
Fengguang Wu9f273c22016-01-20 15:03:25 -0800984T: git git://git.kernel.org/pub/scm/linux/kernel/git/nferre/linux-at91.git
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800985S: Supported
986F: arch/arm/mach-at91/
Alexandre Bellonif0a0a582014-11-07 21:58:21 +0100987F: include/soc/at91/
Mark Brown70e389c2013-10-16 12:04:07 +0100988F: arch/arm/boot/dts/at91*.dts
989F: arch/arm/boot/dts/at91*.dtsi
990F: arch/arm/boot/dts/sama*.dts
991F: arch/arm/boot/dts/sama*.dtsi
Alexandre Belloni5f58c972015-01-12 19:42:14 +0100992F: arch/arm/include/debug/at91.S
Andrew Victord4a89c72006-12-04 13:56:21 +0100993
Boris BREZILLON6e05dd42014-05-27 13:39:28 +0200994ARM/ATMEL AT91 Clock Support
995M: Boris Brezillon <boris.brezillon@free-electrons.com>
996S: Maintained
997F: drivers/clk/at91
998
Rob Herring986cf2e2011-06-22 11:28:53 -0500999ARM/CALXEDA HIGHBANK ARCHITECTURE
Rob Herring5d3ad8a2013-12-03 10:20:16 -06001000M: Rob Herring <robh@kernel.org>
Rob Herring986cf2e2011-06-22 11:28:53 -05001001L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1002S: Maintained
1003F: arch/arm/mach-highbank/
Rob Herringe68d7c12015-12-10 17:38:23 -06001004F: arch/arm/boot/dts/highbank.dts
1005F: arch/arm/boot/dts/ecx-*.dts*
Rob Herring986cf2e2011-06-22 11:28:53 -05001006
Anton Vorontsovd94f9442010-03-25 17:12:41 +03001007ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
Krzysztof Hałasa5529c2c2014-09-30 10:32:58 +02001008M: Krzysztof Halasa <khalasa@piap.pl>
Anton Vorontsovd94f9442010-03-25 17:12:41 +03001009S: Maintained
1010F: arch/arm/mach-cns3xxx/
Anton Vorontsovd94f9442010-03-25 17:12:41 +03001011
Sunil Goutham4863dea2015-05-26 19:20:15 -07001012ARM/CAVIUM THUNDER NETWORK DRIVER
1013M: Sunil Goutham <sgoutham@cavium.com>
1014M: Robert Richter <rric@kernel.org>
1015L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1016S: Supported
Aleksey Makarov322e5cc2015-08-30 12:29:09 +03001017F: drivers/net/ethernet/cavium/thunder/
Sunil Goutham4863dea2015-05-26 19:20:15 -07001018
Alexander Shiyan386ab512012-11-17 17:57:24 +04001019ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1020M: Alexander Shiyan <shc_work@mail.ru>
1021L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1022S: Odd Fixes
Alexander Shiyanb8ba3872014-02-15 12:05:33 +04001023N: clps711x
Alexander Shiyan386ab512012-11-17 17:57:24 +04001024
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001025ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +01001026M: Hartley Sweeten <hsweeten@visionengravers.com>
Ryan Mallon1c5454e2011-06-15 14:45:36 +10001027M: Ryan Mallon <rmallon@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001028L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001029S: Maintained
Hartley Sweetend19d3662009-07-10 23:02:59 +01001030F: arch/arm/mach-ep93xx/
1031F: arch/arm/mach-ep93xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001032
1033ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001034M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001035L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001036S: Maintained
1037
Russell Kingd4275352009-04-16 14:05:27 +01001038ARM/CLKDEV SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001039M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001040L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches37417042012-03-23 15:01:58 -07001041S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01001042F: arch/arm/include/asm/clkdev.h
Joe Perches4fa26512011-03-22 16:34:31 -07001043F: drivers/clk/clkdev.c
Russell Kingd4275352009-04-16 14:05:27 +01001044
Mike Rapoportd48134e2008-08-20 09:03:26 +01001045ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001046M: Mike Rapoport <mike@compulab.co.il>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001047L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +01001048S: Maintained
1049
Hubert Feurstein94150092009-10-07 08:36:07 +01001050ARM/CONTEC MICRO9 MACHINE SUPPORT
1051M: Hubert Feurstein <hubert.feurstein@contec.at>
1052S: Maintained
1053F: arch/arm/mach-ep93xx/micro9.c
1054
Pratik Patela06ae862014-11-03 11:07:35 -07001055ARM/CORESIGHT FRAMEWORK AND DRIVERS
1056M: Mathieu Poirier <mathieu.poirier@linaro.org>
1057L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1058S: Maintained
Mathieu Poirier01081f52015-03-30 14:13:41 -06001059F: drivers/hwtracing/coresight/*
Pratik Patela06ae862014-11-03 11:07:35 -07001060F: Documentation/trace/coresight.txt
1061F: Documentation/devicetree/bindings/arm/coresight.txt
Mathieu Poirier7a25ec82014-11-10 14:06:42 -07001062F: Documentation/ABI/testing/sysfs-bus-coresight-devices-*
Pratik Patela06ae862014-11-03 11:07:35 -07001063
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064ARM/CORGI MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001065M: Richard Purdie <rpurdie@rpsys.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066S: Maintained
1067
Paulius Zaleckas881a95f2009-03-26 10:06:27 +02001068ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
Hans Ulli Kroll162500b2010-05-13 06:43:59 +01001069M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001070L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Krollb60e23b2015-05-07 19:29:03 +02001071T: git git://github.com/ulli-kroll/linux.git
Hans Ulli Kroll162500b2010-05-13 06:43:59 +01001072S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +03001073F: arch/arm/mach-gemini/
Hans Ulli Kroll98a9bb52015-05-20 17:49:31 +02001074F: drivers/rtc/rtc-gemini.c
Paulius Zaleckas881a95f2009-03-26 10:06:27 +02001075
Barry Songa990cbd2011-07-12 21:44:10 +08001076ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
Barry Song5abf58b2013-09-29 22:45:10 +08001077M: Barry Song <baohua@kernel.org>
Barry Songa990cbd2011-07-12 21:44:10 +08001078L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Barry Song85529d12013-06-17 09:44:26 +08001079T: git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
Barry Songa990cbd2011-07-12 21:44:10 +08001080S: Maintained
Rob Herringe68d7c12015-12-10 17:38:23 -06001081F: arch/arm/boot/dts/prima2*
Barry Songa990cbd2011-07-12 21:44:10 +08001082F: arch/arm/mach-prima2/
Joe Perches4a9c44f2014-08-08 14:25:03 -07001083F: drivers/clk/sirf/
Barry Song05f30e82013-09-29 22:45:09 +08001084F: drivers/clocksource/timer-prima2.c
Barry Song5833ac92015-01-12 00:04:43 +08001085F: drivers/clocksource/timer-atlas7.c
Barry Songf8505ef2014-01-03 11:24:13 +08001086N: [^a-z]sirf
Barry Songa990cbd2011-07-12 21:44:10 +08001087
Baruch Siachc9d862c2015-04-28 13:59:43 +03001088ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1089M: Baruch Siach <baruch@tkos.co.il>
1090L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1091S: Maintained
Baruch Siachcde137a2015-07-06 14:41:46 +03001092F: arch/arm/boot/dts/cx92755*
Baruch Siachc9d862c2015-04-28 13:59:43 +03001093N: digicolor
1094
Russell Kingd4275352009-04-16 14:05:27 +01001095ARM/EBSA110 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001096M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001097L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001098W: http://www.arm.linux.org.uk/
1099S: Maintained
1100F: arch/arm/mach-ebsa110/
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07001101F: drivers/net/ethernet/amd/am79c961a.*
Russell Kingd4275352009-04-16 14:05:27 +01001102
Uwe Kleine-König4721f3c2013-12-20 21:21:59 +01001103ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1104M: Uwe Kleine-König <kernel@pengutronix.de>
1105L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1106S: Maintained
1107N: efm32
1108
Russell Kinga9da4f72008-07-12 21:42:04 +01001109ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
Joe Perches8b58be82009-07-29 15:04:30 -07001110M: Daniel Ribeiro <drwyrm@gmail.com>
1111M: Stefan Schmidt <stefan@openezx.org>
1112M: Harald Welte <laforge@openezx.org>
Paul Bolled66f18862011-04-06 22:34:00 +02001113L: openezx-devel@lists.openezx.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +01001114W: http://www.openezx.org/
1115S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +02001116T: topgit git://git.openezx.org/openezx.git
1117F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +01001118
Paulius Zaleckas6a915af2009-03-25 13:10:20 +02001119ARM/FARADAY FA526 PORT
Hans Ulli Kroll162500b2010-05-13 06:43:59 +01001120M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001121L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +01001122S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -07001123T: git git://git.berlios.de/gemini-board
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +03001124F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +02001125
Russell Kingd4275352009-04-16 14:05:27 +01001126ARM/FOOTBRIDGE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001127M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001128L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001129W: http://www.arm.linux.org.uk/
1130S: Maintained
1131F: arch/arm/include/asm/hardware/dec21285.h
1132F: arch/arm/mach-footbridge/
1133
Sascha Hauer86183a52008-07-24 23:50:35 +02001134ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
Shawn Guo7609ea22015-06-03 19:34:10 +08001135M: Shawn Guo <shawnguo@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07001136M: Sascha Hauer <kernel@pengutronix.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001137L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer86183a52008-07-24 23:50:35 +02001138S: Maintained
Shawn Guof1c12832014-03-11 22:57:53 +08001139T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
Shawn Guo2a82f952013-12-10 22:19:21 +08001140F: arch/arm/mach-imx/
Shawn Guoce515a62014-07-02 15:37:10 +08001141F: arch/arm/mach-mxs/
Shawn Guo2a82f952013-12-10 22:19:21 +08001142F: arch/arm/boot/dts/imx*
1143F: arch/arm/configs/imx*_defconfig
Shawn Guocf209682015-04-26 21:58:12 +08001144F: drivers/clk/imx/
1145F: include/soc/imx/
Shawn Guo8bcb9762011-10-07 22:24:18 +08001146
Stefan Agner142109d2015-03-02 00:09:02 +01001147ARM/FREESCALE VYBRID ARM ARCHITECTURE
Shawn Guo7609ea22015-06-03 19:34:10 +08001148M: Shawn Guo <shawnguo@kernel.org>
Stefan Agner142109d2015-03-02 00:09:02 +01001149M: Sascha Hauer <kernel@pengutronix.de>
1150R: Stefan Agner <stefan@agner.ch>
1151L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1152S: Maintained
1153T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1154F: arch/arm/mach-imx/*vf610*
1155F: arch/arm/boot/dts/vf*
1156
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001157ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001158M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001159L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001160S: Maintained
1161
Jaya Kumar90b8fc32008-03-15 05:11:07 +01001162ARM/GUMSTIX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001163M: Steve Sakoman <sakoman@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001164L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jaya Kumar90b8fc32008-03-15 05:11:07 +01001165S: Maintained
1166
Philipp Zabelef47d5f2009-05-28 07:07:47 +02001167ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001168M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel12a93f32012-02-26 12:40:19 +01001169M: Paul Parsons <lost.distance@yahoo.com>
1170L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Philipp Zabelef47d5f2009-05-28 07:07:47 +02001171S: Maintained
1172F: arch/arm/mach-pxa/hx4700.c
1173F: arch/arm/mach-pxa/include/mach/hx4700.h
Philipp Zabel12a93f32012-02-26 12:40:19 +01001174F: sound/soc/pxa/hx4700.c
Philipp Zabelef47d5f2009-05-28 07:07:47 +02001175
Wei Xu4dfad062014-07-07 10:41:53 +08001176ARM/HISILICON SOC SUPPORT
1177M: Wei Xu <xuwei5@hisilicon.com>
1178L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1179W: http://www.hisilicon.com
1180S: Supported
1181T: git git://github.com/hisilicon/linux-hisi.git
1182F: arch/arm/mach-hisi/
Rob Herringe68d7c12015-12-10 17:38:23 -06001183F: arch/arm/boot/dts/hi3*
1184F: arch/arm/boot/dts/hip*
1185F: arch/arm/boot/dts/hisi*
1186F: arch/arm64/boot/dts/hisilicon/
Wei Xu4dfad062014-07-07 10:41:53 +08001187
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +01001188ARM/HP JORNADA 7XX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001189M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02001190W: www.jlime.com
1191S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07001192T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1193F: arch/arm/mach-sa1100/jornada720.c
1194F: arch/arm/mach-sa1100/include/mach/jornada720.h
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +01001195
Javier Martinez Canillas5e767ab2012-10-08 10:47:34 +02001196ARM/IGEP MACHINE SUPPORT
1197M: Enric Balletbo i Serra <eballetbo@gmail.com>
1198M: Javier Martinez Canillas <javier@dowhile0.org>
1199L: linux-omap@vger.kernel.org
1200L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1201S: Maintained
Javier Martinez Canillas06ff74f2013-10-18 17:37:53 +02001202F: arch/arm/boot/dts/omap3-igep*
Javier Martinez Canillas5e767ab2012-10-08 10:47:34 +02001203
Marek Vasut403d2972010-05-22 00:29:39 +02001204ARM/INCOME PXA270 SUPPORT
1205M: Marek Vasut <marek.vasut@gmail.com>
1206L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1207S: Maintained
Joe Perchesec154082010-10-26 14:22:59 -07001208F: arch/arm/mach-pxa/colibri-pxa270-income.c
Marek Vasut403d2972010-05-22 00:29:39 +02001209
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001210ARM/INTEL IOP32X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001211M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001212L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -07001213S: Maintained
Dan Williamse2bdb172007-01-02 18:32:37 +01001214
1215ARM/INTEL IOP33X ARM ARCHITECTURE
Joe Perchesefc03ec2009-09-21 17:04:27 -07001216L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williams08223d82014-08-19 06:07:56 -07001217S: Orphan
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001218
1219ARM/INTEL IOP13XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001220M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001221L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -07001222S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001223
1224ARM/INTEL IQ81342EX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001225M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001226L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -07001227S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001228
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001229ARM/INTEL IXDP2850 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001230M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001231L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001232S: Maintained
1233
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +02001234ARM/INTEL IXP4XX ARM ARCHITECTURE
1235M: Imre Kaloz <kaloz@openwrt.org>
Krzysztof Hałasa5529c2c2014-09-30 10:32:58 +02001236M: Krzysztof Halasa <khalasa@piap.pl>
Russell Kingbaea7b92009-09-24 21:22:33 +01001237L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +02001238S: Maintained
1239F: arch/arm/mach-ixp4xx/
1240
Joe Perches838553c2010-10-26 14:22:59 -07001241ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
Jonathan Cameron7f49a7f2009-10-15 16:39:30 +01001242M: Jonathan Cameron <jic23@cam.ac.uk>
1243L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1244S: Maintained
1245F: arch/arm/mach-pxa/stargate2.c
1246F: drivers/pcmcia/pxa2xx_stargate2.c
1247
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001248ARM/INTEL XSC3 (MANZANO) ARM CORE
Joe Perches8b58be82009-07-29 15:04:30 -07001249M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001250L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -07001251S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001252
1253ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001254M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001255L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001256S: Maintained
1257
Santosh Shilimkar1154f852013-08-05 14:11:14 -04001258ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
Santosh Shilimkar97215802014-10-13 14:16:28 -04001259M: Santosh Shilimkar <ssantosh@kernel.org>
Santosh Shilimkar1154f852013-08-05 14:11:14 -04001260L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1261S: Maintained
1262F: arch/arm/mach-keystone/
Rob Herringe68d7c12015-12-10 17:38:23 -06001263F: arch/arm/boot/dts/k2*
Santosh Shilimkar317929c2013-11-23 17:31:27 -05001264T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
Santosh Shilimkar1154f852013-08-05 14:11:14 -04001265
Santosh Shilimkarbc6aa562014-06-22 16:06:22 -04001266ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
Santosh Shilimkar97215802014-10-13 14:16:28 -04001267M: Santosh Shilimkar <ssantosh@kernel.org>
Santosh Shilimkarbc6aa562014-06-22 16:06:22 -04001268L: linux-kernel@vger.kernel.org
1269S: Maintained
1270F: drivers/clk/keystone/
1271
1272ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
Santosh Shilimkar97215802014-10-13 14:16:28 -04001273M: Santosh Shilimkar <ssantosh@kernel.org>
Santosh Shilimkarbc6aa562014-06-22 16:06:22 -04001274L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1275L: linux-kernel@vger.kernel.org
1276S: Maintained
1277F: drivers/clocksource/timer-keystone.c
1278
1279ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
Santosh Shilimkar97215802014-10-13 14:16:28 -04001280M: Santosh Shilimkar <ssantosh@kernel.org>
Santosh Shilimkarbc6aa562014-06-22 16:06:22 -04001281L: linux-kernel@vger.kernel.org
1282S: Maintained
1283F: drivers/power/reset/keystone-reset.c
1284
1285ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
Santosh Shilimkar97215802014-10-13 14:16:28 -04001286M: Santosh Shilimkar <ssantosh@kernel.org>
Santosh Shilimkarbc6aa562014-06-22 16:06:22 -04001287L: linux-kernel@vger.kernel.org
1288S: Maintained
1289F: drivers/memory/*emif*
1290
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001291ARM/LOGICPD PXA270 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001292M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001293L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001294S: Maintained
1295
Joachim Eastwood31438752015-05-19 20:59:21 +02001296ARM/LPC18XX ARCHITECTURE
1297M: Joachim Eastwood <manabian@gmail.com>
1298L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1299S: Maintained
Joachim Eastwood19c1c322015-10-11 22:40:42 +02001300F: arch/arm/boot/dts/lpc43*
1301F: drivers/clk/nxp/clk-lpc18xx*
1302F: drivers/clocksource/time-lpc32xx.c
1303F: drivers/i2c/busses/i2c-lpc2k.c
1304F: drivers/memory/pl172.c
1305F: drivers/mtd/spi-nor/nxp-spifi.c
1306F: drivers/rtc/rtc-lpc24xx.c
Joachim Eastwood31438752015-05-19 20:59:21 +02001307N: lpc18xx
1308
Philipp Zabel3b8861712008-07-09 21:27:15 +01001309ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001310M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +01001311S: Maintained
1312
Gregory CLEMENT31c17ac2015-05-15 14:25:43 +02001313ARM/Marvell Kirkwood and Armada 370, 375, 38x, XP SOC support
Thomas Petazzoni75f41272012-06-01 18:50:52 +02001314M: Jason Cooper <jason@lakedaemon.net>
1315M: Andrew Lunn <andrew@lunn.ch>
1316M: Gregory Clement <gregory.clement@free-electrons.com>
Jason Cooperdcb71502013-10-14 18:32:21 +00001317M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Thomas Petazzoni75f41272012-06-01 18:50:52 +02001318L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1319S: Maintained
1320F: arch/arm/mach-mvebu/
Joe Perches59ec9672015-03-25 15:55:17 -07001321F: drivers/rtc/rtc-armada38x.c
Gregory CLEMENT31c17ac2015-05-15 14:25:43 +02001322F: arch/arm/boot/dts/armada*
1323F: arch/arm/boot/dts/kirkwood*
Gregory CLEMENTdcc3068a72016-02-02 18:14:16 +01001324F: arch/arm64/boot/dts/marvell/armada*
Gregory CLEMENT31c17ac2015-05-15 14:25:43 +02001325
Thomas Petazzoni75f41272012-06-01 18:50:52 +02001326
Sebastian Hesselbarth40f49782013-10-08 12:52:30 +02001327ARM/Marvell Berlin SoC support
1328M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1329L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1330S: Maintained
1331F: arch/arm/mach-berlin/
Gregory CLEMENT31c17ac2015-05-15 14:25:43 +02001332F: arch/arm/boot/dts/berlin*
Rob Herringe68d7c12015-12-10 17:38:23 -06001333F: arch/arm64/boot/dts/marvell/berlin*
Gregory CLEMENT31c17ac2015-05-15 14:25:43 +02001334
Sebastian Hesselbarth40f49782013-10-08 12:52:30 +02001335
Andrew Lunn4cfab572014-07-16 22:32:51 +02001336ARM/Marvell Dove/MV78xx0/Orion SOC support
Nicolas Pitre4f1312b2012-04-30 13:44:48 -04001337M: Jason Cooper <jason@lakedaemon.net>
1338M: Andrew Lunn <andrew@lunn.ch>
Jason Cooperdcb71502013-10-14 18:32:21 +00001339M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Gregory CLEMENTbfda4032015-03-13 14:41:45 +01001340M: Gregory Clement <gregory.clement@free-electrons.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001341L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Pitre4f1312b2012-04-30 13:44:48 -04001342S: Maintained
1343F: arch/arm/mach-dove/
Nicolas Pitre54a246f2009-08-11 23:28:51 -04001344F: arch/arm/mach-mv78xx0/
1345F: arch/arm/mach-orion5x/
1346F: arch/arm/plat-orion/
Gregory CLEMENT31c17ac2015-05-15 14:25:43 +02001347F: arch/arm/boot/dts/dove*
1348F: arch/arm/boot/dts/orion5x*
1349
Nicolas Pitre54a246f2009-08-11 23:28:51 -04001350
Alexander Clouterd69ac132011-04-14 15:22:02 -07001351ARM/Orion SoC/Technologic Systems TS-78xx platform support
1352M: Alexander Clouter <alex@digriz.org.uk>
1353L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1354W: http://www.digriz.org.uk/ts78xx/kernel
1355S: Maintained
1356F: arch/arm/mach-orion5x/ts78xx-*
1357
Eddie Huang607b8fc2015-05-06 15:23:42 +08001358ARM/Mediatek RTC DRIVER
1359M: Eddie Huang <eddie.huang@mediatek.com>
1360L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1361L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1362S: Maintained
1363F: drivers/rtc/rtc-mt6397.c
1364
Matthias Bruggere54951c2014-09-26 11:45:55 +02001365ARM/Mediatek SoC support
1366M: Matthias Brugger <matthias.bgg@gmail.com>
1367L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Matthias Brugger17b199d2015-04-16 12:49:21 -07001368L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
Matthias Bruggere54951c2014-09-26 11:45:55 +02001369S: Maintained
1370F: arch/arm/boot/dts/mt6*
1371F: arch/arm/boot/dts/mt8*
1372F: arch/arm/mach-mediatek/
1373N: mtk
1374K: mediatek
1375
Chunfeng Yun0f8669e2015-10-12 10:41:57 +08001376ARM/Mediatek USB3 PHY DRIVER
1377M: Chunfeng Yun <chunfeng.yun@mediatek.com>
1378L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1379L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1380S: Maintained
1381F: drivers/phy/phy-mt65xx-usb3.c
1382
Arnd Bergmannadcb0792012-09-07 12:21:56 +00001383ARM/MICREL KS8695 ARCHITECTURE
1384M: Greg Ungerer <gerg@uclinux.org>
1385L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches14430812013-09-11 14:23:50 -07001386F: arch/arm/mach-ks8695/
Arnd Bergmannadcb0792012-09-07 12:21:56 +00001387S: Odd Fixes
1388
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +02001389ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001390M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001391L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +02001392F: arch/arm/mach-pxa/mioa701.c
1393S: Maintained
1394
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +01001395ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001396M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +01001397S: Maintained
1398
Alessandro Rubinie0ee9852009-12-02 14:01:03 +01001399ARM/NOMADIK ARCHITECTURE
Joe Perches28b8e8d2010-03-23 13:35:20 -07001400M: Alessandro Rubini <rubini@unipv.it>
Linus Walleije4651a92012-08-06 09:52:52 +02001401M: Linus Walleij <linus.walleij@linaro.org>
Joe Perches28b8e8d2010-03-23 13:35:20 -07001402L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1403S: Maintained
1404F: arch/arm/mach-nomadik/
Joe Perchesecc265f2014-08-08 14:26:20 -07001405F: drivers/pinctrl/nomadik/
Linus Walleij87572882010-12-22 09:18:29 +01001406F: drivers/i2c/busses/i2c-nomadik.c
Linus Walleije4651a92012-08-06 09:52:52 +02001407T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
Alessandro Rubinie0ee9852009-12-02 14:01:03 +01001408
Andy Green9d762952009-05-19 06:41:42 -03001409ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001410M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -03001411L: openmoko-kernel@lists.openmoko.org (subscribers-only)
1412W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
1413S: Supported
1414
Dirk Opfer8459c152005-11-06 14:27:52 +00001415ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001416M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1417M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +00001418S: Maintained
1419
Marek Vasut5d783a22009-07-16 13:26:48 +02001420ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
Joe Perches933d35f2009-10-01 15:43:59 -07001421M: Marek Vasut <marek.vasut@gmail.com>
Marek Vasut75280782009-08-22 00:49:53 +02001422L: linux-arm-kernel@lists.infradead.org
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001423W: http://hackndev.com
1424S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001425F: arch/arm/mach-pxa/include/mach/palmtx.h
1426F: arch/arm/mach-pxa/palmtx.c
1427F: arch/arm/mach-pxa/include/mach/palmt5.h
1428F: arch/arm/mach-pxa/palmt5.c
1429F: arch/arm/mach-pxa/include/mach/palmld.h
1430F: arch/arm/mach-pxa/palmld.c
1431F: arch/arm/mach-pxa/include/mach/palmte2.h
1432F: arch/arm/mach-pxa/palmte2.c
1433F: arch/arm/mach-pxa/include/mach/palmtc.h
1434F: arch/arm/mach-pxa/palmtc.c
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001435
Joe Perchesb57fe922009-12-14 18:00:52 -08001436ARM/PALM TREO SUPPORT
Jiri Slabyd8130622015-07-17 16:23:20 -07001437M: Tomas Cech <sleep_walker@suse.com>
Marek Vasut75280782009-08-22 00:49:53 +02001438L: linux-arm-kernel@lists.infradead.org
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001439W: http://hackndev.com
1440S: Maintained
Joe Perchesb57fe922009-12-14 18:00:52 -08001441F: arch/arm/mach-pxa/include/mach/palmtreo.h
1442F: arch/arm/mach-pxa/palmtreo.c
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001443
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001444ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001445M: Sergey Lapin <slapin@ossfans.org>
Marek Vasut75280782009-08-22 00:49:53 +02001446L: linux-arm-kernel@lists.infradead.org
Joe Perches7d2c86b2009-04-07 20:59:01 -07001447W: http://hackndev.com
1448S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001449F: arch/arm/mach-pxa/include/mach/palmz72.h
1450F: arch/arm/mach-pxa/palmz72.c
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001451
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001453M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1455S: Maintained
1456
1457ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001458M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001459L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460W: http://www.arm.linux.org.uk/
1461S: Maintained
1462
Kumar Gala8fc1b0f2014-01-21 17:14:10 -06001463ARM/QUALCOMM SUPPORT
Andy Grossbbeaa592015-12-10 21:07:03 -06001464M: Andy Gross <andy.gross@linaro.org>
1465M: David Brown <david.brown@linaro.org>
Kumar Gala8fc1b0f2014-01-21 17:14:10 -06001466L: linux-arm-msm@vger.kernel.org
Andy Grossf5d3af92015-01-21 22:39:24 -06001467L: linux-soc@vger.kernel.org
Kumar Gala8fc1b0f2014-01-21 17:14:10 -06001468S: Maintained
Bjorn Andersson0c4cbf92015-11-23 21:55:03 -08001469F: arch/arm/boot/dts/qcom-*.dts
1470F: arch/arm/boot/dts/qcom-*.dtsi
Kumar Gala8fc1b0f2014-01-21 17:14:10 -06001471F: arch/arm/mach-qcom/
Rob Herringe68d7c12015-12-10 17:38:23 -06001472F: arch/arm64/boot/dts/qcom/*
Andy Grossf5d3af92015-01-21 22:39:24 -06001473F: drivers/soc/qcom/
Stephen Boydc0c89fa2015-03-13 11:09:34 -07001474F: drivers/tty/serial/msm_serial.h
1475F: drivers/tty/serial/msm_serial.c
1476F: drivers/*/pm8???-*
1477F: drivers/mfd/ssbi.c
Kumar Gala916f7432015-02-26 15:49:09 -06001478F: drivers/firmware/qcom_scm.c
Andy Grossbbeaa592015-12-10 21:07:03 -06001479T: git git://git.kernel.org/pub/scm/linux/kernel/git/agross/linux.git
Kumar Gala8fc1b0f2014-01-21 17:14:10 -06001480
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001481ARM/RADISYS ENP2611 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001482M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001483L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001484S: Maintained
1485
Simon Hormanb138e112015-10-02 15:42:21 +09001486ARM/RENESAS ARM64 ARCHITECTURE
1487M: Simon Horman <horms@verge.net.au>
1488M: Magnus Damm <magnus.damm@gmail.com>
Simon Horman1926e542016-02-15 10:49:47 +09001489L: linux-renesas-soc@vger.kernel.org
1490Q: http://patchwork.kernel.org/project/linux-renesas-soc/list/
Simon Hormanb138e112015-10-02 15:42:21 +09001491T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1492S: Supported
1493F: arch/arm64/boot/dts/renesas/
1494
Russell Kingd4275352009-04-16 14:05:27 +01001495ARM/RISCPC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001496M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001497L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001498W: http://www.arm.linux.org.uk/
1499S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01001500F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1501F: arch/arm/include/asm/hardware/ioc.h
1502F: arch/arm/include/asm/hardware/iomd.h
1503F: arch/arm/include/asm/hardware/memc.h
1504F: arch/arm/mach-rpc/
Jeff Kirsher1a6422f2011-11-04 12:58:41 +00001505F: drivers/net/ethernet/8390/etherh.c
Jeff Kirsher9e13fbf2011-07-15 03:18:21 -07001506F: drivers/net/ethernet/i825xx/ether1*
1507F: drivers/net/ethernet/seeq/ether3*
Russell Kingd4275352009-04-16 14:05:27 +01001508F: drivers/scsi/arm/
1509
Heiko Stuebner08ddbb02013-10-14 23:19:58 +02001510ARM/Rockchip SoC support
1511M: Heiko Stuebner <heiko@sntech.de>
1512L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Heiko Stuebner00250b52014-08-20 12:31:03 +02001513L: linux-rockchip@lists.infradead.org
Fengguang Wu9f273c22016-01-20 15:03:25 -08001514T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
Heiko Stuebner08ddbb02013-10-14 23:19:58 +02001515S: Maintained
Heiko Stübner541555e2014-08-27 00:05:50 +02001516F: arch/arm/boot/dts/rk3*
Heiko Stuebner08ddbb02013-10-14 23:19:58 +02001517F: arch/arm/mach-rockchip/
Heiko Stübner541555e2014-08-27 00:05:50 +02001518F: drivers/clk/rockchip/
1519F: drivers/i2c/busses/i2c-rk3x.c
Heiko Stuebner08ddbb02013-10-14 23:19:58 +02001520F: drivers/*/*rockchip*
Heiko Stübner541555e2014-08-27 00:05:50 +02001521F: drivers/*/*/*rockchip*
1522F: sound/soc/rockchip/
Heiko Stuebnerb4331b42015-03-14 19:32:06 +01001523N: rockchip
Heiko Stuebner08ddbb02013-10-14 23:19:58 +02001524
Kukjin Kim5bfb9372014-11-14 16:54:57 +09001525ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1526M: Kukjin Kim <kgene@kernel.org>
Krzysztof Kozlowskie8f98452015-05-14 21:15:20 +09001527M: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001528L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Mark Brown7a549d72011-12-02 13:52:12 +09001529L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +01001530S: Maintained
Mark Brown6f0589c2013-10-08 07:18:21 +09001531F: arch/arm/boot/dts/s3c*
Rob Herringe68d7c12015-12-10 17:38:23 -06001532F: arch/arm/boot/dts/s5p*
1533F: arch/arm/boot/dts/samsung*
Mark Brown6f0589c2013-10-08 07:18:21 +09001534F: arch/arm/boot/dts/exynos*
Krzysztof Kozlowskid97236e2015-06-06 19:02:19 +09001535F: arch/arm64/boot/dts/exynos/
Kukjin Kim482ce512010-06-29 15:05:26 -07001536F: arch/arm/plat-samsung/
Heiko Stuebner769bbb62011-12-02 13:51:56 +09001537F: arch/arm/mach-s3c24*/
1538F: arch/arm/mach-s3c64xx/
Kukjin Kim5bfb9372014-11-14 16:54:57 +09001539F: arch/arm/mach-s5p*/
1540F: arch/arm/mach-exynos*/
Ben Dookseb2ffca2011-02-01 15:52:36 -08001541F: drivers/*/*s3c2410*
1542F: drivers/*/*/*s3c2410*
Pankaj Dubeybf50ddc2015-12-12 13:14:01 +05301543F: drivers/soc/samsung/*
Mark Brown40c76662011-12-02 13:54:25 +09001544F: drivers/spi/spi-s3c*
1545F: sound/soc/samsung/*
Krzysztof Kozlowskid6b9aea2015-10-24 05:07:19 +09001546F: Documentation/arm/Samsung/
1547F: Documentation/devicetree/bindings/arm/samsung/
1548F: Documentation/devicetree/bindings/sram/samsung-sram.txt
1549F: Documentation/devicetree/bindings/power/pd-samsung.txt
Doug Anderson33d43cd2013-06-18 07:02:23 +09001550N: exynos
Kukjin Kimf556cb072010-09-30 15:15:35 -07001551
Kyungmin Park10ffa962011-03-04 17:36:26 -08001552ARM/SAMSUNG MOBILE MACHINE SUPPORT
1553M: Kyungmin Park <kyungmin.park@samsung.com>
1554L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1555S: Maintained
Christian Kujau004bbd32014-10-13 15:51:17 -07001556F: arch/arm/mach-s5pv210/
Kyungmin Park10ffa962011-03-04 17:36:26 -08001557
Kamil Debski3ce4ccb2012-11-28 06:14:22 -03001558ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1559M: Kyungmin Park <kyungmin.park@samsung.com>
1560M: Kamil Debski <k.debski@samsung.com>
1561L: linux-arm-kernel@lists.infradead.org
1562L: linux-media@vger.kernel.org
1563S: Maintained
1564F: drivers/media/platform/s5p-g2d/
1565
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001566ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1567M: Kyungmin Park <kyungmin.park@samsung.com>
1568M: Kamil Debski <k.debski@samsung.com>
Joe Perches63059022012-06-07 14:21:10 -07001569M: Jeongtae Park <jtp.park@samsung.com>
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001570L: linux-arm-kernel@lists.infradead.org
1571L: linux-media@vger.kernel.org
1572S: Maintained
Cesar Eduardo Barros934455d2013-01-04 15:35:17 -08001573F: arch/arm/plat-samsung/s5p-dev-mfc.c
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001574F: drivers/media/platform/s5p-mfc/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001575
1576ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1577M: Kyungmin Park <kyungmin.park@samsung.com>
1578M: Tomasz Stanislawski <t.stanislaws@samsung.com>
1579L: linux-arm-kernel@lists.infradead.org
1580L: linux-media@vger.kernel.org
1581S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001582F: drivers/media/platform/s5p-tv/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001583
Andrzej Pietrasiewicz7d9f9bf2015-09-18 11:20:59 -03001584ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
1585M: Andrzej Pietrasiewicz <andrzej.p@samsung.com>
1586M: Jacek Anaszewski <j.anaszewski@samsung.com>
1587L: linux-arm-kernel@lists.infradead.org
1588L: linux-media@vger.kernel.org
1589S: Maintained
1590F: drivers/media/platform/s5p-jpeg/
1591
Paul Mundtd48d38e2010-02-08 12:50:24 +09001592ARM/SHMOBILE ARM ARCHITECTURE
Simon Horman5e212592012-11-27 11:41:49 +09001593M: Simon Horman <horms@verge.net.au>
Paul Mundtd48d38e2010-02-08 12:50:24 +09001594M: Magnus Damm <magnus.damm@gmail.com>
Simon Horman4a121092016-01-18 10:04:33 +09001595L: linux-renesas-soc@vger.kernel.org
Simon Horman4a121092016-01-18 10:04:33 +09001596Q: http://patchwork.kernel.org/project/linux-renesas-soc/list/
Simon Horman5e212592012-11-27 11:41:49 +09001597T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
Paul Mundtd48d38e2010-02-08 12:50:24 +09001598S: Supported
Simon Horman0b514fd2014-05-15 08:48:21 +09001599F: arch/arm/boot/dts/emev2*
1600F: arch/arm/boot/dts/r7s*
1601F: arch/arm/boot/dts/r8a*
1602F: arch/arm/boot/dts/sh*
Simon Horman0b514fd2014-05-15 08:48:21 +09001603F: arch/arm/configs/shmobile_defconfig
Geert Uytterhoeven7a2071c2014-11-14 16:49:47 +01001604F: arch/arm/include/debug/renesas-scif.S
Paul Mundtd48d38e2010-02-08 12:50:24 +09001605F: arch/arm/mach-shmobile/
1606F: drivers/sh/
1607
Dinh Nguyen66314222012-07-18 16:07:18 -06001608ARM/SOCFPGA ARCHITECTURE
Dinh Nguyenba2b7d02014-08-06 16:31:27 -05001609M: Dinh Nguyen <dinguyen@opensource.altera.com>
Dinh Nguyen66314222012-07-18 16:07:18 -06001610S: Maintained
1611F: arch/arm/mach-socfpga/
Dinh Nguyenefadb752015-04-20 14:13:12 -05001612F: arch/arm/boot/dts/socfpga*
1613F: arch/arm/configs/socfpga_defconfig
Rob Herringe68d7c12015-12-10 17:38:23 -06001614F: arch/arm64/boot/dts/altera/
Dinh Nguyenba2b7d02014-08-06 16:31:27 -05001615W: http://www.rocketboards.org
Dinh Nguyenefadb752015-04-20 14:13:12 -05001616T: git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
Dinh Nguyen66314222012-07-18 16:07:18 -06001617
1618ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
Dinh Nguyenba2b7d02014-08-06 16:31:27 -05001619M: Dinh Nguyen <dinguyen@opensource.altera.com>
Dinh Nguyen66314222012-07-18 16:07:18 -06001620S: Maintained
1621F: drivers/clk/socfpga/
1622
Thor Thayer71bcada2014-09-03 10:27:54 -05001623ARM/SOCFPGA EDAC SUPPORT
1624M: Thor Thayer <tthayer@opensource.altera.com>
1625S: Maintained
1626F: drivers/edac/altera_edac.
1627
Srinivas Kandagatla65ebcc12013-06-25 12:15:10 +01001628ARM/STI ARCHITECTURE
Srinivas Kandagatlaa92177e2014-03-03 11:28:59 +00001629M: Srinivas Kandagatla <srinivas.kandagatla@gmail.com>
1630M: Maxime Coquelin <maxime.coquelin@st.com>
1631M: Patrice Chotard <patrice.chotard@st.com>
Srinivas Kandagatla65ebcc12013-06-25 12:15:10 +01001632L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1633L: kernel@stlinux.com
1634W: http://www.stlinux.com
1635S: Maintained
1636F: arch/arm/mach-sti/
Srinivas Kandagatlaa92177e2014-03-03 11:28:59 +00001637F: arch/arm/boot/dts/sti*
Lee Jonesb8e31bf2015-09-17 14:45:57 +01001638F: drivers/char/hw_random/st-rng.c
Srinivas Kandagatlaa92177e2014-03-03 11:28:59 +00001639F: drivers/clocksource/arm_global_timer.c
Lee Jones82805d12015-05-12 13:58:17 +01001640F: drivers/clocksource/clksrc_st_lpc.c
Srinivas Kandagatlaa92177e2014-03-03 11:28:59 +00001641F: drivers/i2c/busses/i2c-st.c
Greg Kroah-Hartman346e2e42014-09-25 13:11:52 +02001642F: drivers/media/rc/st_rc.c
Peter Griffin95d66b12015-07-30 14:09:01 -03001643F: drivers/media/platform/sti/c8sectpfe/
Peter Griffinf53b2bf2014-06-04 17:30:24 +01001644F: drivers/mmc/host/sdhci-st.c
Peter Griffine95cf392015-04-01 07:42:41 +01001645F: drivers/phy/phy-miphy28lp.c
1646F: drivers/phy/phy-miphy365x.c
Peter Griffin6da969a2014-09-11 18:02:46 +01001647F: drivers/phy/phy-stih407-usb.c
Peter Griffin26389c72014-09-08 11:33:02 +01001648F: drivers/phy/phy-stih41x-usb.c
Greg Kroah-Hartman346e2e42014-09-25 13:11:52 +02001649F: drivers/pinctrl/pinctrl-st.c
1650F: drivers/reset/sti/
Lee Jonesdb4112e2015-04-09 15:47:34 +01001651F: drivers/rtc/rtc-st-lpc.c
Greg Kroah-Hartman346e2e42014-09-25 13:11:52 +02001652F: drivers/tty/serial/st-asc.c
Peter Griffineb11ada2014-09-05 16:36:32 +01001653F: drivers/usb/dwc3/dwc3-st.c
Peter Griffin62f6f082014-09-08 13:04:48 +01001654F: drivers/usb/host/ehci-st.c
1655F: drivers/usb/host/ohci-st.c
Lee Jonesdb4112e2015-04-09 15:47:34 +01001656F: drivers/watchdog/st_lpc_wdt.c
Peter Griffindaac6f82014-11-19 08:44:54 +00001657F: drivers/ata/ahci_st.c
Srinivas Kandagatla65ebcc12013-06-25 12:15:10 +01001658
Maxime Coquelinee6e7872015-05-09 09:53:58 +02001659ARM/STM32 ARCHITECTURE
1660M: Maxime Coquelin <mcoquelin.stm32@gmail.com>
1661L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1662S: Maintained
1663T: git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git
1664N: stm32
1665F: drivers/clocksource/armv7m_systick.c
1666
Marc Gonzalezd6de5b02015-12-15 10:41:13 +01001667ARM/TANGO ARCHITECTURE
1668M: Marc Gonzalez <marc_gonzalez@sigmadesigns.com>
1669L: linux-arm-kernel@lists.infradead.org
1670S: Maintained
1671F: arch/arm/mach-tango/
1672F: arch/arm/boot/dts/tango*
1673
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001674ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001675M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001676L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001677S: Maintained
1678
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001679ARM/TETON BGA MACHINE SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07001680M: "Mark F. Brown" <mark.brown314@gmail.com>
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001681L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1682S: Maintained
1683
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001684ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001685M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001686L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001687S: Maintained
1688
wanzongshun98ad6e32009-02-13 06:04:32 +01001689ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001690M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001691L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -07001692W: http://www.mcuos.com
1693S: Maintained
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001694F: arch/arm/mach-w90x900/
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001695F: drivers/input/keyboard/w90p910_keypad.c
1696F: drivers/input/touchscreen/w90p910_ts.c
1697F: drivers/watchdog/nuc900_wdt.c
Jeff Kirsher679ec0e2011-07-17 00:20:45 -07001698F: drivers/net/ethernet/nuvoton/w90p910_ether.c
Joe Perches53516842010-08-09 17:20:37 -07001699F: drivers/mtd/nand/nuc900_nand.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001700F: drivers/rtc/rtc-nuc900.c
Joe Perches9df92e62012-01-10 15:09:06 -08001701F: drivers/spi/spi-nuc900.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001702F: drivers/usb/host/ehci-w90x900.c
Jingoo Han8a61f012014-07-01 15:36:01 +09001703F: drivers/video/fbdev/nuc900fb.c
wanzongshun98ad6e32009-02-13 06:04:32 +01001704
Linus Walleij54274d72010-04-04 10:58:03 +01001705ARM/U300 MACHINE SUPPORT
Linus Walleije4651a92012-08-06 09:52:52 +02001706M: Linus Walleij <linus.walleij@linaro.org>
Linus Walleij54274d72010-04-04 10:58:03 +01001707L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1708S: Supported
1709F: arch/arm/mach-u300/
Linus Walleij9affbd22014-01-21 15:04:14 +01001710F: drivers/clocksource/timer-u300.c
Linus Walleij54274d72010-04-04 10:58:03 +01001711F: drivers/i2c/busses/i2c-stu300.c
1712F: drivers/rtc/rtc-coh901331.c
1713F: drivers/watchdog/coh901327_wdt.c
1714F: drivers/dma/coh901318*
Linus Walleij87572882010-12-22 09:18:29 +01001715F: drivers/mfd/ab3100*
1716F: drivers/rtc/rtc-ab3100.c
1717F: drivers/rtc/rtc-coh901331.c
1718T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Linus Walleij54274d72010-04-04 10:58:03 +01001719
Masahiro Yamada3d00d042015-05-08 13:07:14 +09001720ARM/UNIPHIER ARCHITECTURE
1721M: Masahiro Yamada <yamada.masahiro@socionext.com>
1722L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1723S: Maintained
Masahiro Yamadaa3ff83d2015-07-25 16:23:24 +09001724F: arch/arm/boot/dts/uniphier*
Masahiro Yamadae7ecbc02015-10-02 13:42:19 +09001725F: arch/arm/include/asm/hardware/cache-uniphier.h
Masahiro Yamada3d00d042015-05-08 13:07:14 +09001726F: arch/arm/mach-uniphier/
Masahiro Yamadae7ecbc02015-10-02 13:42:19 +09001727F: arch/arm/mm/cache-uniphier.c
Masahiro Yamadae1a0ebc2015-11-28 02:22:31 +09001728F: arch/arm64/boot/dts/socionext/
Masahiro Yamada4b7f48d2015-12-09 15:52:59 +09001729F: drivers/bus/uniphier-system-bus.c
Masahiro Yamadadd6fd4a2015-10-23 19:51:59 +09001730F: drivers/i2c/busses/i2c-uniphier*
Masahiro Yamadaa3ff83d2015-07-25 16:23:24 +09001731F: drivers/pinctrl/uniphier/
1732F: drivers/tty/serial/8250/8250_uniphier.c
Masahiro Yamada3d00d042015-05-08 13:07:14 +09001733N: uniphier
1734
Linus Walleij87572882010-12-22 09:18:29 +01001735ARM/Ux500 ARM ARCHITECTURE
Linus Walleije4651a92012-08-06 09:52:52 +02001736M: Linus Walleij <linus.walleij@linaro.org>
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001737L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1738S: Maintained
1739F: arch/arm/mach-ux500/
Linus Walleije4651a92012-08-06 09:52:52 +02001740F: drivers/clocksource/clksrc-dbx500-prcmu.c
Linus Walleij87572882010-12-22 09:18:29 +01001741F: drivers/dma/ste_dma40*
Linus Walleije4651a92012-08-06 09:52:52 +02001742F: drivers/hwspinlock/u8500_hsem.c
Linus Walleij87572882010-12-22 09:18:29 +01001743F: drivers/mfd/abx500*
1744F: drivers/mfd/ab8500*
Linus Walleije4651a92012-08-06 09:52:52 +02001745F: drivers/mfd/dbx500*
1746F: drivers/mfd/db8500*
Joe Perchesecc265f2014-08-08 14:26:20 -07001747F: drivers/pinctrl/nomadik/pinctrl-ab*
1748F: drivers/pinctrl/nomadik/pinctrl-nomadik*
Linus Walleij87572882010-12-22 09:18:29 +01001749F: drivers/rtc/rtc-ab8500.c
Linus Walleije4651a92012-08-06 09:52:52 +02001750F: drivers/rtc/rtc-pl031.c
Linus Walleij87572882010-12-22 09:18:29 +01001751T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001752
Ulf Hanssone93fde22013-11-12 11:41:12 +01001753ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1754M: Ulf Hansson <ulf.hansson@linaro.org>
1755L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1756T: git git://git.linaro.org/people/ulfh/clk.git
1757S: Maintained
1758F: drivers/clk/ux500/
1759F: include/linux/platform_data/clk-ux500.h
1760
Pawel Moll740d93b2014-11-26 12:13:05 +00001761ARM/VERSATILE EXPRESS PLATFORM
1762M: Liviu Dudau <liviu.dudau@arm.com>
1763M: Sudeep Holla <sudeep.holla@arm.com>
1764M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
1765L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1766S: Maintained
1767F: arch/arm/boot/dts/vexpress*
Rob Herringe68d7c12015-12-10 17:38:23 -06001768F: arch/arm64/boot/dts/arm/
Pawel Moll740d93b2014-11-26 12:13:05 +00001769F: arch/arm/mach-vexpress/
1770F: */*/vexpress*
Pawel Moll7e8f4032014-12-01 14:16:33 +00001771F: */*/*/vexpress*
Pawel Moll740d93b2014-11-26 12:13:05 +00001772F: drivers/clk/versatile/clk-vexpress-osc.c
1773F: drivers/clocksource/versatile.c
1774
Russell Kingd4275352009-04-16 14:05:27 +01001775ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001776M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001777L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001778W: http://www.arm.linux.org.uk/
1779S: Maintained
1780F: arch/arm/vfp/
1781
Marek Vasute66b6d82010-03-26 06:51:32 +01001782ARM/VOIPAC PXA270 SUPPORT
1783M: Marek Vasut <marek.vasut@gmail.com>
1784L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1785S: Maintained
1786F: arch/arm/mach-pxa/vpac270.c
Joe Perchese0cca112010-08-09 17:20:38 -07001787F: arch/arm/mach-pxa/include/mach/vpac270.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001788
Tony Prisk04529fe2012-07-24 04:19:37 +12001789ARM/VT8500 ARM ARCHITECTURE
1790M: Tony Prisk <linux@prisktech.co.nz>
1791L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1792S: Maintained
1793F: arch/arm/mach-vt8500/
Tony Prisk41fd91b2013-02-08 18:18:03 +13001794F: drivers/clocksource/vt8500_timer.c
Tony Prisk560746e2013-06-15 09:52:16 +12001795F: drivers/i2c/busses/i2c-wmt.c
Tony Prisk41fd91b2013-02-08 18:18:03 +13001796F: drivers/mmc/host/wmt-sdmmc.c
1797F: drivers/pwm/pwm-vt8500.c
1798F: drivers/rtc/rtc-vt8500.c
1799F: drivers/tty/serial/vt8500_serial.c
Joe Perches4f311022013-09-11 14:23:46 -07001800F: drivers/usb/host/ehci-platform.c
Tony Prisk41fd91b2013-02-08 18:18:03 +13001801F: drivers/usb/host/uhci-platform.c
Jingoo Han8a61f012014-07-01 15:36:01 +09001802F: drivers/video/fbdev/vt8500lcdfb.*
1803F: drivers/video/fbdev/wm8505fb*
1804F: drivers/video/fbdev/wmt_ge_rops.*
Tony Prisk04529fe2012-07-24 04:19:37 +12001805
Marek Vasute66b6d82010-03-26 06:51:32 +01001806ARM/ZIPIT Z2 SUPPORT
1807M: Marek Vasut <marek.vasut@gmail.com>
1808L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1809S: Maintained
1810F: arch/arm/mach-pxa/z2.c
Joe Perches6ab2a852010-08-09 17:20:38 -07001811F: arch/arm/mach-pxa/include/mach/z2.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001812
Jun Nie5ecc4b52015-04-28 17:18:06 +08001813ARM/ZTE ARCHITECTURE
1814M: Jun Nie <jun.nie@linaro.org>
1815L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1816S: Maintained
1817F: arch/arm/mach-zx/
1818F: drivers/clk/zte/
1819F: Documentation/devicetree/bindings/arm/zte.txt
1820F: Documentation/devicetree/bindings/clock/zx296702-clk.txt
1821
Michal Simek51f29d42013-01-21 17:41:46 +01001822ARM/ZYNQ ARCHITECTURE
1823M: Michal Simek <michal.simek@xilinx.com>
Soren Brinkmannf0fd9ad2014-10-23 09:29:22 -07001824R: Sören Brinkmann <soren.brinkmann@xilinx.com>
Michal Simek51f29d42013-01-21 17:41:46 +01001825L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1826W: http://wiki.xilinx.com
Soren Brinkmannd6448b72015-06-26 09:04:32 -07001827T: git https://github.com/Xilinx/linux-xlnx.git
Michal Simek51f29d42013-01-21 17:41:46 +01001828S: Supported
1829F: arch/arm/mach-zynq/
Michal Simekbd2a3372013-06-04 07:17:39 +00001830F: drivers/cpuidle/cpuidle-zynq.c
Michal Simekfb9d4952014-10-13 15:51:15 -07001831F: drivers/block/xsysace.c
Michal Simekc2fd4e32014-01-02 12:58:50 -08001832N: zynq
1833N: xilinx
1834F: drivers/clocksource/cadence_ttc_timer.c
Soren Brinkmanndf8eb562014-04-04 14:27:55 -07001835F: drivers/i2c/busses/i2c-cadence.c
Soren Brinkmanne3ec3a32013-12-02 10:02:36 -08001836F: drivers/mmc/host/sdhci-of-arasan.c
Punnaiah Choudary Kalluriae9b56e2015-01-06 23:13:47 +05301837F: drivers/edac/synopsys_edac.c
Michal Simek51f29d42013-01-21 17:41:46 +01001838
Will Deacon48ec83b2015-05-27 17:25:59 +01001839ARM SMMU DRIVERS
Will Deaconb8f98792013-06-24 18:31:26 +01001840M: Will Deacon <will.deacon@arm.com>
Will Deaconc8bff3a2016-02-17 14:18:00 +00001841R: Robin Murphy <robin.murphy@arm.com>
Will Deaconb8f98792013-06-24 18:31:26 +01001842L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1843S: Maintained
1844F: drivers/iommu/arm-smmu.c
Will Deacon48ec83b2015-05-27 17:25:59 +01001845F: drivers/iommu/arm-smmu-v3.c
Will Deacone1d3c0f2014-11-14 17:18:23 +00001846F: drivers/iommu/io-pgtable-arm.c
Will Deaconc8bff3a2016-02-17 14:18:00 +00001847F: drivers/iommu/io-pgtable-arm-v7s.c
Will Deaconb8f98792013-06-24 18:31:26 +01001848
Catalin Marinas38074222012-03-05 11:49:34 +00001849ARM64 PORT (AARCH64 ARCHITECTURE)
1850M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasd19766e2012-12-11 13:58:05 +00001851M: Will Deacon <will.deacon@arm.com>
Catalin Marinas38074222012-03-05 11:49:34 +00001852L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Fengguang Wu9f273c22016-01-20 15:03:25 -08001853T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
Catalin Marinas38074222012-03-05 11:49:34 +00001854S: Maintained
1855F: arch/arm64/
Catalin Marinasd19766e2012-12-11 13:58:05 +00001856F: Documentation/arm64/
Catalin Marinas38074222012-03-05 11:49:34 +00001857
Laurent Pinchart9d7005f92012-12-10 20:38:24 -03001858AS3645A LED FLASH CONTROLLER DRIVER
1859M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1860L: linux-media@vger.kernel.org
1861T: git git://linuxtv.org/media_tree.git
1862S: Maintained
1863F: drivers/media/i2c/as3645a.c
Mauro Carvalho Chehabb5dcee22015-11-10 12:01:44 -02001864F: include/media/i2c/as3645a.h
Laurent Pinchart9d7005f92012-12-10 20:38:24 -03001865
George Josephd58de032010-03-05 22:17:25 +01001866ASC7621 HARDWARE MONITOR DRIVER
1867M: George Joseph <george.joseph@fairview5.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07001868L: linux-hwmon@vger.kernel.org
George Josephd58de032010-03-05 22:17:25 +01001869S: Maintained
1870F: Documentation/hwmon/asc7621
1871F: drivers/hwmon/asc7621.c
1872
Corentin Charyb229ece2011-02-26 10:20:40 +01001873ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
Corentin Chary5909c652012-12-17 16:00:05 -08001874M: Corentin Chary <corentin.chary@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05001876L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001877W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878S: Maintained
Corentin Charyb229ece2011-02-26 10:20:40 +01001879F: drivers/platform/x86/asus*.c
1880F: drivers/platform/x86/eeepc*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881
João Paulo Rechi Vitaf6a6bba2016-01-05 11:16:53 -05001882ASUS WIRELESS RADIO CONTROL DRIVER
1883M: João Paulo Rechi Vita <jprvita@gmail.com>
1884L: platform-driver-x86@vger.kernel.org
1885S: Maintained
1886F: drivers/platform/x86/asus-wireless.c
1887
Andrew Morton953a6472008-11-06 12:53:28 -08001888ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williams08223d82014-08-19 06:07:56 -07001889R: Dan Williams <dan.j.williams@intel.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001890W: http://sourceforge.net/projects/xscaleiop
Dan Williams08223d82014-08-19 06:07:56 -07001891S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07001892F: Documentation/crypto/async-tx-api.txt
1893F: crypto/async_tx/
1894F: drivers/dma/
1895F: include/linux/dmaengine.h
1896F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001897
Wolfram Sanga1867d32009-09-18 22:45:51 +02001898AT24 EEPROM DRIVER
Wolfram Sang14d77c42013-02-08 20:54:40 +01001899M: Wolfram Sang <wsa@the-dreams.de>
Wolfram Sanga1867d32009-09-18 22:45:51 +02001900L: linux-i2c@vger.kernel.org
1901S: Maintained
1902F: drivers/misc/eeprom/at24.c
Vivien Didelot25f73ed2013-09-27 15:06:28 -04001903F: include/linux/platform_data/at24.h
Wolfram Sanga1867d32009-09-18 22:45:51 +02001904
Randy Dunlape7839f22008-10-12 16:11:45 -07001905ATA OVER ETHERNET (AOE) DRIVER
Ed Cashinfb903812015-03-25 15:55:06 -07001906M: "Ed L. Cashin" <ed.cashin@acm.org>
1907W: http://www.openaoe.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001909F: Documentation/aoe/
1910F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911
Alban Bedelaad7a212015-10-30 11:36:29 +01001912ATHEROS 71XX/9XXX GPIO DRIVER
1913M: Alban Bedel <albeu@free.fr>
1914W: https://github.com/AlbanBedel/linux
1915T: git git://github.com/AlbanBedel/linux
1916S: Maintained
1917F: drivers/gpio/gpio-ath79.c
1918F: Documentation/devicetree/bindings/gpio/gpio-ath79.txt
1919
Joe Perches9a10a872010-12-01 09:37:55 -08001920ATHEROS ATH GENERIC UTILITIES
Luis R. Rodriguezf726ee62013-12-14 20:11:39 +01001921M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
Joe Perches9a10a872010-12-01 09:37:55 -08001922L: linux-wireless@vger.kernel.org
1923S: Supported
1924F: drivers/net/wireless/ath/*
1925
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001926ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001927M: Jiri Slaby <jirislaby@gmail.com>
1928M: Nick Kossifidis <mickflemm@gmail.com>
Luis R. Rodriguezf726ee62013-12-14 20:11:39 +01001929M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001930L: linux-wireless@vger.kernel.org
Joe Perches72c706b2009-09-07 11:34:30 -07001931W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001932S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001933F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001934
Kalle Valo12e62d62011-09-13 10:21:25 +03001935ATHEROS ATH6KL WIRELESS DRIVER
1936M: Kalle Valo <kvalo@qca.qualcomm.com>
1937L: linux-wireless@vger.kernel.org
1938W: http://wireless.kernel.org/en/users/Drivers/ath6kl
Fengguang Wu9f273c22016-01-20 15:03:25 -08001939T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
Kalle Valo12e62d62011-09-13 10:21:25 +03001940S: Supported
1941F: drivers/net/wireless/ath/ath6kl/
1942
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001943WILOCITY WIL6210 WIRELESS DRIVER
Vladimir Kondratiev23ba8a62015-11-08 14:03:17 +02001944M: Maya Erez <qca_merez@qca.qualcomm.com>
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001945L: linux-wireless@vger.kernel.org
1946L: wil6210@qca.qualcomm.com
1947S: Supported
1948W: http://wireless.kernel.org/en/users/Drivers/wil6210
1949F: drivers/net/wireless/ath/wil6210/
Vladimir Kondratievdba4b742014-10-01 15:05:25 +03001950F: include/uapi/linux/wil6210_uapi.h
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001951
Christian Lamparter1d7e1e62010-09-06 01:10:25 +02001952CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1953M: Christian Lamparter <chunkeey@googlemail.com>
1954L: linux-wireless@vger.kernel.org
1955W: http://wireless.kernel.org/en/users/Drivers/carl9170
1956S: Maintained
1957F: drivers/net/wireless/ath/carl9170/
1958
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001959ATK0110 HWMON DRIVER
1960M: Luca Tettamanti <kronos.it@gmail.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07001961L: linux-hwmon@vger.kernel.org
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001962S: Maintained
1963F: drivers/hwmon/asus_atk0110.c
1964
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001965ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001966M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001967S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001968F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001969
Chris Snook7ae115b2008-09-09 03:26:57 -04001970ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001971M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +00001972M: Chris Snook <chris.snook@gmail.com>
Chris Snooke443e382010-09-16 22:00:28 -07001973L: netdev@vger.kernel.org
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001974W: http://sourceforge.net/projects/atl1
1975W: http://atl1.sourceforge.net
1976S: Maintained
Jeff Kirsher2b133ad2011-05-20 06:55:16 -07001977F: drivers/net/ethernet/atheros/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001978
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979ATM
chas williams - CONTRACTOR366c1bd2015-03-11 16:18:01 -04001980M: Chas Williams <3chas3@gmail.com>
Joe Perches476604d2009-10-26 16:49:41 -07001981L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001982L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983W: http://linux-atm.sourceforge.net
1984S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001985F: drivers/atm/
1986F: include/linux/atm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001987F: include/uapi/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001989ATMEL AT91 / AT32 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001990M: Ludovic Desroches <ludovic.desroches@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001991S: Maintained
1992F: drivers/mmc/host/atmel-mci.c
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001993
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001994ATMEL AT91 / AT32 SERIAL DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001995M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001996S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001997F: drivers/tty/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001998
Ludovic Desrochesb9cd7a22016-01-15 09:54:18 +01001999ATMEL SAMA5D2 ADC DRIVER
2000M: Ludovic Desroches <ludovic.desroches@atmel.com>
2001L: linux-iio@vger.kernel.org
2002S: Supported
2003F: drivers/iio/adc/at91-sama5d2_adc.c
2004
Bo Shendfae90e2014-09-28 09:57:19 +08002005ATMEL Audio ALSA driver
Nicolas Ferre3a820022015-03-31 15:34:51 +02002006M: Nicolas Ferre <nicolas.ferre@atmel.com>
Bo Shendfae90e2014-09-28 09:57:19 +08002007L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2008S: Supported
2009F: sound/soc/atmel
2010
Nicolas Ferreb414dc12012-03-26 15:50:36 +02002011ATMEL DMA DRIVER
2012M: Nicolas Ferre <nicolas.ferre@atmel.com>
2013L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2014S: Supported
2015F: drivers/dma/at_hdmac.c
2016F: drivers/dma/at_hdmac_regs.h
Cesar Eduardo Barros6f0d65a2013-01-04 15:35:20 -08002017F: include/linux/platform_data/dma-atmel.h
Nicolas Ferreb414dc12012-03-26 15:50:36 +02002018
Ludovic Desroches6bd0f432014-10-22 17:22:20 +02002019ATMEL XDMA DRIVER
2020M: Ludovic Desroches <ludovic.desroches@atmel.com>
2021L: linux-arm-kernel@lists.infradead.org
2022L: dmaengine@vger.kernel.org
2023S: Supported
2024F: drivers/dma/at_xdmac.c
2025
Ludovic Desroches888f2802013-03-15 05:32:57 +00002026ATMEL I2C DRIVER
2027M: Ludovic Desroches <ludovic.desroches@atmel.com>
2028L: linux-i2c@vger.kernel.org
2029S: Supported
2030F: drivers/i2c/busses/i2c-at91.c
2031
Josh Wu15515542012-03-23 17:56:29 +08002032ATMEL ISI DRIVER
Nicolas Ferre50cb2ef2015-11-17 11:14:28 +01002033M: Ludovic Desroches <ludovic.desroches@atmel.com>
Josh Wu15515542012-03-23 17:56:29 +08002034L: linux-media@vger.kernel.org
2035S: Supported
Cesar Eduardo Barrosf2294c2d2013-01-04 15:35:21 -08002036F: drivers/media/platform/soc_camera/atmel-isi.c
Josh Wu15515542012-03-23 17:56:29 +08002037F: include/media/atmel-isi.h
2038
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08002039ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002040M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01002041L: linux-fbdev@vger.kernel.org
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08002042S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09002043F: drivers/video/fbdev/atmel_lcdfb.c
Joe Perches679655d2009-04-07 20:44:32 -07002044F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08002045
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002046ATMEL MACB ETHERNET DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07002047M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002048S: Supported
Jeff Kirsher9f2f3812011-06-18 01:52:36 -07002049F: drivers/net/ethernet/cadence/
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002050
Josh Wu5cbac982014-10-13 15:51:24 -07002051ATMEL NAND DRIVER
Nicolas Ferre50cb2ef2015-11-17 11:14:28 +01002052M: Wenyou Yang <wenyou.yang@atmel.com>
2053M: Josh Wu <rainyfeeling@outlook.com>
Josh Wu5cbac982014-10-13 15:51:24 -07002054L: linux-mtd@lists.infradead.org
2055S: Supported
2056F: drivers/mtd/nand/atmel_nand*
2057
ludovic.desroches@atmel.com05c441e2015-07-29 16:22:48 +02002058ATMEL SDMMC DRIVER
2059M: Ludovic Desroches <ludovic.desroches@atmel.com>
2060L: linux-mmc@vger.kernel.org
2061S: Supported
2062F: drivers/mmc/host/sdhci-of-at91.c
2063
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08002064ATMEL SPI DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07002065M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08002066S: Supported
Joe Perches9df92e62012-01-10 15:09:06 -08002067F: drivers/spi/spi-atmel.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08002068
Bo Shen0ef09012014-09-28 09:57:18 +08002069ATMEL SSC DRIVER
Nicolas Ferre03515f32015-03-19 10:49:42 +01002070M: Nicolas Ferre <nicolas.ferre@atmel.com>
Bo Shen0ef09012014-09-28 09:57:18 +08002071L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2072S: Supported
2073F: drivers/misc/atmel-ssc.c
2074F: include/linux/atmel-ssc.h
2075
Nicolas Ferree9cb1c52012-03-26 15:59:32 +02002076ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
2077M: Nicolas Ferre <nicolas.ferre@atmel.com>
2078L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2079S: Supported
2080F: drivers/misc/atmel_tclib.c
2081F: drivers/clocksource/tcb_clksrc.c
2082
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07002083ATMEL USBA UDC DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07002084M: Nicolas Ferre <nicolas.ferre@atmel.com>
2085L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07002086S: Supported
Joe Perchesfaf2e1d2014-08-08 14:26:18 -07002087F: drivers/usb/gadget/udc/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07002088
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002090M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07002091L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092W: http://www.thekelleys.org.uk/atmel
2093W: http://atmelwlandriver.sourceforge.net/
2094S: Maintained
Kalle Valo30fe0f92015-11-17 19:49:20 +02002095F: drivers/net/wireless/atmel/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096
Nick Dyera14c0f82015-08-04 16:22:54 -07002097ATMEL MAXTOUCH DRIVER
2098M: Nick Dyer <nick.dyer@itdev.co.uk>
2099T: git git://github.com/atmel-maxtouch/linux.git
2100S: Supported
2101F: Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2102F: drivers/input/touchscreen/atmel_mxt_ts.c
2103F: include/linux/platform_data/atmel_mxt_ts.h
2104
Bradley Grove26780d92013-08-23 10:35:45 -04002105ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
Joe Perchesb75f0052014-03-03 15:38:37 -08002106M: Bradley Grove <linuxdrivers@attotech.com>
2107L: linux-scsi@vger.kernel.org
2108W: http://www.attotech.com
2109S: Supported
2110F: drivers/scsi/esas2r
Bradley Grove26780d92013-08-23 10:35:45 -04002111
Stefan Schmidtbc6e17b2015-05-29 10:51:28 +02002112ATUSB IEEE 802.15.4 RADIO DRIVER
2113M: Stefan Schmidt <stefan@osg.samsung.com>
2114L: linux-wpan@vger.kernel.org
2115S: Maintained
2116F: drivers/net/ieee802154/atusb.c
2117F: drivers/net/ieee802154/atusb.h
2118F: drivers/net/ieee802154/at86rf230.h
2119
Chris Wrighta92b7b82005-07-07 18:12:23 -07002120AUDIT SUBSYSTEM
Paul Moore915f3892014-10-20 11:59:43 -04002121M: Paul Moore <paul@paul-moore.com>
Joe Perches8b58be82009-07-29 15:04:30 -07002122M: Eric Paris <eparis@redhat.com>
Paul Moore915f3892014-10-20 11:59:43 -04002123L: linux-audit@redhat.com (moderated for non-subscribers)
David Woodhousead3f9a22005-07-13 15:28:29 +01002124W: http://people.redhat.com/sgrubb/audit/
Paul Moore915f3892014-10-20 11:59:43 -04002125T: git git://git.infradead.org/users/pcmoore/audit
Chris Wrighta92b7b82005-07-07 18:12:23 -07002126S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002127F: include/linux/audit.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002128F: include/uapi/linux/audit.h
Joe Perches679655d2009-04-07 20:44:32 -07002129F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07002130
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002131AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002132M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07002133W: http://miguelojeda.es/auxdisplay.htm
2134W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002135S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002136F: drivers/auxdisplay/
2137F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002138
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07002139AVR32 ARCHITECTURE
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02002140M: Haavard Skinnemoen <hskinnemoen@gmail.com>
2141M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07002142W: http://www.atmel.com/products/AVR32/
Matthias Brugger249d9d92013-02-04 14:28:47 -08002143W: http://mirror.egtvedt.no/avr32linux.org/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07002144W: http://avrfreaks.net/
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02002145S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002146F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07002147
2148AVR32/AT32AP MACHINE SUPPORT
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02002149M: Haavard Skinnemoen <hskinnemoen@gmail.com>
2150M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
2151S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002152F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07002153
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07002155M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002157W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002159F: include/uapi/linux/ax25.h
Joe Perches679655d2009-04-07 20:44:32 -07002160F: include/net/ax25.h
2161F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162
Mauro Carvalho Chehabd5269392012-11-02 12:00:30 -02002163AZ6007 DVB DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02002164M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehabd5269392012-11-02 12:00:30 -02002165L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02002166W: https://linuxtv.org
Mauro Carvalho Chehabd5269392012-11-02 12:00:30 -02002167T: git git://linuxtv.org/media_tree.git
2168S: Maintained
2169F: drivers/media/usb/dvb-usb-v2/az6007.c
2170
Hans Verkuil67773762012-11-23 07:09:23 -03002171AZTECH FM RADIO RECEIVER DRIVER
2172M: Hans Verkuil <hverkuil@xs4all.nl>
2173L: linux-media@vger.kernel.org
2174T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02002175W: https://linuxtv.org
Hans Verkuil67773762012-11-23 07:09:23 -03002176S: Maintained
2177F: drivers/media/radio/radio-aztech*
2178
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002179B43 WIRELESS DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002180L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01002181L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02002182W: http://wireless.kernel.org/en/users/Drivers/b43
Joe Perches8a72ed62015-04-15 16:17:39 -07002183S: Odd Fixes
Kalle Valo58619b12015-11-17 19:49:23 +02002184F: drivers/net/wireless/broadcom/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002185
2186B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002187M: Larry Finger <Larry.Finger@lwfinger.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002188L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01002189L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02002190W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002191S: Maintained
Kalle Valo423e3ce2015-11-17 19:49:26 +02002192F: drivers/net/wireless/broadcom/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002193
Richard Purdie300abeb2007-02-07 22:21:07 +00002194BACKLIGHT CLASS/SUBSYSTEM
Jingoo Hanb7701752015-05-14 15:17:07 -07002195M: Jingoo Han <jingoohan1@gmail.com>
Jingoo Han70d14fc2014-04-03 14:48:46 -07002196M: Lee Jones <lee.jones@linaro.org>
Fengguang Wu9f273c22016-01-20 15:03:25 -08002197T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
Richard Purdie300abeb2007-02-07 22:21:07 +00002198S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002199F: drivers/video/backlight/
2200F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00002201
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002202BATMAN ADVANCED
Antonio Quartulli207df492013-09-21 13:46:56 +02002203M: Marek Lindner <mareklindner@neomailbox.ch>
Simon Wunderlichc679ff82013-10-10 23:59:10 +02002204M: Simon Wunderlich <sw@simonwunderlich.de>
Antonio Quartullica8e9402015-11-07 19:20:34 +01002205M: Antonio Quartulli <a@unstable.cc>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002206L: b.a.t.m.a.n@lists.open-mesh.org
Sven Eckelmann7b5e7392015-12-06 16:15:07 +01002207W: https://www.open-mesh.org/
Sven Eckelmann8b823172016-02-21 16:40:55 +01002208Q: https://patchwork.open-mesh.org/project/batman/list/
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002209S: Maintained
2210F: net/batman-adv/
2211
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002212BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002213M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002214L: linux-hams@vger.kernel.org
2215W: http://www.baycom.org/~tom/ham/ham.html
2216S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002217F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002218
Kent Overstreetcafe5632013-03-23 16:11:31 -07002219BCACHE (BLOCK LAYER CACHE)
Joe Perchesd1aa1ab2015-06-30 14:59:54 -07002220M: Kent Overstreet <kent.overstreet@gmail.com>
Kent Overstreetcafe5632013-03-23 16:11:31 -07002221L: linux-bcache@vger.kernel.org
2222W: http://bcache.evilpiepirate.org
Joe Perchesd1aa1ab2015-06-30 14:59:54 -07002223S: Maintained
Kent Overstreetcafe5632013-03-23 16:11:31 -07002224F: drivers/md/bcache/
2225
Hans Verkuil04bd8442015-06-08 09:26:20 -03002226BDISP ST MEDIA DRIVER
2227M: Fabien Dessenne <fabien.dessenne@st.com>
2228L: linux-media@vger.kernel.org
2229T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02002230W: https://linuxtv.org
Hans Verkuil04bd8442015-06-08 09:26:20 -03002231S: Supported
2232F: drivers/media/platform/sti/bdisp
2233
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002234BEFS FILE SYSTEM
Joe Perches55817d32010-08-09 17:20:52 -07002235S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002236F: Documentation/filesystems/befs.txt
2237F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002238
Dariusz Marcinkiewicz564ee362014-08-15 17:50:47 +02002239BECKHOFF CX5020 ETHERCAT MASTER DRIVER
Joe Perches49e7d9d2015-04-15 16:17:31 -07002240M: Dariusz Marcinkiewicz <reksio@newterm.pl>
2241L: netdev@vger.kernel.org
2242S: Maintained
2243F: drivers/net/ethernet/ec_bhf.c
Dariusz Marcinkiewicz564ee362014-08-15 17:50:47 +02002244
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002245BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002246M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002247S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002248F: Documentation/filesystems/bfs.txt
2249F: fs/bfs/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002250F: include/uapi/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002251
Bryan Wu1394f032007-05-06 14:50:22 -07002252BLACKFIN ARCHITECTURE
Sonic Zhanga4edbc12014-01-29 14:05:55 -08002253M: Steven Miao <realmz6@gmail.com>
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002254L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Michael Opdenacker14431762014-03-10 15:49:49 -07002255T: git git://git.code.sf.net/p/adi-linux/code
Bryan Wue3b2d3f2007-06-11 15:31:30 +08002256W: http://blackfin.uclinux.org
2257S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002258F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07002259
Bryan Wue190d6b2007-07-17 14:43:44 +08002260BLACKFIN EMAC DRIVER
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002261L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Bryan Wue190d6b2007-07-17 14:43:44 +08002262W: http://blackfin.uclinux.org
2263S: Supported
Jeff Kirsher7b35f032011-06-18 00:01:26 -07002264F: drivers/net/ethernet/adi/
Bryan Wue190d6b2007-07-17 14:43:44 +08002265
Mike Frysinger566da5b2007-06-11 15:31:30 +08002266BLACKFIN RTC DRIVER
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002267L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Mike Frysinger566da5b2007-06-11 15:31:30 +08002268W: http://blackfin.uclinux.org
2269S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002270F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08002271
Mike Frysinger936ed492010-03-10 15:20:38 -08002272BLACKFIN SDH DRIVER
Sonic Zhang109ec8c2012-08-08 12:16:08 +08002273M: Sonic Zhang <sonic.zhang@analog.com>
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002274L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Mike Frysinger936ed492010-03-10 15:20:38 -08002275W: http://blackfin.uclinux.org
2276S: Supported
2277F: drivers/mmc/host/bfin_sdh.c
2278
Bryan Wu1394f032007-05-06 14:50:22 -07002279BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002280M: Sonic Zhang <sonic.zhang@analog.com>
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002281L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Bryan Wue3b2d3f2007-06-11 15:31:30 +08002282W: http://blackfin.uclinux.org
2283S: Supported
Joe Perches84602412012-01-10 15:09:04 -08002284F: drivers/tty/serial/bfin_uart.c
Bryan Wu1394f032007-05-06 14:50:22 -07002285
Bryan Wu1e6d3202007-07-15 02:50:02 +08002286BLACKFIN WATCHDOG DRIVER
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002287L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Bryan Wu1e6d3202007-07-15 02:50:02 +08002288W: http://blackfin.uclinux.org
2289S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002290F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08002291
Bryan Wud24ecfc2007-05-01 23:26:32 +02002292BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002293M: Sonic Zhang <sonic.zhang@analog.com>
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002294L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Bryan Wud24ecfc2007-05-01 23:26:32 +02002295W: http://blackfin.uclinux.org/
2296S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002297F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02002298
Scott Jiang1e204372013-01-18 17:09:47 -03002299BLACKFIN MEDIA DRIVER
2300M: Scott Jiang <scott.jiang.linux@gmail.com>
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002301L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Scott Jiang1e204372013-01-18 17:09:47 -03002302W: http://blackfin.uclinux.org/
2303S: Supported
2304F: drivers/media/platform/blackfin/
2305F: drivers/media/i2c/adv7183*
2306F: drivers/media/i2c/vs6624*
2307
Jan-Simon Möllerb54cf352012-07-20 16:49:06 +08002308BLINKM RGB LED DRIVER
2309M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
2310S: Maintained
2311F: drivers/leds/leds-blinkm.c
2312
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07002314M: Jens Axboe <axboe@kernel.dk>
Jens Axboe82c426e2015-11-05 13:29:25 -07002315L: linux-block@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07002316T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002318F: block/
Steven Rostedtae11f7e2015-06-09 17:30:11 -04002319F: kernel/trace/blktrace.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320
Joern Engel2b54aae2008-02-06 01:38:02 -08002321BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002322M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08002323L: linux-mtd@lists.infradead.org
2324S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002325F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08002326
Marcel Holtmann63fbd242008-08-18 13:23:53 +02002327BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002328M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07002329M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07002330M: Johan Hedberg <johan.hedberg@gmail.com>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02002331L: linux-bluetooth@vger.kernel.org
2332W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02002333T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2334T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Marcel Holtmann63fbd242008-08-18 13:23:53 +02002335S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002336F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02002337
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002339M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07002340M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07002341M: Johan Hedberg <johan.hedberg@gmail.com>
Pavel Machek781c2842008-03-20 15:41:02 -07002342L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02002343W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02002344T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2345T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002347F: net/bluetooth/
2348F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350BONDING DRIVER
Jay Vosburgh79b30752014-03-27 10:33:44 -07002351M: Jay Vosburgh <j.vosburgh@gmail.com>
Veaceslav Falico898602a2014-03-27 18:43:50 +01002352M: Veaceslav Falico <vfalico@gmail.com>
Andy Gospodarek31639b92015-02-25 17:00:16 -05002353M: Andy Gospodarek <gospo@cumulusnetworks.com>
Simon Hormana6c36ee2010-11-21 09:58:04 -08002354L: netdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01002355W: http://sourceforge.net/projects/bonding/
2356S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002357F: drivers/net/bonding/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002358F: include/uapi/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359
Alexei Starovoitovb5f4df32014-07-22 23:01:59 -07002360BPF (Safe dynamic programs and tools)
2361M: Alexei Starovoitov <ast@kernel.org>
2362L: netdev@vger.kernel.org
2363L: linux-kernel@vger.kernel.org
2364S: Supported
2365F: kernel/bpf/
2366
Gary Zambrano39105892006-06-22 17:26:20 -07002367BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002368M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07002369L: netdev@vger.kernel.org
2370S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07002371F: drivers/net/ethernet/broadcom/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07002372
Florian Fainelli32ec90d2014-02-13 16:08:51 -08002373BROADCOM GENET ETHERNET DRIVER
2374M: Florian Fainelli <f.fainelli@gmail.com>
2375L: netdev@vger.kernel.org
2376S: Supported
2377F: drivers/net/ethernet/broadcom/genet/
2378
Michael Chan948c51e2006-06-04 02:51:39 -07002379BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Jitendra Kalsariaf1d1bae2014-06-23 15:10:35 -04002380M: Sony Chacko <sony.chacko@qlogic.com>
2381M: Dept-HSGLinuxNICDev@qlogic.com
Michael Chan948c51e2006-06-04 02:51:39 -07002382L: netdev@vger.kernel.org
2383S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07002384F: drivers/net/ethernet/broadcom/bnx2.*
2385F: drivers/net/ethernet/broadcom/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07002386
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08002387BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Ariel Elior08f6dd82014-05-27 13:11:36 +03002388M: Ariel Elior <ariel.elior@qlogic.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08002389L: netdev@vger.kernel.org
2390S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07002391F: drivers/net/ethernet/broadcom/bnx2x/
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08002392
Matt Porter90f4c592014-05-06 12:09:45 -04002393BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
Florian Fainellif18cf052014-09-19 11:17:12 -07002394M: Florian Fainelli <f.fainelli@gmail.com>
Florian Fainellid3cc2e82015-04-10 11:49:44 -07002395M: Ray Jui <rjui@broadcom.com>
2396M: Scott Branden <sbranden@broadcom.com>
Christian Daudt497a0452013-09-24 15:27:47 -07002397L: bcm-kernel-feedback-list@broadcom.com
Matt Porter90f4c592014-05-06 12:09:45 -04002398T: git git://github.com/broadcom/mach-bcm
Christian Daudtaf4b8e32013-09-11 14:23:49 -07002399S: Maintained
2400F: arch/arm/mach-bcm/
2401F: arch/arm/boot/dts/bcm113*
Matt Porter90f4c592014-05-06 12:09:45 -04002402F: arch/arm/boot/dts/bcm216*
Christian Daudtaf4b8e32013-09-11 14:23:49 -07002403F: arch/arm/boot/dts/bcm281*
Rob Herringe68d7c12015-12-10 17:38:23 -06002404F: arch/arm64/boot/dts/broadcom/
Christian Daudtaf4b8e32013-09-11 14:23:49 -07002405F: arch/arm/configs/bcm_defconfig
Joe Perchese4ef47f2014-08-08 14:25:08 -07002406F: drivers/mmc/host/sdhci-bcm-kona.c
Christian Daudtaf4b8e32013-09-11 14:23:49 -07002407F: drivers/clocksource/bcm_kona_timer.c
2408
Scott Branden9209bec2014-10-16 21:57:16 -06002409BROADCOM BCM2835 ARM ARCHITECTURE
Stephen Warrenf680f252012-09-15 00:18:54 -06002410M: Stephen Warren <swarren@wwwdotorg.org>
Stephen Warren8bcdd922014-11-04 20:27:17 -07002411M: Lee Jones <lee@kernel.org>
Eric Anholt10b9e882015-07-22 12:55:36 -07002412M: Eric Anholt <eric@anholt.net>
Stephen Warrenf680f252012-09-15 00:18:54 -06002413L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
Eric Anholt82481122015-07-22 12:55:37 -07002414L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Stephen Warren8bcdd922014-11-04 20:27:17 -07002415T: git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git
Stephen Warrenf680f252012-09-15 00:18:54 -06002416S: Maintained
Scott Branden9209bec2014-10-16 21:57:16 -06002417N: bcm2835
Stephen Warrenf680f252012-09-15 00:18:54 -06002418
Rafał Miłecki5564f092015-05-29 07:39:26 +02002419BROADCOM BCM47XX MIPS ARCHITECTURE
2420M: Hauke Mehrtens <hauke@hauke-m.de>
2421M: Rafał Miłecki <zajec5@gmail.com>
2422L: linux-mips@linux-mips.org
2423S: Maintained
2424F: arch/mips/bcm47xx/*
2425F: arch/mips/include/asm/mach-bcm47xx/*
2426
Scott Branden9209bec2014-10-16 21:57:16 -06002427BROADCOM BCM5301X ARM ARCHITECTURE
Hauke Mehrtens5b293eb2014-02-04 00:01:43 +01002428M: Hauke Mehrtens <hauke@hauke-m.de>
2429L: linux-arm-kernel@lists.infradead.org
2430S: Maintained
2431F: arch/arm/mach-bcm/bcm_5301x.c
2432F: arch/arm/boot/dts/bcm5301x.dtsi
2433F: arch/arm/boot/dts/bcm470*
2434
Florian Fainellie076e962014-03-04 18:14:58 -08002435BROADCOM BCM63XX ARM ARCHITECTURE
2436M: Florian Fainelli <f.fainelli@gmail.com>
Florian Fainelli20de8232016-01-31 17:41:13 -08002437L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2438L: bcm-kernel-feedback-list@broadcom.com
2439T: git git://github.com/broadcom/stblinux.git
Florian Fainellie076e962014-03-04 18:14:58 -08002440S: Maintained
2441F: arch/arm/mach-bcm/bcm63xx.c
2442F: arch/arm/include/debug/bcm63xx.S
2443
Kevin Cernekee7110e2272014-10-20 21:28:07 -07002444BROADCOM BCM63XX/BCM33XX UDC DRIVER
2445M: Kevin Cernekee <cernekee@gmail.com>
2446L: linux-usb@vger.kernel.org
2447S: Maintained
2448F: drivers/usb/gadget/udc/bcm63xx_udc.*
2449
Brian Norris2df94fd2014-07-14 18:06:03 -07002450BROADCOM BCM7XXX ARM ARCHITECTURE
Brian Norris2df94fd2014-07-14 18:06:03 -07002451M: Brian Norris <computersforpeace@gmail.com>
Florian Fainelli3b4b6fe2014-11-14 12:53:43 -08002452M: Gregory Fong <gregory.0xf0@gmail.com>
2453M: Florian Fainelli <f.fainelli@gmail.com>
Brian Norris2df94fd2014-07-14 18:06:03 -07002454L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Florian Fainelli1e65a342015-11-18 15:19:57 -08002455L: bcm-kernel-feedback-list@broadcom.com
Florian Fainellieb6725d2015-01-29 15:21:56 -08002456T: git git://github.com/broadcom/stblinux.git
Brian Norris2df94fd2014-07-14 18:06:03 -07002457S: Maintained
2458F: arch/arm/mach-bcm/*brcmstb*
2459F: arch/arm/boot/dts/bcm7*.dts*
Florian Fainellie36661e2014-11-14 12:53:44 -08002460F: drivers/bus/brcmstb_gisb.c
Brian Norris5009a282015-03-18 18:09:05 -07002461N: brcmstb
Brian Norris2df94fd2014-07-14 18:06:03 -07002462
Kevin Cernekee70371ce2014-11-15 16:17:45 -08002463BROADCOM BMIPS MIPS ARCHITECTURE
2464M: Kevin Cernekee <cernekee@gmail.com>
2465M: Florian Fainelli <f.fainelli@gmail.com>
2466L: linux-mips@linux-mips.org
Florian Fainellieb6725d2015-01-29 15:21:56 -08002467T: git git://github.com/broadcom/stblinux.git
Kevin Cernekee70371ce2014-11-15 16:17:45 -08002468S: Maintained
2469F: arch/mips/bmips/*
2470F: arch/mips/include/asm/mach-bmips/*
2471F: arch/mips/kernel/*bmips*
Joe Perches338808d2015-06-30 14:59:42 -07002472F: arch/mips/boot/dts/brcm/bcm*.dts*
Simon Arlottc7c42ec2015-11-22 14:30:14 +00002473F: drivers/irqchip/irq-bcm63*
Kevin Cernekee70371ce2014-11-15 16:17:45 -08002474F: drivers/irqchip/irq-bcm7*
2475F: drivers/irqchip/irq-brcmstb*
Simon Arlott3271e612015-12-13 22:45:30 +00002476F: include/linux/bcm963xx_nvram.h
Simon Arlott8fce60b2015-12-13 22:46:59 +00002477F: include/linux/bcm963xx_tag.h
Kevin Cernekee70371ce2014-11-15 16:17:45 -08002478
Michael Chan948c51e2006-06-04 02:51:39 -07002479BROADCOM TG3 GIGABIT ETHERNET DRIVER
Siva Reddy Kallamccad0992016-02-04 15:20:47 +05302480M: Siva Reddy Kallam <siva.kallam@broadcom.com>
Prashant Sreedharan23629472014-06-27 16:21:50 -07002481M: Prashant Sreedharan <prashant@broadcom.com>
Joe Perches8b58be82009-07-29 15:04:30 -07002482M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07002483L: netdev@vger.kernel.org
2484S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07002485F: drivers/net/ethernet/broadcom/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07002486
Henry Ptasinskia9533e72010-09-08 21:04:42 -07002487BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2488M: Brett Rudley <brudley@broadcom.com>
Henry Ptasinski818c07b2010-12-08 13:09:49 -08002489M: Arend van Spriel <arend@broadcom.com>
Roland Vossen85d63682011-06-01 13:44:56 +02002490M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
Arend van Spriel006a8f12012-11-28 21:44:04 +01002491M: Hante Meuleman <meuleman@broadcom.com>
Henry Ptasinskia9533e72010-09-08 21:04:42 -07002492L: linux-wireless@vger.kernel.org
Arend van Spriel56151712012-06-14 14:16:27 +02002493L: brcm80211-dev-list@broadcom.com
Henry Ptasinskia9533e72010-09-08 21:04:42 -07002494S: Supported
Kalle Valo05491d22015-11-17 19:52:05 +02002495F: drivers/net/wireless/broadcom/brcm80211/
Henry Ptasinskia9533e72010-09-08 21:04:42 -07002496
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07002497BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
Vikas Chaudhary3b7f0402014-07-03 08:18:29 -04002498M: QLogic-Storage-Upstream@qlogic.com
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07002499L: linux-scsi@vger.kernel.org
2500S: Supported
2501F: drivers/scsi/bnx2fc/
2502
Eddie Wai6a6b5ad02013-07-11 17:15:56 -07002503BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
Vikas Chaudhary3b7f0402014-07-03 08:18:29 -04002504M: QLogic-Storage-Upstream@qlogic.com
Eddie Wai6a6b5ad02013-07-11 17:15:56 -07002505L: linux-scsi@vger.kernel.org
2506S: Supported
2507F: drivers/scsi/bnx2i/
2508
Jon Mason63f37dd2015-08-26 18:35:30 -04002509BROADCOM IPROC ARM ARCHITECTURE
Scott Branden36c02372014-09-12 16:50:56 -07002510M: Ray Jui <rjui@broadcom.com>
2511M: Scott Branden <sbranden@broadcom.com>
Jon Mason63f37dd2015-08-26 18:35:30 -04002512M: Jon Mason <jonmason@broadcom.com>
Scott Branden36c02372014-09-12 16:50:56 -07002513L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2514L: bcm-kernel-feedback-list@broadcom.com
Florian Fainellieb6725d2015-01-29 15:21:56 -08002515T: git git://github.com/broadcom/cygnus-linux.git
Scott Branden36c02372014-09-12 16:50:56 -07002516S: Maintained
2517N: iproc
2518N: cygnus
Jon Mason63f37dd2015-08-26 18:35:30 -04002519N: nsp
Scott Branden36c02372014-09-12 16:50:56 -07002520N: bcm9113*
2521N: bcm9583*
Jon Mason63f37dd2015-08-26 18:35:30 -04002522N: bcm9585*
2523N: bcm9586*
2524N: bcm988312
Scott Branden36c02372014-09-12 16:50:56 -07002525N: bcm113*
Jon Mason63f37dd2015-08-26 18:35:30 -04002526N: bcm583*
2527N: bcm585*
2528N: bcm586*
2529N: bcm88312
Scott Branden36c02372014-09-12 16:50:56 -07002530
Gregory Fong3b0213d2015-05-28 19:14:05 -07002531BROADCOM BRCMSTB GPIO DRIVER
2532M: Gregory Fong <gregory.0xf0@gmail.com>
Florian Fainelli9c2abe22015-11-18 15:22:13 -08002533L: bcm-kernel-feedback-list@broadcom.com
Gregory Fong3b0213d2015-05-28 19:14:05 -07002534S: Supported
2535F: drivers/gpio/gpio-brcmstb.c
2536F: Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2537
Markus Mayer7b7f5882014-02-12 15:42:27 -08002538BROADCOM KONA GPIO DRIVER
Markus Mayer5e163902014-07-29 11:10:07 -07002539M: Ray Jui <rjui@broadcom.com>
Markus Mayer7b7f5882014-02-12 15:42:27 -08002540L: bcm-kernel-feedback-list@broadcom.com
2541S: Supported
2542F: drivers/gpio/gpio-bcm-kona.c
Joe Perches1db12cd2015-06-30 14:59:45 -07002543F: Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
Markus Mayer7b7f5882014-02-12 15:42:27 -08002544
Rafał Miłeckif6e734a2015-06-10 23:05:08 +02002545BROADCOM NVRAM DRIVER
2546M: Rafał Miłecki <zajec5@gmail.com>
2547L: linux-mips@linux-mips.org
2548S: Maintained
2549F: drivers/firmware/broadcom/*
2550
Brian Norris02787da2015-05-12 17:16:50 -07002551BROADCOM STB NAND FLASH DRIVER
2552M: Brian Norris <computersforpeace@gmail.com>
Kamal Dasu1ddaa022015-11-17 13:50:08 -05002553M: Kamal Dasu <kdasu.kdev@gmail.com>
Brian Norris02787da2015-05-12 17:16:50 -07002554L: linux-mtd@lists.infradead.org
Florian Fainelli12857342015-11-16 15:34:15 -08002555L: bcm-kernel-feedback-list@broadcom.com
Brian Norris02787da2015-05-12 17:16:50 -07002556S: Maintained
2557F: drivers/mtd/nand/brcmnand/
2558
Rafał Miłeckic9678d82012-01-13 22:55:05 +01002559BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2560M: Rafał Miłecki <zajec5@gmail.com>
2561L: linux-wireless@vger.kernel.org
2562S: Maintained
2563F: drivers/bcma/
2564F: include/linux/bcma/
2565
Florian Fainellib8302202014-04-24 18:09:00 -07002566BROADCOM SYSTEMPORT ETHERNET DRIVER
2567M: Florian Fainelli <f.fainelli@gmail.com>
2568L: netdev@vger.kernel.org
2569S: Supported
2570F: drivers/net/ethernet/broadcom/bcmsysport.*
2571
Jayachandran C42515e62016-02-20 19:49:24 +05302572BROADCOM VULCAN ARM64 SOC
2573M: Jayachandran C. <jchandra@broadcom.com>
2574L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2575L: bcm-kernel-feedback-list@broadcom.com
2576S: Maintained
2577F: arch/arm64/boot/dts/broadcom/vulcan*
2578
Jing Huang7725ccf2009-09-23 17:46:15 -07002579BROCADE BFA FC SCSI DRIVER
Anil Gurumurthyaa803372014-02-26 06:08:42 -05002580M: Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2581M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
Joe Perches455518e2009-11-11 14:26:10 -08002582L: linux-scsi@vger.kernel.org
2583S: Supported
2584F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07002585
Rasesh Mody8b230ed2010-08-23 20:24:12 -07002586BROCADE BNA 10 GIGABIT ETHERNET DRIVER
Rasesh Mody439e9572014-10-01 17:20:41 -04002587M: Rasesh Mody <rasesh.mody@qlogic.com>
Rasesh Mody8b230ed2010-08-23 20:24:12 -07002588L: netdev@vger.kernel.org
2589S: Supported
Jeff Kirsherf844a0e2011-05-13 01:00:03 -07002590F: drivers/net/ethernet/brocade/bna/
Rasesh Mody8b230ed2010-08-23 20:24:12 -07002591
Jens Axboe5cdf7f72007-07-17 08:58:06 +02002592BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07002593M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02002594L: linux-scsi@vger.kernel.org
2595S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002596F: block/bsg.c
2597F: include/linux/bsg.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002598F: include/uapi/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02002599
Clemens Ladischaf399172011-01-10 16:32:54 +01002600BT87X AUDIO DRIVER
2601M: Clemens Ladisch <clemens@ladisch.de>
2602L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2603T: git git://git.alsa-project.org/alsa-kernel.git
2604S: Maintained
2605F: Documentation/sound/alsa/Bt87x.txt
2606F: sound/pci/bt87x.c
2607
Michael Bueschff1d5c22008-07-25 01:46:10 -07002608BT8XXGPIO DRIVER
Michael Büscheb032b92011-07-04 20:50:05 +02002609M: Michael Buesch <m@bues.ch>
Michael Bueschff1d5c22008-07-25 01:46:10 -07002610W: http://bu3sch.de/btgpio.php
2611S: Maintained
Joe Perches72dbb702012-01-10 15:08:46 -08002612F: drivers/gpio/gpio-bt8xx.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07002613
Joe Percheseb1eb042009-01-21 10:49:16 -05002614BTRFS FILE SYSTEM
Chris Masonc0778e22013-12-03 20:16:03 -05002615M: Chris Mason <clm@fb.com>
2616M: Josef Bacik <jbacik@fb.com>
Jiri Slabyd8130622015-07-17 16:23:20 -07002617M: David Sterba <dsterba@suse.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05002618L: linux-btrfs@vger.kernel.org
2619W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08002620Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Liu Bo9c106402012-06-14 02:23:25 -06002621T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
Joe Percheseb1eb042009-01-21 10:49:16 -05002622S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002623F: Documentation/filesystems/btrfs.txt
2624F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05002625
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02002627M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002628L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02002629W: https://linuxtv.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02002630T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehabf96236e2012-11-02 11:14:18 -02002631S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07002632F: Documentation/video4linux/bttv/
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002633F: drivers/media/pci/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634
Khalid Aziz1f349232013-06-25 09:57:27 -06002635BUSLOGIC SCSI DRIVER
2636M: Khalid Aziz <khalid@gonehiking.org>
2637L: linux-scsi@vger.kernel.org
2638S: Maintained
2639F: drivers/scsi/BusLogic.*
2640F: drivers/scsi/FlashPoint.*
2641
Clemens Ladischaf399172011-01-10 16:32:54 +01002642C-MEDIA CMI8788 DRIVER
2643M: Clemens Ladisch <clemens@ladisch.de>
2644L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2645T: git git://git.alsa-project.org/alsa-kernel.git
2646S: Maintained
2647F: sound/pci/oxygen/
2648
Mark Salter21413552011-10-04 11:21:42 -04002649C6X ARCHITECTURE
2650M: Mark Salter <msalter@redhat.com>
2651M: Aurelien Jacquiot <a-jacquiot@ti.com>
2652L: linux-c6x-dev@linux-c6x.org
2653W: http://www.linux-c6x.org/wiki/index.php/Main_Page
2654S: Maintained
2655F: arch/c6x/
2656
David Howellsa5432f52009-04-20 15:46:45 +01002657CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07002658M: David Howells <dhowells@redhat.com>
Geert Uytterhoevene62d6e22015-11-12 11:46:33 +00002659L: linux-cachefs@redhat.com (moderated for non-subscribers)
David Howellsa5432f52009-04-20 15:46:45 +01002660S: Supported
2661F: Documentation/filesystems/caching/cachefiles.txt
2662F: fs/cachefiles/
2663
Hans Verkuilc815ca32012-11-23 07:05:54 -03002664CADET FM/AM RADIO RECEIVER DRIVER
2665M: Hans Verkuil <hverkuil@xs4all.nl>
2666L: linux-media@vger.kernel.org
2667T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02002668W: https://linuxtv.org
Hans Verkuilc815ca32012-11-23 07:05:54 -03002669S: Maintained
2670F: drivers/media/radio/radio-cadet*
2671
Jonathan Corbet77d51402007-03-22 19:44:17 -03002672CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002673M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002674L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02002675T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03002676S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002677F: Documentation/video4linux/cafe_ccic
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002678F: drivers/media/platform/marvell-ccic/
Jonathan Corbet77d51402007-03-22 19:44:17 -03002679
Joe Perches201b6ba2010-09-07 20:33:24 +00002680CAIF NETWORK LAYER
sjur.brandeland@stericsson.com5c574f52013-04-22 23:57:00 +00002681M: Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
Joe Perches201b6ba2010-09-07 20:33:24 +00002682L: netdev@vger.kernel.org
2683S: Supported
2684F: Documentation/networking/caif/
2685F: drivers/net/caif/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002686F: include/uapi/linux/caif/
Joe Perches201b6ba2010-09-07 20:33:24 +00002687F: include/net/caif/
2688F: net/caif/
2689
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02002690CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07002691M: Muli Ben-Yehuda <muli@il.ibm.com>
2692M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02002693L: discuss@x86-64.org
2694S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002695F: arch/x86/kernel/pci-calgary_64.c
2696F: arch/x86/kernel/tce_64.c
2697F: arch/x86/include/asm/calgary.h
2698F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02002699
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002700CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00002701M: Oliver Hartkopp <socketcan@hartkopp.net>
Marc Kleine-Buddef7214cf2015-03-06 09:00:38 +01002702M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00002703L: linux-can@vger.kernel.org
Marc Kleine-Budde84b0d712015-03-06 08:58:33 +01002704W: https://github.com/linux-can
Marc Kleine-Budde870482a2015-01-15 16:56:26 +01002705T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2706T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002707S: Maintained
John Whitmoref35f6c82013-12-06 12:49:08 +00002708F: Documentation/networking/can.txt
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00002709F: net/can/
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00002710F: include/linux/can/core.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002711F: include/uapi/linux/can.h
2712F: include/uapi/linux/can/bcm.h
2713F: include/uapi/linux/can/raw.h
2714F: include/uapi/linux/can/gw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002715
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00002716CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002717M: Wolfgang Grandegger <wg@grandegger.com>
Oliver Hartkoppec782132012-01-03 08:40:28 +00002718M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00002719L: linux-can@vger.kernel.org
Marc Kleine-Budde84b0d712015-03-06 08:58:33 +01002720W: https://github.com/linux-can
Marc Kleine-Budde870482a2015-01-15 16:56:26 +01002721T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2722T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00002723S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00002724F: drivers/net/can/
2725F: include/linux/can/dev.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00002726F: include/linux/can/platform/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002727F: include/uapi/linux/can/error.h
2728F: include/uapi/linux/can/netlink.h
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00002729
James Morris95d16c72012-03-16 12:05:48 +11002730CAPABILITIES
2731M: Serge Hallyn <serge.hallyn@canonical.com>
2732L: linux-security-module@vger.kernel.org
Joe Perches63059022012-06-07 14:21:10 -07002733S: Supported
James Morris95d16c72012-03-16 12:05:48 +11002734F: include/linux/capability.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002735F: include/uapi/linux/capability.h
Joe Perches63059022012-06-07 14:21:10 -07002736F: security/commoncap.c
James Morris38a94112012-04-09 11:03:36 +10002737F: kernel/capability.c
James Morris95d16c72012-03-16 12:05:48 +11002738
Kevin Tsaib84894c2015-01-15 17:41:04 -08002739CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
2740M: Kevin Tsai <ktsai@capellamicro.com>
2741S: Maintained
2742F: drivers/iio/light/cm*
2743F: Documentation/devicetree/bindings/i2c/trivial-devices.txt
2744
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002745CAVIUM LIQUIDIO NETWORK DRIVER
2746M: Derek Chickles <derek.chickles@caviumnetworks.com>
2747M: Satanand Burla <satananda.burla@caviumnetworks.com>
2748M: Felix Manlunas <felix.manlunas@caviumnetworks.com>
2749M: Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
2750L: netdev@vger.kernel.org
2751W: http://www.cavium.com
2752S: Supported
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002753F: drivers/net/ethernet/cavium/liquidio/
2754
Varka Bhadramef0bbac2014-10-29 16:15:22 +05302755CC2520 IEEE-802.15.4 RADIO DRIVER
2756M: Varka Bhadram <varkabhadram@gmail.com>
2757L: linux-wpan@vger.kernel.org
2758S: Maintained
2759F: drivers/net/ieee802154/cc2520.c
2760F: include/linux/spi/cc2520.h
2761F: Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
2762
Arnd Bergmannb8154542008-05-16 11:10:59 +02002763CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07002764M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002765L: linuxppc-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02002766W: http://www.ibm.com/developerworks/power/cell/
2767S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002768F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07002769F: arch/powerpc/include/asm/spu*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002770F: arch/powerpc/include/uapi/asm/spu*.h
Joe Perches679655d2009-04-07 20:44:32 -07002771F: arch/powerpc/oprofile/*cell*
2772F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02002773
Sage Weil398ecff52015-07-09 11:46:14 -04002774CEPH COMMON CODE (LIBCEPH)
2775M: Ilya Dryomov <idryomov@gmail.com>
Joe Perchese43cdb52015-06-25 15:02:03 -07002776M: "Yan, Zheng" <zyan@redhat.com>
Sage Weil0f5417c2015-02-19 10:10:40 -08002777M: Sage Weil <sage@redhat.com>
Sage Weil82593f82010-03-29 09:53:23 -07002778L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07002779W: http://ceph.com/
Sage Weilfb99f882009-12-03 15:04:08 -08002780T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil6e67b7a2015-07-09 11:47:37 -04002781T: git git://github.com/ceph/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07002782S: Supported
Joe Perches14430812013-09-11 14:23:50 -07002783F: net/ceph/
2784F: include/linux/ceph/
2785F: include/linux/crush/
Sage Weil9030aaf2009-10-06 11:31:15 -07002786
Sage Weil398ecff52015-07-09 11:46:14 -04002787CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
2788M: "Yan, Zheng" <zyan@redhat.com>
2789M: Sage Weil <sage@redhat.com>
2790M: Ilya Dryomov <idryomov@gmail.com>
2791L: ceph-devel@vger.kernel.org
2792W: http://ceph.com/
2793T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil6e67b7a2015-07-09 11:47:37 -04002794T: git git://github.com/ceph/ceph-client.git
Sage Weil398ecff52015-07-09 11:46:14 -04002795S: Supported
2796F: Documentation/filesystems/ceph.txt
2797F: fs/ceph/
2798
David Howellscfc411e2015-08-14 15:20:41 +01002799CERTIFICATE HANDLING:
2800M: David Howells <dhowells@redhat.com>
2801M: David Woodhouse <dwmw2@infradead.org>
David Howellsd8d80382016-01-14 15:50:20 +00002802L: keyrings@vger.kernel.org
David Howellscfc411e2015-08-14 15:20:41 +01002803S: Maintained
2804F: Documentation/module-signing.txt
2805F: certs/
David Howellsd8d80382016-01-14 15:50:20 +00002806F: scripts/sign-file.c
David Howellscfc411e2015-08-14 15:20:41 +01002807F: scripts/extract-cert.c
2808
David Vrabel18332a82008-09-17 16:34:44 +01002809CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01002810L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01002811S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002812F: Documentation/usb/WUSB-Design-overview.txt
2813F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00002814F: drivers/usb/host/hwa-hc.c
2815F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07002816F: drivers/usb/wusbcore/
2817F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01002818
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002819CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002820M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07002821W: http://miguelojeda.es/auxdisplay.htm
2822W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002823S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002824F: drivers/auxdisplay/cfag12864b.c
2825F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002826
2827CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002828M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07002829W: http://miguelojeda.es/auxdisplay.htm
2830W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002831S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002832F: drivers/auxdisplay/cfag12864bfb.c
2833F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002834
Johannes Berg704232c2007-04-23 12:20:05 -07002835CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07002836M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07002837L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02002838W: http://wireless.kernel.org/
2839T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2840T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Johannes Berg704232c2007-04-23 12:20:05 -07002841S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002842F: include/uapi/linux/nl80211.h
Joe Perches679655d2009-04-07 20:44:32 -07002843F: include/net/cfg80211.h
2844F: net/wireless/*
2845X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07002846
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002847CHAR and MISC DRIVERS
2848M: Arnd Bergmann <arnd@arndb.de>
Greg KH879a5a02012-01-31 20:02:00 -08002849M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002850T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Greg KH879a5a02012-01-31 20:02:00 -08002851S: Supported
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002852F: drivers/char/*
2853F: drivers/misc/*
Robert P. J. Day471322a2014-05-16 04:41:09 -04002854F: include/linux/miscdevice.h
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002855
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002856CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07002857M: Andy Whitcroft <apw@canonical.com>
Joe Perches10d83f02013-02-21 16:44:15 -08002858M: Joe Perches <joe@perches.com>
2859S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002860F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002861
Harry Weif8407f262011-02-25 14:44:15 -08002862CHINESE DOCUMENTATION
2863M: Harry Wei <harryxiyou@gmail.com>
Joe Perches97401532012-12-17 16:00:00 -08002864L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
Harry Weif8407f262011-02-25 14:44:15 -08002865L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
2866S: Maintained
2867F: Documentation/zh_CN/
2868
Alexander Shishkin2721ea22012-05-11 17:25:59 +03002869CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
Peter Chen60d77b3d2015-12-25 15:54:32 +08002870M: Peter Chen <Peter.Chen@nxp.com>
Peter Chen83738562015-03-23 19:57:36 +08002871T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
Alexander Shishkin2721ea22012-05-11 17:25:59 +03002872L: linux-usb@vger.kernel.org
2873S: Maintained
2874F: drivers/usb/chipidea/
2875
Hans de Goedea93ad652015-03-21 20:40:45 -07002876CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
2877M: Hans de Goede <hdegoede@redhat.com>
2878L: linux-input@vger.kernel.org
2879S: Maintained
2880F: Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
2881F: drivers/input/touchscreen/chipone_icn8318.c
2882
Olof Johanssonab043102013-11-07 14:25:45 -08002883CHROME HARDWARE PLATFORM SUPPORT
2884M: Olof Johansson <olof@lixom.net>
2885S: Maintained
Fengguang Wu9f273c22016-01-20 15:03:25 -08002886T: git git://git.kernel.org/pub/scm/linux/kernel/git/olof/chrome-platform.git
Olof Johanssonab043102013-11-07 14:25:45 -08002887F: drivers/platform/chrome/
2888
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00002889CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri2360d2e2011-02-04 16:17:26 +00002890M: Christian Benvenuti <benve@cisco.com>
govindarajulu.v001e1c12013-09-04 11:17:18 +05302891M: Sujith Sankar <ssujith@cisco.com>
Govindarajulu Varadarajanc327e8f2014-05-20 03:14:32 +05302892M: Govindarajulu Varadarajan <_govind@gmx.com>
Neel Patel5c6652f2012-02-03 08:25:25 +00002893M: Neel Patel <neepatel@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08002894S: Supported
Jeff Kirshera6a55802011-05-13 22:20:35 -07002895F: drivers/net/ethernet/cisco/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08002896
Upinder Malhie3cf00d2013-09-10 03:38:16 +00002897CISCO VIC LOW LATENCY NIC DRIVER
Dave Goodell \(dgoodell\)35ef4a92015-10-15 20:01:29 -07002898M: Christian Benvenuti <benve@cisco.com>
2899M: Dave Goodell <dgoodell@cisco.com>
Joe Perchesb75f0052014-03-03 15:38:37 -08002900S: Supported
Dave Goodell \(dgoodell\)35ef4a92015-10-15 20:01:29 -07002901F: drivers/infiniband/hw/usnic/
Upinder Malhie3cf00d2013-09-10 03:38:16 +00002902
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002903CIRRUS LOGIC EP93XX ETHERNET DRIVER
H Hartley Sweeten55879122011-06-09 15:00:21 -07002904M: Hartley Sweeten <hsweeten@visionengravers.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002905L: netdev@vger.kernel.org
2906S: Maintained
Jeff Kirsher57d0b7a2011-07-16 23:50:52 -07002907F: drivers/net/ethernet/cirrus/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002908
Mark Brown3d4cfdc2014-02-04 20:28:12 +00002909CIRRUS LOGIC AUDIO CODEC DRIVERS
2910M: Brian Austin <brian.austin@cirrus.com>
2911M: Paul Handrigan <Paul.Handrigan@cirrus.com>
2912L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2913S: Maintained
2914F: sound/soc/codecs/cs*
2915
Konrad Rzeszutek Wilk94574d92012-03-19 11:47:18 -04002916CLEANCACHE API
2917M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2918L: linux-kernel@vger.kernel.org
2919S: Maintained
2920F: mm/cleancache.c
2921F: include/linux/cleancache.h
2922
Russell Kingd4275352009-04-16 14:05:27 +01002923CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07002924M: Russell King <linux@arm.linux.org.uk>
Paul Walmsleyaa571b12015-03-25 18:32:59 +00002925L: linux-clk@vger.kernel.org
Joe Perches37417042012-03-23 15:01:58 -07002926S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01002927F: include/linux/clk.h
2928
John Stultz9222d242013-07-16 16:45:31 +02002929CLOCKSOURCE, CLOCKEVENT DRIVERS
2930M: Daniel Lezcano <daniel.lezcano@linaro.org>
2931M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar981c3a42014-01-21 10:59:20 +01002932L: linux-kernel@vger.kernel.org
John Stultz9222d242013-07-16 16:45:31 +02002933T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
2934S: Supported
2935F: drivers/clocksource
2936
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002937CISCO FCOE HBA DRIVER
Hiral Patel8fc89a72012-12-10 01:21:29 -08002938M: Hiral Patel <hiralpat@cisco.com>
2939M: Suma Ramars <sramars@cisco.com>
Abhijeet Joglekard7e01dc2011-06-13 21:21:17 -07002940M: Brian Uchino <buchino@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002941L: linux-scsi@vger.kernel.org
2942S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07002943F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002944
Narsimhulu Musinic8806b62015-05-29 01:04:01 -07002945CISCO SCSI HBA DRIVER
2946M: Narsimhulu Musini <nmusini@cisco.com>
2947M: Sesidhar Baddela <sebaddel@cisco.com>
2948L: linux-scsi@vger.kernel.org
2949S: Supported
2950F: drivers/scsi/snic/
2951
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002952CMPC ACPI DRIVER
2953M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2954M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd0944852010-02-11 10:40:13 -05002955L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002956S: Supported
2957F: drivers/platform/x86/classmate-laptop.c
2958
Hans Verkuil85756a02015-05-12 08:52:21 -03002959COBALT MEDIA DRIVER
2960M: Hans Verkuil <hans.verkuil@cisco.com>
2961L: linux-media@vger.kernel.org
2962T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02002963W: https://linuxtv.org
Hans Verkuil85756a02015-05-12 08:52:21 -03002964S: Supported
2965F: drivers/media/pci/cobalt/
2966
Nicolas Palix74425ee2010-06-06 17:15:01 +02002967COCCINELLE/Semantic Patches (SmPL)
Nicolas Palix26de9c22012-09-20 22:52:42 +02002968M: Julia Lawall <Julia.Lawall@lip6.fr>
Nicolas Palix74425ee2010-06-06 17:15:01 +02002969M: Gilles Muller <Gilles.Muller@lip6.fr>
Nicolas Palix26de9c22012-09-20 22:52:42 +02002970M: Nicolas Palix <nicolas.palix@imag.fr>
Jiri Slabyd8130622015-07-17 16:23:20 -07002971M: Michal Marek <mmarek@suse.com>
Nicolas Palix26de9c22012-09-20 22:52:42 +02002972L: cocci@systeme.lip6.fr (moderated for non-subscribers)
Nicolas Palixc00b5112013-06-06 23:39:53 +02002973T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
Nicolas Palix74425ee2010-06-06 17:15:01 +02002974W: http://coccinelle.lip6.fr/
2975S: Supported
Nicolas Palix4b92b2a2013-06-20 13:10:55 +02002976F: Documentation/coccinelle.txt
Nicolas Palix74425ee2010-06-06 17:15:01 +02002977F: scripts/coccinelle/
2978F: scripts/coccicheck
2979
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002981M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982M: coda@cs.cmu.edu
2983L: codalist@coda.cs.cmu.edu
2984W: http://www.coda.cs.cmu.edu/
2985S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002986F: Documentation/filesystems/coda.txt
2987F: fs/coda/
2988F: include/linux/coda*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002989F: include/uapi/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990
Philipp Zabel0b142612014-11-04 07:26:35 -03002991CODA V4L2 MEM2MEM DRIVER
2992M: Philipp Zabel <p.zabel@pengutronix.de>
2993L: linux-media@vger.kernel.org
2994S: Maintained
2995F: Documentation/devicetree/bindings/media/coda.txt
2996F: drivers/media/platform/coda/
2997
Mike Turquette7704add2012-05-02 18:37:45 -07002998COMMON CLK FRAMEWORK
Michael Turquettea85fa002015-06-17 13:41:04 -07002999M: Michael Turquette <mturquette@baylibre.com>
Michael Turquettef9561652014-11-12 16:43:47 -08003000M: Stephen Boyd <sboyd@codeaurora.org>
Paul Walmsleyaa571b12015-03-25 18:32:59 +00003001L: linux-clk@vger.kernel.org
Michael Turquettebaeb0d92014-11-13 17:18:20 -08003002T: git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
Mike Turquette7704add2012-05-02 18:37:45 -07003003S: Maintained
Stephen Warren60bea3b2013-06-05 09:50:30 -06003004F: drivers/clk/
3005X: drivers/clk/clkdev.c
Mike Turquette7704add2012-05-02 18:37:45 -07003006F: include/linux/clk-pr*
Stephen Warren60bea3b2013-06-05 09:50:30 -06003007F: include/linux/clk/
Mike Turquette7704add2012-05-02 18:37:45 -07003008
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003009COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07003010M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04003011L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08003012L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003013W: http://linux-cifs.samba.org/
Kevin Cernekeebb1d5dd2014-11-10 13:09:24 -08003014T: git git://git.samba.org/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003015S: Supported
Joe Perchesec421a72014-08-08 14:24:59 -07003016F: Documentation/filesystems/cifs/
Joe Perches679655d2009-04-07 20:44:32 -07003017F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003018
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07003020M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07003021L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07003022S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003023F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024
3025COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003026M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07003027L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07003028S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003029F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030
3031COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003032M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07003033L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07003034S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003035F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036
Cezary Jackiewicz54115522008-06-09 16:22:22 -07003037COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003038M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05003039L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07003040S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003041F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07003042
Simon Arlott949be0f2007-03-06 02:47:46 -08003043CONEXANT ACCESSRUNNER USB DRIVER
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02003044L: accessrunner-general@lists.sourceforge.net
3045W: http://accessrunner.sourceforge.net/
Simon Arlott44243ef2015-11-15 17:12:08 +00003046S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003047F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08003048
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003049CONFIGFS
Joel Beckerd6351db2011-01-07 18:10:32 -08003050M: Joel Becker <jlbec@evilplan.org>
Christoph Hellwig1609bac2016-01-04 12:33:13 +01003051M: Christoph Hellwig <hch@lst.de>
3052T: git git://git.infradead.org/users/hch/configfs.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003053S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003054F: fs/configfs/
3055F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003056
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07003057CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07003058M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07003059L: netdev@vger.kernel.org
3060S: Maintained
3061F: drivers/connector/
3062
Tejun Heoa3e33542014-05-13 15:49:58 -04003063CONTROL GROUP (CGROUP)
Paul Menage860ca0e2011-11-18 14:22:09 -08003064M: Tejun Heo <tj@kernel.org>
Li Zefanad50c152012-03-29 08:53:30 -07003065M: Li Zefan <lizefan@huawei.com>
Tejun Heo4d205672015-06-12 17:15:23 -05003066M: Johannes Weiner <hannes@cmpxchg.org>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08003067L: cgroups@vger.kernel.org
Paul Menage860ca0e2011-11-18 14:22:09 -08003068T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
Paul Menagefb3a0fb2008-03-04 14:28:28 -08003069S: Maintained
Tejun Heoa3e33542014-05-13 15:49:58 -04003070F: Documentation/cgroups/
Joe Perches679655d2009-04-07 20:44:32 -07003071F: include/linux/cgroup*
3072F: kernel/cgroup*
Tejun Heoa3e33542014-05-13 15:49:58 -04003073
3074CONTROL GROUP - CPUSET
3075M: Li Zefan <lizefan@huawei.com>
3076L: cgroups@vger.kernel.org
3077W: http://www.bullopensource.org/cpuset/
3078W: http://oss.sgi.com/projects/cpusets/
3079T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3080S: Maintained
3081F: Documentation/cgroups/cpusets.txt
3082F: include/linux/cpuset.h
3083F: kernel/cpuset.c
3084
3085CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
3086M: Johannes Weiner <hannes@cmpxchg.org>
Michal Hockofbd7dc72015-07-17 16:23:26 -07003087M: Michal Hocko <mhocko@kernel.org>
Johannes Weinered0f1e22015-12-11 13:40:35 -08003088M: Vladimir Davydov <vdavydov@virtuozzo.com>
Tejun Heoa3e33542014-05-13 15:49:58 -04003089L: cgroups@vger.kernel.org
3090L: linux-mm@kvack.org
3091S: Maintained
3092F: mm/memcontrol.c
Johannes Weiner5d1ea482014-12-10 15:44:55 -08003093F: mm/swap_cgroup.c
Paul Menagefb3a0fb2008-03-04 14:28:28 -08003094
Rudolf Marekbebe4672007-05-08 17:22:02 +02003095CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02003096M: Fenghua Yu <fenghua.yu@intel.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07003097L: linux-hwmon@vger.kernel.org
Rudolf Marekbebe4672007-05-08 17:22:02 +02003098S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003099F: Documentation/hwmon/coretemp
3100F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02003101
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003103M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104W: http://www.fi.muni.cz/~kas/cosa/
3105S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003106F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107
Florian Fainelli4371ee32009-06-01 02:43:17 -07003108CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003109M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07003110L: netdev@vger.kernel.org
3111S: Maintained
Jeff Kirsherb544dba2011-06-14 12:56:50 -07003112F: drivers/net/ethernet/ti/cpmac.c
Florian Fainelli4371ee32009-06-01 02:43:17 -07003113
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114CPU FREQUENCY DRIVERS
Joe Perches9c3646d2015-06-25 15:02:00 -07003115M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
viresh kumar45c009a2013-04-26 12:53:16 +00003116M: Viresh Kumar <viresh.kumar@linaro.org>
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02003117L: linux-pm@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118S: Maintained
Viresh Kumar27209d92013-05-29 12:23:14 +05303119T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3120T: git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
Joe Perches679655d2009-04-07 20:44:32 -07003121F: drivers/cpufreq/
3122F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123
Viresh Kumar8a67f0e2013-04-01 12:57:49 +00003124CPU FREQUENCY DRIVERS - ARM BIG LITTLE
3125M: Viresh Kumar <viresh.kumar@linaro.org>
Sudeep Holla171d0ba2014-02-11 11:42:32 +00003126M: Sudeep Holla <sudeep.holla@arm.com>
Viresh Kumar8a67f0e2013-04-01 12:57:49 +00003127L: linux-pm@vger.kernel.org
3128W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php
3129S: Maintained
3130F: drivers/cpufreq/arm_big_little.h
3131F: drivers/cpufreq/arm_big_little.c
3132F: drivers/cpufreq/arm_big_little_dt.c
3133
Lorenzo Pieralisi14d2c342013-06-12 17:40:01 +02003134CPUIDLE DRIVER - ARM BIG LITTLE
Joe Perchesb75f0052014-03-03 15:38:37 -08003135M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
3136M: Daniel Lezcano <daniel.lezcano@linaro.org>
3137L: linux-pm@vger.kernel.org
3138L: linux-arm-kernel@lists.infradead.org
Joe Perchescea83212014-03-03 15:38:38 -08003139T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
Joe Perchesb75f0052014-03-03 15:38:37 -08003140S: Maintained
3141F: drivers/cpuidle/cpuidle-big_little.c
Lorenzo Pieralisi14d2c342013-06-12 17:40:01 +02003142
Bartlomiej Zolnierkiewicz0c570c12014-12-02 16:41:35 +01003143CPUIDLE DRIVER - ARM EXYNOS
3144M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
3145M: Daniel Lezcano <daniel.lezcano@linaro.org>
3146M: Kukjin Kim <kgene@kernel.org>
3147L: linux-pm@vger.kernel.org
3148L: linux-samsung-soc@vger.kernel.org
3149S: Supported
3150F: drivers/cpuidle/cpuidle-exynos.c
3151F: arch/arm/mach-exynos/pm.c
3152
Daniel Lezcanoa8e39c32013-04-26 11:05:44 +00003153CPUIDLE DRIVERS
Joe Perches9c3646d2015-06-25 15:02:00 -07003154M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Daniel Lezcanoa8e39c32013-04-26 11:05:44 +00003155M: Daniel Lezcano <daniel.lezcano@linaro.org>
3156L: linux-pm@vger.kernel.org
3157S: Maintained
Joe Perchescea83212014-03-03 15:38:38 -08003158T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
Daniel Lezcanoa8e39c32013-04-26 11:05:44 +00003159F: drivers/cpuidle/*
3160F: include/linux/cpuidle.h
3161
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003163M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003165F: arch/x86/kernel/cpuid.c
3166F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02003168CPU POWER MONITORING SUBSYSTEM
Jiri Slabyd8130622015-07-17 16:23:20 -07003169M: Thomas Renninger <trenn@suse.com>
Thomas Renninger103f1792014-07-22 16:06:01 +02003170L: linux-pm@vger.kernel.org
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02003171S: Maintained
Joe Perches14430812013-09-11 14:23:50 -07003172F: tools/power/cpupower/
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02003173
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01003175W: http://sourceforge.net/projects/cramfs/
Michael Opdenacker54886a72013-11-12 15:08:35 -08003176S: Orphan / Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07003177F: Documentation/filesystems/cramfs.txt
3178F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003179
3180CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003181M: Mikael Starvik <starvik@axis.com>
3182M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02003183L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184W: http://developer.axis.com
Fengguang Wu9f273c22016-01-20 15:03:25 -08003185T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesper/cris.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003187F: arch/cris/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003188F: drivers/tty/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189
3190CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07003191M: Herbert Xu <herbert@gondor.apana.org.au>
3192M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193L: linux-crypto@vger.kernel.org
Fengguang Wu9f273c22016-01-20 15:03:25 -08003194T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
Joe Perches54e58812009-04-07 21:08:10 -07003195T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003197F: Documentation/crypto/
Stephan Mueller2ca87a12015-03-06 21:36:21 +01003198F: Documentation/DocBook/crypto-API.tmpl
Joe Perches679655d2009-04-07 20:44:32 -07003199F: arch/*/crypto/
3200F: crypto/
3201F: drivers/crypto/
3202F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203
Neil Horman5b07bd52009-02-05 16:03:04 +11003204CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003205M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11003206L: linux-crypto@vger.kernel.org
3207S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07003208F: crypto/ansi_cprng.c
3209F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11003210
Hans Verkuilfc279cc2015-11-30 18:05:54 -02003211CS3308 MEDIA DRIVER
3212M: Hans Verkuil <hverkuil@xs4all.nl>
3213L: linux-media@vger.kernel.org
3214T: git git://linuxtv.org/media_tree.git
3215W: http://linuxtv.org
3216S: Odd Fixes
3217F: drivers/media/i2c/cs3308.c
3218F: drivers/media/i2c/cs3308.h
3219
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01003220CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07003221M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01003222S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003223F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01003224
Solomon Peachya910e4a2013-05-24 20:04:38 -04003225CW1200 WLAN driver
Joe Perchesb75f0052014-03-03 15:38:37 -08003226M: Solomon Peachy <pizza@shaftnet.org>
3227S: Maintained
Kalle Valo560424e2015-11-17 20:09:02 +02003228F: drivers/net/wireless/st/cw1200/
Solomon Peachya910e4a2013-05-24 20:04:38 -04003229
Hans Verkuil6d8425b2008-05-05 18:25:22 -03003230CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03003231M: Andy Walls <awalls@md.metrocast.net>
Joe Perches7b212ed2014-12-10 15:51:24 -08003232L: ivtv-devel@ivtvdriver.org (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003233L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003234T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003235W: https://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07003236W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b2008-05-05 18:25:22 -03003237S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003238F: Documentation/video4linux/cx18.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03003239F: drivers/media/pci/cx18/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02003240F: include/uapi/linux/ivtv*
Hans Verkuil6d8425b2008-05-05 18:25:22 -03003241
Hans Verkuil3f101d92012-11-23 07:00:02 -03003242CX2341X MPEG ENCODER HELPER MODULE
3243M: Hans Verkuil <hverkuil@xs4all.nl>
3244L: linux-media@vger.kernel.org
3245T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003246W: https://linuxtv.org
Hans Verkuil3f101d92012-11-23 07:00:02 -03003247S: Maintained
Cesar Eduardo Barrosc368360b2013-03-02 21:53:42 -03003248F: drivers/media/common/cx2341x*
Hans Verkuil3f101d92012-11-23 07:00:02 -03003249F: include/media/cx2341x*
3250
Patrick Boettcherb8fe6e22015-04-28 02:53:13 -03003251CX24120 MEDIA DRIVER
3252M: Jemma Denson <jdenson@gmail.com>
3253M: Patrick Boettcher <patrick.boettcher@posteo.de>
3254L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003255W: https://linuxtv.org
Patrick Boettcherb8fe6e22015-04-28 02:53:13 -03003256Q: http://patchwork.linuxtv.org/project/linux-media/list/
3257S: Maintained
3258F: drivers/media/dvb-frontends/cx24120*
3259
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02003260CX88 VIDEO4LINUX DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02003261M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02003262L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003263W: https://linuxtv.org
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02003264T: git git://linuxtv.org/media_tree.git
3265S: Odd fixes
3266F: Documentation/video4linux/cx88/
3267F: drivers/media/pci/cx88/
Knut Petersen9fa68ea2005-09-09 13:04:56 -07003268
Antti Palosaari91952bc2012-10-01 12:28:46 -03003269CXD2820R MEDIA DRIVER
3270M: Antti Palosaari <crope@iki.fi>
3271L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003272W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03003273W: http://palosaari.fi/linux/
3274Q: http://patchwork.linuxtv.org/project/linux-media/list/
3275T: git git://linuxtv.org/anttip/media_tree.git
3276S: Maintained
3277F: drivers/media/dvb-frontends/cxd2820r*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07003278
Steve Wisee5ec3782008-05-20 14:06:33 -07003279CXGB3 ETHERNET DRIVER (CXGB3)
Divy Le Raycdc99232013-11-11 15:01:39 -08003280M: Santosh Raspatur <santosh@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07003281L: netdev@vger.kernel.org
3282W: http://www.chelsio.com
3283S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07003284F: drivers/net/ethernet/chelsio/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07003285
Anish Bhattd8ae3c32014-11-04 15:19:22 -08003286CXGB3 ISCSI DRIVER (CXGB3I)
Joe Perches49e7d9d2015-04-15 16:17:31 -07003287M: Karen Xie <kxie@chelsio.com>
3288L: linux-scsi@vger.kernel.org
3289W: http://www.chelsio.com
3290S: Supported
3291F: drivers/scsi/cxgbi/cxgb3i
Anish Bhattd8ae3c32014-11-04 15:19:22 -08003292
Steve Wisee5ec3782008-05-20 14:06:33 -07003293CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07003294M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003295L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07003296W: http://www.openfabrics.org
3297S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003298F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07003299
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003300CXGB4 ETHERNET DRIVER (CXGB4)
Dimitris Michailidis56f16c72014-06-13 14:11:14 -07003301M: Hariprasad S <hariprasad@chelsio.com>
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003302L: netdev@vger.kernel.org
3303W: http://www.chelsio.com
3304S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07003305F: drivers/net/ethernet/chelsio/cxgb4/
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003306
Anish Bhattd8ae3c32014-11-04 15:19:22 -08003307CXGB4 ISCSI DRIVER (CXGB4I)
Joe Perches49e7d9d2015-04-15 16:17:31 -07003308M: Karen Xie <kxie@chelsio.com>
3309L: linux-scsi@vger.kernel.org
3310W: http://www.chelsio.com
3311S: Supported
3312F: drivers/scsi/cxgbi/cxgb4i
Anish Bhattd8ae3c32014-11-04 15:19:22 -08003313
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003314CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3315M: Steve Wise <swise@chelsio.com>
3316L: linux-rdma@vger.kernel.org
3317W: http://www.openfabrics.org
3318S: Supported
3319F: drivers/infiniband/hw/cxgb4/
3320
Casey Leedom5c20a5c2010-07-19 17:55:33 -07003321CXGB4VF ETHERNET DRIVER (CXGB4VF)
3322M: Casey Leedom <leedom@chelsio.com>
3323L: netdev@vger.kernel.org
3324W: http://www.chelsio.com
3325S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07003326F: drivers/net/ethernet/chelsio/cxgb4vf/
Casey Leedom5c20a5c2010-07-19 17:55:33 -07003327
Ian Munsiea9282d02014-10-08 19:55:05 +11003328CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3329M: Ian Munsie <imunsie@au1.ibm.com>
3330M: Michael Neuling <mikey@neuling.org>
3331L: linuxppc-dev@lists.ozlabs.org
3332S: Supported
3333F: drivers/misc/cxl/
Michael Neulingec249dd2015-05-27 16:07:16 +10003334F: include/misc/cxl*
Ian Munsiea9282d02014-10-08 19:55:05 +11003335F: include/uapi/misc/cxl.h
3336F: Documentation/powerpc/cxl.txt
3337F: Documentation/powerpc/cxl.txt
3338F: Documentation/ABI/testing/sysfs-class-cxl
3339
Matthew R. Ochs11f43ae2015-10-21 15:15:22 -05003340CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
3341M: Manoj N. Kumar <manoj@linux.vnet.ibm.com>
3342M: Matthew R. Ochs <mrochs@linux.vnet.ibm.com>
3343L: linux-scsi@vger.kernel.org
3344S: Supported
3345F: drivers/scsi/cxlflash/
3346F: include/uapi/scsi/cxlflash_ioctls.h
3347F: Documentation/powerpc/cxlflash.txt
3348
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08003349STMMAC ETHERNET DRIVER
3350M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
3351L: netdev@vger.kernel.org
3352W: http://www.stlinux.com
3353S: Supported
Jeff Kirsher7ac66532011-05-16 00:05:19 -07003354F: drivers/net/ethernet/stmicro/stmmac/
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08003355
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003357M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07003358L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359W: http://www.arm.linux.org.uk/
3360S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09003361F: drivers/video/fbdev/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07003362
Linus Torvalds1da177e2005-04-16 15:20:36 -07003363CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08003365S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07003366F: drivers/tty/cyclades.c
Joe Perches679655d2009-04-07 20:44:32 -07003367F: include/linux/cyclades.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003368F: include/uapi/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369
3370CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08003372S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003373F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003374
Antti Palosaari402f6ae2013-04-09 21:30:41 -03003375CYPRESS_FIRMWARE MEDIA DRIVER
3376M: Antti Palosaari <crope@iki.fi>
3377L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003378W: https://linuxtv.org
Antti Palosaari402f6ae2013-04-09 21:30:41 -03003379W: http://palosaari.fi/linux/
3380Q: http://patchwork.linuxtv.org/project/linux-media/list/
3381T: git git://linuxtv.org/anttip/media_tree.git
3382S: Maintained
3383F: drivers/media/common/cypress_firmware*
3384
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08003385CYTTSP TOUCHSCREEN DRIVER
Javier Martinez Canillasbe9a6f42013-08-29 08:43:58 -07003386M: Ferruh Yigit <fery@cypress.com>
Joe Perches63059022012-06-07 14:21:10 -07003387L: linux-input@vger.kernel.org
Javier Martinez Canillasbe9a6f42013-08-29 08:43:58 -07003388S: Supported
Joe Perches63059022012-06-07 14:21:10 -07003389F: drivers/input/touchscreen/cyttsp*
3390F: include/linux/input/cyttsp.h
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08003391
Joshua Kinardaaaf5fb2015-02-16 16:00:26 -08003392DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3393M: Joshua Kinard <kumba@gentoo.org>
3394S: Maintained
3395F: drivers/rtc/rtc-ds1685.c
3396F: include/linux/rtc/ds1685.h
3397
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07003399M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400W: http://yaina.de/jreuter/
3401W: http://www.qsl.net/dl1bke/
3402L: linux-hams@vger.kernel.org
3403S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003404F: net/ax25/af_ax25.c
3405F: net/ax25/ax25_dev.c
3406F: net/ax25/ax25_ds_*
3407F: net/ax25/ax25_in.c
3408F: net/ax25/ax25_out.c
3409F: net/ax25/ax25_timer.c
3410F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003412DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003413L: netdev@vger.kernel.org
Joe Perches5ff77422011-05-24 17:13:22 -07003414S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003415F: Documentation/networking/dmfe.txt
Joe Perches0f04e2a2012-01-10 15:08:56 -08003416F: drivers/net/ethernet/dec/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003417
3418DC390/AM53C974 SCSI driver
Jiri Slabyd8130622015-07-17 16:23:20 -07003419M: Hannes Reinecke <hare@suse.com>
Hannes Reinecke71bd8492014-11-24 15:37:30 +01003420L: linux-scsi@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003421S: Maintained
Hannes Reinecke71bd8492014-11-24 15:37:30 +01003422F: drivers/scsi/am53c974.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003423
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424DC395x SCSI driver
Oliver Neukum61eee9a2012-08-01 14:32:55 +02003425M: Oliver Neukum <oliver@neukum.org>
Joe Perches8b58be82009-07-29 15:04:30 -07003426M: Ali Akcaagac <aliakc@web.de>
3427M: Jamie Lenehan <lenehan@twibble.org>
Randy Dunlapf5df58812006-07-14 00:24:29 -07003428L: dc395x@twibble.org
Joe Perchescf015e92014-02-25 15:01:47 -08003429W: http://twibble.org/dist/dc395x/
3430W: http://lists.twibble.org/mailman/listinfo/dc395x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003432F: Documentation/scsi/dc395x.txt
3433F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07003435DCCP PROTOCOL
Arnaldo Carvalho de Meloa89d0302011-02-26 16:28:54 +00003436M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07003437L: dccp@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00003438W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07003439S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003440F: include/linux/dccp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003441F: include/uapi/linux/dccp.h
Joe Perches679655d2009-04-07 20:44:32 -07003442F: include/linux/tfrc.h
3443F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07003444
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07003446W: http://linux-decnet.sourceforge.net
3447L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00003448S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003449F: Documentation/networking/decnet.txt
3450F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451
Maciej W. Rozyckiebff05b2014-04-06 23:04:00 +01003452DECSTATION PLATFORM SUPPORT
3453M: "Maciej W. Rozycki" <macro@linux-mips.org>
3454L: linux-mips@linux-mips.org
3455W: http://www.linux-mips.org/wiki/DECstation
3456S: Maintained
3457F: arch/mips/dec/
3458F: arch/mips/include/asm/dec/
3459F: arch/mips/include/asm/mach-dec/
3460
Linus Torvalds1da177e2005-04-16 15:20:36 -07003461DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003462M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463S: Maintained
Jeff Kirsher33f810b2011-07-31 00:06:29 -07003464F: drivers/net/fddi/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465
Matthew Garrettad8f07c2009-01-07 18:08:56 -08003466DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003467M: Matthew Garrett <mjg59@srcf.ucam.org>
Pali Rohárcdbff612015-03-29 15:38:50 +02003468M: Pali Rohár <pali.rohar@gmail.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05003469L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08003470S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003471F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08003472
Pali Rohár817a5cd2015-06-06 10:23:28 +02003473DELL LAPTOP RBTN DRIVER
3474M: Pali Rohár <pali.rohar@gmail.com>
3475S: Maintained
3476F: drivers/platform/x86/dell-rbtn.*
3477
Pali Rohárcdbff612015-03-29 15:38:50 +02003478DELL LAPTOP FREEFALL DRIVER
3479M: Pali Rohár <pali.rohar@gmail.com>
3480S: Maintained
3481F: drivers/platform/x86/dell-smo8800.c
3482
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483DELL LAPTOP SMM DRIVER
Pali Rohára5afba12015-05-14 13:16:36 +02003484M: Pali Rohár <pali.rohar@gmail.com>
Guenter Roeckef3522f2014-12-21 20:54:37 +01003485S: Maintained
Pali Rohára5afba12015-05-14 13:16:36 +02003486F: drivers/hwmon/dell-smm-hwmon.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003487F: include/uapi/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488
Doug Warzecha90563ec2005-09-06 15:17:15 -07003489DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07003490M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07003491S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003492F: Documentation/dcdbas.txt
3493F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07003494
Matthew Garrett0b3f6102009-01-09 20:17:11 +00003495DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003496M: Matthew Garrett <mjg59@srcf.ucam.org>
Pali Rohárcdbff612015-03-29 15:38:50 +02003497M: Pali Rohár <pali.rohar@gmail.com>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00003498S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07003499F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00003500
Paul Zimmerman5efc75e2013-03-11 17:48:03 -07003501DESIGNWARE USB2 DRD IP DRIVER
Paul Zimmerman16272ae2015-01-15 20:14:10 +00003502M: John Youn <johnyoun@synopsys.com>
Paul Zimmerman5efc75e2013-03-11 17:48:03 -07003503L: linux-usb@vger.kernel.org
Paul Zimmerman18f340f2014-09-19 14:49:36 -07003504T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Paul Zimmerman5efc75e2013-03-11 17:48:03 -07003505S: Maintained
Paul Zimmerman197ba5f2014-01-13 13:50:09 -08003506F: drivers/usb/dwc2/
Paul Zimmerman5efc75e2013-03-11 17:48:03 -07003507
Felipe Balbi94ab23d2011-08-19 18:10:59 +03003508DESIGNWARE USB3 DRD IP DRIVER
Felipe Balbia55f6282016-02-03 20:23:01 +02003509M: Felipe Balbi <balbi@kernel.org>
Felipe Balbi94ab23d2011-08-19 18:10:59 +03003510L: linux-usb@vger.kernel.org
Felipe Balbi94ab23d2011-08-19 18:10:59 +03003511T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3512S: Maintained
3513F: drivers/usb/dwc3/
3514
Johannes Berg833c9542014-09-12 09:01:56 +02003515DEVICE COREDUMP (DEV_COREDUMP)
3516M: Johannes Berg <johannes@sipsolutions.net>
3517L: linux-kernel@vger.kernel.org
3518S: Maintained
3519F: drivers/base/devcoredump.c
3520F: include/linux/devcoredump.h
3521
Kyungmin Park89d07762012-01-10 15:09:09 -08003522DEVICE FREQUENCY (DEVFREQ)
3523M: MyungJoo Ham <myungjoo.ham@samsung.com>
3524M: Kyungmin Park <kyungmin.park@samsung.com>
MyungJoo Ham88476d32013-03-14 17:28:24 +09003525L: linux-pm@vger.kernel.org
Chanwoo Choi6a3cd722015-11-05 13:30:17 +09003526T: git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
Kyungmin Park89d07762012-01-10 15:09:09 -08003527S: Maintained
3528F: drivers/devfreq/
Chanwoo Choi6a3cd722015-11-05 13:30:17 +09003529F: include/linux/devfreq.h
3530F: Documentation/devicetree/bindings/devfreq/
Kyungmin Park89d07762012-01-10 15:09:09 -08003531
Chanwoo Choi7dbded02015-11-05 13:30:18 +09003532DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
3533M: Chanwoo Choi <cw00.choi@samsung.com>
3534L: linux-pm@vger.kernel.org
3535T: git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3536S: Supported
3537F: drivers/devfreq/event/
3538F: drivers/devfreq/devfreq-event.c
3539F: include/linux/devfreq-event.h
3540F: Documentation/devicetree/bindings/devfreq/event/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003541
3542DEVICE NUMBER REGISTRY
Joe Perches8a6e2532010-03-05 13:43:11 -08003543M: Torben Mathiasen <device@lanana.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003544W: http://lanana.org/docs/device-list/index.html
Joe Perches679655d2009-04-07 20:44:32 -07003545S: Maintained
3546
3547DEVICE-MAPPER (LVM)
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01003548M: Alasdair Kergon <agk@redhat.com>
Alasdair G Kergon8504eed2013-07-10 23:41:19 +01003549M: Mike Snitzer <snitzer@redhat.com>
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01003550M: dm-devel@redhat.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003551L: dm-devel@redhat.com
3552W: http://sources.redhat.com/dm
3553Q: http://patchwork.kernel.org/project/dm-devel/list/
Mike Snitzer41d35d22013-11-04 19:42:38 -05003554T: git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01003555T: quilt http://people.redhat.com/agk/patches/linux/editing/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003556S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003557F: Documentation/device-mapper/
3558F: drivers/md/dm*
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01003559F: drivers/md/persistent-data/
Joe Perches679655d2009-04-07 20:44:32 -07003560F: include/linux/device-mapper.h
3561F: include/linux/dm-*.h
Alasdair G Kergon8504eed2013-07-10 23:41:19 +01003562F: include/uapi/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003563
Jiri Pirkobfcd3a42016-02-26 17:32:23 +01003564DEVLINK
3565M: Jiri Pirko <jiri@mellanox.com>
3566L: netdev@vger.kernel.org
3567S: Supported
3568F: net/core/devlink.c
3569F: include/net/devlink.h
3570F: include/uapi/linux/devlink.h
3571
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003572DIALOG SEMICONDUCTOR DRIVERS
3573M: Support Opensource <support.opensource@diasemi.com>
3574W: http://www.dialog-semiconductor.com/products
3575S: Supported
3576F: Documentation/hwmon/da90??
Adam Thomson7c933772015-09-29 16:44:12 +01003577F: Documentation/devicetree/bindings/sound/da[79]*.txt
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003578F: drivers/gpio/gpio-da90??.c
3579F: drivers/hwmon/da90??-hwmon.c
Adam Thomson7be72c22015-02-18 14:08:37 +00003580F: drivers/iio/adc/da91??-*.c
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003581F: drivers/input/misc/da90??_onkey.c
3582F: drivers/input/touchscreen/da9052_tsi.c
3583F: drivers/leds/leds-da90??.c
3584F: drivers/mfd/da903x.c
3585F: drivers/mfd/da90??-*.c
Adam Thomson7be72c22015-02-18 14:08:37 +00003586F: drivers/mfd/da91??-*.c
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003587F: drivers/power/da9052-battery.c
Adam Thomson7be72c22015-02-18 14:08:37 +00003588F: drivers/power/da91??-*.c
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003589F: drivers/regulator/da903x.c
3590F: drivers/regulator/da9???-regulator.[ch]
3591F: drivers/rtc/rtc-da90??.c
3592F: drivers/video/backlight/da90??_bl.c
3593F: drivers/watchdog/da90??_wdt.c
3594F: include/linux/mfd/da903x.h
3595F: include/linux/mfd/da9052/
3596F: include/linux/mfd/da9055/
3597F: include/linux/mfd/da9063/
Adam Thomson7be72c22015-02-18 14:08:37 +00003598F: include/linux/mfd/da9150/
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003599F: include/sound/da[79]*.h
3600F: sound/soc/codecs/da[79]*.[ch]
3601
Lidza Louina599aa692013-09-23 16:13:15 -04003602DIGI NEO AND CLASSIC PCI PRODUCTS
3603M: Lidza Louina <lidza.louina@gmail.com>
Mark Hounschell542f3d52014-04-25 14:32:15 -04003604M: Mark Hounschell <markh@compro.net>
Lidza Louina599aa692013-09-23 16:13:15 -04003605L: driverdev-devel@linuxdriverproject.org
3606S: Maintained
3607F: drivers/staging/dgnc/
3608
Guenter Roeck335d7c52011-01-26 11:45:49 -08003609DIOLAN U2C-12 I2C DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07003610M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck335d7c52011-01-26 11:45:49 -08003611L: linux-i2c@vger.kernel.org
3612S: Maintained
3613F: drivers/i2c/busses/i2c-diolan-u2c.c
3614
Matthew Wilcoxd475c632015-02-16 15:58:56 -08003615DIRECT ACCESS (DAX)
3616M: Matthew Wilcox <willy@linux.intel.com>
3617L: linux-fsdevel@vger.kernel.org
3618S: Supported
3619F: fs/dax.c
3620
Randy Dunlape7839f22008-10-12 16:11:45 -07003621DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07003622M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04003623S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003624F: Documentation/filesystems/dnotify.txt
3625F: fs/notify/dnotify/
3626F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627
3628DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07003629M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
3631W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
3632W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
3633S: Maintained
3634
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003635DISKQUOTA
Jiri Slabyd8130622015-07-17 16:23:20 -07003636M: Jan Kara <jack@suse.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003638F: Documentation/filesystems/quota.txt
3639F: fs/quota/
3640F: include/linux/quota*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003641F: include/uapi/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003642
Bernie Thompson702686a2012-03-01 13:52:13 -08003643DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
3644M: Bernie Thompson <bernie@plugable.com>
3645L: linux-fbdev@vger.kernel.org
3646S: Maintained
3647W: http://plugable.com/category/projects/udlfb/
Jingoo Han8a61f012014-07-01 15:36:01 +09003648F: drivers/video/fbdev/udlfb.c
Bernie Thompson702686a2012-03-01 13:52:13 -08003649F: include/video/udlfb.h
3650F: Documentation/fb/udlfb.txt
3651
Randy Dunlape7839f22008-10-12 16:11:45 -07003652DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07003653M: Christine Caulfield <ccaulfie@redhat.com>
3654M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04003655L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003656W: http://sources.redhat.com/cluster/
Fengguang Wu9f273c22016-01-20 15:03:25 -08003657T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003658S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003659F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003660
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05303661DMA BUFFER SHARING FRAMEWORK
3662M: Sumit Semwal <sumit.semwal@linaro.org>
3663S: Maintained
3664L: linux-media@vger.kernel.org
3665L: dri-devel@lists.freedesktop.org
Randy Dunlap8ada6d22014-10-13 15:51:19 -07003666L: linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
Maarten Lankhorst35fac7e2014-07-01 12:57:08 +02003667F: drivers/dma-buf/
Joe Perchese46d12c2014-08-08 14:26:16 -07003668F: include/linux/dma-buf*
3669F: include/linux/reservation.h
3670F: include/linux/*fence.h
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05303671F: Documentation/dma-buf-sharing.txt
3672T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
3673
Dan Williamsb3e5f262007-08-07 10:26:35 -07003674DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Dan Williams4abed0a2011-02-14 00:42:08 -08003675M: Vinod Koul <vinod.koul@intel.com>
Vinod Koul17b59562013-10-22 12:58:56 +05303676L: dmaengine@vger.kernel.org
3677Q: https://patchwork.kernel.org/project/linux-dmaengine/list/
Dan Williams08223d82014-08-19 06:07:56 -07003678S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003679F: drivers/dma/
Vinod Koul0ce3c062014-12-22 20:57:13 +05303680F: include/linux/dmaengine.h
Vinod Koul979a281e2014-11-06 11:21:17 +05303681F: Documentation/dmaengine/
3682T: git git://git.infradead.org/users/vkoul/slave-dma.git
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003683
Juerg Haefligerb8250372007-06-09 10:11:16 -04003684DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003685M: Juerg Haefliger <juergh@gmail.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07003686L: linux-hwmon@vger.kernel.org
Juerg Haefligerb8250372007-06-09 10:11:16 -04003687S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003688F: Documentation/hwmon/dme1737
3689F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04003690
Jean Delvare1f31e1b2015-03-25 15:55:31 -07003691DMI/SMBIOS SUPPORT
Jiri Slabyd8130622015-07-17 16:23:20 -07003692M: Jean Delvare <jdelvare@suse.com>
Jean Delvare1f31e1b2015-03-25 15:55:31 -07003693S: Maintained
Jean Delvared4aeef932015-06-25 09:06:56 +02003694T: quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
Ivan Khoronzhukd7f96f972015-06-25 09:06:56 +02003695F: Documentation/ABI/testing/sysfs-firmware-dmi-tables
Jean Delvare1f31e1b2015-03-25 15:55:31 -07003696F: drivers/firmware/dmi-id.c
3697F: drivers/firmware/dmi_scan.c
3698F: include/linux/dmi.h
3699
Joe Perches7d2c86b2009-04-07 20:59:01 -07003700DOCUMENTATION
Jonathan Corbetad3118b2014-10-17 08:59:26 -04003701M: Jonathan Corbet <corbet@lwn.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02003702L: linux-doc@vger.kernel.org
3703S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003704F: Documentation/
Jonathan Corbet42f41ec2015-09-11 13:23:36 -06003705F: scripts/docproc.c
3706F: scripts/kernel-doc*
Randy Dunlap97be0782014-06-27 18:28:56 -07003707X: Documentation/ABI/
3708X: Documentation/devicetree/
Jonathan Corbet933a46b2015-03-26 10:25:17 -06003709X: Documentation/acpi
3710X: Documentation/power
3711X: Documentation/spi
Jonathan Corbet6c121172015-07-24 15:08:14 +02003712X: Documentation/DocBook/media
Jonathan Corbetc51edfb2015-09-24 16:05:28 -06003713T: git git://git.lwn.net/linux.git docs-next
Randy Dunlapabbaeff2008-07-04 09:59:57 -07003714
Linus Torvalds1da177e2005-04-16 15:20:36 -07003715DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003716M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003717L: blinux-list@redhat.com
3718S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003719F: drivers/char/dtlk.c
3720F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003722DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003723M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003724L: linux-scsi@vger.kernel.org
3725W: http://www.adaptec.com/
3726S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003727F: drivers/scsi/dpt*
3728F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003729
Philipp Reisnerb411b362009-09-25 16:07:19 -07003730DRBD DRIVER
Roland Kammererbc2c0492015-07-07 16:37:10 +02003731M: Philipp Reisner <philipp.reisner@linbit.com>
3732M: Lars Ellenberg <lars.ellenberg@linbit.com>
3733L: drbd-dev@lists.linbit.com
Joe Perches28b8e8d2010-03-23 13:35:20 -07003734W: http://www.drbd.org
Roland Kammererbc2c0492015-07-07 16:37:10 +02003735T: git git://git.linbit.com/linux-drbd.git
3736T: git git://git.linbit.com/drbd-8.4.git
Joe Perches28b8e8d2010-03-23 13:35:20 -07003737S: Supported
3738F: drivers/block/drbd/
3739F: lib/lru_cache.c
3740F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07003741
Wolfram Sangdc7dfcd2015-04-23 17:20:54 +02003742DRIVER CORE, KOBJECTS, DEBUGFS, KERNFS AND SYSFS
Greg KH879a5a02012-01-31 20:02:00 -08003743M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perches08deed12012-03-23 15:01:57 -07003744T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003745S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003746F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07003747F: drivers/base/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07003748F: fs/debugfs/
Wolfram Sangdc7dfcd2015-04-23 17:20:54 +02003749F: fs/kernfs/
3750F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07003751F: include/linux/debugfs.h
Wolfram Sangdc7dfcd2015-04-23 17:20:54 +02003752F: include/linux/kobj*
Joe Perches679655d2009-04-07 20:44:32 -07003753F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003754
3755DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003756M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04003757L: dri-devel@lists.freedesktop.org
Alex Deucherb0447882014-02-18 10:03:44 -05003758T: git git://people.freedesktop.org/~airlied/linux
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003760F: drivers/gpu/drm/
Daniel Vetter433e3b32014-05-26 23:44:42 +02003761F: drivers/gpu/vga/
Joe Perches850e9412010-08-09 17:20:45 -07003762F: include/drm/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003763F: include/uapi/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764
Alex Deucherc26a4012016-03-03 11:49:34 -05003765RADEON and AMDGPU DRM DRIVERS
Alex Deucher566f5932014-02-18 10:03:43 -05003766M: Alex Deucher <alexander.deucher@amd.com>
3767M: Christian König <christian.koenig@amd.com>
3768L: dri-devel@lists.freedesktop.org
3769T: git git://people.freedesktop.org/~agd5f/linux
3770S: Supported
3771F: drivers/gpu/drm/radeon/
Alex Deucher566f5932014-02-18 10:03:43 -05003772F: include/uapi/drm/radeon*
Alex Deucherc26a4012016-03-03 11:49:34 -05003773F: drivers/gpu/drm/amd/
3774F: include/uapi/drm/amdgpu*
Alex Deucher566f5932014-02-18 10:03:43 -05003775
Thierry Reding03e255b2014-04-04 08:59:18 +02003776DRM PANEL DRIVERS
3777M: Thierry Reding <thierry.reding@gmail.com>
3778L: dri-devel@lists.freedesktop.org
3779T: git git://anongit.freedesktop.org/tegra/linux.git
3780S: Maintained
3781F: drivers/gpu/drm/drm_panel.c
3782F: drivers/gpu/drm/panel/
3783F: include/drm/drm_panel.h
Rob Herring2d799dd2015-11-05 13:40:40 -06003784F: Documentation/devicetree/bindings/display/panel/
Thierry Reding03e255b2014-04-04 08:59:18 +02003785
Chris Wilson8daf7472010-09-28 14:07:26 +01003786INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
Daniel Vettercbce7102014-08-28 12:17:42 +02003787M: Daniel Vetter <daniel.vetter@intel.com>
Daniel Vetter47f95642014-01-07 09:24:31 +01003788M: Jani Nikula <jani.nikula@linux.intel.com>
Daniel Vetter362132d2013-03-13 22:28:46 +01003789L: intel-gfx@lists.freedesktop.org
Chris Wilson8daf7472010-09-28 14:07:26 +01003790L: dri-devel@lists.freedesktop.org
Jani Nikula7564fde2015-10-13 11:16:48 +03003791W: https://01.org/linuxgraphics/
Daniel Vetter47f95642014-01-07 09:24:31 +01003792Q: http://patchwork.freedesktop.org/project/intel-gfx/
Daniel Vetter89258a92014-02-04 19:57:38 +01003793T: git git://anongit.freedesktop.org/drm-intel
Chris Wilson8daf7472010-09-28 14:07:26 +01003794S: Supported
Joe Perches14430812013-09-11 14:23:50 -07003795F: drivers/gpu/drm/i915/
Chris Wilson8daf7472010-09-28 14:07:26 +01003796F: include/drm/i915*
Emil Velikovbaceac32016-04-22 00:03:50 +01003797F: include/uapi/drm/i915_drm.h
Chris Wilson8daf7472010-09-28 14:07:26 +01003798
Boris BREZILLON99763bb2015-10-13 11:55:42 +02003799DRM DRIVERS FOR ATMEL HLCDC
3800M: Boris Brezillon <boris.brezillon@free-electrons.com>
3801L: dri-devel@lists.freedesktop.org
3802S: Supported
3803F: drivers/gpu/drm/atmel-hlcdc/
3804F: Documentation/devicetree/bindings/drm/atmel/
3805
Kyungmin Park398a6d42011-11-02 11:33:16 +09003806DRM DRIVERS FOR EXYNOS
3807M: Inki Dae <inki.dae@samsung.com>
Inki Daef1501302012-01-17 14:08:55 +09003808M: Joonyoung Shim <jy0922.shim@samsung.com>
3809M: Seung-Woo Kim <sw0312.kim@samsung.com>
3810M: Kyungmin Park <kyungmin.park@samsung.com>
Kyungmin Park398a6d42011-11-02 11:33:16 +09003811L: dri-devel@lists.freedesktop.org
Inki Dae25a58032012-10-30 16:08:05 +09003812T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
Kyungmin Park398a6d42011-11-02 11:33:16 +09003813S: Supported
Joe Perches14430812013-09-11 14:23:50 -07003814F: drivers/gpu/drm/exynos/
Kyungmin Park398a6d42011-11-02 11:33:16 +09003815F: include/drm/exynos*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003816F: include/uapi/drm/exynos*
Kyungmin Park398a6d42011-11-02 11:33:16 +09003817
Jianwei Wangb55a1b92015-08-19 22:26:33 -04003818DRM DRIVERS FOR FREESCALE DCU
Stefan Agnerbc667572016-01-06 22:02:46 -08003819M: Stefan Agner <stefan@agner.ch>
Jianwei Wangb55a1b92015-08-19 22:26:33 -04003820M: Alison Wang <alison.wang@freescale.com>
3821L: dri-devel@lists.freedesktop.org
3822S: Supported
3823F: drivers/gpu/drm/fsl-dcu/
Rob Herring2d799dd2015-11-05 13:40:40 -06003824F: Documentation/devicetree/bindings/display/fsl,dcu.txt
3825F: Documentation/devicetree/bindings/display/panel/nec,nl4827hc19_05b.txt
Jianwei Wangb55a1b92015-08-19 22:26:33 -04003826
Philipp Zabel0a3d7752014-11-24 16:33:35 +01003827DRM DRIVERS FOR FREESCALE IMX
3828M: Philipp Zabel <p.zabel@pengutronix.de>
3829L: dri-devel@lists.freedesktop.org
3830S: Maintained
3831F: drivers/gpu/drm/imx/
Philipp Zabelef739aa2015-06-19 16:22:38 +02003832F: drivers/gpu/ipu-v3/
Rob Herring2d799dd2015-11-05 13:40:40 -06003833F: Documentation/devicetree/bindings/display/imx/
Philipp Zabel0a3d7752014-11-24 16:33:35 +01003834
Patrik Jakobssonba2199a2015-10-12 23:14:44 +02003835DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
3836M: Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
3837L: dri-devel@lists.freedesktop.org
3838T: git git://github.com/patjak/drm-gma500
3839S: Maintained
Emil Velikov5ff18e42016-04-22 00:03:52 +01003840F: drivers/gpu/drm/gma500/
Patrik Jakobssonba2199a2015-10-12 23:14:44 +02003841
Emil Velikovfad89bb2016-04-22 00:03:58 +01003842DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
3843M: Ben Skeggs <bskeggs@redhat.com>
3844L: dri-devel@lists.freedesktop.org
3845L: nouveau@lists.freedesktop.org
3846T: git git://github.com/skeggsb/linux
3847S: Supported
3848F: drivers/gpu/drm/nouveau/
3849F: include/uapi/drm/nouveau_drm.h
3850
Thierry Redingbd3b49f2012-11-28 20:45:28 +01003851DRM DRIVERS FOR NVIDIA TEGRA
Thierry Redinga5ad7a62013-05-19 14:19:21 +02003852M: Thierry Reding <thierry.reding@gmail.com>
3853M: Terje Bergström <tbergstrom@nvidia.com>
Thierry Redingbd3b49f2012-11-28 20:45:28 +01003854L: dri-devel@lists.freedesktop.org
3855L: linux-tegra@vger.kernel.org
Thierry Redinga5ad7a62013-05-19 14:19:21 +02003856T: git git://anongit.freedesktop.org/tegra/linux.git
Stephen Warrenadabdb02013-09-13 13:00:57 -06003857S: Supported
Thierry Redingdee82682013-10-09 10:32:49 +02003858F: drivers/gpu/drm/tegra/
Thierry Redinga5ad7a62013-05-19 14:19:21 +02003859F: drivers/gpu/host1x/
Thierry Redinge1e90642013-09-24 13:59:01 +02003860F: include/linux/host1x.h
Thierry Redinga5ad7a62013-05-19 14:19:21 +02003861F: include/uapi/drm/tegra_drm.h
Rob Herring2d799dd2015-11-05 13:40:40 -06003862F: Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
Thierry Redingbd3b49f2012-11-28 20:45:28 +01003863
Laurent Pincharta284e9d2014-08-19 23:04:31 +02003864DRM DRIVERS FOR RENESAS
3865M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
3866L: dri-devel@lists.freedesktop.org
Simon Horman4a121092016-01-18 10:04:33 +09003867L: linux-renesas-soc@vger.kernel.org
Laurent Pincharta284e9d2014-08-19 23:04:31 +02003868T: git git://people.freedesktop.org/~airlied/linux
3869S: Supported
3870F: drivers/gpu/drm/rcar-du/
3871F: drivers/gpu/drm/shmobile/
Laurent Pincharta284e9d2014-08-19 23:04:31 +02003872F: include/linux/platform_data/shmob_drm.h
3873
Heiko Stuebner625e0342015-04-20 00:59:50 +02003874DRM DRIVERS FOR ROCKCHIP
3875M: Mark Yao <mark.yao@rock-chips.com>
3876L: dri-devel@lists.freedesktop.org
3877S: Maintained
3878F: drivers/gpu/drm/rockchip/
Rob Herring2d799dd2015-11-05 13:40:40 -06003879F: Documentation/devicetree/bindings/display/rockchip*
Heiko Stuebner625e0342015-04-20 00:59:50 +02003880
Benjamin Gaignard7f11c472015-08-14 15:35:24 -07003881DRM DRIVERS FOR STI
3882M: Benjamin Gaignard <benjamin.gaignard@linaro.org>
3883M: Vincent Abriou <vincent.abriou@st.com>
3884L: dri-devel@lists.freedesktop.org
3885T: git http://git.linaro.org/people/benjamin.gaignard/kernel.git
3886S: Maintained
3887F: drivers/gpu/drm/sti
Rob Herring2d799dd2015-11-05 13:40:40 -06003888F: Documentation/devicetree/bindings/display/st,stih4xx.txt
Benjamin Gaignard7f11c472015-08-14 15:35:24 -07003889
Lucas Stach8bb0bce2015-12-03 17:12:07 +01003890DRM DRIVERS FOR VIVANTE GPU IP
3891M: Lucas Stach <l.stach@pengutronix.de>
3892R: Russell King <linux+etnaviv@arm.linux.org.uk>
3893R: Christian Gmeiner <christian.gmeiner@gmail.com>
3894L: dri-devel@lists.freedesktop.org
3895S: Maintained
Emil Velikov8a9257a2016-04-22 00:03:54 +01003896F: drivers/gpu/drm/etnaviv/
3897F: include/uapi/drm/etnaviv_drm.h
3898F: Documentation/devicetree/bindings/display/etnaviv/
Lucas Stach8bb0bce2015-12-03 17:12:07 +01003899
Alexey Klimov598df1a2012-11-28 17:16:32 -03003900DSBR100 USB FM RADIO DRIVER
3901M: Alexey Klimov <klimov.linux@gmail.com>
3902L: linux-media@vger.kernel.org
3903T: git git://linuxtv.org/media_tree.git
3904S: Maintained
3905F: drivers/media/radio/dsbr100.c
3906
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003908M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08003909L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003910S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003911F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003912
Hans Verkuilcc11b142015-04-25 12:36:18 -03003913DT3155 MEDIA DRIVER
3914M: Hans Verkuil <hverkuil@xs4all.nl>
3915L: linux-media@vger.kernel.org
3916T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003917W: https://linuxtv.org
Hans Verkuilcc11b142015-04-25 12:36:18 -03003918S: Odd Fixes
3919F: drivers/media/pci/dt3155/
3920
Antti Palosaari91952bc2012-10-01 12:28:46 -03003921DVB_USB_AF9015 MEDIA DRIVER
3922M: Antti Palosaari <crope@iki.fi>
3923L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003924W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03003925W: http://palosaari.fi/linux/
3926Q: http://patchwork.linuxtv.org/project/linux-media/list/
3927T: git git://linuxtv.org/anttip/media_tree.git
3928S: Maintained
3929F: drivers/media/usb/dvb-usb-v2/af9015*
3930
3931DVB_USB_AF9035 MEDIA DRIVER
3932M: Antti Palosaari <crope@iki.fi>
3933L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003934W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03003935W: http://palosaari.fi/linux/
3936Q: http://patchwork.linuxtv.org/project/linux-media/list/
3937T: git git://linuxtv.org/anttip/media_tree.git
3938S: Maintained
3939F: drivers/media/usb/dvb-usb-v2/af9035*
3940
3941DVB_USB_ANYSEE MEDIA DRIVER
3942M: Antti Palosaari <crope@iki.fi>
3943L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003944W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03003945W: http://palosaari.fi/linux/
3946Q: http://patchwork.linuxtv.org/project/linux-media/list/
3947T: git git://linuxtv.org/anttip/media_tree.git
3948S: Maintained
3949F: drivers/media/usb/dvb-usb-v2/anysee*
3950
3951DVB_USB_AU6610 MEDIA DRIVER
3952M: Antti Palosaari <crope@iki.fi>
3953L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003954W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03003955W: http://palosaari.fi/linux/
3956Q: http://patchwork.linuxtv.org/project/linux-media/list/
3957T: git git://linuxtv.org/anttip/media_tree.git
3958S: Maintained
3959F: drivers/media/usb/dvb-usb-v2/au6610*
3960
3961DVB_USB_CE6230 MEDIA DRIVER
3962M: Antti Palosaari <crope@iki.fi>
3963L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003964W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03003965W: http://palosaari.fi/linux/
3966Q: http://patchwork.linuxtv.org/project/linux-media/list/
3967T: git git://linuxtv.org/anttip/media_tree.git
3968S: Maintained
3969F: drivers/media/usb/dvb-usb-v2/ce6230*
3970
Michael Krufkyd099dea2012-10-02 00:56:20 -03003971DVB_USB_CXUSB MEDIA DRIVER
3972M: Michael Krufky <mkrufky@linuxtv.org>
3973L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003974W: https://linuxtv.org
Michael Krufkyd099dea2012-10-02 00:56:20 -03003975W: http://github.com/mkrufky
3976Q: http://patchwork.linuxtv.org/project/linux-media/list/
3977T: git git://linuxtv.org/media_tree.git
3978S: Maintained
Cesar Eduardo Barros9819da62013-01-04 15:35:25 -08003979F: drivers/media/usb/dvb-usb/cxusb*
Michael Krufkyd099dea2012-10-02 00:56:20 -03003980
Antti Palosaari91952bc2012-10-01 12:28:46 -03003981DVB_USB_EC168 MEDIA DRIVER
3982M: Antti Palosaari <crope@iki.fi>
3983L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003984W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03003985W: http://palosaari.fi/linux/
3986Q: http://patchwork.linuxtv.org/project/linux-media/list/
3987T: git git://linuxtv.org/anttip/media_tree.git
3988S: Maintained
3989F: drivers/media/usb/dvb-usb-v2/ec168*
3990
Antti Palosaari55609832013-04-09 20:30:42 -03003991DVB_USB_GL861 MEDIA DRIVER
3992M: Antti Palosaari <crope@iki.fi>
3993L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003994W: https://linuxtv.org
Antti Palosaari55609832013-04-09 20:30:42 -03003995Q: http://patchwork.linuxtv.org/project/linux-media/list/
3996T: git git://linuxtv.org/anttip/media_tree.git
3997S: Maintained
3998F: drivers/media/usb/dvb-usb-v2/gl861*
3999
Michael Krufky8856f5f2012-10-02 00:55:50 -03004000DVB_USB_MXL111SF MEDIA DRIVER
4001M: Michael Krufky <mkrufky@linuxtv.org>
4002L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02004003W: https://linuxtv.org
Michael Krufky8856f5f2012-10-02 00:55:50 -03004004W: http://github.com/mkrufky
4005Q: http://patchwork.linuxtv.org/project/linux-media/list/
4006T: git git://linuxtv.org/mkrufky/mxl111sf.git
4007S: Maintained
4008F: drivers/media/usb/dvb-usb-v2/mxl111sf*
4009
Antti Palosaari91952bc2012-10-01 12:28:46 -03004010DVB_USB_RTL28XXU MEDIA DRIVER
4011M: Antti Palosaari <crope@iki.fi>
4012L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02004013W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03004014W: http://palosaari.fi/linux/
4015Q: http://patchwork.linuxtv.org/project/linux-media/list/
4016T: git git://linuxtv.org/anttip/media_tree.git
4017S: Maintained
4018F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
4019
4020DVB_USB_V2 MEDIA DRIVER
4021M: Antti Palosaari <crope@iki.fi>
4022L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02004023W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03004024W: http://palosaari.fi/linux/
4025Q: http://patchwork.linuxtv.org/project/linux-media/list/
4026T: git git://linuxtv.org/anttip/media_tree.git
4027S: Maintained
4028F: drivers/media/usb/dvb-usb-v2/dvb_usb*
4029F: drivers/media/usb/dvb-usb-v2/usb_urb.c
4030
Jason Baronac0ac382011-08-11 14:36:43 -04004031DYNAMIC DEBUG
Joe Perches5c4a97d2013-07-31 13:53:32 -07004032M: Jason Baron <jbaron@akamai.com>
Jason Baronac0ac382011-08-11 14:36:43 -04004033S: Maintained
4034F: lib/dynamic_debug.c
4035F: include/linux/dynamic_debug.h
4036
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08004037DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004038M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08004039S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004040F: drivers/tty/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08004041
Moritz Fischerf17effb2015-01-10 14:10:59 -08004042E3X0 POWER BUTTON DRIVER
4043M: Moritz Fischer <moritz.fischer@ettus.com>
4044L: usrp-users@lists.ettus.com
4045W: http://www.ettus.com
4046S: Supported
4047F: drivers/input/misc/e3x0-button.c
4048F: Documentation/devicetree/bindings/input/e3x0-button.txt
4049
Antti Palosaari91952bc2012-10-01 12:28:46 -03004050E4000 MEDIA DRIVER
4051M: Antti Palosaari <crope@iki.fi>
4052L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02004053W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03004054W: http://palosaari.fi/linux/
4055Q: http://patchwork.linuxtv.org/project/linux-media/list/
4056T: git git://linuxtv.org/anttip/media_tree.git
4057S: Maintained
4058F: drivers/media/tuners/e4000*
4059
Linus Torvalds1da177e2005-04-16 15:20:36 -07004060EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004061M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004062L: linux-scsi@vger.kernel.org
4063S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004064F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004065
Antti Palosaari91952bc2012-10-01 12:28:46 -03004066EC100 MEDIA DRIVER
4067M: Antti Palosaari <crope@iki.fi>
4068L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02004069W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03004070W: http://palosaari.fi/linux/
4071Q: http://patchwork.linuxtv.org/project/linux-media/list/
4072T: git git://linuxtv.org/anttip/media_tree.git
4073S: Maintained
4074F: drivers/media/dvb-frontends/ec100*
4075
Michael Halcrow237fead2006-10-04 02:16:22 -07004076ECRYPT FILE SYSTEM
Tyler Hicks0de9adf2011-11-05 09:04:47 -04004077M: Tyler Hicks <tyhicks@canonical.com>
Tyler Hicksa058bfb2011-05-27 11:47:59 -05004078L: ecryptfs@vger.kernel.org
Dustin Kirkland24a923e2013-05-31 10:41:43 -05004079W: http://ecryptfs.org
Michael Halcrow6dc75162008-12-15 13:54:17 -08004080W: https://launchpad.net/ecryptfs
Fengguang Wu9f273c22016-01-20 15:03:25 -08004081T: git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
Michael Halcrow237fead2006-10-04 02:16:22 -07004082S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004083F: Documentation/filesystems/ecryptfs.txt
4084F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07004085
Alan Coxda9bb1d2006-01-18 17:44:13 -08004086EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07004087M: Doug Thompson <dougthompson@xmission.com>
Borislav Petkovaa15aa02014-03-03 15:38:17 -08004088M: Borislav Petkov <bp@alien8.de>
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02004089M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04004090L: linux-edac@vger.kernel.org
Fengguang Wu07cd6bf2015-12-18 15:51:36 +08004091T: git git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git for-next
4092T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-edac.git linux_next
Doug Thompson8c2a6a42006-06-30 01:56:09 -07004093S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004094F: Documentation/edac.txt
Chris Metcalf91445c72012-03-31 09:46:03 -04004095F: drivers/edac/
Joe Perches679655d2009-04-07 20:44:32 -07004096F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08004097
Borislav Petkovc476c232009-05-20 20:31:58 +02004098EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07004099M: Doug Thompson <dougthompson@xmission.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01004100M: Borislav Petkov <bp@alien8.de>
Chris Metcalf91445c72012-03-31 09:46:03 -04004101L: linux-edac@vger.kernel.org
Borislav Petkov487ba8e2012-10-29 18:40:10 +01004102S: Maintained
Borislav Petkovc476c232009-05-20 20:31:58 +02004103F: drivers/edac/amd64_edac*
4104
Robert Richter836dae52013-10-18 09:24:52 +02004105EDAC-CALXEDA
4106M: Doug Thompson <dougthompson@xmission.com>
4107M: Robert Richter <rric@kernel.org>
4108L: linux-edac@vger.kernel.org
Robert Richter836dae52013-10-18 09:24:52 +02004109S: Maintained
4110F: drivers/edac/highbank*
4111
Ralf Baechlef65aad42012-10-17 00:39:09 +02004112EDAC-CAVIUM
4113M: Ralf Baechle <ralf@linux-mips.org>
4114M: David Daney <david.daney@cavium.com>
4115L: linux-edac@vger.kernel.org
4116L: linux-mips@linux-mips.org
Ralf Baechlef65aad42012-10-17 00:39:09 +02004117S: Supported
4118F: drivers/edac/octeon_edac*
4119
Dave Peterson0e438e32006-03-26 01:38:55 -08004120EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07004121M: Mark Gross <mark.gross@intel.com>
4122M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04004123L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08004124S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004125F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08004126
4127EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07004128M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04004129L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08004130S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004131F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08004132
Mauro Carvalho Chehab77c5f5d2013-02-15 06:11:57 -03004133EDAC-GHES
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02004134M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab77c5f5d2013-02-15 06:11:57 -03004135L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab77c5f5d2013-02-15 06:11:57 -03004136S: Maintained
Joe Perches2caa67a2013-09-11 14:23:40 -07004137F: drivers/edac/ghes_edac.c
Mauro Carvalho Chehab77c5f5d2013-02-15 06:11:57 -03004138
Douglas Thompson6bc78402007-07-19 01:50:12 -07004139EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07004140M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04004141L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07004142S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004143F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07004144
4145EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07004146M: Jason Uhlenkott <juhlenko@akamai.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04004147L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07004148S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004149F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07004150
4151EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07004152M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04004153L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07004154S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004155F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07004156
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08004157EDAC-I5400
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02004158M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03004159L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08004160S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004161F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08004162
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03004163EDAC-I7300
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02004164M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03004165L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03004166S: Maintained
4167F: drivers/edac/i7300_edac.c
4168
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03004169EDAC-I7CORE
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02004170M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03004171L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03004172S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03004173F: drivers/edac/i7core_edac.c
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03004174
Douglas Thompsonba9a5912007-07-19 01:50:32 -07004175EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07004176M: Ranganathan Desikan <ravi@jetztechnologies.com>
Arvind R25527882011-01-21 23:13:37 +05304177M: "Arvind R." <arvino55@gmail.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04004178L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07004179S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004180F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07004181
Jason Baron791b4702014-07-09 21:13:11 +00004182EDAC-IE31200
4183M: Jason Baron <jbaron@akamai.com>
4184L: linux-edac@vger.kernel.org
Jason Baron791b4702014-07-09 21:13:11 +00004185S: Maintained
4186F: drivers/edac/ie31200_edac.c
4187
Johannes Thumshirnccdfb972013-11-17 19:25:12 +01004188EDAC-MPC85XX
Johannes Thumshirn30c74692015-05-07 10:21:24 +02004189M: Johannes Thumshirn <morbidrsa@gmail.com>
Johannes Thumshirnccdfb972013-11-17 19:25:12 +01004190L: linux-edac@vger.kernel.org
Johannes Thumshirnccdfb972013-11-17 19:25:12 +01004191S: Maintained
4192F: drivers/edac/mpc85xx_edac.[ch]
4193
Douglas Thompsonba9a5912007-07-19 01:50:32 -07004194EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07004195M: Egor Martovetsky <egor@pasemi.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04004196L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07004197S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004198F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07004199
Dave Peterson0e438e32006-03-26 01:38:55 -08004200EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07004201M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04004202L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08004203S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004204F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08004205
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02004206EDAC-SBRIDGE
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02004207M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02004208L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02004209S: Maintained
4210F: drivers/edac/sb_edac.c
4211
Loc Ho995e1de2015-05-22 17:32:57 -06004212EDAC-XGENE
4213APPLIED MICRO (APM) X-GENE SOC EDAC
4214M: Loc Ho <lho@apm.com>
4215S: Supported
4216F: drivers/edac/xgene_edac.c
4217F: Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
4218
Clemens Ladischaf399172011-01-10 16:32:54 +01004219EDIROL UA-101/UA-1000 DRIVER
4220M: Clemens Ladisch <clemens@ladisch.de>
4221L: alsa-devel@alsa-project.org (moderated for non-subscribers)
4222T: git git://git.alsa-project.org/alsa-kernel.git
4223S: Maintained
4224F: sound/usb/misc/ua101.c
4225
Matt Fleming1f7df952012-10-03 10:04:02 +01004226EXTENSIBLE FIRMWARE INTERFACE (EFI)
Matt Fleming825fcfc2015-10-10 17:22:16 +01004227M: Matt Fleming <matt@codeblueprint.co.uk>
Matt Fleming1f7df952012-10-03 10:04:02 +01004228L: linux-efi@vger.kernel.org
Matt Fleming78bef242012-10-08 11:33:05 +01004229T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
Matt Fleming1f7df952012-10-03 10:04:02 +01004230S: Maintained
Joe Perchesfb2efb52014-08-08 14:25:01 -07004231F: Documentation/efi-stub.txt
Matt Fleming1f7df952012-10-03 10:04:02 +01004232F: arch/ia64/kernel/efi.c
4233F: arch/x86/boot/compressed/eboot.[ch]
4234F: arch/x86/include/asm/efi.h
4235F: arch/x86/platform/efi/*
Tom Gundersena9499fa2013-02-08 15:37:06 +00004236F: drivers/firmware/efi/*
Matt Fleming1f7df952012-10-03 10:04:02 +01004237F: include/linux/efi*.h
4238
Matt Flemingd68772b2013-02-08 16:27:24 +00004239EFI VARIABLE FILESYSTEM
4240M: Matthew Garrett <matthew.garrett@nebula.com>
4241M: Jeremy Kerr <jk@ozlabs.org>
Matt Fleming825fcfc2015-10-10 17:22:16 +01004242M: Matt Fleming <matt@codeblueprint.co.uk>
Matt Flemingd68772b2013-02-08 16:27:24 +00004243T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4244L: linux-efi@vger.kernel.org
4245S: Maintained
4246F: fs/efivarfs/
4247
Peter Jones85a00d92010-09-22 13:05:04 -07004248EFIFB FRAMEBUFFER DRIVER
4249L: linux-fbdev@vger.kernel.org
4250M: Peter Jones <pjones@redhat.com>
4251S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09004252F: drivers/video/fbdev/efifb.c
Peter Jones85a00d92010-09-22 13:05:04 -07004253
Josh Triplett0bee8d22006-07-30 03:03:58 -07004254EFS FILESYSTEM
4255W: http://aeschi.ch.eu.org/efs/
4256S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004257F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07004258
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07004259EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
Thadeu Lima de Souza Cascardo34b19012011-10-13 09:56:19 +00004260M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07004261L: netdev@vger.kernel.org
4262S: Maintained
Jeff Kirsher9aa32832011-05-13 14:29:12 -07004263F: drivers/net/ethernet/ibm/ehea/
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07004264
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02004265EM28XX VIDEO4LINUX DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02004266M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02004267L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02004268W: https://linuxtv.org
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02004269T: git git://linuxtv.org/media_tree.git
4270S: Maintained
4271F: drivers/media/usb/em28xx/
4272
David Woodhouse3e3a7d62008-05-01 04:34:46 -07004273EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07004274M: Paul Gortmaker <paul.gortmaker@windriver.com>
4275M: Matt Mackall <mpm@selenic.com>
4276M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07004277L: linux-embedded@vger.kernel.org
4278S: Maintained
4279
James Smart32505872015-05-15 13:10:58 -04004280EMULEX/AVAGO LPFC FC/FCOE SCSI DRIVER
4281M: James Smart <james.smart@avagotech.com>
4282M: Dick Kennedy <dick.kennedy@avagotech.com>
Jim Cromiece00f852006-11-30 04:49:44 +01004283L: linux-scsi@vger.kernel.org
James Smart32505872015-05-15 13:10:58 -04004284W: http://www.avagotech.com
Jim Cromiece00f852006-11-30 04:49:44 +01004285S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004286F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04004287
Michał Mirosław5f5bac82009-05-22 20:33:59 +02004288ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004289M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02004290S: Maintained
4291F: drivers/misc/cb710/
4292F: drivers/mmc/host/cb710-mmc.*
4293F: include/linux/cb710.h
4294
Maxim Levitsky931e39a2010-07-31 11:59:26 -03004295ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
4296M: Maxim Levitsky <maximlevitsky@gmail.com>
4297S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07004298F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03004299
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07004300EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004301M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07004302S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07004303T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Jingoo Han8a61f012014-07-01 15:36:01 +09004304F: drivers/video/fbdev/s1d13xxxfb.c
Joe Perches679655d2009-04-07 20:44:32 -07004305F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07004306
Mark Einon38df6492014-09-30 22:29:46 +01004307ET131X NETWORK DRIVER
4308M: Mark Einon <mark.einon@gmail.com>
4309S: Odd Fixes
4310F: drivers/net/ethernet/agere/
4311
Linus Torvalds1da177e2005-04-16 15:20:36 -07004312ETHERNET BRIDGE
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08004313M: Stephen Hemminger <stephen@networkplumber.org>
stephen hemminger34302842016-04-05 13:43:53 -07004314L: bridge@lists.linux-foundation.org (moderated for non-subscribers)
David S. Miller4c325312010-03-04 00:42:30 -08004315L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00004316W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07004317S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004318F: include/linux/netfilter_bridge/
4319F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004320
Florian Fainelli22f08ad2014-02-18 09:47:49 -08004321ETHERNET PHY LIBRARY
4322M: Florian Fainelli <f.fainelli@gmail.com>
4323L: netdev@vger.kernel.org
4324S: Maintained
4325F: include/linux/phy.h
4326F: include/linux/phy_fixed.h
4327F: drivers/net/phy/
4328F: Documentation/networking/phy.txt
4329F: drivers/of/of_mdio.c
4330F: drivers/of/of_net.c
4331
Linus Torvalds1da177e2005-04-16 15:20:36 -07004332EXT2 FILE SYSTEM
Jiri Slabyd8130622015-07-17 16:23:20 -07004333M: Jan Kara <jack@suse.com>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004334L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004335S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004336F: Documentation/filesystems/ext2.txt
4337F: fs/ext2/
4338F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004339
Erik Mouw72be2cc2006-12-06 20:40:49 -08004340EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004341M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02004342M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004343L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04004344W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004345Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Fengguang Wu9f273c22016-01-20 15:03:25 -08004346T: git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004347S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004348F: Documentation/filesystems/ext4.txt
4349F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004350
Mimi Zoharc5532b02011-08-17 18:52:24 -04004351Extended Verification Module (EVM)
Mimi Zohar74dd7442014-02-27 08:44:45 -05004352M: Mimi Zohar <zohar@linux.vnet.ibm.com>
4353L: linux-ima-devel@lists.sourceforge.net
4354L: linux-security-module@vger.kernel.org
Mimi Zoharc5532b02011-08-17 18:52:24 -04004355S: Supported
4356F: security/integrity/evm/
4357
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09004358EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
4359M: MyungJoo Ham <myungjoo.ham@samsung.com>
4360M: Chanwoo Choi <cw00.choi@samsung.com>
4361L: linux-kernel@vger.kernel.org
Chanwoo Choi81df63a2013-09-28 15:04:37 +09004362T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09004363S: Maintained
4364F: drivers/extcon/
Chanwoo Choicd2c3e72015-11-06 16:30:55 -08004365F: include/linux/extcon/
4366F: include/linux/extcon.h
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09004367F: Documentation/extcon/
Chanwoo Choicd2c3e72015-11-06 16:30:55 -08004368F: Documentation/devicetree/bindings/extcon/
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09004369
Jingoo Hane2a75c42014-04-10 20:24:03 +09004370EXYNOS DP DRIVER
Jingoo Hanb7701752015-05-14 15:17:07 -07004371M: Jingoo Han <jingoohan1@gmail.com>
Jingoo Hane2a75c42014-04-10 20:24:03 +09004372L: dri-devel@lists.freedesktop.org
4373S: Maintained
4374F: drivers/gpu/drm/exynos/exynos_dp*
4375
Marek Szyprowski9b93a402016-02-18 15:12:59 +01004376EXYNOS SYSMMU (IOMMU) driver
4377M: Marek Szyprowski <m.szyprowski@samsung.com>
4378L: iommu@lists.linux-foundation.org
4379S: Maintained
4380F: drivers/iommu/exynos-iommu.c
4381
Donghwa Lee33ad3912012-03-06 11:44:58 +09004382EXYNOS MIPI DISPLAY DRIVERS
4383M: Inki Dae <inki.dae@samsung.com>
4384M: Donghwa Lee <dh09.lee@samsung.com>
4385M: Kyungmin Park <kyungmin.park@samsung.com>
4386L: linux-fbdev@vger.kernel.org
4387S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09004388F: drivers/video/fbdev/exynos/exynos_mipi*
Donghwa Lee33ad3912012-03-06 11:44:58 +09004389F: include/video/exynos_mipi*
4390
Jean Delvaree53004e2006-01-09 23:26:14 +01004391F71805F HARDWARE MONITORING DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07004392M: Jean Delvare <jdelvare@suse.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07004393L: linux-hwmon@vger.kernel.org
Jean Delvaree53004e2006-01-09 23:26:14 +01004394S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004395F: Documentation/hwmon/f71805f
4396F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01004397
Michael Büscheea977e2012-04-02 12:14:32 -03004398FC0011 TUNER DRIVER
4399M: Michael Buesch <m@bues.ch>
4400L: linux-media@vger.kernel.org
4401S: Maintained
Mauro Carvalho Chehabccae7af2012-06-14 16:35:59 -03004402F: drivers/media/tuners/fc0011.h
4403F: drivers/media/tuners/fc0011.c
Michael Büscheea977e2012-04-02 12:14:32 -03004404
Antti Palosaari91952bc2012-10-01 12:28:46 -03004405FC2580 MEDIA DRIVER
4406M: Antti Palosaari <crope@iki.fi>
4407L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02004408W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03004409W: http://palosaari.fi/linux/
4410Q: http://patchwork.linuxtv.org/project/linux-media/list/
4411T: git git://linuxtv.org/anttip/media_tree.git
4412S: Maintained
4413F: drivers/media/tuners/fc2580*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004414
Eric Paris88b2dbd2010-08-18 12:25:50 -04004415FANOTIFY
4416M: Eric Paris <eparis@redhat.com>
4417S: Maintained
4418F: fs/notify/fanotify/
4419F: include/linux/fanotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004420F: include/uapi/linux/fanotify.h
Eric Paris88b2dbd2010-08-18 12:25:50 -04004421
Linus Torvalds1da177e2005-04-16 15:20:36 -07004422FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004423M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004424W: http://www.farsite.co.uk/
4425S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004426F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004427
Akinobu Mitac5408b82007-04-23 14:41:20 -07004428FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004429M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07004430S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004431F: Documentation/fault-injection/
4432F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07004433
Noralf Trønnes053e5142015-01-23 19:29:07 +01004434FBTFT Framebuffer drivers
4435M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4436M: Noralf Trønnes <noralf@tronnes.org>
4437S: Maintained
4438F: drivers/staging/fbtft/
4439
Robert Lovecae727d2010-02-16 12:16:00 -08004440FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
Robert Love3bd746c2014-05-28 14:19:01 -07004441M: Vasu Dev <vasu.dev@intel.com>
Neil Hormanf4aaea62013-05-03 19:38:10 +00004442L: fcoe-devel@open-fcoe.org
Robert Lovecae727d2010-02-16 12:16:00 -08004443W: www.Open-FCoE.org
4444S: Supported
4445F: drivers/scsi/libfc/
4446F: drivers/scsi/fcoe/
4447F: include/scsi/fc/
4448F: include/scsi/libfc.h
4449F: include/scsi/libfcoe.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004450F: include/uapi/scsi/fc/
Robert Lovecae727d2010-02-16 12:16:00 -08004451
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004452FILE LOCKING (flock() and fcntl()/lockf())
Jeff Layton8c836fa2014-04-30 13:28:17 -04004453M: Jeff Layton <jlayton@poochiereds.net>
Joe Perches9c3646d2015-06-25 15:02:00 -07004454M: "J. Bruce Fields" <bfields@fieldses.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004455L: linux-fsdevel@vger.kernel.org
4456S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004457F: include/linux/fcntl.h
4458F: include/linux/fs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004459F: include/uapi/linux/fcntl.h
4460F: include/uapi/linux/fs.h
Joe Perches679655d2009-04-07 20:44:32 -07004461F: fs/fcntl.c
4462F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004463
4464FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07004465M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004466L: linux-fsdevel@vger.kernel.org
4467S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004468F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004469
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004470FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02004471M: Riku Voipio <riku.voipio@iki.fi>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07004472L: linux-hwmon@vger.kernel.org
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004473S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07004474F: drivers/hwmon/f75375s.c
4475F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004476
Clemens Ladischa331b0c2011-05-25 09:48:48 +02004477FIREWIRE AUDIO DRIVERS
4478M: Clemens Ladisch <clemens@ladisch.de>
4479L: alsa-devel@alsa-project.org (moderated for non-subscribers)
4480T: git git://git.alsa-project.org/alsa-kernel.git
4481S: Maintained
4482F: sound/firewire/
4483
Stefan Richtereb86ec52012-11-03 09:25:20 +01004484FIREWIRE MEDIA DRIVERS (firedtv)
4485M: Stefan Richter <stefanr@s5r6.in-berlin.de>
4486L: linux-media@vger.kernel.org
4487L: linux1394-devel@lists.sourceforge.net
4488T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
4489S: Maintained
4490F: drivers/media/firewire/
4491
Chris Boota511ce32012-04-14 17:50:35 -07004492FIREWIRE SBP-2 TARGET
4493M: Chris Boot <bootc@bootc.net>
4494L: linux-scsi@vger.kernel.org
4495L: target-devel@vger.kernel.org
4496L: linux1394-devel@lists.sourceforge.net
4497T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
4498S: Maintained
4499F: drivers/target/sbp/
4500
Joe Perches7d2c86b2009-04-07 20:59:01 -07004501FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004502M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004503L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01004504W: http://ieee1394.wiki.kernel.org/
Stefan Richter2ca526b2011-12-20 21:23:28 +01004505T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004506S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004507F: drivers/firewire/
Stefan Richter8f06ce32012-12-17 16:00:07 -08004508F: include/linux/firewire.h
4509F: include/uapi/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02004510F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004511
4512FIRMWARE LOADER (request_firmware)
Ming Lei39e68082012-08-20 19:04:17 +08004513M: Ming Lei <ming.lei@canonical.com>
4514L: linux-kernel@vger.kernel.org
4515S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004516F: Documentation/firmware_class/
4517F: drivers/base/firmware*.c
4518F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004519
Philip J Kelleherf730e3d2013-06-18 14:43:58 -05004520FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
Philip J Kelleher9bb3c442013-02-27 09:24:59 -06004521M: Joshua Morris <josh.h.morris@us.ibm.com>
4522M: Philip Kelleher <pjk1939@linux.vnet.ibm.com>
4523S: Maintained
4524F: drivers/block/rsxx/
4525
Jiri Kosina8206f662012-05-18 13:52:29 +02004526FLOPPY DRIVER
Jiri Kosinae5f64502015-08-09 09:11:34 +02004527M: Jiri Kosina <jikos@kernel.org>
Jiri Kosina8206f662012-05-18 13:52:29 +02004528T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
4529S: Odd fixes
4530F: drivers/block/floppy.c
4531
Alessandro Rubini9c9f32e2013-06-12 09:13:25 +02004532FMC SUBSYSTEM
4533M: Alessandro Rubini <rubini@gnudd.com>
4534W: http://www.ohwr.org/projects/fmc-bus
4535S: Supported
4536F: drivers/fmc/
4537F: include/linux/fmc*.h
4538F: include/linux/ipmi-fru.h
4539K: fmc_d.*register
4540
Alan Tull3c0ed7d2015-10-07 20:49:23 +01004541FPGA MANAGER FRAMEWORK
4542M: Alan Tull <atull@opensource.altera.com>
Moritz Fischerdd7d6642015-11-20 15:56:51 -08004543R: Moritz Fischer <moritz.fischer@ettus.com>
Alan Tull3c0ed7d2015-10-07 20:49:23 +01004544S: Maintained
4545F: drivers/fpga/
4546F: include/linux/fpga/fpga-mgr.h
4547W: http://www.rocketboards.org
4548
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004549FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07004550M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07004551W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004552S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004553F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004554
4555FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004556L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00004557S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004558F: drivers/net/wan/dlci.c
4559F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004560
Linus Torvalds1da177e2005-04-16 15:20:36 -07004561FRAMEBUFFER LAYER
Jean-Christophe PLAGNIOL-VILLARD5489e942013-05-30 22:23:44 +02004562M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
4563M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004564L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004565W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09004566Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Jean-Christophe PLAGNIOL-VILLARD5489e942013-05-30 22:23:44 +02004567T: git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
Paul Mundt56be1412011-03-23 08:29:07 +09004568S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004569F: Documentation/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09004570F: drivers/video/
4571F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07004572F: include/linux/fb.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004573F: include/uapi/video/
4574F: include/uapi/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004575
Timur Tabia57c1882012-10-16 17:33:42 -05004576FREESCALE DIU FRAMEBUFFER DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004577M: Timur Tabi <timur@tabi.org>
Timur Tabia57c1882012-10-16 17:33:42 -05004578L: linux-fbdev@vger.kernel.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004579S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09004580F: drivers/video/fbdev/fsl-diu-fb.*
Timur Tabia57c1882012-10-16 17:33:42 -05004581
Zhang Wei173acc72008-03-01 07:42:48 -07004582FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004583M: Li Yang <leoli@freescale.com>
4584M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004585L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07004586S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004587F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07004588
Han Xu44248af2016-02-18 03:55:15 +00004589FREESCALE GPMI NAND DRIVER
4590M: Han Xu <han.xu@nxp.com>
4591L: linux-mtd@lists.infradead.org
4592S: Maintained
4593F: drivers/mtd/nand/gpmi-nand/*
4594
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02004595FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004596M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004597L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01004598L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02004599S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004600F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02004601
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01004602FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004603M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004604L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07004605L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01004606S: Maintained
Cesar Eduardo Barrosbad985a2013-01-04 15:35:28 -08004607F: include/linux/platform_data/video-imxfb.h
Jingoo Han8a61f012014-07-01 15:36:01 +09004608F: drivers/video/fbdev/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01004609
Han Xu4d8e2ce2015-01-16 03:29:17 +08004610FREESCALE QUAD SPI DRIVER
Han Xu38714fb2016-02-12 05:13:25 +00004611M: Han Xu <han.xu@nxp.com>
Han Xu4d8e2ce2015-01-16 03:29:17 +08004612L: linux-mtd@lists.infradead.org
4613S: Maintained
4614F: drivers/mtd/spi-nor/fsl-quadspi.c
4615
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03004616FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004617M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
4618M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004619L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03004620L: netdev@vger.kernel.org
4621S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07004622F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07004623F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03004624
Nimrod Andy63a0a00b92016-03-02 17:24:53 +08004625FREESCALE IMX / MXC FEC DRIVER
4626M: Fugang Duan <fugang.duan@nxp.com>
4627L: netdev@vger.kernel.org
4628S: Maintained
4629F: drivers/net/ethernet/freescale/fec_main.c
4630F: drivers/net/ethernet/freescale/fec_ptp.c
4631F: drivers/net/ethernet/freescale/fec.h
4632F: Documentation/devicetree/bindings/net/fsl-fec.txt
4633
Timur Tabid9e9d822008-04-24 08:45:26 +10004634FREESCALE QUICC ENGINE LIBRARY
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004635L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004636S: Orphan
Zhao Qiang7aa1aa62015-11-30 10:48:57 +08004637F: drivers/soc/fsl/qe/
4638F: include/soc/fsl/*qe*.h
4639F: include/soc/fsl/*ucc*.h
Timur Tabid9e9d822008-04-24 08:45:26 +10004640
Joe Perchesb55ef9292009-10-26 16:49:46 -07004641FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004642M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07004643L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004644L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07004645S: Maintained
Joe Perchesfaf2e1d2014-08-08 14:26:18 -07004646F: drivers/usb/gadget/udc/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07004647
Li Yangbeaf53b2007-05-25 13:54:02 +08004648FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004649M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08004650L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004651L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08004652S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07004653F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08004654
Claudiu Manoilabb1ed72015-10-23 11:42:01 +03004655FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
4656M: Claudiu Manoil <claudiu.manoil@freescale.com>
4657L: netdev@vger.kernel.org
4658S: Maintained
4659F: drivers/net/ethernet/freescale/gianfar*
4660X: drivers/net/ethernet/freescale/gianfar_ptp.c
4661F: Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
4662
Timur Tabid9e9d822008-04-24 08:45:26 +10004663FREESCALE QUICC ENGINE UCC UART DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004664M: Timur Tabi <timur@tabi.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004665L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004666S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004667F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10004668
4669FREESCALE SOC SOUND DRIVERS
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004670M: Timur Tabi <timur@tabi.org>
Mark Browndc859502014-08-07 10:47:24 +01004671M: Nicolin Chen <nicoleotsuka@gmail.com>
Xiubo Lib4b98292014-12-12 16:54:14 -08004672M: Xiubo Li <Xiubo.Lee@gmail.com>
Joe Perches93711662009-06-16 15:34:07 -07004673L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004674L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004675S: Maintained
Joe Perches69aefce2009-04-09 10:39:22 -07004676F: sound/soc/fsl/fsl*
Mark Browndc859502014-08-07 10:47:24 +01004677F: sound/soc/fsl/imx*
Joe Perches69aefce2009-04-09 10:39:22 -07004678F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10004679
J. German Rivera31c88962015-03-05 19:29:09 -06004680FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER
Joe Perches9c3646d2015-06-25 15:02:00 -07004681M: "J. German Rivera" <German.Rivera@freescale.com>
J. German Rivera31c88962015-03-05 19:29:09 -06004682L: linux-kernel@vger.kernel.org
4683S: Maintained
4684F: drivers/staging/fsl-mc/
4685
Linus Torvalds1da177e2005-04-16 15:20:36 -07004686FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004687M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004688W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
4689S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004690F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004691
Pavel Machek71038f52009-01-15 13:51:02 -08004692FREEZER
Rafael J. Wysocki49db1902013-10-09 01:47:53 +02004693M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Rafael J. Wysocki7fb06082014-03-20 03:34:47 +01004694M: Pavel Machek <pavel@ucw.cz>
WANG Congbf1c1382011-10-08 20:57:50 +02004695L: linux-pm@vger.kernel.org
Pavel Machek71038f52009-01-15 13:51:02 -08004696S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004697F: Documentation/power/freezing-of-tasks.txt
4698F: include/linux/freezer.h
4699F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08004700
Konrad Rzeszutek Wilk839a1f72012-04-16 17:06:35 -04004701FRONTSWAP API
4702M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4703L: linux-kernel@vger.kernel.org
4704S: Maintained
4705F: mm/frontswap.c
4706F: include/linux/frontswap.h
4707
David Howellsa5432f52009-04-20 15:46:45 +01004708FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07004709M: David Howells <dhowells@redhat.com>
Geert Uytterhoevene62d6e22015-11-12 11:46:33 +00004710L: linux-cachefs@redhat.com (moderated for non-subscribers)
David Howellsa5432f52009-04-20 15:46:45 +01004711S: Supported
4712F: Documentation/filesystems/caching/
4713F: fs/fscache/
4714F: include/linux/fscache*.h
4715
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09004716F2FS FILE SYSTEM
Jaegeuk Kim9b29d482014-05-30 08:20:08 +09004717M: Jaegeuk Kim <jaegeuk@kernel.org>
Jaegeuk Kimf6238a72014-05-31 01:00:49 +09004718M: Changman Lee <cm224.lee@samsung.com>
Chao Yu7b2a2462015-08-12 17:47:08 +08004719R: Chao Yu <chao2.yu@samsung.com>
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09004720L: linux-f2fs-devel@lists.sourceforge.net
4721W: http://en.wikipedia.org/wiki/F2FS
4722T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
4723S: Maintained
4724F: Documentation/filesystems/f2fs.txt
Jaegeuk Kim3bac3802014-01-09 21:00:06 +09004725F: Documentation/ABI/testing/sysfs-fs-f2fs
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09004726F: fs/f2fs/
4727F: include/linux/f2fs_fs.h
Chao Yu62d43ee2015-07-06 20:29:46 +08004728F: include/trace/events/f2fs.h
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09004729
David Howells5ab7ffe2007-04-10 15:10:45 +01004730FUJITSU FR-V (FRV) PORT
David Howells0cf03052016-01-20 10:29:00 +00004731S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004732F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004733
Jonathan Woithe20b93732008-06-11 10:14:56 +09304734FUJITSU LAPTOP EXTRAS
Jonathan Woithe409a3e92012-03-27 13:01:01 +10304735M: Jonathan Woithe <jwoithe@just42.net>
Matthew Garrettd0944852010-02-11 10:40:13 -05004736L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09304737S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004738F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09304739
Heungjun Kim4da621b2011-11-11 08:05:33 -03004740FUJITSU M-5MO LS CAMERA ISP DRIVER
4741M: Kyungmin Park <kyungmin.park@samsung.com>
4742M: Heungjun Kim <riverful.kim@samsung.com>
4743L: linux-media@vger.kernel.org
4744S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004745F: drivers/media/i2c/m5mols/
Mauro Carvalho Chehabb5dcee22015-11-10 12:01:44 -02004746F: include/media/i2c/m5mols.h
Heungjun Kim4da621b2011-11-11 08:05:33 -03004747
Robert Gerlach2d24c492012-01-18 14:26:22 +01004748FUJITSU TABLET EXTRAS
4749M: Robert Gerlach <khnz@gmx.de>
4750L: platform-driver-x86@vger.kernel.org
4751S: Maintained
4752F: drivers/platform/x86/fujitsu-tablet.c
4753
Miklos Szeredi04578f12005-09-09 13:10:22 -07004754FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07004755M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07004756L: fuse-devel@lists.sourceforge.net
4757W: http://fuse.sourceforge.net/
Miklos Szeredi0a30f612015-07-01 17:10:36 +02004758T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
Miklos Szeredi04578f12005-09-09 13:10:22 -07004759S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004760F: fs/fuse/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004761F: include/uapi/linux/fuse.h
Miklos Szeredi0a30f612015-07-01 17:10:36 +02004762F: Documentation/filesystems/fuse.txt
Miklos Szeredi04578f12005-09-09 13:10:22 -07004763
Linus Torvalds1da177e2005-04-16 15:20:36 -07004764FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07004765M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004766L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02004767S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07004768F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004769
Peter Oberparleiterd8e21622013-10-16 13:46:49 -07004770GCOV BASED KERNEL PROFILING
4771M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
4772S: Maintained
4773F: kernel/gcov/
4774F: Documentation/gcov.txt
4775
Linus Torvalds1da177e2005-04-16 15:20:36 -07004776GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004777M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004778L: linux-scsi@vger.kernel.org
4779W: http://www.icp-vortex.com/
4780S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004781F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004782
Jan Kiszka158daf12015-02-17 13:47:49 -08004783GDB KERNEL DEBUGGING HELPER SCRIPTS
4784M: Jan Kiszka <jan.kiszka@siemens.com>
4785S: Supported
4786F: scripts/gdb/
4787
Hans Verkuil3169a1c2012-11-23 07:11:58 -03004788GEMTEK FM RADIO RECEIVER DRIVER
4789M: Hans Verkuil <hverkuil@xs4all.nl>
4790L: linux-media@vger.kernel.org
4791T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02004792W: https://linuxtv.org
Hans Verkuil3169a1c2012-11-23 07:11:58 -03004793S: Maintained
4794F: drivers/media/radio/radio-gemtek*
4795
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02004796GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07004797M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02004798S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004799F: drivers/i2c/busses/i2c-gpio.c
4800F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02004801
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01004802GENERIC GPIO I2C MULTIPLEXER DRIVER
4803M: Peter Korsgaard <peter.korsgaard@barco.com>
4804L: linux-i2c@vger.kernel.org
4805S: Supported
Jean Delvaree7065e22012-04-28 15:32:06 +02004806F: drivers/i2c/muxes/i2c-mux-gpio.c
4807F: include/linux/i2c-mux-gpio.h
4808F: Documentation/i2c/muxes/i2c-mux-gpio
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01004809
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004810GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004811M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004812W: http://www.kernel.org/pub/linux/utils/net/hdlc/
4813S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004814F: drivers/net/wan/c101.c
4815F: drivers/net/wan/hd6457*
4816F: drivers/net/wan/hdlc*
4817F: drivers/net/wan/n2.c
4818F: drivers/net/wan/pc300too.c
4819F: drivers/net/wan/pci200syn.c
4820F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004821
Arnd Bergmann1527aab2009-06-14 22:46:16 +02004822GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07004823M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02004824L: linux-arch@vger.kernel.org
4825T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
4826S: Maintained
Joe Perches14430812013-09-11 14:23:50 -07004827F: include/asm-generic/
4828F: include/uapi/asm-generic/
Arnd Bergmann1527aab2009-06-14 22:46:16 +02004829
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +05304830GENERIC PHY FRAMEWORK
4831M: Kishon Vijay Abraham I <kishon@ti.com>
4832L: linux-kernel@vger.kernel.org
4833T: git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
4834S: Supported
4835F: drivers/phy/
4836F: include/linux/phy/
4837
Kevin Hilmaneea97ae2015-03-12 10:33:46 -07004838GENERIC PM DOMAINS
4839M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
4840M: Kevin Hilman <khilman@kernel.org>
4841M: Ulf Hansson <ulf.hansson@linaro.org>
4842L: linux-pm@vger.kernel.org
4843S: Supported
4844F: drivers/base/power/domain*.c
4845F: include/linux/pm_domain.h
4846
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03004847GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07004848M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03004849L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03004850S: Supported
4851F: drivers/uio/uio_pci_generic.c
4852
Joe Perchesf8f1ec72014-06-04 16:05:31 -07004853GET_MAINTAINER SCRIPT
4854M: Joe Perches <joe@perches.com>
4855S: Maintained
4856F: scripts/get_maintainer.pl
4857
Steven Whitehouse5be7b502006-04-28 11:27:32 -04004858GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004859M: Steven Whitehouse <swhiteho@redhat.com>
Bob Peterson28666d62015-02-13 11:23:11 -06004860M: Bob Peterson <rpeterso@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04004861L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04004862W: http://sources.redhat.com/cluster/
Bob Peterson28666d62015-02-13 11:23:11 -06004863T: git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04004864S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004865F: Documentation/filesystems/gfs2*.txt
4866F: fs/gfs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004867F: include/uapi/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04004868
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08004869GIGASET ISDN DRIVERS
Tilman Schmidt6b096fd2015-05-02 19:23:22 +02004870M: Paul Bolle <pebolle@tiscali.nl>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08004871L: gigaset307x-common@lists.sourceforge.net
4872W: http://gigaset307x.sourceforge.net/
Tilman Schmidt6b096fd2015-05-02 19:23:22 +02004873S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004874F: Documentation/isdn/README.gigaset
4875F: drivers/isdn/gigaset/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004876F: include/uapi/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08004877
Joe Perches7eea35f2014-07-30 05:09:23 -03004878GO7007 MPEG CODEC
4879M: Hans Verkuil <hans.verkuil@cisco.com>
4880L: linux-media@vger.kernel.org
4881S: Maintained
4882F: drivers/media/usb/go7007/
4883
Bastien Noceraca96ea82014-10-31 09:26:16 -07004884GOODIX TOUCHSCREEN
4885M: Bastien Nocera <hadess@hadess.net>
4886L: linux-input@vger.kernel.org
4887S: Maintained
4888F: drivers/input/touchscreen/goodix.c
4889
Grant Likelya0dc00b2011-02-12 01:48:14 -07004890GPIO SUBSYSTEM
Linus Walleije4651a92012-08-06 09:52:52 +02004891M: Linus Walleij <linus.walleij@linaro.org>
Linus Walleijf2fa75c2013-12-10 09:43:09 +01004892M: Alexandre Courbot <gnurou@gmail.com>
Alexandre Courbotd15b7172013-05-26 11:50:54 +09004893L: linux-gpio@vger.kernel.org
Linus Walleijf2fa75c2013-12-10 09:43:09 +01004894T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
4895S: Maintained
4896F: Documentation/gpio/
Linus Walleij40c159b2015-10-22 10:21:57 +02004897F: Documentation/ABI/testing/gpio-cdev
Linus Walleijfe950462015-10-22 09:58:34 +02004898F: Documentation/ABI/obsolete/sysfs-gpio
Grant Likelya0dc00b2011-02-12 01:48:14 -07004899F: drivers/gpio/
Alexandre Courbotbdc6e952014-08-04 13:06:58 +09004900F: include/linux/gpio/
4901F: include/linux/gpio.h
Yang Bai9b692342012-10-04 17:12:35 -07004902F: include/asm-generic/gpio.h
Linus Walleij3c702e92015-10-21 15:29:53 +02004903F: include/uapi/linux/gpio.h
Linus Walleij6d591c42015-10-21 15:45:54 +02004904F: tools/gpio/
Grant Likelya0dc00b2011-02-12 01:48:14 -07004905
Harry Wei71a6d0a2011-05-11 15:13:33 -07004906GRE DEMULTIPLEXER DRIVER
4907M: Dmitry Kozlov <xeb@mail.ru>
4908L: netdev@vger.kernel.org
4909S: Maintained
Joe Perches11c26772013-09-11 14:23:48 -07004910F: net/ipv4/gre_demux.c
4911F: net/ipv4/gre_offload.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07004912F: include/net/gre.h
4913
Kristoffer Glembod4c41132010-02-15 03:33:44 +00004914GRETH 10/100/1G Ethernet MAC device driver
4915M: Kristoffer Glembo <kristoffer@gaisler.com>
4916L: netdev@vger.kernel.org
4917S: Maintained
Joe Perchesa31a96a2012-01-10 15:08:58 -08004918F: drivers/net/ethernet/aeroflex/
Kristoffer Glembod4c41132010-02-15 03:33:44 +00004919
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004920GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004921M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004922L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004923T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004924S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004925F: drivers/media/usb/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004926
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03004927GSPCA GL860 SUBDRIVER
4928M: Olivier Lorin <o.lorin@laposte.net>
4929L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004930T: git git://linuxtv.org/media_tree.git
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03004931S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004932F: drivers/media/usb/gspca/gl860/
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03004933
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004934GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004935M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004936L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004937T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004938S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004939F: drivers/media/usb/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004940
4941GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004942M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004943L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004944T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004945S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004946F: drivers/media/usb/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004947
Brian Johnson261982f2009-07-19 15:58:56 -03004948GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03004949M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03004950L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004951T: git git://linuxtv.org/media_tree.git
Brian Johnson261982f2009-07-19 15:58:56 -03004952S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004953F: drivers/media/usb/gspca/sn9c20x.c
Brian Johnson261982f2009-07-19 15:58:56 -03004954
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004955GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004956M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004957L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004958T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004959S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004960F: drivers/media/usb/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004961
4962GSPCA USB WEBCAM DRIVER
Jean-Francois Moinefc3f9062012-05-24 07:29:41 -03004963M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004964L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004965T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004966S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004967F: drivers/media/usb/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004968
Davidlohr Bueso584ec972013-12-18 17:08:55 -08004969GUID PARTITION TABLE (GPT)
Andrew Morton4f973c62015-06-25 15:02:05 -07004970M: Davidlohr Bueso <dave@stgolabs.net>
Davidlohr Bueso584ec972013-12-18 17:08:55 -08004971L: linux-efi@vger.kernel.org
4972S: Maintained
4973F: block/partitions/efi.*
4974
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03004975STK1160 USB VIDEO CAPTURE DRIVER
Ezequiel Garcia3259aa52015-03-10 11:43:20 -03004976M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03004977L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004978T: git git://linuxtv.org/media_tree.git
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03004979S: Maintained
4980F: drivers/media/usb/stk1160/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004981
Yoshinori Sato4e456b82015-03-11 01:41:38 +09004982H8/300 ARCHITECTURE
4983M: Yoshinori Sato <ysato@users.sourceforge.jp>
Geert Uytterhoevenb992c762015-07-17 16:23:55 -07004984L: uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
Yoshinori Sato4e456b82015-03-11 01:41:38 +09004985W: http://uclinux-h8.sourceforge.jp
4986T: git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
4987S: Maintained
4988F: arch/h8300/
4989F: drivers/clocksource/h8300_*.c
4990F: drivers/clk/h8300/
4991F: drivers/irqchip/irq-renesas-h8*.c
4992
Harry Wei71a6d0a2011-05-11 15:13:33 -07004993HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
4994M: Frank Seidel <frank@f-seidel.de>
4995L: platform-driver-x86@vger.kernel.org
4996W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
4997S: Maintained
4998F: drivers/platform/x86/hdaps.c
4999
Hans Verkuil48fc9e22013-04-11 03:36:49 -03005000HDPVR USB VIDEO ENCODER DRIVER
5001M: Hans Verkuil <hverkuil@xs4all.nl>
5002L: linux-media@vger.kernel.org
5003T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02005004W: https://linuxtv.org
Hans Verkuil48fc9e22013-04-11 03:36:49 -03005005S: Odd Fixes
Joe Perches14430812013-09-11 14:23:50 -07005006F: drivers/media/usb/hdpvr/
Hans Verkuil48fc9e22013-04-11 03:36:49 -03005007
Harry Wei71a6d0a2011-05-11 15:13:33 -07005008HWPOISON MEMORY FAILURE HANDLING
Andi Kleenf9625c42014-06-04 16:05:32 -07005009M: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
Harry Wei71a6d0a2011-05-11 15:13:33 -07005010L: linux-mm@kvack.org
Harry Wei71a6d0a2011-05-11 15:13:33 -07005011S: Maintained
5012F: mm/memory-failure.c
5013F: mm/hwpoison-inject.c
5014
5015HYPERVISOR VIRTUAL CONSOLE DRIVER
5016L: linuxppc-dev@lists.ozlabs.org
5017S: Odd Fixes
5018F: drivers/tty/hvc/
5019
Antti Palosaarie5ab1472014-09-10 04:20:15 -03005020HACKRF MEDIA DRIVER
5021M: Antti Palosaari <crope@iki.fi>
5022L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02005023W: https://linuxtv.org
Antti Palosaarie5ab1472014-09-10 04:20:15 -03005024W: http://palosaari.fi/linux/
5025Q: http://patchwork.linuxtv.org/project/linux-media/list/
5026T: git git://linuxtv.org/anttip/media_tree.git
5027S: Maintained
5028F: drivers/media/usb/hackrf/
5029
Michael Buesch844dd052006-06-26 00:24:59 -07005030HARDWARE MONITORING
Jiri Slabyd8130622015-07-17 16:23:20 -07005031M: Jean Delvare <jdelvare@suse.com>
Guenter Roeckca462082012-06-01 23:28:23 -07005032M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07005033L: linux-hwmon@vger.kernel.org
5034W: http://hwmon.wiki.kernel.org/
Jean Delvarea94ef4e2015-04-27 16:37:39 +02005035T: quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07005036T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02005037S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01005038F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07005039F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01005040F: include/linux/hwmon*.h
Robert Love860e1d62005-08-31 23:57:59 -04005041
5042HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07005043M: Matt Mackall <mpm@selenic.com>
5044M: Herbert Xu <herbert@gondor.apana.org.au>
Michael S. Tsirkin3eda71672015-01-16 09:16:00 +02005045L: linux-crypto@vger.kernel.org
Joe Perchesc0d07872009-09-23 15:57:17 -07005046S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07005047F: Documentation/hw_random.txt
5048F: drivers/char/hw_random/
5049F: include/linux/hw_random.h
Robert Love860e1d62005-08-31 23:57:59 -04005050
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03005051HARDWARE SPINLOCK CORE
5052M: Ohad Ben-Cohen <ohad@wizery.com>
Bjorn Andersson69ae9892016-02-13 17:35:19 -08005053M: Bjorn Andersson <bjorn.andersson@linaro.org>
Bjorn Anderssond7586842016-03-21 22:43:54 -07005054L: linux-remoteproc@vger.kernel.org
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03005055S: Maintained
Fengguang Wu9f273c22016-01-20 15:03:25 -08005056T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/hwspinlock.git
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03005057F: Documentation/hwspinlock.txt
5058F: drivers/hwspinlock/hwspinlock_*
5059F: include/linux/hwspinlock.h
5060
Linus Torvalds1da177e2005-04-16 15:20:36 -07005061HARMONY SOUND DRIVER
Kyle McMartinac6aecb2007-12-03 22:04:34 +00005062L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005063S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005064F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005065
Antti Palosaari91952bc2012-10-01 12:28:46 -03005066HD29L2 MEDIA DRIVER
5067M: Antti Palosaari <crope@iki.fi>
5068L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02005069W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03005070W: http://palosaari.fi/linux/
5071Q: http://patchwork.linuxtv.org/project/linux-media/list/
5072T: git git://linuxtv.org/anttip/media_tree.git
5073S: Maintained
5074F: drivers/media/dvb-frontends/hd29l2*
5075
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05005076HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Don Bracea0a268a2016-02-23 15:21:44 -06005077M: Don Brace <don.brace@microsemi.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05005078L: iss_storagedev@hp.com
Don Bracea0a268a2016-02-23 15:21:44 -06005079L: esc.storagedev@microsemi.com
Don Brace693373d2014-10-15 22:32:41 +00005080L: linux-scsi@vger.kernel.org
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05005081S: Supported
5082F: Documentation/scsi/hpsa.txt
5083F: drivers/scsi/hpsa*.[ch]
5084F: include/linux/cciss*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005085F: include/uapi/linux/cciss*.h
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05005086
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005087HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Don Brace516fdce2016-03-08 16:05:51 -06005088M: Don Brace <don.brace@microsemi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005089L: iss_storagedev@hp.com
Don Brace516fdce2016-03-08 16:05:51 -06005090L: esc.storagedev@microsemi.com
Don Brace693373d2014-10-15 22:32:41 +00005091L: linux-scsi@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005092S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005093F: Documentation/blockdev/cciss.txt
5094F: drivers/block/cciss*
5095F: include/linux/cciss_ioctl.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005096F: include/uapi/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005097
Linus Torvalds1da177e2005-04-16 15:20:36 -07005098HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02005099L: linux-fsdevel@vger.kernel.org
5100S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005101F: Documentation/filesystems/hfs.txt
5102F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005103
Geert Uytterhoevenef575f42014-01-23 15:54:21 -08005104HFSPLUS FILESYSTEM
5105L: linux-fsdevel@vger.kernel.org
5106S: Orphan
5107F: Documentation/filesystems/hfsplus.txt
5108F: fs/hfsplus/
5109
Linus Torvalds1da177e2005-04-16 15:20:36 -07005110HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005111M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005112L: linux-nvidia@lists.surfsouth.com
5113W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
5114S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09005115F: drivers/video/fbdev/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005116
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005117HIBERNATION (aka Software Suspend, aka swsusp)
Rafael J. Wysocki49db1902013-10-09 01:47:53 +02005118M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Rafael J. Wysocki7fb06082014-03-20 03:34:47 +01005119M: Pavel Machek <pavel@ucw.cz>
WANG Congbf1c1382011-10-08 20:57:50 +02005120L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005121S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005122F: arch/x86/power/
5123F: drivers/base/power/
5124F: kernel/power/
5125F: include/linux/suspend.h
5126F: include/linux/freezer.h
5127F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07005128F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005129
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01005130HID CORE LAYER
Jiri Kosinae5f64502015-08-09 09:11:34 +02005131M: Jiri Kosina <jikos@kernel.org>
Jiri Kosina406df152015-11-20 10:16:06 +01005132R: Benjamin Tissoires <benjamin.tissoires@redhat.com>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04005133L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005134T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01005135S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005136F: drivers/hid/
5137F: include/linux/hid*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005138F: include/uapi/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01005139
Srinivas Pandruvada30ee72f2015-05-15 11:35:38 -07005140HID SENSOR HUB DRIVERS
Jiri Kosinae5f64502015-08-09 09:11:34 +02005141M: Jiri Kosina <jikos@kernel.org>
Srinivas Pandruvada30ee72f2015-05-15 11:35:38 -07005142M: Jonathan Cameron <jic23@kernel.org>
5143M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
5144L: linux-input@vger.kernel.org
5145L: linux-iio@vger.kernel.org
5146S: Maintained
5147F: Documentation/hid/hid-sensor*
5148F: drivers/hid/hid-sensor-*
5149F: drivers/iio/*/hid-*
5150F: include/linux/hid-sensor-*
5151
Ingo Molnar38bed542007-02-22 09:09:34 +01005152HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07005153M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar981c3a42014-01-21 10:59:20 +01005154L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005155T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Ingo Molnar38bed542007-02-22 09:09:34 +01005156S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005157F: Documentation/timers/
Thomas Gleixner5cee9642014-06-22 12:06:40 +02005158F: kernel/time/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01005159F: kernel/time/clockevents.c
5160F: kernel/time/tick*.*
5161F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07005162F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07005163F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01005164
Linus Torvalds1da177e2005-04-16 15:20:36 -07005165HIGH-SPEED SCC DRIVER FOR AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -07005166L: linux-hams@vger.kernel.org
Uwe Kleine-König8b64f2a2012-05-29 15:07:11 -07005167S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005168F: drivers/net/hamradio/dmascc.c
5169F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005170
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08005171HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005172M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08005173W: http://www.highpoint-tech.com
5174S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005175F: Documentation/scsi/hptiop.txt
5176F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08005177
Linus Torvalds1da177e2005-04-16 15:20:36 -07005178HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07005179M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005180L: linux-hippi@sunsite.dk
5181S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005182F: include/linux/hippidevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005183F: include/uapi/linux/if_hippi.h
Joe Perches679655d2009-04-07 20:44:32 -07005184F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07005185F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005186
John Garry16c6c252015-11-18 00:50:59 +08005187HISILICON SAS Controller
5188M: John Garry <john.garry@huawei.com>
5189W: http://www.hisilicon.com
5190S: Supported
5191F: drivers/scsi/hisi_sas/
5192F: Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
5193
Jouni Malinenff1d2762005-05-12 22:54:16 -04005194HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005195M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07005196L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07005197L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04005198W: http://hostap.epitest.fi/
5199S: Maintained
Kalle Valoeb4f98d2015-11-18 09:42:58 +02005200F: drivers/net/wireless/intersil/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04005201
Carlos Corbachodd8cd772008-02-05 02:17:15 +00005202HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05005203L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01005204S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005205F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00005206
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005207HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07005208M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005209S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07005210F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005211
Joe Perches7d2c86b2009-04-07 20:59:01 -07005212HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07005213M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08005214S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005215F: Documentation/timers/hpet.txt
5216F: drivers/char/hpet.c
5217F: include/linux/hpet.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005218F: include/uapi/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08005219
Jiri Kosinae07b5d72010-03-18 10:59:57 +01005220HPET: x86
Joe Perches9e06f632014-04-03 14:48:53 -07005221S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005222F: arch/x86/kernel/hpet.c
5223F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08005224
Linus Torvalds1da177e2005-04-16 15:20:36 -07005225HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005226M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005227W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
5228S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005229F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005230
Sebastian Reichel3441cde2013-11-27 10:17:22 +01005231HSI SUBSYSTEM
Sebastian Reichel56459ea2014-03-28 19:57:59 +01005232M: Sebastian Reichel <sre@kernel.org>
5233T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
Sebastian Reichel3441cde2013-11-27 10:17:22 +01005234S: Maintained
5235F: Documentation/ABI/testing/sysfs-bus-hsi
Sebastian Reichel56459ea2014-03-28 19:57:59 +01005236F: Documentation/hsi.txt
Sebastian Reichel3441cde2013-11-27 10:17:22 +01005237F: drivers/hsi/
5238F: include/linux/hsi/
5239F: include/uapi/linux/hsi/
5240
Joe Perches7d2c86b2009-04-07 20:59:01 -07005241HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005242M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00005243W: http://www.pharscape.org
5244S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005245F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00005246
Arvid Brodin19990e22013-11-29 23:36:00 +01005247HSR NETWORK PROTOCOL
5248M: Arvid Brodin <arvid.brodin@alten.se>
5249L: netdev@vger.kernel.org
5250S: Maintained
5251F: net/hsr/
5252
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04005253HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005254M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04005255L: linux-input@vger.kernel.org
5256S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005257F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04005258
Linus Torvalds1da177e2005-04-16 15:20:36 -07005259HUGETLB FILESYSTEM
Nadia Yvette Chambers6d49e352012-12-06 10:39:54 +01005260M: Nadia Yvette Chambers <nyc@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005261S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005262F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005263
K. Y. Srinivasan05183182011-12-01 14:31:30 -08005264Hyper-V CORE AND DRIVERS
Joe Perches9c3646d2015-06-25 15:02:00 -07005265M: "K. Y. Srinivasan" <kys@microsoft.com>
K. Y. Srinivasan05183182011-12-01 14:31:30 -08005266M: Haiyang Zhang <haiyangz@microsoft.com>
5267L: devel@linuxdriverproject.org
5268S: Maintained
Haiyang Zhanga4162742013-05-09 14:34:55 -07005269F: arch/x86/include/asm/mshyperv.h
5270F: arch/x86/include/uapi/asm/hyperv.h
5271F: arch/x86/kernel/cpu/mshyperv.c
K. Y. Srinivasan05183182011-12-01 14:31:30 -08005272F: drivers/hid/hid-hyperv.c
Haiyang Zhanga4162742013-05-09 14:34:55 -07005273F: drivers/hv/
Haiyang Zhangf92ca802013-11-21 14:32:10 -08005274F: drivers/input/serio/hyperv-keyboard.c
Jake Oshins4daace02016-02-16 21:56:23 +00005275F: drivers/pci/host/pci-hyperv.c
K. Y. Srinivasan05183182011-12-01 14:31:30 -08005276F: drivers/net/hyperv/
Haiyang Zhanga4162742013-05-09 14:34:55 -07005277F: drivers/scsi/storvsc_drv.c
Jingoo Han8a61f012014-07-01 15:36:01 +09005278F: drivers/video/fbdev/hyperv_fb.c
Haiyang Zhanga4162742013-05-09 14:34:55 -07005279F: include/linux/hyperv.h
5280F: tools/hv/
Dexuan Cui54bf7252015-08-05 00:52:45 -07005281F: Documentation/ABI/stable/sysfs-bus-vmbus
K. Y. Srinivasan05183182011-12-01 14:31:30 -08005282
Peter Rosin7724fd02016-03-14 23:52:43 +01005283I2C MUXES
5284M: Peter Rosin <peda@axentia.se>
5285L: linux-i2c@vger.kernel.org
5286S: Maintained
5287F: Documentation/i2c/muxes/
5288F: Documentation/devicetree/bindings/i2c/i2c-mux*
5289F: drivers/i2c/i2c-mux.c
5290F: drivers/i2c/muxes/
5291F: include/linux/i2c-mux.h
5292
Jean Delvared85c8a6a2012-11-13 22:27:19 +01005293I2C OVER PARALLEL PORT
Jiri Slabyd8130622015-07-17 16:23:20 -07005294M: Jean Delvare <jdelvare@suse.com>
Jean Delvared85c8a6a2012-11-13 22:27:19 +01005295L: linux-i2c@vger.kernel.org
5296S: Maintained
5297F: Documentation/i2c/busses/i2c-parport
5298F: Documentation/i2c/busses/i2c-parport-light
5299F: drivers/i2c/busses/i2c-parport.c
5300F: drivers/i2c/busses/i2c-parport-light.c
5301
5302I2C/SMBUS CONTROLLER DRIVERS FOR PC
Jiri Slabyd8130622015-07-17 16:23:20 -07005303M: Jean Delvare <jdelvare@suse.com>
Jean Delvared85c8a6a2012-11-13 22:27:19 +01005304L: linux-i2c@vger.kernel.org
5305S: Maintained
5306F: Documentation/i2c/busses/i2c-ali1535
5307F: Documentation/i2c/busses/i2c-ali1563
5308F: Documentation/i2c/busses/i2c-ali15x3
5309F: Documentation/i2c/busses/i2c-amd756
5310F: Documentation/i2c/busses/i2c-amd8111
5311F: Documentation/i2c/busses/i2c-i801
5312F: Documentation/i2c/busses/i2c-nforce2
5313F: Documentation/i2c/busses/i2c-piix4
5314F: Documentation/i2c/busses/i2c-sis5595
5315F: Documentation/i2c/busses/i2c-sis630
5316F: Documentation/i2c/busses/i2c-sis96x
5317F: Documentation/i2c/busses/i2c-via
5318F: Documentation/i2c/busses/i2c-viapro
5319F: drivers/i2c/busses/i2c-ali1535.c
5320F: drivers/i2c/busses/i2c-ali1563.c
5321F: drivers/i2c/busses/i2c-ali15x3.c
5322F: drivers/i2c/busses/i2c-amd756.c
5323F: drivers/i2c/busses/i2c-amd756-s4882.c
5324F: drivers/i2c/busses/i2c-amd8111.c
5325F: drivers/i2c/busses/i2c-i801.c
5326F: drivers/i2c/busses/i2c-isch.c
5327F: drivers/i2c/busses/i2c-nforce2.c
5328F: drivers/i2c/busses/i2c-nforce2-s4985.c
5329F: drivers/i2c/busses/i2c-piix4.c
5330F: drivers/i2c/busses/i2c-sis5595.c
5331F: drivers/i2c/busses/i2c-sis630.c
5332F: drivers/i2c/busses/i2c-sis96x.c
5333F: drivers/i2c/busses/i2c-via.c
5334F: drivers/i2c/busses/i2c-viapro.c
5335
Neil Hormancb7f07a2013-02-10 11:59:03 -05005336I2C/SMBUS ISMT DRIVER
5337M: Seth Heasley <seth.heasley@intel.com>
5338M: Neil Horman <nhorman@tuxdriver.com>
5339L: linux-i2c@vger.kernel.org
5340F: drivers/i2c/busses/i2c-ismt.c
5341F: Documentation/i2c/busses/i2c-ismt
5342
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005343I2C/SMBUS STUB DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07005344M: Jean Delvare <jdelvare@suse.com>
Jean Delvare846557d2008-10-30 15:55:47 +01005345L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005346S: Maintained
Cesar Eduardo Barros8547a5b2012-12-16 21:11:54 +01005347F: drivers/i2c/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005348
Jean Delvare5b543962005-08-15 19:51:02 +02005349I2C SUBSYSTEM
Wolfram Sang14d77c42013-02-08 20:54:40 +01005350M: Wolfram Sang <wsa@the-dreams.de>
Jean Delvare846557d2008-10-30 15:55:47 +01005351L: linux-i2c@vger.kernel.org
Wolfram Sang9d4ea272014-04-02 20:25:59 +02005352W: https://i2c.wiki.kernel.org/
5353Q: https://patchwork.ozlabs.org/project/linux-i2c/list/
Wolfram Sang14d77c42013-02-08 20:54:40 +01005354T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005355S: Maintained
Wolfram Sang40ed1b42014-12-08 10:53:13 +01005356F: Documentation/devicetree/bindings/i2c/
Joe Perches679655d2009-04-07 20:44:32 -07005357F: Documentation/i2c/
5358F: drivers/i2c/
Wolfram Sang630bc462015-10-29 08:25:48 +01005359F: drivers/i2c/*/
Joe Perches679655d2009-04-07 20:44:32 -07005360F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01005361F: include/linux/i2c-*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005362F: include/uapi/linux/i2c.h
5363F: include/uapi/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005364
Wolfram Sang4560d672014-08-19 10:08:35 -05005365I2C ACPI SUPPORT
5366M: Mika Westerberg <mika.westerberg@linux.intel.com>
5367L: linux-i2c@vger.kernel.org
5368L: linux-acpi@vger.kernel.org
5369S: Maintained
Wolfram Sang4560d672014-08-19 10:08:35 -05005370
Jean Delvared85c8a6a2012-11-13 22:27:19 +01005371I2C-TAOS-EVM DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07005372M: Jean Delvare <jdelvare@suse.com>
Jean Delvared85c8a6a2012-11-13 22:27:19 +01005373L: linux-i2c@vger.kernel.org
5374S: Maintained
5375F: Documentation/i2c/busses/i2c-taos-evm
5376F: drivers/i2c/busses/i2c-taos-evm.c
5377
Till Harbaume8c76ee2007-05-01 23:26:35 +02005378I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005379M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01005380L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07005381W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02005382S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005383F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02005384
Linus Torvalds1da177e2005-04-16 15:20:36 -07005385i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07005386M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005387S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005388F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005389
5390i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07005391M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07005392T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005393S: Maintained
5394
Linus Torvalds1da177e2005-04-16 15:20:36 -07005395IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07005396M: Tony Luck <tony.luck@intel.com>
5397M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005398L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07005399T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005400S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005401F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005402
Leonidas Da Silva Barbosa4cd38752015-08-08 18:29:27 -03005403IBM Power VMX Cryptographic instructions
5404M: Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
Paulo Flabiano Smorigo5cd01fe2015-08-10 16:14:17 -03005405M: Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
Leonidas Da Silva Barbosa4cd38752015-08-08 18:29:27 -03005406L: linux-crypto@vger.kernel.org
5407S: Supported
5408F: drivers/crypto/vmx/Makefile
5409F: drivers/crypto/vmx/Kconfig
5410F: drivers/crypto/vmx/vmx.c
5411F: drivers/crypto/vmx/aes*
5412F: drivers/crypto/vmx/ghash*
5413F: drivers/crypto/vmx/ppc-xlate.pl
5414
Kent Yoder956c2032012-09-07 04:17:01 +08005415IBM Power in-Nest Crypto Acceleration
Leonidas Da Silva Barbosa4cd38752015-08-08 18:29:27 -03005416M: Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
Paulo Flabiano Smorigo5cd01fe2015-08-10 16:14:17 -03005417M: Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
Kent Yoder956c2032012-09-07 04:17:01 +08005418L: linux-crypto@vger.kernel.org
5419S: Supported
Dan Streetman28bceea2015-06-18 12:28:32 -04005420F: drivers/crypto/nx/Makefile
5421F: drivers/crypto/nx/Kconfig
5422F: drivers/crypto/nx/nx-aes*
5423F: drivers/crypto/nx/nx-sha*
5424F: drivers/crypto/nx/nx.*
5425F: drivers/crypto/nx/nx_csbcpb.h
5426F: drivers/crypto/nx/nx_debugfs.h
Kent Yoder956c2032012-09-07 04:17:01 +08005427
Seth Jennings0e16aaf2012-07-19 09:42:40 -05005428IBM Power 842 compression accelerator
Dan Streetman41656aa2015-07-29 19:50:46 -04005429M: Dan Streetman <ddstreet@ieee.org>
Seth Jennings0e16aaf2012-07-19 09:42:40 -05005430S: Supported
Dan Streetman28bceea2015-06-18 12:28:32 -04005431F: drivers/crypto/nx/Makefile
5432F: drivers/crypto/nx/Kconfig
Dan Streetman7011a122015-05-07 13:49:17 -04005433F: drivers/crypto/nx/nx-842*
Dan Streetman2da572c2015-05-07 13:49:14 -04005434F: include/linux/sw842.h
Dan Streetman2062c5b2015-05-07 13:49:15 -04005435F: crypto/842.c
Dan Streetman2da572c2015-05-07 13:49:14 -04005436F: lib/842/
Seth Jennings0e16aaf2012-07-19 09:42:40 -05005437
Linus Torvalds1da177e2005-04-16 15:20:36 -07005438IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07005439M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005440S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005441F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005442
Santiago Leon9d348af2010-09-03 18:29:53 +00005443IBM Power Virtual Ethernet Device Driver
Thomas Falconeddd63a2015-01-09 14:29:40 -06005444M: Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
Santiago Leon9d348af2010-09-03 18:29:53 +00005445L: netdev@vger.kernel.org
5446S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07005447F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00005448
Thomas Falcon032c5e82015-12-21 11:26:06 -06005449IBM Power SRIOV Virtual NIC Device Driver
5450M: Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5451M: John Allen <jallen@linux.vnet.ibm.com>
5452L: netdev@vger.kernel.org
5453S: Supported
5454F: drivers/net/ethernet/ibm/ibmvnic.*
5455
Nathan Fontenote6babec2014-04-09 13:32:06 -05005456IBM Power Virtual SCSI Device Drivers
Tyrel Datwylerbcbde522015-01-12 16:31:34 -08005457M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
Robert Jennings4b7652c2012-07-31 12:34:36 -05005458L: linux-scsi@vger.kernel.org
5459S: Supported
Nathan Fontenote6babec2014-04-09 13:32:06 -05005460F: drivers/scsi/ibmvscsi/ibmvscsi*
5461F: drivers/scsi/ibmvscsi/viosrp.h
5462
5463IBM Power Virtual FC Device Drivers
Tyrel Datwyler44b4dad2015-01-12 16:31:35 -08005464M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
Nathan Fontenote6babec2014-04-09 13:32:06 -05005465L: linux-scsi@vger.kernel.org
5466S: Supported
5467F: drivers/scsi/ibmvscsi/ibmvfc*
Robert Jennings4b7652c2012-07-31 12:34:36 -05005468
Linus Torvalds1da177e2005-04-16 15:20:36 -07005469IBM ServeRAID RAID DRIVER
Michael Opdenackerf9213e72014-08-08 14:23:50 -07005470S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005471F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005472
Peter Tyser6ed9f9c2012-04-18 09:48:24 -05005473ICH LPC AND GPIO DRIVER
5474M: Peter Tyser <ptyser@xes-inc.com>
5475S: Maintained
5476F: drivers/mfd/lpc_ich.c
5477F: drivers/gpio/gpio-ich.c
5478
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01005479IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005480M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005481L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005482Q: http://patchwork.ozlabs.org/project/linux-ide/list/
Joe Perches08deed12012-03-23 15:01:57 -07005483T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005484S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005485F: Documentation/ide/
5486F: drivers/ide/
5487F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005488
Ike Panhc6cb8c132011-08-25 22:28:45 +08005489IDEAPAD LAPTOP EXTRAS DRIVER
5490M: Ike Panhc <ike.pan@canonical.com>
5491L: platform-driver-x86@vger.kernel.org
5492W: http://launchpad.net/ideapad-laptop
5493S: Maintained
5494F: drivers/platform/x86/ideapad-laptop.c
5495
Andrey Moiseev1ea4c162013-08-25 22:51:15 -07005496IDEAPAD LAPTOP SLIDEBAR DRIVER
5497M: Andrey Moiseev <o2g.org.ru@gmail.com>
5498L: linux-input@vger.kernel.org
5499W: https://github.com/o2genum/ideapad-slidebar
5500S: Maintained
5501F: drivers/input/misc/ideapad_slidebar.c
5502
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02005503IDE/ATAPI DRIVERS
Borislav Petkov487ba8e2012-10-29 18:40:10 +01005504M: Borislav Petkov <bp@alien8.de>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01005505L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01005506S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005507F: Documentation/cdrom/ide-cd
5508F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005509
Andy Henroid27471fd2008-10-09 11:45:22 -07005510IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07005511M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02005512L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07005513S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005514F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07005515
Sergey Lapin02cf2282009-06-08 12:18:50 +00005516IEEE 802.15.4 SUBSYSTEM
Alexander Aringaff3eaa2016-02-19 09:59:10 +01005517M: Alexander Aring <aar@pengutronix.de>
Varka Bhadramebef9c12014-08-08 17:32:45 +05305518L: linux-wpan@vger.kernel.org
Alexander Aringaff3eaa2016-02-19 09:59:10 +01005519W: http://wpan.cakelab.org/
5520T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
5521T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00005522S: Maintained
5523F: net/ieee802154/
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00005524F: net/mac802154/
Cesar Eduardo Barros251741b2013-01-04 15:35:30 -08005525F: drivers/net/ieee802154/
Alexander Aring580947d2014-10-25 09:41:05 +02005526F: include/linux/nl802154.h
5527F: include/linux/ieee802154.h
5528F: include/net/nl802154.h
5529F: include/net/mac802154.h
5530F: include/net/af_ieee802154.h
5531F: include/net/cfg802154.h
5532F: include/net/ieee802154_netdev.h
Varka Bhadramebef9c12014-08-08 17:32:45 +05305533F: Documentation/networking/ieee802154.txt
Sergey Lapin02cf2282009-06-08 12:18:50 +00005534
Sean Youngb1c97192014-10-23 17:58:22 -03005535IGORPLUG-USB IR RECEIVER
5536M: Sean Young <sean@mess.org>
5537L: linux-media@vger.kernel.org
5538S: Maintained
5539F: drivers/media/rc/igorplugusb.c
5540
Sean Young40ad4a32012-11-19 10:32:53 -03005541IGUANAWORKS USB IR TRANSCEIVER
5542M: Sean Young <sean@mess.org>
5543L: linux-media@vger.kernel.org
5544S: Maintained
5545F: drivers/media/rc/iguanair.c
5546
Ameya Palande9545f862012-01-10 09:00:58 -08005547IIO SUBSYSTEM AND DRIVERS
Sachin Kamat030a13d2013-09-11 11:00:00 +01005548M: Jonathan Cameron <jic23@kernel.org>
Lars-Peter Clausenf0d61162014-08-18 09:29:00 +01005549R: Hartmut Knaack <knaack.h@gmx.de>
5550R: Lars-Peter Clausen <lars@metafoo.de>
5551R: Peter Meerwald <pmeerw@pmeerw.net>
Ameya Palande9545f862012-01-10 09:00:58 -08005552L: linux-iio@vger.kernel.org
5553S: Maintained
Lars-Peter Clausen03e7c252012-04-26 13:46:42 +02005554F: drivers/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08005555F: drivers/staging/iio/
Daniel Baluta8fe671f2014-11-13 15:19:47 -08005556F: include/linux/iio/
Roberta Dobrescu817020c2015-02-26 10:49:25 +02005557F: tools/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08005558
Stanislaw Gruszka65519262011-01-08 15:19:40 +01005559IKANOS/ADI EAGLE ADSL USB DRIVER
5560M: Matthieu Castet <castet.matthieu@free.fr>
5561M: Stanislaw Gruszka <stf_xl@wp.pl>
5562S: Maintained
5563F: drivers/usb/atm/ueagle-atm.c
5564
Guenter Roecke89ab512013-03-08 08:13:09 -08005565INA209 HARDWARE MONITOR DRIVER
5566M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07005567L: linux-hwmon@vger.kernel.org
Guenter Roecke89ab512013-03-08 08:13:09 -08005568S: Maintained
5569F: Documentation/hwmon/ina209
5570F: Documentation/devicetree/bindings/i2c/ina209.txt
5571F: drivers/hwmon/ina209.c
5572
5573INA2XX HARDWARE MONITOR DRIVER
5574M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07005575L: linux-hwmon@vger.kernel.org
Guenter Roecke89ab512013-03-08 08:13:09 -08005576S: Maintained
5577F: Documentation/hwmon/ina2xx
5578F: drivers/hwmon/ina2xx.c
5579F: include/linux/platform_data/ina2xx.h
5580
Samuel Iglesias Gonsalvez14dc1242012-11-16 16:19:59 +01005581INDUSTRY PACK SUBSYSTEM (IPACK)
5582M: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
5583M: Jens Taprogge <jens.taprogge@taprogge.org>
5584M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5585L: industrypack-devel@lists.sourceforge.net
5586W: http://industrypack.sourceforge.net
5587S: Maintained
5588F: drivers/ipack/
5589
Zubair Lutfullah Kakakhel8adc53f2015-03-18 16:16:37 +00005590INGENIC JZ4780 DMA Driver
5591M: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
5592S: Maintained
5593F: drivers/dma/dma-jz4780.c
5594
Mimi Zoharaa7168f2009-02-04 09:07:03 -05005595INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Mimi Zohar74dd7442014-02-27 08:44:45 -05005596M: Mimi Zohar <zohar@linux.vnet.ibm.com>
Dmitry Kasatkinbfd33c42015-01-15 14:18:18 +02005597M: Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
Mimi Zohar74dd7442014-02-27 08:44:45 -05005598L: linux-ima-devel@lists.sourceforge.net
5599L: linux-ima-user@lists.sourceforge.net
5600L: linux-security-module@vger.kernel.org
Fengguang Wu9f273c22016-01-20 15:03:25 -08005601T: git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
Mimi Zoharaa7168f2009-02-04 09:07:03 -05005602S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005603F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05005604
James Hogan9a4ea5a2014-11-17 09:17:49 -03005605IMGTEC IR DECODER DRIVER
5606M: James Hogan <james.hogan@imgtec.com>
5607S: Maintained
5608F: drivers/media/rc/img-ir/
5609
Linus Torvalds1da177e2005-04-16 15:20:36 -07005610IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005611L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09005612S: Orphan
Jingoo Han8a61f012014-07-01 15:36:01 +09005613F: drivers/video/fbdev/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005614
5615INFINIBAND SUBSYSTEM
Doug Ledfordb6b2bbe2015-05-05 12:57:09 -04005616M: Doug Ledford <dledford@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005617M: Sean Hefty <sean.hefty@intel.com>
5618M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07005619L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07005620W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08005621Q: http://patchwork.kernel.org/project/linux-rdma/list/
Doug Ledford2936ae02015-05-11 21:03:36 -04005622T: git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005623S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005624F: Documentation/infiniband/
5625F: drivers/infiniband/
Doug Ledford2dfcad32015-08-27 14:18:57 -04005626F: drivers/staging/rdma/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005627F: include/uapi/linux/if_infiniband.h
Yann Droneaud954138d2015-05-04 14:31:03 +02005628F: include/uapi/rdma/
5629F: include/rdma/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005630
Robert Lovec9f04f52005-07-15 12:21:07 -04005631INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07005632M: John McCutchan <john@johnmccutchan.com>
5633M: Robert Love <rlove@rlove.org>
5634M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04005635S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005636F: Documentation/filesystems/inotify.txt
5637F: fs/notify/inotify/
5638F: include/linux/inotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005639F: include/uapi/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04005640
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005641INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005642M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005643L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005644Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07005645T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005646S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005647F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07005648F: include/linux/input.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005649F: include/uapi/linux/input.h
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07005650F: include/linux/input/
Andreas Färbere52d8392016-03-10 17:19:28 -08005651F: Documentation/devicetree/bindings/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005652
Henrik Rydberg3267a872010-06-24 19:10:40 -07005653INPUT MULTITOUCH (MT) PROTOCOL
Henrik Rydberg75dd1122015-01-08 14:32:21 -08005654M: Henrik Rydberg <rydberg@bitmath.org>
Henrik Rydberg3267a872010-06-24 19:10:40 -07005655L: linux-input@vger.kernel.org
Henrik Rydberg75dd1122015-01-08 14:32:21 -08005656S: Odd fixes
Henrik Rydberg3267a872010-06-24 19:10:40 -07005657F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01005658F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07005659K: \b(ABS|SYN)_MT_
5660
Jie Yang97fa99a2015-02-02 16:55:27 +08005661INTEL ASoC BDW/HSW DRIVERS
5662M: Jie Yang <yang.jie@linux.intel.com>
Jim Davise5747e42015-06-25 15:01:58 -07005663L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Jie Yang97fa99a2015-02-02 16:55:27 +08005664S: Supported
Joe Perchese8e12252015-06-30 14:59:39 -07005665F: sound/soc/intel/common/sst-dsp*
5666F: sound/soc/intel/common/sst-firmware.c
5667F: sound/soc/intel/boards/broadwell.c
5668F: sound/soc/intel/haswell/
Jie Yang97fa99a2015-02-02 16:55:27 +08005669
Dave Jiang4ac13e12011-07-29 17:16:55 -07005670INTEL C600 SERIES SAS CONTROLLER DRIVER
5671M: Intel SCU Linux support <intel-linux-scu@intel.com>
Lukasz Doraufdc58132014-04-07 15:39:58 -07005672M: Artur Paszkiewicz <artur.paszkiewicz@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07005673L: linux-scsi@vger.kernel.org
Dave Jiang71068912012-09-25 15:24:56 -07005674T: git git://git.code.sf.net/p/intel-sas/isci
5675S: Supported
Dave Jiang4ac13e12011-07-29 17:16:55 -07005676F: drivers/scsi/isci/
Dave Jiang4ac13e12011-07-29 17:16:55 -07005677
Alex Hungecc83e52015-12-18 23:31:10 +08005678INTEL HID EVENT DRIVER
5679M: Alex Hung <alex.hung@canonical.com>
5680L: platform-driver-x86@vger.kernel.org
5681S: Maintained
5682F: drivers/platform/x86/intel-hid.c
5683
Len Brown26717172010-03-08 14:07:30 -05005684INTEL IDLE DRIVER
5685M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02005686L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005687T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05005688S: Supported
5689F: drivers/idle/intel_idle.c
5690
Kristen Carlson Accardi7c1ac182014-12-15 15:58:24 -08005691INTEL PSTATE DRIVER
Srinivas Pandruvada58ac1f62015-11-02 09:45:46 -08005692M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
5693M: Len Brown <lenb@kernel.org>
Kristen Carlson Accardi7c1ac182014-12-15 15:58:24 -08005694L: linux-pm@vger.kernel.org
5695S: Supported
5696F: drivers/cpufreq/intel_pstate.c
5697
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005698INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08005699M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005700L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005701S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005702F: Documentation/fb/intelfb.txt
Jingoo Han8a61f012014-07-01 15:36:01 +09005703F: drivers/video/fbdev/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005704
Linus Torvalds1da177e2005-04-16 15:20:36 -07005705INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005706M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005707L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005708S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09005709F: drivers/video/fbdev/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005710
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05305711INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005712M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05005713L: platform-driver-x86@vger.kernel.org
Rafael J. Wysocki5ca92bd2013-10-10 23:03:44 +02005714W: https://01.org/linux-acpi
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05305715S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005716F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05305717
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07005718INTEL I/OAT DMA DRIVER
Dave Jiang18ebd562013-10-22 15:29:20 -07005719M: Dave Jiang <dave.jiang@intel.com>
Dan Williams08223d82014-08-19 06:07:56 -07005720R: Dan Williams <dan.j.williams@intel.com>
Dave Jiang18ebd562013-10-22 15:29:20 -07005721L: dmaengine@vger.kernel.org
5722Q: https://patchwork.kernel.org/project/linux-dmaengine/list/
5723S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005724F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07005725
David Woodhouse6c8909b2008-10-18 16:12:17 +01005726INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07005727M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01005728L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07005729T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01005730S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07005731F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07005732F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01005733
Dan Williamsb3e5f262007-08-07 10:26:35 -07005734INTEL IOP-ADMA DMA DRIVER
Dan Williams08223d82014-08-19 06:07:56 -07005735R: Dan Williams <dan.j.williams@intel.com>
Dan Williams1dd83722012-08-15 19:20:02 -07005736S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07005737F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07005738
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01005739INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Krzysztof Hałasa5529c2c2014-09-30 10:32:58 +02005740M: Krzysztof Halasa <khalasa@piap.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01005741S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005742F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
5743F: arch/arm/mach-ixp4xx/include/mach/npe.h
5744F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
5745F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07005746F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07005747F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01005748
Michael Buesch844dd052006-06-26 00:24:59 -07005749INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005750M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07005751S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005752F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07005753
Jeff Kirsher2f302322015-03-25 17:01:03 -07005754INTEL ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005755M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Jeff Kirsher2f302322015-03-25 17:01:03 -07005756R: Jesse Brandeburg <jesse.brandeburg@intel.com>
5757R: Shannon Nelson <shannon.nelson@intel.com>
5758R: Carolyn Wyborny <carolyn.wyborny@intel.com>
5759R: Don Skidmore <donald.c.skidmore@intel.com>
Jeff Kirsher6e80a182015-11-10 11:09:06 -08005760R: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher2f302322015-03-25 17:01:03 -07005761R: John Ronciak <john.ronciak@intel.com>
5762R: Mitch Williams <mitch.a.williams@intel.com>
Jiri Benceff471b2016-04-05 16:39:37 +02005763L: intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00005764W: http://www.intel.com/support/feedback.htm
Auke Kokd94e6fe2008-03-03 14:37:47 -08005765W: http://e1000.sourceforge.net/
Jeff Kirsher2f302322015-03-25 17:01:03 -07005766Q: http://patchwork.ozlabs.org/project/intel-wired-lan/list/
5767T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
5768T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005769S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00005770F: Documentation/networking/e100.txt
5771F: Documentation/networking/e1000.txt
5772F: Documentation/networking/e1000e.txt
5773F: Documentation/networking/igb.txt
5774F: Documentation/networking/igbvf.txt
5775F: Documentation/networking/ixgb.txt
5776F: Documentation/networking/ixgbe.txt
5777F: Documentation/networking/ixgbevf.txt
Jesse Brandeburg1bff6522013-09-11 08:40:23 +00005778F: Documentation/networking/i40e.txt
Greg Rose105bf2f2013-12-21 06:13:16 +00005779F: Documentation/networking/i40evf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07005780F: drivers/net/ethernet/intel/
Joe Perchesbc90d292014-02-25 13:35:53 -08005781F: drivers/net/ethernet/intel/*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005782
Faisal Latif6e4de862016-01-20 13:40:16 -06005783INTEL RDMA RNIC DRIVER
5784M: Faisal Latif <faisal.latif@intel.com>
5785R: Chien Tin Tung <chien.tin.tung@intel.com>
5786R: Mustafa Ismail <mustafa.ismail@intel.com>
5787R: Shiraz Saleem <shiraz.saleem@intel.com>
5788R: Tatyana Nikolova <tatyana.e.nikolova@intel.com>
5789L: linux-rdma@vger.kernel.org
5790S: Supported
5791F: drivers/infiniband/hw/i40iw/
5792
Linus Walleij0963d59b2013-10-19 15:39:17 +02005793INTEL-MID GPIO DRIVER
5794M: David Cohen <david.a.cohen@linux.intel.com>
5795L: linux-gpio@vger.kernel.org
5796S: Maintained
5797F: drivers/gpio/gpio-intel-mid.c
5798
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04005799INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
5800M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07005801L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04005802S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005803F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07005804F: Documentation/networking/README.ipw2200
Kalle Valo367a1092015-11-17 20:24:59 +02005805F: drivers/net/wireless/intel/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06005806
Alexander Shishkin5760b0a2015-09-22 15:47:20 +03005807INTEL(R) TRACE HUB
5808M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
5809S: Supported
5810F: Documentation/trace/intel_th.txt
5811F: drivers/hwtracing/intel_th/
5812
Shane Wang4bd96a72010-03-10 14:36:10 +08005813INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
Wei, Gang74b18e12015-12-02 07:07:20 +00005814M: Ning Sun <ning.sun@intel.com>
Shane Wang4bd96a72010-03-10 14:36:10 +08005815L: tboot-devel@lists.sourceforge.net
5816W: http://tboot.sourceforge.net
Gang Weie9b7d7c2012-09-17 14:08:59 -07005817T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
Shane Wang4bd96a72010-03-10 14:36:10 +08005818S: Supported
5819F: Documentation/intel_txt.txt
5820F: include/linux/tboot.h
5821F: arch/x86/kernel/tboot.c
5822
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08005823INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07005824M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08005825M: linux-wimax@intel.com
Joe Perches49e7d9d2015-04-15 16:17:31 -07005826L: wimax@linuxwimax.org (subscribers-only)
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08005827S: Supported
5828W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07005829F: Documentation/wimax/README.i2400m
5830F: drivers/net/wimax/i2400m/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005831F: include/uapi/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08005832
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01005833INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
5834M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08005835L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01005836S: Supported
Kalle Valo7ac9a362015-11-17 20:37:11 +02005837F: drivers/net/wireless/intel/iwlegacy/
Wey-Yi Guyefa31442011-02-22 16:43:05 -08005838
Zhu Yib481de92007-09-25 17:54:57 -07005839INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07005840M: Johannes Berg <johannes.berg@intel.com>
Johannes Berg6161b022013-07-23 14:03:39 +02005841M: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
Johannes Berg7b9aebf2015-09-08 17:03:20 +02005842M: Intel Linux Wireless <linuxwifi@intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07005843L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07005844W: http://intellinuxwireless.org
Wey-Yi Guyb62ff712011-09-22 15:14:49 -07005845T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07005846S: Supported
Kalle Valoe705c122015-11-17 20:57:38 +02005847F: drivers/net/wireless/intel/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07005848
Tomas Winklerde8fe022012-05-09 16:39:02 +03005849INTEL MANAGEMENT ENGINE (mei)
5850M: Tomas Winkler <tomas.winkler@intel.com>
5851L: linux-kernel@vger.kernel.org
5852S: Supported
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005853F: include/uapi/linux/mei.h
Tomas Winkler5069288b2015-06-13 22:11:33 +03005854F: include/linux/mei_cl_bus.h
Tomas Winklerde8fe022012-05-09 16:39:02 +03005855F: drivers/misc/mei/*
Tomas Winkler222818c2016-01-08 00:49:22 +02005856F: drivers/watchdog/mei_wdt.c
Cesar Eduardo Barrose07950a12013-01-04 15:35:36 -08005857F: Documentation/misc-devices/mei/*
Tomas Winklerde8fe022012-05-09 16:39:02 +03005858
Sudeep Dutt50ceb982015-10-13 11:21:19 -07005859INTEL MIC DRIVERS (mic)
5860M: Sudeep Dutt <sudeep.dutt@intel.com>
5861M: Ashutosh Dixit <ashutosh.dixit@intel.com>
5862S: Supported
5863W: https://github.com/sudeepdutt/mic
5864W: http://software.intel.com/en-us/mic-developer
5865F: include/linux/mic_bus.h
5866F: include/linux/scif.h
5867F: include/uapi/linux/mic_common.h
5868F: include/uapi/linux/mic_ioctl.h
Fengguang Wu9f273c22016-01-20 15:03:25 -08005869F: include/uapi/linux/scif_ioctl.h
Sudeep Dutt50ceb982015-10-13 11:21:19 -07005870F: drivers/misc/mic/
5871F: drivers/dma/mic_x100_dma.c
5872F: drivers/dma/mic_x100_dma.h
Fengguang Wu9f273c22016-01-20 15:03:25 -08005873F: Documentation/mic/
Sudeep Dutt50ceb982015-10-13 11:21:19 -07005874
Qipeng Zhafdca4f12015-12-11 22:45:00 +08005875INTEL PMC/P-Unit IPC DRIVER
qipeng.zha0a8b8352015-06-27 00:32:15 +08005876M: Zha Qipeng<qipeng.zha@intel.com>
5877L: platform-driver-x86@vger.kernel.org
5878S: Maintained
5879F: drivers/platform/x86/intel_pmc_ipc.c
Qipeng Zhafdca4f12015-12-11 22:45:00 +08005880F: drivers/platform/x86/intel_punit_ipc.c
qipeng.zha0a8b8352015-06-27 00:32:15 +08005881F: arch/x86/include/asm/intel_pmc_ipc.h
Qipeng Zhafdca4f12015-12-11 22:45:00 +08005882F: arch/x86/include/asm/intel_punit_ipc.h
qipeng.zha0a8b8352015-06-27 00:32:15 +08005883
Souvik Kumar Chakravarty378f9562016-01-12 16:00:33 +05305884INTEL TELEMETRY DRIVER
5885M: Souvik Kumar Chakravarty <souvik.k.chakravarty@intel.com>
5886L: platform-driver-x86@vger.kernel.org
5887S: Maintained
Souvik Kumar Chakravarty378f9562016-01-12 16:00:33 +05305888F: arch/x86/include/asm/intel_telemetry.h
Souvik Kumar Chakravartyf1fc3cd2016-01-21 09:30:50 +05305889F: drivers/platform/x86/intel_telemetry*
Ralf Baechlecb109a02007-08-30 23:56:30 -07005890
Joe Perches8b58be82009-07-29 15:04:30 -07005891IOC3 ETHERNET DRIVER
Ralf Baechled39e0722010-10-19 18:32:41 +01005892M: Ralf Baechle <ralf@linux-mips.org>
Ralf Baechlecb109a02007-08-30 23:56:30 -07005893L: linux-mips@linux-mips.org
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08005894S: Maintained
Ralf Baechlecb109a02007-08-30 23:56:30 -07005895F: drivers/net/ethernet/sgi/ioc3-eth.c
Stephen Warren0b6e8562013-09-13 13:10:27 -06005896
5897IOC3 SERIAL DRIVER
5898M: Pat Gefre <pfg@sgi.com>
5899L: linux-serial@vger.kernel.org
5900S: Maintained
5901F: drivers/tty/serial/ioc3_serial.c
5902
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005903IOMMU DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005904M: Joerg Roedel <joro@8bytes.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005905L: iommu@lists.linux-foundation.org
Joe Perches679655d2009-04-07 20:44:32 -07005906T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005907S: Maintained
Francois Romieu1202d6f2007-09-17 17:13:55 -07005908F: drivers/iommu/
Joe Perches8b58be82009-07-29 15:04:30 -07005909
5910IP MASQUERADING
Francois Romieu1202d6f2007-09-17 17:13:55 -07005911M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
5912S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07005913F: net/ipv4/netfilter/ipt_MASQUERADE.c
Francois Romieu1202d6f2007-09-17 17:13:55 -07005914
Corey Minyard4409ebe2006-04-20 02:43:12 -07005915IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005916M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08005917L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07005918W: http://openipmi.sourceforge.net/
5919S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005920F: Documentation/IPMI.txt
5921F: drivers/char/ipmi/
5922F: include/linux/ipmi*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005923F: include/uapi/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07005924
Kenneth Westfield2d800892015-03-03 16:21:50 -08005925QCOM AUDIO (ASoC) DRIVERS
5926M: Patrick Lai <plai@codeaurora.org>
5927M: Banajit Goswami <bgoswami@codeaurora.org>
5928L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5929S: Supported
5930F: sound/soc/qcom/
5931
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005932IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005933M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005934L: linux-scsi@vger.kernel.org
5935W: http://www.adaptec.com/
5936S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005937F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005938
5939IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07005940M: Wensong Zhang <wensong@linux-vs.org>
5941M: Simon Horman <horms@verge.net.au>
5942M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005943L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005944L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005945S: Maintained
Fengguang Wu9f273c22016-01-20 15:03:25 -08005946T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
5947T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
Joe Perches679655d2009-04-07 20:44:32 -07005948F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07005949F: include/net/ip_vs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005950F: include/uapi/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07005951F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005952
Randy Dunlape7839f22008-10-12 16:11:45 -07005953IPWIRELESS DRIVER
Jiri Kosinae5f64502015-08-09 09:11:34 +02005954M: Jiri Kosina <jikos@kernel.org>
Jiri Slabyd8130622015-07-17 16:23:20 -07005955M: David Sterba <dsterba@suse.com>
Jiri Kosina92094aa2011-11-13 21:41:00 +01005956S: Odd Fixes
Greg Kroah-Hartman282361a2011-02-22 16:23:22 -08005957F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01005958
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005959IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005960M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005961L: netdev@vger.kernel.org
5962S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005963F: include/net/ipx.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005964F: include/uapi/linux/ipx.h
Joe Perches679655d2009-04-07 20:44:32 -07005965F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005966
Linus Torvalds1da177e2005-04-16 15:20:36 -07005967IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005968M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07005969L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01005970L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005971W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07005972S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02005973T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07005974F: Documentation/networking/irda.txt
5975F: drivers/net/irda/
5976F: include/net/irda/
5977F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005978
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02005979IRQ SUBSYSTEM
5980M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar981c3a42014-01-21 10:59:20 +01005981L: linux-kernel@vger.kernel.org
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02005982S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005983T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02005984F: kernel/irq/
Jason Cooper2ed9fd22014-05-13 18:47:01 +00005985
5986IRQCHIP DRIVERS
5987M: Thomas Gleixner <tglx@linutronix.de>
5988M: Jason Cooper <jason@lakedaemon.net>
Thomas Gleixner54d9ffc2015-07-30 12:38:06 +02005989M: Marc Zyngier <marc.zyngier@arm.com>
Jason Cooper2ed9fd22014-05-13 18:47:01 +00005990L: linux-kernel@vger.kernel.org
5991S: Maintained
5992T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5993T: git git://git.infradead.org/users/jcooper/linux.git irqchip/core
Geert Uytterhoeven5b5a9062014-08-28 09:56:47 +02005994F: Documentation/devicetree/bindings/interrupt-controller/
Thomas Petazzoniedd96902012-10-28 10:05:40 +01005995F: drivers/irqchip/
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02005996
Grant Likely7ab3a832012-02-14 14:06:47 -07005997IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
Thomas Gleixnerb09dec22015-07-30 12:40:55 +02005998M: Jiang Liu <jiang.liu@linux.intel.com>
5999M: Marc Zyngier <marc.zyngier@arm.com>
Grant Likely7ab3a832012-02-14 14:06:47 -07006000S: Maintained
Thomas Gleixnerb09dec22015-07-30 12:40:55 +02006001T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Grant Likely7ab3a832012-02-14 14:06:47 -07006002F: Documentation/IRQ-domain.txt
6003F: include/linux/irqdomain.h
6004F: kernel/irq/irqdomain.c
Thomas Gleixnerb09dec22015-07-30 12:40:55 +02006005F: kernel/irq/msi.c
Grant Likely7ab3a832012-02-14 14:06:47 -07006006
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006007ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07006008M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006009S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006010F: Documentation/isapnp.txt
6011F: drivers/pnp/isapnp/
6012F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006013
Hans Verkuild39b8422012-11-23 07:07:02 -03006014ISA RADIO MODULE
6015M: Hans Verkuil <hverkuil@xs4all.nl>
6016L: linux-media@vger.kernel.org
6017T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006018W: https://linuxtv.org
Hans Verkuild39b8422012-11-23 07:07:02 -03006019S: Maintained
6020F: drivers/media/radio/radio-isa*
6021
Harry Wei71a6d0a2011-05-11 15:13:33 -07006022iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
6023M: Peter Jones <pjones@redhat.com>
6024M: Konrad Rzeszutek Wilk <konrad@kernel.org>
6025S: Maintained
6026F: drivers/firmware/iscsi_ibft*
6027
Mike Christie14816b1e2007-11-28 16:22:06 -08006028ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07006029M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b1e2007-11-28 16:22:06 -08006030L: open-iscsi@googlegroups.com
6031W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07006032T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08006033S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006034F: drivers/scsi/*iscsi*
6035F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08006036
Or Gerlitz1e65eb42013-05-08 12:21:19 +00006037ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
6038M: Or Gerlitz <ogerlitz@mellanox.com>
Or Gerlitzb261aea2014-10-01 14:02:17 +03006039M: Sagi Grimberg <sagig@mellanox.com>
Or Gerlitz1e65eb42013-05-08 12:21:19 +00006040M: Roi Dayan <roid@mellanox.com>
6041L: linux-rdma@vger.kernel.org
6042S: Supported
6043W: http://www.openfabrics.org
6044W: www.open-iscsi.org
6045Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches14430812013-09-11 14:23:50 -07006046F: drivers/infiniband/ulp/iser/
Or Gerlitz1e65eb42013-05-08 12:21:19 +00006047
Sagi Grimberg2b70e5f2015-01-07 12:54:44 +02006048ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
6049M: Sagi Grimberg <sagig@mellanox.com>
6050T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
6051L: linux-rdma@vger.kernel.org
6052L: target-devel@vger.kernel.org
6053S: Supported
6054W: http://www.linux-iscsi.org
6055F: drivers/infiniband/ulp/isert
6056
Linus Torvalds1da177e2005-04-16 15:20:36 -07006057ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006058M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07006059L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07006060L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006061W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07006062T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006063S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006064F: Documentation/isdn/
6065F: drivers/isdn/
6066F: include/linux/isdn.h
6067F: include/linux/isdn/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006068F: include/uapi/linux/isdn.h
6069F: include/uapi/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006070
6071ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07006072M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07006073L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006074W: http://www.melware.de
6075S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006076F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006077
Jean Delvared6248702010-03-05 22:17:20 +01006078IT87 HARDWARE MONITORING DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07006079M: Jean Delvare <jdelvare@suse.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07006080L: linux-hwmon@vger.kernel.org
Jean Delvared6248702010-03-05 22:17:20 +01006081S: Maintained
6082F: Documentation/hwmon/it87
6083F: drivers/hwmon/it87.c
6084
Malcolm Priestley68620bd2012-11-04 19:16:31 +01006085IT913X MEDIA DRIVER
Antti Palosaarid7104bf2013-03-09 22:58:13 -03006086M: Antti Palosaari <crope@iki.fi>
6087L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006088W: https://linuxtv.org
Antti Palosaarid7104bf2013-03-09 22:58:13 -03006089W: http://palosaari.fi/linux/
6090Q: http://patchwork.linuxtv.org/project/linux-media/list/
6091T: git git://linuxtv.org/anttip/media_tree.git
6092S: Maintained
Antti Palosaari249c6972014-09-01 19:44:59 -03006093F: drivers/media/tuners/it913x*
Antti Palosaarid7104bf2013-03-09 22:58:13 -03006094
Hans Verkuil91821ff2007-12-02 09:35:33 -03006095IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03006096M: Andy Walls <awalls@md.metrocast.net>
Joe Perches7b212ed2014-12-10 15:51:24 -08006097L: ivtv-devel@ivtvdriver.org (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006098L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006099T: git git://linuxtv.org/media_tree.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03006100W: http://www.ivtvdriver.org
6101S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006102F: Documentation/video4linux/*.ivtv
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006103F: drivers/media/pci/ivtv/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006104F: include/uapi/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03006105
Malcolm Priestley68620bd2012-11-04 19:16:31 +01006106IX2505V MEDIA DRIVER
6107M: Malcolm Priestley <tvboxspy@gmail.com>
6108L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006109W: https://linuxtv.org
Malcolm Priestley68620bd2012-11-04 19:16:31 +01006110Q: http://patchwork.linuxtv.org/project/linux-media/list/
6111S: Maintained
6112F: drivers/media/dvb-frontends/ix2505v*
6113
Guenter Roeck4453d732010-08-09 17:21:08 -07006114JC42.4 TEMPERATURE SENSOR DRIVER
6115M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07006116L: linux-hwmon@vger.kernel.org
Guenter Roeck4453d732010-08-09 17:21:08 -07006117S: Maintained
6118F: drivers/hwmon/jc42.c
6119F: Documentation/hwmon/jc42
6120
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006121JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06006122M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006123L: jfs-discussion@lists.sourceforge.net
6124W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07006125T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05006126S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006127F: Documentation/filesystems/jfs.txt
6128F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006129
Guo-Fu Tseng95252232008-09-16 01:00:11 +08006130JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006131M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08006132L: netdev@vger.kernel.org
6133S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07006134F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08006135
Linus Torvalds1da177e2005-04-16 15:20:36 -07006136JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07006137M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04006138L: linux-mtd@lists.infradead.org
6139W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07006140S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006141F: fs/jffs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006142F: include/uapi/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006143
Theodore Ts'od183e112011-05-26 09:53:09 -04006144JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
6145M: "Theodore Ts'o" <tytso@mit.edu>
Jan Karac290ea02015-06-18 16:52:29 +02006146M: Jan Kara <jack@suse.com>
Theodore Ts'od183e112011-05-26 09:53:09 -04006147L: linux-ext4@vger.kernel.org
6148S: Maintained
6149F: fs/jbd2/
6150F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07006151
Mikhail Ulyanov207dab52015-07-22 08:23:05 -03006152JPU V4L2 MEM2MEM DRIVER FOR RENESAS
6153M: Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
6154L: linux-media@vger.kernel.org
6155S: Maintained
6156F: drivers/media/platform/rcar_jpu.c
6157
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03006158JSM Neo PCI based serial card
Gabriel Krisman Bertazidf247082016-02-08 10:20:59 -02006159M: Gabriel Krisman Bertazi <krisman@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03006160L: linux-serial@vger.kernel.org
6161S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006162F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03006163
Clemens Ladischaf399172011-01-10 16:32:54 +01006164K10TEMP HARDWARE MONITORING DRIVER
6165M: Clemens Ladisch <clemens@ladisch.de>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07006166L: linux-hwmon@vger.kernel.org
Clemens Ladischaf399172011-01-10 16:32:54 +01006167S: Maintained
6168F: Documentation/hwmon/k10temp
6169F: drivers/hwmon/k10temp.c
6170
Rudolf Marek4660cb32006-10-08 22:01:26 +02006171K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006172M: Rudolf Marek <r.marek@assembler.cz>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07006173L: linux-hwmon@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006174S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006175F: Documentation/hwmon/k8temp
6176F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006177
Andrey Ryabinin0ba1d912016-03-25 14:22:17 -07006178KASAN
6179M: Andrey Ryabinin <aryabinin@virtuozzo.com>
6180R: Alexander Potapenko <glider@google.com>
6181R: Dmitry Vyukov <dvyukov@google.com>
6182L: kasan-dev@googlegroups.com
6183S: Maintained
6184F: arch/*/include/asm/kasan.h
6185F: arch/*/mm/kasan_init*
6186F: Documentation/kasan.txt
6187F: include/linux/kasan.h
6188F: lib/test_kasan.c
6189F: mm/kasan/
6190F: scripts/Makefile.kasan
6191
Linus Torvalds1da177e2005-04-16 15:20:36 -07006192KCONFIG
Michal Marek5eb1f992013-10-30 12:02:27 +01006193M: "Yann E. MORIN" <yann.morin.1998@free.fr>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02006194L: linux-kbuild@vger.kernel.org
Joe Perchescea83212014-03-03 15:38:38 -08006195T: git git://gitorious.org/linux-kconfig/linux-kconfig
Michal Marek5eb1f992013-10-30 12:02:27 +01006196S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006197F: Documentation/kbuild/kconfig-language.txt
6198F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006199
Vivek Goyalea6c2082006-05-20 14:59:55 -07006200KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07006201M: Vivek Goyal <vgoyal@redhat.com>
6202M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07006203L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07006204W: http://lse.sourceforge.net/kdump/
6205S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07006206F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07006207
Hans Verkuilf41bf022012-11-23 07:04:36 -03006208KEENE FM RADIO TRANSMITTER DRIVER
6209M: Hans Verkuil <hverkuil@xs4all.nl>
6210L: linux-media@vger.kernel.org
6211T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006212W: https://linuxtv.org
Hans Verkuilf41bf022012-11-23 07:04:36 -03006213S: Maintained
6214F: drivers/media/radio/radio-keene*
6215
Linus Torvalds1da177e2005-04-16 15:20:36 -07006216KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07006217M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08006218L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006219S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006220F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006221
Michal Marek70fb7ba2010-01-29 14:22:43 +01006222KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Jiri Slabyd8130622015-07-17 16:23:20 -07006223M: Michal Marek <mmarek@suse.com>
Joe Perches08deed12012-03-23 15:01:57 -07006224T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
6225T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02006226L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08006227S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006228F: Documentation/kbuild/
6229F: Makefile
6230F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01006231F: scripts/basic/
6232F: scripts/mk*
6233F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006234
6235KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07006236L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07006237W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07006238S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07006239
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04006240KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006241M: "J. Bruce Fields" <bfields@fieldses.org>
J. Bruce Fields883985f2015-08-24 16:44:40 -04006242M: Jeff Layton <jlayton@poochiereds.net>
Neil Brown16141c02007-12-11 16:16:12 -08006243L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006244W: http://nfs.sourceforge.net/
Fengguang Wu9f273c22016-01-20 15:03:25 -08006245T: git git://linux-nfs.org/~bfields/linux.git
NeilBrown98fac232007-01-26 00:56:57 -08006246S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006247F: fs/nfsd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006248F: include/uapi/linux/nfsd/
Joe Perches679655d2009-04-07 20:44:32 -07006249F: fs/lockd/
6250F: fs/nfs_common/
6251F: net/sunrpc/
6252F: include/linux/lockd/
6253F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006254F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006255
Shuah Khan13b122b2014-10-13 15:51:21 -07006256KERNEL SELFTEST FRAMEWORK
6257M: Shuah Khan <shuahkh@osg.samsung.com>
Shuah Khan64f00852016-02-17 13:11:32 -08006258L: linux-kselftest@vger.kernel.org
Shuah Khan13b122b2014-10-13 15:51:21 -07006259T: git git://git.kernel.org/pub/scm/shuah/linux-kselftest
6260S: Maintained
6261F: tools/testing/selftests
6262
Avi Kivity426d62e2006-12-13 00:34:03 -08006263KERNEL VIRTUAL MACHINE (KVM)
Gleb Natapov0a00a772013-11-27 16:35:22 +02006264M: Gleb Natapov <gleb@kernel.org>
Paolo Bonzinic93a64f2013-05-15 19:02:24 +02006265M: Paolo Bonzini <pbonzini@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03006266L: kvm@vger.kernel.org
Ramkumar Ramachandrae3e58472013-10-31 16:16:34 +05306267W: http://www.linux-kvm.org
Ramkumar Ramachandraa94b40a2013-10-31 16:29:23 +05306268T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
Avi Kivity426d62e2006-12-13 00:34:03 -08006269S: Supported
Paolo Bonzinic93a64f2013-05-15 19:02:24 +02006270F: Documentation/*/kvm*.txt
6271F: Documentation/virtual/kvm/
Joe Perches679655d2009-04-07 20:44:32 -07006272F: arch/*/kvm/
Christian Borntraeger1662e862015-03-12 14:59:26 +01006273F: arch/x86/kernel/kvm.c
6274F: arch/x86/kernel/kvmclock.c
Joe Perches679655d2009-04-07 20:44:32 -07006275F: arch/*/include/asm/kvm*
6276F: include/linux/kvm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006277F: include/uapi/linux/kvm*
Joe Perches679655d2009-04-07 20:44:32 -07006278F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08006279
Joerg Roedelad8003d2008-09-10 20:01:07 +02006280KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joerg Roedel7de609c2012-10-29 19:08:21 +01006281M: Joerg Roedel <joro@8bytes.org>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07006282L: kvm@vger.kernel.org
Dirk Müller038161d2015-10-01 13:46:01 +02006283W: http://www.linux-kvm.org/
Joerg Roedel7de609c2012-10-29 19:08:21 +01006284S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006285F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07006286F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07006287
Hollis Blanchard513014b2008-04-16 23:28:08 -05006288KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Jiri Slabyd8130622015-07-17 16:23:20 -07006289M: Alexander Graf <agraf@suse.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03006290L: kvm-ppc@vger.kernel.org
Dirk Müller038161d2015-10-01 13:46:01 +02006291W: http://www.linux-kvm.org/
Michael Ellerman6a7f9722012-10-15 19:01:05 +00006292T: git git://github.com/agraf/linux-2.6.git
Hollis Blanchard513014b2008-04-16 23:28:08 -05006293S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006294F: arch/powerpc/include/asm/kvm*
6295F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05006296
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01006297KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07006298M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02006299M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01006300L: linux-s390@vger.kernel.org
6301W: http://www.ibm.com/developerworks/linux/linux390/
Fengguang Wu9f273c22016-01-20 15:03:25 -08006302T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01006303S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006304F: Documentation/s390/kvm.txt
6305F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07006306F: arch/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01006307
Christoffer Dalla7494742013-01-20 18:42:26 -05006308KERNEL VIRTUAL MACHINE (KVM) FOR ARM
Christoffer Dall0f4ca792013-06-21 13:54:36 -07006309M: Christoffer Dall <christoffer.dall@linaro.org>
Marc Zyngier5c8818b2014-04-26 03:43:01 -07006310M: Marc Zyngier <marc.zyngier@arm.com>
6311L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Christoffer Dalla7494742013-01-20 18:42:26 -05006312L: kvmarm@lists.cs.columbia.edu
6313W: http://systems.cs.columbia.edu/projects/kvm-arm
Fengguang Wu1b1ebe82015-12-18 15:51:44 +08006314T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
Christoffer Dall0f4ca792013-06-21 13:54:36 -07006315S: Supported
Christoffer Dalla7494742013-01-20 18:42:26 -05006316F: arch/arm/include/uapi/asm/kvm*
6317F: arch/arm/include/asm/kvm*
6318F: arch/arm/kvm/
Marc Zyngier5c8818b2014-04-26 03:43:01 -07006319F: virt/kvm/arm/
6320F: include/kvm/arm_*
Christoffer Dalla7494742013-01-20 18:42:26 -05006321
Marc Zyngier6394a3e2013-04-02 17:49:40 +01006322KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
Marc Zyngier5c8818b2014-04-26 03:43:01 -07006323M: Christoffer Dall <christoffer.dall@linaro.org>
Marc Zyngier6394a3e2013-04-02 17:49:40 +01006324M: Marc Zyngier <marc.zyngier@arm.com>
6325L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6326L: kvmarm@lists.cs.columbia.edu
6327S: Maintained
6328F: arch/arm64/include/uapi/asm/kvm*
6329F: arch/arm64/include/asm/kvm*
6330F: arch/arm64/kvm/
6331
James Hoganbfd3d532015-12-16 23:49:41 +00006332KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
6333M: James Hogan <james.hogan@imgtec.com>
6334L: linux-mips@linux-mips.org
6335S: Supported
6336F: arch/mips/include/uapi/asm/kvm*
6337F: arch/mips/include/asm/kvm*
6338F: arch/mips/kvm/
6339
Eric W. Biedermandc009d92005-06-25 14:57:52 -07006340KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07006341M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07006342W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07006343L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07006344S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006345F: include/linux/kexec.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006346F: include/uapi/linux/kexec.h
Joe Perches679655d2009-04-07 20:44:32 -07006347F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07006348
David Howellse9714612010-03-29 23:42:09 +01006349KEYS/KEYRINGS:
6350M: David Howells <dhowells@redhat.com>
David Howellsaa62eff2015-08-11 13:29:48 +01006351L: keyrings@vger.kernel.org
David Howellse9714612010-03-29 23:42:09 +01006352S: Maintained
Randy Dunlapd410fa42011-05-19 15:59:38 -07006353F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01006354F: include/linux/key.h
6355F: include/linux/key-type.h
6356F: include/keys/
6357F: security/keys/
6358
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006359KEYS-TRUSTED
Mimi Zohar74dd7442014-02-27 08:44:45 -05006360M: David Safford <safford@us.ibm.com>
6361M: Mimi Zohar <zohar@linux.vnet.ibm.com>
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006362L: linux-security-module@vger.kernel.org
David Howellsaa62eff2015-08-11 13:29:48 +01006363L: keyrings@vger.kernel.org
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006364S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07006365F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006366F: include/keys/trusted-type.h
6367F: security/keys/trusted.c
6368F: security/keys/trusted.h
6369
6370KEYS-ENCRYPTED
Mimi Zohar74dd7442014-02-27 08:44:45 -05006371M: Mimi Zohar <zohar@linux.vnet.ibm.com>
6372M: David Safford <safford@us.ibm.com>
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006373L: linux-security-module@vger.kernel.org
David Howellsaa62eff2015-08-11 13:29:48 +01006374L: keyrings@vger.kernel.org
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006375S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07006376F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006377F: include/keys/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08006378F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006379
Jason Wessel5b778da2010-05-20 21:04:28 -05006380KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07006381M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05006382W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05006383L: kgdb-bugreport@lists.sourceforge.net
Fengguang Wu9f273c22016-01-20 15:03:25 -08006384T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
Jason Wessele3e2aaf2008-03-20 13:43:45 -05006385S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006386F: Documentation/DocBook/kgdb.tmpl
6387F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006388F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05006389F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07006390F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05006391F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05006392
Pekka Enberg456db8c2008-04-28 22:47:29 +03006393KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07006394M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02006395M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03006396S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08006397F: Documentation/kmemcheck.txt
6398F: arch/x86/include/asm/kmemcheck.h
6399F: arch/x86/mm/kmemcheck/
6400F: include/linux/kmemcheck.h
6401F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03006402
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01006403KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07006404M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01006405S: Maintained
6406F: Documentation/kmemleak.txt
6407F: include/linux/kmemleak.h
6408F: mm/kmemleak.c
6409F: mm/kmemleak-test.c
6410
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07006411KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07006412M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
6413M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
6414M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu353def92016-03-31 22:33:23 +09006415M: Masami Hiramatsu <mhiramat@kernel.org>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07006416S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006417F: Documentation/kprobes.txt
6418F: include/linux/kprobes.h
6419F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07006420
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08006421KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006422M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07006423W: http://miguelojeda.es/auxdisplay.htm
6424W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08006425S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006426F: Documentation/auxdisplay/ks0108
6427F: drivers/auxdisplay/ks0108.c
6428F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08006429
David Ahern1b69c6d2015-09-29 20:07:11 -07006430L3MDEV
6431M: David Ahern <dsa@cumulusnetworks.com>
6432L: netdev@vger.kernel.org
6433S: Maintained
6434F: net/l3mdev
6435F: include/net/l3mdev.h
6436
John Crispin9ca44352016-01-04 20:28:12 +01006437LANTIQ MIPS ARCHITECTURE
6438M: John Crispin <blogic@openwrt.org>
6439L: linux-mips@linux-mips.org
6440S: Maintained
6441F: arch/mips/lantiq
6442
Linus Torvalds1da177e2005-04-16 15:20:36 -07006443LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07006444L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07006445S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006446F: Documentation/networking/lapb-module.txt
6447F: include/*/lapb.h
6448F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006449
6450LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07006451M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006452L: linux-scsi@vger.kernel.org
6453S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006454F: Documentation/scsi/53c700.txt
6455F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006456
Richard Purdie263de9b2006-05-15 09:44:16 -07006457LED SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006458M: Richard Purdie <rpurdie@rpsys.net>
Andrew Morton48b945a2015-05-05 16:23:30 -07006459M: Jacek Anaszewski <j.anaszewski@samsung.com>
Bryan Wuaa69cb82012-05-31 19:51:37 +08006460L: linux-leds@vger.kernel.org
Jacek Anaszewskib8926ba2015-08-20 08:59:35 +02006461T: git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07006462S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006463F: drivers/leds/
6464F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07006465
Jean Delvareb0461a42011-06-15 15:08:46 -07006466LEGACY EEPROM DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07006467M: Jean Delvare <jdelvare@suse.com>
Jean Delvareb0461a42011-06-15 15:08:46 -07006468S: Maintained
6469F: Documentation/misc-devices/eeprom
6470F: drivers/misc/eeprom/eeprom.c
6471
Linus Torvalds1da177e2005-04-16 15:20:36 -07006472LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07006473M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006474L: legousb-devel@lists.sourceforge.net
6475W: http://legousb.sourceforge.net/
6476S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006477F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006478
Michael Krufky055616a2012-10-02 00:56:06 -03006479LG2160 MEDIA DRIVER
6480M: Michael Krufky <mkrufky@linuxtv.org>
6481L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006482W: https://linuxtv.org
Michael Krufky055616a2012-10-02 00:56:06 -03006483W: http://github.com/mkrufky
6484Q: http://patchwork.linuxtv.org/project/linux-media/list/
6485T: git git://linuxtv.org/mkrufky/tuners.git
6486S: Maintained
6487F: drivers/media/dvb-frontends/lg2160.*
6488
Michael Krufky6f0e7722012-10-02 00:56:00 -03006489LGDT3305 MEDIA DRIVER
6490M: Michael Krufky <mkrufky@linuxtv.org>
6491L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006492W: https://linuxtv.org
Michael Krufky6f0e7722012-10-02 00:56:00 -03006493W: http://github.com/mkrufky
6494Q: http://patchwork.linuxtv.org/project/linux-media/list/
6495T: git git://linuxtv.org/mkrufky/tuners.git
6496S: Maintained
6497F: drivers/media/dvb-frontends/lgdt3305.*
6498
Rusty Russell568a17f2007-10-25 14:12:24 +10006499LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07006500M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006501L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10006502W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06006503S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08006504F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07006505F: arch/x86/lguest/
6506F: drivers/lguest/
6507F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08006508F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10006509
Tejun Heo32ac7cb2015-01-06 18:36:44 -05006510LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
6511M: Tejun Heo <tj@kernel.org>
6512L: linux-ide@vger.kernel.org
6513T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6514S: Maintained
6515F: drivers/ata/
6516F: include/linux/ata.h
6517F: include/linux/libata.h
6518
6519LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
Viresh Kumarda899472015-07-17 16:23:50 -07006520M: Viresh Kumar <vireshk@kernel.org>
Tejun Heo32ac7cb2015-01-06 18:36:44 -05006521L: linux-ide@vger.kernel.org
6522T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6523S: Maintained
6524F: include/linux/pata_arasan_cf_data.h
6525F: drivers/ata/pata_arasan_cf.c
6526
Bartlomiej Zolnierkiewiczc7fa0562014-12-02 17:29:08 +01006527LIBATA PATA DRIVERS
6528M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6529M: Tejun Heo <tj@kernel.org>
6530L: linux-ide@vger.kernel.org
6531T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6532S: Maintained
6533F: drivers/ata/pata_*.c
6534F: drivers/ata/ata_generic.c
6535
Tejun Heo32ac7cb2015-01-06 18:36:44 -05006536LIBATA SATA AHCI PLATFORM devices support
6537M: Hans de Goede <hdegoede@redhat.com>
6538M: Tejun Heo <tj@kernel.org>
6539L: linux-ide@vger.kernel.org
6540T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6541S: Maintained
6542F: drivers/ata/ahci_platform.c
6543F: drivers/ata/libahci_platform.c
6544F: include/linux/ahci_platform.h
6545
6546LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
6547M: Mikael Pettersson <mikpelinux@gmail.com>
6548L: linux-ide@vger.kernel.org
6549T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6550S: Maintained
6551F: drivers/ata/sata_promise.*
6552
Sasha Levin1acd4372013-06-13 18:41:24 -04006553LIBLOCKDEP
6554M: Sasha Levin <sasha.levin@oracle.com>
6555S: Maintained
6556F: tools/lib/lockdep/
6557
Dan Williamsbc301962015-06-25 04:48:19 -04006558LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
6559M: Dan Williams <dan.j.williams@intel.com>
6560L: linux-nvdimm@lists.01.org
6561Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
Fengguang Wu9f273c22016-01-20 15:03:25 -08006562T: git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
Dan Williamsbc301962015-06-25 04:48:19 -04006563S: Supported
6564F: drivers/nvdimm/*
6565F: include/linux/nd.h
6566F: include/linux/libnvdimm.h
6567F: include/uapi/linux/ndctl.h
6568
6569LIBNVDIMM BLK: MMIO-APERTURE DRIVER
6570M: Ross Zwisler <ross.zwisler@linux.intel.com>
6571L: linux-nvdimm@lists.01.org
6572Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
6573S: Supported
6574F: drivers/nvdimm/blk.c
6575F: drivers/nvdimm/region_devs.c
6576F: drivers/acpi/nfit*
6577
6578LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
6579M: Vishal Verma <vishal.l.verma@intel.com>
6580L: linux-nvdimm@lists.01.org
6581Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
6582S: Supported
6583F: drivers/nvdimm/btt*
6584
6585LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
6586M: Ross Zwisler <ross.zwisler@linux.intel.com>
6587L: linux-nvdimm@lists.01.org
6588Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
6589S: Supported
6590F: drivers/nvdimm/pmem.c
Ross Zwislerb864bc12015-07-10 11:06:10 -06006591F: include/linux/pmem.h
Ross Zwisler40603522015-08-18 13:55:36 -06006592F: arch/*/include/asm/pmem.h
Dan Williamsbc301962015-06-25 04:48:19 -04006593
Matias Bjørlingcd9e9802015-10-28 19:54:55 +01006594LIGHTNVM PLATFORM SUPPORT
6595M: Matias Bjorling <mb@lightnvm.io>
6596W: http://github/OpenChannelSSD
Matias Bjørling4ead1a22015-11-16 15:34:35 +01006597L: linux-block@vger.kernel.org
Matias Bjørlingcd9e9802015-10-28 19:54:55 +01006598S: Maintained
6599F: drivers/lightnvm/
6600F: include/linux/lightnvm.h
6601F: include/uapi/linux/lightnvm.h
6602
Linus Torvalds1da177e2005-04-16 15:20:36 -07006603LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07006604M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006605W: http://www.ibm.com/linux/ltc/projects/ppc
6606S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00006607F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006608
Paul Mackerras852bb9f2008-07-04 21:04:42 +10006609LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07006610M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
6611M: Paul Mackerras <paulus@samba.org>
Benjamin Herrenschmidtea668932014-07-28 13:54:37 +10006612M: Michael Ellerman <mpe@ellerman.id.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006613W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006614L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08006615Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Michael Ellerman99580842015-07-07 19:16:23 +10006616T: git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006617S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00006618F: Documentation/powerpc/
6619F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006620
6621LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07006622M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006623W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006624L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006625S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00006626F: arch/powerpc/platforms/powermac/
6627F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006628
Grant Likely77a76362008-07-12 12:11:43 -06006629LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00006630M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006631L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschincba5b1c2014-10-02 16:16:59 -07006632T: git git://git.denx.de/linux-denx-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006633S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00006634F: arch/powerpc/platforms/512x/
6635F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006636
6637LINUX FOR POWERPC EMBEDDED PPC4XX
Joe Perches49e7d9d2015-04-15 16:17:31 -07006638M: Alistair Popple <alistair@popple.id.au>
Joe Perches8b58be82009-07-29 15:04:30 -07006639M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006640W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006641L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006642S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00006643F: arch/powerpc/platforms/40x/
6644F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006645
Grant Likely260c02a2007-10-02 12:15:34 +10006646LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006647L: linuxppc-dev@lists.ozlabs.org
Grant Likelycdeb8992013-07-22 01:38:32 +01006648S: Orphan
Joe Perches11c34c72009-12-04 07:16:59 +00006649F: arch/powerpc/*/*virtex*
6650F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006651
Tom Rinie93adf12005-07-26 12:49:53 -07006652LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07006653M: Vitaly Bordug <vitb@kernel.crashing.org>
Tom Rinie93adf12005-07-26 12:49:53 -07006654W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006655L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07006656S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07006657F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07006658
Linus Torvalds1da177e2005-04-16 15:20:36 -07006659LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Scott Wood44451d42015-12-31 12:57:26 -06006660M: Scott Wood <oss@buserror.net>
Joe Perches8b58be82009-07-29 15:04:30 -07006661M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01006662W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006663L: linuxppc-dev@lists.ozlabs.org
Scott Wooda1e0fb42014-05-05 20:46:43 -05006664T: git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
Jim Cromiece00f852006-11-30 04:49:44 +01006665S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00006666F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03006667F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006668
Olof Johanssonab06ff32006-09-06 14:44:54 -05006669LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07006670M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006671L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00006672S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00006673F: arch/powerpc/platforms/pasemi/
6674F: drivers/*/*pasemi*
6675F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05006676
Linus Torvalds1da177e2005-04-16 15:20:36 -07006677LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07006678M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08006679L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006680S: Supported
6681
Harry Weia23ce6d2011-02-11 16:52:20 +01006682LIS3LV02D ACCELEROMETER DRIVER
6683M: Eric Piel <eric.piel@tremplin-utc.net>
6684S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01006685F: Documentation/misc-devices/lis3lv02d
6686F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07006687F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01006688
Seth Jenningsb700e7f2014-12-16 11:58:19 -06006689LIVE PATCHING
6690M: Josh Poimboeuf <jpoimboe@redhat.com>
Josh Poimboeuf06e1c172016-03-16 10:03:36 -05006691M: Jessica Yu <jeyu@redhat.com>
Jiri Kosinae5f64502015-08-09 09:11:34 +02006692M: Jiri Kosina <jikos@kernel.org>
Josh Poimboeuf06e1c172016-03-16 10:03:36 -05006693M: Miroslav Benes <mbenes@suse.cz>
6694R: Petr Mladek <pmladek@suse.com>
Seth Jenningsb700e7f2014-12-16 11:58:19 -06006695S: Maintained
6696F: kernel/livepatch/
6697F: include/linux/livepatch.h
6698F: arch/x86/include/asm/livepatch.h
6699F: arch/x86/kernel/livepatch.c
6700F: Documentation/ABI/testing/sysfs-kernel-livepatch
Seth Jennings13d1cf72014-12-16 11:58:20 -06006701F: samples/livepatch/
Seth Jenningsb700e7f2014-12-16 11:58:19 -06006702L: live-patching@vger.kernel.org
Jiri Kosina74d50da2014-12-22 13:40:20 +01006703T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
Seth Jenningsb700e7f2014-12-16 11:58:19 -06006704
Kees Cookea861d72016-02-26 15:12:25 -08006705LINUX KERNEL DUMP TEST MODULE (LKDTM)
6706M: Kees Cook <keescook@chromium.org>
6707S: Maintained
6708F: drivers/misc/lkdtm.c
6709
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006710LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07006711M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006712S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006713F: include/linux/llc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006714F: include/uapi/linux/llc.h
Joe Perches679655d2009-04-07 20:44:32 -07006715F: include/net/llc*
6716F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006717
Adrien Demarez4e233cb2009-12-09 20:35:50 +01006718LM73 HARDWARE MONITOR DRIVER
6719M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07006720L: linux-hwmon@vger.kernel.org
Adrien Demarez4e233cb2009-12-09 20:35:50 +01006721S: Maintained
6722F: drivers/hwmon/lm73.c
6723
Jean Delvare156e2d12011-07-25 21:46:11 +02006724LM78 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07006725M: Jean Delvare <jdelvare@suse.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07006726L: linux-hwmon@vger.kernel.org
Jean Delvare156e2d12011-07-25 21:46:11 +02006727S: Maintained
6728F: Documentation/hwmon/lm78
6729F: drivers/hwmon/lm78.c
6730
Linus Torvalds1da177e2005-04-16 15:20:36 -07006731LM83 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07006732M: Jean Delvare <jdelvare@suse.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07006733L: linux-hwmon@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006734S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006735F: Documentation/hwmon/lm83
6736F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006737
6738LM90 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07006739M: Jean Delvare <jdelvare@suse.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07006740L: linux-hwmon@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006741S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006742F: Documentation/hwmon/lm90
Wei Niaae7bce2013-11-15 10:40:39 +01006743F: Documentation/devicetree/bindings/hwmon/lm90.txt
Joe Perches679655d2009-04-07 20:44:32 -07006744F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006745
Guenter Roeck917cc4e2013-05-19 20:44:27 -07006746LM95234 HARDWARE MONITOR DRIVER
6747M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07006748L: linux-hwmon@vger.kernel.org
Guenter Roeck917cc4e2013-05-19 20:44:27 -07006749S: Maintained
6750F: Documentation/hwmon/lm95234
6751F: drivers/hwmon/lm95234.c
6752
Malcolm Priestley68620bd2012-11-04 19:16:31 +01006753LME2510 MEDIA DRIVER
6754M: Malcolm Priestley <tvboxspy@gmail.com>
6755L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006756W: https://linuxtv.org
Malcolm Priestley68620bd2012-11-04 19:16:31 +01006757Q: http://patchwork.linuxtv.org/project/linux-media/list/
6758S: Maintained
6759F: drivers/media/usb/dvb-usb-v2/lmedm04*
6760
Peter Zijlstra512e67f2007-10-11 22:11:11 +02006761LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07006762M: Peter Zijlstra <peterz@infradead.org>
6763M: Ingo Molnar <mingo@redhat.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +01006764L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006765T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02006766S: Maintained
Davidlohr Bueso214e0ae2014-07-30 13:41:55 -07006767F: Documentation/locking/lockdep*.txt
6768F: Documentation/locking/lockstat.txt
Joe Perches679655d2009-04-07 20:44:32 -07006769F: include/linux/lockdep.h
Joe Perches7486d6d2013-11-14 14:59:45 -08006770F: kernel/locking/
Peter Zijlstra512e67f2007-10-11 22:11:11 +02006771
Anton Altaparmakovdde33342007-05-21 09:37:42 +01006772LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07006773M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01006774L: linux-ntfs-dev@lists.sourceforge.net
6775W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006776S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006777F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08006778F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006779
Joern Engelef6ada32009-11-20 22:17:12 +01006780LogFS
6781M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05306782M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01006783L: logfs@logfs.org
6784W: logfs.org
6785S: Maintained
6786F: fs/logfs/
6787
Roland Stiggeb62d7942013-04-02 19:37:11 +02006788LPC32XX MACHINE SUPPORT
6789M: Roland Stigge <stigge@antcom.de>
6790L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6791S: Maintained
6792F: arch/arm/mach-lpc32xx/
6793
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07006794LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
Suganath prabu Subramani9495e832016-02-18 14:09:46 +05306795M: Sathya Prakash <sathya.prakash@broadcom.com>
6796M: Chaitra P B <chaitra.basappa@broadcom.com>
6797M: Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
6798L: MPT-FusionLinux.pdl@broadcom.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07006799L: linux-scsi@vger.kernel.org
Suganath prabu Subramani9495e832016-02-18 14:09:46 +05306800W: http://www.avagotech.com/support/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07006801S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006802F: drivers/message/fusion/
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05306803F: drivers/scsi/mpt2sas/
6804F: drivers/scsi/mpt3sas/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07006805
Linus Torvalds1da177e2005-04-16 15:20:36 -07006806LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07006807M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006808L: linux-scsi@vger.kernel.org
6809S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006810F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006811
Guenter Roecke5f5c992010-06-25 11:59:54 -07006812LTC4261 HARDWARE MONITOR DRIVER
6813M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07006814L: linux-hwmon@vger.kernel.org
Guenter Roecke5f5c992010-06-25 11:59:54 -07006815S: Maintained
6816F: Documentation/hwmon/ltc4261
6817F: drivers/hwmon/ltc4261.c
6818
Mike Frysinger81365c32008-10-29 14:01:12 -07006819LTP (Linux Test Project)
Joe Perches28b8e8d2010-03-23 13:35:20 -07006820M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07006821M: Cyril Hrubis <chrubis@suse.cz>
Cyril Hrubis05261092015-09-17 16:01:57 -07006822M: Wanlong Gao <wanlong.gao@gmail.com>
Cyril Hrubisf2eb7f62014-05-09 15:36:58 -07006823M: Jan Stancek <jstancek@redhat.com>
6824M: Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
6825M: Alexey Kodanev <alexey.kodanev@oracle.com>
Cyril Hrubis05261092015-09-17 16:01:57 -07006826L: ltp@lists.linux.it (subscribers-only)
Cyril Hrubisf2eb7f62014-05-09 15:36:58 -07006827W: http://linux-test-project.github.io/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07006828T: git git://github.com/linux-test-project/ltp.git
Mike Frysinger81365c32008-10-29 14:01:12 -07006829S: Maintained
6830
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07006831M32R ARCHITECTURE
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07006832W: http://www.linux-m32r.org/
Michael Opdenackerb4174862014-10-13 15:51:26 -07006833S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006834F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07006835
Linus Torvalds1da177e2005-04-16 15:20:36 -07006836M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07006837M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006838L: linux-m68k@lists.linux-m68k.org
6839W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07006840T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006841S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006842F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07006843F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006844
6845M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07006846M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006847W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01006848L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006849S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07006850F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006851
6852M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07006853M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006854W: http://www.tazenda.demon.co.uk/phil/linux-hp
6855S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006856F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006857
Antti Palosaari74425542013-11-06 14:03:32 -03006858M88DS3103 MEDIA DRIVER
6859M: Antti Palosaari <crope@iki.fi>
6860L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006861W: https://linuxtv.org
Antti Palosaari74425542013-11-06 14:03:32 -03006862W: http://palosaari.fi/linux/
6863Q: http://patchwork.linuxtv.org/project/linux-media/list/
6864T: git git://linuxtv.org/anttip/media_tree.git
6865S: Maintained
6866F: drivers/media/dvb-frontends/m88ds3103*
6867
Malcolm Priestley68620bd2012-11-04 19:16:31 +01006868M88RS2000 MEDIA DRIVER
6869M: Malcolm Priestley <tvboxspy@gmail.com>
6870L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006871W: https://linuxtv.org
Malcolm Priestley68620bd2012-11-04 19:16:31 +01006872Q: http://patchwork.linuxtv.org/project/linux-media/list/
6873S: Maintained
6874F: drivers/media/dvb-frontends/m88rs2000*
6875
Alexey Klimov07a092f2012-11-12 02:57:32 -03006876MA901 MASTERKIT USB FM RADIO DRIVER
Joe Perchesb75f0052014-03-03 15:38:37 -08006877M: Alexey Klimov <klimov.linux@gmail.com>
6878L: linux-media@vger.kernel.org
6879T: git git://linuxtv.org/media_tree.git
6880S: Maintained
6881F: drivers/media/radio/radio-ma901.c
Alexey Klimov07a092f2012-11-12 02:57:32 -03006882
Jiri Benc64a327a2007-05-05 11:47:08 -07006883MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07006884M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07006885L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006886W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02006887T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6888T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07006889S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006890F: Documentation/networking/mac80211-injection.txt
6891F: include/net/mac80211.h
6892F: net/mac80211/
Johannes Berg2af8c4d2016-02-26 10:50:34 +01006893F: drivers/net/wireless/mac80211_hwsim.[ch]
Jiri Benc64a327a2007-05-05 11:47:08 -07006894
Patrick McHardyb863ceb2007-07-14 18:55:06 -07006895MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006896M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07006897L: netdev@vger.kernel.org
6898S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006899F: drivers/net/macvlan.c
6900F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07006901
Jassi Brar2b6d83e2014-06-12 22:31:19 +05306902MAILBOX API
6903M: Jassi Brar <jassisinghbrar@gmail.com>
6904L: linux-kernel@vger.kernel.org
6905S: Maintained
6906F: drivers/mailbox/
6907F: include/linux/mailbox_client.h
6908F: include/linux/mailbox_controller.h
6909
Michael Kerriskfaf16682005-07-31 22:34:47 -07006910MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07006911M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006912W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07006913L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07006914S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07006915
Russell King8427def2014-02-28 22:40:53 +00006916MARVELL ARMADA DRM SUPPORT
6917M: Russell King <rmk+kernel@arm.linux.org.uk>
6918S: Maintained
6919F: drivers/gpu/drm/armada/
6920
Guenter Roeck3ad50cc2014-10-29 10:44:56 -07006921MARVELL 88E6352 DSA support
6922M: Guenter Roeck <linux@roeck-us.net>
6923S: Maintained
6924F: drivers/net/dsa/mv88e6352.c
6925
Thomas Petazzonic4d007b2015-10-09 17:39:02 +02006926MARVELL CRYPTO DRIVER
6927M: Boris Brezillon <boris.brezillon@free-electrons.com>
6928M: Arnaud Ebalard <arno@natisbad.org>
6929F: drivers/crypto/marvell/
6930S: Maintained
6931L: linux-crypto@vger.kernel.org
6932
stephen hemminger44c14c12012-04-02 12:59:47 +00006933MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
6934M: Mirko Lindner <mlindner@marvell.com>
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08006935M: Stephen Hemminger <stephen@networkplumber.org>
stephen hemminger44c14c12012-04-02 12:59:47 +00006936L: netdev@vger.kernel.org
6937S: Maintained
6938F: drivers/net/ethernet/marvell/sk*
6939
Stefano Brivio74cda162007-11-19 20:27:46 +01006940MARVELL LIBERTAS WIRELESS DRIVER
Stefano Brivio74cda162007-11-19 20:27:46 +01006941L: libertas-dev@lists.infradead.org
Dan Williams8ac3e992013-03-26 14:40:51 -05006942S: Orphan
Kalle Valof988d642015-11-17 21:07:19 +02006943F: drivers/net/wireless/marvell/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01006944
Dale Farnsworthb60d6972006-01-16 16:45:45 -07006945MARVELL MV643XX ETHERNET DRIVER
Sebastian Hesselbarth4e3faf82013-10-04 12:56:39 +02006946M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07006947L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00006948S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07006949F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07006950F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006951
Thomas Petazzoni370b8ed2012-09-04 15:06:42 +02006952MARVELL MVNETA ETHERNET DRIVER
6953M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
6954L: netdev@vger.kernel.org
6955S: Maintained
6956F: drivers/net/ethernet/marvell/mvneta.*
6957
Bing Zhaofcad5842011-07-13 13:11:58 -07006958MARVELL MWIFIEX WIRELESS DRIVER
Bing Zhaob9d31702014-07-30 13:57:16 -07006959M: Amitkumar Karwar <akarwar@marvell.com>
Avinash Patil550795f2015-06-24 16:52:21 +05306960M: Nishant Sarmukadam <nishants@marvell.com>
Bing Zhaofcad5842011-07-13 13:11:58 -07006961L: linux-wireless@vger.kernel.org
6962S: Maintained
Kalle Valo277b0242015-11-17 21:14:51 +02006963F: drivers/net/wireless/marvell/mwifiex/
Bing Zhaofcad5842011-07-13 13:11:58 -07006964
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02006965MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01006966M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02006967L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02006968S: Odd Fixes
Kalle Valode60f1d2015-11-17 21:18:12 +02006969F: drivers/net/wireless/marvell/mwl8k.c
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02006970
Pierre Ossman2a695672009-03-16 19:52:26 +01006971MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04006972M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04006973S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07006974F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01006975
Linus Torvalds1da177e2005-04-16 15:20:36 -07006976MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006977L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07006978S: Orphan
Jingoo Han8a61f012014-07-01 15:36:01 +09006979F: drivers/video/fbdev/matrox/matroxfb_*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006980F: include/uapi/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006981
Guenter Roeckca462082012-06-01 23:28:23 -07006982MAX16065 HARDWARE MONITOR DRIVER
6983M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07006984L: linux-hwmon@vger.kernel.org
Guenter Roeckca462082012-06-01 23:28:23 -07006985S: Maintained
6986F: Documentation/hwmon/max16065
6987F: drivers/hwmon/max16065.c
6988
Guenter Roeck1f61cab2015-06-08 11:15:23 -07006989MAX20751 HARDWARE MONITOR DRIVER
6990M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07006991L: linux-hwmon@vger.kernel.org
Guenter Roeck1f61cab2015-06-08 11:15:23 -07006992S: Maintained
6993F: Documentation/hwmon/max20751
6994F: drivers/hwmon/max20751.c
6995
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02006996MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07006997M: "Hans J. Koch" <hjk@hansjkoch.de>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07006998L: linux-hwmon@vger.kernel.org
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02006999S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007000F: Documentation/hwmon/max6650
7001F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02007002
Guenter Roecke89ab512013-03-08 08:13:09 -08007003MAX6697 HARDWARE MONITOR DRIVER
7004M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07007005L: linux-hwmon@vger.kernel.org
Guenter Roecke89ab512013-03-08 08:13:09 -08007006S: Maintained
7007F: Documentation/hwmon/max6697
7008F: Documentation/devicetree/bindings/i2c/max6697.txt
7009F: drivers/hwmon/max6697.c
7010F: include/linux/platform_data/max6697.h
7011
Krzysztof Kozlowskif8f847b2015-01-20 11:00:56 +01007012MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
7013M: Krzysztof Kozlowski <k.kozlowski@samsung.com>
7014L: linux-pm@vger.kernel.org
7015S: Supported
7016F: drivers/power/max14577_charger.c
7017F: drivers/power/max77693_charger.c
7018
Javier Martinez Canillas38114052015-07-17 10:17:58 +02007019MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS
7020M: Javier Martinez Canillas <javier@osg.samsung.com>
7021L: linux-kernel@vger.kernel.org
7022S: Supported
Javier Martinez Canillas96173cc2016-02-12 01:14:23 -03007023F: drivers/*/*max77802*.c
Javier Martinez Canillas38114052015-07-17 10:17:58 +02007024F: Documentation/devicetree/bindings/*/*max77802.txt
7025F: include/dt-bindings/*/*max77802.h
7026
Krzysztof Kozlowskibefeb592015-02-16 16:00:23 -08007027MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
7028M: Chanwoo Choi <cw00.choi@samsung.com>
7029M: Krzysztof Kozlowski <k.kozlowski@samsung.com>
7030L: linux-kernel@vger.kernel.org
7031S: Supported
7032F: drivers/*/max14577.c
Javier Martinez Canillas0998a432016-02-15 11:24:58 -03007033F: drivers/*/max77686*.c
Krzysztof Kozlowskibefeb592015-02-16 16:00:23 -08007034F: drivers/*/max77693.c
7035F: drivers/extcon/extcon-max14577.c
7036F: drivers/extcon/extcon-max77693.c
7037F: drivers/rtc/rtc-max77686.c
7038F: drivers/clk/clk-max77686.c
7039F: Documentation/devicetree/bindings/mfd/max14577.txt
Javier Martinez Canillas377452f2015-07-17 10:17:57 +02007040F: Documentation/devicetree/bindings/*/max77686.txt
Krzysztof Kozlowskibefeb592015-02-16 16:00:23 -08007041F: Documentation/devicetree/bindings/mfd/max77693.txt
7042F: Documentation/devicetree/bindings/clock/maxim,max77686.txt
7043F: include/linux/mfd/max14577*.h
7044F: include/linux/mfd/max77686*.h
7045F: include/linux/mfd/max77693*.h
7046
Hans Verkuil9be3c9a2012-11-23 07:12:43 -03007047MAXIRADIO FM RADIO RECEIVER DRIVER
7048M: Hans Verkuil <hverkuil@xs4all.nl>
7049L: linux-media@vger.kernel.org
7050T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007051W: https://linuxtv.org
Hans Verkuil9be3c9a2012-11-23 07:12:43 -03007052S: Maintained
7053F: drivers/media/radio/radio-maxiradio*
7054
Peter Rosinc05dc2c2015-09-23 16:26:23 +02007055MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVER
7056M: Peter Rosin <peda@axentia.se>
7057L: linux-iio@vger.kernel.org
7058S: Maintained
7059F: drivers/iio/potentiometer/mcp4531.c
7060
Laurent Pinchart6f32a8c2015-03-04 09:12:20 -03007061MEDIA DRIVERS FOR RENESAS - VSP1
7062M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7063L: linux-media@vger.kernel.org
Simon Horman4a121092016-01-18 10:04:33 +09007064L: linux-renesas-soc@vger.kernel.org
Laurent Pinchart6f32a8c2015-03-04 09:12:20 -03007065T: git git://linuxtv.org/media_tree.git
7066S: Supported
7067F: Documentation/devicetree/bindings/media/renesas,vsp1.txt
7068F: drivers/media/platform/vsp1/
7069
Kozlov Sergeydacf9ce2015-07-28 11:33:01 -03007070MEDIA DRIVERS FOR ASCOT2E
7071M: Sergey Kozlov <serjk@netup.ru>
7072L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007073W: https://linuxtv.org
Kozlov Sergeydacf9ce2015-07-28 11:33:01 -03007074W: http://netup.tv/
7075T: git git://linuxtv.org/media_tree.git
7076S: Supported
7077F: drivers/media/dvb-frontends/ascot2e*
7078
Kozlov Sergeya6dc60ff2015-07-28 11:33:03 -03007079MEDIA DRIVERS FOR CXD2841ER
7080M: Sergey Kozlov <serjk@netup.ru>
7081L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007082W: https://linuxtv.org
Kozlov Sergeya6dc60ff2015-07-28 11:33:03 -03007083W: http://netup.tv/
7084T: git git://linuxtv.org/media_tree.git
7085S: Supported
7086F: drivers/media/dvb-frontends/cxd2841er*
7087
Kozlov Sergeya5d32b32015-07-28 11:33:00 -03007088MEDIA DRIVERS FOR HORUS3A
7089M: Sergey Kozlov <serjk@netup.ru>
7090L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007091W: https://linuxtv.org
Kozlov Sergeya5d32b32015-07-28 11:33:00 -03007092W: http://netup.tv/
7093T: git git://linuxtv.org/media_tree.git
7094S: Supported
7095F: drivers/media/dvb-frontends/horus3a*
7096
Kozlov Sergeye0252732015-07-28 11:33:02 -03007097MEDIA DRIVERS FOR LNBH25
7098M: Sergey Kozlov <serjk@netup.ru>
7099L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007100W: https://linuxtv.org
Kozlov Sergeye0252732015-07-28 11:33:02 -03007101W: http://netup.tv/
7102T: git git://linuxtv.org/media_tree.git
7103S: Supported
7104F: drivers/media/dvb-frontends/lnbh25*
7105
Kozlov Sergey52b1eaf2015-07-28 11:33:04 -03007106MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
7107M: Sergey Kozlov <serjk@netup.ru>
7108L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007109W: https://linuxtv.org
Kozlov Sergey52b1eaf2015-07-28 11:33:04 -03007110W: http://netup.tv/
7111T: git git://linuxtv.org/media_tree.git
7112S: Supported
7113F: drivers/media/pci/netup_unidvb/*
7114
Joe Perches127c49a2009-04-08 08:34:04 -07007115MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02007116M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Joe Perches127c49a2009-04-08 08:34:04 -07007117P: LinuxTV.org Project
7118L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007119W: https://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007120Q: http://patchwork.kernel.org/project/linux-media/list/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02007121T: git git://linuxtv.org/media_tree.git
Joe Perches127c49a2009-04-08 08:34:04 -07007122S: Maintained
7123F: Documentation/dvb/
7124F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02007125F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07007126F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02007127F: drivers/staging/media/
Mauro Carvalho Chehabeb4b0ec2015-11-16 08:35:53 -02007128F: include/linux/platform_data/media/
Joe Perches127c49a2009-04-08 08:34:04 -07007129F: include/media/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02007130F: include/uapi/linux/dvb/
7131F: include/uapi/linux/videodev2.h
7132F: include/uapi/linux/media.h
7133F: include/uapi/linux/v4l2-*
7134F: include/uapi/linux/meye.h
7135F: include/uapi/linux/ivtv*
7136F: include/uapi/linux/uvcvideo.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07007137
John Crispin0c272fc2016-03-08 11:29:57 +01007138MEDIATEK ETHERNET DRIVER
7139M: Felix Fietkau <nbd@openwrt.org>
7140M: John Crispin <blogic@openwrt.org>
7141L: netdev@vger.kernel.org
7142S: Maintained
7143F: drivers/net/ethernet/mediatek/
7144
Jakub Kicinskic869f772015-05-26 11:16:00 +02007145MEDIATEK MT7601U WIRELESS LAN DRIVER
7146M: Jakub Kicinski <kubakici@wp.pl>
7147L: linux-wireless@vger.kernel.org
7148S: Maintained
7149F: drivers/net/wireless/mediatek/mt7601u/
7150
Sumit.Saxena@avagotech.come3990652014-11-17 15:24:03 +05307151MEGARAID SCSI/SAS DRIVERS
7152M: Kashyap Desai <kashyap.desai@avagotech.com>
7153M: Sumit Saxena <sumit.saxena@avagotech.com>
7154M: Uday Lingala <uday.lingala@avagotech.com>
7155L: megaraidlinux.pdl@avagotech.com
Jean Delvarebaaea1d2008-09-20 12:34:33 +02007156L: linux-scsi@vger.kernel.org
Sumit.Saxena@avagotech.come3990652014-11-17 15:24:03 +05307157W: http://www.lsi.com
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07007158S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007159F: Documentation/scsi/megaraid.txt
7160F: drivers/scsi/megaraid.*
7161F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07007162
Amir Vadai2c46c9d2012-12-02 03:49:21 +00007163MELLANOX ETHERNET DRIVER (mlx4_en)
Or Gerlitze7523a42015-11-17 18:25:07 +02007164M: Eugenia Emantayev <eugenia@mellanox.com>
Joe Perchesb75f0052014-03-03 15:38:37 -08007165L: netdev@vger.kernel.org
Amir Vadai2c46c9d2012-12-02 03:49:21 +00007166S: Supported
7167W: http://www.mellanox.com
7168Q: http://patchwork.ozlabs.org/project/netdev/list/
7169F: drivers/net/ethernet/mellanox/mlx4/en_*
7170
Or Gerlitze7523a42015-11-17 18:25:07 +02007171MELLANOX ETHERNET DRIVER (mlx5e)
7172M: Saeed Mahameed <saeedm@mellanox.com>
7173L: netdev@vger.kernel.org
7174S: Supported
7175W: http://www.mellanox.com
7176Q: http://patchwork.ozlabs.org/project/netdev/list/
7177F: drivers/net/ethernet/mellanox/mlx5/core/en_*
7178
Jiri Pirko93c1edb2015-07-29 23:33:46 +02007179MELLANOX ETHERNET SWITCH DRIVERS
7180M: Jiri Pirko <jiri@mellanox.com>
7181M: Ido Schimmel <idosch@mellanox.com>
7182L: netdev@vger.kernel.org
7183S: Supported
7184W: http://www.mellanox.com
7185Q: http://patchwork.ozlabs.org/project/netdev/list/
7186F: drivers/net/ethernet/mellanox/mlxsw/
7187
Mathieu Desnoyers5b25b132015-09-11 13:07:39 -07007188MEMBARRIER SUPPORT
7189M: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7190M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7191L: linux-kernel@vger.kernel.org
7192S: Supported
7193F: kernel/membarrier.c
7194F: include/uapi/linux/membarrier.h
7195
Steven Rostedt70ea91f2006-07-30 03:03:53 -07007196MEMORY MANAGEMENT
7197L: linux-mm@kvack.org
Steven Rostedt70ea91f2006-07-30 03:03:53 -07007198W: http://www.linux-mm.org
7199S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007200F: include/linux/mm.h
Cody P Schafer551450b2013-02-21 16:43:13 -08007201F: include/linux/gfp.h
7202F: include/linux/mmzone.h
7203F: include/linux/memory_hotplug.h
7204F: include/linux/vmalloc.h
Joe Perches679655d2009-04-07 20:44:32 -07007205F: mm/
Steven Rostedt70ea91f2006-07-30 03:03:53 -07007206
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04007207MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07007208M: David Woodhouse <dwmw2@infradead.org>
Brian Norris242c3252013-12-04 15:28:45 -08007209M: Brian Norris <computersforpeace@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007210L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007211W: http://www.linux-mtd.infradead.org/
7212Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
Brian Norris242c3252013-12-04 15:28:45 -08007213T: git git://git.infradead.org/linux-mtd.git
Brian Norrisab95eac2014-09-15 21:56:17 -07007214T: git git://git.infradead.org/l2-mtd.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007215S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007216F: drivers/mtd/
7217F: include/linux/mtd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007218F: include/uapi/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007219
Johannes Thumshirn26c57ef2013-06-18 17:19:45 +02007220MEN A21 WATCHDOG DRIVER
Johannes Thumshirn30c74692015-05-07 10:21:24 +02007221M: Johannes Thumshirn <morbidrsa@gmail.com>
Johannes Thumshirn26c57ef2013-06-18 17:19:45 +02007222L: linux-watchdog@vger.kernel.org
Johannes Thumshirn30c74692015-05-07 10:21:24 +02007223S: Maintained
Johannes Thumshirn26c57ef2013-06-18 17:19:45 +02007224F: drivers/watchdog/mena21_wdt.c
7225
Johannes Thumshirn3764e822014-02-26 17:29:05 +01007226MEN CHAMELEON BUS (mcb)
Johannes Thumshirn30c74692015-05-07 10:21:24 +02007227M: Johannes Thumshirn <morbidrsa@gmail.com>
7228S: Maintained
Johannes Thumshirn3764e822014-02-26 17:29:05 +01007229F: drivers/mcb/
7230F: include/linux/mcb.h
Johannes Thumshirnb9f2f452015-07-17 12:23:01 +02007231F: Documentation/men-chameleon-bus.txt
Johannes Thumshirn3764e822014-02-26 17:29:05 +01007232
Andreas Werner48b490d2014-09-15 09:36:30 +02007233MEN F21BMC (Board Management Controller)
7234M: Andreas Werner <andreas.werner@men.de>
7235S: Supported
7236F: drivers/mfd/menf21bmc.c
7237F: drivers/watchdog/menf21bmc_wdt.c
7238F: drivers/leds/leds-menf21bmc.c
7239F: drivers/hwmon/menf21bmc_hwmon.c
7240F: Documentation/hwmon/menf21bmc
7241
James Hogan12285942012-10-10 12:59:49 +01007242METAG ARCHITECTURE
7243M: James Hogan <james.hogan@imgtec.com>
James Hogand668d9e2013-07-22 09:51:38 +01007244L: linux-metag@vger.kernel.org
Fengguang Wu9f273c22016-01-20 15:03:25 -08007245T: git git://git.kernel.org/pub/scm/linux/kernel/git/jhogan/metag.git
James Hoganf23d0e22015-11-09 18:40:59 +00007246S: Odd Fixes
James Hogan12285942012-10-10 12:59:49 +01007247F: arch/metag/
7248F: Documentation/metag/
7249F: Documentation/devicetree/bindings/metag/
Rob Herring2d799dd2015-11-05 13:40:40 -06007250F: Documentation/devicetree/bindings/interrupt-controller/img,*
James Hogana2c5d4e2012-10-09 10:54:39 +01007251F: drivers/clocksource/metag_generic.c
James Hogan5698c502012-10-09 10:54:47 +01007252F: drivers/irqchip/irq-metag.c
7253F: drivers/irqchip/irq-metag-ext.c
James Hoganae85ac72012-09-21 17:38:15 +01007254F: drivers/tty/metag_da.c
James Hogan12285942012-10-10 12:59:49 +01007255
Michal Simekc6375b02009-03-27 14:25:52 +01007256MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07007257M: Michal Simek <monstr@monstr.eu>
Michal Simekc6375b02009-03-27 14:25:52 +01007258W: http://www.monstr.eu/fdt/
7259T: git git://git.monstr.eu/linux-2.6-microblaze.git
7260S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02007261F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007262
Chen Yu2508a452015-08-18 23:30:25 +08007263MICROSOFT SURFACE PRO 3 BUTTON DRIVER
7264M: Chen Yu <yu.c.chen@intel.com>
7265L: platform-driver-x86@vger.kernel.org
7266S: Supported
7267F: drivers/platform/x86/surfacepro3_button.c
7268
Linus Torvalds1da177e2005-04-16 15:20:36 -07007269MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007270M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007271S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007272F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007273
7274MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07007275M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007276L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01007277W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00007278T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01007279Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00007280S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007281F: Documentation/mips/
7282F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007283
Hans Verkuil08b76202012-11-23 07:15:42 -03007284MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
7285M: Hans Verkuil <hverkuil@xs4all.nl>
7286L: linux-media@vger.kernel.org
7287T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007288W: https://linuxtv.org
Hans Verkuil08b76202012-11-23 07:15:42 -03007289S: Odd Fixes
7290F: drivers/media/radio/radio-miropcm20*
7291
Or Gerlitzc09befc2015-12-23 18:30:58 +02007292MELLANOX MLX4 core VPI driver
7293M: Yishai Hadas <yishaih@mellanox.com>
Eli Cohene126ba92013-07-07 17:25:49 +03007294L: netdev@vger.kernel.org
7295L: linux-rdma@vger.kernel.org
7296W: http://www.mellanox.com
7297Q: http://patchwork.ozlabs.org/project/netdev/list/
Or Gerlitzc09befc2015-12-23 18:30:58 +02007298S: Supported
7299F: drivers/net/ethernet/mellanox/mlx4/
7300F: include/linux/mlx4/
7301
7302MELLANOX MLX4 IB driver
7303M: Yishai Hadas <yishaih@mellanox.com>
7304L: linux-rdma@vger.kernel.org
7305W: http://www.mellanox.com
Eli Cohene126ba92013-07-07 17:25:49 +03007306Q: http://patchwork.kernel.org/project/linux-rdma/list/
Or Gerlitzc09befc2015-12-23 18:30:58 +02007307S: Supported
7308F: drivers/infiniband/hw/mlx4/
7309F: include/linux/mlx4/
7310
Or Gerlitz595a4d82015-12-23 18:30:57 +02007311MELLANOX MLX5 core VPI driver
7312M: Matan Barak <matanb@mellanox.com>
7313M: Leon Romanovsky <leonro@mellanox.com>
Eli Cohene126ba92013-07-07 17:25:49 +03007314L: netdev@vger.kernel.org
7315L: linux-rdma@vger.kernel.org
7316W: http://www.mellanox.com
7317Q: http://patchwork.ozlabs.org/project/netdev/list/
Eli Cohene126ba92013-07-07 17:25:49 +03007318S: Supported
7319F: drivers/net/ethernet/mellanox/mlx5/core/
7320F: include/linux/mlx5/
7321
Or Gerlitz595a4d82015-12-23 18:30:57 +02007322MELLANOX MLX5 IB driver
7323M: Matan Barak <matanb@mellanox.com>
7324M: Leon Romanovsky <leonro@mellanox.com>
Joe Perchesb75f0052014-03-03 15:38:37 -08007325L: linux-rdma@vger.kernel.org
7326W: http://www.mellanox.com
7327Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perchesb75f0052014-03-03 15:38:37 -08007328S: Supported
Joe Perchesb75f0052014-03-03 15:38:37 -08007329F: drivers/infiniband/hw/mlx5/
Or Gerlitz595a4d82015-12-23 18:30:57 +02007330F: include/linux/mlx5/
Eli Cohene126ba92013-07-07 17:25:49 +03007331
Crt Mori764589b2015-08-17 19:34:33 +02007332MELEXIS MLX90614 DRIVER
7333M: Crt Mori <cmo@melexis.com>
7334L: linux-iio@vger.kernel.org
7335W: http://www.melexis.com
7336S: Supported
7337F: drivers/iio/temperature/mlx90614.c
7338
Antti Palosaari0ce277e2014-11-12 00:35:42 -03007339MN88472 MEDIA DRIVER
7340M: Antti Palosaari <crope@iki.fi>
7341L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007342W: https://linuxtv.org
Antti Palosaari0ce277e2014-11-12 00:35:42 -03007343W: http://palosaari.fi/linux/
7344Q: http://patchwork.linuxtv.org/project/linux-media/list/
7345T: git git://linuxtv.org/anttip/media_tree.git
7346S: Maintained
7347F: drivers/staging/media/mn88472/
7348F: drivers/media/dvb-frontends/mn88472.h
7349
Antti Palosaari4f4d2382014-11-12 00:53:57 -03007350MN88473 MEDIA DRIVER
7351M: Antti Palosaari <crope@iki.fi>
7352L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007353W: https://linuxtv.org
Antti Palosaari4f4d2382014-11-12 00:53:57 -03007354W: http://palosaari.fi/linux/
7355Q: http://patchwork.linuxtv.org/project/linux-media/list/
Antti Palosaari4f4d2382014-11-12 00:53:57 -03007356S: Maintained
Antti Palosaari877ba502016-02-05 08:04:48 +02007357F: drivers/media/dvb-frontends/mn88473*
Antti Palosaari4f4d2382014-11-12 00:53:57 -03007358
Linus Torvalds1da177e2005-04-16 15:20:36 -07007359MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007360M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007361S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007362F: include/linux/module.h
7363F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007364
7365MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07007366W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08007367S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007368F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007369F: drivers/media/pci/meye/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02007370F: include/uapi/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007371
Jiri Slabyb9705b62008-04-30 00:53:48 -07007372MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07007373M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08007374S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007375F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07007376F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08007377
Alexey Klimov889b2f82012-11-16 17:43:59 -03007378MR800 AVERMEDIA USB FM RADIO DRIVER
7379M: Alexey Klimov <klimov.linux@gmail.com>
7380L: linux-media@vger.kernel.org
7381T: git git://linuxtv.org/media_tree.git
7382S: Maintained
7383F: drivers/media/radio/radio-mr800.c
7384
Alan Ottd7155692014-08-16 17:09:03 -04007385MRF24J40 IEEE 802.15.4 RADIO DRIVER
7386M: Alan Ott <alan@signal11.us>
7387L: linux-wpan@vger.kernel.org
7388S: Maintained
7389F: drivers/net/ieee802154/mrf24j40.c
Alexander Aring2e6fd642015-09-21 11:24:26 +02007390F: Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
Alan Ottd7155692014-08-16 17:09:03 -04007391
Lennart Poettering8c4c7312006-10-06 01:27:02 -04007392MSI LAPTOP SUPPORT
Lee, Chun-Yi182ae552012-12-14 16:14:24 +08007393M: "Lee, Chun-Yi" <jlee@suse.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05007394L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04007395S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007396F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04007397
Anisse Astier0f1006b2009-12-17 11:28:49 +01007398MSI WMI SUPPORT
Matthew Garrettd0944852010-02-11 10:40:13 -05007399L: platform-driver-x86@vger.kernel.org
Anisse Astier5ee70412015-06-14 22:32:23 +02007400S: Orphan
Anisse Astier0f1006b2009-12-17 11:28:49 +01007401F: drivers/platform/x86/msi-wmi.c
7402
Antti Palosaari19a628a2014-02-02 23:51:30 -03007403MSI001 MEDIA DRIVER
7404M: Antti Palosaari <crope@iki.fi>
7405L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007406W: https://linuxtv.org
Antti Palosaari19a628a2014-02-02 23:51:30 -03007407W: http://palosaari.fi/linux/
7408Q: http://patchwork.linuxtv.org/project/linux-media/list/
7409T: git git://linuxtv.org/anttip/media_tree.git
7410S: Maintained
Antti Palosaari0185e192014-07-12 08:58:32 -03007411F: drivers/media/tuners/msi001*
Antti Palosaari19a628a2014-02-02 23:51:30 -03007412
Antti Palosaari75705892014-07-13 21:35:47 -03007413MSI2500 MEDIA DRIVER
Antti Palosaari2c572132014-02-02 23:55:12 -03007414M: Antti Palosaari <crope@iki.fi>
7415L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007416W: https://linuxtv.org
Antti Palosaari2c572132014-02-02 23:55:12 -03007417W: http://palosaari.fi/linux/
7418Q: http://patchwork.linuxtv.org/project/linux-media/list/
7419T: git git://linuxtv.org/anttip/media_tree.git
7420S: Maintained
Antti Palosaari75705892014-07-13 21:35:47 -03007421F: drivers/media/usb/msi2500/
Antti Palosaari2c572132014-02-02 23:55:12 -03007422
Robert Jarzmik159eeea2015-06-25 19:14:18 +02007423MSYSTEMS DISKONCHIP G3 MTD DRIVER
7424M: Robert Jarzmik <robert.jarzmik@free.fr>
7425L: linux-mtd@lists.infradead.org
7426S: Maintained
7427F: drivers/mtd/devices/docg3*
7428
Laurent Pinchart62a37dc2013-08-09 08:46:11 -03007429MT9M032 APTINA SENSOR DRIVER
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007430M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7431L: linux-media@vger.kernel.org
7432T: git git://linuxtv.org/media_tree.git
7433S: Maintained
7434F: drivers/media/i2c/mt9m032.c
Mauro Carvalho Chehabb5dcee22015-11-10 12:01:44 -02007435F: include/media/i2c/mt9m032.h
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007436
Laurent Pinchart62a37dc2013-08-09 08:46:11 -03007437MT9P031 APTINA CAMERA SENSOR
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007438M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7439L: linux-media@vger.kernel.org
7440T: git git://linuxtv.org/media_tree.git
7441S: Maintained
7442F: drivers/media/i2c/mt9p031.c
Mauro Carvalho Chehabb5dcee22015-11-10 12:01:44 -02007443F: include/media/i2c/mt9p031.h
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007444
Laurent Pinchart62a37dc2013-08-09 08:46:11 -03007445MT9T001 APTINA CAMERA SENSOR
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007446M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7447L: linux-media@vger.kernel.org
7448T: git git://linuxtv.org/media_tree.git
7449S: Maintained
7450F: drivers/media/i2c/mt9t001.c
Mauro Carvalho Chehabb5dcee22015-11-10 12:01:44 -02007451F: include/media/i2c/mt9t001.h
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007452
Laurent Pinchart62a37dc2013-08-09 08:46:11 -03007453MT9V032 APTINA CAMERA SENSOR
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007454M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7455L: linux-media@vger.kernel.org
7456T: git git://linuxtv.org/media_tree.git
7457S: Maintained
Laurent Pinchartf2272e12014-01-01 14:40:35 -03007458F: Documentation/devicetree/bindings/media/i2c/mt9v032.txt
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007459F: drivers/media/i2c/mt9v032.c
Mauro Carvalho Chehabb5dcee22015-11-10 12:01:44 -02007460F: include/media/i2c/mt9v032.h
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007461
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07007462MULTIFUNCTION DEVICES (MFD)
Samuel Ortizf7d32102013-05-17 00:53:42 +02007463M: Lee Jones <lee.jones@linaro.org>
Lee Jones7caa7992014-07-22 13:24:38 +01007464T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07007465S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007466F: drivers/mfd/
Mark Brown55b59402013-06-28 15:14:11 +01007467F: include/linux/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07007468
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02007469MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Ulf Hanssone18eaf82014-02-19 00:01:05 +01007470M: Ulf Hansson <ulf.hansson@linaro.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07007471L: linux-mmc@vger.kernel.org
Ulf Hansson708dce32014-05-14 14:32:53 +02007472T: git git://git.linaro.org/people/ulf.hansson/mmc.git
Chris Ball245feaa2010-09-10 12:05:24 -04007473S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007474F: drivers/mmc/
7475F: include/linux/mmc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007476F: include/uapi/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01007477
David Brownell15a05802007-08-08 09:12:54 -07007478MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06007479S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007480F: drivers/mmc/host/mmc_spi.c
7481F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07007482
Linus Torvalds1da177e2005-04-16 15:20:36 -07007483MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007484M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007485S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007486F: Documentation/sound/oss/MultiSound
7487F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007488
Jiri Slabyd7354102006-12-08 02:38:35 -08007489MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02007490S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07007491F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07007492F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08007493
Felipe Balbi550a7372008-07-24 12:27:36 +03007494MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbi3b243512016-02-19 11:04:55 +02007495M: Bin Liu <b-liu@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007496L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03007497T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02007498S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007499F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03007500
Michael Krufkyea0af5f2012-10-02 00:55:41 -03007501MXL5007T MEDIA DRIVER
7502M: Michael Krufky <mkrufky@linuxtv.org>
7503L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007504W: https://linuxtv.org
Michael Krufkyea0af5f2012-10-02 00:55:41 -03007505W: http://github.com/mkrufky
7506Q: http://patchwork.linuxtv.org/project/linux-media/list/
7507T: git git://linuxtv.org/mkrufky/tuners.git
7508S: Maintained
7509F: drivers/media/tuners/mxl5007t.*
7510
Brice Goglin2d3cf582008-05-17 12:45:36 +02007511MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Hyong-Youb Kim205057a2013-08-12 02:20:02 -07007512M: Hyong-Youb Kim <hykim@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02007513L: netdev@vger.kernel.org
Hyong-Youb Kim205057a2013-08-12 02:20:02 -07007514W: https://www.myricom.com/support/downloads/myri10ge.html
Brice Goglin2d3cf582008-05-17 12:45:36 +02007515S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07007516F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02007517
Boris BREZILLON9df4f912016-03-09 21:57:24 +01007518NAND FLASH SUBSYSTEM
7519M: Boris Brezillon <boris.brezillon@free-electrons.com>
7520R: Richard Weinberger <richard@nod.at>
7521L: linux-mtd@lists.infradead.org
7522W: http://www.linux-mtd.infradead.org/
7523Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
7524T: git git://github.com/linux-nand/linux.git
7525S: Maintained
7526F: drivers/mtd/nand/
7527F: include/linux/mtd/nand*.h
7528
Linus Torvalds1da177e2005-04-16 15:20:36 -07007529NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04007530S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07007531F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007532
Daniel Mack23dc05a2011-05-18 11:28:38 +02007533NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
7534M: Daniel Mack <zonque@gmail.com>
7535S: Maintained
Jim Davise5747e42015-06-25 15:01:58 -07007536L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Daniel Mack23dc05a2011-05-18 11:28:38 +02007537W: http://www.native-instruments.com
7538F: sound/usb/caiaq/
7539
Linus Torvalds1da177e2005-04-16 15:20:36 -07007540NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07007541M: Petr Vandrovec <petr@vandrovec.name>
7542S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07007543F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007544
Finn Thaina79b0322014-05-05 15:35:30 +10007545NCR 5380 SCSI DRIVERS
7546M: Finn Thain <fthain@telegraphics.com.au>
7547M: Michael Schmitz <schmitzmic@gmail.com>
7548L: linux-scsi@vger.kernel.org
7549S: Maintained
7550F: Documentation/scsi/g_NCR5380.txt
7551F: drivers/scsi/NCR5380.*
7552F: drivers/scsi/arm/cumana_1.c
7553F: drivers/scsi/arm/oak.c
7554F: drivers/scsi/atari_NCR5380.c
7555F: drivers/scsi/atari_scsi.*
7556F: drivers/scsi/dmx3191d.c
7557F: drivers/scsi/dtc.*
7558F: drivers/scsi/g_NCR5380.*
7559F: drivers/scsi/g_NCR5380_mmio.c
7560F: drivers/scsi/mac_scsi.*
7561F: drivers/scsi/pas16.*
Finn Thaina79b0322014-05-05 15:35:30 +10007562F: drivers/scsi/sun3_scsi.*
7563F: drivers/scsi/sun3_scsi_vme.c
7564F: drivers/scsi/t128.*
7565
Linus Torvalds1da177e2005-04-16 15:20:36 -07007566NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07007567M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007568L: linux-scsi@vger.kernel.org
7569S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007570F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007571
Guenter Roeck4aa3eb42013-04-03 14:12:11 -07007572NCT6775 HARDWARE MONITOR DRIVER
7573M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07007574L: linux-hwmon@vger.kernel.org
Guenter Roeck4aa3eb42013-04-03 14:12:11 -07007575S: Maintained
7576F: Documentation/hwmon/nct6775
7577F: drivers/hwmon/nct6775.c
7578
Glenn Streiff3c2d7742008-02-04 20:20:45 -08007579NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07007580M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07007581L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00007582W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08007583S: Supported
7584F: drivers/infiniband/hw/nes/
7585
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07007586NETEM NETWORK EMULATOR
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08007587M: Stephen Hemminger <stephen@networkplumber.org>
stephen hemminger34302842016-04-05 13:43:53 -07007588L: netem@lists.linux-foundation.org (moderated for non-subscribers)
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07007589S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007590F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07007591
Jon Masonb2f5a052010-07-15 08:47:27 +00007592NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00007593M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07007594L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07007595S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007596F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00007597F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07007598F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07007599
Pablo Neira Ayusodb9cf3a2014-06-16 13:01:52 +02007600NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01007601M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07007602M: Patrick McHardy <kaber@trash.net>
Pablo Neira Ayuso42010ed2013-05-06 12:22:57 +02007603M: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
Patrick McHardy1a03b812007-09-18 13:19:26 -07007604L: netfilter-devel@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07007605L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007606W: http://www.netfilter.org/
7607W: http://www.iptables.org/
Pablo Neira Ayuso42010ed2013-05-06 12:22:57 +02007608Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/
7609T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
7610T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007611S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007612F: include/linux/netfilter*
7613F: include/linux/netfilter/
7614F: include/net/netfilter/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007615F: include/uapi/linux/netfilter*
7616F: include/uapi/linux/netfilter/
Joe Perches679655d2009-04-07 20:44:32 -07007617F: net/*/netfilter.c
7618F: net/*/netfilter/
7619F: net/netfilter/
Pablo Neira Ayuso91c269a2015-07-06 20:55:35 +02007620F: net/bridge/br_netfilter*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007621
Paul Moore4cc67732006-09-25 15:57:13 -07007622NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00007623M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07007624W: http://netlabel.sf.net
7625L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00007626S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07007627F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07007628F: include/net/netlabel.h
7629F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07007630
Linus Torvalds1da177e2005-04-16 15:20:36 -07007631NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07007632M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007633L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02007634W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007635S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007636F: include/net/netrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007637F: include/uapi/linux/netrom.h
Joe Perches679655d2009-04-07 20:44:32 -07007638F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007639
Jakub Kicinski4c352362015-12-01 14:55:22 +00007640NETRONOME ETHERNET DRIVERS
7641M: Jakub Kicinski <jakub.kicinski@netronome.com>
Jakub Kicinski4c352362015-12-01 14:55:22 +00007642L: oss-drivers@netronome.com
7643S: Maintained
7644F: drivers/net/ethernet/netronome/
7645
Pavel Machek5ddb88c2006-09-29 02:01:29 -07007646NETWORK BLOCK DEVICE (NBD)
Markus Pargmann4ca58292015-01-28 19:35:38 +01007647M: Markus Pargmann <mpa@pengutronix.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007648S: Maintained
Wouter Verhelst5e4b2692013-02-27 17:05:27 -08007649L: nbd-general@lists.sourceforge.net
Markus Pargmann4ca58292015-01-28 19:35:38 +01007650T: git git://git.pengutronix.de/git/mpa/linux-nbd.git
Joe Perches679655d2009-04-07 20:44:32 -07007651F: Documentation/blockdev/nbd.txt
7652F: drivers/block/nbd.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007653F: include/uapi/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007654
Neil Horman6e436502009-10-05 03:56:55 +00007655NETWORK DROP MONITOR
7656M: Neil Horman <nhorman@tuxdriver.com>
7657L: netdev@vger.kernel.org
7658S: Maintained
7659W: https://fedorahosted.org/dropwatch/
7660F: net/core/drop_monitor.c
7661
Linus Torvalds1da177e2005-04-16 15:20:36 -07007662NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07007663M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07007664L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00007665W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00007666Q: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00007667T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7668T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007669S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007670F: net/
7671F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00007672F: include/linux/in.h
7673F: include/linux/net.h
7674F: include/linux/netdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007675F: include/uapi/linux/in.h
7676F: include/uapi/linux/net.h
7677F: include/uapi/linux/netdevice.h
Nicolas Dichtel0c7aecd2015-01-15 15:11:15 +01007678F: include/uapi/linux/net_namespace.h
Tobias Klauser7e814a62014-03-11 12:06:24 +01007679F: tools/net/
Daniel Borkmannf4e53f92014-03-13 10:18:53 +01007680F: tools/testing/selftests/net/
Sasha Levin335a67d2014-03-27 02:01:34 -04007681F: lib/random32.c
Daniel Borkmanna101ccd2014-06-10 12:31:10 +02007682F: lib/test_bpf.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007683
7684NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07007685M: "David S. Miller" <davem@davemloft.net>
7686M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07007687M: James Morris <jmorris@namei.org>
7688M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
7689M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07007690L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007691T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007692S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007693F: net/ipv4/
7694F: net/ipv6/
7695F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00007696F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007697
David S. Miller73b76562012-10-16 14:08:40 -04007698NETWORKING [IPSEC]
7699M: Steffen Klassert <steffen.klassert@secunet.com>
7700M: Herbert Xu <herbert@gondor.apana.org.au>
7701M: "David S. Miller" <davem@davemloft.net>
7702L: netdev@vger.kernel.org
Steffen Klassertd1fc5022013-12-13 12:56:05 +01007703T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
7704T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
David S. Miller73b76562012-10-16 14:08:40 -04007705S: Maintained
Fan Du5826bdd2014-01-18 09:55:28 +08007706F: net/core/flow.c
David S. Miller73b76562012-10-16 14:08:40 -04007707F: net/xfrm/
7708F: net/key/
7709F: net/ipv4/xfrm*
Steffen Klassertd1fc5022013-12-13 12:56:05 +01007710F: net/ipv4/esp4.c
7711F: net/ipv4/ah4.c
7712F: net/ipv4/ipcomp.c
7713F: net/ipv4/ip_vti.c
David S. Miller73b76562012-10-16 14:08:40 -04007714F: net/ipv6/xfrm*
Steffen Klassertd1fc5022013-12-13 12:56:05 +01007715F: net/ipv6/esp6.c
7716F: net/ipv6/ah6.c
7717F: net/ipv6/ipcomp6.c
7718F: net/ipv6/ip6_vti.c
David S. Miller73b76562012-10-16 14:08:40 -04007719F: include/uapi/linux/xfrm.h
7720F: include/net/xfrm.h
7721
James Morris10e2ff12007-08-25 14:41:28 -07007722NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00007723M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07007724L: netdev@vger.kernel.org
7725S: Maintained
7726
John W. Linville29f8f632006-01-18 14:52:48 -08007727NETWORKING [WIRELESS]
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08007728L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007729Q: http://patchwork.kernel.org/project/linux-wireless/list/
John W. Linville29f8f632006-01-18 14:52:48 -08007730
Joe Perches788873a2009-04-16 09:38:45 +00007731NETWORKING DRIVERS
7732L: netdev@vger.kernel.org
7733W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00007734Q: http://patchwork.ozlabs.org/project/netdev/list/
Joe Perches08deed12012-03-23 15:01:57 -07007735T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7736T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00007737S: Odd Fixes
7738F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00007739F: include/linux/if_*
Jean Delvare0b63bf12012-10-18 22:11:38 +02007740F: include/linux/netdevice.h
Jean Delvare0b63bf12012-10-18 22:11:38 +02007741F: include/linux/etherdevice.h
7742F: include/linux/fcdevice.h
7743F: include/linux/fddidevice.h
7744F: include/linux/hippidevice.h
7745F: include/linux/inetdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007746F: include/uapi/linux/if_*
7747F: include/uapi/linux/netdevice.h
Joe Perches788873a2009-04-16 09:38:45 +00007748
John W. Linville0e324cf2014-12-17 12:07:05 -05007749NETWORKING DRIVERS (WIRELESS)
7750M: Kalle Valo <kvalo@codeaurora.org>
7751L: linux-wireless@vger.kernel.org
7752Q: http://patchwork.kernel.org/project/linux-wireless/list/
Fengguang Wu9f273c22016-01-20 15:03:25 -08007753T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
7754T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
John W. Linville0e324cf2014-12-17 12:07:05 -05007755S: Maintained
7756F: drivers/net/wireless/
7757
Amit S. Kale3d396eb2006-10-21 15:33:03 -04007758NETXEN (1/10) GbE SUPPORT
Manish Chopra86223152013-03-28 23:54:08 +00007759M: Manish Chopra <manish.chopra@qlogic.com>
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07007760M: Sony Chacko <sony.chacko@qlogic.com>
7761M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04007762L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00007763W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04007764S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07007765F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04007766
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03007767NFC SUBSYSTEM
7768M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
7769M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
7770M: Samuel Ortiz <sameo@linux.intel.com>
7771L: linux-wireless@vger.kernel.org
Dan Carpenter1eb3b212014-08-11 13:14:25 +03007772L: linux-nfc@lists.01.org (subscribers-only)
Samuel Ortiz0293ba22013-06-24 14:39:35 +02007773S: Supported
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03007774F: net/nfc/
Ilan Elias55eb94f2011-09-18 11:19:34 +03007775F: include/net/nfc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007776F: include/uapi/linux/nfc.h
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03007777F: drivers/nfc/
Christophe Ricard397d6492015-12-23 23:45:21 +01007778F: include/linux/platform_data/nfcmrvl.h
7779F: include/linux/platform_data/nxp-nci.h
Marcel Holtmann08eaa1e2012-10-24 11:45:38 -07007780F: include/linux/platform_data/pn544.h
Christophe Ricard397d6492015-12-23 23:45:21 +01007781F: include/linux/platform_data/st21nfca.h
7782F: include/linux/platform_data/st-nci.h
Mark A. Greer7ebb88e2014-03-10 11:56:25 -07007783F: Documentation/devicetree/bindings/net/nfc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007784
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04007785NFS, SUNRPC, AND LOCKD CLIENTS
Trond Myklebustcd7b9962013-12-04 12:29:49 -05007786M: Trond Myklebust <trond.myklebust@primarydata.com>
Trond Myklebust0e3b1372015-02-03 17:13:58 -05007787M: Anna Schumaker <anna.schumaker@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05007788L: linux-nfs@vger.kernel.org
7789W: http://client.linux-nfs.org
Trond Myklebustcd7b9962013-12-04 12:29:49 -05007790T: git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007791S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007792F: fs/lockd/
7793F: fs/nfs/
7794F: fs/nfs_common/
7795F: net/sunrpc/
7796F: include/linux/lockd/
7797F: include/linux/nfs*
7798F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007799F: include/uapi/linux/nfs*
7800F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007801
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07007802NILFS2 FILESYSTEM
Ryusuke Konishie2126932014-04-03 14:50:25 -07007803M: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09007804L: linux-nilfs@vger.kernel.org
Ryusuke Konishif9472262014-04-03 14:50:32 -07007805W: http://nilfs.sourceforge.net/
Ryusuke Konishie2126932014-04-03 14:50:25 -07007806T: git git://github.com/konis/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07007807S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007808F: Documentation/filesystems/nilfs2.txt
7809F: fs/nilfs2/
7810F: include/linux/nilfs2_fs.h
Ryusuke Konishic35c7ac2015-11-06 16:32:11 -08007811F: include/trace/events/nilfs2.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07007812
Linus Torvalds1da177e2005-04-16 15:20:36 -07007813NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007814M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007815W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7816S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007817F: Documentation/scsi/NinjaSCSI.txt
7818F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007819
7820NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007821M: GOTO Masanori <gotom@debian.or.jp>
7822M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007823W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7824S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007825F: Documentation/scsi/NinjaSCSI.txt
7826F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007827
Ley Foon Tan383b8fb2014-11-06 15:20:14 +08007828NIOS2 ARCHITECTURE
7829M: Ley Foon Tan <lftan@altera.com>
7830L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
Ley Foon Tan0094dc42015-09-08 01:50:05 +08007831T: git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
Ley Foon Tan383b8fb2014-11-06 15:20:14 +08007832S: Maintained
7833F: arch/nios2/
7834
Pali Rohár2a6afdd2015-03-29 15:35:54 +02007835NOKIA N900 POWER SUPPLY DRIVERS
Sebastian Reichele35a49b2016-01-17 21:36:03 +01007836R: Pali Rohár <pali.rohar@gmail.com>
Pali Rohár2a6afdd2015-03-29 15:35:54 +02007837F: include/linux/power/bq2415x_charger.h
Andrew F. Davis081bab22015-09-22 14:35:06 -05007838F: include/linux/power/bq27xxx_battery.h
Pali Rohár2a6afdd2015-03-29 15:35:54 +02007839F: include/linux/power/isp1704_charger.h
7840F: drivers/power/bq2415x_charger.c
Andrew F. Davis081bab22015-09-22 14:35:06 -05007841F: drivers/power/bq27xxx_battery.c
Sebastian Reichele35a49b2016-01-17 21:36:03 +01007842F: drivers/power/bq27xxx_battery_i2c.c
Pali Rohár2a6afdd2015-03-29 15:35:54 +02007843F: drivers/power/isp1704_charger.c
7844F: drivers/power/rx51_battery.c
7845
Allen Hubbea1bd3ba2015-04-09 10:33:20 -04007846NTB DRIVER CORE
Jon Mason9ef6bf62014-06-19 10:44:24 -07007847M: Jon Mason <jdmason@kudzu.us>
7848M: Dave Jiang <dave.jiang@intel.com>
Allen Hubbea1bd3ba2015-04-09 10:33:20 -04007849M: Allen Hubbe <Allen.Hubbe@emc.com>
Jon Mason5e9fd732015-07-04 14:48:33 -04007850L: linux-ntb@googlegroups.com
Jon Masonfce8a7b2012-11-16 19:27:12 -07007851S: Supported
Jon Mason29844112013-07-30 16:29:48 -07007852W: https://github.com/jonmason/ntb/wiki
7853T: git git://github.com/jonmason/ntb.git
Jon Masonfce8a7b2012-11-16 19:27:12 -07007854F: drivers/ntb/
Jon Mason548c2372012-11-16 19:27:13 -07007855F: drivers/net/ntb_netdev.c
Jon Masonfce8a7b2012-11-16 19:27:12 -07007856F: include/linux/ntb.h
Allen Hubbea1bd3ba2015-04-09 10:33:20 -04007857F: include/linux/ntb_transport.h
Jon Masonfce8a7b2012-11-16 19:27:12 -07007858
Allen Hubbee26a5842015-04-09 10:33:20 -04007859NTB INTEL DRIVER
7860M: Jon Mason <jdmason@kudzu.us>
7861M: Dave Jiang <dave.jiang@intel.com>
Jon Mason5e9fd732015-07-04 14:48:33 -04007862L: linux-ntb@googlegroups.com
Allen Hubbee26a5842015-04-09 10:33:20 -04007863S: Supported
7864W: https://github.com/jonmason/ntb/wiki
7865T: git git://github.com/jonmason/ntb.git
7866F: drivers/ntb/hw/intel/
Joe Perches679655d2009-04-07 20:44:32 -07007867
Xiangliang Yua1b36952016-01-21 19:47:05 +08007868NTB AMD DRIVER
7869M: Xiangliang Yu <Xiangliang.Yu@amd.com>
7870L: linux-ntb@googlegroups.com
7871S: Supported
7872F: drivers/ntb/hw/amd/
7873
Linus Torvalds1da177e2005-04-16 15:20:36 -07007874NTFS FILESYSTEM
7875M: Anton Altaparmakov <anton@tuxera.com>
7876L: linux-ntfs-dev@lists.sourceforge.net
Adrian Bunk169ccbd2008-09-02 14:35:37 -07007877W: http://www.tuxera.com/
Josh Boyer1adc1232005-11-23 15:44:15 -08007878T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007879S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007880F: Documentation/filesystems/ntfs.txt
7881F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007882
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08007883NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007884M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01007885L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01007886S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09007887F: drivers/video/fbdev/riva/
7888F: drivers/video/fbdev/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007889
Matthew Wilcox79461682012-11-10 08:54:53 -05007890NVM EXPRESS DRIVER
Jay Freyenseeb3975e92015-10-28 16:37:51 +09007891M: Keith Busch <keith.busch@intel.com>
7892M: Jens Axboe <axboe@fb.com>
Matthew Wilcox79461682012-11-10 08:54:53 -05007893L: linux-nvme@lists.infradead.org
Jay Freyenseeb3975e92015-10-28 16:37:51 +09007894T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
7895W: https://kernel.googlesource.com/pub/scm/linux/kernel/git/axboe/linux-block/
Matthew Wilcox79461682012-11-10 08:54:53 -05007896S: Supported
Jay Sternberg57dacad2015-10-09 18:17:06 +02007897F: drivers/nvme/host/
Matthew Wilcox79461682012-11-10 08:54:53 -05007898F: include/linux/nvme.h
7899
Srinivas Kandagatlaaee4b9b2015-07-27 12:17:24 +01007900NVMEM FRAMEWORK
7901M: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
7902M: Maxime Ripard <maxime.ripard@free-electrons.com>
7903S: Maintained
7904F: drivers/nvmem/
7905F: Documentation/devicetree/bindings/nvmem/
7906F: include/linux/nvmem-consumer.h
7907F: include/linux/nvmem-provider.h
7908
Clément Perrochauddece4582015-03-09 11:12:04 +01007909NXP-NCI NFC DRIVER
7910M: Clément Perrochaud <clement.perrochaud@effinnov.com>
7911R: Charles Gorand <charles.gorand@effinnov.com>
7912L: linux-nfc@lists.01.org (moderated for non-subscribers)
7913S: Supported
7914F: drivers/nfc/nxp-nci
7915
Russell Kingf50d7142014-03-03 12:18:14 +00007916NXP TDA998X DRM DRIVER
7917M: Russell King <rmk+kernel@arm.linux.org.uk>
7918S: Supported
7919F: drivers/gpu/drm/i2c/tda998x_drv.c
7920F: include/drm/i2c/tda998x.h
7921
Peter Rosinfbace432014-11-08 14:40:17 +01007922NXP TFA9879 DRIVER
7923M: Peter Rosin <peda@axentia.se>
7924L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7925S: Maintained
7926F: sound/soc/codecs/tfa9879*
7927
Josh Poimboeuf442f04c2016-02-28 22:22:41 -06007928OBJTOOL
7929M: Josh Poimboeuf <jpoimboe@redhat.com>
7930S: Supported
7931F: tools/objtool/
7932
Tony Lindgrenf5525782009-05-28 13:23:53 -07007933OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07007934M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007935L: linux-omap@vger.kernel.org
7936W: http://www.muru.com/linux/omap/
7937W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08007938Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02007939T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07007940S: Maintained
Felipe Contreras4e04d5a2009-09-21 17:04:25 -07007941F: arch/arm/*omap*/
Felipe Balbi026da812015-01-19 16:13:53 -06007942F: arch/arm/configs/omap1_defconfig
7943F: arch/arm/configs/omap2plus_defconfig
Jean Delvare046d0a32012-01-12 20:32:05 +01007944F: drivers/i2c/busses/i2c-omap.c
Felipe Balbidc68cd12014-11-06 08:37:19 -06007945F: drivers/irqchip/irq-omap-intc.c
7946F: drivers/mfd/*omap*.c
7947F: drivers/mfd/menelaus.c
7948F: drivers/mfd/palmas.c
7949F: drivers/mfd/tps65217.c
7950F: drivers/mfd/tps65218.c
7951F: drivers/mfd/tps65910.c
7952F: drivers/mfd/twl-core.[ch]
7953F: drivers/mfd/twl4030*.c
7954F: drivers/mfd/twl6030*.c
7955F: drivers/mfd/twl6040*.c
7956F: drivers/regulator/palmas-regulator*.c
7957F: drivers/regulator/pbias-regulator.c
7958F: drivers/regulator/tps65217-regulator.c
7959F: drivers/regulator/tps65218-regulator.c
7960F: drivers/regulator/tps65910-regulator.c
7961F: drivers/regulator/twl-regulator.c
Jean Delvare046d0a32012-01-12 20:32:05 +01007962F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07007963
Tony Lindgren50f29fb2012-12-16 11:29:59 -08007964OMAP DEVICE TREE SUPPORT
Benoit Coussoncdb55ab2013-08-09 23:19:15 +02007965M: Benoît Cousson <bcousson@baylibre.com>
Tony Lindgren50f29fb2012-12-16 11:29:59 -08007966M: Tony Lindgren <tony@atomide.com>
7967L: linux-omap@vger.kernel.org
Grant Likelyd0fb18c2013-07-19 20:10:12 -07007968L: devicetree@vger.kernel.org
Tony Lindgren50f29fb2012-12-16 11:29:59 -08007969S: Maintained
7970F: arch/arm/boot/dts/*omap*
7971F: arch/arm/boot/dts/*am3*
Nishanth Menon05eb20f2014-10-21 09:24:22 -05007972F: arch/arm/boot/dts/*am4*
7973F: arch/arm/boot/dts/*am5*
7974F: arch/arm/boot/dts/*dra7*
Tony Lindgren50f29fb2012-12-16 11:29:59 -08007975
Tony Lindgrenf5525782009-05-28 13:23:53 -07007976OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007977M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007978L: linux-omap@vger.kernel.org
7979S: Maintained
7980F: arch/arm/*omap*/*clock*
7981
7982OMAP POWER MANAGEMENT SUPPORT
Kevin Hilman3cf2efd2016-02-24 14:57:36 -08007983M: Kevin Hilman <khilman@kernel.org>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007984L: linux-omap@vger.kernel.org
7985S: Maintained
7986F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07007987F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07007988
Joe Perchesd21db562013-09-11 14:23:35 -07007989OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
Paul Walmsley692ab1f2011-03-09 18:44:28 -07007990M: Rajendra Nayak <rnayak@ti.com>
7991M: Paul Walmsley <paul@pwsan.com>
7992L: linux-omap@vger.kernel.org
7993S: Maintained
Joe Perchesd21db562013-09-11 14:23:35 -07007994F: arch/arm/mach-omap2/prm*
Paul Walmsley692ab1f2011-03-09 18:44:28 -07007995
Tony Lindgrenf5525782009-05-28 13:23:53 -07007996OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03007997M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03007998M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Jim Davise5747e42015-06-25 15:01:58 -07007999L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Tony Lindgrenf5525782009-05-28 13:23:53 -07008000L: linux-omap@vger.kernel.org
8001S: Maintained
8002F: sound/soc/omap/
8003
Tony Lindgren18640192014-11-20 09:13:42 -08008004OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
8005M: Roger Quadros <rogerq@ti.com>
8006M: Tony Lindgren <tony@atomide.com>
8007L: linux-omap@vger.kernel.org
8008S: Maintained
8009F: drivers/memory/omap-gpmc.c
8010F: arch/arm/mach-omap2/*gpmc*
8011
Tony Lindgrenf5525782009-05-28 13:23:53 -07008012OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02008013M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008014L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07008015L: linux-omap@vger.kernel.org
8016S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09008017F: drivers/video/fbdev/omap/
Tony Lindgrenf5525782009-05-28 13:23:53 -07008018
Tomi Valkeinen676eec02010-01-07 13:18:04 +02008019OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02008020M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03008021L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02008022L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03008023S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09008024F: drivers/video/fbdev/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03008025F: Documentation/arm/OMAP/DSS
8026
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03008027OMAP HARDWARE SPINLOCK SUPPORT
8028M: Ohad Ben-Cohen <ohad@wizery.com>
8029L: linux-omap@vger.kernel.org
8030S: Maintained
8031F: drivers/hwspinlock/omap_hwspinlock.c
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03008032
Tony Lindgrenf5525782009-05-28 13:23:53 -07008033OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07008034M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07008035L: linux-omap@vger.kernel.org
8036S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07008037F: drivers/mmc/host/omap.c
8038
8039OMAP HS MMC SUPPORT
Venkatraman S0a4585c2012-08-17 23:59:53 +05308040L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07008041L: linux-omap@vger.kernel.org
Balaji T Kdfa5d192014-09-17 22:50:11 +05308042S: Orphan
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07008043F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07008044
8045OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07008046M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07008047S: Maintained
8048F: drivers/char/hw_random/omap-rng.c
8049
Paul Walmsleyf400c822010-12-06 19:08:54 -07008050OMAP HWMOD SUPPORT
Benoit Coussoncdb55ab2013-08-09 23:19:15 +02008051M: Benoît Cousson <bcousson@baylibre.com>
Paul Walmsleyf400c822010-12-06 19:08:54 -07008052M: Paul Walmsley <paul@pwsan.com>
8053L: linux-omap@vger.kernel.org
8054S: Maintained
Zhang Yanfei8fc8b122013-01-11 14:32:03 -08008055F: arch/arm/mach-omap2/omap_hwmod.*
Paul Walmsleyf400c822010-12-06 19:08:54 -07008056
Paul Walmsley8633fb32015-01-19 23:49:50 -07008057OMAP HWMOD DATA
8058M: Paul Walmsley <paul@pwsan.com>
8059L: linux-omap@vger.kernel.org
8060S: Maintained
8061F: arch/arm/mach-omap2/omap_hwmod*data*
8062
Paul Walmsleyf400c822010-12-06 19:08:54 -07008063OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
Benoit Coussoncdb55ab2013-08-09 23:19:15 +02008064M: Benoît Cousson <bcousson@baylibre.com>
Paul Walmsleyf400c822010-12-06 19:08:54 -07008065L: linux-omap@vger.kernel.org
8066S: Maintained
8067F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
8068
Laurent Pinchart0db83ce2014-06-06 12:08:59 -03008069OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03008070M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8071L: linux-media@vger.kernel.org
8072S: Maintained
Sakari Ailus7eec52d2015-03-19 01:50:22 +02008073F: Documentation/devicetree/bindings/media/ti,omap3isp.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008074F: drivers/media/platform/omap3isp/
Laurent Pinchart0db83ce2014-06-06 12:08:59 -03008075F: drivers/staging/media/omap4iss/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03008076
Tony Lindgrenf5525782009-05-28 13:23:53 -07008077OMAP USB SUPPORT
Tony Lindgrenf5525782009-05-28 13:23:53 -07008078L: linux-usb@vger.kernel.org
8079L: linux-omap@vger.kernel.org
Felipe Balbi3b243512016-02-19 11:04:55 +02008080S: Orphan
Joe Perchesa16fbd62010-08-09 17:20:48 -07008081F: drivers/usb/*/*omap*
8082F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07008083
Kevin Hilman6d994712012-07-16 10:05:07 -07008084OMAP GPIO DRIVER
Javier Martinez Canillasfe643522015-11-13 10:35:29 -03008085M: Grygorii Strashko <grygorii.strashko@ti.com>
Santosh Shilimkar97215802014-10-13 14:16:28 -04008086M: Santosh Shilimkar <ssantosh@kernel.org>
Kevin Hilman3cf2efd2016-02-24 14:57:36 -08008087M: Kevin Hilman <khilman@kernel.org>
Kevin Hilman6d994712012-07-16 10:05:07 -07008088L: linux-omap@vger.kernel.org
8089S: Maintained
Javier Martinez Canillasfe643522015-11-13 10:35:29 -03008090F: Documentation/devicetree/bindings/gpio/gpio-omap.txt
Kevin Hilman6d994712012-07-16 10:05:07 -07008091F: drivers/gpio/gpio-omap.c
8092
Mark Jacksonc351e292013-10-04 09:15:01 +01008093OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
8094M: Mark Jackson <mpfj@newflow.co.uk>
8095L: linux-omap@vger.kernel.org
8096S: Maintained
8097F: arch/arm/boot/dts/am335x-nano.dts
8098
Bob Copeland0ad122d2008-07-25 19:45:18 -07008099OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008100M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07008101L: linux-karma-devel@lists.sourceforge.net
8102S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008103F: Documentation/filesystems/omfs.txt
8104F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07008105
Harald Weltec1986ee2005-11-13 16:06:29 -08008106OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008107M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08008108S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008109F: drivers/char/pcmcia/cm4000_cs.c
8110F: include/linux/cm4000_cs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008111F: include/uapi/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08008112
Harald Welte77c44ab2005-11-13 16:06:26 -08008113OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008114M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08008115S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008116F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08008117
Jonathan Corbet77d51402007-03-22 19:44:17 -03008118OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008119M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008120L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008121T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03008122S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008123F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03008124
Thomas Gleixner431bca72007-05-02 09:31:35 +02008125ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008126M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02008127L: linux-mtd@lists.infradead.org
8128S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008129F: drivers/mtd/onenand/
8130F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02008131
Linus Torvalds1da177e2005-04-16 15:20:36 -07008132ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008133M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008134L: osst-users@lists.sourceforge.net
8135L: linux-scsi@vger.kernel.org
8136S: Maintained
Jean Delvaref7269cf2013-07-03 15:05:08 -07008137F: Documentation/scsi/osst.txt
8138F: drivers/scsi/osst.*
8139F: drivers/scsi/osst_*.h
8140F: drivers/scsi/st.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008141
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008142OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008143M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01008144L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008145S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008146F: Documentation/i2c/busses/i2c-ocores
8147F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008148
Grant Likely860c44c2009-10-26 16:49:49 -07008149OPEN FIRMWARE AND FLATTENED DEVICE TREE
Rob Herring5d3ad8a2013-12-03 10:20:16 -06008150M: Rob Herring <robh+dt@kernel.org>
Grant Likelyc8fb70a2015-08-23 13:34:08 -07008151M: Frank Rowand <frowand.list@gmail.com>
8152M: Grant Likely <grant.likely@linaro.org>
Grant Likelyd0fb18c2013-07-19 20:10:12 -07008153L: devicetree@vger.kernel.org
Rob Herringa7fefe92014-12-26 14:05:54 -06008154W: http://www.devicetree.org/
8155T: git git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux.git
Grant Likely860c44c2009-10-26 16:49:49 -07008156S: Maintained
Grant Likelyf8828202013-07-19 18:57:39 -07008157F: drivers/of/
Grant Likely860c44c2009-10-26 16:49:49 -07008158F: include/linux/of*.h
Grant Likelyf8828202013-07-19 18:57:39 -07008159F: scripts/dtc/
Grant Likely860c44c2009-10-26 16:49:49 -07008160
Grant Likelyf8828202013-07-19 18:57:39 -07008161OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
Rob Herring5d3ad8a2013-12-03 10:20:16 -06008162M: Rob Herring <robh+dt@kernel.org>
Grant Likelyf8828202013-07-19 18:57:39 -07008163M: Pawel Moll <pawel.moll@arm.com>
8164M: Mark Rutland <mark.rutland@arm.com>
Ian Campbellde809632013-08-30 09:50:42 +01008165M: Ian Campbell <ijc+devicetree@hellion.org.uk>
Kumar Galabdbff6b2013-08-08 10:51:15 -05008166M: Kumar Gala <galak@codeaurora.org>
Grant Likelyf8828202013-07-19 18:57:39 -07008167L: devicetree@vger.kernel.org
Fengguang Wu9f273c22016-01-20 15:03:25 -08008168T: git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
Grant Likelyf8828202013-07-19 18:57:39 -07008169S: Maintained
8170F: Documentation/devicetree/
8171F: arch/*/boot/dts/
8172F: include/dt-bindings/
8173
Pantelis Antoniou2bb65f52015-03-17 22:30:57 +02008174OPEN FIRMWARE AND DEVICE TREE OVERLAYS
8175M: Pantelis Antoniou <pantelis.antoniou@konsulko.com>
8176L: devicetree@vger.kernel.org
8177S: Maintained
8178F: Documentation/devicetree/dynamic-resolution-notes.txt
8179F: Documentation/devicetree/overlay-notes.txt
8180F: drivers/of/overlay.c
8181F: drivers/of/resolver.c
8182
Jonas Bonn19f9d392011-06-04 22:00:38 +03008183OPENRISC ARCHITECTURE
8184M: Jonas Bonn <jonas@southpole.se>
8185W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02008186L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03008187S: Maintained
8188T: git git://openrisc.net/~jonas/linux
Joe Perches14430812013-09-11 14:23:50 -07008189F: arch/openrisc/
Jonas Bonn19f9d392011-06-04 22:00:38 +03008190
Jesse Grossccb13522011-10-25 19:26:31 -07008191OPENVSWITCH
Jesse Gross4f337ed2014-05-16 15:57:59 -07008192M: Pravin Shelar <pshelar@nicira.com>
Pravin B Shelarb422da72015-01-02 11:18:21 -08008193L: netdev@vger.kernel.org
Jesse Grossccb13522011-10-25 19:26:31 -07008194L: dev@openvswitch.org
8195W: http://openvswitch.org
Jesse Grossccb13522011-10-25 19:26:31 -07008196S: Maintained
8197F: net/openvswitch/
Pravin B Shelarb422da72015-01-02 11:18:21 -08008198F: include/uapi/linux/openvswitch.h
Jesse Grossccb13522011-10-25 19:26:31 -07008199
Viresh Kumar875fa6f2015-11-20 15:57:27 -08008200OPERATING PERFORMANCE POINTS (OPP)
8201M: Viresh Kumar <vireshk@kernel.org>
8202M: Nishanth Menon <nm@ti.com>
8203M: Stephen Boyd <sboyd@codeaurora.org>
8204L: linux-pm@vger.kernel.org
8205S: Maintained
8206T: git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
8207F: drivers/base/power/opp/
8208F: include/linux/pm_opp.h
8209F: Documentation/power/opp.txt
8210F: Documentation/devicetree/bindings/opp/
8211
Clemens Ladischaf399172011-01-10 16:32:54 +01008212OPL4 DRIVER
8213M: Clemens Ladisch <clemens@ladisch.de>
8214L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8215T: git git://git.alsa-project.org/alsa-kernel.git
8216S: Maintained
8217F: sound/drivers/opl4/
8218
Linus Torvalds1da177e2005-04-16 15:20:36 -07008219OPROFILE
Robert Richter4cf7e712012-10-29 18:53:25 +01008220M: Robert Richter <rric@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008221L: oprofile-list@lists.sf.net
8222S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02008223F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07008224F: arch/*/oprofile/
8225F: drivers/oprofile/
8226F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008227
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008228ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07008229M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08008230M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008231L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
Mark Fasheh01945fa2015-02-27 15:51:40 -08008232W: http://ocfs2.wiki.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008233S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008234F: Documentation/filesystems/ocfs2.txt
8235F: Documentation/filesystems/dlmfs.txt
8236F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008237
Linus Torvalds1da177e2005-04-16 15:20:36 -07008238ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07008239L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02008240W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07008241W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01008242S: Orphan
Kalle Valo2be45b62015-11-18 09:57:18 +02008243F: drivers/net/wireless/intersil/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008244
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03008245OSD LIBRARY and FILESYSTEM
Boaz Harroshfadc0752014-10-19 19:19:57 +03008246M: Boaz Harrosh <ooo@electrozaur.com>
Benny Halevyf1f66302014-02-10 11:57:29 +02008247M: Benny Halevy <bhalevy@primarydata.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02008248L: osd-dev@open-osd.org
8249W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07008250T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02008251S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03008252F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07008253F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03008254F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02008255
Miklos Szeredief94b182014-11-20 16:39:59 +01008256OVERLAY FILESYSTEM
Neil Brown7c37fbd2014-10-24 00:14:39 +02008257M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi1d113732014-11-20 16:40:01 +01008258L: linux-unionfs@vger.kernel.org
8259T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
Neil Brown7c37fbd2014-10-24 00:14:39 +02008260S: Supported
Miklos Szeredi1d113732014-11-20 16:40:01 +01008261F: fs/overlayfs/
Neil Brown7c37fbd2014-10-24 00:14:39 +02008262F: Documentation/filesystems/overlayfs.txt
8263
Mike Marshall85096162016-01-04 16:38:00 -05008264ORANGEFS FILESYSTEM
8265M: Mike Marshall <hubcap@omnibond.com>
Joe Perchesb39c3cf2016-04-01 14:31:12 -07008266L: pvfs2-developers@beowulf-underground.org (subscribers-only)
Mike Marshall85096162016-01-04 16:38:00 -05008267T: git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
8268S: Supported
8269F: fs/orangefs/
8270F: Documentation/filesystems/orangefs.txt
8271
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008272P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02008273M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008274L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02008275W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008276S: Maintained
Kalle Valod3466832015-11-18 09:49:59 +02008277F: drivers/net/wireless/intersil/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008278
Olof Johanssonf5cd7872007-01-31 21:43:54 -06008279PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008280M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06008281L: netdev@vger.kernel.org
8282S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07008283F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06008284
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01008285PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008286M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01008287L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01008288S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008289F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01008290
Steffen Klassert48fc2672010-08-13 10:10:46 -04008291PADATA PARALLEL EXECUTION MECHANISM
8292M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04008293L: linux-crypto@vger.kernel.org
8294S: Maintained
8295F: kernel/padata.c
8296F: include/linux/padata.h
8297F: Documentation/padata.txt
8298
Harald Welte709ee532008-09-23 17:46:57 +02008299PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008300M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05008301L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02008302S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008303F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02008304
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01008305PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07008306M: David Howells <dhowells@redhat.com>
8307M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01008308L: linux-am33-list@redhat.com (moderated for non-subscribers)
8309W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
8310S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008311F: Documentation/mn10300/
8312F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01008313
Ksenija Stanojevic305b37b2016-02-03 12:31:49 +01008314PARALLEL LCD/KEYPAD PANEL DRIVER
8315M: Willy Tarreau <willy@haproxy.com>
8316M: Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
8317S: Odd Fixes
8318F: Documentation/misc-devices/lcd-panel-cgram.txt
8319F: drivers/misc/panel.c
8320
Sudip Mukherjee64dfff02015-05-20 20:57:02 +05308321PARALLEL PORT SUBSYSTEM
8322M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
8323M: Sudip Mukherjee <sudip@vectorindia.org>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07008324L: linux-parport@lists.infradead.org (subscribers-only)
Sudip Mukherjee64dfff02015-05-20 20:57:02 +05308325S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008326F: drivers/parport/
8327F: include/linux/parport*.h
8328F: drivers/char/ppdev.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008329F: include/uapi/linux/ppdev.h
Sudip Mukherjee64dfff02015-05-20 20:57:02 +05308330F: Documentation/parport*.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07008331
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008332PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08008333M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07008334M: Chris Wright <chrisw@sous-sol.org>
8335M: Alok Kataria <akataria@vmware.com>
8336M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00008337L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008338S: Supported
Luis R. Rodrigueza2e19992015-02-13 17:13:40 +10308339F: Documentation/virtual/paravirt_ops.txt
Joe Perches679655d2009-04-07 20:44:32 -07008340F: arch/*/kernel/paravirt*
8341F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008342
Linus Torvalds1da177e2005-04-16 15:20:36 -07008343PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07008344M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07008345L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008346S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008347F: Documentation/blockdev/paride.txt
8348F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008349
8350PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00008351M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05008352M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00008353L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008354W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08008355Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07008356T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Helge Dellerfbb46caa2013-05-16 21:00:16 +00008357T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008358S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008359F: arch/parisc/
Helge Deller2b6bac92013-05-30 13:48:07 +00008360F: Documentation/parisc/
Joe Perches679655d2009-04-07 20:44:32 -07008361F: drivers/parisc/
Helge Deller2b6bac92013-05-30 13:48:07 +00008362F: drivers/char/agp/parisc-agp.c
8363F: drivers/input/serio/gscps2.c
8364F: drivers/parport/parport_gsc.*
8365F: drivers/tty/serial/8250/8250_gsc.c
Jingoo Han8a61f012014-07-01 15:36:01 +09008366F: drivers/video/fbdev/sti*
Helge Deller2b6bac92013-05-30 13:48:07 +00008367F: drivers/video/console/sti*
8368F: drivers/video/logo/logo_parisc*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008369
Jim Cromie1662d322006-10-06 00:43:59 -07008370PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008371M: Jim Cromie <jim.cromie@gmail.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07008372L: linux-hwmon@vger.kernel.org
Jim Cromie1662d322006-10-06 00:43:59 -07008373S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008374F: Documentation/hwmon/pc87360
8375F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07008376
8377PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008378M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07008379S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008380F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07008381
Jean Delvare1ad107f2010-08-14 21:09:00 +02008382PC87427 HARDWARE MONITORING DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07008383M: Jean Delvare <jdelvare@suse.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07008384L: linux-hwmon@vger.kernel.org
Jean Delvare1ad107f2010-08-14 21:09:00 +02008385S: Maintained
8386F: Documentation/hwmon/pc87427
8387F: drivers/hwmon/pc87427.c
8388
Riku Voipiob26e0ed2009-03-03 21:37:17 +02008389PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008390M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02008391S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07008392F: drivers/leds/leds-pca9532.c
8393F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02008394
Guenter Roeck5ce914a2010-10-24 18:16:59 +02008395PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07008396M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02008397L: linux-i2c@vger.kernel.org
8398S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02008399F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02008400
Khalid Aziz3971dae2012-04-12 12:49:13 -07008401PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07008402M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07008403S: Maintained
8404F: drivers/firmware/pcdp.*
8405
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06008406PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07008407M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07008408L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06008409S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008410F: Documentation/PCI/pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06008411
Russell Currey78c1cff2016-02-17 17:06:04 +11008412PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
8413M: Russell Currey <ruscur@russell.cc>
8414L: linuxppc-dev@lists.ozlabs.org
8415S: Supported
8416F: Documentation/powerpc/eeh-pci-error-recovery.txt
8417F: arch/powerpc/kernel/eeh*.c
8418F: arch/powerpc/platforms/*/eeh*.c
8419F: arch/powerpc/include/*/eeh*.h
8420
Linus Torvalds1da177e2005-04-16 15:20:36 -07008421PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07008422M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07008423L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06008424Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06008425T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008426S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008427F: Documentation/PCI/
8428F: drivers/pci/
8429F: include/linux/pci*
Bjorn Helgaas6b49ee42013-10-09 14:39:08 -06008430F: arch/x86/pci/
Bjorn Helgaascad01f92014-04-05 15:07:00 -06008431F: arch/x86/kernel/quirks.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008432
Ley Foon Taneaa61112015-10-23 18:27:12 +08008433PCI DRIVER FOR ALTERA PCIE IP
8434M: Ley Foon Tan <lftan@altera.com>
8435L: rfi@lists.rocketboards.org (moderated for non-subscribers)
8436L: linux-pci@vger.kernel.org
8437S: Supported
8438F: Documentation/devicetree/bindings/pci/altera-pcie.txt
8439F: drivers/pci/host/pcie-altera.c
8440
Rob Herringb7e78172015-01-28 10:16:18 -06008441PCI DRIVER FOR ARM VERSATILE PLATFORM
8442M: Rob Herring <robh@kernel.org>
8443L: linux-pci@vger.kernel.org
8444L: linux-arm-kernel@lists.infradead.org
8445S: Maintained
8446F: Documentation/devicetree/bindings/pci/versatile.txt
8447F: drivers/pci/host/pci-versatile.c
8448
Tanmay Inamdar5f6b6cc2014-10-01 13:01:35 -06008449PCI DRIVER FOR APPLIEDMICRO XGENE
8450M: Tanmay Inamdar <tinamdar@apm.com>
8451L: linux-pci@vger.kernel.org
8452L: linux-arm-kernel@lists.infradead.org
8453S: Maintained
8454F: Documentation/devicetree/bindings/pci/xgene-pci.txt
8455F: drivers/pci/host/pci-xgene.c
8456
Minghuan Lian62d0ff832014-11-05 16:45:11 +08008457PCI DRIVER FOR FREESCALE LAYERSCAPE
8458M: Minghuan Lian <minghuan.Lian@freescale.com>
8459M: Mingkai Hu <mingkai.hu@freescale.com>
8460M: Roy Zang <tie-fei.zang@freescale.com>
8461L: linuxppc-dev@lists.ozlabs.org
8462L: linux-pci@vger.kernel.org
8463L: linux-arm-kernel@lists.infradead.org
8464S: Maintained
8465F: drivers/pci/host/*layerscape*
8466
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008467PCI DRIVER FOR IMX6
Lucas Stachf175aa22015-01-19 11:17:31 +01008468M: Richard Zhu <Richard.Zhu@freescale.com>
Lucas Stach1ba55f52014-07-31 20:16:04 +02008469M: Lucas Stach <l.stach@pengutronix.de>
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008470L: linux-pci@vger.kernel.org
8471L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8472S: Maintained
8473F: drivers/pci/host/*imx6*
8474
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -06008475PCI DRIVER FOR TI KEYSTONE
8476M: Murali Karicheri <m-karicheri2@ti.com>
8477L: linux-pci@vger.kernel.org
8478L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8479S: Maintained
8480F: drivers/pci/host/*keystone*
8481
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008482PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
8483M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8484M: Jason Cooper <jason@lakedaemon.net>
8485L: linux-pci@vger.kernel.org
8486L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8487S: Maintained
8488F: drivers/pci/host/*mvebu*
8489
Thierry Reding0447cfd2013-08-09 16:49:32 +02008490PCI DRIVER FOR NVIDIA TEGRA
8491M: Thierry Reding <thierry.reding@gmail.com>
8492L: linux-tegra@vger.kernel.org
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008493L: linux-pci@vger.kernel.org
Thierry Reding0447cfd2013-08-09 16:49:32 +02008494S: Supported
8495F: Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
8496F: drivers/pci/host/pci-tegra.c
8497
Kishon Vijay Abraham I47ff3de2014-07-22 15:23:45 -06008498PCI DRIVER FOR TI DRA7XX
8499M: Kishon Vijay Abraham I <kishon@ti.com>
8500L: linux-omap@vger.kernel.org
8501L: linux-pci@vger.kernel.org
8502S: Supported
8503F: Documentation/devicetree/bindings/pci/ti-pci.txt
8504F: drivers/pci/host/pci-dra7xx.c
8505
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008506PCI DRIVER FOR RENESAS R-CAR
8507M: Simon Horman <horms@verge.net.au>
8508L: linux-pci@vger.kernel.org
Simon Horman4a121092016-01-18 10:04:33 +09008509L: linux-renesas-soc@vger.kernel.org
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008510S: Maintained
8511F: drivers/pci/host/*rcar*
8512
Jingoo Han4af82252013-09-12 20:29:24 +09008513PCI DRIVER FOR SAMSUNG EXYNOS
Jingoo Hanb7701752015-05-14 15:17:07 -07008514M: Jingoo Han <jingoohan1@gmail.com>
Jingoo Han4af82252013-09-12 20:29:24 +09008515L: linux-pci@vger.kernel.org
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008516L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8517L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Jingoo Han4af82252013-09-12 20:29:24 +09008518S: Maintained
8519F: drivers/pci/host/pci-exynos.c
8520
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008521PCI DRIVER FOR SYNOPSIS DESIGNWARE
Jingoo Hanb7701752015-05-14 15:17:07 -07008522M: Jingoo Han <jingoohan1@gmail.com>
Pratyush Anand110baab2015-04-30 09:46:07 +05308523M: Pratyush Anand <pratyush.anand@gmail.com>
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008524L: linux-pci@vger.kernel.org
8525S: Maintained
8526F: drivers/pci/host/*designware*
8527
Joao Pinto5a3aa2a2016-03-10 14:44:52 -06008528PCI DRIVER FOR SYNOPSYS PROTOTYPING DEVICE
8529M: Joao Pinto <jpinto@synopsys.com>
8530L: linux-pci@vger.kernel.org
8531S: Maintained
8532F: Documentation/devicetree/bindings/pci/designware-pcie.txt
8533F: drivers/pci/host/pcie-designware-plat.c
8534
Will Deaconcf288552014-05-01 12:04:28 +01008535PCI DRIVER FOR GENERIC OF HOSTS
8536M: Will Deacon <will.deacon@arm.com>
8537L: linux-pci@vger.kernel.org
8538L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8539S: Maintained
8540F: Documentation/devicetree/bindings/pci/host-generic-pci.txt
David Daney4e64dbe2016-03-11 15:35:55 -06008541F: drivers/pci/host/pci-host-common.c
Will Deaconcf288552014-05-01 12:04:28 +01008542F: drivers/pci/host/pci-host-generic.c
8543
Keith Busch185a3832016-01-12 13:18:10 -07008544PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
8545M: Keith Busch <keith.busch@intel.com>
8546L: linux-pci@vger.kernel.org
8547S: Supported
8548F: arch/x86/pci/vmd.c
8549
Pratyush Anand51b66a62014-02-11 11:39:26 +05308550PCIE DRIVER FOR ST SPEAR13XX
Pratyush Anand110baab2015-04-30 09:46:07 +05308551M: Pratyush Anand <pratyush.anand@gmail.com>
Pratyush Anand51b66a62014-02-11 11:39:26 +05308552L: linux-pci@vger.kernel.org
Pratyush Anand110baab2015-04-30 09:46:07 +05308553S: Maintained
Pratyush Anand51b66a62014-02-11 11:39:26 +05308554F: drivers/pci/host/*spear*
8555
Ley Foon Tanaf1169b2015-10-23 18:27:13 +08008556PCI MSI DRIVER FOR ALTERA MSI IP
8557M: Ley Foon Tan <lftan@altera.com>
8558L: rfi@lists.rocketboards.org (moderated for non-subscribers)
8559L: linux-pci@vger.kernel.org
8560S: Supported
8561F: Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
8562F: drivers/pci/host/pcie-altera-msi.c
8563
Duc Dangdcd19de2015-06-05 15:56:34 -05008564PCI MSI DRIVER FOR APPLIEDMICRO XGENE
8565M: Duc Dang <dhdang@apm.com>
8566L: linux-pci@vger.kernel.org
8567L: linux-arm-kernel@lists.infradead.org
8568S: Maintained
8569F: Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
8570F: drivers/pci/host/pci-xgene-msi.c
8571
Zhou Wang500a1d92015-10-29 20:02:51 -05008572PCIE DRIVER FOR HISILICON
8573M: Zhou Wang <wangzhou1@hisilicon.com>
Gabriele Paoloni5930fe42015-11-27 01:17:05 +08008574M: Gabriele Paoloni <gabriele.paoloni@huawei.com>
Zhou Wang500a1d92015-10-29 20:02:51 -05008575L: linux-pci@vger.kernel.org
8576S: Maintained
8577F: Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
8578F: drivers/pci/host/pcie-hisi.c
8579
Stanimir Varbanov82a82382015-12-18 14:38:57 +02008580PCIE DRIVER FOR QUALCOMM MSM
8581M: Stanimir Varbanov <svarbanov@mm-sol.com>
8582L: linux-pci@vger.kernel.org
8583L: linux-arm-msm@vger.kernel.org
8584S: Maintained
8585F: drivers/pci/host/*qcom*
8586
David Daneyf12b76e2016-03-04 14:31:47 -08008587PCIE DRIVER FOR CAVIUM THUNDERX
8588M: David Daney <david.daney@cavium.com>
8589L: linux-pci@vger.kernel.org
8590L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8591S: Supported
8592F: Documentation/devicetree/bindings/pci/pci-thunder-*
8593F: drivers/pci/host/pci-thunder-*
8594
Linus Torvalds1da177e2005-04-16 15:20:36 -07008595PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07008596P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07008597L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08008598W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Fengguang Wu9f273c22016-01-20 15:03:25 -08008599T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07008600S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008601F: Documentation/pcmcia/
8602F: drivers/pcmcia/
8603F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008604
8605PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08008606M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07008607L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008608S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07008609F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008610
Steffen Klassert48fc2672010-08-13 10:10:46 -04008611PCRYPT PARALLEL CRYPTO ENGINE
8612M: Steffen Klassert <steffen.klassert@secunet.com>
8613L: linux-crypto@vger.kernel.org
8614S: Maintained
8615F: crypto/pcrypt.c
8616F: include/crypto/pcrypt.h
8617
Tejun Heoe72df0b2010-12-10 17:02:49 +01008618PER-CPU MEMORY ALLOCATOR
8619M: Tejun Heo <tj@kernel.org>
Christoph Lameter93e205a2016-03-17 14:21:15 -07008620M: Christoph Lameter <cl@linux.com>
Tejun Heoe72df0b2010-12-10 17:02:49 +01008621T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
8622S: Maintained
8623F: include/linux/percpu*.h
8624F: mm/percpu*.c
8625F: arch/*/include/asm/percpu.h
8626
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07008627PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07008628M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07008629S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008630F: include/linux/delayacct.h
8631F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07008632
Ingo Molnar57c0c152009-09-21 12:20:38 +02008633PERFORMANCE EVENTS SUBSYSTEM
Peter Zijlstradaecbd2672015-11-16 11:07:44 +01008634M: Peter Zijlstra <peterz@infradead.org>
Ingo Molnardd9b2382012-03-19 21:03:46 +01008635M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melof80c5392014-03-27 17:36:14 -03008636M: Arnaldo Carvalho de Melo <acme@kernel.org>
Peter Zijlstraa54d6902016-02-26 10:35:45 +01008637R: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +01008638L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008639T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10008640S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09008641F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02008642F: include/linux/perf_event.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008643F: include/uapi/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01008644F: arch/*/kernel/perf_event*.c
8645F: arch/*/kernel/*/perf_event*.c
8646F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02008647F: arch/*/include/asm/perf_event.h
Vincent Legolla0032362009-10-13 14:48:14 +02008648F: arch/*/kernel/perf_callchain.c
8649F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10008650
Jim Cromiedd49d0f2006-03-24 18:08:17 +01008651PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07008652M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01008653L: linux-abi-devel@lists.sourceforge.net
8654S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008655F: include/linux/personality.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008656F: include/uapi/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01008657
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00008658PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00008659M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00008660S: Supported
8661F: Documentation/networking/phonet.txt
8662F: include/linux/phonet.h
8663F: include/net/phonet/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008664F: include/uapi/linux/phonet.h
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00008665F: net/phonet/
8666
Linus Torvalds1da177e2005-04-16 15:20:36 -07008667PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008668M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008669L: linux-mtd@lists.infradead.org
8670S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008671F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008672
Bruno Prémontefdbb102012-07-30 21:39:03 +02008673PICOLCD HID DRIVER
8674M: Bruno Prémont <bonbons@linux-vserver.org>
8675L: linux-input@vger.kernel.org
8676S: Maintained
8677F: drivers/hid/hid-picolcd*
8678
Jamie Ilesa53bfa02011-12-12 20:28:42 +00008679PICOXCELL SUPPORT
8680M: Jamie Iles <jamie@jamieiles.com>
8681L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8682T: git git://github.com/jamieiles/linux-2.6-ji.git
8683S: Supported
Joe Perchesb8733982014-08-08 14:25:12 -07008684F: arch/arm/boot/dts/picoxcell*
Joe Perches14430812013-09-11 14:23:50 -07008685F: arch/arm/mach-picoxcell/
Joe Perchesb8733982014-08-08 14:25:12 -07008686F: drivers/crypto/picoxcell*
Jamie Ilesa53bfa02011-12-12 20:28:42 +00008687
Linus Walleij2744e8a2011-05-02 20:50:54 +02008688PIN CONTROL SUBSYSTEM
8689M: Linus Walleij <linus.walleij@linaro.org>
David Cohenc11f0422014-10-16 19:06:59 -07008690L: linux-gpio@vger.kernel.org
Linus Walleijdbe752a2015-01-19 11:27:19 +01008691T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
Linus Walleij2744e8a2011-05-02 20:50:54 +02008692S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07008693F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02008694F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02008695
Jean-Christophe PLAGNIOL-VILLARD2201bbb2012-10-27 19:53:12 +02008696PIN CONTROLLER - ATMEL AT91
8697M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
8698L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8699S: Maintained
Alexandre Bellonic654b6b2014-10-17 11:49:40 +02008700F: drivers/pinctrl/pinctrl-at91.*
Jean-Christophe PLAGNIOL-VILLARD2201bbb2012-10-27 19:53:12 +02008701
Ludovic Desroches33d36902015-09-16 17:36:59 +02008702PIN CONTROLLER - ATMEL AT91 PIO4
8703M: Ludovic Desroches <ludovic.desroches@atmel.com>
8704L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8705L: linux-gpio@vger.kernel.org
8706S: Supported
8707F: drivers/pinctrl/pinctrl-at91-pio4.*
8708
Mika Westerbergcbd1b652014-10-24 15:16:53 +03008709PIN CONTROLLER - INTEL
8710M: Mika Westerberg <mika.westerberg@linux.intel.com>
8711M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
8712S: Maintained
8713F: drivers/pinctrl/intel/
Viresh Kumardeda8282012-03-28 22:27:07 +05308714
Laurent Pinchart9963b532014-07-02 16:33:31 +02008715PIN CONTROLLER - RENESAS
8716M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Geert Uytterhoeven1a4ca6d2015-12-16 08:47:11 +01008717M: Geert Uytterhoeven <geert+renesas@glider.be>
Simon Horman4a121092016-01-18 10:04:33 +09008718L: linux-renesas-soc@vger.kernel.org
Laurent Pinchart9963b532014-07-02 16:33:31 +02008719S: Maintained
8720F: drivers/pinctrl/sh-pfc/
8721
Doug Andersonb75e60d2013-06-16 15:17:46 -07008722PIN CONTROLLER - SAMSUNG
Tomasz Figafea685e2014-08-26 16:30:53 +02008723M: Tomasz Figa <tomasz.figa@gmail.com>
Krzysztof Kozlowski44b03c12016-03-16 09:02:01 +09008724M: Krzysztof Kozlowski <k.kozlowski@samsung.com>
8725M: Sylwester Nawrocki <s.nawrocki@samsung.com>
Doug Andersonb75e60d2013-06-16 15:17:46 -07008726L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8727L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8728S: Maintained
Sachin Kamat9b5b33f2014-07-11 14:29:50 +05308729F: drivers/pinctrl/samsung/
Doug Andersonb75e60d2013-06-16 15:17:46 -07008730
Tony Lindgren13cbd902015-12-10 14:27:32 -08008731PIN CONTROLLER - SINGLE
8732M: Tony Lindgren <tony@atomide.com>
8733M: Haojian Zhuang <haojian.zhuang@linaro.org>
8734L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8735L: linux-omap@vger.kernel.org
8736S: Maintained
8737F: drivers/pinctrl/pinctrl-single.c
8738
Viresh Kumardeda8282012-03-28 22:27:07 +05308739PIN CONTROLLER - ST SPEAR
Viresh Kumarda899472015-07-17 16:23:50 -07008740M: Viresh Kumar <vireshk@kernel.org>
Viresh Kumardeda8282012-03-28 22:27:07 +05308741L: spear-devel@list.st.com
8742L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8743W: http://www.st.com/spear
8744S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02008745F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05308746
Peter Osterlund249a6772005-09-27 21:45:30 -07008747PKTCDVD DRIVER
Jiri Kosinae5f64502015-08-09 09:11:34 +02008748M: Jiri Kosina <jikos@kernel.org>
Peter Osterlund249a6772005-09-27 21:45:30 -07008749S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008750F: drivers/block/pktcdvd.c
8751F: include/linux/pktcdvd.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008752F: include/uapi/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07008753
GuanXuetaob31d8272011-01-16 00:35:49 +08008754PKUNITY SOC DRIVERS
8755M: Guan Xuetao <gxt@mprc.pku.edu.cn>
8756W: http://mprc.pku.edu.cn/~guanxuetao/linux
8757S: Maintained
Guan Xuetaoceebf4d2014-05-27 07:53:10 +08008758T: git git://github.com/gxt/linux.git
GuanXuetaob31d8272011-01-16 00:35:49 +08008759F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08008760F: drivers/i2c/busses/i2c-puv3.c
Jingoo Han8a61f012014-07-01 15:36:01 +09008761F: drivers/video/fbdev/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08008762F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08008763
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07008764PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07008765M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07008766L: linux-hwmon@vger.kernel.org
8767W: http://hwmon.wiki.kernel.org/
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07008768W: http://www.roeck-us.net/linux/drivers/
8769T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8770S: Maintained
8771F: Documentation/hwmon/pmbus
8772F: drivers/hwmon/pmbus/
8773F: include/linux/i2c/pmbus.h
8774
Anil Ravindranath89a36812009-08-25 17:35:18 -07008775PMC SIERRA MaxRAID DRIVER
Anil Ravindranath89a36812009-08-25 17:35:18 -07008776L: linux-scsi@vger.kernel.org
8777W: http://www.pmc-sierra.com/
Joe Perches3cdea4d712015-09-09 15:36:14 -07008778S: Orphan
Anil Ravindranath89a36812009-08-25 17:35:18 -07008779F: drivers/scsi/pmcraid.*
8780
jack wangdbf9bfe2009-10-14 16:19:21 +08008781PMC SIERRA PM8001 DRIVER
Jack Wangd32477e2015-07-29 12:02:50 +02008782M: Jack Wang <jinpu.wang@profitbricks.com>
jack wangdbf9bfe2009-10-14 16:19:21 +08008783M: lindar_liu@usish.com
Suresh Thiagarajanf5a7b522014-07-30 17:37:43 +05308784L: pmchba@pmcs.com
jack wangdbf9bfe2009-10-14 16:19:21 +08008785L: linux-scsi@vger.kernel.org
8786S: Supported
8787F: drivers/scsi/pm8001/
8788
Linus Torvalds1da177e2005-04-16 15:20:36 -07008789POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07008790M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar981c3a42014-01-21 10:59:20 +01008791L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008792T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner5cee9642014-06-22 12:06:40 +02008793S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008794F: fs/timerfd.c
8795F: include/linux/timer*
Thomas Gleixner5cee9642014-06-22 12:06:40 +02008796F: kernel/time/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008797
Rafael J. Wysocki7b06a6d2015-12-05 01:54:47 +01008798POWER MANAGEMENT CORE
8799M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
8800L: linux-pm@vger.kernel.org
8801T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
8802S: Supported
8803F: drivers/base/power/
8804F: include/linux/pm.h
8805F: include/linux/pm_*
8806F: include/linux/powercap.h
8807F: drivers/powercap/
8808
Anton Vorontsov3be86142007-07-15 04:43:36 +04008809POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Sebastian Reichelad8464a2014-07-16 20:14:30 +02008810M: Sebastian Reichel <sre@kernel.org>
Dmitry Eremin-Solenikov57318932014-01-21 03:33:09 +04008811M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008812M: David Woodhouse <dwmw2@infradead.org>
Sebastian Reichelad8464a2014-07-16 20:14:30 +02008813L: linux-pm@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07008814T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04008815S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008816F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07008817F: drivers/power/
Sebastian Reichel26305022015-07-24 23:11:28 +02008818X: drivers/power/avs/
Anton Vorontsov3be86142007-07-15 04:43:36 +04008819
Mark Rutland514f1612015-07-31 15:46:20 +01008820POWER STATE COORDINATION INTERFACE (PSCI)
8821M: Mark Rutland <mark.rutland@arm.com>
8822M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
8823L: linux-arm-kernel@lists.infradead.org
8824S: Maintained
8825F: drivers/firmware/psci.c
8826F: include/linux/psci.h
8827F: include/uapi/linux/psci.h
8828
Linus Torvalds1da177e2005-04-16 15:20:36 -07008829PNP SUPPORT
Joe Perches9c3646d2015-06-25 15:02:00 -07008830M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008831S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008832F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008833
8834PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07008835M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008836L: linux-ppp@vger.kernel.org
8837S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07008838F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008839
8840PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07008841M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008842S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008843F: net/atm/pppoatm.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008844F: include/uapi/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008845
8846PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07008847M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008848S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07008849F: drivers/net/ppp/pppoe.c
8850F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008851
James Chapmana6d23702007-06-27 15:53:17 -07008852PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07008853M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07008854S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07008855F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07008856F: include/linux/if_pppol2tp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008857F: include/uapi/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07008858
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07008859PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07008860M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07008861W: http://wiki.enneenne.com/index.php/LinuxPPS_support
8862L: linuxpps@ml.enneenne.com (subscribers-only)
8863S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07008864F: Documentation/pps/
8865F: drivers/pps/
8866F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07008867
Harry Wei71a6d0a2011-05-11 15:13:33 -07008868PPTP DRIVER
8869M: Dmitry Kozlov <xeb@mail.ru>
8870L: netdev@vger.kernel.org
8871S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07008872F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07008873W: http://sourceforge.net/projects/accel-pptp
8874
Linus Torvalds1da177e2005-04-16 15:20:36 -07008875PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07008876M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008877L: kpreempt-tech@lists.sourceforge.net
8878W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
8879S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008880F: Documentation/preempt-locking.txt
8881F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008882
8883PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008884M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07008885L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04008886W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04008887S: Obsolete
Kalle Valoc12edfe2015-11-18 09:56:45 +02008888F: drivers/net/wireless/intersil/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008889
Masakazu Mokuno02c18892007-07-05 20:11:16 +09008890PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00008891M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09008892L: netdev@vger.kernel.org
Michael Ellermana14ab6b2015-05-01 13:20:25 +10008893L: linuxppc-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00008894S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07008895F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09008896
Geoff Levandf58a9d12006-11-23 00:46:51 +01008897PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00008898M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10008899L: linuxppc-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00008900S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008901F: arch/powerpc/boot/ps3*
8902F: arch/powerpc/include/asm/lv1call.h
8903F: arch/powerpc/include/asm/ps3*.h
8904F: arch/powerpc/platforms/ps3/
8905F: drivers/*/ps3*
8906F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00008907F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07008908F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00008909F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01008910
Jim Pariscffb4add2009-01-06 11:32:10 +00008911PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008912M: Jim Paris <jim@jtan.com>
Geoff Levand3715a5d2015-06-10 18:00:18 +00008913M: Geoff Levand <geoff@infradead.org>
Michael Ellermana14ab6b2015-05-01 13:20:25 +10008914L: linuxppc-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00008915S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07008916F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00008917
Anton Vorontsov8defe592012-08-03 18:07:20 -07008918PSTORE FILESYSTEM
Anton Vorontsov9d5e2a02013-06-09 09:41:23 -07008919M: Anton Vorontsov <anton@enomsg.org>
Anton Vorontsov8defe592012-08-03 18:07:20 -07008920M: Colin Cross <ccross@android.com>
8921M: Kees Cook <keescook@chromium.org>
8922M: Tony Luck <tony.luck@intel.com>
8923S: Maintained
Fengguang Wu9f273c22016-01-20 15:03:25 -08008924T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Anton Vorontsov8defe592012-08-03 18:07:20 -07008925F: fs/pstore/
8926F: include/linux/pstore*
Matt Fleming04851772013-02-08 15:48:51 +00008927F: drivers/firmware/efi/efi-pstore.c
Anton Vorontsov8defe592012-08-03 18:07:20 -07008928F: drivers/acpi/apei/erst.c
8929
Richard Cochran7fbc4152012-03-10 01:55:53 +00008930PTP HARDWARE CLOCK SUPPORT
8931M: Richard Cochran <richardcochran@gmail.com>
Jiri Bence7333e32013-03-26 04:01:12 +00008932L: netdev@vger.kernel.org
Richard Cochran7fbc4152012-03-10 01:55:53 +00008933S: Maintained
8934W: http://linuxptp.sourceforge.net/
8935F: Documentation/ABI/testing/sysfs-ptp
8936F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07008937F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00008938F: drivers/net/phy/dp83640*
8939F: drivers/ptp/*
8940F: include/linux/ptp_cl*
8941
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07008942PTRACE SUPPORT
Richard Weinbergere846ee52014-08-08 14:23:46 -07008943M: Roland McGrath <roland@hack.frob.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008944M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07008945S: Maintained
8946F: include/asm-generic/syscall.h
8947F: include/linux/ptrace.h
8948F: include/linux/regset.h
8949F: include/linux/tracehook.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008950F: include/uapi/linux/ptrace.h
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07008951F: kernel/ptrace.c
8952
Michael Krufky83202042006-07-03 00:24:18 -07008953PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008954M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03008955L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008956L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07008957W: http://www.isely.net/pvrusb2/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008958T: git git://linuxtv.org/media_tree.git
Michael Krufky83202042006-07-03 00:24:18 -07008959S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008960F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008961F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07008962
Hans de Goede39532e62012-11-04 17:05:59 -03008963PWC WEBCAM DRIVER
8964M: Hans de Goede <hdegoede@redhat.com>
8965L: linux-media@vger.kernel.org
8966T: git git://linuxtv.org/media_tree.git
8967S: Maintained
8968F: drivers/media/usb/pwc/*
8969
Kamil Debski93c090b2014-08-20 11:29:23 +02008970PWM FAN DRIVER
8971M: Kamil Debski <k.debski@samsung.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07008972L: linux-hwmon@vger.kernel.org
Kamil Debski93c090b2014-08-20 11:29:23 +02008973S: Supported
8974F: Documentation/devicetree/bindings/hwmon/pwm-fan.txt
8975F: Documentation/hwmon/pwm-fan
8976F: drivers/hwmon/pwm-fan.c
8977
Thierry Reding200efed2012-03-27 13:16:18 +02008978PWM SUBSYSTEM
Thierry Redingaa3495f2013-05-06 12:50:36 +02008979M: Thierry Reding <thierry.reding@gmail.com>
8980L: linux-pwm@vger.kernel.org
Sascha Hauer0c2498f2011-01-28 09:40:40 +01008981S: Maintained
Thierry Reding006e8542013-11-01 11:15:05 +01008982T: git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
Thierry Reding200efed2012-03-27 13:16:18 +02008983F: Documentation/pwm.txt
8984F: Documentation/devicetree/bindings/pwm/
8985F: include/linux/pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01008986F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07008987F: drivers/video/backlight/pwm_bl.c
8988F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01008989
Eric Miao30ec2612008-06-12 15:21:41 -07008990PXA2xx/PXA3xx SUPPORT
Robert Jarzmik8da5e302014-09-24 23:08:00 +02008991M: Daniel Mack <daniel@zonque.org>
Haojian Zhuanga323f662012-03-14 18:33:07 +08008992M: Haojian Zhuang <haojian.zhuang@gmail.com>
Robert Jarzmik8da5e302014-09-24 23:08:00 +02008993M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -07008994L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08008995T: git git://github.com/hzhuang1/linux.git
Robert Jarzmik8da5e302014-09-24 23:08:00 +02008996T: git git://github.com/rjarzmik/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008997S: Maintained
Rob Herringe68d7c12015-12-10 17:38:23 -06008998F: arch/arm/boot/dts/pxa*
Joe Perches679655d2009-04-07 20:44:32 -07008999F: arch/arm/mach-pxa/
Robert Jarzmik820439f2015-05-25 23:29:19 +02009000F: drivers/dma/pxa*
Joe Perches679655d2009-04-07 20:44:32 -07009001F: drivers/pcmcia/pxa2xx*
Robert Jarzmik1403ead2015-11-21 19:04:48 +01009002F: drivers/pinctrl/pxa/
Joe Perches9df92e62012-01-10 15:09:06 -08009003F: drivers/spi/spi-pxa2xx*
Joe Perchesfaf2e1d2014-08-08 14:26:18 -07009004F: drivers/usb/gadget/udc/pxa2*
Joe Perches679655d2009-04-07 20:44:32 -07009005F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01009006F: sound/arm/pxa*
Joe Perches14430812013-09-11 14:23:50 -07009007F: sound/soc/pxa/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009008
Robert Jarzmikf3154a42015-12-18 22:41:34 +01009009PXA GPIO DRIVER
9010M: Robert Jarzmik <robert.jarzmik@free.fr>
9011L: linux-gpio@vger.kernel.org
9012S: Maintained
9013F: drivers/gpio/gpio-pxa.c
9014
Ezequiel Garciaec64d3b2013-12-04 15:28:46 -08009015PXA3xx NAND FLASH DRIVER
9016M: Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
9017L: linux-mtd@lists.infradead.org
9018S: Maintained
Joe Perches9a67f092014-08-08 14:25:10 -07009019F: drivers/mtd/nand/pxa3xx_nand.c
Ezequiel Garciaec64d3b2013-12-04 15:28:46 -08009020
Haojian Zhuang3f640c62011-12-09 09:58:41 +08009021MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07009022M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08009023M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08009024L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08009025T: git git://github.com/hzhuang1/linux.git
9026T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08009027S: Maintained
Rob Herringe68d7c12015-12-10 17:38:23 -06009028F: arch/arm/boot/dts/mmp*
Haojian Zhuang3f640c62011-12-09 09:58:41 +08009029F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08009030
Pierre Ossman272f1332007-05-14 21:25:26 +02009031PXA MMCI DRIVER
9032S: Orphan
9033
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08009034PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009035M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08009036L: rtc-linux@googlegroups.com
9037S: Maintained
9038
Tadeusz Strukcea40012014-06-05 13:44:39 -07009039QAT DRIVER
Joe Perches49e7d9d2015-04-15 16:17:31 -07009040M: Tadeusz Struk <tadeusz.struk@intel.com>
9041L: qat-linux@intel.com
9042S: Supported
9043F: drivers/crypto/qat/
Tadeusz Strukcea40012014-06-05 13:44:39 -07009044
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07009045QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04009046M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07009047L: linux-rdma@vger.kernel.org
9048S: Supported
9049F: drivers/infiniband/hw/qib/
9050
Jes Sorensen5e9772b2010-06-30 15:37:38 +02009051QLOGIC QLA1280 SCSI DRIVER
9052M: Michael Reed <mdr@sgi.com>
9053L: linux-scsi@vger.kernel.org
9054S: Maintained
9055F: drivers/scsi/qla1280.[ch]
9056
Linus Torvalds1da177e2005-04-16 15:20:36 -07009057QLOGIC QLA2XXX FC-SCSI DRIVER
Saurav Kashyap2c804eb2013-10-30 03:38:28 -04009058M: qla2xxx-upstream@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07009059L: linux-scsi@vger.kernel.org
9060S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009061F: Documentation/scsi/LICENSE.qla2xxx
9062F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009063
Ravi Anand883c98f2010-04-28 11:45:49 +05309064QLOGIC QLA4XXX iSCSI DRIVER
Nilesh Javali1018b8b2015-01-07 00:49:23 -05009065M: QLogic-Storage-Upstream@qlogic.com
Ravi Anand883c98f2010-04-28 11:45:49 +05309066L: linux-scsi@vger.kernel.org
9067S: Supported
Vikas Chaudharybacfb812013-07-11 02:09:43 -04009068F: Documentation/scsi/LICENSE.qla4xxx
Ravi Anand883c98f2010-04-28 11:45:49 +05309069F: drivers/scsi/qla4xxx/
9070
Ron Mercer5a4faa872006-07-25 00:40:21 -07009071QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00009072M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07009073M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa872006-07-25 00:40:21 -07009074M: linux-driver@qlogic.com
9075L: netdev@vger.kernel.org
9076S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009077F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07009078F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07009079
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00009080QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Shahed Shaikh9f35a3c2014-08-27 12:43:21 -04009081M: Dept-GELinuxNICDev@qlogic.com
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00009082L: netdev@vger.kernel.org
9083S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07009084F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00009085
Ron Mercerc4e84bd2008-09-18 11:56:28 -04009086QLOGIC QLGE 10Gb ETHERNET DRIVER
Harish Patilc9b1a5b2014-09-18 17:27:25 -04009087M: Harish Patil <harish.patil@qlogic.com>
9088M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
9089M: Dept-GELinuxNICDev@qlogic.com
Joe Perches4cbfbe22009-07-29 15:04:21 -07009090M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04009091L: netdev@vger.kernel.org
9092S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07009093F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04009094
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02009095QLOGIC QL4xxx ETHERNET DRIVER
9096M: Yuval Mintz <Yuval.Mintz@qlogic.com>
9097M: Ariel Elior <Ariel.Elior@qlogic.com>
9098M: everest-linux-l2@qlogic.com
9099L: netdev@vger.kernel.org
9100S: Supported
9101F: drivers/net/ethernet/qlogic/qed/
9102F: include/linux/qed/
9103F: drivers/net/ethernet/qlogic/qede/
9104
Linus Torvalds1da177e2005-04-16 15:20:36 -07009105QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07009106M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009107W: http://www.alarsen.net/linux/qnx4fs/
9108S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07009109F: fs/qnx4/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009110F: include/uapi/linux/qnx4_fs.h
9111F: include/uapi/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009112
Antti Palosaari91952bc2012-10-01 12:28:46 -03009113QT1010 MEDIA DRIVER
9114M: Antti Palosaari <crope@iki.fi>
9115L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009116W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03009117W: http://palosaari.fi/linux/
9118Q: http://patchwork.linuxtv.org/project/linux-media/list/
9119T: git git://linuxtv.org/anttip/media_tree.git
9120S: Maintained
9121F: drivers/media/tuners/qt1010*
9122
Sujith Manoharan966fb5e2013-11-06 10:43:27 +05309123QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
9124M: QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
9125L: linux-wireless@vger.kernel.org
9126L: ath9k-devel@lists.ath9k.org
9127W: http://wireless.kernel.org/en/users/Drivers/ath9k
9128S: Supported
9129F: drivers/net/wireless/ath/ath9k/
9130
Kalle Valo2ea0ffc2013-07-22 12:22:19 +03009131QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
9132M: Kalle Valo <kvalo@qca.qualcomm.com>
9133L: ath10k@lists.infradead.org
9134W: http://wireless.kernel.org/en/users/Drivers/ath10k
Fengguang Wu9f273c22016-01-20 15:03:25 -08009135T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
Kalle Valo2ea0ffc2013-07-22 12:22:19 +03009136S: Supported
9137F: drivers/net/wireless/ath/ath10k/
9138
Richard Kuo4f4567c2011-10-31 18:56:38 -05009139QUALCOMM HEXAGON ARCHITECTURE
9140M: Richard Kuo <rkuo@codeaurora.org>
9141L: linux-hexagon@vger.kernel.org
Fengguang Wu9f273c22016-01-20 15:03:25 -08009142T: git git://git.kernel.org/pub/scm/linux/kernel/git/rkuo/linux-hexagon-kernel.git
Richard Kuo4f4567c2011-10-31 18:56:38 -05009143S: Supported
9144F: arch/hexagon/
9145
Eugene Krasnikov8e84c252013-10-08 21:25:58 +01009146QUALCOMM WCN36XX WIRELESS DRIVER
9147M: Eugene Krasnikov <k.eugene.e@gmail.com>
9148L: wcn36xx@lists.infradead.org
9149W: http://wireless.kernel.org/en/users/Drivers/wcn36xx
9150T: git git://github.com/KrasnikovEugene/wcn36xx.git
9151S: Supported
9152F: drivers/net/wireless/ath/wcn36xx/
9153
Michael S. Tsirkineeca9a62016-04-05 11:26:44 +03009154QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
9155M: Gabriel Somlo <somlo@cmu.edu>
9156M: "Michael S. Tsirkin" <mst@redhat.com>
9157L: qemu-devel@nongnu.org
9158S: Maintained
9159F: drivers/firmware/qemu_fw_cfg.c
9160
Yehuda Sadeh602adf42010-08-12 16:11:25 -07009161RADOS BLOCK DEVICE (RBD)
Sage Weil0f5417c2015-02-19 10:10:40 -08009162M: Ilya Dryomov <idryomov@gmail.com>
9163M: Sage Weil <sage@redhat.com>
Alex Elder527a88b2013-12-26 08:37:43 -06009164M: Alex Elder <elder@kernel.org>
Sage Weil398ecff52015-07-09 11:46:14 -04009165L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07009166W: http://ceph.com/
9167T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil6e67b7a2015-07-09 11:47:37 -04009168T: git git://github.com/ceph/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07009169S: Supported
Sage Weil398ecff52015-07-09 11:46:14 -04009170F: Documentation/ABI/testing/sysfs-bus-rbd
Yehuda Sadeh602adf42010-08-12 16:11:25 -07009171F: drivers/block/rbd.c
9172F: drivers/block/rbd_types.h
9173
Linus Torvalds1da177e2005-04-16 15:20:36 -07009174RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009175M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01009176L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07009177S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09009178F: drivers/video/fbdev/aty/radeon*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009179F: include/uapi/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009180
Hans de Goedec6c9b342012-11-04 17:03:58 -03009181RADIOSHARK RADIO DRIVER
9182M: Hans de Goede <hdegoede@redhat.com>
9183L: linux-media@vger.kernel.org
9184T: git git://linuxtv.org/media_tree.git
9185S: Maintained
9186F: drivers/media/radio/radio-shark.c
9187
9188RADIOSHARK2 RADIO DRIVER
9189M: Hans de Goede <hdegoede@redhat.com>
9190L: linux-media@vger.kernel.org
9191T: git git://linuxtv.org/media_tree.git
9192S: Maintained
9193F: drivers/media/radio/radio-shark2.c
9194F: drivers/media/radio/radio-tea5777.c
9195
Linus Torvalds1da177e2005-04-16 15:20:36 -07009196RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009197M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01009198L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07009199S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09009200F: drivers/video/fbdev/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07009201
John Crispina0fd81a2016-01-04 20:28:13 +01009202RALINK MIPS ARCHITECTURE
9203M: John Crispin <blogic@openwrt.org>
9204L: linux-mips@linux-mips.org
9205S: Maintained
9206F: arch/mips/ralink
9207
Randy Dunlape7839f22008-10-12 16:11:45 -07009208RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07009209P: rt2x00 project
Stanislaw Gruszkab1824272014-09-28 14:03:06 +02009210M: Stanislaw Gruszka <sgruszka@redhat.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01009211M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07009212L: linux-wireless@vger.kernel.org
Ivo van Doorn95ea3622007-09-25 17:57:13 -07009213S: Maintained
Kalle Valo33aca942015-11-18 10:18:44 +02009214F: drivers/net/wireless/ralink/rt2x00/
Ivo van Doorn95ea3622007-09-25 17:57:13 -07009215
Nick Piggin9db55792008-02-08 04:19:49 -08009216RAMDISK RAM BLOCK DEVICE DRIVER
Ross Zwislerea7618e2015-03-17 12:56:30 -06009217M: Jens Axboe <axboe@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08009218S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009219F: Documentation/blockdev/ramdisk.txt
9220F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08009221
Matt Mackall9e95ce22005-04-16 15:25:56 -07009222RANDOM NUMBER DRIVER
Christoph Hellwig0624bca2014-04-25 01:12:01 -07009223M: "Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07009224S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009225F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07009226
Matt Porter394b7012005-11-07 01:00:15 -08009227RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07009228M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08009229M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08009230S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009231F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08009232
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009233RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009234L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04009235S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07009236F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009237
9238RCUTORTURE MODULE
Josh Triplette0198b22014-07-30 16:08:42 -07009239M: Josh Triplett <josh@joshtriplett.org>
Joe Perches8b58be82009-07-29 15:04:30 -07009240M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +01009241L: linux-kernel@vger.kernel.org
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08009242S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07009243T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07009244F: Documentation/RCU/torture.txt
Joe Perches34e2d562014-07-03 15:08:00 -07009245F: kernel/rcu/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009246
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -07009247RCUTORTURE TEST FRAMEWORK
9248M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyab0afd62014-06-03 08:17:06 -07009249M: Josh Triplett <josh@joshtriplett.org>
Paul E. McKenney4632a192014-05-30 15:37:24 -07009250R: Steven Rostedt <rostedt@goodmis.org>
9251R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Lai Jiangshan96a39bc2015-07-01 15:26:27 +08009252R: Lai Jiangshan <jiangshanlai@gmail.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +01009253L: linux-kernel@vger.kernel.org
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -07009254S: Supported
9255T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9256F: tools/testing/selftests/rcutorture
9257
Florian Fainellic1f766b2008-02-06 22:39:44 +01009258RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07009259M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01009260S: Maintained
9261
Florian Fainellidb17f392007-12-19 11:30:30 +01009262RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009263M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f392007-12-19 11:30:30 +01009264L: netdev@vger.kernel.org
9265S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07009266F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01009267
Andy Grovera09ed662009-02-24 15:30:41 +00009268RDS - RELIABLE DATAGRAM SOCKETS
santosh.shilimkar@oracle.com72f26ee2016-03-01 15:20:44 -08009269M: Santosh Shilimkar <santosh.shilimkar@oracle.com>
9270L: netdev@vger.kernel.org
9271L: linux-rdma@vger.kernel.org
Kyle McMartinfbb5a552009-04-09 14:09:47 +00009272L: rds-devel@oss.oracle.com (moderated for non-subscribers)
santosh.shilimkar@oracle.com72f26ee2016-03-01 15:20:44 -08009273W: https://oss.oracle.com/projects/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00009274S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009275F: net/rds/
santosh.shilimkar@oracle.com72f26ee2016-03-01 15:20:44 -08009276F: Documentation/networking/rds.txt
Andy Grovera09ed662009-02-24 15:30:41 +00009277
Dennis Dalessandro01946212016-01-06 09:50:24 -08009278RDMAVT - RDMA verbs software
9279M: Dennis Dalessandro <dennis.dalessandro@intel.com>
9280L: linux-rdma@vger.kernel.org
9281S: Supported
9282F: drivers/infiniband/sw/rdmavt
9283
Josh Triplett595182b2006-10-04 02:17:21 -07009284READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07009285M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyab0afd62014-06-03 08:17:06 -07009286M: Josh Triplett <josh@joshtriplett.org>
Paul E. McKenney4632a192014-05-30 15:37:24 -07009287R: Steven Rostedt <rostedt@goodmis.org>
9288R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Lai Jiangshan96a39bc2015-07-01 15:26:27 +08009289R: Lai Jiangshan <jiangshanlai@gmail.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +01009290L: linux-kernel@vger.kernel.org
Paul E. McKenney9fab97872012-05-07 09:36:34 -07009291W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07009292S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07009293T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08009294F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07009295X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08009296F: include/linux/rcu*
Paul E. McKenney4102ada2013-10-08 20:23:47 -07009297X: include/linux/srcu.h
9298F: kernel/rcu/
Joe Perches34e2d562014-07-03 15:08:00 -07009299X: kernel/torture.c
Josh Triplett595182b2006-10-04 02:17:21 -07009300
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08009301REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07009302M: Alessandro Zummo <a.zummo@towertech.it>
Alexandre Belloni7c6f84f2015-04-16 12:45:43 -07009303M: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Alessandro Zummo76465492006-12-10 02:19:06 -08009304L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08009305Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alexandre Belloni4733f392015-05-26 11:13:04 +02009306T: git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08009307S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009308F: Documentation/rtc.txt
9309F: drivers/rtc/
9310F: include/linux/rtc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009311F: include/uapi/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08009312
Mark Brown0e400c52014-07-31 12:38:31 +01009313REALTEK AUDIO CODECS
9314M: Bard Liao <bardliao@realtek.com>
9315M: Oder Chiou <oder_chiou@realtek.com>
9316S: Maintained
9317F: sound/soc/codecs/rt*
9318F: include/sound/rt*.h
9319
Linus Torvalds1da177e2005-04-16 15:20:36 -07009320REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07009321L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07009322S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009323F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009324
Mark Brownb83a3132011-05-11 19:59:58 +02009325REGISTER MAP ABSTRACTION
Mark Brownb02e48f2013-04-12 11:39:57 +01009326M: Mark Brown <broonie@kernel.org>
Mark Browndd060bc2014-08-16 12:30:58 +01009327L: linux-kernel@vger.kernel.org
Mark Brownb83a3132011-05-11 19:59:58 +02009328T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
9329S: Supported
9330F: drivers/base/regmap/
9331F: include/linux/regmap.h
9332
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02009333REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
9334M: Ohad Ben-Cohen <ohad@wizery.com>
Bjorn Andersson69ae9892016-02-13 17:35:19 -08009335M: Bjorn Andersson <bjorn.andersson@linaro.org>
Bjorn Anderssond7586842016-03-21 22:43:54 -07009336L: linux-remoteproc@vger.kernel.org
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03009337T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02009338S: Maintained
9339F: drivers/remoteproc/
9340F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07009341F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02009342
Ohad Ben-Cohend8115db2013-04-16 20:34:49 +03009343REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
9344M: Ohad Ben-Cohen <ohad@wizery.com>
Bjorn Andersson69ae9892016-02-13 17:35:19 -08009345M: Bjorn Andersson <bjorn.andersson@linaro.org>
Bjorn Anderssond7586842016-03-21 22:43:54 -07009346L: linux-remoteproc@vger.kernel.org
Ohad Ben-Cohend8115db2013-04-16 20:34:49 +03009347T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
9348S: Maintained
9349F: drivers/rpmsg/
9350F: Documentation/rpmsg.txt
9351F: include/linux/rpmsg.h
9352
Sergei Shtylyov8e6569a2015-12-05 04:50:48 +03009353RENESAS ETHERNET DRIVERS
9354R: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
9355L: netdev@vger.kernel.org
Simon Horman4a121092016-01-18 10:04:33 +09009356L: linux-renesas-soc@vger.kernel.org
Sergei Shtylyov8e6569a2015-12-05 04:50:48 +03009357F: drivers/net/ethernet/renesas/
9358F: include/linux/sh_eth.h
9359
Yoshihiro Shimoda3e46c392015-11-30 10:44:33 +09009360RENESAS USB2 PHY DRIVER
9361M: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
Simon Horman4a121092016-01-18 10:04:33 +09009362L: linux-renesas-soc@vger.kernel.org
Yoshihiro Shimoda3e46c392015-11-30 10:44:33 +09009363S: Maintained
9364F: drivers/phy/phy-rcar-gen3-usb2.c
9365
Philipp Zabel1b0fe6b2014-05-27 15:58:09 +02009366RESET CONTROLLER FRAMEWORK
9367M: Philipp Zabel <p.zabel@pengutronix.de>
Fengguang Wu9f273c22016-01-20 15:03:25 -08009368T: git git://git.pengutronix.de/git/pza/linux
Philipp Zabel1b0fe6b2014-05-27 15:58:09 +02009369S: Maintained
9370F: drivers/reset/
9371F: Documentation/devicetree/bindings/reset/
Philipp Zabelb2f6dd72015-02-13 12:14:40 +01009372F: include/dt-bindings/reset/
Philipp Zabel1b0fe6b2014-05-27 15:58:09 +02009373F: include/linux/reset.h
9374F: include/linux/reset-controller.h
9375
Ivo van Doorne08976452008-04-12 19:23:55 +02009376RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07009377M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02009378L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02009379W: http://wireless.kernel.org/
9380T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
9381T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02009382S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08009383F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07009384F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02009385
Thomas Graf933685c2015-01-13 01:01:24 +01009386RHASHTABLE
9387M: Thomas Graf <tgraf@suug.ch>
9388L: netdev@vger.kernel.org
9389S: Maintained
9390F: lib/rhashtable.c
9391F: include/linux/rhashtable.h
9392
Maxim Levitsky67e054e2010-02-22 20:39:42 +02009393RICOH SMARTMEDIA/XD DRIVER
9394M: Maxim Levitsky <maximlevitsky@gmail.com>
9395S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07009396F: drivers/mtd/nand/r852.c
9397F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02009398
Maxim Levitsky92634122011-03-25 01:56:59 -07009399RICOH R5C592 MEMORYSTICK DRIVER
9400M: Maxim Levitsky <maximlevitsky@gmail.com>
9401S: Maintained
9402F: drivers/memstick/host/r592.*
9403
Stefan Achatz27f1d2f2013-09-05 06:36:01 +02009404ROCCAT DRIVERS
9405M: Stefan Achatz <erazor_de@users.sourceforge.net>
9406W: http://sourceforge.net/projects/roccat/
9407S: Maintained
9408F: drivers/hid/hid-roccat*
9409F: include/linux/hid-roccat*
9410F: Documentation/ABI/*/sysfs-driver-hid-roccat*
9411
Jiri Pirko4b8ac962014-11-28 14:34:26 +01009412ROCKER DRIVER
9413M: Jiri Pirko <jiri@resnulli.us>
9414M: Scott Feldman <sfeldma@gmail.com>
9415L: netdev@vger.kernel.org
9416S: Supported
9417F: drivers/net/ethernet/rocker/
9418
Linus Torvalds1da177e2005-04-16 15:20:36 -07009419ROCKETPORT DRIVER
9420P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009421W: http://www.comtrol.com
9422S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009423F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07009424F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009425
Kevin Cernekee7645c2f2014-10-21 15:23:06 -07009426ROCKETPORT EXPRESS/INFINITY DRIVER
9427M: Kevin Cernekee <cernekee@gmail.com>
9428L: linux-serial@vger.kernel.org
9429S: Odd Fixes
9430F: drivers/tty/serial/rp2.*
9431
Linus Torvalds1da177e2005-04-16 15:20:36 -07009432ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07009433M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009434L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02009435W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009436S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009437F: include/net/rose.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009438F: include/uapi/linux/rose.h
Joe Perches679655d2009-04-07 20:44:32 -07009439F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009440
Antti Palosaari91952bc2012-10-01 12:28:46 -03009441RTL2830 MEDIA DRIVER
9442M: Antti Palosaari <crope@iki.fi>
9443L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009444W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03009445W: http://palosaari.fi/linux/
9446Q: http://patchwork.linuxtv.org/project/linux-media/list/
9447T: git git://linuxtv.org/anttip/media_tree.git
9448S: Maintained
9449F: drivers/media/dvb-frontends/rtl2830*
9450
Antti Palosaari27a0aac2013-04-09 20:30:43 -03009451RTL2832 MEDIA DRIVER
9452M: Antti Palosaari <crope@iki.fi>
9453L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009454W: https://linuxtv.org
Antti Palosaari27a0aac2013-04-09 20:30:43 -03009455W: http://palosaari.fi/linux/
9456Q: http://patchwork.linuxtv.org/project/linux-media/list/
9457T: git git://linuxtv.org/anttip/media_tree.git
9458S: Maintained
9459F: drivers/media/dvb-frontends/rtl2832*
9460
Antti Palosaariba6e6f62014-02-03 00:00:32 -03009461RTL2832_SDR MEDIA DRIVER
9462M: Antti Palosaari <crope@iki.fi>
9463L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009464W: https://linuxtv.org
Antti Palosaariba6e6f62014-02-03 00:00:32 -03009465W: http://palosaari.fi/linux/
9466Q: http://patchwork.linuxtv.org/project/linux-media/list/
9467T: git git://linuxtv.org/anttip/media_tree.git
9468S: Maintained
Antti Palosaarib4bb1c22014-07-14 21:19:29 -03009469F: drivers/media/dvb-frontends/rtl2832_sdr*
Antti Palosaariba6e6f62014-02-03 00:00:32 -03009470
Larry Finger59840482008-11-12 17:13:09 -06009471RTL8180 WIRELESS DRIVER
Michael Wu605bebe2007-05-14 01:41:02 -04009472L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02009473W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07009474T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
John W. Linville7be6ff62014-12-04 16:52:41 -05009475S: Orphan
Kalle Valo62141722015-11-18 10:09:24 +02009476F: drivers/net/wireless/realtek/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04009477
Larry Finger59840482008-11-12 17:13:09 -06009478RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03009479M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07009480M: Hin-Tak Leung <htl10@users.sourceforge.net>
9481M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07009482L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02009483W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07009484T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07009485S: Maintained
Kalle Valo62141722015-11-18 10:09:24 +02009486F: drivers/net/wireless/realtek/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06009487
Larry Finger3cf0c8a2010-12-16 09:13:21 -06009488RTL8192CE WIRELESS DRIVER
9489M: Larry Finger <Larry.Finger@lwfinger.net>
9490M: Chaoming Li <chaoming_li@realsil.com.cn>
9491L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02009492W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06009493T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9494S: Maintained
Kalle Valo62141722015-11-18 10:09:24 +02009495F: drivers/net/wireless/realtek/rtlwifi/
9496F: drivers/net/wireless/realtek/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02009497
Jes Sorensen26f1fad2015-10-14 20:44:51 -04009498RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
9499M: Jes Sorensen <Jes.Sorensen@redhat.com>
9500L: linux-wireless@vger.kernel.org
9501T: git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8723au-mac80211
9502S: Maintained
9503F: drivers/net/wireless/realtek/rtl8xxxu/
9504
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08009505S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009506M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01009507L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08009508S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09009509F: drivers/video/fbdev/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08009510
Linus Torvalds1da177e2005-04-16 15:20:36 -07009511S390
Joe Perches8b58be82009-07-29 15:04:30 -07009512M: Martin Schwidefsky <schwidefsky@de.ibm.com>
9513M: Heiko Carstens <heiko.carstens@de.ibm.com>
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01009514L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08009515W: http://www.ibm.com/developerworks/linux/linux390/
Fengguang Wu9f273c22016-01-20 15:03:25 -08009516T: git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
Heiko Carstens5238da42006-02-11 17:56:01 -08009517S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009518F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01009519F: drivers/s390/
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02009520F: Documentation/s390/
9521F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08009522
Sebastian Ott322986c2014-02-17 15:16:30 +01009523S390 COMMON I/O LAYER
9524M: Sebastian Ott <sebott@linux.vnet.ibm.com>
9525M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
9526L: linux-s390@vger.kernel.org
9527W: http://www.ibm.com/developerworks/linux/linux390/
9528S: Supported
9529F: drivers/s390/cio/
9530
9531S390 DASD DRIVER
9532M: Stefan Weinhuber <wein@de.ibm.com>
9533M: Stefan Haberland <stefan.haberland@de.ibm.com>
9534L: linux-s390@vger.kernel.org
9535W: http://www.ibm.com/developerworks/linux/linux390/
9536S: Supported
9537F: drivers/s390/block/dasd*
9538F: block/partitions/ibm.c
9539
Heiko Carstens5238da42006-02-11 17:56:01 -08009540S390 NETWORK DRIVERS
Ursula Braunf0c59af2015-12-11 12:27:52 +01009541M: Ursula Braun <ubraun@linux.vnet.ibm.com>
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01009542L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08009543W: http://www.ibm.com/developerworks/linux/linux390/
9544S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009545F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08009546
Sebastian Ott322986c2014-02-17 15:16:30 +01009547S390 PCI SUBSYSTEM
9548M: Sebastian Ott <sebott@linux.vnet.ibm.com>
9549M: Gerald Schaefer <gerald.schaefer@de.ibm.com>
9550L: linux-s390@vger.kernel.org
9551W: http://www.ibm.com/developerworks/linux/linux390/
9552S: Supported
9553F: arch/s390/pci/
9554F: drivers/pci/hotplug/s390_pci_hpc.c
9555
Felix Beckfeed9b62009-03-26 15:24:23 +01009556S390 ZCRYPT DRIVER
Ingo Tuchscherer5c8d0982013-01-14 10:07:05 +01009557M: Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01009558L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01009559W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01009560S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07009561F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01009562
Heiko Carstens5238da42006-02-11 17:56:01 -08009563S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01009564M: Steffen Maier <maier@linux.vnet.ibm.com>
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01009565L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08009566W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009567S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009568F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009569
Ursula Braundd96df22007-09-19 13:09:02 +02009570S390 IUCV NETWORK LAYER
Ursula Braunf0c59af2015-12-11 12:27:52 +01009571M: Ursula Braun <ubraun@linux.vnet.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02009572L: linux-s390@vger.kernel.org
9573W: http://www.ibm.com/developerworks/linux/linux390/
9574S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009575F: drivers/s390/net/*iucv*
9576F: include/net/iucv/
9577F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02009578
Gerald Schaefer8128f23c2015-08-27 15:33:03 +02009579S390 IOMMU (PCI)
9580M: Gerald Schaefer <gerald.schaefer@de.ibm.com>
9581L: linux-s390@vger.kernel.org
9582W: http://www.ibm.com/developerworks/linux/linux390/
9583S: Supported
9584F: drivers/iommu/s390-iommu.c
9585
Ben Dooks4dde7f72008-06-30 22:40:38 +01009586S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07009587M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07009588L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01009589S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009590F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01009591
Hans Verkuil1f15a222012-11-23 07:45:29 -03009592SAA6588 RDS RECEIVER DRIVER
9593M: Hans Verkuil <hverkuil@xs4all.nl>
9594L: linux-media@vger.kernel.org
9595T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009596W: https://linuxtv.org
Hans Verkuil1f15a222012-11-23 07:45:29 -03009597S: Odd Fixes
9598F: drivers/media/i2c/saa6588*
9599
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02009600SAA7134 VIDEO4LINUX DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02009601M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02009602L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009603W: https://linuxtv.org
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02009604T: git git://linuxtv.org/media_tree.git
9605S: Odd fixes
Cesar Eduardo Barrose42bf502013-03-02 21:53:47 -03009606F: Documentation/video4linux/*.saa7134
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02009607F: drivers/media/pci/saa7134/
9608
Linus Torvalds1da177e2005-04-16 15:20:36 -07009609SAA7146 VIDEO4LINUX-2 DRIVER
Hans Verkuil566b8152012-11-23 09:58:12 -03009610M: Hans Verkuil <hverkuil@xs4all.nl>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03009611L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02009612T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07009613S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03009614F: drivers/media/common/saa7146/
9615F: drivers/media/pci/saa7146/
9616F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009617
Corentin Chary92304a42011-12-05 12:38:35 -05009618SAMSUNG LAPTOP DRIVER
Corentin Chary5909c652012-12-17 16:00:05 -08009619M: Corentin Chary <corentin.chary@gmail.com>
Corentin Chary92304a42011-12-05 12:38:35 -05009620L: platform-driver-x86@vger.kernel.org
9621S: Maintained
9622F: drivers/platform/x86/samsung-laptop.c
9623
Mark Brown4a109cc2010-09-24 10:50:46 +01009624SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09009625M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01009626L: alsa-devel@alsa-project.org (moderated for non-subscribers)
9627S: Supported
Joe Perches14430812013-09-11 14:23:50 -07009628F: sound/soc/samsung/
Mark Brown4a109cc2010-09-24 10:50:46 +01009629
Jingoo Han0d89a282011-12-19 11:09:35 +09009630SAMSUNG FRAMEBUFFER DRIVER
Jingoo Hanb7701752015-05-14 15:17:07 -07009631M: Jingoo Han <jingoohan1@gmail.com>
Jingoo Han0d89a282011-12-19 11:09:35 +09009632L: linux-fbdev@vger.kernel.org
9633S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09009634F: drivers/video/fbdev/s3c-fb.c
Jingoo Han0d89a282011-12-19 11:09:35 +09009635
Krzysztof Kozlowskib40f0632015-05-06 14:19:36 +09009636SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09009637M: Sangbeom Kim <sbkim73@samsung.com>
Krzysztof Kozlowskib40f0632015-05-06 14:19:36 +09009638M: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09009639L: linux-kernel@vger.kernel.org
Krzysztof Kozlowskib40f0632015-05-06 14:19:36 +09009640L: linux-samsung-soc@vger.kernel.org
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09009641S: Supported
9642F: drivers/mfd/sec*.c
9643F: drivers/regulator/s2m*.c
9644F: drivers/regulator/s5m*.c
Krzysztof Kozlowskib40f0632015-05-06 14:19:36 +09009645F: drivers/clk/clk-s2mps11.c
9646F: drivers/rtc/rtc-s5m.c
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09009647F: include/linux/mfd/samsung/
Krzysztof Kozlowskia13c7c52015-12-04 10:10:03 +09009648F: Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
9649F: Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
Krzysztof Kozlowski27383ca2015-12-04 10:10:04 +09009650F: Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
Krzysztof Kozlowskia13c7c52015-12-04 10:10:03 +09009651F: Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09009652
Sylwester Nawrocki038f5c42013-05-28 18:26:20 -03009653SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
9654M: Kyungmin Park <kyungmin.park@samsung.com>
9655M: Sylwester Nawrocki <s.nawrocki@samsung.com>
9656L: linux-media@vger.kernel.org
9657Q: https://patchwork.linuxtv.org/project/linux-media/list/
9658S: Supported
9659F: drivers/media/platform/exynos4-is/
Sylwester Nawrocki038f5c42013-05-28 18:26:20 -03009660
Sylwester Nawrocki6fd86ab2012-11-15 18:05:15 -03009661SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
9662M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
9663L: linux-media@vger.kernel.org
9664L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9665S: Maintained
9666F: drivers/media/platform/s3c-camif/
Mauro Carvalho Chehabd647f0b2015-11-13 19:40:07 -02009667F: include/media/drv-intf/s3c_camif.h
Sylwester Nawrocki6fd86ab2012-11-15 18:05:15 -03009668
Andrzej Hajdab84ef242013-01-31 07:03:05 -03009669SAMSUNG S5C73M3 CAMERA DRIVER
9670M: Kyungmin Park <kyungmin.park@samsung.com>
9671M: Andrzej Hajda <a.hajda@samsung.com>
9672L: linux-media@vger.kernel.org
9673S: Supported
9674F: drivers/media/i2c/s5c73m3/*
9675
Andrzej Hajda7d4599372013-12-05 08:38:39 -03009676SAMSUNG S5K5BAF CAMERA DRIVER
9677M: Kyungmin Park <kyungmin.park@samsung.com>
9678M: Andrzej Hajda <a.hajda@samsung.com>
9679L: linux-media@vger.kernel.org
9680S: Supported
9681F: drivers/media/i2c/s5k5baf.c
9682
Robert Baldygac04c6742015-08-20 17:26:02 +02009683SAMSUNG S3FWRN5 NFC DRIVER
9684M: Robert Baldyga <r.baldyga@samsung.com>
Robert Baldyga079c2652016-03-10 15:22:43 +01009685M: Krzysztof Opasiak <k.opasiak@samsung.com>
Robert Baldygac04c6742015-08-20 17:26:02 +02009686L: linux-nfc@lists.01.org (moderated for non-subscribers)
9687S: Supported
9688F: drivers/nfc/s3fwrn5
9689
Tomasz Figa310e39c2013-11-09 03:17:34 +01009690SAMSUNG SOC CLOCK DRIVERS
Tomasz Figafea685e2014-08-26 16:30:53 +02009691M: Sylwester Nawrocki <s.nawrocki@samsung.com>
9692M: Tomasz Figa <tomasz.figa@gmail.com>
Tomasz Figa310e39c2013-11-09 03:17:34 +01009693S: Supported
9694L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9695F: drivers/clk/samsung/
9696
Byungho An66890ed2014-03-25 12:11:07 -07009697SAMSUNG SXGBE DRIVERS
9698M: Byungho An <bh74.an@samsung.com>
9699M: Girish K S <ks.giri@samsung.com>
Byungho An66890ed2014-03-25 12:11:07 -07009700M: Vipul Pandya <vipul.pandya@samsung.com>
9701S: Supported
9702L: netdev@vger.kernel.org
9703F: drivers/net/ethernet/samsung/sxgbe/
9704
Lukasz Majewski93c537a2015-02-24 16:31:28 +01009705SAMSUNG THERMAL DRIVER
9706M: Lukasz Majewski <l.majewski@samsung.com>
9707L: linux-pm@vger.kernel.org
9708L: linux-samsung-soc@vger.kernel.org
9709S: Supported
Fengguang Wu9f273c22016-01-20 15:03:25 -08009710T: git https://github.com/lmajewski/linux-samsung-thermal.git
Lukasz Majewski93c537a2015-02-24 16:31:28 +01009711F: drivers/thermal/samsung/
9712
Kamil Debskie296cd32014-08-21 11:33:37 +02009713SAMSUNG USB2 PHY DRIVER
9714M: Kamil Debski <k.debski@samsung.com>
9715L: linux-kernel@vger.kernel.org
9716S: Supported
9717F: Documentation/devicetree/bindings/phy/samsung-phy.txt
9718F: Documentation/phy/samsung-usb2.txt
9719F: drivers/phy/phy-exynos4210-usb2.c
9720F: drivers/phy/phy-exynos4x12-usb2.c
9721F: drivers/phy/phy-exynos5250-usb2.c
9722F: drivers/phy/phy-s5pv210-usb2.c
9723F: drivers/phy/phy-samsung-usb2.c
9724F: drivers/phy/phy-samsung-usb2.h
9725
Alan Coxca749e22011-03-18 13:56:14 +00009726SERIAL DRIVERS
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08009727M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Alan Coxca749e22011-03-18 13:56:14 +00009728L: linux-serial@vger.kernel.org
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08009729S: Maintained
Joe Perches14430812013-09-11 14:23:50 -07009730F: drivers/tty/serial/
Alan Coxca749e22011-03-18 13:56:14 +00009731
Viresh Kumaraecb7b62011-05-24 14:04:09 +05309732SYNOPSYS DESIGNWARE DMAC DRIVER
Viresh Kumarda899472015-07-17 16:23:50 -07009733M: Viresh Kumar <vireshk@kernel.org>
Viresh Kumar337ae472013-07-19 09:13:58 +05309734M: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05309735S: Maintained
Andy Shevchenko1fb200d2015-01-19 18:23:06 +02009736F: include/linux/dma/dw.h
Andy Shevchenko3d598f42014-08-19 20:29:12 +03009737F: include/linux/platform_data/dma-dw.h
Andy Shevchenko61a76492013-06-05 15:26:44 +03009738F: drivers/dma/dw/
Viresh Kumaraecb7b62011-05-24 14:04:09 +05309739
Lars Persson058999c2015-07-28 12:01:50 +02009740SYNOPSYS DESIGNWARE ETHERNET QOS 4.10a driver
9741M: Lars Persson <lars.persson@axis.com>
9742L: netdev@vger.kernel.org
9743S: Supported
9744F: Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt
9745F: drivers/net/ethernet/synopsys/dwc_eth_qos.c
9746
Wolfram Sangfc531d92015-10-15 15:50:15 +02009747SYNOPSYS DESIGNWARE I2C DRIVER
Wolfram Sangfc531d92015-10-15 15:50:15 +02009748M: Jarkko Nikula <jarkko.nikula@linux.intel.com>
Andy Shevchenkod0781b92016-03-08 11:19:24 +02009749R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9750R: Mika Westerberg <mika.westerberg@linux.intel.com>
Wolfram Sangfc531d92015-10-15 15:50:15 +02009751L: linux-i2c@vger.kernel.org
9752S: Maintained
9753F: drivers/i2c/busses/i2c-designware-*
9754F: include/linux/platform_data/i2c-designware.h
9755
Seungwon Jeonf9e37132013-01-17 21:33:23 +09009756SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
Seungwon Jeonf9e37132013-01-17 21:33:23 +09009757M: Jaehoon Chung <jh80.chung@samsung.com>
9758L: linux-mmc@vger.kernel.org
9759S: Maintained
9760F: include/linux/mmc/dw_mmc.h
9761F: drivers/mmc/host/dw_mmc*
9762
Alexander Shishkina961e692015-09-22 15:47:11 +03009763SYSTEM TRACE MODULE CLASS
9764M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
9765S: Maintained
9766F: Documentation/trace/stm.txt
9767F: drivers/hwtracing/stm/
9768F: include/linux/stm.h
9769F: include/uapi/linux/stm.h
9770
Andreas Noever1db121d2014-07-10 18:58:04 +02009771THUNDERBOLT DRIVER
9772M: Andreas Noever <andreas.noever@gmail.com>
9773S: Maintained
9774F: drivers/thunderbolt/
9775
Sebastian Reichele35a49b2016-01-17 21:36:03 +01009776TI BQ27XXX POWER SUPPLY DRIVER
9777R: Andrew F. Davis <afd@ti.com>
9778F: include/linux/power/bq27xxx_battery.h
9779F: drivers/power/bq27xxx_battery.c
9780F: drivers/power/bq27xxx_battery_i2c.c
9781
John Stultz34db37c2015-11-13 13:07:31 -08009782TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
John Stultz50363732012-12-13 13:08:47 -05009783M: John Stultz <john.stultz@linaro.org>
Thomas Gleixner88606e82010-12-14 21:37:13 +01009784M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar981c3a42014-01-21 10:59:20 +01009785L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01009786T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01009787S: Supported
9788F: include/linux/clocksource.h
9789F: include/linux/time.h
9790F: include/linux/timex.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009791F: include/uapi/linux/time.h
9792F: include/uapi/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01009793F: kernel/time/clocksource.c
9794F: kernel/time/time*.c
John Stultz34db37c2015-11-13 13:07:31 -08009795F: kernel/time/alarmtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01009796F: kernel/time/ntp.c
John Stultz7fe5f1c2015-03-11 17:40:15 -07009797F: tools/testing/selftests/timers/
Thomas Gleixner88606e82010-12-14 21:37:13 +01009798
Linus Torvalds1da177e2005-04-16 15:20:36 -07009799SC1200 WDT DRIVER
Jean Delvareb3006452013-11-12 15:08:56 -08009800M: Zwane Mwaikambo <zwanem@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009801S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009802F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07009803
9804SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01009805M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07009806M: Peter Zijlstra <peterz@infradead.org>
Ingo Molnar981c3a42014-01-21 10:59:20 +01009807L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01009808T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07009809S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09009810F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07009811F: include/linux/sched.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009812F: include/uapi/linux/sched.h
Peter Zijlstrac2eb5052013-10-02 11:49:47 +02009813F: include/linux/wait.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009814
Chen Liqin6bcf6732009-06-13 15:24:33 +08009815SCORE ARCHITECTURE
Lennox Wued386652013-09-26 01:41:22 +08009816M: Chen Liqin <liqin.linux@gmail.com>
Joe Perchesa2681a72009-10-26 16:49:43 -07009817M: Lennox Wu <lennox.wu@gmail.com>
Lennox Wued386652013-09-26 01:41:22 +08009818W: http://www.sunplus.com
Chen Liqin6bcf6732009-06-13 15:24:33 +08009819S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07009820F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08009821
Sudeep Holla80f390e2015-05-14 11:26:11 +01009822SYSTEM CONTROL & POWER INTERFACE (SCPI) Message Protocol drivers
9823M: Sudeep Holla <sudeep.holla@arm.com>
9824L: linux-arm-kernel@lists.infradead.org
9825S: Maintained
9826F: Documentation/devicetree/bindings/arm/arm,scpi.txt
Sudeep Hollacd52c2a2015-03-30 10:59:52 +01009827F: drivers/clk/clk-scpi.c
Sudeep Holla8def3102015-03-30 10:59:52 +01009828F: drivers/cpufreq/scpi-cpufreq.c
Sudeep Holla8cb7cf52015-03-30 10:59:52 +01009829F: drivers/firmware/arm_scpi.c
9830F: include/linux/scpi_protocol.h
Sudeep Holla80f390e2015-05-14 11:26:11 +01009831
Linus Torvalds1da177e2005-04-16 15:20:36 -07009832SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009833M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009834L: linux-scsi@vger.kernel.org
9835W: http://www.kernel.dk
9836S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009837F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009838
Roland Dreierfb50a832010-10-07 09:54:53 -07009839SCSI RDMA PROTOCOL (SRP) INITIATOR
Bart Van Assche3453bddb2015-02-06 15:27:56 +01009840M: Bart Van Assche <bart.vanassche@sandisk.com>
Roland Dreierfb50a832010-10-07 09:54:53 -07009841L: linux-rdma@vger.kernel.org
9842S: Supported
9843W: http://www.openfabrics.org
9844Q: http://patchwork.kernel.org/project/linux-rdma/list/
9845T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
9846F: drivers/infiniband/ulp/srp/
9847F: include/scsi/srp.h
9848
Linus Torvalds1da177e2005-04-16 15:20:36 -07009849SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009850M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009851L: linux-scsi@vger.kernel.org
Douglas Gilbert59ab3c92013-10-31 09:10:46 -04009852W: http://sg.danny.cz/sg
Linus Torvalds1da177e2005-04-16 15:20:36 -07009853S: Maintained
Douglas Gilbert59ab3c92013-10-31 09:10:46 -04009854F: Documentation/scsi/scsi-generic.txt
Joe Perches679655d2009-04-07 20:44:32 -07009855F: drivers/scsi/sg.c
9856F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009857
9858SCSI SUBSYSTEM
James Bottomley7ee78952016-03-14 12:42:27 -07009859M: "James E.J. Bottomley" <jejb@linux.vnet.ibm.com>
James Bottomley0351b8f2015-04-01 09:09:36 +00009860T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
Martin K. Petersenf4ab4212015-11-13 16:46:49 -05009861M: "Martin K. Petersen" <martin.petersen@oracle.com>
9862T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
9863L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07009864S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009865F: drivers/scsi/
9866F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009867
9868SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009869M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009870L: linux-scsi@vger.kernel.org
9871S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009872F: Documentation/scsi/st.txt
Jean Delvaref7269cf2013-07-03 15:05:08 -07009873F: drivers/scsi/st.*
9874F: drivers/scsi/st_*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009875
9876SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00009877M: Vlad Yasevich <vyasevich@gmail.com>
Neil Horman02c38d02012-10-24 09:26:51 +00009878M: Neil Horman <nhorman@tuxdriver.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07009879L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07009880W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00009881S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009882F: Documentation/networking/sctp.txt
9883F: include/linux/sctp.h
Daniel Borkmann4d58c022013-07-23 14:51:48 +02009884F: include/uapi/linux/sctp.h
Joe Perches679655d2009-04-07 20:44:32 -07009885F: include/net/sctp/
9886F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009887
9888SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07009889M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07009890S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07009891F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07009892F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07009893F: drivers/watchdog/scx200_wdt.c
9894F: drivers/i2c/busses/scx200*
9895F: drivers/mtd/maps/scx200_docflash.c
9896F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07009897
9898SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009899M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07009900S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009901F: drivers/char/scx200_gpio.c
9902F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07009903
9904SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009905M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07009906S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009907F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07009908
Sascha Sommer6a369132008-07-15 14:21:29 +02009909SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009910M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02009911L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
9912S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009913F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02009914
Randy Dunlape7839f22008-10-12 16:11:45 -07009915SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Ulf Hanssonddfe9542016-02-11 15:14:59 +01009916M: Adrian Hunter <adrian.hunter@intel.com>
Joe Perches7a241d62009-10-26 16:49:42 -07009917L: linux-mmc@vger.kernel.org
Ulf Hanssonddfe9542016-02-11 15:14:59 +01009918T: git git://git.infradead.org/users/ahunter/linux-sdhci.git
9919S: Maintained
9920F: drivers/mmc/host/sdhci*
9921F: include/linux/mmc/sdhci*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009922
Kees Cookc04f9d62014-07-18 11:28:33 -07009923SECURE COMPUTING
9924M: Kees Cook <keescook@chromium.org>
Kees Cooka0cfd752014-08-12 15:41:17 -07009925R: Andy Lutomirski <luto@amacapital.net>
9926R: Will Drewry <wad@chromium.org>
Kees Cookc04f9d62014-07-18 11:28:33 -07009927T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
9928S: Supported
9929F: kernel/seccomp.c
9930F: include/uapi/linux/seccomp.h
9931F: include/linux/seccomp.h
Kees Cookc99ee512015-06-16 10:54:14 -07009932F: tools/testing/selftests/seccomp/*
Kees Cookc04f9d62014-07-18 11:28:33 -07009933K: \bsecure_computing
9934K: \bTIF_SECCOMP\b
9935
Ben Dooks0d1bb412009-06-14 13:52:37 +01009936SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009937M: Ben Dooks <ben-linux@fluff.org>
Ulf Hanssondc524882015-03-20 10:15:29 +01009938M: Jaehoon Chung <jh80.chung@samsung.com>
Joe Perches7a241d62009-10-26 16:49:42 -07009939L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01009940S: Maintained
Ulf Hanssondc524882015-03-20 10:15:29 +01009941F: drivers/mmc/host/sdhci-s3c*
Ben Dooks0d1bb412009-06-14 13:52:37 +01009942
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07009943SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Viresh Kumarda899472015-07-17 16:23:50 -07009944M: Viresh Kumar <vireshk@kernel.org>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07009945L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07009946L: linux-mmc@vger.kernel.org
9947S: Maintained
9948F: drivers/mmc/host/sdhci-spear.c
9949
James Morris8711cca2008-12-04 03:19:45 +11009950SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11009951M: James Morris <james.l.morris@oracle.com>
Joe Perches9c3646d2015-06-25 15:02:00 -07009952M: "Serge E. Hallyn" <serge@hallyn.com>
James Morris8711cca2008-12-04 03:19:45 +11009953L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11009954T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10009955W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11009956S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07009957F: security/
James Morris8711cca2008-12-04 03:19:45 +11009958
Linus Torvalds1da177e2005-04-16 15:20:36 -07009959SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07009960M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009961S: Supported
9962
9963SELINUX SECURITY MODULE
Paul Moore5a5f2ac2013-09-18 13:14:04 -04009964M: Paul Moore <paul@paul-moore.com>
Paul Mooree0238b42014-02-06 07:51:54 -05009965M: Stephen Smalley <sds@tycho.nsa.gov>
9966M: Eric Paris <eparis@parisplace.org>
9967L: selinux@tycho.nsa.gov (moderated for non-subscribers)
Stephen Smalleyf0589252008-09-11 09:20:26 -04009968W: http://selinuxproject.org
Paul Moore5a5f2ac2013-09-18 13:14:04 -04009969T: git git://git.infradead.org/users/pcmoore/selinux
Linus Torvalds1da177e2005-04-16 15:20:36 -07009970S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009971F: include/linux/selinux*
9972F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04009973F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009974
John Johansenc1c124e2010-07-29 14:48:09 -07009975APPARMOR SECURITY MODULE
9976M: John Johansen <john.johansen@canonical.com>
9977L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
9978W: apparmor.wiki.kernel.org
9979T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
9980S: Supported
9981F: security/apparmor/
9982
Kees Cook730daa12015-07-23 18:02:48 -07009983YAMA SECURITY MODULE
9984M: Kees Cook <keescook@chromium.org>
9985T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
9986S: Supported
9987F: security/yama/
9988
Jiri Slabycef2cf02007-05-08 00:31:45 -07009989SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07009990M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07009991S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009992F: drivers/misc/phantom.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009993F: include/uapi/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07009994
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05309995SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Minh Tran4627de92015-05-14 23:16:17 -07009996M: Jayamohan Kallickal <jayamohan.kallickal@avagotech.com>
Ketan Mukadam9d27e212015-07-04 04:12:23 +05309997M: Ketan Mukadam <ketan.mukadam@avagotech.com>
9998M: John Soni Jose <sony.john@avagotech.com>
Joe Perches3387f652009-11-11 14:26:11 -08009999L: linux-scsi@vger.kernel.org
Minh Tran4627de92015-05-14 23:16:17 -070010000W: http://www.avagotech.com
Joe Perches3387f652009-11-11 14:26:11 -080010001S: Supported
10002F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +053010003
Sathya Perla6938f852015-05-12 02:13:50 -040010004Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER
Sathya Perlaaa7b4532016-02-02 08:10:10 -050010005M: Sathya Perla <sathya.perla@broadcom.com>
10006M: Ajit Khaparde <ajit.khaparde@broadcom.com>
10007M: Padmanabh Ratnakar <padmanabh.ratnakar@broadcom.com>
10008M: Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
10009M: Somnath Kotur <somnath.kotur@broadcom.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -070010010L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -080010011W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -070010012S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -070010013F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -070010014
Selvin Xavierd2928a82015-03-15 00:09:41 +053010015EMULEX ONECONNECT ROCE DRIVER
Laurent Navet2b8e7332015-06-30 14:59:33 -070010016M: Selvin Xavier <selvin.xavier@avagotech.com>
10017M: Devesh Sharma <devesh.sharma@avagotech.com>
10018M: Mitesh Ahuja <mitesh.ahuja@avagotech.com>
Selvin Xavierd2928a82015-03-15 00:09:41 +053010019L: linux-rdma@vger.kernel.org
10020W: http://www.emulex.com
10021S: Supported
10022F: drivers/infiniband/hw/ocrdma/
10023
Ben Hutchings8ceee662008-04-27 12:55:59 +010010024SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +000010025M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Shradha Shah8533ccf2014-01-23 13:19:55 +000010026M: Shradha Shah <sshah@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +000010027L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +010010028S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -070010029F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +010010030
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010031SGI GRU DRIVER
Bjorn Helgaascc883af2013-01-29 15:48:37 -070010032M: Dimitri Sivanich <sivanich@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010033S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010034F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010035
10036SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010037M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010038L: linux-ia64@vger.kernel.org
10039S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010040F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -080010041F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -070010042F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010043
Jack Steiner75312612008-08-15 00:40:42 -070010044SGI XP/XPC/XPNET DRIVER
Robin Holte1803832013-08-16 18:01:42 -050010045M: Cliff Whickman <cpw@sgi.com>
10046M: Robin Holt <robinmholt@gmail.com>
Jack Steiner75312612008-08-15 00:40:42 -070010047S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010048F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -070010049
Antti Palosaari46eacf32014-04-15 06:21:03 -030010050SI2157 MEDIA DRIVER
10051M: Antti Palosaari <crope@iki.fi>
10052L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010053W: https://linuxtv.org
Antti Palosaari46eacf32014-04-15 06:21:03 -030010054W: http://palosaari.fi/linux/
10055Q: http://patchwork.linuxtv.org/project/linux-media/list/
10056T: git git://linuxtv.org/anttip/media_tree.git
10057S: Maintained
10058F: drivers/media/tuners/si2157*
10059
Antti Palosaari75e2d5b2014-04-15 06:17:53 -030010060SI2168 MEDIA DRIVER
10061M: Antti Palosaari <crope@iki.fi>
10062L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010063W: https://linuxtv.org
Antti Palosaari75e2d5b2014-04-15 06:17:53 -030010064W: http://palosaari.fi/linux/
10065Q: http://patchwork.linuxtv.org/project/linux-media/list/
10066T: git git://linuxtv.org/anttip/media_tree.git
10067S: Maintained
10068F: drivers/media/dvb-frontends/si2168*
10069
Hans Verkuil49cc6292012-11-30 07:13:29 -030010070SI470X FM RADIO RECEIVER I2C DRIVER
10071M: Hans Verkuil <hverkuil@xs4all.nl>
10072L: linux-media@vger.kernel.org
10073T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010074W: https://linuxtv.org
Hans Verkuil49cc6292012-11-30 07:13:29 -030010075S: Odd Fixes
10076F: drivers/media/radio/si470x/radio-si470x-i2c.c
10077
10078SI470X FM RADIO RECEIVER USB DRIVER
10079M: Hans Verkuil <hverkuil@xs4all.nl>
10080L: linux-media@vger.kernel.org
10081T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010082W: https://linuxtv.org
Hans Verkuil49cc6292012-11-30 07:13:29 -030010083S: Maintained
10084F: drivers/media/radio/si470x/radio-si470x-common.c
10085F: drivers/media/radio/si470x/radio-si470x.h
10086F: drivers/media/radio/si470x/radio-si470x-usb.c
10087
Eduardo Valentinc937ca02013-02-27 10:37:39 -030010088SI4713 FM RADIO TRANSMITTER I2C DRIVER
10089M: Eduardo Valentin <edubezval@gmail.com>
10090L: linux-media@vger.kernel.org
10091T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010092W: https://linuxtv.org
Eduardo Valentinc937ca02013-02-27 10:37:39 -030010093S: Odd Fixes
Dinesh Ram99995de2013-10-15 12:24:43 -030010094F: drivers/media/radio/si4713/si4713.?
Eduardo Valentinc937ca02013-02-27 10:37:39 -030010095
10096SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
10097M: Eduardo Valentin <edubezval@gmail.com>
10098L: linux-media@vger.kernel.org
10099T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010100W: https://linuxtv.org
Eduardo Valentinc937ca02013-02-27 10:37:39 -030010101S: Odd Fixes
Dinesh Ram99995de2013-10-15 12:24:43 -030010102F: drivers/media/radio/si4713/radio-platform-si4713.c
10103
10104SI4713 FM RADIO TRANSMITTER USB DRIVER
10105M: Hans Verkuil <hverkuil@xs4all.nl>
10106L: linux-media@vger.kernel.org
10107T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010108W: https://linuxtv.org
Dinesh Ram99995de2013-10-15 12:24:43 -030010109S: Maintained
10110F: drivers/media/radio/si4713/radio-usb-si4713.c
Eduardo Valentinc937ca02013-02-27 10:37:39 -030010111
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -030010112SIANO DVB DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -020010113M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -030010114L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010115W: https://linuxtv.org
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -030010116T: git git://linuxtv.org/media_tree.git
10117S: Odd fixes
10118F: drivers/media/common/siano/
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -030010119F: drivers/media/usb/siano/
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -030010120F: drivers/media/usb/siano/
Joe Perches14430812013-09-11 14:23:50 -070010121F: drivers/media/mmc/siano/
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -030010122
Hans de Goede6f15b602014-11-14 13:26:46 +010010123SIMPLEFB FB DRIVER
10124M: Hans de Goede <hdegoede@redhat.com>
10125L: linux-fbdev@vger.kernel.org
10126S: Maintained
Rob Herring2d799dd2015-11-05 13:40:40 -060010127F: Documentation/devicetree/bindings/display/simple-framebuffer.txt
Hans de Goede6f15b602014-11-14 13:26:46 +010010128F: drivers/video/fbdev/simplefb.c
10129F: include/linux/platform_data/simplefb.h
10130
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -030010131SH_VEU V4L2 MEM2MEM DRIVER
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -030010132L: linux-media@vger.kernel.org
Guennadi Liakhovetskibb60fcb2013-11-24 17:44:08 -030010133S: Orphan
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -030010134F: drivers/media/platform/sh_veu.c
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -030010135
10136SH_VOU V4L2 OUTPUT DRIVER
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -030010137L: linux-media@vger.kernel.org
Guennadi Liakhovetskibb60fcb2013-11-24 17:44:08 -030010138S: Orphan
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -030010139F: drivers/media/platform/sh_vou.c
Mauro Carvalho Chehabd647f0b2015-11-13 19:40:07 -020010140F: include/media/drv-intf/sh_vou.h
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -030010141
Len Brown6349d992009-08-14 15:07:14 -040010142SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -070010143M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -040010144L: sfi-devel@simplefirmware.org
10145W: http://simplefirmware.org/
10146T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010147S: Supported
Joe Perches943fc812011-03-22 16:34:36 -070010148F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -040010149F: drivers/sfi/
10150F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010151
Linus Torvalds1da177e2005-04-16 15:20:36 -070010152SIMTEC EB110ATX (Chalice CATS)
10153P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -080010154P: Vincent Sanders <vince@simtec.co.uk>
10155M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010156W: http://www.simtec.co.uk/products/EB110ATX/
10157S: Supported
10158
10159SIMTEC EB2410ITX (BAST)
10160P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -080010161P: Vincent Sanders <vince@simtec.co.uk>
10162M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010163W: http://www.simtec.co.uk/products/EB2410ITX/
10164S: Supported
Joe Perches15dba382013-09-11 14:23:36 -070010165F: arch/arm/mach-s3c24xx/mach-bast.c
10166F: arch/arm/mach-s3c24xx/bast-ide.c
10167F: arch/arm/mach-s3c24xx/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070010168
Kevin Hilman4c5adde2009-06-19 12:02:33 -070010169TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -080010170M: Sekhar Nori <nsekhar@ti.com>
Kevin Hilman3cf2efd2016-02-24 14:57:36 -080010171M: Kevin Hilman <khilman@kernel.org>
Sekhar Noric9f46a82012-01-27 21:12:20 +053010172T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -080010173Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -070010174S: Supported
Joe Perches14430812013-09-11 14:23:50 -070010175F: arch/arm/mach-davinci/
Jean Delvare046d0a32012-01-12 20:32:05 +010010176F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -070010177
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -030010178TI DAVINCI SERIES MEDIA DRIVER
Joe Perchese43cdb52015-06-25 15:02:03 -070010179M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -030010180L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010181W: https://linuxtv.org
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -030010182Q: http://patchwork.linuxtv.org/project/linux-media/list/
10183T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
Lad, Prabhakar9ce5eca2013-04-15 01:32:44 -030010184S: Maintained
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -030010185F: drivers/media/platform/davinci/
10186F: include/media/davinci/
10187
Benoit Parrot417d2e52014-12-09 16:43:44 -030010188TI AM437X VPFE DRIVER
Joe Perchese43cdb52015-06-25 15:02:03 -070010189M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
Benoit Parrot417d2e52014-12-09 16:43:44 -030010190L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010191W: https://linuxtv.org
Benoit Parrot417d2e52014-12-09 16:43:44 -030010192Q: http://patchwork.linuxtv.org/project/linux-media/list/
10193T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
10194S: Maintained
10195F: drivers/media/platform/am437x/
10196
Benoit Parrotc4c02832015-03-20 18:03:52 -030010197OV2659 OMNIVISION SENSOR DRIVER
Joe Perchese43cdb52015-06-25 15:02:03 -070010198M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
Benoit Parrotc4c02832015-03-20 18:03:52 -030010199L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010200W: https://linuxtv.org
Benoit Parrotc4c02832015-03-20 18:03:52 -030010201Q: http://patchwork.linuxtv.org/project/linux-media/list/
10202T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
10203S: Maintained
10204F: drivers/media/i2c/ov2659.c
Mauro Carvalho Chehabb5dcee22015-11-10 12:01:44 -020010205F: include/media/i2c/ov2659.h
Benoit Parrotc4c02832015-03-20 18:03:52 -030010206
Sudip Mukherjee3a6779f2015-08-07 18:31:15 +053010207SILICON MOTION SM712 FRAME BUFFER DRIVER
10208M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10209M: Teddy Wang <teddy.wang@siliconmotion.com>
10210M: Sudip Mukherjee <sudip@vectorindia.org>
10211L: linux-fbdev@vger.kernel.org
10212S: Maintained
10213F: drivers/video/fbdev/sm712*
10214F: Documentation/fb/sm712fb.txt
10215
Francois Romieu92aab3c2005-07-30 13:11:18 +020010216SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010217M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +020010218L: netdev@vger.kernel.org
10219S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -070010220F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +020010221
Linus Torvalds1da177e2005-04-16 15:20:36 -070010222SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010223M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010224W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -070010225L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070010226S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -070010227F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010228
10229SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010230M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010231W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -030010232S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010233F: Documentation/fb/sisfb.txt
Jingoo Han8a61f012014-07-01 15:36:01 +090010234F: drivers/video/fbdev/sis/
Joe Perches679655d2009-04-07 20:44:32 -070010235F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070010236
10237SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010238M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010239W: http://www.winischhofer.at/linuxsisusbvga.shtml
10240S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010241F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010242
Christoph Lameter415ad262007-07-26 10:40:56 -070010243SLAB ALLOCATOR
Christoph Lameter16e943b2014-06-23 13:22:03 -070010244M: Christoph Lameter <cl@linux.com>
Pekka Enberg2ed1c522011-01-15 13:30:04 +020010245M: Pekka Enberg <penberg@kernel.org>
Christoph Lameter16e943b2014-06-23 13:22:03 -070010246M: David Rientjes <rientjes@google.com>
10247M: Joonsoo Kim <iamjoonsoo.kim@lge.com>
10248M: Andrew Morton <akpm@linux-foundation.org>
Christoph Lameter415ad262007-07-26 10:40:56 -070010249L: linux-mm@kvack.org
10250S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010251F: include/linux/sl?b*.h
Christoph Lameter16e943b2014-06-23 13:22:03 -070010252F: mm/sl?b*
Christoph Lameter415ad262007-07-26 10:40:56 -070010253
Paul E. McKenney9fab97872012-05-07 09:36:34 -070010254SLEEPABLE READ-COPY UPDATE (SRCU)
Lai Jiangshan96a39bc2015-07-01 15:26:27 +080010255M: Lai Jiangshan <jiangshanlai@gmail.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -070010256M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyab0afd62014-06-03 08:17:06 -070010257M: Josh Triplett <josh@joshtriplett.org>
Paul E. McKenney4632a192014-05-30 15:37:24 -070010258R: Steven Rostedt <rostedt@goodmis.org>
10259R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +010010260L: linux-kernel@vger.kernel.org
Paul E. McKenney9fab97872012-05-07 09:36:34 -070010261W: http://www.rdrop.com/users/paulmck/RCU/
10262S: Supported
10263T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenney4102ada2013-10-08 20:23:47 -070010264F: include/linux/srcu.h
10265F: kernel/rcu/srcu.c
Paul E. McKenney9fab97872012-05-07 09:36:34 -070010266
Casey Schaufler66372842012-05-23 18:34:52 -070010267SMACK SECURITY MODULE
10268M: Casey Schaufler <casey@schaufler-ca.com>
10269L: linux-security-module@vger.kernel.org
10270W: http://schaufler-ca.com
10271T: git git://git.gitorious.org/smack-next/kernel.git
10272S: Maintained
10273F: Documentation/security/Smack.txt
10274F: security/smack/
10275
Kevin Hilman20651e02014-09-24 16:30:00 -070010276DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
Kevin Hilman68ace3e2013-08-06 16:57:14 -070010277M: Kevin Hilman <khilman@kernel.org>
10278M: Nishanth Menon <nm@ti.com>
10279S: Maintained
Kevin Hilman20651e02014-09-24 16:30:00 -070010280F: drivers/power/avs/
Kevin Hilman68ace3e2013-08-06 16:57:14 -070010281F: include/linux/power/smartreflex.h
10282L: linux-pm@vger.kernel.org
10283
Linus Torvalds1da177e2005-04-16 15:20:36 -070010284SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -040010285M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -040010286S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -070010287F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010288
Sakari Ailuse8e31622012-11-12 18:14:39 -030010289SMIA AND SMIA++ IMAGE SENSOR DRIVER
10290M: Sakari Ailus <sakari.ailus@iki.fi>
10291L: linux-media@vger.kernel.org
10292S: Maintained
Joe Perches14430812013-09-11 14:23:50 -070010293F: drivers/media/i2c/smiapp/
Mauro Carvalho Chehabb5dcee22015-11-10 12:01:44 -020010294F: include/media/i2c/smiapp.h
Sakari Ailuse8e31622012-11-12 18:14:39 -030010295F: drivers/media/i2c/smiapp-pll.c
10296F: drivers/media/i2c/smiapp-pll.h
Sakari Ailusfd2bfdc2014-11-16 12:08:44 -030010297F: include/uapi/linux/smiapp.h
Sakari Ailusa2cec3c2014-11-06 18:16:13 -030010298F: Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
Sakari Ailuse8e31622012-11-12 18:14:39 -030010299
Guenter Roeck920fa1f2010-08-09 17:21:06 -070010300SMM665 HARDWARE MONITOR DRIVER
10301M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck968ce1b2016-03-22 15:11:03 -070010302L: linux-hwmon@vger.kernel.org
Guenter Roeck920fa1f2010-08-09 17:21:06 -070010303S: Maintained
10304F: Documentation/hwmon/smm665
10305F: drivers/hwmon/smm665.c
10306
Steve Glendinning9df73052010-08-14 21:08:54 +020010307SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +010010308M: Steve Glendinning <steve.glendinning@shawell.net>
Guenter Roeck968ce1b2016-03-22 15:11:03 -070010309L: linux-hwmon@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +010010310S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +020010311F: Documentation/hwmon/emc2103
10312F: drivers/hwmon/emc2103.c
10313
Hans de Goedea98d5062011-03-21 17:59:36 +010010314SMSC SCH5627 HARDWARE MONITOR DRIVER
10315M: Hans de Goede <hdegoede@redhat.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -070010316L: linux-hwmon@vger.kernel.org
Hans de Goedea98d5062011-03-21 17:59:36 +010010317S: Supported
10318F: Documentation/hwmon/sch5627
10319F: drivers/hwmon/sch5627.c
10320
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -040010321SMSC47B397 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -070010322M: Jean Delvare <jdelvare@suse.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -070010323L: linux-hwmon@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -040010324S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010325F: Documentation/hwmon/smsc47b397
10326F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -040010327
Steve Glendinningfd9abb32008-11-05 00:35:37 +000010328SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +010010329M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +000010330L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +010010331S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010332F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -070010333F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +000010334
Steve Glendinning2cb37722008-12-11 20:54:30 -080010335SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +010010336M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -080010337L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +010010338S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -070010339F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -080010340
Steve Glendinning3c8a63e2011-08-18 15:20:07 +010010341SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +010010342M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +010010343L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +010010344S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +090010345F: drivers/video/fbdev/smscufx.c
Steve Glendinning3c8a63e2011-08-18 15:20:07 +010010346
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -030010347SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070010348M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -030010349L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -020010350T: git git://linuxtv.org/media_tree.git
Jean Delvare795fb7e2008-09-20 12:33:08 +020010351S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -030010352F: include/media/soc*
10353F: drivers/media/i2c/soc_camera/
10354F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -030010355
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010356SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -070010357M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010358S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010359F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010360
Joe Perchese3994db2014-07-30 00:38:42 -030010361SOFTLOGIC 6x10 MPEG CODEC
Andrey Utkin9661975d2014-11-17 13:59:23 -030010362M: Bluecherry Maintainers <maintainers@bluecherrydvr.com>
10363M: Andrey Utkin <andrey.utkin@corp.bluecherry.net>
10364M: Andrey Utkin <andrey.krieger.utkin@gmail.com>
Ismael Luceno1f141f62015-01-20 11:43:50 -030010365M: Ismael Luceno <ismael@iodev.co.uk>
Joe Perchese3994db2014-07-30 00:38:42 -030010366L: linux-media@vger.kernel.org
10367S: Supported
10368F: drivers/media/pci/solo6x10/
10369
Linus Torvalds1da177e2005-04-16 15:20:36 -070010370SOFTWARE RAID (Multiple Disks) SUPPORT
Shaohua Lic2f662e2016-01-20 14:00:45 -080010371M: Shaohua Li <shli@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010372L: linux-raid@vger.kernel.org
Shaohua Li0f9ce862016-03-07 09:41:09 -080010373T: git git://git.kernel.org/pub/scm/linux/kernel/git/shli/md.git
NeilBrown524418b2007-01-26 00:57:01 -080010374S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010375F: drivers/md/
10376F: include/linux/raid/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010377F: include/uapi/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010378
Linus Torvalds1da177e2005-04-16 15:20:36 -070010379SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010380M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -070010381L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070010382S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -070010383F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010384
Michael Buesch61e115a2007-09-18 15:12:50 -040010385SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +020010386M: Michael Buesch <m@bues.ch>
Michael Büsche7828b22016-01-18 17:53:03 +010010387L: linux-wireless@vger.kernel.org
Michael Buesch61e115a2007-09-18 15:12:50 -040010388S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010389F: drivers/ssb/
10390F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -040010391
Linus Torvalds1da177e2005-04-16 15:20:36 -070010392SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010393M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd0944852010-02-11 10:40:13 -050010394L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +010010395W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -070010396S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010397F: Documentation/laptops/sony-laptop.txt
10398F: drivers/char/sonypi.c
10399F: drivers/platform/x86/sony-laptop.c
10400F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070010401
Alex Dubovbaf85322008-02-09 10:20:54 -080010402SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -070010403M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -080010404W: http://tifmxx.berlios.de/
10405S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010406F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -080010407
Maxim Levitsky0ab30492013-09-11 14:26:02 -070010408SONY MEMORYSTICK STANDARD SUPPORT
10409M: Maxim Levitsky <maximlevitsky@gmail.com>
10410S: Maintained
10411F: drivers/memstick/core/ms_block.*
10412
Linus Torvalds1da177e2005-04-16 15:20:36 -070010413SOUND
Joe Perches8b58be82009-07-29 15:04:30 -070010414M: Jaroslav Kysela <perex@perex.cz>
Jiri Slabyd8130622015-07-17 16:23:20 -070010415M: Takashi Iwai <tiwai@suse.com>
Joe Perches93711662009-06-16 15:34:07 -070010416L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -070010417W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +020010418T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -070010419T: git git://git.alsa-project.org/alsa-kernel.git
Takashi Iwaiff4a8f32014-05-13 14:55:51 +020010420Q: http://patchwork.kernel.org/project/alsa-devel/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010421S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -070010422F: Documentation/sound/
10423F: include/sound/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010424F: include/uapi/sound/
Joe Perches679655d2009-04-07 20:44:32 -070010425F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010426
Mark Brown33bbe142013-08-09 18:10:50 +010010427SOUND - COMPRESSED AUDIO
10428M: Vinod Koul <vinod.koul@intel.com>
10429L: alsa-devel@alsa-project.org (moderated for non-subscribers)
10430T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
10431S: Supported
Vinod Koulf672f312013-08-12 11:15:27 +053010432F: Documentation/sound/alsa/compress_offload.txt
Mark Brown33bbe142013-08-09 18:10:50 +010010433F: include/sound/compress_driver.h
Vinod Koulf672f312013-08-12 11:15:27 +053010434F: include/uapi/sound/compress_*
Mark Brown33bbe142013-08-09 18:10:50 +010010435F: sound/core/compress_offload.c
10436F: sound/soc/soc-compress.c
10437
Mark Brownbd903bd2008-11-19 19:16:05 +000010438SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood6b9cf5c2013-01-15 15:13:27 +000010439M: Liam Girdwood <lgirdwood@gmail.com>
Mark Brownb02e48f2013-04-12 11:39:57 +010010440M: Mark Brown <broonie@kernel.org>
Mark Brown86f14df2011-11-02 21:36:32 +000010441T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -070010442L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +010010443W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +020010444S: Supported
Mark Brown2820f612013-08-11 19:35:11 +010010445F: Documentation/sound/alsa/soc/
Joe Perches679655d2009-04-07 20:44:32 -070010446F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +010010447F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +020010448
Mark Brownd7f87612013-10-19 14:33:54 +010010449SOUND - DMAENGINE HELPERS
10450M: Lars-Peter Clausen <lars@metafoo.de>
10451S: Supported
10452F: include/sound/dmaengine_pcm.h
10453F: sound/core/pcm_dmaengine.c
10454F: sound/soc/soc-generic-dmaengine-pcm.c
10455
Olli Salonen990a6a92014-08-22 13:50:42 -030010456SP2 MEDIA DRIVER
10457M: Olli Salonen <olli.salonen@iki.fi>
10458L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010459W: https://linuxtv.org
Olli Salonen990a6a92014-08-22 13:50:42 -030010460Q: http://patchwork.linuxtv.org/project/linux-media/list/
10461S: Maintained
10462F: drivers/media/dvb-frontends/sp2*
10463
Sam Ravnborg473321f2009-01-04 15:47:49 -080010464SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -070010465M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010466L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -080010467Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -070010468T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
10469T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070010470S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010471F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -070010472F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010473
David S. Miller6404fcc2010-03-16 01:00:17 -070010474SPARC SERIAL DRIVERS
10475M: "David S. Miller" <davem@davemloft.net>
10476L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -070010477T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
10478T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -070010479S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -050010480F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -080010481F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -080010482F: drivers/tty/serial/sunhv.c
10483F: drivers/tty/serial/sunsab.c
10484F: drivers/tty/serial/sunsab.h
10485F: drivers/tty/serial/sunsu.c
10486F: drivers/tty/serial/sunzilog.c
10487F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -070010488
Christopher Li389325b2012-04-05 14:25:14 -070010489SPARSE CHECKER
10490M: "Christopher Li" <sparse@chrisli.org>
10491L: linux-sparse@vger.kernel.org
10492W: https://sparse.wiki.kernel.org/
10493T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
10494T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
10495S: Maintained
10496F: include/linux/compiler.h
10497
viresh kumarfc0c1952010-04-01 12:31:21 +010010498SPEAR PLATFORM SUPPORT
Viresh Kumarda899472015-07-17 16:23:50 -070010499M: Viresh Kumar <vireshk@kernel.org>
Viresh Kumar9cc23682014-04-18 15:07:16 -070010500M: Shiraz Hashim <shiraz.linux.kernel@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -070010501L: spear-devel@list.st.com
10502L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +010010503W: http://www.st.com/spear
10504S: Maintained
Rob Herringe68d7c12015-12-10 17:38:23 -060010505F: arch/arm/boot/dts/spear*
Joe Perches281e1922013-09-11 14:23:37 -070010506F: arch/arm/mach-spear/
viresh kumarfc0c1952010-04-01 12:31:21 +010010507
10508SPEAR CLOCK FRAMEWORK SUPPORT
Viresh Kumarda899472015-07-17 16:23:50 -070010509M: Viresh Kumar <vireshk@kernel.org>
Viresh Kumarfbfa0742012-03-15 15:17:09 -070010510L: spear-devel@list.st.com
10511L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +010010512W: http://www.st.com/spear
10513S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +053010514F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +010010515
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010516SPI SUBSYSTEM
Mark Brownb02e48f2013-04-12 11:39:57 +010010517M: Mark Brown <broonie@kernel.org>
Mark Browndfbe4032013-05-17 13:12:52 +010010518L: linux-spi@vger.kernel.org
Mark Browne7e4e132013-04-18 18:18:47 +010010519T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
Joe Perches8a6e2532010-03-05 13:43:11 -080010520Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010521S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010522F: Documentation/spi/
10523F: drivers/spi/
10524F: include/linux/spi/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010525F: include/uapi/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010526
Jim Lewis2752e402006-09-29 02:01:19 -070010527SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -070010528M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
Jim Lewis2752e402006-09-29 02:01:19 -070010529L: netdev@vger.kernel.org
10530S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010531F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -070010532F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -070010533
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010534SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070010535M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +100010536L: linuxppc-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010537W: http://www.ibm.com/developerworks/power/cell/
10538S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010539F: Documentation/filesystems/spufs.txt
10540F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010541
Phillip Lougherfc555842009-01-05 08:46:29 +000010542SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +010010543M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +000010544L: squashfs-devel@lists.sourceforge.net (subscribers-only)
10545W: http://squashfs.org.uk
Fengguang Wu9f273c22016-01-20 15:03:25 -080010546T: git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
Phillip Lougherfc555842009-01-05 08:46:29 +000010547S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010548F: Documentation/filesystems/squashfs.txt
10549F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +000010550
Linus Torvalds1da177e2005-04-16 15:20:36 -070010551SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -070010552M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010553S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010554F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070010555
Linus Torvalds26e9a392008-10-17 09:50:12 -070010556STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -080010557M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -080010558L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -080010559S: Supported
Greg Kroah-Hartman7b175c42013-06-18 12:58:12 -070010560F: Documentation/stable_kernel_rules.txt
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010561
Linus Torvalds26e9a392008-10-17 09:50:12 -070010562STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -080010563M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -070010564T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -070010565L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -080010566S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010567F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -070010568
Joe Perchesebd3d012011-07-05 09:42:02 -070010569STAGING - COMEDI
10570M: Ian Abbott <abbotti@mev.co.uk>
Lidza Louina81b884c2013-07-24 11:29:33 -040010571M: H Hartley Sweeten <hsweeten@visionengravers.com>
Joe Perchesebd3d012011-07-05 09:42:02 -070010572S: Odd Fixes
10573F: drivers/staging/comedi/
10574
Joe Perchesa0138162011-07-05 15:21:34 -070010575STAGING - FLARION FT1000 DRIVERS
10576M: Marek Belisko <marek.belisko@gmail.com>
10577S: Odd Fixes
10578F: drivers/staging/ft1000/
10579
Joe Perches6c1bb422011-07-05 09:42:07 -070010580STAGING - INDUSTRIAL IO
Sachin Kamat030a13d2013-09-11 11:00:00 +010010581M: Jonathan Cameron <jic23@kernel.org>
Joe Perchesa0138162011-07-05 15:21:34 -070010582L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -070010583S: Odd Fixes
10584F: drivers/staging/iio/
10585
Joe Perchesa0138162011-07-05 15:21:34 -070010586STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
10587M: Jarod Wilson <jarod@wilsonet.com>
10588W: http://www.lirc.org/
10589S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -080010590F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -070010591
Oleg Drokinf5e5de12014-08-15 12:48:14 -040010592STAGING - LUSTRE PARALLEL FILESYSTEM
10593M: Oleg Drokin <oleg.drokin@intel.com>
10594M: Andreas Dilger <andreas.dilger@intel.com>
Andreas Dilgerd98229f2015-08-24 11:11:49 -040010595L: lustre-devel@lists.lustre.org (moderated for non-subscribers)
10596W: http://wiki.lustre.org/
Oleg Drokinf5e5de12014-08-15 12:48:14 -040010597S: Maintained
10598F: drivers/staging/lustre
10599
Marc Dietrich7c6b6c72011-09-27 19:00:46 +020010600STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
10601M: Marc Dietrich <marvin24@gmx.de>
10602L: ac100@lists.launchpad.net (moderated for non-subscribers)
Stephen Warren5d96bf42013-02-27 17:02:54 -080010603L: linux-tegra@vger.kernel.org
Marc Dietrich7c6b6c72011-09-27 19:00:46 +020010604S: Maintained
10605F: drivers/staging/nvec/
10606
Greg Kroah-Hartman53c43c52016-04-04 13:52:35 -070010607STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
10608M: Jens Frederich <jfrederich@gmail.com>
10609M: Daniel Drake <dsd@laptop.org>
10610M: Jon Nettleton <jon.nettleton@gmail.com>
10611W: http://wiki.laptop.org/go/DCON
10612S: Maintained
10613F: drivers/staging/olpc_dcon/
10614
Joe Perchesa0138162011-07-05 15:21:34 -070010615STAGING - REALTEK RTL8712U DRIVERS
10616M: Larry Finger <Larry.Finger@lwfinger.net>
10617M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
10618S: Odd Fixes
10619F: drivers/staging/rtl8712/
10620
Jes Sorensen7591ba82014-04-26 18:54:48 +020010621STAGING - REALTEK RTL8723U WIRELESS DRIVER
10622M: Larry Finger <Larry.Finger@lwfinger.net>
10623M: Jes Sorensen <Jes.Sorensen@redhat.com>
10624L: linux-wireless@vger.kernel.org
10625S: Maintained
10626F: drivers/staging/rtl8723au/
10627
Sudip Mukherjee980ac4d2015-03-03 16:21:07 +053010628STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
10629M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10630M: Teddy Wang <teddy.wang@siliconmotion.com>
10631M: Sudip Mukherjee <sudip@vectorindia.org>
10632L: linux-fbdev@vger.kernel.org
10633S: Maintained
10634F: drivers/staging/sm750fb/
10635
Joe Perches510fa4082014-02-10 16:37:56 -080010636STAGING - SLICOSS
10637M: Lior Dotan <liodot@gmail.com>
10638M: Christopher Harrer <charrer@alacritech.com>
10639S: Odd Fixes
10640F: drivers/staging/slicoss/
10641
Joe Perchesa0138162011-07-05 15:21:34 -070010642STAGING - SPEAKUP CONSOLE SPEECH DRIVER
10643M: William Hubbs <w.d.hubbs@gmail.com>
10644M: Chris Brannon <chris@the-brannons.com>
William Hubbsd33bce32013-05-12 13:49:54 -050010645M: Kirk Reiser <kirk@reisers.ca>
Joe Perchesa0138162011-07-05 15:21:34 -070010646M: Samuel Thibault <samuel.thibault@ens-lyon.org>
Samuel Thibaulte6a152e2014-07-17 23:34:58 +020010647L: speakup@linux-speakup.org
Joe Perchesa0138162011-07-05 15:21:34 -070010648W: http://www.linux-speakup.org/
10649S: Odd Fixes
10650F: drivers/staging/speakup/
10651
Joe Perchesb3e871c2011-07-05 09:42:10 -070010652STAGING - VIA VT665X DRIVERS
10653M: Forest Bond <forest@alittletooquiet.net>
10654S: Odd Fixes
10655F: drivers/staging/vt665?/
10656
Johnny Kima30baec2015-05-11 14:30:57 +090010657STAGING - WILC1000 WIFI DRIVER
10658M: Johnny Kim <johnny.kim@atmel.com>
Tony Cho0c9dbce2015-10-28 17:43:27 +090010659M: Austin Shin <austin.shin@atmel.com>
Johnny Kima30baec2015-05-11 14:30:57 +090010660M: Chris Park <chris.park@atmel.com>
Tony Cho06b54862015-09-08 17:08:01 +090010661M: Tony Cho <tony.cho@atmel.com>
10662M: Glen Lee <glen.lee@atmel.com>
10663M: Leo Kim <leo.kim@atmel.com>
Johnny Kima30baec2015-05-11 14:30:57 +090010664L: linux-wireless@vger.kernel.org
10665S: Supported
10666F: drivers/staging/wilc1000/
10667
Joe Perches709bcb02011-07-05 09:42:13 -070010668STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +020010669M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -070010670S: Odd Fixes
10671F: drivers/staging/xgifb/
10672
Mike Marciniszyn77241052015-07-30 15:17:43 -040010673HFI1 DRIVER
10674M: Mike Marciniszyn <infinipath@intel.com>
10675L: linux-rdma@vger.kernel.org
10676S: Supported
10677F: drivers/staging/rdma/hfi1
10678
Linus Torvalds1da177e2005-04-16 15:20:36 -070010679STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010680M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -070010681S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -070010682F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010683
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010684SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -070010685M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010686W: http://sammy.net/sun3/
10687S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010688F: arch/m68k/kernel/*sun3*
10689F: arch/m68k/sun3*/
10690F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -070010691F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010692
Hans de Goedeaf6a5af2014-12-18 09:24:50 -080010693SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
10694M: Hans de Goede <hdegoede@redhat.com>
10695L: linux-input@vger.kernel.org
10696S: Maintained
10697F: Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
10698F: drivers/input/keyboard/sun4i-lradc-keys.c
10699
Denis Kirjanov2bc9ff02013-08-17 09:08:49 +040010700SUNDANCE NETWORK DRIVER
10701M: Denis Kirjanov <kda@linux-powerpc.org>
10702L: netdev@vger.kernel.org
10703S: Maintained
10704F: drivers/net/ethernet/dlink/sundance.c
10705
Paul Mundt2cbb12a2007-11-19 13:08:37 +090010706SUPERH
Rich Felker114bf372016-01-22 15:11:05 -080010707M: Yoshinori Sato <ysato@users.sourceforge.jp>
10708M: Rich Felker <dalias@libc.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +090010709L: linux-sh@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -080010710Q: http://patchwork.kernel.org/project/linux-sh/list/
Rich Felker114bf372016-01-22 15:11:05 -080010711S: Maintained
Paul Mundt066069e2009-04-14 06:32:08 +090010712F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -070010713F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +090010714F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010715
Randy Dunlap4480f15b2008-10-12 16:11:58 -070010716SUSPEND TO RAM
Rafael J. Wysocki7fb06082014-03-20 03:34:47 +010010717M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Joe Perches8b58be82009-07-29 15:04:30 -070010718M: Len Brown <len.brown@intel.com>
10719M: Pavel Machek <pavel@ucw.cz>
WANG Congbf1c1382011-10-08 20:57:50 +020010720L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010721S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010722F: Documentation/power/
10723F: arch/x86/kernel/acpi/
10724F: drivers/base/power/
10725F: kernel/power/
10726F: include/linux/suspend.h
10727F: include/linux/freezer.h
10728F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070010729
10730SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -070010731M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010732L: linux-video@atrey.karlin.mff.cuni.cz
10733S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010734F: Documentation/svga.txt
10735F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010736
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -070010737SWIOTLB SUBSYSTEM
10738M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10739L: linux-kernel@vger.kernel.org
Fengguang Wu9f273c22016-01-20 15:03:25 -080010740T: git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -070010741S: Supported
10742F: lib/swiotlb.c
10743F: arch/*/kernel/pci-swiotlb.c
10744F: include/linux/swiotlb.h
10745
Jiri Pirko007f7902014-11-28 14:34:17 +010010746SWITCHDEV
10747M: Jiri Pirko <jiri@resnulli.us>
10748L: netdev@vger.kernel.org
10749S: Supported
10750F: net/switchdev/
10751F: include/net/switchdev.h
10752
Vineet Guptadb8e35d2013-01-18 15:12:25 +053010753SYNOPSYS ARC ARCHITECTURE
10754M: Vineet Gupta <vgupta@synopsys.com>
Vineet Gupta30b9dbe2015-11-14 12:58:53 +053010755L: linux-snps-arc@lists.infradead.org
Vineet Guptadb8e35d2013-01-18 15:12:25 +053010756S: Supported
10757F: arch/arc/
Vineet Gupta9b288292014-11-18 17:36:11 +053010758F: Documentation/devicetree/bindings/arc/*
Rob Herring2d799dd2015-11-05 13:40:40 -060010759F: Documentation/devicetree/bindings/interrupt-controller/snps,arc*
Joe Perchesc6a0fe42013-09-11 14:23:45 -070010760F: drivers/tty/serial/arc_uart.c
Baruch Siachb7182d12015-08-11 12:08:32 +030010761T: git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
Vineet Guptadb8e35d2013-01-18 15:12:25 +053010762
Alexey Brodkin556cc1c2014-01-27 14:51:34 +010010763SYNOPSYS ARC SDP platform support
10764M: Alexey Brodkin <abrodkin@synopsys.com>
10765S: Supported
10766F: arch/arc/plat-axs10x
10767F: arch/arc/boot/dts/ax*
10768F: Documentation/devicetree/bindings/arc/axs10*
10769
Lee Jones6c284c92015-05-12 14:13:58 +010010770SYSTEM CONFIGURATION (SYSCON)
10771M: Lee Jones <lee.jones@linaro.org>
10772M: Arnd Bergmann <arnd@arndb.de>
10773T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
10774S: Supported
10775F: drivers/mfd/syscon.c
10776
Linus Torvalds1da177e2005-04-16 15:20:36 -070010777SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070010778M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010779S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010780F: Documentation/filesystems/sysv-fs.txt
10781F: fs/sysv/
10782F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070010783
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -070010784TARGET SUBSYSTEM
Joe Perches9c3646d2015-06-25 15:02:00 -070010785M: "Nicholas A. Bellinger" <nab@linux-iscsi.org>
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -070010786L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +000010787L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -070010788W: http://www.linux-iscsi.org
Joe Perchescf015e92014-02-25 15:01:47 -080010789W: http://groups.google.com/group/linux-iscsi-target-dev
Nicholas Bellinger452cf322013-05-11 16:27:56 -070010790T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -070010791S: Supported
10792F: drivers/target/
10793F: include/target/
10794F: Documentation/target/
10795
Alan Cox4e688522008-04-30 00:52:11 -070010796TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -070010797M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -070010798S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010799F: Documentation/accounting/taskstats*
10800F: include/linux/taskstats*
10801F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -070010802
Stephen Hemminger781b456a2006-07-10 20:25:29 -070010803TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +000010804M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-07-10 20:25:29 -070010805L: netdev@vger.kernel.org
10806S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010807F: include/net/pkt_cls.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010808F: include/uapi/linux/pkt_cls.h
Joe Perches679655d2009-04-07 20:44:32 -070010809F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -070010810
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -070010811TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -070010812M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
10813M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -070010814W: http://tcp-lp-mod.sourceforge.net/
10815S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010816F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -070010817
Antti Palosaari91952bc2012-10-01 12:28:46 -030010818TDA10071 MEDIA DRIVER
10819M: Antti Palosaari <crope@iki.fi>
10820L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010821W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -030010822W: http://palosaari.fi/linux/
10823Q: http://patchwork.linuxtv.org/project/linux-media/list/
10824T: git git://linuxtv.org/anttip/media_tree.git
10825S: Maintained
10826F: drivers/media/dvb-frontends/tda10071*
10827
10828TDA18212 MEDIA DRIVER
10829M: Antti Palosaari <crope@iki.fi>
10830L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010831W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -030010832W: http://palosaari.fi/linux/
10833Q: http://patchwork.linuxtv.org/project/linux-media/list/
10834T: git git://linuxtv.org/anttip/media_tree.git
10835S: Maintained
10836F: drivers/media/tuners/tda18212*
10837
10838TDA18218 MEDIA DRIVER
10839M: Antti Palosaari <crope@iki.fi>
10840L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010841W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -030010842W: http://palosaari.fi/linux/
10843Q: http://patchwork.linuxtv.org/project/linux-media/list/
10844T: git git://linuxtv.org/anttip/media_tree.git
10845S: Maintained
10846F: drivers/media/tuners/tda18218*
10847
Michael Krufky3b2f6ab2012-10-02 00:55:32 -030010848TDA18271 MEDIA DRIVER
10849M: Michael Krufky <mkrufky@linuxtv.org>
10850L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010851W: https://linuxtv.org
Michael Krufky3b2f6ab2012-10-02 00:55:32 -030010852W: http://github.com/mkrufky
10853Q: http://patchwork.linuxtv.org/project/linux-media/list/
10854T: git git://linuxtv.org/mkrufky/tuners.git
10855S: Maintained
10856F: drivers/media/tuners/tda18271*
10857
Michael Krufkye48307a2012-10-02 00:56:33 -030010858TDA827x MEDIA DRIVER
10859M: Michael Krufky <mkrufky@linuxtv.org>
10860L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010861W: https://linuxtv.org
Michael Krufkye48307a2012-10-02 00:56:33 -030010862W: http://github.com/mkrufky
10863Q: http://patchwork.linuxtv.org/project/linux-media/list/
10864T: git git://linuxtv.org/mkrufky/tuners.git
10865S: Maintained
10866F: drivers/media/tuners/tda8290.*
10867
Michael Krufky66cf9212012-10-02 00:56:28 -030010868TDA8290 MEDIA DRIVER
10869M: Michael Krufky <mkrufky@linuxtv.org>
10870L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010871W: https://linuxtv.org
Michael Krufky66cf9212012-10-02 00:56:28 -030010872W: http://github.com/mkrufky
10873Q: http://patchwork.linuxtv.org/project/linux-media/list/
10874T: git git://linuxtv.org/mkrufky/tuners.git
10875S: Maintained
10876F: drivers/media/tuners/tda8290.*
10877
Hans Verkuil4b9fba32012-11-23 10:02:05 -030010878TDA9840 MEDIA DRIVER
10879M: Hans Verkuil <hverkuil@xs4all.nl>
10880L: linux-media@vger.kernel.org
10881T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010882W: https://linuxtv.org
Hans Verkuil4b9fba32012-11-23 10:02:05 -030010883S: Maintained
10884F: drivers/media/i2c/tda9840*
10885
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -020010886TEA5761 TUNER DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -020010887M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -020010888L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010889W: https://linuxtv.org
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -020010890T: git git://linuxtv.org/media_tree.git
10891S: Odd fixes
10892F: drivers/media/tuners/tea5761.*
10893
10894TEA5767 TUNER DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -020010895M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -020010896L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010897W: https://linuxtv.org
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -020010898T: git git://linuxtv.org/media_tree.git
10899S: Maintained
10900F: drivers/media/tuners/tea5767.*
10901
Hans Verkuil4b9fba32012-11-23 10:02:05 -030010902TEA6415C MEDIA DRIVER
10903M: Hans Verkuil <hverkuil@xs4all.nl>
10904L: linux-media@vger.kernel.org
10905T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010906W: https://linuxtv.org
Hans Verkuil4b9fba32012-11-23 10:02:05 -030010907S: Maintained
10908F: drivers/media/i2c/tea6415c*
10909
10910TEA6420 MEDIA DRIVER
10911M: Hans Verkuil <hverkuil@xs4all.nl>
10912L: linux-media@vger.kernel.org
10913T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010914W: https://linuxtv.org
Hans Verkuil4b9fba32012-11-23 10:02:05 -030010915S: Maintained
10916F: drivers/media/i2c/tea6420*
10917
Jiri Pirko3d249d42011-11-11 22:16:48 +000010918TEAM DRIVER
Jiri Pirkodca9ab92013-02-15 23:55:05 +000010919M: Jiri Pirko <jiri@resnulli.us>
Jiri Pirko3d249d42011-11-11 22:16:48 +000010920L: netdev@vger.kernel.org
10921S: Supported
10922F: drivers/net/team/
10923F: include/linux/if_team.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010924F: include/uapi/linux/if_team.h
Jiri Pirko3d249d42011-11-11 22:16:48 +000010925
Vivien Didelot7d029122013-01-04 16:18:14 -050010926TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
Joe Perches9c3646d2015-06-25 15:02:00 -070010927M: "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
Vivien Didelot7d029122013-01-04 16:18:14 -050010928S: Maintained
10929F: arch/x86/platform/ts5500/
10930
Sean Young40ad4a32012-11-19 10:32:53 -030010931TECHNOTREND USB IR RECEIVER
10932M: Sean Young <sean@mess.org>
10933L: linux-media@vger.kernel.org
10934S: Maintained
10935F: drivers/media/rc/ttusbir.c
10936
Stephen Warrenadabdb02013-09-13 13:00:57 -060010937TEGRA ARCHITECTURE SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -070010938M: Stephen Warren <swarren@wwwdotorg.org>
Stephen Warrenadabdb02013-09-13 13:00:57 -060010939M: Thierry Reding <thierry.reding@gmail.com>
Stephen Warren554077c2014-10-03 09:50:32 -060010940M: Alexandre Courbot <gnurou@gmail.com>
Erik Gilling84b94142010-06-09 15:35:53 -070010941L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -070010942Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
Andreas Färberb779b882014-07-28 12:06:26 -060010943T: git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
Erik Gilling84b94142010-06-09 15:35:53 -070010944S: Supported
Stephen Warrenbbbe96e2013-04-29 16:17:23 -070010945N: [^a-z]tegra
Erik Gilling84b94142010-06-09 15:35:53 -070010946
Stephen Warrenadabdb02013-09-13 13:00:57 -060010947TEGRA CLOCK DRIVER
10948M: Peter De Schrijver <pdeschrijver@nvidia.com>
10949M: Prashant Gaikwad <pgaikwad@nvidia.com>
10950S: Supported
10951F: drivers/clk/tegra/
10952
10953TEGRA DMA DRIVER
10954M: Laxman Dewangan <ldewangan@nvidia.com>
10955S: Supported
10956F: drivers/dma/tegra20-apb-dma.c
10957
Stephen Warrenadabdb02013-09-13 13:00:57 -060010958TEGRA I2C DRIVER
10959M: Laxman Dewangan <ldewangan@nvidia.com>
10960S: Supported
10961F: drivers/i2c/busses/i2c-tegra.c
10962
10963TEGRA IOMMU DRIVERS
10964M: Hiroshi Doyu <hdoyu@nvidia.com>
10965S: Supported
10966F: drivers/iommu/tegra*
10967
10968TEGRA KBC DRIVER
10969M: Rakesh Iyer <riyer@nvidia.com>
10970M: Laxman Dewangan <ldewangan@nvidia.com>
10971S: Supported
10972F: drivers/input/keyboard/tegra-kbc.c
10973
Stephen Warrenadabdb02013-09-13 13:00:57 -060010974TEGRA PWM DRIVER
10975M: Thierry Reding <thierry.reding@gmail.com>
10976S: Supported
10977F: drivers/pwm/pwm-tegra.c
10978
10979TEGRA SERIAL DRIVER
10980M: Laxman Dewangan <ldewangan@nvidia.com>
10981S: Supported
10982F: drivers/tty/serial/serial-tegra.c
10983
10984TEGRA SPI DRIVER
10985M: Laxman Dewangan <ldewangan@nvidia.com>
10986S: Supported
10987F: drivers/spi/spi-tegra*
10988
Andy Gospodarek1a348cc2007-09-17 18:50:36 -070010989TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010990M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -070010991L: netdev@vger.kernel.org
10992S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -070010993F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -070010994
Alan Cox4e688522008-04-30 00:52:11 -070010995Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -070010996M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -070010997S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010998F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -070010999
Randy Dunlap4480f15b2008-10-12 16:11:58 -070011000TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -070011001M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -070011002M: Max Filippov <jcmvbkbc@gmail.com>
11003L: linux-xtensa@linux-xtensa.org
Fengguang Wu9f273c22016-01-20 15:03:25 -080011004T: git git://github.com/czankel/xtensa-linux.git
Alan Cox4e688522008-04-30 00:52:11 -070011005S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011006F: arch/xtensa/
Max Filippov3dc99852014-04-03 14:48:48 -070011007F: drivers/irqchip/irq-xtensa-*
Alan Cox4e688522008-04-30 00:52:11 -070011008
Hans Verkuil5313ba62013-12-13 09:00:38 -030011009THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
11010M: Hans Verkuil <hverkuil@xs4all.nl>
11011L: linux-media@vger.kernel.org
11012T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020011013W: https://linuxtv.org
Hans Verkuil5313ba62013-12-13 09:00:38 -030011014S: Maintained
11015F: drivers/media/radio/radio-raremono.c
11016
Zhang Ruid3fb6952012-11-15 08:58:27 +080011017THERMAL
Joe Perchesb75f0052014-03-03 15:38:37 -080011018M: Zhang Rui <rui.zhang@intel.com>
Lee Jonesf14d1c22014-05-30 11:03:28 +010011019M: Eduardo Valentin <edubezval@gmail.com>
Joe Perchesb75f0052014-03-03 15:38:37 -080011020L: linux-pm@vger.kernel.org
11021T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
11022T: git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
11023Q: https://patchwork.kernel.org/project/linux-pm/list/
11024S: Supported
11025F: drivers/thermal/
11026F: include/linux/thermal.h
Florian Fainelliaf6c9f12014-11-19 18:11:00 -080011027F: include/uapi/linux/thermal.h
Joe Perchesb75f0052014-03-03 15:38:37 -080011028F: include/linux/cpu_cooling.h
11029F: Documentation/devicetree/bindings/thermal/
Zhang Ruid3fb6952012-11-15 08:58:27 +080011030
Viresh Kumar64e05d82015-08-27 07:32:11 +053011031THERMAL/CPU_COOLING
11032M: Amit Daniel Kachhap <amit.kachhap@gmail.com>
11033M: Viresh Kumar <viresh.kumar@linaro.org>
11034M: Javi Merino <javi.merino@arm.com>
11035L: linux-pm@vger.kernel.org
11036S: Supported
11037F: Documentation/thermal/cpu-cooling-api.txt
11038F: drivers/thermal/cpu_cooling.c
11039F: include/linux/cpu_cooling.h
11040
Vivien Didelot30ba2fb2013-01-22 12:01:21 -050011041THINGM BLINK(1) USB RGB LED DRIVER
11042M: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
11043S: Maintained
11044F: drivers/hid/hid-thingm.c
11045
Alan Cox4e688522008-04-30 00:52:11 -070011046THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011047M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -070011048L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -050011049L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -070011050W: http://ibm-acpi.sourceforge.net
11051W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -070011052T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -070011053S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011054F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -070011055
Eduardo Valentin1b46f2a2013-03-15 09:00:34 -040011056TI BANDGAP AND THERMAL DRIVER
Lee Jonesf14d1c22014-05-30 11:03:28 +010011057M: Eduardo Valentin <edubezval@gmail.com>
Eduardo Valentin1b46f2a2013-03-15 09:00:34 -040011058L: linux-pm@vger.kernel.org
Nishanth Menon531ff132015-01-03 13:13:30 -060011059L: linux-omap@vger.kernel.org
Eduardo Valentin5a723e82015-01-05 17:48:13 -040011060S: Maintained
Eduardo Valentin794b2e22013-05-15 15:46:01 +000011061F: drivers/thermal/ti-soc-thermal/
Eduardo Valentin1b46f2a2013-03-15 09:00:34 -040011062
Benoit Parrotccf963d2016-01-06 21:37:25 -020011063TI VPE/CAL DRIVERS
11064M: Benoit Parrot <bparrot@ti.com>
11065L: linux-media@vger.kernel.org
11066W: http://linuxtv.org/
11067Q: http://patchwork.linuxtv.org/project/linux-media/list/
11068S: Maintained
11069F: drivers/media/platform/ti-vpe/
11070
Max Filippov0c7665c2015-01-12 10:20:46 +030011071TI CDCE706 CLOCK DRIVER
11072M: Max Filippov <jcmvbkbc@gmail.com>
11073S: Maintained
11074F: drivers/clk/clk-cdce706.c
11075
Tero Kristo49b6a5e2014-07-02 17:03:50 +030011076TI CLOCK DRIVER
11077M: Tero Kristo <t-kristo@ti.com>
11078L: linux-omap@vger.kernel.org
11079S: Maintained
11080F: drivers/clk/ti/
11081F: include/linux/clk/ti.h
11082
Alex Dubov4020f2d2006-10-04 02:15:37 -070011083TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011084M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011085S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011086F: drivers/misc/tifm*
11087F: drivers/mmc/host/tifm_sd.c
11088F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -070011089
Santosh Shilimkare0c52402014-07-10 11:30:08 -040011090TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
Santosh Shilimkar97215802014-10-13 14:16:28 -040011091M: Santosh Shilimkar <ssantosh@kernel.org>
Santosh Shilimkare0c52402014-07-10 11:30:08 -040011092L: linux-kernel@vger.kernel.org
11093L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11094S: Maintained
11095F: drivers/soc/ti/*
11096T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
11097
11098
M R Swami Reddy152ad442012-04-02 20:02:31 +053011099TI LM49xxx FAMILY ASoC CODEC DRIVERS
11100M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +053011101M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +053011102L: alsa-devel@alsa-project.org (moderated for non-subscribers)
11103S: Maintained
11104F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +053011105F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +053011106
Kim, Milo0edd8072012-12-17 16:01:17 -080011107TI LP855x BACKLIGHT DRIVER
11108M: Milo Kim <milo.kim@ti.com>
11109S: Maintained
11110F: Documentation/backlight/lp855x-driver.txt
11111F: drivers/video/backlight/lp855x_bl.c
11112F: include/linux/platform_data/lp855x.h
11113
Kim, Milofaf13f62012-12-10 05:27:03 +000011114TI LP8727 CHARGER DRIVER
11115M: Milo Kim <milo.kim@ti.com>
11116S: Maintained
11117F: drivers/power/lp8727_charger.c
11118F: include/linux/platform_data/lp8727.h
11119
Kim, Milo22f12292012-12-10 05:27:55 +000011120TI LP8788 MFD DRIVER
11121M: Milo Kim <milo.kim@ti.com>
11122S: Maintained
11123F: drivers/iio/adc/lp8788_adc.c
11124F: drivers/leds/leds-lp8788.c
11125F: drivers/mfd/lp8788*.c
11126F: drivers/power/lp8788-charger.c
11127F: drivers/regulator/lp8788-*.c
11128F: include/linux/mfd/lp8788*.h
11129
Karicheri, Muralidharan84640e22015-01-15 19:12:50 -050011130TI NETCP ETHERNET DRIVER
11131M: Wingman Kwok <w-kwok2@ti.com>
11132M: Murali Karicheri <m-karicheri2@ti.com>
11133L: netdev@vger.kernel.org
11134S: Maintained
11135F: drivers/net/ethernet/ti/netcp*
11136
Kevin Cernekee217e0ca2015-05-03 17:00:19 -070011137TI TAS571X FAMILY ASoC CODEC DRIVER
11138M: Kevin Cernekee <cernekee@chromium.org>
11139L: alsa-devel@alsa-project.org (moderated for non-subscribers)
11140S: Odd Fixes
11141F: sound/soc/codecs/tas571x*
11142
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +030011143TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +030011144M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +030011145L: alsa-devel@alsa-project.org (moderated for non-subscribers)
11146S: Maintained
11147F: sound/soc/codecs/twl4030*
11148
Luciano Coelho90921012011-11-20 21:40:41 +020011149TI WILINK WIRELESS DRIVERS
Luciano Coelho90921012011-11-20 21:40:41 +020011150L: linux-wireless@vger.kernel.org
11151W: http://wireless.kernel.org/en/users/Drivers/wl12xx
11152W: http://wireless.kernel.org/en/users/Drivers/wl1251
11153T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
Luciano Coelho22d072f2013-12-09 22:28:32 +020011154S: Orphan
Luciano Coelho90921012011-11-20 21:40:41 +020011155F: drivers/net/wireless/ti/
11156F: include/linux/wl12xx.h
11157
Per Lidene86eaa32006-01-12 16:45:18 +010011158TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -070011159M: Jon Maloy <jon.maloy@ericsson.com>
Jon Paul Maloy115403d2015-03-09 14:44:13 -040011160M: Ying Xue <ying.xue@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -050011161L: netdev@vger.kernel.org (core kernel code)
11162L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +010011163W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +010011164S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011165F: include/uapi/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -070011166F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +010011167
Chris Metcalf867e3592010-05-28 23:09:12 -040011168TILE ARCHITECTURE
Chris Metcalfb9a279f2016-03-02 15:32:27 -050011169M: Chris Metcalf <cmetcalf@mellanox.com>
Chris Metcalf8c34d8d2016-03-04 11:12:28 -050011170W: http://www.mellanox.com/repository/solutions/tile-scm/
Fengguang Wu7fa129c2015-12-18 10:15:37 -050011171T: git git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile.git
Chris Metcalf867e3592010-05-28 23:09:12 -040011172S: Supported
11173F: arch/tile/
Chris Metcalf6b940602013-08-07 10:45:01 -040011174F: drivers/char/tile-srom.c
Chris Metcalf5c770752011-03-01 13:01:49 -050011175F: drivers/edac/tile_edac.c
Chris Metcalf6b940602013-08-07 10:45:01 -040011176F: drivers/net/ethernet/tile/
11177F: drivers/rtc/rtc-tile.c
11178F: drivers/tty/hvc/hvc_tile.c
Chris Metcalfb5c6c1a2013-08-12 14:11:44 -040011179F: drivers/tty/serial/tilegx.c
Chris Metcalf6b940602013-08-07 10:45:01 -040011180F: drivers/usb/host/*-tilegx.c
11181F: include/linux/usb/tilegx.h
Chris Metcalf867e3592010-05-28 23:09:12 -040011182
Linus Torvalds1da177e2005-04-16 15:20:36 -070011183TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011184M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +080011185L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011186W: http://sourceforge.net/projects/tlan/
11187S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011188F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -070011189F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011190
Kentaro Takedad74db3b2009-02-05 17:18:18 +090011191TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -070011192M: Kentaro Takeda <takedakn@nttdata.co.jp>
11193M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +090011194L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
11195L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +090011196L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
11197L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
11198W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +090011199T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +090011200S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011201F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +090011202
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -030011203TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -030011204M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd0944852010-02-11 10:40:13 -050011205L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -030011206S: Maintained
11207F: drivers/platform/x86/topstar-laptop.c
11208
Linus Torvalds1da177e2005-04-16 15:20:36 -070011209TOSHIBA ACPI EXTRAS DRIVER
Azael Avalos0a63ca12015-03-06 18:14:42 -070011210M: Azael Avalos <coproscefalo@gmail.com>
Matthew Garrettd0944852010-02-11 10:40:13 -050011211L: platform-driver-x86@vger.kernel.org
Azael Avalos0a63ca12015-03-06 18:14:42 -070011212S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011213F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070011214
Azael Avalos0a63ca12015-03-06 18:14:42 -070011215TOSHIBA BLUETOOTH DRIVER
11216M: Azael Avalos <coproscefalo@gmail.com>
11217L: platform-driver-x86@vger.kernel.org
11218S: Maintained
11219F: drivers/platform/x86/toshiba_bluetooth.c
11220
11221TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
11222M: Azael Avalos <coproscefalo@gmail.com>
11223L: platform-driver-x86@vger.kernel.org
11224S: Maintained
11225F: drivers/platform/x86/toshiba_haps.c
11226
Azael Avalos14991fc2015-09-28 20:32:28 -060011227TOSHIBA WMI HOTKEYS DRIVER
11228M: Azael Avalos <coproscefalo@gmail.com>
11229L: platform-driver-x86@vger.kernel.org
11230S: Maintained
11231F: drivers/platform/x86/toshiba-wmi.c
11232
Linus Torvalds1da177e2005-04-16 15:20:36 -070011233TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011234M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011235W: http://www.buzzard.org.uk/toshiba/
11236S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011237F: drivers/char/toshiba.c
11238F: include/linux/toshiba.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011239F: include/uapi/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011240
Mats Randgaardd32d9862015-07-09 05:45:47 -030011241TOSHIBA TC358743 DRIVER
11242M: Mats Randgaard <matrandg@cisco.com>
11243L: linux-media@vger.kernel.org
11244S: Maintained
11245F: drivers/media/i2c/tc358743*
Mauro Carvalho Chehabb5dcee22015-11-10 12:01:44 -020011246F: include/media/i2c/tc358743.h
Mats Randgaardd32d9862015-07-09 05:45:47 -030011247
Pierre Ossmand719f902009-03-24 21:06:09 +010011248TMIO MMC DRIVER
Ben Hutchingsc4b13fb2015-04-27 00:01:53 +010011249M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +020011250L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +010011251S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +020011252F: drivers/mmc/host/tmio_mmc*
11253F: drivers/mmc/host/sh_mobile_sdhi.c
11254F: include/linux/mmc/tmio.h
11255F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +010011256
Guenter Roeck917cc4e2013-05-19 20:44:27 -070011257TMP401 HARDWARE MONITOR DRIVER
11258M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck968ce1b2016-03-22 15:11:03 -070011259L: linux-hwmon@vger.kernel.org
Guenter Roeck917cc4e2013-05-19 20:44:27 -070011260S: Maintained
11261F: Documentation/hwmon/tmp401
11262F: drivers/hwmon/tmp401.c
11263
Hugh Dickins98f32602009-05-21 20:33:58 +010011264TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -070011265M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +010011266L: linux-mm@kvack.org
11267S: Maintained
11268F: include/linux/shmem_fs.h
11269F: mm/shmem.c
11270
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -020011271TM6000 VIDEO4LINUX DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -020011272M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -020011273L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020011274W: https://linuxtv.org
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -020011275T: git git://linuxtv.org/media_tree.git
11276S: Odd fixes
11277F: drivers/media/usb/tm6000/
11278
Hans Verkuilc65fde12014-08-10 05:16:39 -030011279TW68 VIDEO4LINUX DRIVER
11280M: Hans Verkuil <hverkuil@xs4all.nl>
11281L: linux-media@vger.kernel.org
11282T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020011283W: https://linuxtv.org
Hans Verkuilc65fde12014-08-10 05:16:39 -030011284S: Odd Fixes
11285F: drivers/media/pci/tw68/
11286
Alan Cox4e688522008-04-30 00:52:11 -070011287TPM DEVICE DRIVER
Peter Huewe901486b2013-10-22 19:28:30 +020011288M: Peter Huewe <peterhuewe@gmx.de>
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -030011289M: Marcel Selhorst <tpmdd@selhorst.net>
Jarkko Sakkinen89adb832015-10-16 12:14:28 +030011290M: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
Peter Huewece93b4b2015-03-15 01:05:31 +010011291R: Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
Peter Huewe383dec12013-10-30 20:54:45 +010011292W: http://tpmdd.sourceforge.net
Rajiv Andrade63a10df2008-10-15 22:04:36 -070011293L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Jarkko Sakkinend9912842016-03-01 08:48:41 +020011294Q: https://patchwork.kernel.org/project/tpmdd-devel/list/
11295T: git git://git.infradead.org/users/jjs/linux-tpmdd.git
Alan Cox4e688522008-04-30 00:52:11 -070011296S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011297F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -070011298
Ashley Lai1a0f1b22014-12-04 21:01:51 -060011299TPM IBM_VTPM DEVICE DRIVER
11300M: Ashley Lai <ashleydlai@gmail.com>
11301W: http://tpmdd.sourceforge.net
11302L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
11303S: Maintained
11304F: drivers/char/tpm/tpm_ibmvtpm*
11305
Joe Perchesd6f005a2009-10-26 16:49:40 -070011306TRACING
11307M: Steven Rostedt <rostedt@goodmis.org>
Joe Perchesd6f005a2009-10-26 16:49:40 -070011308M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +010011309T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -070011310S: Maintained
11311F: Documentation/trace/ftrace.txt
11312F: arch/*/*/*/ftrace.h
11313F: arch/*/kernel/ftrace.c
11314F: include/*/ftrace.h
11315F: include/linux/trace*.h
11316F: include/trace/
11317F: kernel/trace/
Masami Hiramatsu6e68e6c2014-09-22 23:42:50 +000011318F: tools/testing/selftests/ftrace/
Joe Perchesd6f005a2009-10-26 16:49:40 -070011319
Linus Torvalds1da177e2005-04-16 15:20:36 -070011320TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -070011321M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -070011322T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070011323S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +020011324K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -070011325
Alan Cox4e688522008-04-30 00:52:11 -070011326TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -080011327M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jiri Slabyd8130622015-07-17 16:23:20 -070011328M: Jiri Slaby <jslaby@suse.com>
Greg KH879a5a02012-01-31 20:02:00 -080011329S: Supported
Joe Perches08deed12012-03-23 15:01:57 -070011330T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Baruch Siach84e1eb82015-06-04 10:56:58 +030011331F: Documentation/serial/
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -020011332F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -080011333F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +010011334F: include/linux/serial_core.h
11335F: include/linux/serial.h
11336F: include/linux/tty.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011337F: include/uapi/linux/serial_core.h
11338F: include/uapi/linux/serial.h
11339F: include/uapi/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -070011340
Antti Palosaari91952bc2012-10-01 12:28:46 -030011341TUA9001 MEDIA DRIVER
11342M: Antti Palosaari <crope@iki.fi>
11343L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020011344W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -030011345W: http://palosaari.fi/linux/
11346Q: http://patchwork.linuxtv.org/project/linux-media/list/
11347T: git git://linuxtv.org/anttip/media_tree.git
11348S: Maintained
11349F: drivers/media/tuners/tua9001*
11350
Grant Grundler740db6d2008-02-17 11:53:49 -070011351TULIP NETWORK DRIVERS
Grant Grundler740db6d2008-02-17 11:53:49 -070011352L: netdev@vger.kernel.org
Grant Grundlercf869eb2015-11-19 17:56:12 -080011353L: linux-parisc@vger.kernel.org
11354S: Orphan
Joe Perches0f04e2a2012-01-10 15:08:56 -080011355F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011356
11357TUN/TAP driver
Jiri Slabyba57b6f2012-11-30 07:05:40 +000011358M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011359W: http://vtun.sourceforge.net/tun
11360S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011361F: Documentation/networking/tuntap.txt
11362F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011363
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -080011364TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070011365M: "Maciej W. Rozycki" <macro@linux-mips.org>
Ralf Baechlec4063392014-04-03 13:29:06 +020011366M: Ralf Baechle <ralf@linux-mips.org>
11367L: linux-mips@linux-mips.org
11368Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -080011369S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011370F: drivers/tc/
11371F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -080011372
Linus Torvalds1da177e2005-04-16 15:20:36 -070011373U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011374M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011375L: linux-scsi@vger.kernel.org
11376S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011377F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070011378
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011379UBI FILE SYSTEM (UBIFS)
Richard Weinbergera7859932016-03-03 14:22:14 +010011380M: Richard Weinberger <richard@nod.at>
Artem Bityutskiy949cb622009-10-20 10:21:45 +030011381M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +030011382M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011383L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +030011384T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011385W: http://www.linux-mtd.infradead.org/doc/ubifs.html
Richard Weinbergera7859932016-03-03 14:22:14 +010011386S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070011387F: Documentation/filesystems/ubifs.txt
11388F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011389
Greg Ungerere1632fa2015-06-19 10:40:03 +100011390UCLINUX (M68KNOMMU AND COLDFIRE)
Joe Perches8b58be82009-07-29 15:04:30 -070011391M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +010011392W: http://www.uclinux.org/
Greg Ungerere1632fa2015-06-19 10:40:03 +100011393L: linux-m68k@lists.linux-m68k.org
Alan Coxcc2020e2008-05-19 14:21:51 +010011394L: uclinux-dev@uclinux.org (subscribers-only)
Greg Ungerere1632fa2015-06-19 10:40:03 +100011395T: git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
Alan Coxcc2020e2008-05-19 14:21:51 +010011396S: Maintained
Greg Ungerere1632fa2015-06-19 10:40:03 +100011397F: arch/m68k/coldfire/
11398F: arch/m68k/68*/
Joe Perches61bc02b2011-04-14 15:22:04 -070011399F: arch/m68k/*/*_no.*
11400F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +010011401
Linus Torvalds1da177e2005-04-16 15:20:36 -070011402UDF FILESYSTEM
Jiri Slabyd8130622015-07-17 16:23:20 -070011403M: Jan Kara <jack@suse.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011404S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011405F: Documentation/filesystems/udf.txt
11406F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011407
Alan Coxcc2020e2008-05-19 14:21:51 +010011408UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070011409M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +010011410S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011411F: Documentation/filesystems/ufs.txt
11412F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +010011413
David Herrmann0a09d3a2012-06-10 15:16:28 +020011414UHID USERSPACE HID IO DRIVER:
11415M: David Herrmann <dh.herrmann@googlemail.com>
11416L: linux-input@vger.kernel.org
11417S: Maintained
11418F: drivers/hid/uhid.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011419F: include/uapi/linux/uhid.h
David Herrmann0a09d3a2012-06-10 15:16:28 +020011420
David Vrabel18332a82008-09-17 16:34:44 +010011421ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +010011422L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +010011423S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +000011424F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -070011425F: include/linux/uwb.h
11426F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +010011427
GuanXuetaob31d8272011-01-16 00:35:49 +080011428UNICORE32 ARCHITECTURE:
11429M: Guan Xuetao <gxt@mprc.pku.edu.cn>
11430W: http://mprc.pku.edu.cn/~guanxuetao/linux
11431S: Maintained
Guan Xuetaoceebf4d2014-05-27 07:53:10 +080011432T: git git://github.com/gxt/linux.git
GuanXuetaob31d8272011-01-16 00:35:49 +080011433F: arch/unicore32/
11434
Tony Finchd8379ab2009-11-27 15:50:30 +000011435UNIFDEF
11436M: Tony Finch <dot@dotat.at>
11437W: http://dotat.at/prog/unifdef
11438S: Maintained
11439F: scripts/unifdef.c
11440
Linus Torvalds1da177e2005-04-16 15:20:36 -070011441UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011442M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011443W: http://www.kernel.dk
11444S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011445F: Documentation/cdrom/
11446F: drivers/cdrom/cdrom.c
11447F: include/linux/cdrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011448F: include/uapi/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011449
Benjamin Romer56df0122014-03-07 13:02:21 -060011450UNISYS S-PAR DRIVERS
Joe Perches49e7d9d2015-04-15 16:17:31 -070011451M: David Kershner <david.kershner@unisys.com>
11452L: sparmaintainer@unisys.com (Unisys internal)
11453S: Supported
11454F: drivers/staging/unisys/
Benjamin Romer56df0122014-03-07 13:02:21 -060011455
Vinayak Holikatti9941fa62012-04-20 14:11:50 +053011456UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
11457M: Vinayak Holikatti <vinholikatti@gmail.com>
Vinayak Holikatti9941fa62012-04-20 14:11:50 +053011458L: linux-scsi@vger.kernel.org
11459S: Supported
11460F: Documentation/scsi/ufs.txt
11461F: drivers/scsi/ufs/
11462
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011463UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +030011464M: Artem Bityutskiy <dedekind1@gmail.com>
Richard Weinberger346be9b2015-01-28 12:28:24 +010011465M: Richard Weinberger <richard@nod.at>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011466W: http://www.linux-mtd.infradead.org/
11467L: linux-mtd@lists.infradead.org
Artem Bityutskiyb6b44e02014-01-02 16:43:51 +020011468T: git git://git.infradead.org/ubifs-2.6.git
Richard Weinberger346be9b2015-01-28 12:28:24 +010011469S: Supported
Joe Perches80811492009-04-08 20:20:27 -070011470F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -070011471F: include/linux/mtd/ubi.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011472F: include/uapi/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011473
Linus Torvalds1da177e2005-04-16 15:20:36 -070011474USB ACM DRIVER
Oliver Neukumca1c3e62016-02-08 18:30:34 +010011475M: Oliver Neukum <oneukum@suse.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -070011476L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070011477S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011478F: Documentation/usb/acm.txt
11479F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011480
Pontus Fuchsb7d572e2012-10-23 20:33:57 +020011481USB AR5523 WIRELESS DRIVER
11482M: Pontus Fuchs <pontus.fuchs@gmail.com>
11483L: linux-wireless@vger.kernel.org
11484S: Maintained
11485F: drivers/net/wireless/ath/ar5523/
11486
Matthew Wilcox115bb1f2010-10-07 13:05:23 +020011487USB ATTACHED SCSI
Hans de Goedef50a4962013-10-28 10:48:04 +000011488M: Hans de Goede <hdegoede@redhat.com>
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +010011489M: Gerd Hoffmann <kraxel@redhat.com>
Matthew Wilcox115bb1f2010-10-07 13:05:23 +020011490L: linux-usb@vger.kernel.org
11491L: linux-scsi@vger.kernel.org
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +010011492S: Maintained
Matthew Wilcox115bb1f2010-10-07 13:05:23 +020011493F: drivers/usb/storage/uas.c
11494
Linus Torvalds1da177e2005-04-16 15:20:36 -070011495USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +020011496M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011497L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070011498S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011499F: drivers/net/usb/cdc_*.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011500F: include/uapi/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011501
Keith Packard66e3e592015-03-19 20:36:49 -070011502USB CHAOSKEY DRIVER
11503M: Keith Packard <keithp@keithp.com>
11504L: linux-usb@vger.kernel.org
11505S: Maintained
11506F: drivers/usb/misc/chaoskey.c
11507
Peter Korsgaardb02b3712008-04-27 08:59:44 +020011508USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011509M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +020011510L: linux-usb@vger.kernel.org
11511S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011512F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +020011513
Peter Korsgaardd0374f42007-02-16 17:03:54 +010011514USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011515M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +020011516L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +010011517W: http://www.linux-usb.org/usbnet
11518S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011519F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +010011520
Alan Coxcc2020e2008-05-19 14:21:51 +010011521USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011522M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +010011523L: rio500-users@lists.sourceforge.net
11524W: http://rio500.sourceforge.net
11525S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011526F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +010011527
Linus Torvalds1da177e2005-04-16 15:20:36 -070011528USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -040011529M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011530L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -040011531S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011532F: Documentation/usb/ehci.txt
11533F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011534
David Brownell69ae9e32006-11-14 02:03:31 -080011535USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbia55f6282016-02-03 20:23:01 +020011536M: Felipe Balbi <balbi@kernel.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011537L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -080011538W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +030011539T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11540S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011541F: drivers/usb/gadget/
11542F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -080011543
Jiri Kosina2dea64b2007-07-11 12:12:11 +020011544USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Jiri Kosinae5f64502015-08-09 09:11:34 +020011545M: Jiri Kosina <jikos@kernel.org>
Jiri Kosina406df152015-11-20 10:16:06 +010011546R: Benjamin Tissoires <benjamin.tissoires@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011547L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -070011548T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070011549S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -070011550F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -070011551F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011552
Olav Kongas959eea22005-11-03 17:38:14 +020011553USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011554M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011555L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +020011556S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011557F: drivers/usb/host/isp116x*
11558F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +020011559
Woojung.Huh@microchip.com146498e2016-02-25 23:33:16 +000011560USB LAN78XX ETHERNET DRIVER
11561M: Woojung Huh <woojung.huh@microchip.com>
11562M: Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11563L: netdev@vger.kernel.org
11564S: Maintained
11565F: drivers/net/usb/lan78xx.*
11566
Linus Torvalds1da177e2005-04-16 15:20:36 -070011567USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011568M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011569L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -080011570L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -070011571S: Maintained
11572W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -070011573F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011574
Clemens Ladischaf399172011-01-10 16:32:54 +010011575USB MIDI DRIVER
11576M: Clemens Ladisch <clemens@ladisch.de>
11577L: alsa-devel@alsa-project.org (moderated for non-subscribers)
11578T: git git://git.alsa-project.org/alsa-kernel.git
11579S: Maintained
11580F: sound/usb/midi.*
11581
Joe Perches444ce9d2013-08-01 21:03:32 -070011582USB NETWORKING DRIVERS
11583L: linux-usb@vger.kernel.org
11584S: Odd Fixes
11585F: drivers/net/usb/
11586
Linus Torvalds1da177e2005-04-16 15:20:36 -070011587USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -040011588M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011589L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -040011590S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011591F: Documentation/usb/ohci.txt
11592F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011593
Peter Chen963ffa32015-02-15 12:22:59 +080011594USB OTG FSM (Finite State Machine)
Peter Chen60d77b3d2015-12-25 15:54:32 +080011595M: Peter Chen <Peter.Chen@nxp.com>
Peter Chen83738562015-03-23 19:57:36 +080011596T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
Peter Chen963ffa32015-02-15 12:22:59 +080011597L: linux-usb@vger.kernel.org
11598S: Maintained
11599F: drivers/usb/common/usb-otg-fsm.c
11600
Valentina Manea563da3a2014-08-20 07:31:02 +030011601USB OVER IP DRIVER
11602M: Valentina Manea <valentina.manea.m@gmail.com>
11603M: Shuah Khan <shuah.kh@samsung.com>
11604L: linux-usb@vger.kernel.org
11605S: Maintained
Christian Lampartera6d6fc22016-02-24 19:30:35 +010011606F: Documentation/usb/usbip_protocol.txt
Valentina Manea563da3a2014-08-20 07:31:02 +030011607F: drivers/usb/usbip/
11608F: tools/usb/usbip/
11609
Linus Torvalds1da177e2005-04-16 15:20:36 -070011610USB PEGASUS DRIVER
Petko Manolova16b9452013-04-29 16:17:25 -070011611M: Petko Manolov <petkan@nucleusys.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011612L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +020011613L: netdev@vger.kernel.org
Petko Manolov052e3122013-11-15 11:51:54 +020011614T: git git://github.com/petkan/pegasus.git
11615W: https://github.com/petkan/pegasus
Linus Torvalds1da177e2005-04-16 15:20:36 -070011616S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011617F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011618
Felipe Balbid3ad5582012-05-21 16:24:49 +030011619USB PHY LAYER
Felipe Balbia55f6282016-02-03 20:23:01 +020011620M: Felipe Balbi <balbi@kernel.org>
Felipe Balbid3ad5582012-05-21 16:24:49 +030011621L: linux-usb@vger.kernel.org
11622T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11623S: Maintained
11624F: drivers/usb/phy/
Felipe Balbid3ad5582012-05-21 16:24:49 +030011625
Pete Zaitcev73e4fb32007-06-21 15:18:35 -070011626USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -070011627M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011628L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -070011629S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070011630F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070011631
Bjørn Mork4521b472015-12-03 19:24:23 +010011632USB QMI WWAN NETWORK DRIVER
11633M: Bjørn Mork <bjorn@mork.no>
11634L: netdev@vger.kernel.org
11635S: Maintained
11636F: Documentation/ABI/testing/sysfs-class-net-qmi
11637F: drivers/net/usb/qmi_wwan.c
11638
Linus Torvalds1da177e2005-04-16 15:20:36 -070011639USB RTL8150 DRIVER
Petko Manolova16b9452013-04-29 16:17:25 -070011640M: Petko Manolov <petkan@nucleusys.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011641L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +020011642L: netdev@vger.kernel.org
Petko Manolov052e3122013-11-15 11:51:54 +020011643T: git git://github.com/petkan/rtl8150.git
11644W: https://github.com/petkan/rtl8150
Linus Torvalds1da177e2005-04-16 15:20:36 -070011645S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011646F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070011647
Greg KHf896b792013-10-30 11:07:31 -070011648USB SERIAL SUBSYSTEM
Johan Hovold66085692014-06-23 12:33:15 +020011649M: Johan Hovold <johan@kernel.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011650L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -070011651S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011652F: Documentation/usb/usb-serial.txt
Greg KHf896b792013-10-30 11:07:31 -070011653F: drivers/usb/serial/
Joe Perches679655d2009-04-07 20:44:32 -070011654F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011655
Steve Glendinningb3f0db12012-08-15 21:53:38 +000011656USB SMSC75XX ETHERNET DRIVER
11657M: Steve Glendinning <steve.glendinning@shawell.net>
11658L: netdev@vger.kernel.org
11659S: Maintained
11660F: drivers/net/usb/smsc75xx.*
11661
Steve Glendinning2f7ca802008-10-02 05:27:57 +000011662USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +010011663M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +000011664L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +010011665S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011666F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +000011667
Linus Torvalds1da177e2005-04-16 15:20:36 -070011668USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -080011669M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011670L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070011671W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -070011672T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070011673S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070011674F: Documentation/usb/
Joe Perches679655d2009-04-07 20:44:32 -070011675F: drivers/usb/
11676F: include/linux/usb.h
11677F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011678
11679USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011680M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011681L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070011682S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011683F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011684
David Brownell69ae9e32006-11-14 02:03:31 -080011685USB "USBNET" DRIVER FRAMEWORK
Jiri Slabyd8130622015-07-17 16:23:20 -070011686M: Oliver Neukum <oneukum@suse.com>
Peter Korsgaard043600a2007-06-27 21:18:18 +020011687L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -080011688W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -070011689S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011690F: drivers/net/usb/usbnet.c
11691F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011692
Laurent Pinchartc0efd232008-06-30 15:04:50 -030011693USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -070011694M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -030011695L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -030011696L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -020011697T: git git://linuxtv.org/media_tree.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -030011698W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -030011699S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -030011700F: drivers/media/usb/uvc/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -020011701F: include/uapi/linux/uvcvideo.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011702
Hans Verkuilb60b9c42012-11-23 07:54:42 -030011703USB VISION DRIVER
11704M: Hans Verkuil <hverkuil@xs4all.nl>
11705L: linux-media@vger.kernel.org
11706T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020011707W: https://linuxtv.org
Hans Verkuilb60b9c42012-11-23 07:54:42 -030011708S: Odd Fixes
11709F: drivers/media/usb/usbvision/
11710
Laurent Pinchart8282da42012-10-04 02:32:42 +020011711USB WEBCAM GADGET
11712M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11713L: linux-usb@vger.kernel.org
11714S: Maintained
Andrzej Pietrasiewicz3a83c162014-09-09 02:02:09 +030011715F: drivers/usb/gadget/function/*uvc*
Joe Perchesfaf2e1d2014-08-08 14:26:18 -070011716F: drivers/usb/gadget/legacy/webcam.c
Laurent Pinchart8282da42012-10-04 02:32:42 +020011717
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +020011718USB WIRELESS RNDIS DRIVER (rndis_wlan)
Jussi Kivilinnae6146c52013-03-07 22:33:38 +020011719M: Jussi Kivilinna <jussi.kivilinna@iki.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +020011720L: linux-wireless@vger.kernel.org
11721S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011722F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +020011723
Sarah Sharpeb6bab12009-04-29 19:07:13 -070011724USB XHCI DRIVER
Sarah Sharp03d85052014-03-20 16:20:56 -070011725M: Mathias Nyman <mathias.nyman@intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -070011726L: linux-usb@vger.kernel.org
11727S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -080011728F: drivers/usb/host/xhci*
11729F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -070011730
Linus Torvalds1da177e2005-04-16 15:20:36 -070011731USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -040011732L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070011733W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -040011734S: Orphan
Kalle Valoed0ad062015-11-18 07:39:37 +020011735F: drivers/net/wireless/zydas/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011736
Antoine Jacquetb7eee612007-04-27 12:30:59 -030011737USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011738M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011739L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -030011740L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -020011741T: git git://linuxtv.org/media_tree.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -030011742W: http://royale.zerezo.com/zr364xx/
11743S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011744F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -030011745F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -030011746
Heikki Krogerus289fcff2015-05-13 15:26:42 +030011747ULPI BUS
11748M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
11749L: linux-usb@vger.kernel.org
11750S: Maintained
11751F: drivers/usb/common/ulpi.c
11752F: include/linux/ulpi/
11753
Randy Dunlape7839f22008-10-12 16:11:45 -070011754USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -070011755M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +010011756M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011757L: user-mode-linux-devel@lists.sourceforge.net
11758L: user-mode-linux-user@lists.sourceforge.net
11759W: http://user-mode-linux.sourceforge.net
Fengguang Wu9f273c22016-01-20 15:03:25 -080011760T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070011761S: Maintained
Rob Landley61516582011-05-06 09:27:36 -070011762F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -070011763F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +020011764F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -070011765F: fs/hostfs/
11766F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -030011767
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +010011768USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -070011769M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -080011770M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +010011771S: Maintained
Mandeep Sandhu3d3fecb2015-01-10 19:15:45 -080011772T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Joe Perches679655d2009-04-07 20:44:32 -070011773F: Documentation/DocBook/uio-howto.tmpl
11774F: drivers/uio/
11775F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +010011776
Karel Zak256cccb2012-06-01 10:13:09 +020011777UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -070011778M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +020011779L: util-linux@vger.kernel.org
11780W: http://en.wikipedia.org/wiki/Util-linux
11781T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -070011782S: Maintained
11783
Michal Januszewskic1fd1c02008-10-15 22:03:48 -070011784UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011785M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +010011786L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -070011787W: http://dev.gentoo.org/~spock/projects/uvesafb/
11788S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011789F: Documentation/fb/uvesafb.txt
Jingoo Han8a61f012014-07-01 15:36:01 +090011790F: drivers/video/fbdev/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -070011791
Stefan Agner456930d2015-09-02 18:06:33 -070011792VF610 NAND DRIVER
11793M: Stefan Agner <stefan@agner.ch>
11794L: linux-mtd@lists.infradead.org
11795S: Supported
11796F: drivers/mtd/nand/vf610_nfc.c
11797
Randy Dunlap4480f15b2008-10-12 16:11:58 -070011798VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070011799M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011800S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011801F: Documentation/filesystems/vfat.txt
11802F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011803
Alex Williamsoncba33452012-07-31 08:16:22 -060011804VFIO DRIVER
11805M: Alex Williamson <alex.williamson@redhat.com>
11806L: kvm@vger.kernel.org
Fengguang Wu9f273c22016-01-20 15:03:25 -080011807T: git git://github.com/awilliam/linux-vfio.git
Alex Williamsoncba33452012-07-31 08:16:22 -060011808S: Maintained
11809F: Documentation/vfio.txt
11810F: drivers/vfio/
11811F: include/linux/vfio.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011812F: include/uapi/linux/vfio.h
Alex Williamsoncba33452012-07-31 08:16:22 -060011813
Alex Williamsona714ea52015-06-18 11:59:22 -060011814VFIO PLATFORM DRIVER
11815M: Baptiste Reynal <b.reynal@virtualopensystems.com>
11816L: kvm@vger.kernel.org
11817S: Maintained
11818F: drivers/vfio/platform/
11819
Pawel Osciak9e6f3432011-06-15 15:08:32 -070011820VIDEOBUF2 FRAMEWORK
11821M: Pawel Osciak <pawel@osciak.com>
11822M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -030011823M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -070011824L: linux-media@vger.kernel.org
11825S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -030011826F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -070011827F: include/media/videobuf2-*
11828
Stephen Chandler Paul5523662e2015-10-24 13:10:29 -070011829VIRTUAL SERIO DEVICE DRIVER
11830M: Stephen Chandler Paul <thatslyude@gmail.com>
11831S: Maintained
11832F: drivers/input/serio/userio.c
11833F: include/uapi/linux/userio.h
11834
Amit Shah9a824462010-03-23 18:23:09 +053011835VIRTIO CONSOLE DRIVER
11836M: Amit Shah <amit.shah@redhat.com>
11837L: virtualization@lists.linux-foundation.org
11838S: Maintained
11839F: drivers/char/virtio_console.c
11840F: include/linux/virtio_console.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011841F: include/uapi/linux/virtio_console.h
Amit Shah9a824462010-03-23 18:23:09 +053011842
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +103011843VIRTIO CORE, NET AND BLOCK DRIVERS
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +103011844M: "Michael S. Tsirkin" <mst@redhat.com>
11845L: virtualization@lists.linux-foundation.org
11846S: Maintained
11847F: drivers/virtio/
Michael S. Tsirkinc893c8d2013-07-08 11:31:13 +093011848F: tools/virtio/
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +103011849F: drivers/net/virtio_net.c
11850F: drivers/block/virtio_blk.c
11851F: include/linux/virtio_*.h
Amos Kong916cdab2013-04-02 16:42:02 +103011852F: include/uapi/linux/virtio_*.h
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +103011853
Cornelia Huckf2dbda32015-07-01 17:15:37 +020011854VIRTIO DRIVERS FOR S390
11855M: Christian Borntraeger <borntraeger@de.ibm.com>
11856M: Cornelia Huck <cornelia.huck@de.ibm.com>
11857L: linux-s390@vger.kernel.org
11858L: virtualization@lists.linux-foundation.org
11859L: kvm@vger.kernel.org
11860S: Supported
Cornelia Huck1b568d92015-07-07 11:41:01 +020011861F: drivers/s390/virtio/
Cornelia Huckf2dbda32015-07-01 17:15:37 +020011862
Gerd Hoffmann4ad6ee92015-06-02 10:49:03 +020011863VIRTIO GPU DRIVER
11864M: David Airlie <airlied@linux.ie>
11865M: Gerd Hoffmann <kraxel@redhat.com>
11866L: dri-devel@lists.freedesktop.org
11867L: virtualization@lists.linux-foundation.org
11868S: Maintained
11869F: drivers/gpu/drm/virtio/
11870F: include/uapi/linux/virtio_gpu.h
11871
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000011872VIRTIO HOST (VHOST)
11873M: "Michael S. Tsirkin" <mst@redhat.com>
11874L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +000011875L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000011876L: netdev@vger.kernel.org
Fengguang Wu9f273c22016-01-20 15:03:25 -080011877T: git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000011878S: Maintained
11879F: drivers/vhost/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011880F: include/uapi/linux/vhost.h
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000011881
Gerd Hoffmann271c8652015-03-27 12:46:12 +103011882VIRTIO INPUT DRIVER
11883M: Gerd Hoffmann <kraxel@redhat.com>
11884S: Maintained
11885F: drivers/virtio/virtio_input.c
11886F: include/uapi/linux/virtio_input.h
11887
Linus Torvalds1da177e2005-04-16 15:20:36 -070011888VIA RHINE NETWORK DRIVER
Roger Luethi210347e2015-05-26 19:12:54 +020011889S: Orphan
Jeff Kirsherf2148a42011-05-20 20:43:09 -070011890F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070011891
Harald Weltef0bf7f62009-06-17 20:22:39 +020011892VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -080011893M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -070011894M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +020011895S: Maintained
11896F: drivers/mmc/host/via-sdmmc.c
11897
Joseph Chan69e4a7c2008-10-15 22:03:31 -070011898VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +000011899M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +010011900L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -070011901S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +000011902F: include/linux/via-core.h
11903F: include/linux/via-gpio.h
11904F: include/linux/via_i2c.h
Jingoo Han8a61f012014-07-01 15:36:01 +090011905F: drivers/video/fbdev/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -070011906
Francois Romieu01f20732007-01-26 00:57:17 -080011907VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011908M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -080011909L: netdev@vger.kernel.org
11910S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -070011911F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011912
Alex Williamsonf73f8172015-09-18 22:29:39 +080011913VIRT LIB
11914M: Alex Williamson <alex.williamson@redhat.com>
11915M: Paolo Bonzini <pbonzini@redhat.com>
11916L: kvm@vger.kernel.org
11917S: Supported
11918F: virt/lib/
11919
Hans Verkuil77911fd2014-12-10 04:22:37 -030011920VIVID VIRTUAL VIDEO DRIVER
Hans Verkuil0b7bc1f2012-11-23 08:21:50 -030011921M: Hans Verkuil <hverkuil@xs4all.nl>
11922L: linux-media@vger.kernel.org
11923T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020011924W: https://linuxtv.org
Hans Verkuil0b7bc1f2012-11-23 08:21:50 -030011925S: Maintained
Hans Verkuil77911fd2014-12-10 04:22:37 -030011926F: drivers/media/platform/vivid/*
Hans Verkuil0b7bc1f2012-11-23 08:21:50 -030011927
Patrick McHardybe7f8272007-10-23 20:26:36 -070011928VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -070011929M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -070011930L: netdev@vger.kernel.org
11931S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011932F: drivers/net/macvlan.c
11933F: include/linux/if_*vlan.h
11934F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -070011935
Florian Fainelli55e331c2009-06-16 15:33:53 -070011936VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -070011937M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -080011938L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -070011939S: Maintained
11940F: drivers/vlynq/vlynq.c
11941F: include/linux/vlynq.h
11942
Martyn Welch390beae2012-05-03 17:52:36 +010011943VME SUBSYSTEM
Martyn Welch74c600e2015-09-17 20:38:47 +010011944M: Martyn Welch <martyn@welchs.me.uk>
Manohar Vanga1bd289d2012-06-14 15:57:01 +020011945M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +010011946M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11947L: devel@driverdev.osuosl.org
11948S: Maintained
11949T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11950F: Documentation/vme_api.txt
11951F: drivers/staging/vme/
11952F: drivers/vme/
11953F: include/linux/vme*
11954
Alok Kataria4488e092013-09-04 14:23:41 +053011955VMWARE HYPERVISOR INTERFACE
11956M: Alok Kataria <akataria@vmware.com>
11957L: virtualization@lists.linux-foundation.org
11958S: Supported
11959F: arch/x86/kernel/cpu/vmware.c
11960
Dmitry Torokhov73b35d02014-06-20 10:14:58 -070011961VMWARE BALLOON DRIVER
11962M: Xavier Deguillard <xdeguillard@vmware.com>
11963M: Philip Moltmann <moltmann@vmware.com>
11964M: "VMware, Inc." <pv-drivers@vmware.com>
11965L: linux-kernel@vger.kernel.org
11966S: Maintained
11967F: drivers/misc/vmw_balloon.c
11968
Thomas Hellstrom8b8be512015-04-14 10:06:38 -070011969VMWARE VMMOUSE SUBDRIVER
11970M: "VMware Graphics" <linux-graphics-maintainer@vmware.com>
11971M: "VMware, Inc." <pv-drivers@vmware.com>
11972L: linux-input@vger.kernel.org
11973S: Maintained
11974F: drivers/input/mouse/vmmouse.c
11975F: drivers/input/mouse/vmmouse.h
11976
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -070011977VMWARE VMXNET3 ETHERNET DRIVER
Shrikrishna Khare04e1b732015-08-24 14:24:11 -070011978M: Shrikrishna Khare <skhare@vmware.com>
Joe Perches65c8bb52009-11-11 14:26:12 -080011979M: "VMware, Inc." <pv-drivers@vmware.com>
11980L: netdev@vger.kernel.org
11981S: Maintained
11982F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -070011983
Alok Kataria851b1642009-10-13 14:51:05 -070011984VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -080011985M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -070011986M: VMware PV-Drivers <pv-drivers@vmware.com>
11987L: linux-scsi@vger.kernel.org
11988S: Maintained
11989F: drivers/scsi/vmw_pvscsi.c
11990F: drivers/scsi/vmw_pvscsi.h
11991
Liam Girdwoode53e86c2008-07-10 15:48:00 +010011992VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Axel Lin88dd75a2013-03-25 16:49:51 +080011993M: Liam Girdwood <lgirdwood@gmail.com>
Mark Brownb02e48f2013-04-12 11:39:57 +010011994M: Mark Brown <broonie@kernel.org>
Mark Brown5cdeb2c2014-08-16 12:31:11 +010011995L: linux-kernel@vger.kernel.org
Liam Girdwood1dd68f02009-02-02 21:43:31 +000011996W: http://www.slimlogic.co.uk/?p=48
Sachin Kamat6febb5a2013-07-04 12:08:50 +053011997T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +010011998S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070011999F: drivers/regulator/
12000F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +010012001
David Ahern081958e2015-08-25 10:26:22 -070012002VRF
12003M: David Ahern <dsa@cumulusnetworks.com>
12004M: Shrijeet Mukherjee <shm@cumulusnetworks.com>
12005L: netdev@vger.kernel.org
12006S: Maintained
12007F: drivers/net/vrf.c
David Ahern562d8972015-09-15 10:50:14 -060012008F: Documentation/networking/vrf.txt
David Ahern081958e2015-08-25 10:26:22 -070012009
Juerg Haefligerab413192006-09-24 20:54:04 +020012010VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070012011M: Juerg Haefliger <juergh@gmail.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -070012012L: linux-hwmon@vger.kernel.org
Juerg Haefligerab413192006-09-24 20:54:04 +020012013S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070012014F: Documentation/hwmon/vt1211
12015F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +020012016
Roger Lucas1de9e372005-11-26 20:20:05 +010012017VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070012018M: Roger Lucas <vt8231@hiddenengine.co.uk>
Guenter Roeck968ce1b2016-03-22 15:11:03 -070012019L: linux-hwmon@vger.kernel.org
Roger Lucas1de9e372005-11-26 20:20:05 +010012020S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070012021F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +010012022
Tony Olech88095e72011-05-14 16:48:13 -040012023VUB300 USB to SDIO/SD/MMC bridge chip
12024M: Tony Olech <tony.olech@elandigitalsystems.com>
12025L: linux-mmc@vger.kernel.org
12026L: linux-usb@vger.kernel.org
12027S: Supported
12028F: drivers/mmc/host/vub300.c
12029
Linus Torvalds1da177e2005-04-16 15:20:36 -070012030W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -070012031M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012032S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070012033F: Documentation/w1/
12034F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -070012035
Charles Spirakis13927072006-07-05 18:05:15 +020012036W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070012037M: Marc Hulsman <m.hulsman@tudelft.nl>
Guenter Roeck968ce1b2016-03-22 15:11:03 -070012038L: linux-hwmon@vger.kernel.org
Marc Hulsman25845c22008-06-08 10:59:41 -040012039S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070012040F: Documentation/hwmon/w83791d
12041F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +020012042
Rudolf Marek61db0112006-12-12 18:18:30 +010012043W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070012044M: Rudolf Marek <r.marek@assembler.cz>
Guenter Roeck968ce1b2016-03-22 15:11:03 -070012045L: linux-hwmon@vger.kernel.org
Rudolf Marek61db0112006-12-12 18:18:30 +010012046S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070012047F: Documentation/hwmon/w83793
12048F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +010012049
Jean Delvaree3760b42010-10-28 20:31:49 +020012050W83795 HARDWARE MONITORING DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -070012051M: Jean Delvare <jdelvare@suse.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -070012052L: linux-hwmon@vger.kernel.org
Jean Delvaree3760b42010-10-28 20:31:49 +020012053S: Maintained
12054F: drivers/hwmon/w83795.c
12055
Linus Torvalds1da177e2005-04-16 15:20:36 -070012056W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070012057M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012058S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070012059F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070012060
Hans de Goedeb4e05922014-07-20 13:35:44 -070012061WACOM PROTOCOL 4 SERIAL TABLETS
12062M: Julian Squires <julian@cipht.net>
12063M: Hans de Goede <hdegoede@redhat.com>
12064L: linux-input@vger.kernel.org
12065S: Maintained
12066F: drivers/input/tablet/wacom_serial4.c
12067
Wim Van Sebroeck35277612006-01-15 21:21:14 +010012068WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -070012069M: Wim Van Sebroeck <wim@iguana.be>
Guenter Roeck1f32f832015-12-05 22:18:25 -080012070R: Guenter Roeck <linux@roeck-us.net>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +000012071L: linux-watchdog@vger.kernel.org
12072W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +010012073T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +010012074S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070012075F: Documentation/watchdog/
12076F: drivers/watchdog/
12077F: include/linux/watchdog.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080012078F: include/uapi/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +010012079
Linus Torvalds1da177e2005-04-16 15:20:36 -070012080WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070012081M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012082L: linux-scsi@vger.kernel.org
12083S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070012084F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070012085
David Herrmannb22e00f2011-09-06 13:50:40 +020012086WIIMOTE HID DRIVER
12087M: David Herrmann <dh.herrmann@googlemail.com>
12088L: linux-input@vger.kernel.org
12089S: Maintained
12090F: drivers/hid/hid-wiimote*
12091
David Härdemane258b802009-09-21 17:04:53 -070012092WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -070012093M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -070012094S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -070012095F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -070012096
William Breathitt Grayc36a4832016-02-28 23:54:46 -050012097WINSYSTEMS EBC-C384 WATCHDOG DRIVER
12098M: William Breathitt Gray <vilhelm.gray@gmail.com>
12099L: linux-watchdog@vger.kernel.org
12100S: Maintained
12101F: drivers/watchdog/ebc-c384_wdt.c
12102
William Breathitt Gray9c26df92016-01-20 13:45:33 -050012103WINSYSTEMS WS16C48 GPIO DRIVER
12104M: William Breathitt Gray <vilhelm.gray@gmail.com>
12105L: linux-gpio@vger.kernel.org
12106S: Maintained
12107F: drivers/gpio/gpio-ws16c48.c
12108
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -080012109WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -070012110M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -080012111M: linux-wimax@intel.com
Joe Perches49e7d9d2015-04-15 16:17:31 -070012112L: wimax@linuxwimax.org (subscribers-only)
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -080012113S: Supported
12114W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -070012115F: Documentation/wimax/README.wimax
Joe Perches315987d2010-08-09 17:20:50 -070012116F: include/linux/wimax/debug.h
12117F: include/net/wimax.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080012118F: include/uapi/linux/wimax.h
Joe Perches315987d2010-08-09 17:20:50 -070012119F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -080012120
Dmitry Torokhov5fc146802005-11-20 00:50:06 -050012121WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070012122M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -050012123S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070012124F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -050012125
Linus Torvalds1da177e2005-04-16 15:20:36 -070012126WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070012127M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -070012128L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -030012129W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -070012130S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070012131F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -070012132
Mark Brown055bcbc2010-08-13 14:18:12 +010012133WOLFSON MICROELECTRONICS DRIVERS
Mark Brownfef95162012-04-04 12:06:24 +010012134L: patches@opensource.wolfsonmicro.com
Richard Fitzgeraldf0e03db2015-09-22 15:30:33 +010012135T: git https://github.com/CirrusLogic/linux-drivers.git
12136W: https://github.com/CirrusLogic/linux-drivers/wiki
Mark Brownb75ea162009-07-02 16:43:08 +010012137S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -080012138F: Documentation/hwmon/wm83??
Charles Keepaxf4949932015-10-27 16:01:59 +000012139F: Documentation/devicetree/bindings/extcon/extcon-arizona.txt
12140F: Documentation/devicetree/bindings/regulator/arizona-regulator.txt
12141F: Documentation/devicetree/bindings/mfd/arizona.txt
Mark Brownaf1c5382011-10-14 21:09:43 +010012142F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +010012143F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +010012144F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +010012145F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +010012146F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +010012147F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -050012148F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +090012149F: drivers/input/misc/wm831x-on.c
12150F: drivers/input/touchscreen/wm831x-ts.c
12151F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +010012152F: drivers/mfd/arizona*
12153F: drivers/mfd/wm*.c
Richard Fitzgerald12ebc132015-11-03 15:08:36 +000012154F: drivers/mfd/cs47l24*
Mark Brownb75ea162009-07-02 16:43:08 +010012155F: drivers/power/wm83*.c
12156F: drivers/rtc/rtc-wm83*.c
12157F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +010012158F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +010012159F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +010012160F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +010012161F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +010012162F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -080012163F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +090012164F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +010012165F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +010012166F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +010012167F: sound/soc/codecs/wm*
Richard Fitzgerald12ebc132015-11-03 15:08:36 +000012168F: sound/soc/codecs/cs47l24*
Mark Brownb75ea162009-07-02 16:43:08 +010012169
Tejun Heo3e6cd7a2010-12-10 17:20:23 +010012170WORKQUEUE
12171M: Tejun Heo <tj@kernel.org>
Lai Jiangshanbadb7f52015-07-01 15:38:04 +080012172R: Lai Jiangshan <jiangshanlai@gmail.com>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +010012173T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
12174S: Maintained
12175F: include/linux/workqueue.h
12176F: kernel/workqueue.c
12177F: Documentation/workqueue.txt
12178
Linus Torvalds1da177e2005-04-16 15:20:36 -070012179X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +000012180M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012181L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +000012182S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -070012183F: Documentation/networking/x25*
12184F: include/net/x25*
12185F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -070012186
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070012187X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -070012188M: Thomas Gleixner <tglx@linutronix.de>
12189M: Ingo Molnar <mingo@redhat.com>
12190M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -080012191M: x86@kernel.org
Ingo Molnar981c3a42014-01-21 10:59:20 +010012192L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +010012193T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070012194S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070012195F: Documentation/x86/
12196F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070012197
Matthew Garrettd0944852010-02-11 10:40:13 -050012198X86 PLATFORM DRIVERS
Darren Harte181ba12014-08-27 23:36:06 -070012199M: Darren Hart <dvhart@infradead.org>
Matthew Garrettd0944852010-02-11 10:40:13 -050012200L: platform-driver-x86@vger.kernel.org
Darren Harte181ba12014-08-27 23:36:06 -070012201T: git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
Matthew Garrettd0944852010-02-11 10:40:13 -050012202S: Maintained
Joe Perches14430812013-09-11 14:23:50 -070012203F: drivers/platform/x86/
Darren Hart3a4bcee2015-10-06 23:17:04 +010012204F: drivers/platform/olpc/
Matthew Garrettd0944852010-02-11 10:40:13 -050012205
Ingo Molnarc1f5c542011-06-18 22:51:13 +020012206X86 MCE INFRASTRUCTURE
12207M: Tony Luck <tony.luck@intel.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +010012208M: Borislav Petkov <bp@alien8.de>
Ingo Molnarc1f5c542011-06-18 22:51:13 +020012209L: linux-edac@vger.kernel.org
12210S: Maintained
12211F: arch/x86/kernel/cpu/mcheck/*
12212
Borislav Petkov79ebdc92015-10-20 11:54:49 +020012213X86 MICROCODE UPDATE SUPPORT
12214M: Borislav Petkov <bp@alien8.de>
12215S: Maintained
12216F: arch/x86/kernel/cpu/microcode/*
12217
Andy Lutomirskif0905c52014-12-12 16:25:47 -080012218X86 VDSO
12219M: Andy Lutomirski <luto@amacapital.net>
12220L: linux-kernel@vger.kernel.org
12221T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
12222S: Maintained
Ingo Molnard603c8e2015-06-03 18:05:44 +020012223F: arch/x86/entry/vdso/
Andy Lutomirskif0905c52014-12-12 16:25:47 -080012224
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -020012225XC2028/3028 TUNER DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -020012226M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -020012227L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020012228W: https://linuxtv.org
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -020012229T: git git://linuxtv.org/media_tree.git
12230S: Maintained
12231F: drivers/media/tuners/tuner-xc2028.*
12232
Ian Campbellc4468082011-04-27 15:26:46 -070012233XEN HYPERVISOR INTERFACE
Konrad Rzeszutek Wilk3eeef8f2013-08-05 14:01:49 -040012234M: Boris Ostrovsky <boris.ostrovsky@oracle.com>
12235M: David Vrabel <david.vrabel@citrix.com>
Konrad Rzeszutek Wilk101ecde2016-04-01 11:26:08 -040012236M: Juergen Gross <jgross@suse.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040012237L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
David Vrabelea70ba32014-01-17 11:51:51 +000012238T: git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
Ian Campbellc4468082011-04-27 15:26:46 -070012239S: Supported
12240F: arch/x86/xen/
12241F: drivers/*/xen-*front.c
12242F: drivers/xen/
12243F: arch/x86/include/asm/xen/
12244F: include/xen/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080012245F: include/uapi/xen/
Ian Campbellc4468082011-04-27 15:26:46 -070012246
Stefano Stabellini77bfb472012-09-14 13:35:15 +000012247XEN HYPERVISOR ARM
Stefano Stabellini85d1a292016-03-29 11:01:16 +010012248M: Stefano Stabellini <sstabellini@kernel.org>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040012249L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
Stefano Stabellini85d1a292016-03-29 11:01:16 +010012250S: Maintained
Stefano Stabellini77bfb472012-09-14 13:35:15 +000012251F: arch/arm/xen/
12252F: arch/arm/include/asm/xen/
12253
Stefano Stabellinib475e832013-06-04 16:13:23 +000012254XEN HYPERVISOR ARM64
Stefano Stabellini85d1a292016-03-29 11:01:16 +010012255M: Stefano Stabellini <sstabellini@kernel.org>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040012256L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
Stefano Stabellini85d1a292016-03-29 11:01:16 +010012257S: Maintained
Stefano Stabellinib475e832013-06-04 16:13:23 +000012258F: arch/arm64/xen/
12259F: arch/arm64/include/asm/xen/
12260
Ian Campbell9b57e1a2011-04-03 23:12:23 +000012261XEN NETWORK BACKEND DRIVER
Wei Liu83860402013-09-26 12:41:53 +010012262M: Wei Liu <wei.liu2@citrix.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040012263L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
Ian Campbell9b57e1a2011-04-03 23:12:23 +000012264L: netdev@vger.kernel.org
12265S: Supported
12266F: drivers/net/xen-netback/*
12267
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -040012268XEN PCI SUBSYSTEM
12269M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040012270L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +020012271S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -040012272F: arch/x86/pci/*xen*
12273F: drivers/pci/*xen*
12274
Konrad Rzeszutek Wilka2c5ae62014-06-27 10:10:45 -040012275XEN BLOCK SUBSYSTEM
12276M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Roger Pau Monnebcadb692015-01-23 17:14:29 +010012277M: Roger Pau Monné <roger.pau@citrix.com>
Konrad Rzeszutek Wilka2c5ae62014-06-27 10:10:45 -040012278L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
12279S: Supported
12280F: drivers/block/xen-blkback/*
12281F: drivers/block/xen*
12282
Juergen Gross15d03602014-08-28 06:44:13 +020012283XEN PVSCSI DRIVERS
12284M: Juergen Gross <jgross@suse.com>
12285L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
12286L: linux-scsi@vger.kernel.org
12287S: Supported
12288F: drivers/scsi/xen-scsifront.c
12289F: drivers/xen/xen-scsiback.c
12290F: include/xen/interface/io/vscsiif.h
12291
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -040012292XEN SWIOTLB SUBSYSTEM
12293M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040012294L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -040012295S: Supported
12296F: arch/x86/xen/*swiotlb*
12297F: drivers/xen/*swiotlb*
12298
Linus Torvalds1da177e2005-04-16 15:20:36 -070012299XFS FILESYSTEM
12300P: Silicon Graphics Inc
Namjae Jeon809625c2013-12-08 23:33:50 +090012301M: Dave Chinner <david@fromorbit.com>
Ben Myers18caa672012-04-12 17:05:05 +000012302M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +100012303L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -070012304W: http://oss.sgi.com/projects/xfs
Fengguang Wu9f273c22016-01-20 15:03:25 -080012305T: git git://git.kernel.org/pub/scm/linux/kernel/git/dgc/linux-xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070012306S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070012307F: Documentation/filesystems/xfs.txt
12308F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -070012309
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +000012310XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +000012311M: Anirudha Sarangi <anirudh@xilinx.com>
12312M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +000012313S: Maintained
12314F: drivers/net/ethernet/xilinx/xilinx_axienet*
12315
Peter Korsgaard238b8722006-12-06 20:35:17 -080012316XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070012317M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -080012318L: linux-serial@vger.kernel.org
12319S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -080012320F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -080012321
Laurent Pinchartdf330512013-05-15 11:36:19 -030012322XILINX VIDEO IP CORES
12323M: Hyun Kwon <hyun.kwon@xilinx.com>
12324M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12325L: linux-media@vger.kernel.org
12326T: git git://linuxtv.org/media_tree.git
12327S: Supported
12328F: Documentation/devicetree/bindings/media/xilinx/
12329F: drivers/media/platform/xilinx/
Laurent Pincharta5562f62013-05-15 11:36:56 -030012330F: include/uapi/linux/xilinx-v4l2-controls.h
Laurent Pinchartdf330512013-05-15 11:36:19 -030012331
Eli Billauer74316942014-09-09 09:38:01 +030012332XILLYBUS DRIVER
12333M: Eli Billauer <eli.billauer@gmail.com>
12334L: linux-kernel@vger.kernel.org
12335S: Supported
12336F: drivers/char/xillybus/
12337
Max Filippovf620e4b2014-03-12 21:55:26 +040012338XTENSA XTFPGA PLATFORM SUPPORT
12339M: Max Filippov <jcmvbkbc@gmail.com>
12340L: linux-xtensa@linux-xtensa.org
12341S: Maintained
12342F: drivers/spi/spi-xtensa-xtfpga.c
Max Filippov57b70682014-12-26 20:19:38 +030012343F: sound/soc/xtensa/xtfpga-i2s.c
Max Filippovf620e4b2014-03-12 21:55:26 +040012344
Linus Torvalds1da177e2005-04-16 15:20:36 -070012345YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -070012346M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012347L: linux-hams@vger.kernel.org
12348S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070012349F: drivers/net/hamradio/yam*
12350F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070012351
Henkaf64a5e2005-10-12 15:02:56 +020012352YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070012353M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +020012354L: usbb2k-api-dev@nongnu.org
12355S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070012356F: Documentation/input/yealink.txt
12357F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +020012358
Linus Torvalds1da177e2005-04-16 15:20:36 -070012359Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -070012360M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012361W: http://yaina.de/jreuter/
12362W: http://www.qsl.net/dl1bke/
12363L: linux-hams@vger.kernel.org
12364S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070012365F: Documentation/networking/z8530drv.txt
12366F: drivers/net/hamradio/*scc.c
12367F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070012368
Seth Jennings0cf31ec2013-07-08 16:00:05 -070012369ZBUD COMPRESSED PAGE ALLOCATOR
Seth Jennings0bb181c2016-02-02 16:57:23 -080012370M: Seth Jennings <sjenning@redhat.com>
Seth Jennings0cf31ec2013-07-08 16:00:05 -070012371L: linux-mm@kvack.org
12372S: Maintained
12373F: mm/zbud.c
12374F: include/linux/zbud.h
12375
Daniel Drake7c0c3af2006-07-16 13:55:17 +010012376ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070012377M: Daniel Drake <dsd@gentoo.org>
12378M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +010012379W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -070012380L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +010012381L: zd1211-devs@lists.sourceforge.net (subscribers-only)
12382S: Maintained
Kalle Valo69483002015-11-18 09:27:32 +020012383F: drivers/net/wireless/zydas/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +010012384
Dan Streetman20263022015-06-30 14:59:57 -070012385ZPOOL COMPRESSED PAGE STORAGE API
12386M: Dan Streetman <ddstreet@ieee.org>
12387L: linux-mm@kvack.org
12388S: Maintained
12389F: mm/zpool.c
12390F: include/linux/zpool.h
12391
Linus Torvalds1da177e2005-04-16 15:20:36 -070012392ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -070012393L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -030012394L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070012395W: http://mjpeg.sourceforge.net/driver-zoran/
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020012396T: hg https://linuxtv.org/hg/v4l-dvb
Trent Piephof63145e2009-01-24 20:52:41 -030012397S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -030012398F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -070012399
Minchan Kim6920f2c2014-01-30 15:45:56 -080012400ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
12401M: Minchan Kim <minchan@kernel.org>
12402M: Nitin Gupta <ngupta@vflare.org>
Minchan Kim74f30372015-05-05 16:23:28 -070012403R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
Minchan Kim6920f2c2014-01-30 15:45:56 -080012404L: linux-kernel@vger.kernel.org
12405S: Maintained
12406F: drivers/block/zram/
12407F: Documentation/blockdev/zram.txt
12408
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -070012409ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070012410M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -070012411S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -080012412F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -070012413
Minchan Kimeae70d02014-01-30 15:45:57 -080012414ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
12415M: Minchan Kim <minchan@kernel.org>
12416M: Nitin Gupta <ngupta@vflare.org>
Sergey Senozhatsky41192a22015-10-22 13:32:13 -070012417R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
Minchan Kimeae70d02014-01-30 15:45:57 -080012418L: linux-mm@kvack.org
12419S: Maintained
12420F: mm/zsmalloc.c
12421F: include/linux/zsmalloc.h
Minchan Kimd02be502015-04-15 16:15:46 -070012422F: Documentation/vm/zsmalloc.txt
Minchan Kimeae70d02014-01-30 15:45:57 -080012423
Seth Jennings0cf31ec2013-07-08 16:00:05 -070012424ZSWAP COMPRESSED SWAP CACHING
Seth Jennings0bb181c2016-02-02 16:57:23 -080012425M: Seth Jennings <sjenning@redhat.com>
Seth Jennings0cf31ec2013-07-08 16:00:05 -070012426L: linux-mm@kvack.org
12427S: Maintained
12428F: mm/zswap.c
12429
Linus Torvalds1da177e2005-04-16 15:20:36 -070012430THE REST
Joe Perches8b58be82009-07-29 15:04:30 -070012431M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -070012432L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -080012433Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -040012434T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070012435S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -070012436F: *
12437F: */