blob: 6790ecc65e6bb0d38f1f4d58856861656a7500da [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)
154M: Alexander Aring <alex.aring@gmail.com>
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
209W: http://linuxtv.org/
210W: 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
226F: Documentation/ABI/
227F: include/linux/syscalls.h
228F: include/uapi/
229F: kernel/sys_ni.c
230
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700231ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
Hans de Goede93d0cc52011-03-21 17:59:36 +0100232M: Hans de Goede <hdegoede@redhat.com>
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200233L: lm-sensors@lm-sensors.org
234S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700235F: drivers/hwmon/abituguru.c
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200236
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700237ABIT UGURU 3 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700238M: Alistair John Strachan <alistair@devzero.co.uk>
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700239L: lm-sensors@lm-sensors.org
240S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700241F: drivers/hwmon/abituguru3.c
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700242
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243ACENIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700244M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245L: linux-acenic@sunsite.dk
246S: Maintained
Jeff Kirsher531c4f82011-08-13 00:37:14 -0700247F: drivers/net/ethernet/alteon/acenic*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Peter Feuerere86435e2009-06-21 18:53:03 +0200249ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700250M: Peter Feuerer <peter@piie.net>
Matthew Garrettd0944852010-02-11 10:40:13 -0500251L: platform-driver-x86@vger.kernel.org
Joe Perches4fc26e32009-07-29 15:04:22 -0700252W: http://piie.net/?section=acerhdf
253S: Maintained
254F: drivers/platform/x86/acerhdf.c
Peter Feuerere86435e2009-06-21 18:53:03 +0200255
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000256ACER WMI LAPTOP EXTRAS
Lee, Chun-Yi182ae552012-12-14 16:14:24 +0800257M: "Lee, Chun-Yi" <jlee@suse.com>
Matthew Garrettd0944852010-02-11 10:40:13 -0500258L: platform-driver-x86@vger.kernel.org
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000259S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700260F: drivers/platform/x86/acer-wmi.c
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000261
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262ACPI
Joe Perches9c3646d2015-06-25 15:02:00 -0700263M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Rafael J. Wysocki7fb06082014-03-20 03:34:47 +0100264M: Len Brown <lenb@kernel.org>
Len Brown6968e502005-12-30 00:32:49 -0500265L: linux-acpi@vger.kernel.org
Rafael J. Wysocki360818b2013-10-09 01:48:26 +0200266W: https://01.org/linux-acpi
267Q: https://patchwork.kernel.org/project/linux-acpi/list/
268T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
Len Brown8b59a452007-01-08 19:03:28 -0500269S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700270F: drivers/acpi/
271F: drivers/pnp/pnpacpi/
272F: include/linux/acpi.h
Felipe Contreras43368e72009-09-21 17:04:24 -0700273F: include/acpi/
Yaowei Bai3a75ef02015-01-17 15:31:07 +0800274F: Documentation/acpi/
Lv Zheng89ca78a2013-06-20 08:02:44 +0800275F: Documentation/ABI/testing/sysfs-bus-acpi
Bjorn Helgaas15fd8302013-06-26 13:38:37 -0600276F: drivers/pci/*acpi*
277F: drivers/pci/*/*acpi*
278F: drivers/pci/*/*/*acpi*
Yaowei Bai3a75ef02015-01-17 15:31:07 +0800279F: tools/power/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500280
Rafael J. Wysocki37749292013-10-09 01:48:35 +0200281ACPI COMPONENT ARCHITECTURE (ACPICA)
282M: Robert Moore <robert.moore@intel.com>
283M: Lv Zheng <lv.zheng@intel.com>
Joe Perches9c3646d2015-06-25 15:02:00 -0700284M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
Rafael J. Wysocki37749292013-10-09 01:48:35 +0200285L: linux-acpi@vger.kernel.org
286L: devel@acpica.org
287W: https://acpica.org/
288W: https://github.com/acpica/acpica/
289Q: https://patchwork.kernel.org/project/linux-acpi/list/
290T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
291S: Supported
292F: drivers/acpi/acpica/
293F: include/acpi/
Lv Zheng2754c442014-01-15 12:04:24 +0800294F: tools/power/acpi/
Rafael J. Wysocki37749292013-10-09 01:48:35 +0200295
Len Brown8b59a452007-01-08 19:03:28 -0500296ACPI FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700297M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500298L: linux-acpi@vger.kernel.org
Rafael J. Wysocki5ca92bd2013-10-10 23:03:44 +0200299W: https://01.org/linux-acpi
Len Brown8b59a452007-01-08 19:03:28 -0500300S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700301F: drivers/acpi/fan.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
Len Brown8b59a452007-01-08 19:03:28 -0500303ACPI THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700304M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500305L: linux-acpi@vger.kernel.org
Rafael J. Wysocki5ca92bd2013-10-10 23:03:44 +0200306W: https://01.org/linux-acpi
Len Brown8b59a452007-01-08 19:03:28 -0500307S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700308F: drivers/acpi/*thermal*
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700309
Len Brown359acec2007-02-10 01:59:24 -0500310ACPI VIDEO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700311M: Zhang Rui <rui.zhang@intel.com>
Len Brown359acec2007-02-10 01:59:24 -0500312L: linux-acpi@vger.kernel.org
Rafael J. Wysocki5ca92bd2013-10-10 23:03:44 +0200313W: https://01.org/linux-acpi
Len Brown359acec2007-02-10 01:59:24 -0500314S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700315F: drivers/acpi/video.c
Len Brown359acec2007-02-10 01:59:24 -0500316
Carlos Corbachobff431e2008-02-05 02:17:04 +0000317ACPI WMI DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -0500318L: platform-driver-x86@vger.kernel.org
Carlos Corbacho5b927252011-05-02 09:57:13 +0100319S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700320F: drivers/platform/x86/wmi.c
Carlos Corbachobff431e2008-02-05 02:17:04 +0000321
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100322AD1889 ALSA SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700323M: Thibaut Varene <T-Bone@parisc-linux.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200324W: http://wiki.parisc-linux.org/AD1889
325L: linux-parisc@vger.kernel.org
326S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700327F: sound/pci/ad1889.*
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100328
Michael Hennerich527a1a82010-10-28 11:31:28 +0000329AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
330M: Michael Hennerich <michael.hennerich@analog.com>
Joe Perchesa3f531a2011-03-22 16:34:28 -0700331W: http://wiki.analog.com/AD5254
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800332W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000333S: Supported
334F: drivers/misc/ad525x_dpot.c
335
336AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
337M: Michael Hennerich <michael.hennerich@analog.com>
Joe Perchesa3f531a2011-03-22 16:34:28 -0700338W: http://wiki.analog.com/AD5398
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800339W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000340S: Supported
341F: drivers/regulator/ad5398.c
342
343AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
344M: Michael Hennerich <michael.hennerich@analog.com>
Joe Perchesa3f531a2011-03-22 16:34:28 -0700345W: http://wiki.analog.com/AD7142
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800346W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000347S: Supported
348F: drivers/input/misc/ad714x.c
349
350AD7877 TOUCHSCREEN DRIVER
351M: Michael Hennerich <michael.hennerich@analog.com>
Joe Perchesa3f531a2011-03-22 16:34:28 -0700352W: http://wiki.analog.com/AD7877
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800353W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000354S: Supported
355F: drivers/input/touchscreen/ad7877.c
356
357AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
358M: Michael Hennerich <michael.hennerich@analog.com>
Joe Perchesa3f531a2011-03-22 16:34:28 -0700359W: http://wiki.analog.com/AD7879
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800360W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000361S: Supported
362F: drivers/input/touchscreen/ad7879.c
363
Jiri Kosina1330b0d2011-10-31 17:11:41 -0700364ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
Jiri Kosinae5f64502015-08-09 09:11:34 +0200365M: Jiri Kosina <jikos@kernel.org>
Jiri Kosina1330b0d2011-10-31 17:11:41 -0700366S: Maintained
367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368ADM1025 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -0700369M: Jean Delvare <jdelvare@suse.com>
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200370L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700372F: Documentation/hwmon/adm1025
373F: drivers/hwmon/adm1025.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
Corentin Labbecae2caa2007-02-14 21:15:04 +0100375ADM1029 HARDWARE MONITOR DRIVER
LABBE Corentinfce8ffa2014-05-08 16:07:45 +0200376M: Corentin Labbe <clabbe.montjoie@gmail.com>
Corentin Labbecae2caa2007-02-14 21:15:04 +0100377L: lm-sensors@lm-sensors.org
378S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700379F: drivers/hwmon/adm1029.c
Corentin Labbecae2caa2007-02-14 21:15:04 +0100380
Michael Wucc0b88c2007-08-31 01:15:25 -0400381ADM8211 WIRELESS DRIVER
Michael Wucc0b88c2007-08-31 01:15:25 -0400382L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +0200383W: http://wireless.kernel.org/
John W. Linvillee71bcbd2010-07-12 16:03:07 -0400384S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700385F: drivers/net/wireless/adm8211.*
Michael Wucc0b88c2007-08-31 01:15:25 -0400386
Sakari Ailuse8e31622012-11-12 18:14:39 -0300387ADP1653 FLASH CONTROLLER DRIVER
388M: Sakari Ailus <sakari.ailus@iki.fi>
389L: linux-media@vger.kernel.org
390S: Maintained
391F: drivers/media/i2c/adp1653.c
392F: include/media/adp1653.h
393
Michael Hennerich527a1a82010-10-28 11:31:28 +0000394ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
395M: Michael Hennerich <michael.hennerich@analog.com>
Joe Perchesa3f531a2011-03-22 16:34:28 -0700396W: http://wiki.analog.com/ADP5520
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800397W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000398S: Supported
399F: drivers/mfd/adp5520.c
400F: drivers/video/backlight/adp5520_bl.c
Joe Perches45b4e0d2011-03-22 16:34:27 -0700401F: drivers/leds/leds-adp5520.c
Joe Perches77278d52012-01-10 15:08:44 -0800402F: drivers/gpio/gpio-adp5520.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000403F: drivers/input/keyboard/adp5520-keys.c
404
405ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
406M: Michael Hennerich <michael.hennerich@analog.com>
Joe Perchesa3f531a2011-03-22 16:34:28 -0700407W: http://wiki.analog.com/ADP5588
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800408W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000409S: Supported
410F: drivers/input/keyboard/adp5588-keys.c
Joe Perches77278d52012-01-10 15:08:44 -0800411F: drivers/gpio/gpio-adp5588.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000412
413ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
414M: Michael Hennerich <michael.hennerich@analog.com>
Joe Perchesa3f531a2011-03-22 16:34:28 -0700415W: http://wiki.analog.com/ADP8860
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800416W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000417S: Supported
418F: drivers/video/backlight/adp8860_bl.c
419
Dirk Eibach8c22a8f2011-03-21 17:59:36 +0100420ADS1015 HARDWARE MONITOR DRIVER
421M: Dirk Eibach <eibach@gdsys.de>
422L: lm-sensors@lm-sensors.org
423S: Maintained
424F: Documentation/hwmon/ads1015
425F: drivers/hwmon/ads1015.c
426F: include/linux/i2c/ads1015.h
427
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428ADT746X FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700429M: Colin Leroy <colin@colino.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700431F: drivers/macintosh/therm_adt746x.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Jean Delvareb058b852009-12-09 20:36:08 +0100433ADT7475 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -0700434M: Jean Delvare <jdelvare@suse.com>
Jean Delvareb058b852009-12-09 20:36:08 +0100435L: lm-sensors@lm-sensors.org
436S: Maintained
437F: Documentation/hwmon/adt7475
438F: drivers/hwmon/adt7475.c
439
Michael Hennerich527a1a82010-10-28 11:31:28 +0000440ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
441M: Michael Hennerich <michael.hennerich@analog.com>
Joe Perchesa3f531a2011-03-22 16:34:28 -0700442W: http://wiki.analog.com/ADXL345
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800443W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000444S: Supported
445F: drivers/input/misc/adxl34x.c
446
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400447ADVANSYS SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700448M: Matthew Wilcox <matthew@wil.cx>
Jiri Slabyd8130622015-07-17 16:23:20 -0700449M: Hannes Reinecke <hare@suse.com>
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400450L: linux-scsi@vger.kernel.org
451S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700452F: Documentation/scsi/advansys.txt
453F: drivers/scsi/advansys.c
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400454
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455AEDSP16 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700456M: Riccardo Facchetti <fizban@tin.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700458F: sound/oss/aedsp16.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
Antti Palosaari91952bc2012-10-01 12:28:46 -0300460AF9013 MEDIA DRIVER
461M: Antti Palosaari <crope@iki.fi>
462L: linux-media@vger.kernel.org
463W: http://linuxtv.org/
464W: http://palosaari.fi/linux/
465Q: http://patchwork.linuxtv.org/project/linux-media/list/
466T: git git://linuxtv.org/anttip/media_tree.git
467S: Maintained
468F: drivers/media/dvb-frontends/af9013*
469
470AF9033 MEDIA DRIVER
471M: Antti Palosaari <crope@iki.fi>
472L: linux-media@vger.kernel.org
473W: http://linuxtv.org/
474W: http://palosaari.fi/linux/
475Q: http://patchwork.linuxtv.org/project/linux-media/list/
476T: git git://linuxtv.org/anttip/media_tree.git
477S: Maintained
478F: drivers/media/dvb-frontends/af9033*
479
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480AFFS FILE SYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +0200481L: linux-fsdevel@vger.kernel.org
482S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700483F: Documentation/filesystems/affs.txt
484F: fs/affs/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700486AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
Joe Perches8b58be82009-07-29 15:04:30 -0700487M: David Howells <dhowells@redhat.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700488L: linux-afs@lists.infradead.org
489S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700490F: fs/afs/
491F: include/net/af_rxrpc.h
492F: net/rxrpc/af_rxrpc.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700493
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494AGPGART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700495M: David Airlie <airlied@linux.ie>
Dave Airlie878eaf62014-02-27 14:51:55 +1000496T: git git://people.freedesktop.org/~airlied/linux (part of drm maint)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700498F: drivers/char/agp/
499F: include/linux/agp*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -0800500F: include/uapi/linux/agp*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
502AHA152X SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700503M: "Juergen E. Fischer" <fischer@norbit.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504L: linux-scsi@vger.kernel.org
505S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700506F: drivers/scsi/aha152x*
507F: drivers/scsi/pcmcia/aha152x*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
Hannes Reinecke64624d42007-10-19 10:32:29 +0200509AIC7XXX / AIC79XX SCSI DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -0700510M: Hannes Reinecke <hare@suse.com>
Hannes Reinecke64624d42007-10-19 10:32:29 +0200511L: linux-scsi@vger.kernel.org
512S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700513F: drivers/scsi/aic7xxx/
Hannes Reinecke64624d42007-10-19 10:32:29 +0200514
Hans Verkuil450500a2012-11-23 07:11:33 -0300515AIMSLAB FM RADIO RECEIVER DRIVER
516M: Hans Verkuil <hverkuil@xs4all.nl>
517L: linux-media@vger.kernel.org
518T: git git://linuxtv.org/media_tree.git
519W: http://linuxtv.org
520S: Maintained
521F: drivers/media/radio/radio-aimslab*
522
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700523AIO
Joe Perches8b58be82009-07-29 15:04:30 -0700524M: Benjamin LaHaise <bcrl@kvack.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700525L: linux-aio@kvack.org
526S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700527F: fs/aio.c
528F: include/linux/*aio*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700529
Antti Palosaari469d4ec2014-07-17 21:57:14 -0300530AIRSPY MEDIA DRIVER
531M: Antti Palosaari <crope@iki.fi>
532L: linux-media@vger.kernel.org
533W: http://linuxtv.org/
534W: http://palosaari.fi/linux/
535Q: http://patchwork.linuxtv.org/project/linux-media/list/
536T: git git://linuxtv.org/anttip/media_tree.git
537S: Maintained
538F: drivers/media/usb/airspy/
539
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540ALCATEL SPEEDTOUCH USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700541M: Duncan Sands <duncan.sands@free.fr>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -0700542L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543W: http://www.linux-usb.org/SpeedTouch/
544S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700545F: drivers/usb/atm/speedtch.c
546F: drivers/usb/atm/usbatm.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Pierre Ossman272f1332007-05-14 21:25:26 +0200548ALCHEMY AU1XX0 MMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700549M: Manuel Lauss <manuel.lauss@gmail.com>
Manuel Lauss08fcb722008-06-09 08:40:35 +0200550S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700551F: drivers/mmc/host/au1xmmc.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200552
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000553ALI1563 I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700554M: Rudolf Marek <r.marek@assembler.cz>
Jean Delvare846557d2008-10-30 15:55:47 +0100555L: linux-i2c@vger.kernel.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000556S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700557F: Documentation/i2c/busses/i2c-ali1563
558F: drivers/i2c/busses/i2c-ali1563.c
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000559
LABBE Corentinbc368792015-07-17 16:39:42 +0200560ALLWINNER SECURITY SYSTEM
561M: Corentin Labbe <clabbe.montjoie@gmail.com>
562L: linux-crypto@vger.kernel.org
563S: Maintained
564F: drivers/crypto/sunxi-ss/
565
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566ALPHA PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700567M: Richard Henderson <rth@twiddle.net>
Joe Perches8b58be82009-07-29 15:04:30 -0700568M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Matt Turnerabd4d602010-01-14 13:15:20 -0500569M: Matt Turner <mattst88@gmail.com>
Joe Perchesc89f4f92012-03-23 15:01:57 -0700570S: Odd Fixes
Cheng Renquana9406692009-03-31 15:23:35 -0700571L: linux-alpha@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -0700572F: arch/alpha/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
Ley Foon Tanf62092f2015-02-04 16:32:18 +0800574ALTERA MAILBOX DRIVER
575M: Ley Foon Tan <lftan@altera.com>
576L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
577S: Maintained
578F: drivers/mailbox/mailbox-altera.c
579
Tien Hock Lohc5abbba2015-02-24 01:53:03 -0800580ALTERA PIO DRIVER
581M: Tien Hock Loh <thloh@altera.com>
582L: linux-gpio@vger.kernel.org
583S: Maintained
584F: drivers/gpio/gpio-altera.c
585
Vince Bridgers16b8b922014-03-17 17:52:40 -0500586ALTERA TRIPLE SPEED ETHERNET DRIVER
Vince Bridgersc53fed02014-10-09 10:08:42 -0500587M: Vince Bridgers <vbridger@opensource.altera.com>
Vince Bridgers16b8b922014-03-17 17:52:40 -0500588L: netdev@vger.kernel.org
589L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
590S: Maintained
591F: drivers/net/ethernet/altera/
592
Tobias Klauseradf92512011-02-09 10:58:29 +0100593ALTERA UART/JTAG UART SERIAL DRIVERS
594M: Tobias Klauser <tklauser@distanz.ch>
595L: linux-serial@vger.kernel.org
Tobias Klauser61bd0942014-02-25 15:01:49 -0800596L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
Tobias Klauseradf92512011-02-09 10:58:29 +0100597S: Maintained
598F: drivers/tty/serial/altera_uart.c
599F: drivers/tty/serial/altera_jtaguart.c
600F: include/linux/altera_uart.h
601F: include/linux/altera_jtaguart.h
602
Tom Lendackyf4875e12013-11-12 11:46:57 -0600603AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
604M: Tom Lendacky <thomas.lendacky@amd.com>
605L: linux-crypto@vger.kernel.org
606S: Supported
607F: drivers/crypto/ccp/
608F: include/linux/ccp.h
609
Andreas Herrmann512d1022011-05-25 20:43:31 +0200610AMD FAM15H PROCESSOR POWER MONITORING DRIVER
Andreas Herrmannd034fbf2012-10-29 18:50:47 +0100611M: Andreas Herrmann <herrmann.der.user@googlemail.com>
Andreas Herrmann512d1022011-05-25 20:43:31 +0200612L: lm-sensors@lm-sensors.org
613S: Maintained
614F: Documentation/hwmon/fam15h_power
615F: drivers/hwmon/fam15h_power.c
616
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700617AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700618M: Thomas Dahlmann <dahlmann.thomas@arcor.de>
Jordan Crouse67d76712008-05-12 14:02:22 -0700619L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700620S: Supported
Joe Perchesfaf2e1d2014-08-08 14:26:18 -0700621F: drivers/usb/gadget/udc/amd5536udc.*
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700622
Jordan Crousef90b8112006-01-06 00:12:14 -0800623AMD GEODE PROCESSOR/CHIPSET SUPPORT
Andres Salomon69006092010-12-21 17:24:23 -0800624P: Andres Salomon <dilinger@queued.net>
Jordan Crouse67d76712008-05-12 14:02:22 -0700625L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Jordan Crousef90b8112006-01-06 00:12:14 -0800626W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
627S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700628F: drivers/char/hw_random/geode-rng.c
629F: drivers/crypto/geode*
Jingoo Han8a61f012014-07-01 15:36:01 +0900630F: drivers/video/fbdev/geode/
Joe Perches679655d2009-04-07 20:44:32 -0700631F: arch/x86/include/asm/geode.h
Jordan Crousef90b8112006-01-06 00:12:14 -0800632
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200633AMD IOMMU (AMD-VI)
Joerg Roedele4110562012-10-23 16:16:23 +0200634M: Joerg Roedel <joro@8bytes.org>
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200635L: iommu@lists.linux-foundation.org
Joerg Roedel525b2332012-03-15 11:56:44 +0100636T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
Joerg Roedele4110562012-10-23 16:16:23 +0200637S: Maintained
Joe Perchesb2c16392011-12-08 20:21:40 -0800638F: drivers/iommu/amd_iommu*.[ch]
639F: include/linux/amd-iommu.h
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200640
Oded Gabbay16423d62014-07-15 13:08:36 +0300641AMD KFD
Oded Gabbay1241e0b2015-05-10 12:37:28 +0300642M: Oded Gabbay <oded.gabbay@gmail.com>
Joe Perches49e7d9d2015-04-15 16:17:31 -0700643L: dri-devel@lists.freedesktop.org
644T: git git://people.freedesktop.org/~gabbayo/linux.git
645S: Supported
Oded Gabbay130e0372015-06-12 21:35:14 +0300646F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
647F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
Oded Gabbay32c22e92015-06-12 21:38:22 +0300648F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
Ben Gozff758a12014-10-07 14:43:07 +0300649F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
Joe Perches49e7d9d2015-04-15 16:17:31 -0700650F: drivers/gpu/drm/amd/amdkfd/
Oded Gabbay04df25d2015-01-05 18:15:45 +0200651F: drivers/gpu/drm/amd/include/cik_structs.h
652F: drivers/gpu/drm/amd/include/kgd_kfd_interface.h
Ben Gozff758a12014-10-07 14:43:07 +0300653F: drivers/gpu/drm/amd/include/vi_structs.h
Joe Perches49e7d9d2015-04-15 16:17:31 -0700654F: drivers/gpu/drm/radeon/radeon_kfd.c
655F: drivers/gpu/drm/radeon/radeon_kfd.h
656F: include/uapi/linux/kfd_ioctl.h
Oded Gabbay16423d62014-07-15 13:08:36 +0300657
Peter Orubae7f5b302008-07-28 18:44:11 +0200658AMD MICROCODE UPDATE SUPPORT
Borislav Petkovca68a522015-03-29 15:54:13 +0200659M: Borislav Petkov <bp@alien8.de>
Andreas Herrmann943482d2012-10-29 18:51:38 +0100660S: Maintained
Joe Perches73d425f2014-08-08 14:24:57 -0700661F: arch/x86/kernel/cpu/microcode/amd*
Peter Orubae7f5b302008-07-28 18:44:11 +0200662
Lendacky, Thomas45198c72014-06-05 09:15:24 -0500663AMD XGBE DRIVER
664M: Tom Lendacky <thomas.lendacky@amd.com>
665L: netdev@vger.kernel.org
666S: Supported
667F: drivers/net/ethernet/amd/xgbe/
Lendacky, Thomas45198c72014-06-05 09:15:24 -0500668
Stelian Pop284f42b2006-12-12 18:18:31 +0100669AMS (Apple Motion Sensor) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700670M: Michael Hanselmann <linux-kernel@hansmi.ch>
Stelian Pop284f42b2006-12-12 18:18:31 +0100671S: Supported
Jean Delvarebd5f47e2010-10-28 20:31:50 +0200672F: drivers/macintosh/ams/
Stelian Pop284f42b2006-12-12 18:18:31 +0100673
Tom Tuckerf94b5332006-09-22 15:22:48 -0700674AMSO1100 RNIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700675M: Tom Tucker <tom@opengridcomputing.com>
676M: Steve Wise <swise@opengridcomputing.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -0700677L: linux-rdma@vger.kernel.org
Tom Tuckerf94b5332006-09-22 15:22:48 -0700678S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700679F: drivers/infiniband/hw/amso1100/
Tom Tuckerf94b5332006-09-22 15:22:48 -0700680
Hans Verkuil531fca12012-11-23 06:53:24 -0300681ANALOG DEVICES INC AD9389B DRIVER
682M: Hans Verkuil <hans.verkuil@cisco.com>
683L: linux-media@vger.kernel.org
684S: Maintained
685F: drivers/media/i2c/ad9389b*
686
Lars-Peter Clausen614b4382015-01-23 12:52:34 -0300687ANALOG DEVICES INC ADV7180 DRIVER
688M: Lars-Peter Clausen <lars@metafoo.de>
689L: linux-media@vger.kernel.org
690W: http://ez.analog.com/community/linux-device-drivers
691S: Supported
692F: drivers/media/i2c/adv7180.c
693
Hans Verkuilc40ddfa2013-08-12 10:02:48 -0300694ANALOG DEVICES INC ADV7511 DRIVER
695M: Hans Verkuil <hans.verkuil@cisco.com>
696L: linux-media@vger.kernel.org
697S: Maintained
698F: drivers/media/i2c/adv7511*
699
Hans Verkuil531fca12012-11-23 06:53:24 -0300700ANALOG DEVICES INC ADV7604 DRIVER
701M: Hans Verkuil <hans.verkuil@cisco.com>
702L: linux-media@vger.kernel.org
703S: Maintained
704F: drivers/media/i2c/adv7604*
705
Hans Verkuilc40ddfa2013-08-12 10:02:48 -0300706ANALOG DEVICES INC ADV7842 DRIVER
707M: Hans Verkuil <hans.verkuil@cisco.com>
708L: linux-media@vger.kernel.org
709S: Maintained
710F: drivers/media/i2c/adv7842*
711
Michael Hennerich527a1a82010-10-28 11:31:28 +0000712ANALOG DEVICES INC ASOC CODEC DRIVERS
Lars-Peter Clausen535bd162011-10-17 20:33:05 +0200713M: Lars-Peter Clausen <lars@metafoo.de>
Michael Hennerich527a1a82010-10-28 11:31:28 +0000714L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perchesa3f531a2011-03-22 16:34:28 -0700715W: http://wiki.analog.com/
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800716W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000717S: Supported
Mark Brown39c9d192011-06-17 11:22:27 +0100718F: sound/soc/codecs/adau*
Lars-Peter Clausencc526882011-06-27 17:04:01 +0200719F: sound/soc/codecs/adav*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000720F: sound/soc/codecs/ad1*
Mark Brownae48f5e2013-08-07 18:01:08 +0100721F: sound/soc/codecs/ad7*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000722F: sound/soc/codecs/ssm*
Lars-Peter Clausen40216ce2011-11-28 09:44:17 +0100723F: sound/soc/codecs/sigmadsp.*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000724
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400725ANALOG DEVICES INC ASOC DRIVERS
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -0700726L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400727L: alsa-devel@alsa-project.org (moderated for non-subscribers)
728W: http://blackfin.uclinux.org/
729S: Supported
730F: sound/soc/blackfin/*
Rob Herring7d1f9012014-12-26 13:47:30 -0600731
Lars-Peter Clausen4ce72ab2014-08-18 09:08:00 +0100732ANALOG DEVICES INC IIO DRIVERS
733M: Lars-Peter Clausen <lars@metafoo.de>
734M: Michael Hennerich <Michael.Hennerich@analog.com>
735W: http://wiki.analog.com/
736W: http://ez.analog.com/community/linux-device-drivers
737S: Supported
738F: drivers/iio/*/ad*
739X: drivers/iio/*/adjd*
740F: drivers/staging/iio/*/ad*
741F: staging/iio/trigger/iio-trig-bfin-timer.c
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400742
Lars-Peter Clausen0e3b67b2015-08-20 17:39:13 +0200743ANALOG DEVICES INC DMA DRIVERS
744M: Lars-Peter Clausen <lars@metafoo.de>
745W: http://ez.analog.com/community/linux-device-drivers
746S: Supported
747F: drivers/dma/dma-axi-dmac.c
748
Greg KH41c9e952015-01-18 16:33:24 +0900749ANDROID DRIVERS
750M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Baruch Siach27682402015-03-18 21:29:10 +0200751M: Arve Hjønnevåg <arve@android.com>
Greg KH41c9e952015-01-18 16:33:24 +0900752M: Riley Andrews <riandrews@android.com>
Lee Campbell0e4a5662015-05-24 14:47:38 -0700753T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg KH41c9e952015-01-18 16:33:24 +0900754L: devel@driverdev.osuosl.org
755S: Supported
756F: drivers/android/
757F: drivers/staging/android/
758
Johannes Berg42269062006-07-25 16:15:50 +0200759AOA (Apple Onboard Audio) ALSA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700760M: Johannes Berg <johannes@sipsolutions.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +1000761L: linuxppc-dev@lists.ozlabs.org
Joe Perches93711662009-06-16 15:34:07 -0700762L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Johannes Berg42269062006-07-25 16:15:50 +0200763S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700764F: sound/aoa/
Johannes Berg42269062006-07-25 16:15:50 +0200765
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766APM DRIVER
Jiri Kosinae5f64502015-08-09 09:11:34 +0200767M: Jiri Kosina <jikos@kernel.org>
Jiri Kosina81024fc2011-05-04 13:41:31 +0200768S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -0700769F: arch/x86/kernel/apm_32.c
770F: include/linux/apm_bios.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -0800771F: include/uapi/linux/apm_bios.h
Jiri Kosina81024fc2011-05-04 13:41:31 +0200772F: drivers/char/apm-emulation.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700774APPLE BCM5974 MULTITOUCH DRIVER
Henrik Rydberg75dd1122015-01-08 14:32:21 -0800775M: Henrik Rydberg <rydberg@bitmath.org>
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700776L: linux-input@vger.kernel.org
Henrik Rydberg75dd1122015-01-08 14:32:21 -0800777S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -0700778F: drivers/input/mouse/bcm5974.c
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700779
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700780APPLE SMC DRIVER
Henrik Rydberg75dd1122015-01-08 14:32:21 -0800781M: Henrik Rydberg <rydberg@bitmath.org>
Henrik Rydbergd618540f2010-04-14 16:14:11 +0200782L: lm-sensors@lm-sensors.org
Henrik Rydberg75dd1122015-01-08 14:32:21 -0800783S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -0700784F: drivers/hwmon/applesmc.c
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700785
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786APPLETALK NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -0700787M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700789F: drivers/net/appletalk/
790F: net/appletalk/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
Iyappan Subramanian24299502014-08-07 15:14:25 -0700792APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
793M: Iyappan Subramanian <isubramanian@apm.com>
794M: Keyur Chudgar <kchudgar@apm.com>
Iyappan Subramanian24299502014-08-07 15:14:25 -0700795S: Supported
796F: drivers/net/ethernet/apm/xgene/
797F: Documentation/devicetree/bindings/net/apm-xgene-enet.txt
798
Laurent Pinchart62a37dc2013-08-09 08:46:11 -0300799APTINA CAMERA SENSOR PLL
800M: Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
801L: linux-media@vger.kernel.org
802S: Maintained
803F: drivers/media/i2c/aptina-pll.*
804
Jaya Kumar1154ea72005-06-21 17:17:04 -0700805ARC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700806M: Jaya Kumar <jayalk@intworks.biz>
Jaya Kumar1154ea72005-06-21 17:17:04 -0700807S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +0900808F: drivers/video/fbdev/arcfb.c
809F: drivers/video/fbdev/core/fb_defio.c
Jaya Kumar1154ea72005-06-21 17:17:04 -0700810
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811ARM MFM AND FLOPPY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -0700812M: Ian Molton <spyro@f2s.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700814F: arch/arm/lib/floppydma.S
815F: arch/arm/include/asm/floppy.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
Will Deacon6f965212011-07-01 14:38:53 +0100817ARM PMU PROFILING AND DEBUGGING
818M: Will Deacon <will.deacon@arm.com>
819S: Maintained
Mark Rutlandfa8ad782015-07-06 12:23:53 +0100820F: arch/arm/kernel/perf_*
Will Deacon6f965212011-07-01 14:38:53 +0100821F: arch/arm/oprofile/common.c
Will Deacon6f965212011-07-01 14:38:53 +0100822F: arch/arm/kernel/hw_breakpoint.c
823F: arch/arm/include/asm/hw_breakpoint.h
Mark Rutlandfa8ad782015-07-06 12:23:53 +0100824F: arch/arm/include/asm/perf_event.h
825F: drivers/perf/arm_pmu.c
826F: include/linux/perf/arm_pmu.h
Will Deacon6f965212011-07-01 14:38:53 +0100827
Russell Kingd4275352009-04-16 14:05:27 +0100828ARM PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700829M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700830L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100831W: http://www.arm.linux.org.uk/
832S: Maintained
833F: arch/arm/
834
Stephen Boydd323c2432012-10-24 11:00:29 -0700835ARM SUB-ARCHITECTURES
836L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Zhang Yanfei56ca9d92013-01-11 14:32:04 -0800837S: Maintained
Stephen Boydd323c2432012-10-24 11:00:29 -0700838F: arch/arm/mach-*/
839F: arch/arm/plat-*/
840T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
841
Russell Kingcefbf4e2009-11-22 17:40:28 +0000842ARM PRIMECELL AACI PL041 DRIVER
843M: Russell King <linux@arm.linux.org.uk>
844S: Maintained
845F: sound/arm/aaci.*
846
847ARM PRIMECELL CLCD PL110 DRIVER
848M: Russell King <linux@arm.linux.org.uk>
849S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +0900850F: drivers/video/fbdev/amba-clcd.*
Russell Kingcefbf4e2009-11-22 17:40:28 +0000851
852ARM PRIMECELL KMI PL050 DRIVER
853M: Russell King <linux@arm.linux.org.uk>
854S: Maintained
855F: drivers/input/serio/ambakmi.*
856F: include/linux/amba/kmi.h
857
Russell King2761f5c2007-05-24 06:56:08 +0200858ARM PRIMECELL MMCI PL180/1 DRIVER
Russell King08a5c9a2013-02-11 15:28:51 +0000859M: Russell King <linux@arm.linux.org.uk>
860S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700861F: drivers/mmc/host/mmci.*
Russell King2f748aa2013-02-11 15:28:05 +0000862F: include/linux/amba/mmci.h
Russell King2761f5c2007-05-24 06:56:08 +0200863
Russell King1b4304e2013-02-11 15:26:27 +0000864ARM PRIMECELL UART PL010 AND PL011 DRIVERS
865M: Russell King <linux@arm.linux.org.uk>
866S: Maintained
867F: drivers/tty/serial/amba-pl01*.c
868F: include/linux/amba/serial.h
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800869
Russell Kingcefbf4e2009-11-22 17:40:28 +0000870ARM PRIMECELL BUS SUPPORT
871M: Russell King <linux@arm.linux.org.uk>
872S: Maintained
873F: drivers/amba/
874F: include/linux/amba/bus.h
875
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800876ARM/ADS SPHERE MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700877M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700878L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800879S: Maintained
880
Sergey Lapin9c784f92008-08-03 02:29:48 +0100881ARM/AFEB9260 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700882M: Sergey Lapin <slapin@ossfans.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700883L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sergey Lapin9c784f92008-08-03 02:29:48 +0100884S: Maintained
885
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800886ARM/AJECO 1ARM MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700887M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700888L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800889S: Maintained
890
Maxime Ripard1b106692012-11-15 21:51:26 +0100891ARM/Allwinner A1X SoC support
892M: Maxime Ripard <maxime.ripard@free-electrons.com>
893L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
894S: Maintained
Maxime Ripard60b0f382013-12-30 16:03:33 +0100895N: sun[x4567]i
896
897ARM/Allwinner SoC Clock Support
898M: Emilio López <emilio@elopez.com.ar>
899S: Maintained
900F: drivers/clk/sunxi/
Maxime Ripard1b106692012-11-15 21:51:26 +0100901
Carlo Caione7c1e3872014-09-12 20:18:31 +0200902ARM/Amlogic MesonX SoC support
903M: Carlo Caione <carlo@caione.org>
904L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
905S: Maintained
Beniamino Galvani12ddbad2014-11-18 17:22:34 -0300906F: drivers/media/rc/meson-ir.c
Carlo Caione7c1e3872014-09-12 20:18:31 +0200907N: meson[x68]
908
Tsahee Zidenbergeff506f2015-03-12 13:53:25 +0200909ARM/Annapurna Labs ALPINE ARCHITECTURE
910M: Tsahee Zidenberg <tsahee@annapurnalabs.com>
911S: Maintained
912F: arch/arm/mach-alpine/
913
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800914ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800915M: Nicolas Ferre <nicolas.ferre@atmel.com>
Nicolas Ferred68b35f2015-04-29 11:57:18 +0200916M: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800917M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700918L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800919W: http://www.linux4sam.org
920S: Supported
921F: arch/arm/mach-at91/
Alexandre Bellonif0a0a582014-11-07 21:58:21 +0100922F: include/soc/at91/
Mark Brown70e389c2013-10-16 12:04:07 +0100923F: arch/arm/boot/dts/at91*.dts
924F: arch/arm/boot/dts/at91*.dtsi
925F: arch/arm/boot/dts/sama*.dts
926F: arch/arm/boot/dts/sama*.dtsi
Alexandre Belloni5f58c972015-01-12 19:42:14 +0100927F: arch/arm/include/debug/at91.S
Andrew Victord4a89c72006-12-04 13:56:21 +0100928
Boris BREZILLON6e05dd42014-05-27 13:39:28 +0200929ARM/ATMEL AT91 Clock Support
930M: Boris Brezillon <boris.brezillon@free-electrons.com>
931S: Maintained
932F: drivers/clk/at91
933
Rob Herring986cf2e2011-06-22 11:28:53 -0500934ARM/CALXEDA HIGHBANK ARCHITECTURE
Rob Herring5d3ad8a2013-12-03 10:20:16 -0600935M: Rob Herring <robh@kernel.org>
Rob Herring986cf2e2011-06-22 11:28:53 -0500936L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
937S: Maintained
938F: arch/arm/mach-highbank/
939
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300940ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
Krzysztof Hałasa5529c2c2014-09-30 10:32:58 +0200941M: Krzysztof Halasa <khalasa@piap.pl>
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300942S: Maintained
943F: arch/arm/mach-cns3xxx/
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300944
Sunil Goutham4863dea2015-05-26 19:20:15 -0700945ARM/CAVIUM THUNDER NETWORK DRIVER
946M: Sunil Goutham <sgoutham@cavium.com>
947M: Robert Richter <rric@kernel.org>
948L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
949S: Supported
Aleksey Makarov322e5cc2015-08-30 12:29:09 +0300950F: drivers/net/ethernet/cavium/thunder/
Sunil Goutham4863dea2015-05-26 19:20:15 -0700951
Alexander Shiyan386ab512012-11-17 17:57:24 +0400952ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
953M: Alexander Shiyan <shc_work@mail.ru>
954L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
955S: Odd Fixes
Alexander Shiyanb8ba3872014-02-15 12:05:33 +0400956N: clps711x
Alexander Shiyan386ab512012-11-17 17:57:24 +0400957
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800958ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100959M: Hartley Sweeten <hsweeten@visionengravers.com>
Ryan Mallon1c5454e2011-06-15 14:45:36 +1000960M: Ryan Mallon <rmallon@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700961L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800962S: Maintained
Hartley Sweetend19d3662009-07-10 23:02:59 +0100963F: arch/arm/mach-ep93xx/
964F: arch/arm/mach-ep93xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800965
966ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700967M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700968L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800969S: Maintained
970
Russell Kingd4275352009-04-16 14:05:27 +0100971ARM/CLKDEV SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700972M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700973L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches37417042012-03-23 15:01:58 -0700974S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +0100975F: arch/arm/include/asm/clkdev.h
Joe Perches4fa26512011-03-22 16:34:31 -0700976F: drivers/clk/clkdev.c
Russell Kingd4275352009-04-16 14:05:27 +0100977
Mike Rapoportd48134e72008-08-20 09:03:26 +0100978ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700979M: Mike Rapoport <mike@compulab.co.il>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700980L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100981S: Maintained
982
Hubert Feurstein94150092009-10-07 08:36:07 +0100983ARM/CONTEC MICRO9 MACHINE SUPPORT
984M: Hubert Feurstein <hubert.feurstein@contec.at>
985S: Maintained
986F: arch/arm/mach-ep93xx/micro9.c
987
Pratik Patela06ae862014-11-03 11:07:35 -0700988ARM/CORESIGHT FRAMEWORK AND DRIVERS
989M: Mathieu Poirier <mathieu.poirier@linaro.org>
990L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
991S: Maintained
Mathieu Poirier01081f52015-03-30 14:13:41 -0600992F: drivers/hwtracing/coresight/*
Pratik Patela06ae862014-11-03 11:07:35 -0700993F: Documentation/trace/coresight.txt
994F: Documentation/devicetree/bindings/arm/coresight.txt
Mathieu Poirier7a25ec82014-11-10 14:06:42 -0700995F: Documentation/ABI/testing/sysfs-bus-coresight-devices-*
Pratik Patela06ae862014-11-03 11:07:35 -0700996
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997ARM/CORGI MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700998M: Richard Purdie <rpurdie@rpsys.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999S: Maintained
1000
Paulius Zaleckas881a95f2009-03-26 10:06:27 +02001001ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
Hans Ulli Kroll162500b2010-05-13 06:43:59 +01001002M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001003L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Krollb60e23b2015-05-07 19:29:03 +02001004T: git git://github.com/ulli-kroll/linux.git
Hans Ulli Kroll162500b2010-05-13 06:43:59 +01001005S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +03001006F: arch/arm/mach-gemini/
Hans Ulli Kroll98a9bb52015-05-20 17:49:31 +02001007F: drivers/rtc/rtc-gemini.c
Paulius Zaleckas881a95f2009-03-26 10:06:27 +02001008
Barry Songa990cbd2011-07-12 21:44:10 +08001009ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
Barry Song5abf58b2013-09-29 22:45:10 +08001010M: Barry Song <baohua@kernel.org>
Barry Songa990cbd2011-07-12 21:44:10 +08001011L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Barry Song85529d12013-06-17 09:44:26 +08001012T: git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
Barry Songa990cbd2011-07-12 21:44:10 +08001013S: Maintained
1014F: arch/arm/mach-prima2/
Joe Perches4a9c44f2014-08-08 14:25:03 -07001015F: drivers/clk/sirf/
Barry Song05f30e82013-09-29 22:45:09 +08001016F: drivers/clocksource/timer-prima2.c
Barry Song5833ac92015-01-12 00:04:43 +08001017F: drivers/clocksource/timer-atlas7.c
Barry Songf8505ef2014-01-03 11:24:13 +08001018N: [^a-z]sirf
Barry Songa990cbd2011-07-12 21:44:10 +08001019
Baruch Siachc9d862c2015-04-28 13:59:43 +03001020ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1021M: Baruch Siach <baruch@tkos.co.il>
1022L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1023S: Maintained
Baruch Siachcde137a2015-07-06 14:41:46 +03001024F: arch/arm/boot/dts/cx92755*
Baruch Siachc9d862c2015-04-28 13:59:43 +03001025N: digicolor
1026
Russell Kingd4275352009-04-16 14:05:27 +01001027ARM/EBSA110 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001028M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001029L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001030W: http://www.arm.linux.org.uk/
1031S: Maintained
1032F: arch/arm/mach-ebsa110/
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07001033F: drivers/net/ethernet/amd/am79c961a.*
Russell Kingd4275352009-04-16 14:05:27 +01001034
Uwe Kleine-König4721f3c2013-12-20 21:21:59 +01001035ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1036M: Uwe Kleine-König <kernel@pengutronix.de>
1037L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1038S: Maintained
1039N: efm32
1040
Russell Kinga9da4f72008-07-12 21:42:04 +01001041ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
Joe Perches8b58be82009-07-29 15:04:30 -07001042M: Daniel Ribeiro <drwyrm@gmail.com>
1043M: Stefan Schmidt <stefan@openezx.org>
1044M: Harald Welte <laforge@openezx.org>
Paul Bolled66f18862011-04-06 22:34:00 +02001045L: openezx-devel@lists.openezx.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +01001046W: http://www.openezx.org/
1047S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +02001048T: topgit git://git.openezx.org/openezx.git
1049F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +01001050
Paulius Zaleckas6a915af2009-03-25 13:10:20 +02001051ARM/FARADAY FA526 PORT
Hans Ulli Kroll162500b2010-05-13 06:43:59 +01001052M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001053L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +01001054S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -07001055T: git git://git.berlios.de/gemini-board
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +03001056F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +02001057
Russell Kingd4275352009-04-16 14:05:27 +01001058ARM/FOOTBRIDGE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001059M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001060L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001061W: http://www.arm.linux.org.uk/
1062S: Maintained
1063F: arch/arm/include/asm/hardware/dec21285.h
1064F: arch/arm/mach-footbridge/
1065
Sascha Hauer86183a52008-07-24 23:50:35 +02001066ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
Shawn Guo7609ea22015-06-03 19:34:10 +08001067M: Shawn Guo <shawnguo@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07001068M: Sascha Hauer <kernel@pengutronix.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001069L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer86183a52008-07-24 23:50:35 +02001070S: Maintained
Shawn Guof1c12832014-03-11 22:57:53 +08001071T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
Shawn Guo2a82f952013-12-10 22:19:21 +08001072F: arch/arm/mach-imx/
Shawn Guoce515a62014-07-02 15:37:10 +08001073F: arch/arm/mach-mxs/
Shawn Guo2a82f952013-12-10 22:19:21 +08001074F: arch/arm/boot/dts/imx*
1075F: arch/arm/configs/imx*_defconfig
Shawn Guocf209682015-04-26 21:58:12 +08001076F: drivers/clk/imx/
1077F: include/soc/imx/
Shawn Guo8bcb9762011-10-07 22:24:18 +08001078
Stefan Agner142109d2015-03-02 00:09:02 +01001079ARM/FREESCALE VYBRID ARM ARCHITECTURE
Shawn Guo7609ea22015-06-03 19:34:10 +08001080M: Shawn Guo <shawnguo@kernel.org>
Stefan Agner142109d2015-03-02 00:09:02 +01001081M: Sascha Hauer <kernel@pengutronix.de>
1082R: Stefan Agner <stefan@agner.ch>
1083L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1084S: Maintained
1085T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1086F: arch/arm/mach-imx/*vf610*
1087F: arch/arm/boot/dts/vf*
1088
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001089ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001090M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001091L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001092S: Maintained
1093
Jaya Kumar90b8fc32008-03-15 05:11:07 +01001094ARM/GUMSTIX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001095M: Steve Sakoman <sakoman@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001096L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jaya Kumar90b8fc32008-03-15 05:11:07 +01001097S: Maintained
1098
Philipp Zabelef47d5f2009-05-28 07:07:47 +02001099ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001100M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel12a93f32012-02-26 12:40:19 +01001101M: Paul Parsons <lost.distance@yahoo.com>
1102L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Philipp Zabelef47d5f2009-05-28 07:07:47 +02001103S: Maintained
1104F: arch/arm/mach-pxa/hx4700.c
1105F: arch/arm/mach-pxa/include/mach/hx4700.h
Philipp Zabel12a93f32012-02-26 12:40:19 +01001106F: sound/soc/pxa/hx4700.c
Philipp Zabelef47d5f2009-05-28 07:07:47 +02001107
Wei Xu4dfad062014-07-07 10:41:53 +08001108ARM/HISILICON SOC SUPPORT
1109M: Wei Xu <xuwei5@hisilicon.com>
1110L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1111W: http://www.hisilicon.com
1112S: Supported
1113T: git git://github.com/hisilicon/linux-hisi.git
1114F: arch/arm/mach-hisi/
1115
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +01001116ARM/HP JORNADA 7XX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001117M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02001118W: www.jlime.com
1119S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07001120T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1121F: arch/arm/mach-sa1100/jornada720.c
1122F: arch/arm/mach-sa1100/include/mach/jornada720.h
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +01001123
Javier Martinez Canillas5e767ab2012-10-08 10:47:34 +02001124ARM/IGEP MACHINE SUPPORT
1125M: Enric Balletbo i Serra <eballetbo@gmail.com>
1126M: Javier Martinez Canillas <javier@dowhile0.org>
1127L: linux-omap@vger.kernel.org
1128L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1129S: Maintained
Javier Martinez Canillas06ff74f2013-10-18 17:37:53 +02001130F: arch/arm/boot/dts/omap3-igep*
Javier Martinez Canillas5e767ab2012-10-08 10:47:34 +02001131
Marek Vasut403d2972010-05-22 00:29:39 +02001132ARM/INCOME PXA270 SUPPORT
1133M: Marek Vasut <marek.vasut@gmail.com>
1134L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1135S: Maintained
Joe Perchesec154082010-10-26 14:22:59 -07001136F: arch/arm/mach-pxa/colibri-pxa270-income.c
Marek Vasut403d2972010-05-22 00:29:39 +02001137
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001138ARM/INTEL IOP32X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001139M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001140L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -07001141S: Maintained
Dan Williamse2bdb172007-01-02 18:32:37 +01001142
1143ARM/INTEL IOP33X ARM ARCHITECTURE
Joe Perchesefc03ec2009-09-21 17:04:27 -07001144L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williams08223d82014-08-19 06:07:56 -07001145S: Orphan
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001146
1147ARM/INTEL IOP13XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001148M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001149L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -07001150S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001151
1152ARM/INTEL IQ81342EX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001153M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001154L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -07001155S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001156
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001157ARM/INTEL IXDP2850 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
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +02001162ARM/INTEL IXP4XX ARM ARCHITECTURE
1163M: Imre Kaloz <kaloz@openwrt.org>
Krzysztof Hałasa5529c2c2014-09-30 10:32:58 +02001164M: Krzysztof Halasa <khalasa@piap.pl>
Russell Kingbaea7b92009-09-24 21:22:33 +01001165L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +02001166S: Maintained
1167F: arch/arm/mach-ixp4xx/
1168
Joe Perches838553c2010-10-26 14:22:59 -07001169ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
Jonathan Cameron7f49a7f2009-10-15 16:39:30 +01001170M: Jonathan Cameron <jic23@cam.ac.uk>
1171L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1172S: Maintained
1173F: arch/arm/mach-pxa/stargate2.c
1174F: drivers/pcmcia/pxa2xx_stargate2.c
1175
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001176ARM/INTEL XSC3 (MANZANO) ARM CORE
Joe Perches8b58be82009-07-29 15:04:30 -07001177M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001178L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -07001179S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001180
1181ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001182M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001183L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001184S: Maintained
1185
Santosh Shilimkar1154f852013-08-05 14:11:14 -04001186ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
Santosh Shilimkar97215802014-10-13 14:16:28 -04001187M: Santosh Shilimkar <ssantosh@kernel.org>
Santosh Shilimkar1154f852013-08-05 14:11:14 -04001188L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1189S: Maintained
1190F: arch/arm/mach-keystone/
Santosh Shilimkar317929c2013-11-23 17:31:27 -05001191T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
Santosh Shilimkar1154f852013-08-05 14:11:14 -04001192
Santosh Shilimkarbc6aa562014-06-22 16:06:22 -04001193ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
Santosh Shilimkar97215802014-10-13 14:16:28 -04001194M: Santosh Shilimkar <ssantosh@kernel.org>
Santosh Shilimkarbc6aa562014-06-22 16:06:22 -04001195L: linux-kernel@vger.kernel.org
1196S: Maintained
1197F: drivers/clk/keystone/
1198
1199ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
Santosh Shilimkar97215802014-10-13 14:16:28 -04001200M: Santosh Shilimkar <ssantosh@kernel.org>
Santosh Shilimkarbc6aa562014-06-22 16:06:22 -04001201L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1202L: linux-kernel@vger.kernel.org
1203S: Maintained
1204F: drivers/clocksource/timer-keystone.c
1205
1206ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
Santosh Shilimkar97215802014-10-13 14:16:28 -04001207M: Santosh Shilimkar <ssantosh@kernel.org>
Santosh Shilimkarbc6aa562014-06-22 16:06:22 -04001208L: linux-kernel@vger.kernel.org
1209S: Maintained
1210F: drivers/power/reset/keystone-reset.c
1211
1212ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
Santosh Shilimkar97215802014-10-13 14:16:28 -04001213M: Santosh Shilimkar <ssantosh@kernel.org>
Santosh Shilimkarbc6aa562014-06-22 16:06:22 -04001214L: linux-kernel@vger.kernel.org
1215S: Maintained
1216F: drivers/memory/*emif*
1217
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001218ARM/LOGICPD PXA270 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001219M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001220L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001221S: Maintained
1222
Joachim Eastwood31438752015-05-19 20:59:21 +02001223ARM/LPC18XX ARCHITECTURE
1224M: Joachim Eastwood <manabian@gmail.com>
1225L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1226S: Maintained
1227N: lpc18xx
1228
Philipp Zabel3b8861712008-07-09 21:27:15 +01001229ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001230M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +01001231S: Maintained
1232
Gregory CLEMENT31c17ac2015-05-15 14:25:43 +02001233ARM/Marvell Kirkwood and Armada 370, 375, 38x, XP SOC support
Thomas Petazzoni75f41272012-06-01 18:50:52 +02001234M: Jason Cooper <jason@lakedaemon.net>
1235M: Andrew Lunn <andrew@lunn.ch>
1236M: Gregory Clement <gregory.clement@free-electrons.com>
Jason Cooperdcb71502013-10-14 18:32:21 +00001237M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Thomas Petazzoni75f41272012-06-01 18:50:52 +02001238L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1239S: Maintained
1240F: arch/arm/mach-mvebu/
Joe Perches59ec9672015-03-25 15:55:17 -07001241F: drivers/rtc/rtc-armada38x.c
Gregory CLEMENT31c17ac2015-05-15 14:25:43 +02001242F: arch/arm/boot/dts/armada*
1243F: arch/arm/boot/dts/kirkwood*
1244
Thomas Petazzoni75f41272012-06-01 18:50:52 +02001245
Sebastian Hesselbarth40f49782013-10-08 12:52:30 +02001246ARM/Marvell Berlin SoC support
1247M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1248L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1249S: Maintained
1250F: arch/arm/mach-berlin/
Gregory CLEMENT31c17ac2015-05-15 14:25:43 +02001251F: arch/arm/boot/dts/berlin*
1252
Sebastian Hesselbarth40f49782013-10-08 12:52:30 +02001253
Andrew Lunn4cfab572014-07-16 22:32:51 +02001254ARM/Marvell Dove/MV78xx0/Orion SOC support
Nicolas Pitre4f1312b2012-04-30 13:44:48 -04001255M: Jason Cooper <jason@lakedaemon.net>
1256M: Andrew Lunn <andrew@lunn.ch>
Jason Cooperdcb71502013-10-14 18:32:21 +00001257M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Gregory CLEMENTbfda4032015-03-13 14:41:45 +01001258M: Gregory Clement <gregory.clement@free-electrons.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001259L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Pitre4f1312b2012-04-30 13:44:48 -04001260S: Maintained
1261F: arch/arm/mach-dove/
Nicolas Pitre54a246f2009-08-11 23:28:51 -04001262F: arch/arm/mach-mv78xx0/
1263F: arch/arm/mach-orion5x/
1264F: arch/arm/plat-orion/
Gregory CLEMENT31c17ac2015-05-15 14:25:43 +02001265F: arch/arm/boot/dts/dove*
1266F: arch/arm/boot/dts/orion5x*
1267
Nicolas Pitre54a246f2009-08-11 23:28:51 -04001268
Alexander Clouterd69ac132011-04-14 15:22:02 -07001269ARM/Orion SoC/Technologic Systems TS-78xx platform support
1270M: Alexander Clouter <alex@digriz.org.uk>
1271L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1272W: http://www.digriz.org.uk/ts78xx/kernel
1273S: Maintained
1274F: arch/arm/mach-orion5x/ts78xx-*
1275
Eddie Huang607b8fc2015-05-06 15:23:42 +08001276ARM/Mediatek RTC DRIVER
1277M: Eddie Huang <eddie.huang@mediatek.com>
1278L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1279L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1280S: Maintained
1281F: drivers/rtc/rtc-mt6397.c
1282
Matthias Bruggere54951c2014-09-26 11:45:55 +02001283ARM/Mediatek SoC support
1284M: Matthias Brugger <matthias.bgg@gmail.com>
1285L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Matthias Brugger17b199d2015-04-16 12:49:21 -07001286L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
Matthias Bruggere54951c2014-09-26 11:45:55 +02001287S: Maintained
1288F: arch/arm/boot/dts/mt6*
1289F: arch/arm/boot/dts/mt8*
1290F: arch/arm/mach-mediatek/
1291N: mtk
1292K: mediatek
1293
Arnd Bergmannadcb0792012-09-07 12:21:56 +00001294ARM/MICREL KS8695 ARCHITECTURE
1295M: Greg Ungerer <gerg@uclinux.org>
1296L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches14430812013-09-11 14:23:50 -07001297F: arch/arm/mach-ks8695/
Arnd Bergmannadcb0792012-09-07 12:21:56 +00001298S: Odd Fixes
1299
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +02001300ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001301M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001302L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +02001303F: arch/arm/mach-pxa/mioa701.c
1304S: Maintained
1305
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +01001306ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001307M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +01001308S: Maintained
1309
Alessandro Rubinie0ee9852009-12-02 14:01:03 +01001310ARM/NOMADIK ARCHITECTURE
Joe Perches28b8e8d2010-03-23 13:35:20 -07001311M: Alessandro Rubini <rubini@unipv.it>
Linus Walleije4651a92012-08-06 09:52:52 +02001312M: Linus Walleij <linus.walleij@linaro.org>
Joe Perches28b8e8d2010-03-23 13:35:20 -07001313L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1314S: Maintained
1315F: arch/arm/mach-nomadik/
Joe Perchesecc265f2014-08-08 14:26:20 -07001316F: drivers/pinctrl/nomadik/
Linus Walleij87572882010-12-22 09:18:29 +01001317F: drivers/i2c/busses/i2c-nomadik.c
Linus Walleije4651a92012-08-06 09:52:52 +02001318T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
Alessandro Rubinie0ee9852009-12-02 14:01:03 +01001319
Andy Green9d762952009-05-19 06:41:42 -03001320ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001321M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -03001322L: openmoko-kernel@lists.openmoko.org (subscribers-only)
1323W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
1324S: Supported
1325
Dirk Opfer8459c152005-11-06 14:27:52 +00001326ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001327M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1328M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +00001329S: Maintained
1330
Marek Vasut5d783a22009-07-16 13:26:48 +02001331ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
Joe Perches933d35f2009-10-01 15:43:59 -07001332M: Marek Vasut <marek.vasut@gmail.com>
Marek Vasut75280782009-08-22 00:49:53 +02001333L: linux-arm-kernel@lists.infradead.org
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001334W: http://hackndev.com
1335S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001336F: arch/arm/mach-pxa/include/mach/palmtx.h
1337F: arch/arm/mach-pxa/palmtx.c
1338F: arch/arm/mach-pxa/include/mach/palmt5.h
1339F: arch/arm/mach-pxa/palmt5.c
1340F: arch/arm/mach-pxa/include/mach/palmld.h
1341F: arch/arm/mach-pxa/palmld.c
1342F: arch/arm/mach-pxa/include/mach/palmte2.h
1343F: arch/arm/mach-pxa/palmte2.c
1344F: arch/arm/mach-pxa/include/mach/palmtc.h
1345F: arch/arm/mach-pxa/palmtc.c
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001346
Joe Perchesb57fe922009-12-14 18:00:52 -08001347ARM/PALM TREO SUPPORT
Jiri Slabyd8130622015-07-17 16:23:20 -07001348M: Tomas Cech <sleep_walker@suse.com>
Marek Vasut75280782009-08-22 00:49:53 +02001349L: linux-arm-kernel@lists.infradead.org
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001350W: http://hackndev.com
1351S: Maintained
Joe Perchesb57fe922009-12-14 18:00:52 -08001352F: arch/arm/mach-pxa/include/mach/palmtreo.h
1353F: arch/arm/mach-pxa/palmtreo.c
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001354
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001355ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001356M: Sergey Lapin <slapin@ossfans.org>
Marek Vasut75280782009-08-22 00:49:53 +02001357L: linux-arm-kernel@lists.infradead.org
Joe Perches7d2c86b2009-04-07 20:59:01 -07001358W: http://hackndev.com
1359S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001360F: arch/arm/mach-pxa/include/mach/palmz72.h
1361F: arch/arm/mach-pxa/palmz72.c
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001362
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001364M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1366S: Maintained
1367
1368ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001369M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001370L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371W: http://www.arm.linux.org.uk/
1372S: Maintained
1373
Kumar Gala8fc1b0f2014-01-21 17:14:10 -06001374ARM/QUALCOMM SUPPORT
1375M: Kumar Gala <galak@codeaurora.org>
Andy Grossf5d3af92015-01-21 22:39:24 -06001376M: Andy Gross <agross@codeaurora.org>
Kumar Gala8fc1b0f2014-01-21 17:14:10 -06001377M: David Brown <davidb@codeaurora.org>
1378L: linux-arm-msm@vger.kernel.org
Andy Grossf5d3af92015-01-21 22:39:24 -06001379L: linux-soc@vger.kernel.org
Kumar Gala8fc1b0f2014-01-21 17:14:10 -06001380S: Maintained
1381F: arch/arm/mach-qcom/
Andy Grossf5d3af92015-01-21 22:39:24 -06001382F: drivers/soc/qcom/
Stephen Boydc0c89fa2015-03-13 11:09:34 -07001383F: drivers/tty/serial/msm_serial.h
1384F: drivers/tty/serial/msm_serial.c
1385F: drivers/*/pm8???-*
1386F: drivers/mfd/ssbi.c
Kumar Gala916f7432015-02-26 15:49:09 -06001387F: drivers/firmware/qcom_scm.c
Kumar Gala8fc1b0f2014-01-21 17:14:10 -06001388T: git git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git
1389
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001390ARM/RADISYS ENP2611 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001391M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001392L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001393S: Maintained
1394
Russell Kingd4275352009-04-16 14:05:27 +01001395ARM/RISCPC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001396M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001397L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001398W: http://www.arm.linux.org.uk/
1399S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01001400F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1401F: arch/arm/include/asm/hardware/ioc.h
1402F: arch/arm/include/asm/hardware/iomd.h
1403F: arch/arm/include/asm/hardware/memc.h
1404F: arch/arm/mach-rpc/
Jeff Kirsher1a6422f2011-11-04 12:58:41 +00001405F: drivers/net/ethernet/8390/etherh.c
Jeff Kirsher9e13fbf2011-07-15 03:18:21 -07001406F: drivers/net/ethernet/i825xx/ether1*
1407F: drivers/net/ethernet/seeq/ether3*
Russell Kingd4275352009-04-16 14:05:27 +01001408F: drivers/scsi/arm/
1409
Heiko Stuebner08ddbb02013-10-14 23:19:58 +02001410ARM/Rockchip SoC support
1411M: Heiko Stuebner <heiko@sntech.de>
1412L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Heiko Stuebner00250b52014-08-20 12:31:03 +02001413L: linux-rockchip@lists.infradead.org
Heiko Stuebner08ddbb02013-10-14 23:19:58 +02001414S: Maintained
Heiko Stübner541555e2014-08-27 00:05:50 +02001415F: arch/arm/boot/dts/rk3*
Heiko Stuebner08ddbb02013-10-14 23:19:58 +02001416F: arch/arm/mach-rockchip/
Heiko Stübner541555e2014-08-27 00:05:50 +02001417F: drivers/clk/rockchip/
1418F: drivers/i2c/busses/i2c-rk3x.c
Heiko Stuebner08ddbb02013-10-14 23:19:58 +02001419F: drivers/*/*rockchip*
Heiko Stübner541555e2014-08-27 00:05:50 +02001420F: drivers/*/*/*rockchip*
1421F: sound/soc/rockchip/
Heiko Stuebnerb4331b42015-03-14 19:32:06 +01001422N: rockchip
Heiko Stuebner08ddbb02013-10-14 23:19:58 +02001423
Kukjin Kim5bfb9372014-11-14 16:54:57 +09001424ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1425M: Kukjin Kim <kgene@kernel.org>
Krzysztof Kozlowskie8f98452015-05-14 21:15:20 +09001426M: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001427L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Mark Brown7a549d72011-12-02 13:52:12 +09001428L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +01001429S: Maintained
Mark Brown6f0589c2013-10-08 07:18:21 +09001430F: arch/arm/boot/dts/s3c*
1431F: arch/arm/boot/dts/exynos*
Krzysztof Kozlowskid97236e2015-06-06 19:02:19 +09001432F: arch/arm64/boot/dts/exynos/
Kukjin Kim482ce512010-06-29 15:05:26 -07001433F: arch/arm/plat-samsung/
Heiko Stuebner769bbb62011-12-02 13:51:56 +09001434F: arch/arm/mach-s3c24*/
1435F: arch/arm/mach-s3c64xx/
Kukjin Kim5bfb9372014-11-14 16:54:57 +09001436F: arch/arm/mach-s5p*/
1437F: arch/arm/mach-exynos*/
Ben Dookseb2ffca2011-02-01 15:52:36 -08001438F: drivers/*/*s3c2410*
1439F: drivers/*/*/*s3c2410*
Mark Brown40c76662011-12-02 13:54:25 +09001440F: drivers/spi/spi-s3c*
1441F: sound/soc/samsung/*
Doug Anderson33d43cd2013-06-18 07:02:23 +09001442N: exynos
Kukjin Kimf556cb072010-09-30 15:15:35 -07001443
Kyungmin Park10ffa962011-03-04 17:36:26 -08001444ARM/SAMSUNG MOBILE MACHINE SUPPORT
1445M: Kyungmin Park <kyungmin.park@samsung.com>
1446L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1447S: Maintained
Christian Kujau004bbd32014-10-13 15:51:17 -07001448F: arch/arm/mach-s5pv210/
Kyungmin Park10ffa962011-03-04 17:36:26 -08001449
Kamil Debski3ce4ccb2012-11-28 06:14:22 -03001450ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1451M: Kyungmin Park <kyungmin.park@samsung.com>
1452M: Kamil Debski <k.debski@samsung.com>
1453L: linux-arm-kernel@lists.infradead.org
1454L: linux-media@vger.kernel.org
1455S: Maintained
1456F: drivers/media/platform/s5p-g2d/
1457
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001458ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1459M: Kyungmin Park <kyungmin.park@samsung.com>
1460M: Kamil Debski <k.debski@samsung.com>
Joe Perches63059022012-06-07 14:21:10 -07001461M: Jeongtae Park <jtp.park@samsung.com>
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001462L: linux-arm-kernel@lists.infradead.org
1463L: linux-media@vger.kernel.org
1464S: Maintained
Cesar Eduardo Barros934455d2013-01-04 15:35:17 -08001465F: arch/arm/plat-samsung/s5p-dev-mfc.c
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001466F: drivers/media/platform/s5p-mfc/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001467
1468ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1469M: Kyungmin Park <kyungmin.park@samsung.com>
1470M: Tomasz Stanislawski <t.stanislaws@samsung.com>
1471L: linux-arm-kernel@lists.infradead.org
1472L: linux-media@vger.kernel.org
1473S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001474F: drivers/media/platform/s5p-tv/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001475
Paul Mundtd48d38e2010-02-08 12:50:24 +09001476ARM/SHMOBILE ARM ARCHITECTURE
Simon Horman5e212592012-11-27 11:41:49 +09001477M: Simon Horman <horms@verge.net.au>
Paul Mundtd48d38e2010-02-08 12:50:24 +09001478M: Magnus Damm <magnus.damm@gmail.com>
1479L: linux-sh@vger.kernel.org
Paul Mundtd48d38e2010-02-08 12:50:24 +09001480W: http://oss.renesas.com
Paul Mundtbbff48f2010-04-07 17:17:22 +09001481Q: http://patchwork.kernel.org/project/linux-sh/list/
Simon Horman5e212592012-11-27 11:41:49 +09001482T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
Paul Mundtd48d38e2010-02-08 12:50:24 +09001483S: Supported
Simon Horman0b514fd2014-05-15 08:48:21 +09001484F: arch/arm/boot/dts/emev2*
1485F: arch/arm/boot/dts/r7s*
1486F: arch/arm/boot/dts/r8a*
1487F: arch/arm/boot/dts/sh*
Simon Horman0b514fd2014-05-15 08:48:21 +09001488F: arch/arm/configs/bockw_defconfig
Simon Horman0b514fd2014-05-15 08:48:21 +09001489F: arch/arm/configs/marzen_defconfig
1490F: arch/arm/configs/shmobile_defconfig
Geert Uytterhoeven7a2071c2014-11-14 16:49:47 +01001491F: arch/arm/include/debug/renesas-scif.S
Paul Mundtd48d38e2010-02-08 12:50:24 +09001492F: arch/arm/mach-shmobile/
1493F: drivers/sh/
1494
Dinh Nguyen66314222012-07-18 16:07:18 -06001495ARM/SOCFPGA ARCHITECTURE
Dinh Nguyenba2b7d02014-08-06 16:31:27 -05001496M: Dinh Nguyen <dinguyen@opensource.altera.com>
Dinh Nguyen66314222012-07-18 16:07:18 -06001497S: Maintained
1498F: arch/arm/mach-socfpga/
Dinh Nguyenefadb752015-04-20 14:13:12 -05001499F: arch/arm/boot/dts/socfpga*
1500F: arch/arm/configs/socfpga_defconfig
Dinh Nguyenba2b7d02014-08-06 16:31:27 -05001501W: http://www.rocketboards.org
Dinh Nguyenefadb752015-04-20 14:13:12 -05001502T: git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
Dinh Nguyen66314222012-07-18 16:07:18 -06001503
1504ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
Dinh Nguyenba2b7d02014-08-06 16:31:27 -05001505M: Dinh Nguyen <dinguyen@opensource.altera.com>
Dinh Nguyen66314222012-07-18 16:07:18 -06001506S: Maintained
1507F: drivers/clk/socfpga/
1508
Thor Thayer71bcada2014-09-03 10:27:54 -05001509ARM/SOCFPGA EDAC SUPPORT
1510M: Thor Thayer <tthayer@opensource.altera.com>
1511S: Maintained
1512F: drivers/edac/altera_edac.
1513
Srinivas Kandagatla65ebcc12013-06-25 12:15:10 +01001514ARM/STI ARCHITECTURE
Srinivas Kandagatlaa92177e2014-03-03 11:28:59 +00001515M: Srinivas Kandagatla <srinivas.kandagatla@gmail.com>
1516M: Maxime Coquelin <maxime.coquelin@st.com>
1517M: Patrice Chotard <patrice.chotard@st.com>
Srinivas Kandagatla65ebcc12013-06-25 12:15:10 +01001518L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1519L: kernel@stlinux.com
1520W: http://www.stlinux.com
1521S: Maintained
1522F: arch/arm/mach-sti/
Srinivas Kandagatlaa92177e2014-03-03 11:28:59 +00001523F: arch/arm/boot/dts/sti*
1524F: drivers/clocksource/arm_global_timer.c
Lee Jones82805d12015-05-12 13:58:17 +01001525F: drivers/clocksource/clksrc_st_lpc.c
Srinivas Kandagatlaa92177e2014-03-03 11:28:59 +00001526F: drivers/i2c/busses/i2c-st.c
Greg Kroah-Hartman346e2e42014-09-25 13:11:52 +02001527F: drivers/media/rc/st_rc.c
Peter Griffin95d66b12015-07-30 14:09:01 -03001528F: drivers/media/platform/sti/c8sectpfe/
Peter Griffinf53b2bf2014-06-04 17:30:24 +01001529F: drivers/mmc/host/sdhci-st.c
Peter Griffine95cf392015-04-01 07:42:41 +01001530F: drivers/phy/phy-miphy28lp.c
1531F: drivers/phy/phy-miphy365x.c
Peter Griffin6da969a2014-09-11 18:02:46 +01001532F: drivers/phy/phy-stih407-usb.c
Peter Griffin26389c72014-09-08 11:33:02 +01001533F: drivers/phy/phy-stih41x-usb.c
Greg Kroah-Hartman346e2e42014-09-25 13:11:52 +02001534F: drivers/pinctrl/pinctrl-st.c
1535F: drivers/reset/sti/
Lee Jonesdb4112e2015-04-09 15:47:34 +01001536F: drivers/rtc/rtc-st-lpc.c
Greg Kroah-Hartman346e2e42014-09-25 13:11:52 +02001537F: drivers/tty/serial/st-asc.c
Peter Griffineb11ada2014-09-05 16:36:32 +01001538F: drivers/usb/dwc3/dwc3-st.c
Peter Griffin62f6f082014-09-08 13:04:48 +01001539F: drivers/usb/host/ehci-st.c
1540F: drivers/usb/host/ohci-st.c
Lee Jonesdb4112e2015-04-09 15:47:34 +01001541F: drivers/watchdog/st_lpc_wdt.c
Peter Griffindaac6f82014-11-19 08:44:54 +00001542F: drivers/ata/ahci_st.c
Srinivas Kandagatla65ebcc12013-06-25 12:15:10 +01001543
Maxime Coquelinee6e7872015-05-09 09:53:58 +02001544ARM/STM32 ARCHITECTURE
1545M: Maxime Coquelin <mcoquelin.stm32@gmail.com>
1546L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1547S: Maintained
1548T: git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git
1549N: stm32
1550F: drivers/clocksource/armv7m_systick.c
1551
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001552ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001553M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001554L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001555S: Maintained
1556
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001557ARM/TETON BGA MACHINE SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07001558M: "Mark F. Brown" <mark.brown314@gmail.com>
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001559L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1560S: Maintained
1561
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001562ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001563M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001564L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001565S: Maintained
1566
wanzongshun98ad6e32009-02-13 06:04:32 +01001567ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001568M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001569L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -07001570W: http://www.mcuos.com
1571S: Maintained
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001572F: arch/arm/mach-w90x900/
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001573F: drivers/input/keyboard/w90p910_keypad.c
1574F: drivers/input/touchscreen/w90p910_ts.c
1575F: drivers/watchdog/nuc900_wdt.c
Jeff Kirsher679ec0e2011-07-17 00:20:45 -07001576F: drivers/net/ethernet/nuvoton/w90p910_ether.c
Joe Perches53516842010-08-09 17:20:37 -07001577F: drivers/mtd/nand/nuc900_nand.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001578F: drivers/rtc/rtc-nuc900.c
Joe Perches9df92e62012-01-10 15:09:06 -08001579F: drivers/spi/spi-nuc900.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001580F: drivers/usb/host/ehci-w90x900.c
Jingoo Han8a61f012014-07-01 15:36:01 +09001581F: drivers/video/fbdev/nuc900fb.c
wanzongshun98ad6e32009-02-13 06:04:32 +01001582
Linus Walleij54274d72010-04-04 10:58:03 +01001583ARM/U300 MACHINE SUPPORT
Linus Walleije4651a92012-08-06 09:52:52 +02001584M: Linus Walleij <linus.walleij@linaro.org>
Linus Walleij54274d72010-04-04 10:58:03 +01001585L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1586S: Supported
1587F: arch/arm/mach-u300/
Linus Walleij9affbd22014-01-21 15:04:14 +01001588F: drivers/clocksource/timer-u300.c
Linus Walleij54274d72010-04-04 10:58:03 +01001589F: drivers/i2c/busses/i2c-stu300.c
1590F: drivers/rtc/rtc-coh901331.c
1591F: drivers/watchdog/coh901327_wdt.c
1592F: drivers/dma/coh901318*
Linus Walleij87572882010-12-22 09:18:29 +01001593F: drivers/mfd/ab3100*
1594F: drivers/rtc/rtc-ab3100.c
1595F: drivers/rtc/rtc-coh901331.c
1596T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Linus Walleij54274d72010-04-04 10:58:03 +01001597
Masahiro Yamada3d00d042015-05-08 13:07:14 +09001598ARM/UNIPHIER ARCHITECTURE
1599M: Masahiro Yamada <yamada.masahiro@socionext.com>
1600L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1601S: Maintained
Masahiro Yamadaa3ff83d2015-07-25 16:23:24 +09001602F: arch/arm/boot/dts/uniphier*
Masahiro Yamada3d00d042015-05-08 13:07:14 +09001603F: arch/arm/mach-uniphier/
Masahiro Yamadaa3ff83d2015-07-25 16:23:24 +09001604F: drivers/pinctrl/uniphier/
1605F: drivers/tty/serial/8250/8250_uniphier.c
Masahiro Yamada3d00d042015-05-08 13:07:14 +09001606N: uniphier
1607
Linus Walleij87572882010-12-22 09:18:29 +01001608ARM/Ux500 ARM ARCHITECTURE
Linus Walleije4651a92012-08-06 09:52:52 +02001609M: Linus Walleij <linus.walleij@linaro.org>
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001610L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1611S: Maintained
1612F: arch/arm/mach-ux500/
Linus Walleije4651a92012-08-06 09:52:52 +02001613F: drivers/clocksource/clksrc-dbx500-prcmu.c
Linus Walleij87572882010-12-22 09:18:29 +01001614F: drivers/dma/ste_dma40*
Linus Walleije4651a92012-08-06 09:52:52 +02001615F: drivers/hwspinlock/u8500_hsem.c
Linus Walleij87572882010-12-22 09:18:29 +01001616F: drivers/mfd/abx500*
1617F: drivers/mfd/ab8500*
Linus Walleije4651a92012-08-06 09:52:52 +02001618F: drivers/mfd/dbx500*
1619F: drivers/mfd/db8500*
Joe Perchesecc265f2014-08-08 14:26:20 -07001620F: drivers/pinctrl/nomadik/pinctrl-ab*
1621F: drivers/pinctrl/nomadik/pinctrl-nomadik*
Linus Walleij87572882010-12-22 09:18:29 +01001622F: drivers/rtc/rtc-ab8500.c
Linus Walleije4651a92012-08-06 09:52:52 +02001623F: drivers/rtc/rtc-pl031.c
Linus Walleij87572882010-12-22 09:18:29 +01001624T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001625
Ulf Hanssone93fde22013-11-12 11:41:12 +01001626ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1627M: Ulf Hansson <ulf.hansson@linaro.org>
1628L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1629T: git git://git.linaro.org/people/ulfh/clk.git
1630S: Maintained
1631F: drivers/clk/ux500/
1632F: include/linux/platform_data/clk-ux500.h
1633
Pawel Moll740d93b2014-11-26 12:13:05 +00001634ARM/VERSATILE EXPRESS PLATFORM
1635M: Liviu Dudau <liviu.dudau@arm.com>
1636M: Sudeep Holla <sudeep.holla@arm.com>
1637M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
1638L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1639S: Maintained
1640F: arch/arm/boot/dts/vexpress*
Kristina Martsenko9ccd6082015-07-01 13:36:03 +01001641F: arch/arm64/boot/dts/arm/vexpress*
Pawel Moll740d93b2014-11-26 12:13:05 +00001642F: arch/arm/mach-vexpress/
1643F: */*/vexpress*
Pawel Moll7e8f4032014-12-01 14:16:33 +00001644F: */*/*/vexpress*
Pawel Moll740d93b2014-11-26 12:13:05 +00001645F: drivers/clk/versatile/clk-vexpress-osc.c
1646F: drivers/clocksource/versatile.c
1647
Russell Kingd4275352009-04-16 14:05:27 +01001648ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001649M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001650L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001651W: http://www.arm.linux.org.uk/
1652S: Maintained
1653F: arch/arm/vfp/
1654
Marek Vasute66b6d82010-03-26 06:51:32 +01001655ARM/VOIPAC PXA270 SUPPORT
1656M: Marek Vasut <marek.vasut@gmail.com>
1657L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1658S: Maintained
1659F: arch/arm/mach-pxa/vpac270.c
Joe Perchese0cca112010-08-09 17:20:38 -07001660F: arch/arm/mach-pxa/include/mach/vpac270.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001661
Tony Prisk04529fe2012-07-24 04:19:37 +12001662ARM/VT8500 ARM ARCHITECTURE
1663M: Tony Prisk <linux@prisktech.co.nz>
1664L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1665S: Maintained
1666F: arch/arm/mach-vt8500/
Tony Prisk41fd91b2013-02-08 18:18:03 +13001667F: drivers/clocksource/vt8500_timer.c
Tony Prisk560746e2013-06-15 09:52:16 +12001668F: drivers/i2c/busses/i2c-wmt.c
Tony Prisk41fd91b2013-02-08 18:18:03 +13001669F: drivers/mmc/host/wmt-sdmmc.c
1670F: drivers/pwm/pwm-vt8500.c
1671F: drivers/rtc/rtc-vt8500.c
1672F: drivers/tty/serial/vt8500_serial.c
Joe Perches4f311022013-09-11 14:23:46 -07001673F: drivers/usb/host/ehci-platform.c
Tony Prisk41fd91b2013-02-08 18:18:03 +13001674F: drivers/usb/host/uhci-platform.c
Jingoo Han8a61f012014-07-01 15:36:01 +09001675F: drivers/video/fbdev/vt8500lcdfb.*
1676F: drivers/video/fbdev/wm8505fb*
1677F: drivers/video/fbdev/wmt_ge_rops.*
Tony Prisk04529fe2012-07-24 04:19:37 +12001678
Marek Vasute66b6d82010-03-26 06:51:32 +01001679ARM/ZIPIT Z2 SUPPORT
1680M: Marek Vasut <marek.vasut@gmail.com>
1681L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1682S: Maintained
1683F: arch/arm/mach-pxa/z2.c
Joe Perches6ab2a852010-08-09 17:20:38 -07001684F: arch/arm/mach-pxa/include/mach/z2.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001685
Jun Nie5ecc4b52015-04-28 17:18:06 +08001686ARM/ZTE ARCHITECTURE
1687M: Jun Nie <jun.nie@linaro.org>
1688L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1689S: Maintained
1690F: arch/arm/mach-zx/
1691F: drivers/clk/zte/
1692F: Documentation/devicetree/bindings/arm/zte.txt
1693F: Documentation/devicetree/bindings/clock/zx296702-clk.txt
1694
Michal Simek51f29d42013-01-21 17:41:46 +01001695ARM/ZYNQ ARCHITECTURE
1696M: Michal Simek <michal.simek@xilinx.com>
Soren Brinkmannf0fd9ad2014-10-23 09:29:22 -07001697R: Sören Brinkmann <soren.brinkmann@xilinx.com>
Michal Simek51f29d42013-01-21 17:41:46 +01001698L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1699W: http://wiki.xilinx.com
Soren Brinkmannd6448b72015-06-26 09:04:32 -07001700T: git https://github.com/Xilinx/linux-xlnx.git
Michal Simek51f29d42013-01-21 17:41:46 +01001701S: Supported
1702F: arch/arm/mach-zynq/
Michal Simekbd2a3372013-06-04 07:17:39 +00001703F: drivers/cpuidle/cpuidle-zynq.c
Michal Simekfb9d4952014-10-13 15:51:15 -07001704F: drivers/block/xsysace.c
Michal Simekc2fd4e32014-01-02 12:58:50 -08001705N: zynq
1706N: xilinx
1707F: drivers/clocksource/cadence_ttc_timer.c
Soren Brinkmanndf8eb562014-04-04 14:27:55 -07001708F: drivers/i2c/busses/i2c-cadence.c
Soren Brinkmanne3ec3a32013-12-02 10:02:36 -08001709F: drivers/mmc/host/sdhci-of-arasan.c
Punnaiah Choudary Kalluriae9b56e2015-01-06 23:13:47 +05301710F: drivers/edac/synopsys_edac.c
Michal Simek51f29d42013-01-21 17:41:46 +01001711
Will Deacon48ec83b2015-05-27 17:25:59 +01001712ARM SMMU DRIVERS
Will Deaconb8f98792013-06-24 18:31:26 +01001713M: Will Deacon <will.deacon@arm.com>
1714L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1715S: Maintained
1716F: drivers/iommu/arm-smmu.c
Will Deacon48ec83b2015-05-27 17:25:59 +01001717F: drivers/iommu/arm-smmu-v3.c
Will Deacone1d3c0f2014-11-14 17:18:23 +00001718F: drivers/iommu/io-pgtable-arm.c
Will Deaconb8f98792013-06-24 18:31:26 +01001719
Catalin Marinas38074222012-03-05 11:49:34 +00001720ARM64 PORT (AARCH64 ARCHITECTURE)
1721M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasd19766e2012-12-11 13:58:05 +00001722M: Will Deacon <will.deacon@arm.com>
Catalin Marinas38074222012-03-05 11:49:34 +00001723L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1724S: Maintained
1725F: arch/arm64/
Catalin Marinasd19766e2012-12-11 13:58:05 +00001726F: Documentation/arm64/
Catalin Marinas38074222012-03-05 11:49:34 +00001727
Laurent Pinchart9d7005f92012-12-10 20:38:24 -03001728AS3645A LED FLASH CONTROLLER DRIVER
1729M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1730L: linux-media@vger.kernel.org
1731T: git git://linuxtv.org/media_tree.git
1732S: Maintained
1733F: drivers/media/i2c/as3645a.c
1734F: include/media/as3645a.h
1735
George Josephd58de032010-03-05 22:17:25 +01001736ASC7621 HARDWARE MONITOR DRIVER
1737M: George Joseph <george.joseph@fairview5.com>
1738L: lm-sensors@lm-sensors.org
1739S: Maintained
1740F: Documentation/hwmon/asc7621
1741F: drivers/hwmon/asc7621.c
1742
Corentin Charyb229ece2011-02-26 10:20:40 +01001743ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
Corentin Chary5909c652012-12-17 16:00:05 -08001744M: Corentin Chary <corentin.chary@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05001746L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001747W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748S: Maintained
Corentin Charyb229ece2011-02-26 10:20:40 +01001749F: drivers/platform/x86/asus*.c
1750F: drivers/platform/x86/eeepc*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751
Andrew Morton953a6472008-11-06 12:53:28 -08001752ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williams08223d82014-08-19 06:07:56 -07001753R: Dan Williams <dan.j.williams@intel.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001754W: http://sourceforge.net/projects/xscaleiop
Dan Williams08223d82014-08-19 06:07:56 -07001755S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07001756F: Documentation/crypto/async-tx-api.txt
1757F: crypto/async_tx/
1758F: drivers/dma/
1759F: include/linux/dmaengine.h
1760F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001761
Wolfram Sanga1867d32009-09-18 22:45:51 +02001762AT24 EEPROM DRIVER
Wolfram Sang14d77c42013-02-08 20:54:40 +01001763M: Wolfram Sang <wsa@the-dreams.de>
Wolfram Sanga1867d32009-09-18 22:45:51 +02001764L: linux-i2c@vger.kernel.org
1765S: Maintained
1766F: drivers/misc/eeprom/at24.c
Vivien Didelot25f73ed2013-09-27 15:06:28 -04001767F: include/linux/platform_data/at24.h
Wolfram Sanga1867d32009-09-18 22:45:51 +02001768
Randy Dunlape7839f22008-10-12 16:11:45 -07001769ATA OVER ETHERNET (AOE) DRIVER
Ed Cashinfb903812015-03-25 15:55:06 -07001770M: "Ed L. Cashin" <ed.cashin@acm.org>
1771W: http://www.openaoe.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001773F: Documentation/aoe/
1774F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775
Joe Perches9a10a872010-12-01 09:37:55 -08001776ATHEROS ATH GENERIC UTILITIES
Luis R. Rodriguezf726ee62013-12-14 20:11:39 +01001777M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
Joe Perches9a10a872010-12-01 09:37:55 -08001778L: linux-wireless@vger.kernel.org
1779S: Supported
1780F: drivers/net/wireless/ath/*
1781
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001782ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001783M: Jiri Slaby <jirislaby@gmail.com>
1784M: Nick Kossifidis <mickflemm@gmail.com>
Luis R. Rodriguezf726ee62013-12-14 20:11:39 +01001785M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001786L: linux-wireless@vger.kernel.org
Joe Perches72c706b2009-09-07 11:34:30 -07001787W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001788S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001789F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001790
Kalle Valo12e62d62011-09-13 10:21:25 +03001791ATHEROS ATH6KL WIRELESS DRIVER
1792M: Kalle Valo <kvalo@qca.qualcomm.com>
1793L: linux-wireless@vger.kernel.org
1794W: http://wireless.kernel.org/en/users/Drivers/ath6kl
Kalle Valo58cfb682013-07-22 12:26:12 +03001795T: git git://github.com/kvalo/ath.git
Kalle Valo12e62d62011-09-13 10:21:25 +03001796S: Supported
1797F: drivers/net/wireless/ath/ath6kl/
1798
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001799WILOCITY WIL6210 WIRELESS DRIVER
1800M: Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
1801L: linux-wireless@vger.kernel.org
1802L: wil6210@qca.qualcomm.com
1803S: Supported
1804W: http://wireless.kernel.org/en/users/Drivers/wil6210
1805F: drivers/net/wireless/ath/wil6210/
Vladimir Kondratievdba4b742014-10-01 15:05:25 +03001806F: include/uapi/linux/wil6210_uapi.h
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001807
Christian Lamparter1d7e1e62010-09-06 01:10:25 +02001808CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1809M: Christian Lamparter <chunkeey@googlemail.com>
1810L: linux-wireless@vger.kernel.org
1811W: http://wireless.kernel.org/en/users/Drivers/carl9170
1812S: Maintained
1813F: drivers/net/wireless/ath/carl9170/
1814
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001815ATK0110 HWMON DRIVER
1816M: Luca Tettamanti <kronos.it@gmail.com>
1817L: lm-sensors@lm-sensors.org
1818S: Maintained
1819F: drivers/hwmon/asus_atk0110.c
1820
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001821ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001822M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001823S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001824F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001825
Chris Snook7ae115b2008-09-09 03:26:57 -04001826ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001827M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +00001828M: Chris Snook <chris.snook@gmail.com>
Chris Snooke443e382010-09-16 22:00:28 -07001829L: netdev@vger.kernel.org
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001830W: http://sourceforge.net/projects/atl1
1831W: http://atl1.sourceforge.net
1832S: Maintained
Jeff Kirsher2b133ad2011-05-20 06:55:16 -07001833F: drivers/net/ethernet/atheros/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001834
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835ATM
chas williams - CONTRACTOR366c1bd2015-03-11 16:18:01 -04001836M: Chas Williams <3chas3@gmail.com>
Joe Perches476604d2009-10-26 16:49:41 -07001837L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001838L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839W: http://linux-atm.sourceforge.net
1840S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001841F: drivers/atm/
1842F: include/linux/atm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001843F: include/uapi/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001845ATMEL AT91 / AT32 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001846M: Ludovic Desroches <ludovic.desroches@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001847S: Maintained
1848F: drivers/mmc/host/atmel-mci.c
1849F: drivers/mmc/host/atmel-mci-regs.h
1850
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001851ATMEL AT91 / AT32 SERIAL DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001852M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001853S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001854F: drivers/tty/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001855
Bo Shendfae90e2014-09-28 09:57:19 +08001856ATMEL Audio ALSA driver
Nicolas Ferre3a820022015-03-31 15:34:51 +02001857M: Nicolas Ferre <nicolas.ferre@atmel.com>
Bo Shendfae90e2014-09-28 09:57:19 +08001858L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1859S: Supported
1860F: sound/soc/atmel
1861
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001862ATMEL DMA DRIVER
1863M: Nicolas Ferre <nicolas.ferre@atmel.com>
1864L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1865S: Supported
1866F: drivers/dma/at_hdmac.c
1867F: drivers/dma/at_hdmac_regs.h
Cesar Eduardo Barros6f0d65a2013-01-04 15:35:20 -08001868F: include/linux/platform_data/dma-atmel.h
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001869
Ludovic Desroches6bd0f432014-10-22 17:22:20 +02001870ATMEL XDMA DRIVER
1871M: Ludovic Desroches <ludovic.desroches@atmel.com>
1872L: linux-arm-kernel@lists.infradead.org
1873L: dmaengine@vger.kernel.org
1874S: Supported
1875F: drivers/dma/at_xdmac.c
1876
Ludovic Desroches888f2802013-03-15 05:32:57 +00001877ATMEL I2C DRIVER
1878M: Ludovic Desroches <ludovic.desroches@atmel.com>
1879L: linux-i2c@vger.kernel.org
1880S: Supported
1881F: drivers/i2c/busses/i2c-at91.c
1882
Josh Wu15515542012-03-23 17:56:29 +08001883ATMEL ISI DRIVER
1884M: Josh Wu <josh.wu@atmel.com>
1885L: linux-media@vger.kernel.org
1886S: Supported
Cesar Eduardo Barrosf2294c22013-01-04 15:35:21 -08001887F: drivers/media/platform/soc_camera/atmel-isi.c
Josh Wu15515542012-03-23 17:56:29 +08001888F: include/media/atmel-isi.h
1889
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001890ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001891M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01001892L: linux-fbdev@vger.kernel.org
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001893S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09001894F: drivers/video/fbdev/atmel_lcdfb.c
Joe Perches679655d2009-04-07 20:44:32 -07001895F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001896
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001897ATMEL MACB ETHERNET DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001898M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001899S: Supported
Jeff Kirsher9f2f3812011-06-18 01:52:36 -07001900F: drivers/net/ethernet/cadence/
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001901
Josh Wu5cbac982014-10-13 15:51:24 -07001902ATMEL NAND DRIVER
1903M: Josh Wu <josh.wu@atmel.com>
1904L: linux-mtd@lists.infradead.org
1905S: Supported
1906F: drivers/mtd/nand/atmel_nand*
1907
ludovic.desroches@atmel.com05c441e2015-07-29 16:22:48 +02001908ATMEL SDMMC DRIVER
1909M: Ludovic Desroches <ludovic.desroches@atmel.com>
1910L: linux-mmc@vger.kernel.org
1911S: Supported
1912F: drivers/mmc/host/sdhci-of-at91.c
1913
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001914ATMEL SPI DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001915M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001916S: Supported
Joe Perches9df92e62012-01-10 15:09:06 -08001917F: drivers/spi/spi-atmel.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001918
Bo Shen0ef09012014-09-28 09:57:18 +08001919ATMEL SSC DRIVER
Nicolas Ferre03515f32015-03-19 10:49:42 +01001920M: Nicolas Ferre <nicolas.ferre@atmel.com>
Bo Shen0ef09012014-09-28 09:57:18 +08001921L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1922S: Supported
1923F: drivers/misc/atmel-ssc.c
1924F: include/linux/atmel-ssc.h
1925
Nicolas Ferree9cb1c52012-03-26 15:59:32 +02001926ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1927M: Nicolas Ferre <nicolas.ferre@atmel.com>
1928L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1929S: Supported
1930F: drivers/misc/atmel_tclib.c
1931F: drivers/clocksource/tcb_clksrc.c
1932
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001933ATMEL USBA UDC DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001934M: Nicolas Ferre <nicolas.ferre@atmel.com>
1935L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001936S: Supported
Joe Perchesfaf2e1d2014-08-08 14:26:18 -07001937F: drivers/usb/gadget/udc/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001938
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001940M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07001941L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942W: http://www.thekelleys.org.uk/atmel
1943W: http://atmelwlandriver.sourceforge.net/
1944S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001945F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946
Nick Dyera14c0f82015-08-04 16:22:54 -07001947ATMEL MAXTOUCH DRIVER
1948M: Nick Dyer <nick.dyer@itdev.co.uk>
1949T: git git://github.com/atmel-maxtouch/linux.git
1950S: Supported
1951F: Documentation/devicetree/bindings/input/atmel,maxtouch.txt
1952F: drivers/input/touchscreen/atmel_mxt_ts.c
1953F: include/linux/platform_data/atmel_mxt_ts.h
1954
Bradley Grove26780d92013-08-23 10:35:45 -04001955ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
Joe Perchesb75f0052014-03-03 15:38:37 -08001956M: Bradley Grove <linuxdrivers@attotech.com>
1957L: linux-scsi@vger.kernel.org
1958W: http://www.attotech.com
1959S: Supported
1960F: drivers/scsi/esas2r
Bradley Grove26780d92013-08-23 10:35:45 -04001961
Stefan Schmidtbc6e17b2015-05-29 10:51:28 +02001962ATUSB IEEE 802.15.4 RADIO DRIVER
1963M: Stefan Schmidt <stefan@osg.samsung.com>
1964L: linux-wpan@vger.kernel.org
1965S: Maintained
1966F: drivers/net/ieee802154/atusb.c
1967F: drivers/net/ieee802154/atusb.h
1968F: drivers/net/ieee802154/at86rf230.h
1969
Chris Wrighta92b7b82005-07-07 18:12:23 -07001970AUDIT SUBSYSTEM
Paul Moore915f3892014-10-20 11:59:43 -04001971M: Paul Moore <paul@paul-moore.com>
Joe Perches8b58be82009-07-29 15:04:30 -07001972M: Eric Paris <eparis@redhat.com>
Paul Moore915f3892014-10-20 11:59:43 -04001973L: linux-audit@redhat.com (moderated for non-subscribers)
David Woodhousead3f9a22005-07-13 15:28:29 +01001974W: http://people.redhat.com/sgrubb/audit/
Paul Moore915f3892014-10-20 11:59:43 -04001975T: git git://git.infradead.org/users/pcmoore/audit
Chris Wrighta92b7b82005-07-07 18:12:23 -07001976S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001977F: include/linux/audit.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001978F: include/uapi/linux/audit.h
Joe Perches679655d2009-04-07 20:44:32 -07001979F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001980
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001981AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001982M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001983W: http://miguelojeda.es/auxdisplay.htm
1984W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001985S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001986F: drivers/auxdisplay/
1987F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001988
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001989AVR32 ARCHITECTURE
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001990M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1991M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001992W: http://www.atmel.com/products/AVR32/
Matthias Brugger249d9d92013-02-04 14:28:47 -08001993W: http://mirror.egtvedt.no/avr32linux.org/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001994W: http://avrfreaks.net/
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001995S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001996F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001997
1998AVR32/AT32AP MACHINE SUPPORT
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001999M: Haavard Skinnemoen <hskinnemoen@gmail.com>
2000M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
2001S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002002F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07002003
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07002005M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002007W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002009F: include/uapi/linux/ax25.h
Joe Perches679655d2009-04-07 20:44:32 -07002010F: include/net/ax25.h
2011F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012
Mauro Carvalho Chehabd5269392012-11-02 12:00:30 -02002013AZ6007 DVB DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02002014M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehabd5269392012-11-02 12:00:30 -02002015L: linux-media@vger.kernel.org
2016W: http://linuxtv.org
2017T: git git://linuxtv.org/media_tree.git
2018S: Maintained
2019F: drivers/media/usb/dvb-usb-v2/az6007.c
2020
Hans Verkuil67773762012-11-23 07:09:23 -03002021AZTECH FM RADIO RECEIVER DRIVER
2022M: Hans Verkuil <hverkuil@xs4all.nl>
2023L: linux-media@vger.kernel.org
2024T: git git://linuxtv.org/media_tree.git
2025W: http://linuxtv.org
2026S: Maintained
2027F: drivers/media/radio/radio-aztech*
2028
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002029B43 WIRELESS DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002030L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01002031L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02002032W: http://wireless.kernel.org/en/users/Drivers/b43
Joe Perches8a72ed62015-04-15 16:17:39 -07002033S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07002034F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002035
2036B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002037M: Larry Finger <Larry.Finger@lwfinger.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002038L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01002039L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02002040W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002041S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002042F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002043
Richard Purdie300abeb2007-02-07 22:21:07 +00002044BACKLIGHT CLASS/SUBSYSTEM
Jingoo Hanb7701752015-05-14 15:17:07 -07002045M: Jingoo Han <jingoohan1@gmail.com>
Jingoo Han70d14fc2014-04-03 14:48:46 -07002046M: Lee Jones <lee.jones@linaro.org>
Richard Purdie300abeb2007-02-07 22:21:07 +00002047S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002048F: drivers/video/backlight/
2049F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00002050
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002051BATMAN ADVANCED
Antonio Quartulli207df492013-09-21 13:46:56 +02002052M: Marek Lindner <mareklindner@neomailbox.ch>
Simon Wunderlichc679ff82013-10-10 23:59:10 +02002053M: Simon Wunderlich <sw@simonwunderlich.de>
Antonio Quartulli207df492013-09-21 13:46:56 +02002054M: Antonio Quartulli <antonio@meshcoding.com>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002055L: b.a.t.m.a.n@lists.open-mesh.org
2056W: http://www.open-mesh.org/
2057S: Maintained
2058F: net/batman-adv/
2059
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002060BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002061M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002062L: linux-hams@vger.kernel.org
2063W: http://www.baycom.org/~tom/ham/ham.html
2064S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002065F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002066
Kent Overstreetcafe5632013-03-23 16:11:31 -07002067BCACHE (BLOCK LAYER CACHE)
Joe Perchesd1aa1ab2015-06-30 14:59:54 -07002068M: Kent Overstreet <kent.overstreet@gmail.com>
Kent Overstreetcafe5632013-03-23 16:11:31 -07002069L: linux-bcache@vger.kernel.org
2070W: http://bcache.evilpiepirate.org
Joe Perchesd1aa1ab2015-06-30 14:59:54 -07002071S: Maintained
Kent Overstreetcafe5632013-03-23 16:11:31 -07002072F: drivers/md/bcache/
2073
Hans Verkuil04bd8442015-06-08 09:26:20 -03002074BDISP ST MEDIA DRIVER
2075M: Fabien Dessenne <fabien.dessenne@st.com>
2076L: linux-media@vger.kernel.org
2077T: git git://linuxtv.org/media_tree.git
2078W: http://linuxtv.org
2079S: Supported
2080F: drivers/media/platform/sti/bdisp
2081
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002082BEFS FILE SYSTEM
Joe Perches55817d32010-08-09 17:20:52 -07002083S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002084F: Documentation/filesystems/befs.txt
2085F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002086
Dariusz Marcinkiewicz564ee362014-08-15 17:50:47 +02002087BECKHOFF CX5020 ETHERCAT MASTER DRIVER
Joe Perches49e7d9d2015-04-15 16:17:31 -07002088M: Dariusz Marcinkiewicz <reksio@newterm.pl>
2089L: netdev@vger.kernel.org
2090S: Maintained
2091F: drivers/net/ethernet/ec_bhf.c
Dariusz Marcinkiewicz564ee362014-08-15 17:50:47 +02002092
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002093BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002094M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002095S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002096F: Documentation/filesystems/bfs.txt
2097F: fs/bfs/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002098F: include/uapi/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002099
Bryan Wu1394f032007-05-06 14:50:22 -07002100BLACKFIN ARCHITECTURE
Sonic Zhanga4edbc12014-01-29 14:05:55 -08002101M: Steven Miao <realmz6@gmail.com>
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002102L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Michael Opdenacker14431762014-03-10 15:49:49 -07002103T: git git://git.code.sf.net/p/adi-linux/code
Bryan Wue3b2d3f2007-06-11 15:31:30 +08002104W: http://blackfin.uclinux.org
2105S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002106F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07002107
Bryan Wue190d6b2007-07-17 14:43:44 +08002108BLACKFIN EMAC DRIVER
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002109L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Bryan Wue190d6b2007-07-17 14:43:44 +08002110W: http://blackfin.uclinux.org
2111S: Supported
Jeff Kirsher7b35f032011-06-18 00:01:26 -07002112F: drivers/net/ethernet/adi/
Bryan Wue190d6b2007-07-17 14:43:44 +08002113
Mike Frysinger566da5b2007-06-11 15:31:30 +08002114BLACKFIN RTC DRIVER
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002115L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Mike Frysinger566da5b2007-06-11 15:31:30 +08002116W: http://blackfin.uclinux.org
2117S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002118F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08002119
Mike Frysinger936ed492010-03-10 15:20:38 -08002120BLACKFIN SDH DRIVER
Sonic Zhang109ec8c2012-08-08 12:16:08 +08002121M: Sonic Zhang <sonic.zhang@analog.com>
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002122L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Mike Frysinger936ed492010-03-10 15:20:38 -08002123W: http://blackfin.uclinux.org
2124S: Supported
2125F: drivers/mmc/host/bfin_sdh.c
2126
Bryan Wu1394f032007-05-06 14:50:22 -07002127BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002128M: Sonic Zhang <sonic.zhang@analog.com>
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002129L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Bryan Wue3b2d3f2007-06-11 15:31:30 +08002130W: http://blackfin.uclinux.org
2131S: Supported
Joe Perches84602412012-01-10 15:09:04 -08002132F: drivers/tty/serial/bfin_uart.c
Bryan Wu1394f032007-05-06 14:50:22 -07002133
Bryan Wu1e6d3202007-07-15 02:50:02 +08002134BLACKFIN WATCHDOG DRIVER
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002135L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Bryan Wu1e6d3202007-07-15 02:50:02 +08002136W: http://blackfin.uclinux.org
2137S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002138F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08002139
Bryan Wud24ecfc2007-05-01 23:26:32 +02002140BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002141M: Sonic Zhang <sonic.zhang@analog.com>
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002142L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Bryan Wud24ecfc2007-05-01 23:26:32 +02002143W: http://blackfin.uclinux.org/
2144S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002145F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02002146
Scott Jiang1e204372013-01-18 17:09:47 -03002147BLACKFIN MEDIA DRIVER
2148M: Scott Jiang <scott.jiang.linux@gmail.com>
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002149L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Scott Jiang1e204372013-01-18 17:09:47 -03002150W: http://blackfin.uclinux.org/
2151S: Supported
2152F: drivers/media/platform/blackfin/
2153F: drivers/media/i2c/adv7183*
2154F: drivers/media/i2c/vs6624*
2155
Jan-Simon Möllerb54cf352012-07-20 16:49:06 +08002156BLINKM RGB LED DRIVER
2157M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
2158S: Maintained
2159F: drivers/leds/leds-blinkm.c
2160
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07002162M: Jens Axboe <axboe@kernel.dk>
Joe Perches08deed12012-03-23 15:01:57 -07002163T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002165F: block/
Steven Rostedtae11f7e2015-06-09 17:30:11 -04002166F: kernel/trace/blktrace.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167
Joern Engel2b54aae2008-02-06 01:38:02 -08002168BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002169M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08002170L: linux-mtd@lists.infradead.org
2171S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002172F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08002173
Marcel Holtmann63fbd242008-08-18 13:23:53 +02002174BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002175M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07002176M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07002177M: Johan Hedberg <johan.hedberg@gmail.com>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02002178L: linux-bluetooth@vger.kernel.org
2179W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02002180T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2181T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Marcel Holtmann63fbd242008-08-18 13:23:53 +02002182S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002183F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02002184
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002186M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07002187M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07002188M: Johan Hedberg <johan.hedberg@gmail.com>
Pavel Machek781c2842008-03-20 15:41:02 -07002189L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02002190W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02002191T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2192T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002194F: net/bluetooth/
2195F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197BONDING DRIVER
Jay Vosburgh79b30752014-03-27 10:33:44 -07002198M: Jay Vosburgh <j.vosburgh@gmail.com>
Veaceslav Falico898602a2014-03-27 18:43:50 +01002199M: Veaceslav Falico <vfalico@gmail.com>
Andy Gospodarek31639b92015-02-25 17:00:16 -05002200M: Andy Gospodarek <gospo@cumulusnetworks.com>
Simon Hormana6c36ee2010-11-21 09:58:04 -08002201L: netdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01002202W: http://sourceforge.net/projects/bonding/
2203S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002204F: drivers/net/bonding/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002205F: include/uapi/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206
Alexei Starovoitovb5f4df32014-07-22 23:01:59 -07002207BPF (Safe dynamic programs and tools)
2208M: Alexei Starovoitov <ast@kernel.org>
2209L: netdev@vger.kernel.org
2210L: linux-kernel@vger.kernel.org
2211S: Supported
2212F: kernel/bpf/
2213
Gary Zambrano39105892006-06-22 17:26:20 -07002214BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002215M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07002216L: netdev@vger.kernel.org
2217S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07002218F: drivers/net/ethernet/broadcom/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07002219
Florian Fainelli32ec90d2014-02-13 16:08:51 -08002220BROADCOM GENET ETHERNET DRIVER
2221M: Florian Fainelli <f.fainelli@gmail.com>
2222L: netdev@vger.kernel.org
2223S: Supported
2224F: drivers/net/ethernet/broadcom/genet/
2225
Michael Chan948c51e2006-06-04 02:51:39 -07002226BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Jitendra Kalsariaf1d1bae2014-06-23 15:10:35 -04002227M: Sony Chacko <sony.chacko@qlogic.com>
2228M: Dept-HSGLinuxNICDev@qlogic.com
Michael Chan948c51e2006-06-04 02:51:39 -07002229L: netdev@vger.kernel.org
2230S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07002231F: drivers/net/ethernet/broadcom/bnx2.*
2232F: drivers/net/ethernet/broadcom/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07002233
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08002234BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Ariel Elior08f6dd82014-05-27 13:11:36 +03002235M: Ariel Elior <ariel.elior@qlogic.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08002236L: netdev@vger.kernel.org
2237S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07002238F: drivers/net/ethernet/broadcom/bnx2x/
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08002239
Matt Porter90f4c592014-05-06 12:09:45 -04002240BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
Florian Fainellif18cf052014-09-19 11:17:12 -07002241M: Florian Fainelli <f.fainelli@gmail.com>
Florian Fainellid3cc2e82015-04-10 11:49:44 -07002242M: Ray Jui <rjui@broadcom.com>
2243M: Scott Branden <sbranden@broadcom.com>
Christian Daudt497a0452013-09-24 15:27:47 -07002244L: bcm-kernel-feedback-list@broadcom.com
Matt Porter90f4c592014-05-06 12:09:45 -04002245T: git git://github.com/broadcom/mach-bcm
Christian Daudtaf4b8e32013-09-11 14:23:49 -07002246S: Maintained
2247F: arch/arm/mach-bcm/
2248F: arch/arm/boot/dts/bcm113*
Matt Porter90f4c592014-05-06 12:09:45 -04002249F: arch/arm/boot/dts/bcm216*
Christian Daudtaf4b8e32013-09-11 14:23:49 -07002250F: arch/arm/boot/dts/bcm281*
2251F: arch/arm/configs/bcm_defconfig
Joe Perchese4ef47f2014-08-08 14:25:08 -07002252F: drivers/mmc/host/sdhci-bcm-kona.c
Christian Daudtaf4b8e32013-09-11 14:23:49 -07002253F: drivers/clocksource/bcm_kona_timer.c
2254
Scott Branden9209bec2014-10-16 21:57:16 -06002255BROADCOM BCM2835 ARM ARCHITECTURE
Stephen Warrenf680f252012-09-15 00:18:54 -06002256M: Stephen Warren <swarren@wwwdotorg.org>
Stephen Warren8bcdd922014-11-04 20:27:17 -07002257M: Lee Jones <lee@kernel.org>
Eric Anholt10b9e8872015-07-22 12:55:36 -07002258M: Eric Anholt <eric@anholt.net>
Stephen Warrenf680f252012-09-15 00:18:54 -06002259L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
Eric Anholt82481122015-07-22 12:55:37 -07002260L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Stephen Warren8bcdd922014-11-04 20:27:17 -07002261T: git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git
Stephen Warrenf680f252012-09-15 00:18:54 -06002262S: Maintained
Scott Branden9209bec2014-10-16 21:57:16 -06002263N: bcm2835
Stephen Warrenf680f252012-09-15 00:18:54 -06002264
Kevin Cernekeea2f67342014-10-20 21:28:06 -07002265BROADCOM BCM33XX MIPS ARCHITECTURE
2266M: Kevin Cernekee <cernekee@gmail.com>
2267L: linux-mips@linux-mips.org
2268S: Maintained
2269F: arch/mips/bcm3384/*
2270F: arch/mips/include/asm/mach-bcm3384/*
2271F: arch/mips/kernel/*bmips*
2272
Rafał Miłecki5564f092015-05-29 07:39:26 +02002273BROADCOM BCM47XX MIPS ARCHITECTURE
2274M: Hauke Mehrtens <hauke@hauke-m.de>
2275M: Rafał Miłecki <zajec5@gmail.com>
2276L: linux-mips@linux-mips.org
2277S: Maintained
2278F: arch/mips/bcm47xx/*
2279F: arch/mips/include/asm/mach-bcm47xx/*
2280
Scott Branden9209bec2014-10-16 21:57:16 -06002281BROADCOM BCM5301X ARM ARCHITECTURE
Hauke Mehrtens5b293eb2014-02-04 00:01:43 +01002282M: Hauke Mehrtens <hauke@hauke-m.de>
2283L: linux-arm-kernel@lists.infradead.org
2284S: Maintained
2285F: arch/arm/mach-bcm/bcm_5301x.c
2286F: arch/arm/boot/dts/bcm5301x.dtsi
2287F: arch/arm/boot/dts/bcm470*
2288
Florian Fainellie076e962014-03-04 18:14:58 -08002289BROADCOM BCM63XX ARM ARCHITECTURE
2290M: Florian Fainelli <f.fainelli@gmail.com>
2291L: linux-arm-kernel@lists.infradead.org
Florian Fainellieb6725d2015-01-29 15:21:56 -08002292T: git git://github.com/broadcom/arm-bcm63xx.git
Florian Fainellie076e962014-03-04 18:14:58 -08002293S: Maintained
2294F: arch/arm/mach-bcm/bcm63xx.c
2295F: arch/arm/include/debug/bcm63xx.S
2296
Kevin Cernekee7110e2272014-10-20 21:28:07 -07002297BROADCOM BCM63XX/BCM33XX UDC DRIVER
2298M: Kevin Cernekee <cernekee@gmail.com>
2299L: linux-usb@vger.kernel.org
2300S: Maintained
2301F: drivers/usb/gadget/udc/bcm63xx_udc.*
2302
Brian Norris2df94fd2014-07-14 18:06:03 -07002303BROADCOM BCM7XXX ARM ARCHITECTURE
Brian Norris2df94fd2014-07-14 18:06:03 -07002304M: Brian Norris <computersforpeace@gmail.com>
Florian Fainelli3b4b6fe2014-11-14 12:53:43 -08002305M: Gregory Fong <gregory.0xf0@gmail.com>
2306M: Florian Fainelli <f.fainelli@gmail.com>
Brian Norris2df94fd2014-07-14 18:06:03 -07002307L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Florian Fainellieb6725d2015-01-29 15:21:56 -08002308T: git git://github.com/broadcom/stblinux.git
Brian Norris2df94fd2014-07-14 18:06:03 -07002309S: Maintained
2310F: arch/arm/mach-bcm/*brcmstb*
2311F: arch/arm/boot/dts/bcm7*.dts*
Florian Fainellie36661e2014-11-14 12:53:44 -08002312F: drivers/bus/brcmstb_gisb.c
Brian Norris5009a282015-03-18 18:09:05 -07002313N: brcmstb
Brian Norris2df94fd2014-07-14 18:06:03 -07002314
Kevin Cernekee70371ce2014-11-15 16:17:45 -08002315BROADCOM BMIPS MIPS ARCHITECTURE
2316M: Kevin Cernekee <cernekee@gmail.com>
2317M: Florian Fainelli <f.fainelli@gmail.com>
2318L: linux-mips@linux-mips.org
Florian Fainellieb6725d2015-01-29 15:21:56 -08002319T: git git://github.com/broadcom/stblinux.git
Kevin Cernekee70371ce2014-11-15 16:17:45 -08002320S: Maintained
2321F: arch/mips/bmips/*
2322F: arch/mips/include/asm/mach-bmips/*
2323F: arch/mips/kernel/*bmips*
Joe Perches338808d2015-06-30 14:59:42 -07002324F: arch/mips/boot/dts/brcm/bcm*.dts*
Kevin Cernekee70371ce2014-11-15 16:17:45 -08002325F: drivers/irqchip/irq-bcm7*
2326F: drivers/irqchip/irq-brcmstb*
2327
Michael Chan948c51e2006-06-04 02:51:39 -07002328BROADCOM TG3 GIGABIT ETHERNET DRIVER
Prashant Sreedharan23629472014-06-27 16:21:50 -07002329M: Prashant Sreedharan <prashant@broadcom.com>
Joe Perches8b58be82009-07-29 15:04:30 -07002330M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07002331L: netdev@vger.kernel.org
2332S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07002333F: drivers/net/ethernet/broadcom/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07002334
Henry Ptasinskia9533e72010-09-08 21:04:42 -07002335BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2336M: Brett Rudley <brudley@broadcom.com>
Henry Ptasinski818c07b2010-12-08 13:09:49 -08002337M: Arend van Spriel <arend@broadcom.com>
Roland Vossen85d63682011-06-01 13:44:56 +02002338M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
Arend van Spriel006a8f12012-11-28 21:44:04 +01002339M: Hante Meuleman <meuleman@broadcom.com>
Henry Ptasinskia9533e72010-09-08 21:04:42 -07002340L: linux-wireless@vger.kernel.org
Arend van Spriel56151712012-06-14 14:16:27 +02002341L: brcm80211-dev-list@broadcom.com
Henry Ptasinskia9533e72010-09-08 21:04:42 -07002342S: Supported
Joe Perchesf62ebdd2011-12-09 00:12:52 -08002343F: drivers/net/wireless/brcm80211/
Henry Ptasinskia9533e72010-09-08 21:04:42 -07002344
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07002345BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
Vikas Chaudhary3b7f0402014-07-03 08:18:29 -04002346M: QLogic-Storage-Upstream@qlogic.com
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07002347L: linux-scsi@vger.kernel.org
2348S: Supported
2349F: drivers/scsi/bnx2fc/
2350
Eddie Wai6a6b5ad02013-07-11 17:15:56 -07002351BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
Vikas Chaudhary3b7f0402014-07-03 08:18:29 -04002352M: QLogic-Storage-Upstream@qlogic.com
Eddie Wai6a6b5ad02013-07-11 17:15:56 -07002353L: linux-scsi@vger.kernel.org
2354S: Supported
2355F: drivers/scsi/bnx2i/
2356
Scott Branden36c02372014-09-12 16:50:56 -07002357BROADCOM CYGNUS/IPROC ARM ARCHITECTURE
2358M: Ray Jui <rjui@broadcom.com>
2359M: Scott Branden <sbranden@broadcom.com>
2360L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2361L: bcm-kernel-feedback-list@broadcom.com
Florian Fainellieb6725d2015-01-29 15:21:56 -08002362T: git git://github.com/broadcom/cygnus-linux.git
Scott Branden36c02372014-09-12 16:50:56 -07002363S: Maintained
2364N: iproc
2365N: cygnus
2366N: bcm9113*
2367N: bcm9583*
2368N: bcm583*
2369N: bcm113*
2370
Gregory Fong3b0213d2015-05-28 19:14:05 -07002371BROADCOM BRCMSTB GPIO DRIVER
2372M: Gregory Fong <gregory.0xf0@gmail.com>
2373L: bcm-kernel-feedback-list@broadcom.com>
2374S: Supported
2375F: drivers/gpio/gpio-brcmstb.c
2376F: Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2377
Markus Mayer7b7f5882014-02-12 15:42:27 -08002378BROADCOM KONA GPIO DRIVER
Markus Mayer5e163902014-07-29 11:10:07 -07002379M: Ray Jui <rjui@broadcom.com>
Markus Mayer7b7f5882014-02-12 15:42:27 -08002380L: bcm-kernel-feedback-list@broadcom.com
2381S: Supported
2382F: drivers/gpio/gpio-bcm-kona.c
Joe Perches1db12cd2015-06-30 14:59:45 -07002383F: Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
Markus Mayer7b7f5882014-02-12 15:42:27 -08002384
Rafał Miłeckif6e734a2015-06-10 23:05:08 +02002385BROADCOM NVRAM DRIVER
2386M: Rafał Miłecki <zajec5@gmail.com>
2387L: linux-mips@linux-mips.org
2388S: Maintained
2389F: drivers/firmware/broadcom/*
2390
Brian Norris02787da2015-05-12 17:16:50 -07002391BROADCOM STB NAND FLASH DRIVER
2392M: Brian Norris <computersforpeace@gmail.com>
2393L: linux-mtd@lists.infradead.org
2394S: Maintained
2395F: drivers/mtd/nand/brcmnand/
2396
Rafał Miłeckic9678d82012-01-13 22:55:05 +01002397BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2398M: Rafał Miłecki <zajec5@gmail.com>
2399L: linux-wireless@vger.kernel.org
2400S: Maintained
2401F: drivers/bcma/
2402F: include/linux/bcma/
2403
Florian Fainellib8302202014-04-24 18:09:00 -07002404BROADCOM SYSTEMPORT ETHERNET DRIVER
2405M: Florian Fainelli <f.fainelli@gmail.com>
2406L: netdev@vger.kernel.org
2407S: Supported
2408F: drivers/net/ethernet/broadcom/bcmsysport.*
2409
Jing Huang7725ccf2009-09-23 17:46:15 -07002410BROCADE BFA FC SCSI DRIVER
Anil Gurumurthyaa803372014-02-26 06:08:42 -05002411M: Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2412M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
Joe Perches455518e2009-11-11 14:26:10 -08002413L: linux-scsi@vger.kernel.org
2414S: Supported
2415F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07002416
Rasesh Mody8b230ed2010-08-23 20:24:12 -07002417BROCADE BNA 10 GIGABIT ETHERNET DRIVER
Rasesh Mody439e9572014-10-01 17:20:41 -04002418M: Rasesh Mody <rasesh.mody@qlogic.com>
Rasesh Mody8b230ed2010-08-23 20:24:12 -07002419L: netdev@vger.kernel.org
2420S: Supported
Jeff Kirsherf844a0e2011-05-13 01:00:03 -07002421F: drivers/net/ethernet/brocade/bna/
Rasesh Mody8b230ed2010-08-23 20:24:12 -07002422
Jens Axboe5cdf7f72007-07-17 08:58:06 +02002423BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07002424M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02002425L: linux-scsi@vger.kernel.org
2426S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002427F: block/bsg.c
2428F: include/linux/bsg.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002429F: include/uapi/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02002430
Clemens Ladischaf399172011-01-10 16:32:54 +01002431BT87X AUDIO DRIVER
2432M: Clemens Ladisch <clemens@ladisch.de>
2433L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2434T: git git://git.alsa-project.org/alsa-kernel.git
2435S: Maintained
2436F: Documentation/sound/alsa/Bt87x.txt
2437F: sound/pci/bt87x.c
2438
Michael Bueschff1d5c22008-07-25 01:46:10 -07002439BT8XXGPIO DRIVER
Michael Büscheb032b92011-07-04 20:50:05 +02002440M: Michael Buesch <m@bues.ch>
Michael Bueschff1d5c22008-07-25 01:46:10 -07002441W: http://bu3sch.de/btgpio.php
2442S: Maintained
Joe Perches72dbb702012-01-10 15:08:46 -08002443F: drivers/gpio/gpio-bt8xx.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07002444
Joe Percheseb1eb042009-01-21 10:49:16 -05002445BTRFS FILE SYSTEM
Chris Masonc0778e22013-12-03 20:16:03 -05002446M: Chris Mason <clm@fb.com>
2447M: Josef Bacik <jbacik@fb.com>
Jiri Slabyd8130622015-07-17 16:23:20 -07002448M: David Sterba <dsterba@suse.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05002449L: linux-btrfs@vger.kernel.org
2450W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08002451Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Liu Bo9c106402012-06-14 02:23:25 -06002452T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
Joe Percheseb1eb042009-01-21 10:49:16 -05002453S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002454F: Documentation/filesystems/btrfs.txt
2455F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05002456
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02002458M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002459L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07002460W: http://linuxtv.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02002461T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehabf96236e2012-11-02 11:14:18 -02002462S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07002463F: Documentation/video4linux/bttv/
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002464F: drivers/media/pci/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465
Khalid Aziz1f349232013-06-25 09:57:27 -06002466BUSLOGIC SCSI DRIVER
2467M: Khalid Aziz <khalid@gonehiking.org>
2468L: linux-scsi@vger.kernel.org
2469S: Maintained
2470F: drivers/scsi/BusLogic.*
2471F: drivers/scsi/FlashPoint.*
2472
Clemens Ladischaf399172011-01-10 16:32:54 +01002473C-MEDIA CMI8788 DRIVER
2474M: Clemens Ladisch <clemens@ladisch.de>
2475L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2476T: git git://git.alsa-project.org/alsa-kernel.git
2477S: Maintained
2478F: sound/pci/oxygen/
2479
Mark Salter21413552011-10-04 11:21:42 -04002480C6X ARCHITECTURE
2481M: Mark Salter <msalter@redhat.com>
2482M: Aurelien Jacquiot <a-jacquiot@ti.com>
2483L: linux-c6x-dev@linux-c6x.org
2484W: http://www.linux-c6x.org/wiki/index.php/Main_Page
2485S: Maintained
2486F: arch/c6x/
2487
David Howellsa5432f52009-04-20 15:46:45 +01002488CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07002489M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01002490L: linux-cachefs@redhat.com
2491S: Supported
2492F: Documentation/filesystems/caching/cachefiles.txt
2493F: fs/cachefiles/
2494
Hans Verkuilc815ca32012-11-23 07:05:54 -03002495CADET FM/AM RADIO RECEIVER DRIVER
2496M: Hans Verkuil <hverkuil@xs4all.nl>
2497L: linux-media@vger.kernel.org
2498T: git git://linuxtv.org/media_tree.git
2499W: http://linuxtv.org
2500S: Maintained
2501F: drivers/media/radio/radio-cadet*
2502
Jonathan Corbet77d51402007-03-22 19:44:17 -03002503CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002504M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002505L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02002506T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03002507S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002508F: Documentation/video4linux/cafe_ccic
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002509F: drivers/media/platform/marvell-ccic/
Jonathan Corbet77d51402007-03-22 19:44:17 -03002510
Joe Perches201b6ba2010-09-07 20:33:24 +00002511CAIF NETWORK LAYER
sjur.brandeland@stericsson.com5c574f52013-04-22 23:57:00 +00002512M: Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
Joe Perches201b6ba2010-09-07 20:33:24 +00002513L: netdev@vger.kernel.org
2514S: Supported
2515F: Documentation/networking/caif/
2516F: drivers/net/caif/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002517F: include/uapi/linux/caif/
Joe Perches201b6ba2010-09-07 20:33:24 +00002518F: include/net/caif/
2519F: net/caif/
2520
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02002521CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07002522M: Muli Ben-Yehuda <muli@il.ibm.com>
2523M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02002524L: discuss@x86-64.org
2525S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002526F: arch/x86/kernel/pci-calgary_64.c
2527F: arch/x86/kernel/tce_64.c
2528F: arch/x86/include/asm/calgary.h
2529F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02002530
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002531CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00002532M: Oliver Hartkopp <socketcan@hartkopp.net>
Marc Kleine-Buddef7214cf2015-03-06 09:00:38 +01002533M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00002534L: linux-can@vger.kernel.org
Marc Kleine-Budde84b0d712015-03-06 08:58:33 +01002535W: https://github.com/linux-can
Marc Kleine-Budde870482a2015-01-15 16:56:26 +01002536T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2537T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002538S: Maintained
John Whitmoref35f6c82013-12-06 12:49:08 +00002539F: Documentation/networking/can.txt
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00002540F: net/can/
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00002541F: include/linux/can/core.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002542F: include/uapi/linux/can.h
2543F: include/uapi/linux/can/bcm.h
2544F: include/uapi/linux/can/raw.h
2545F: include/uapi/linux/can/gw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002546
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00002547CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002548M: Wolfgang Grandegger <wg@grandegger.com>
Oliver Hartkoppec782132012-01-03 08:40:28 +00002549M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00002550L: linux-can@vger.kernel.org
Marc Kleine-Budde84b0d712015-03-06 08:58:33 +01002551W: https://github.com/linux-can
Marc Kleine-Budde870482a2015-01-15 16:56:26 +01002552T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2553T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00002554S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00002555F: drivers/net/can/
2556F: include/linux/can/dev.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00002557F: include/linux/can/platform/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002558F: include/uapi/linux/can/error.h
2559F: include/uapi/linux/can/netlink.h
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00002560
James Morris95d16c72012-03-16 12:05:48 +11002561CAPABILITIES
2562M: Serge Hallyn <serge.hallyn@canonical.com>
2563L: linux-security-module@vger.kernel.org
Joe Perches63059022012-06-07 14:21:10 -07002564S: Supported
James Morris95d16c72012-03-16 12:05:48 +11002565F: include/linux/capability.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002566F: include/uapi/linux/capability.h
Joe Perches63059022012-06-07 14:21:10 -07002567F: security/commoncap.c
James Morris38a94112012-04-09 11:03:36 +10002568F: kernel/capability.c
James Morris95d16c72012-03-16 12:05:48 +11002569
Kevin Tsaib84894c2015-01-15 17:41:04 -08002570CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
2571M: Kevin Tsai <ktsai@capellamicro.com>
2572S: Maintained
2573F: drivers/iio/light/cm*
2574F: Documentation/devicetree/bindings/i2c/trivial-devices.txt
2575
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002576CAVIUM LIQUIDIO NETWORK DRIVER
2577M: Derek Chickles <derek.chickles@caviumnetworks.com>
2578M: Satanand Burla <satananda.burla@caviumnetworks.com>
2579M: Felix Manlunas <felix.manlunas@caviumnetworks.com>
2580M: Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
2581L: netdev@vger.kernel.org
2582W: http://www.cavium.com
2583S: Supported
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002584F: drivers/net/ethernet/cavium/liquidio/
2585
Varka Bhadramef0bbac2014-10-29 16:15:22 +05302586CC2520 IEEE-802.15.4 RADIO DRIVER
2587M: Varka Bhadram <varkabhadram@gmail.com>
2588L: linux-wpan@vger.kernel.org
2589S: Maintained
2590F: drivers/net/ieee802154/cc2520.c
2591F: include/linux/spi/cc2520.h
2592F: Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
2593
Arnd Bergmannb8154542008-05-16 11:10:59 +02002594CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07002595M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002596L: linuxppc-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02002597W: http://www.ibm.com/developerworks/power/cell/
2598S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002599F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07002600F: arch/powerpc/include/asm/spu*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002601F: arch/powerpc/include/uapi/asm/spu*.h
Joe Perches679655d2009-04-07 20:44:32 -07002602F: arch/powerpc/oprofile/*cell*
2603F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02002604
Sage Weil398ecff52015-07-09 11:46:14 -04002605CEPH COMMON CODE (LIBCEPH)
2606M: Ilya Dryomov <idryomov@gmail.com>
Joe Perchese43cdb52015-06-25 15:02:03 -07002607M: "Yan, Zheng" <zyan@redhat.com>
Sage Weil0f5417c2015-02-19 10:10:40 -08002608M: Sage Weil <sage@redhat.com>
Sage Weil82593f82010-03-29 09:53:23 -07002609L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07002610W: http://ceph.com/
Sage Weilfb99f882009-12-03 15:04:08 -08002611T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil6e67b7a2015-07-09 11:47:37 -04002612T: git git://github.com/ceph/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07002613S: Supported
Joe Perches14430812013-09-11 14:23:50 -07002614F: net/ceph/
2615F: include/linux/ceph/
2616F: include/linux/crush/
Sage Weil9030aaf2009-10-06 11:31:15 -07002617
Sage Weil398ecff52015-07-09 11:46:14 -04002618CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
2619M: "Yan, Zheng" <zyan@redhat.com>
2620M: Sage Weil <sage@redhat.com>
2621M: Ilya Dryomov <idryomov@gmail.com>
2622L: ceph-devel@vger.kernel.org
2623W: http://ceph.com/
2624T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil6e67b7a2015-07-09 11:47:37 -04002625T: git git://github.com/ceph/ceph-client.git
Sage Weil398ecff52015-07-09 11:46:14 -04002626S: Supported
2627F: Documentation/filesystems/ceph.txt
2628F: fs/ceph/
2629
David Howellscfc411e2015-08-14 15:20:41 +01002630CERTIFICATE HANDLING:
2631M: David Howells <dhowells@redhat.com>
2632M: David Woodhouse <dwmw2@infradead.org>
2633L: keyrings@linux-nfs.org
2634S: Maintained
2635F: Documentation/module-signing.txt
2636F: certs/
2637F: scripts/extract-cert.c
2638
David Vrabel18332a82008-09-17 16:34:44 +01002639CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01002640L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01002641S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002642F: Documentation/usb/WUSB-Design-overview.txt
2643F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00002644F: drivers/usb/host/hwa-hc.c
2645F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07002646F: drivers/usb/wusbcore/
2647F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01002648
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002649CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002650M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07002651W: http://miguelojeda.es/auxdisplay.htm
2652W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002653S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002654F: drivers/auxdisplay/cfag12864b.c
2655F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002656
2657CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002658M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07002659W: http://miguelojeda.es/auxdisplay.htm
2660W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002661S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002662F: drivers/auxdisplay/cfag12864bfb.c
2663F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002664
Johannes Berg704232c2007-04-23 12:20:05 -07002665CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07002666M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07002667L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02002668W: http://wireless.kernel.org/
2669T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2670T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Johannes Berg704232c2007-04-23 12:20:05 -07002671S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002672F: include/uapi/linux/nl80211.h
Joe Perches679655d2009-04-07 20:44:32 -07002673F: include/net/cfg80211.h
2674F: net/wireless/*
2675X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07002676
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002677CHAR and MISC DRIVERS
2678M: Arnd Bergmann <arnd@arndb.de>
Greg KH879a5a02012-01-31 20:02:00 -08002679M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002680T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Greg KH879a5a02012-01-31 20:02:00 -08002681S: Supported
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002682F: drivers/char/*
2683F: drivers/misc/*
Robert P. J. Day471322a2014-05-16 04:41:09 -04002684F: include/linux/miscdevice.h
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002685
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002686CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07002687M: Andy Whitcroft <apw@canonical.com>
Joe Perches10d83f02013-02-21 16:44:15 -08002688M: Joe Perches <joe@perches.com>
2689S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002690F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002691
Harry Weif8407f22011-02-25 14:44:15 -08002692CHINESE DOCUMENTATION
2693M: Harry Wei <harryxiyou@gmail.com>
Joe Perches97401532012-12-17 16:00:00 -08002694L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
Harry Weif8407f22011-02-25 14:44:15 -08002695L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
2696S: Maintained
2697F: Documentation/zh_CN/
2698
Alexander Shishkin2721ea22012-05-11 17:25:59 +03002699CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
Greg Kroah-Hartmaneee52f92013-12-02 15:43:48 -08002700M: Peter Chen <Peter.Chen@freescale.com>
Peter Chen83738562015-03-23 19:57:36 +08002701T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
Alexander Shishkin2721ea22012-05-11 17:25:59 +03002702L: linux-usb@vger.kernel.org
2703S: Maintained
2704F: drivers/usb/chipidea/
2705
Hans de Goedea93ad652015-03-21 20:40:45 -07002706CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
2707M: Hans de Goede <hdegoede@redhat.com>
2708L: linux-input@vger.kernel.org
2709S: Maintained
2710F: Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
2711F: drivers/input/touchscreen/chipone_icn8318.c
2712
Olof Johanssonab043102013-11-07 14:25:45 -08002713CHROME HARDWARE PLATFORM SUPPORT
2714M: Olof Johansson <olof@lixom.net>
2715S: Maintained
2716F: drivers/platform/chrome/
2717
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00002718CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri2360d2e2011-02-04 16:17:26 +00002719M: Christian Benvenuti <benve@cisco.com>
govindarajulu.v001e1c12013-09-04 11:17:18 +05302720M: Sujith Sankar <ssujith@cisco.com>
Govindarajulu Varadarajanc327e8f2014-05-20 03:14:32 +05302721M: Govindarajulu Varadarajan <_govind@gmx.com>
Neel Patel5c6652f2012-02-03 08:25:25 +00002722M: Neel Patel <neepatel@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08002723S: Supported
Jeff Kirshera6a55802011-05-13 22:20:35 -07002724F: drivers/net/ethernet/cisco/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08002725
Upinder Malhie3cf00d2013-09-10 03:38:16 +00002726CISCO VIC LOW LATENCY NIC DRIVER
Joe Perchesb75f0052014-03-03 15:38:37 -08002727M: Upinder Malhi <umalhi@cisco.com>
2728S: Supported
2729F: drivers/infiniband/hw/usnic
Upinder Malhie3cf00d2013-09-10 03:38:16 +00002730
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002731CIRRUS LOGIC EP93XX ETHERNET DRIVER
H Hartley Sweeten55879122011-06-09 15:00:21 -07002732M: Hartley Sweeten <hsweeten@visionengravers.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002733L: netdev@vger.kernel.org
2734S: Maintained
Jeff Kirsher57d0b7a2011-07-16 23:50:52 -07002735F: drivers/net/ethernet/cirrus/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002736
Mark Brown3d4cfdc2014-02-04 20:28:12 +00002737CIRRUS LOGIC AUDIO CODEC DRIVERS
2738M: Brian Austin <brian.austin@cirrus.com>
2739M: Paul Handrigan <Paul.Handrigan@cirrus.com>
2740L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2741S: Maintained
2742F: sound/soc/codecs/cs*
2743
Konrad Rzeszutek Wilk94574d92012-03-19 11:47:18 -04002744CLEANCACHE API
2745M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2746L: linux-kernel@vger.kernel.org
2747S: Maintained
2748F: mm/cleancache.c
2749F: include/linux/cleancache.h
2750
Russell Kingd4275352009-04-16 14:05:27 +01002751CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07002752M: Russell King <linux@arm.linux.org.uk>
Paul Walmsleyaa571b12015-03-25 18:32:59 +00002753L: linux-clk@vger.kernel.org
Joe Perches37417042012-03-23 15:01:58 -07002754S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01002755F: include/linux/clk.h
2756
John Stultz9222d242013-07-16 16:45:31 +02002757CLOCKSOURCE, CLOCKEVENT DRIVERS
2758M: Daniel Lezcano <daniel.lezcano@linaro.org>
2759M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar981c3a42014-01-21 10:59:20 +01002760L: linux-kernel@vger.kernel.org
John Stultz9222d242013-07-16 16:45:31 +02002761T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
2762S: Supported
2763F: drivers/clocksource
2764
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002765CISCO FCOE HBA DRIVER
Hiral Patel8fc89a72012-12-10 01:21:29 -08002766M: Hiral Patel <hiralpat@cisco.com>
2767M: Suma Ramars <sramars@cisco.com>
Abhijeet Joglekard7e01dc2011-06-13 21:21:17 -07002768M: Brian Uchino <buchino@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002769L: linux-scsi@vger.kernel.org
2770S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07002771F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002772
Narsimhulu Musinic8806b62015-05-29 01:04:01 -07002773CISCO SCSI HBA DRIVER
2774M: Narsimhulu Musini <nmusini@cisco.com>
2775M: Sesidhar Baddela <sebaddel@cisco.com>
2776L: linux-scsi@vger.kernel.org
2777S: Supported
2778F: drivers/scsi/snic/
2779
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002780CMPC ACPI DRIVER
2781M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2782M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd0944852010-02-11 10:40:13 -05002783L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002784S: Supported
2785F: drivers/platform/x86/classmate-laptop.c
2786
Hans Verkuil85756a02015-05-12 08:52:21 -03002787COBALT MEDIA DRIVER
2788M: Hans Verkuil <hans.verkuil@cisco.com>
2789L: linux-media@vger.kernel.org
2790T: git git://linuxtv.org/media_tree.git
2791W: http://linuxtv.org
2792S: Supported
2793F: drivers/media/pci/cobalt/
2794
Nicolas Palix74425ee2010-06-06 17:15:01 +02002795COCCINELLE/Semantic Patches (SmPL)
Nicolas Palix26de9c22012-09-20 22:52:42 +02002796M: Julia Lawall <Julia.Lawall@lip6.fr>
Nicolas Palix74425ee2010-06-06 17:15:01 +02002797M: Gilles Muller <Gilles.Muller@lip6.fr>
Nicolas Palix26de9c22012-09-20 22:52:42 +02002798M: Nicolas Palix <nicolas.palix@imag.fr>
Jiri Slabyd8130622015-07-17 16:23:20 -07002799M: Michal Marek <mmarek@suse.com>
Nicolas Palix26de9c22012-09-20 22:52:42 +02002800L: cocci@systeme.lip6.fr (moderated for non-subscribers)
Nicolas Palixc00b5112013-06-06 23:39:53 +02002801T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
Nicolas Palix74425ee2010-06-06 17:15:01 +02002802W: http://coccinelle.lip6.fr/
2803S: Supported
Nicolas Palix4b92b2a2013-06-20 13:10:55 +02002804F: Documentation/coccinelle.txt
Nicolas Palix74425ee2010-06-06 17:15:01 +02002805F: scripts/coccinelle/
2806F: scripts/coccicheck
2807
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002809M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810M: coda@cs.cmu.edu
2811L: codalist@coda.cs.cmu.edu
2812W: http://www.coda.cs.cmu.edu/
2813S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002814F: Documentation/filesystems/coda.txt
2815F: fs/coda/
2816F: include/linux/coda*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002817F: include/uapi/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818
Philipp Zabel0b142612014-11-04 07:26:35 -03002819CODA V4L2 MEM2MEM DRIVER
2820M: Philipp Zabel <p.zabel@pengutronix.de>
2821L: linux-media@vger.kernel.org
2822S: Maintained
2823F: Documentation/devicetree/bindings/media/coda.txt
2824F: drivers/media/platform/coda/
2825
Mike Turquette7704add2012-05-02 18:37:45 -07002826COMMON CLK FRAMEWORK
Michael Turquettea85fa002015-06-17 13:41:04 -07002827M: Michael Turquette <mturquette@baylibre.com>
Michael Turquettef9561652014-11-12 16:43:47 -08002828M: Stephen Boyd <sboyd@codeaurora.org>
Paul Walmsleyaa571b12015-03-25 18:32:59 +00002829L: linux-clk@vger.kernel.org
Michael Turquettebaeb0d92014-11-13 17:18:20 -08002830T: git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
Mike Turquette7704add2012-05-02 18:37:45 -07002831S: Maintained
Stephen Warren60bea3b2013-06-05 09:50:30 -06002832F: drivers/clk/
2833X: drivers/clk/clkdev.c
Mike Turquette7704add2012-05-02 18:37:45 -07002834F: include/linux/clk-pr*
Stephen Warren60bea3b2013-06-05 09:50:30 -06002835F: include/linux/clk/
Mike Turquette7704add2012-05-02 18:37:45 -07002836
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002837COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07002838M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04002839L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08002840L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002841W: http://linux-cifs.samba.org/
Kevin Cernekeebb1d5dd2014-11-10 13:09:24 -08002842T: git git://git.samba.org/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002843S: Supported
Joe Perchesec421a72014-08-08 14:24:59 -07002844F: Documentation/filesystems/cifs/
Joe Perches679655d2009-04-07 20:44:32 -07002845F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002846
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002848M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002849L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002850S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002851F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852
2853COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002854M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002855L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002856S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002857F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858
2859COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002860M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002861L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002862S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002863F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002865COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002866M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05002867L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002868S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002869F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002870
Simon Arlott949be0f2007-03-06 02:47:46 -08002871CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002872M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02002873L: accessrunner-general@lists.sourceforge.net
2874W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08002875S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002876F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08002877
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002878CONFIGFS
Joel Beckerd6351db2011-01-07 18:10:32 -08002879M: Joel Becker <jlbec@evilplan.org>
2880T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002881S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002882F: fs/configfs/
2883F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002884
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002885CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07002886M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002887L: netdev@vger.kernel.org
2888S: Maintained
2889F: drivers/connector/
2890
Tejun Heoa3e33542014-05-13 15:49:58 -04002891CONTROL GROUP (CGROUP)
Paul Menage860ca0e2011-11-18 14:22:09 -08002892M: Tejun Heo <tj@kernel.org>
Li Zefanad50c152012-03-29 08:53:30 -07002893M: Li Zefan <lizefan@huawei.com>
Tejun Heo4d205672015-06-12 17:15:23 -05002894M: Johannes Weiner <hannes@cmpxchg.org>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08002895L: cgroups@vger.kernel.org
Paul Menage860ca0e2011-11-18 14:22:09 -08002896T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002897S: Maintained
Tejun Heoa3e33542014-05-13 15:49:58 -04002898F: Documentation/cgroups/
Joe Perches679655d2009-04-07 20:44:32 -07002899F: include/linux/cgroup*
2900F: kernel/cgroup*
Tejun Heoa3e33542014-05-13 15:49:58 -04002901
2902CONTROL GROUP - CPUSET
2903M: Li Zefan <lizefan@huawei.com>
2904L: cgroups@vger.kernel.org
2905W: http://www.bullopensource.org/cpuset/
2906W: http://oss.sgi.com/projects/cpusets/
2907T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2908S: Maintained
2909F: Documentation/cgroups/cpusets.txt
2910F: include/linux/cpuset.h
2911F: kernel/cpuset.c
2912
2913CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
2914M: Johannes Weiner <hannes@cmpxchg.org>
Michal Hockofbd7dc72015-07-17 16:23:26 -07002915M: Michal Hocko <mhocko@kernel.org>
Tejun Heoa3e33542014-05-13 15:49:58 -04002916L: cgroups@vger.kernel.org
2917L: linux-mm@kvack.org
2918S: Maintained
2919F: mm/memcontrol.c
Johannes Weiner5d1ea482014-12-10 15:44:55 -08002920F: mm/swap_cgroup.c
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002921
Rudolf Marekbebe4672007-05-08 17:22:02 +02002922CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02002923M: Fenghua Yu <fenghua.yu@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02002924L: lm-sensors@lm-sensors.org
2925S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002926F: Documentation/hwmon/coretemp
2927F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02002928
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002930M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931W: http://www.fi.muni.cz/~kas/cosa/
2932S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002933F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934
Florian Fainelli4371ee32009-06-01 02:43:17 -07002935CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002936M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07002937L: netdev@vger.kernel.org
2938S: Maintained
Jeff Kirsherb544dba2011-06-14 12:56:50 -07002939F: drivers/net/ethernet/ti/cpmac.c
Florian Fainelli4371ee32009-06-01 02:43:17 -07002940
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941CPU FREQUENCY DRIVERS
Joe Perches9c3646d2015-06-25 15:02:00 -07002942M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
viresh kumar45c009a2013-04-26 12:53:16 +00002943M: Viresh Kumar <viresh.kumar@linaro.org>
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002944L: linux-pm@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945S: Maintained
Viresh Kumar27209d92013-05-29 12:23:14 +05302946T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2947T: git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
Joe Perches679655d2009-04-07 20:44:32 -07002948F: drivers/cpufreq/
2949F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950
Viresh Kumar8a67f0e2013-04-01 12:57:49 +00002951CPU FREQUENCY DRIVERS - ARM BIG LITTLE
2952M: Viresh Kumar <viresh.kumar@linaro.org>
Sudeep Holla171d0ba2014-02-11 11:42:32 +00002953M: Sudeep Holla <sudeep.holla@arm.com>
Viresh Kumar8a67f0e2013-04-01 12:57:49 +00002954L: linux-pm@vger.kernel.org
2955W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php
2956S: Maintained
2957F: drivers/cpufreq/arm_big_little.h
2958F: drivers/cpufreq/arm_big_little.c
2959F: drivers/cpufreq/arm_big_little_dt.c
2960
Lorenzo Pieralisi14d2c342013-06-12 17:40:01 +02002961CPUIDLE DRIVER - ARM BIG LITTLE
Joe Perchesb75f0052014-03-03 15:38:37 -08002962M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2963M: Daniel Lezcano <daniel.lezcano@linaro.org>
2964L: linux-pm@vger.kernel.org
2965L: linux-arm-kernel@lists.infradead.org
Joe Perchescea83212014-03-03 15:38:38 -08002966T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
Joe Perchesb75f0052014-03-03 15:38:37 -08002967S: Maintained
2968F: drivers/cpuidle/cpuidle-big_little.c
Lorenzo Pieralisi14d2c342013-06-12 17:40:01 +02002969
Bartlomiej Zolnierkiewicz0c570c12014-12-02 16:41:35 +01002970CPUIDLE DRIVER - ARM EXYNOS
2971M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
2972M: Daniel Lezcano <daniel.lezcano@linaro.org>
2973M: Kukjin Kim <kgene@kernel.org>
2974L: linux-pm@vger.kernel.org
2975L: linux-samsung-soc@vger.kernel.org
2976S: Supported
2977F: drivers/cpuidle/cpuidle-exynos.c
2978F: arch/arm/mach-exynos/pm.c
2979
Daniel Lezcanoa8e39c32013-04-26 11:05:44 +00002980CPUIDLE DRIVERS
Joe Perches9c3646d2015-06-25 15:02:00 -07002981M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Daniel Lezcanoa8e39c32013-04-26 11:05:44 +00002982M: Daniel Lezcano <daniel.lezcano@linaro.org>
2983L: linux-pm@vger.kernel.org
2984S: Maintained
Joe Perchescea83212014-03-03 15:38:38 -08002985T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
Daniel Lezcanoa8e39c32013-04-26 11:05:44 +00002986F: drivers/cpuidle/*
2987F: include/linux/cpuidle.h
2988
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002990M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002992F: arch/x86/kernel/cpuid.c
2993F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02002995CPU POWER MONITORING SUBSYSTEM
Jiri Slabyd8130622015-07-17 16:23:20 -07002996M: Thomas Renninger <trenn@suse.com>
Thomas Renninger103f1792014-07-22 16:06:01 +02002997L: linux-pm@vger.kernel.org
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02002998S: Maintained
Joe Perches14430812013-09-11 14:23:50 -07002999F: tools/power/cpupower/
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02003000
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01003002W: http://sourceforge.net/projects/cramfs/
Michael Opdenacker54886a72013-11-12 15:08:35 -08003003S: Orphan / Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07003004F: Documentation/filesystems/cramfs.txt
3005F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006
3007CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003008M: Mikael Starvik <starvik@axis.com>
3009M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02003010L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011W: http://developer.axis.com
3012S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003013F: arch/cris/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003014F: drivers/tty/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015
3016CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07003017M: Herbert Xu <herbert@gondor.apana.org.au>
3018M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003020T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003022F: Documentation/crypto/
Stephan Mueller2ca87a12015-03-06 21:36:21 +01003023F: Documentation/DocBook/crypto-API.tmpl
Joe Perches679655d2009-04-07 20:44:32 -07003024F: arch/*/crypto/
3025F: crypto/
3026F: drivers/crypto/
3027F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028
Neil Horman5b07bd52009-02-05 16:03:04 +11003029CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003030M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11003031L: linux-crypto@vger.kernel.org
3032S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07003033F: crypto/ansi_cprng.c
3034F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11003035
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01003036CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07003037M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01003038S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003039F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01003040
Solomon Peachya910e4a2013-05-24 20:04:38 -04003041CW1200 WLAN driver
Joe Perchesb75f0052014-03-03 15:38:37 -08003042M: Solomon Peachy <pizza@shaftnet.org>
3043S: Maintained
3044F: drivers/net/wireless/cw1200/
Solomon Peachya910e4a2013-05-24 20:04:38 -04003045
Hans Verkuil6d8425b2008-05-05 18:25:22 -03003046CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03003047M: Andy Walls <awalls@md.metrocast.net>
Joe Perches7b212ed2014-12-10 15:51:24 -08003048L: ivtv-devel@ivtvdriver.org (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003049L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003050T: git git://linuxtv.org/media_tree.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03003051W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07003052W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b2008-05-05 18:25:22 -03003053S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003054F: Documentation/video4linux/cx18.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03003055F: drivers/media/pci/cx18/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02003056F: include/uapi/linux/ivtv*
Hans Verkuil6d8425b2008-05-05 18:25:22 -03003057
Hans Verkuil3f101d92012-11-23 07:00:02 -03003058CX2341X MPEG ENCODER HELPER MODULE
3059M: Hans Verkuil <hverkuil@xs4all.nl>
3060L: linux-media@vger.kernel.org
3061T: git git://linuxtv.org/media_tree.git
3062W: http://linuxtv.org
3063S: Maintained
Cesar Eduardo Barrosc368360b2013-03-02 21:53:42 -03003064F: drivers/media/common/cx2341x*
Hans Verkuil3f101d92012-11-23 07:00:02 -03003065F: include/media/cx2341x*
3066
Patrick Boettcherb8fe6e22015-04-28 02:53:13 -03003067CX24120 MEDIA DRIVER
3068M: Jemma Denson <jdenson@gmail.com>
3069M: Patrick Boettcher <patrick.boettcher@posteo.de>
3070L: linux-media@vger.kernel.org
3071W: http://linuxtv.org/
3072Q: http://patchwork.linuxtv.org/project/linux-media/list/
3073S: Maintained
3074F: drivers/media/dvb-frontends/cx24120*
3075
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02003076CX88 VIDEO4LINUX DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02003077M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02003078L: linux-media@vger.kernel.org
3079W: http://linuxtv.org
3080T: git git://linuxtv.org/media_tree.git
3081S: Odd fixes
3082F: Documentation/video4linux/cx88/
3083F: drivers/media/pci/cx88/
Knut Petersen9fa68ea2005-09-09 13:04:56 -07003084
Antti Palosaari91952bc2012-10-01 12:28:46 -03003085CXD2820R MEDIA DRIVER
3086M: Antti Palosaari <crope@iki.fi>
3087L: linux-media@vger.kernel.org
3088W: http://linuxtv.org/
3089W: http://palosaari.fi/linux/
3090Q: http://patchwork.linuxtv.org/project/linux-media/list/
3091T: git git://linuxtv.org/anttip/media_tree.git
3092S: Maintained
3093F: drivers/media/dvb-frontends/cxd2820r*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07003094
Steve Wisee5ec3782008-05-20 14:06:33 -07003095CXGB3 ETHERNET DRIVER (CXGB3)
Divy Le Raycdc99232013-11-11 15:01:39 -08003096M: Santosh Raspatur <santosh@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07003097L: netdev@vger.kernel.org
3098W: http://www.chelsio.com
3099S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07003100F: drivers/net/ethernet/chelsio/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07003101
Anish Bhattd8ae3c32014-11-04 15:19:22 -08003102CXGB3 ISCSI DRIVER (CXGB3I)
Joe Perches49e7d9d2015-04-15 16:17:31 -07003103M: Karen Xie <kxie@chelsio.com>
3104L: linux-scsi@vger.kernel.org
3105W: http://www.chelsio.com
3106S: Supported
3107F: drivers/scsi/cxgbi/cxgb3i
Anish Bhattd8ae3c32014-11-04 15:19:22 -08003108
Steve Wisee5ec3782008-05-20 14:06:33 -07003109CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07003110M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003111L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07003112W: http://www.openfabrics.org
3113S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003114F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07003115
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003116CXGB4 ETHERNET DRIVER (CXGB4)
Dimitris Michailidis56f16c72014-06-13 14:11:14 -07003117M: Hariprasad S <hariprasad@chelsio.com>
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003118L: netdev@vger.kernel.org
3119W: http://www.chelsio.com
3120S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07003121F: drivers/net/ethernet/chelsio/cxgb4/
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003122
Anish Bhattd8ae3c32014-11-04 15:19:22 -08003123CXGB4 ISCSI DRIVER (CXGB4I)
Joe Perches49e7d9d2015-04-15 16:17:31 -07003124M: Karen Xie <kxie@chelsio.com>
3125L: linux-scsi@vger.kernel.org
3126W: http://www.chelsio.com
3127S: Supported
3128F: drivers/scsi/cxgbi/cxgb4i
Anish Bhattd8ae3c32014-11-04 15:19:22 -08003129
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003130CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3131M: Steve Wise <swise@chelsio.com>
3132L: linux-rdma@vger.kernel.org
3133W: http://www.openfabrics.org
3134S: Supported
3135F: drivers/infiniband/hw/cxgb4/
3136
Casey Leedom5c20a5c2010-07-19 17:55:33 -07003137CXGB4VF ETHERNET DRIVER (CXGB4VF)
3138M: Casey Leedom <leedom@chelsio.com>
3139L: netdev@vger.kernel.org
3140W: http://www.chelsio.com
3141S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07003142F: drivers/net/ethernet/chelsio/cxgb4vf/
Casey Leedom5c20a5c2010-07-19 17:55:33 -07003143
Ian Munsiea9282d02014-10-08 19:55:05 +11003144CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3145M: Ian Munsie <imunsie@au1.ibm.com>
3146M: Michael Neuling <mikey@neuling.org>
3147L: linuxppc-dev@lists.ozlabs.org
3148S: Supported
3149F: drivers/misc/cxl/
Michael Neulingec249dd2015-05-27 16:07:16 +10003150F: include/misc/cxl*
Ian Munsiea9282d02014-10-08 19:55:05 +11003151F: include/uapi/misc/cxl.h
3152F: Documentation/powerpc/cxl.txt
3153F: Documentation/powerpc/cxl.txt
3154F: Documentation/ABI/testing/sysfs-class-cxl
3155
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08003156STMMAC ETHERNET DRIVER
3157M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
3158L: netdev@vger.kernel.org
3159W: http://www.stlinux.com
3160S: Supported
Jeff Kirsher7ac66532011-05-16 00:05:19 -07003161F: drivers/net/ethernet/stmicro/stmmac/
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08003162
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003164M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07003165L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166W: http://www.arm.linux.org.uk/
3167S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09003168F: drivers/video/fbdev/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07003169
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08003172S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07003173F: drivers/tty/cyclades.c
Joe Perches679655d2009-04-07 20:44:32 -07003174F: include/linux/cyclades.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003175F: include/uapi/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176
3177CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08003179S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003180F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181
Antti Palosaari402f6ae2013-04-09 21:30:41 -03003182CYPRESS_FIRMWARE MEDIA DRIVER
3183M: Antti Palosaari <crope@iki.fi>
3184L: linux-media@vger.kernel.org
3185W: http://linuxtv.org/
3186W: http://palosaari.fi/linux/
3187Q: http://patchwork.linuxtv.org/project/linux-media/list/
3188T: git git://linuxtv.org/anttip/media_tree.git
3189S: Maintained
3190F: drivers/media/common/cypress_firmware*
3191
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08003192CYTTSP TOUCHSCREEN DRIVER
Javier Martinez Canillasbe9a6f42013-08-29 08:43:58 -07003193M: Ferruh Yigit <fery@cypress.com>
Joe Perches63059022012-06-07 14:21:10 -07003194L: linux-input@vger.kernel.org
Javier Martinez Canillasbe9a6f42013-08-29 08:43:58 -07003195S: Supported
Joe Perches63059022012-06-07 14:21:10 -07003196F: drivers/input/touchscreen/cyttsp*
3197F: include/linux/input/cyttsp.h
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08003198
Joshua Kinardaaaf5fb2015-02-16 16:00:26 -08003199DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3200M: Joshua Kinard <kumba@gentoo.org>
3201S: Maintained
3202F: drivers/rtc/rtc-ds1685.c
3203F: include/linux/rtc/ds1685.h
3204
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07003206M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207W: http://yaina.de/jreuter/
3208W: http://www.qsl.net/dl1bke/
3209L: linux-hams@vger.kernel.org
3210S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003211F: net/ax25/af_ax25.c
3212F: net/ax25/ax25_dev.c
3213F: net/ax25/ax25_ds_*
3214F: net/ax25/ax25_in.c
3215F: net/ax25/ax25_out.c
3216F: net/ax25/ax25_timer.c
3217F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003219DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003220L: netdev@vger.kernel.org
Joe Perches5ff77422011-05-24 17:13:22 -07003221S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003222F: Documentation/networking/dmfe.txt
Joe Perches0f04e2a2012-01-10 15:08:56 -08003223F: drivers/net/ethernet/dec/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003224
3225DC390/AM53C974 SCSI driver
Jiri Slabyd8130622015-07-17 16:23:20 -07003226M: Hannes Reinecke <hare@suse.com>
Hannes Reinecke71bd8492014-11-24 15:37:30 +01003227L: linux-scsi@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003228S: Maintained
Hannes Reinecke71bd8492014-11-24 15:37:30 +01003229F: drivers/scsi/am53c974.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003230
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231DC395x SCSI driver
Oliver Neukum61eee9a2012-08-01 14:32:55 +02003232M: Oliver Neukum <oliver@neukum.org>
Joe Perches8b58be82009-07-29 15:04:30 -07003233M: Ali Akcaagac <aliakc@web.de>
3234M: Jamie Lenehan <lenehan@twibble.org>
Randy Dunlapf5df58812006-07-14 00:24:29 -07003235L: dc395x@twibble.org
Joe Perchescf015e92014-02-25 15:01:47 -08003236W: http://twibble.org/dist/dc395x/
3237W: http://lists.twibble.org/mailman/listinfo/dc395x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003239F: Documentation/scsi/dc395x.txt
3240F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07003242DCCP PROTOCOL
Arnaldo Carvalho de Meloa89d0302011-02-26 16:28:54 +00003243M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07003244L: dccp@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00003245W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07003246S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003247F: include/linux/dccp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003248F: include/uapi/linux/dccp.h
Joe Perches679655d2009-04-07 20:44:32 -07003249F: include/linux/tfrc.h
3250F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07003251
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253W: http://linux-decnet.sourceforge.net
3254L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00003255S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003256F: Documentation/networking/decnet.txt
3257F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258
Maciej W. Rozyckiebff05b2014-04-06 23:04:00 +01003259DECSTATION PLATFORM SUPPORT
3260M: "Maciej W. Rozycki" <macro@linux-mips.org>
3261L: linux-mips@linux-mips.org
3262W: http://www.linux-mips.org/wiki/DECstation
3263S: Maintained
3264F: arch/mips/dec/
3265F: arch/mips/include/asm/dec/
3266F: arch/mips/include/asm/mach-dec/
3267
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003269M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270S: Maintained
Jeff Kirsher33f810b2011-07-31 00:06:29 -07003271F: drivers/net/fddi/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272
Matthew Garrettad8f07c2009-01-07 18:08:56 -08003273DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003274M: Matthew Garrett <mjg59@srcf.ucam.org>
Pali Rohárcdbff612015-03-29 15:38:50 +02003275M: Pali Rohár <pali.rohar@gmail.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05003276L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08003277S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003278F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08003279
Pali Rohár817a5cd2015-06-06 10:23:28 +02003280DELL LAPTOP RBTN DRIVER
3281M: Pali Rohár <pali.rohar@gmail.com>
3282S: Maintained
3283F: drivers/platform/x86/dell-rbtn.*
3284
Pali Rohárcdbff612015-03-29 15:38:50 +02003285DELL LAPTOP FREEFALL DRIVER
3286M: Pali Rohár <pali.rohar@gmail.com>
3287S: Maintained
3288F: drivers/platform/x86/dell-smo8800.c
3289
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290DELL LAPTOP SMM DRIVER
Pali Rohára5afba12015-05-14 13:16:36 +02003291M: Pali Rohár <pali.rohar@gmail.com>
Guenter Roeckef3522f2014-12-21 20:54:37 +01003292S: Maintained
Pali Rohára5afba12015-05-14 13:16:36 +02003293F: drivers/hwmon/dell-smm-hwmon.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003294F: include/uapi/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003295
Doug Warzecha90563ec2005-09-06 15:17:15 -07003296DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07003297M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07003298S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003299F: Documentation/dcdbas.txt
3300F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07003301
Matthew Garrett0b3f6102009-01-09 20:17:11 +00003302DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003303M: Matthew Garrett <mjg59@srcf.ucam.org>
Pali Rohárcdbff612015-03-29 15:38:50 +02003304M: Pali Rohár <pali.rohar@gmail.com>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00003305S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07003306F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00003307
Paul Zimmerman5efc75e2013-03-11 17:48:03 -07003308DESIGNWARE USB2 DRD IP DRIVER
Paul Zimmerman16272ae2015-01-15 20:14:10 +00003309M: John Youn <johnyoun@synopsys.com>
Paul Zimmerman5efc75e2013-03-11 17:48:03 -07003310L: linux-usb@vger.kernel.org
Paul Zimmerman18f340f2014-09-19 14:49:36 -07003311T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Paul Zimmerman5efc75e2013-03-11 17:48:03 -07003312S: Maintained
Paul Zimmerman197ba5f2014-01-13 13:50:09 -08003313F: drivers/usb/dwc2/
Paul Zimmerman5efc75e2013-03-11 17:48:03 -07003314
Felipe Balbi94ab23d2011-08-19 18:10:59 +03003315DESIGNWARE USB3 DRD IP DRIVER
3316M: Felipe Balbi <balbi@ti.com>
3317L: linux-usb@vger.kernel.org
3318L: linux-omap@vger.kernel.org
3319T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3320S: Maintained
3321F: drivers/usb/dwc3/
3322
Johannes Berg833c9542014-09-12 09:01:56 +02003323DEVICE COREDUMP (DEV_COREDUMP)
3324M: Johannes Berg <johannes@sipsolutions.net>
3325L: linux-kernel@vger.kernel.org
3326S: Maintained
3327F: drivers/base/devcoredump.c
3328F: include/linux/devcoredump.h
3329
Kyungmin Park89d07762012-01-10 15:09:09 -08003330DEVICE FREQUENCY (DEVFREQ)
3331M: MyungJoo Ham <myungjoo.ham@samsung.com>
3332M: Kyungmin Park <kyungmin.park@samsung.com>
MyungJoo Ham88476d32013-03-14 17:28:24 +09003333L: linux-pm@vger.kernel.org
Kyungmin Park89d07762012-01-10 15:09:09 -08003334S: Maintained
3335F: drivers/devfreq/
3336
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07003338M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340S: Maintained
3341
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003342DEVICE-MAPPER (LVM)
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01003343M: Alasdair Kergon <agk@redhat.com>
Alasdair G Kergon8504eed2013-07-10 23:41:19 +01003344M: Mike Snitzer <snitzer@redhat.com>
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01003345M: dm-devel@redhat.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003346L: dm-devel@redhat.com
3347W: http://sources.redhat.com/dm
Joe Perches8a6e2532010-03-05 13:43:11 -08003348Q: http://patchwork.kernel.org/project/dm-devel/list/
Mike Snitzer41d35d22013-11-04 19:42:38 -05003349T: git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01003350T: quilt http://people.redhat.com/agk/patches/linux/editing/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003351S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003352F: Documentation/device-mapper/
3353F: drivers/md/dm*
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01003354F: drivers/md/persistent-data/
Joe Perches679655d2009-04-07 20:44:32 -07003355F: include/linux/device-mapper.h
3356F: include/linux/dm-*.h
Alasdair G Kergon8504eed2013-07-10 23:41:19 +01003357F: include/uapi/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003358
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003359DIALOG SEMICONDUCTOR DRIVERS
3360M: Support Opensource <support.opensource@diasemi.com>
3361W: http://www.dialog-semiconductor.com/products
3362S: Supported
3363F: Documentation/hwmon/da90??
3364F: drivers/gpio/gpio-da90??.c
3365F: drivers/hwmon/da90??-hwmon.c
Adam Thomson7be72c22015-02-18 14:08:37 +00003366F: drivers/iio/adc/da91??-*.c
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003367F: drivers/input/misc/da90??_onkey.c
3368F: drivers/input/touchscreen/da9052_tsi.c
3369F: drivers/leds/leds-da90??.c
3370F: drivers/mfd/da903x.c
3371F: drivers/mfd/da90??-*.c
Adam Thomson7be72c22015-02-18 14:08:37 +00003372F: drivers/mfd/da91??-*.c
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003373F: drivers/power/da9052-battery.c
Adam Thomson7be72c22015-02-18 14:08:37 +00003374F: drivers/power/da91??-*.c
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003375F: drivers/regulator/da903x.c
3376F: drivers/regulator/da9???-regulator.[ch]
3377F: drivers/rtc/rtc-da90??.c
3378F: drivers/video/backlight/da90??_bl.c
3379F: drivers/watchdog/da90??_wdt.c
3380F: include/linux/mfd/da903x.h
3381F: include/linux/mfd/da9052/
3382F: include/linux/mfd/da9055/
3383F: include/linux/mfd/da9063/
Adam Thomson7be72c22015-02-18 14:08:37 +00003384F: include/linux/mfd/da9150/
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003385F: include/sound/da[79]*.h
3386F: sound/soc/codecs/da[79]*.[ch]
3387
Lidza Louina599aa692013-09-23 16:13:15 -04003388DIGI NEO AND CLASSIC PCI PRODUCTS
3389M: Lidza Louina <lidza.louina@gmail.com>
Mark Hounschell542f3d52014-04-25 14:32:15 -04003390M: Mark Hounschell <markh@compro.net>
Lidza Louina599aa692013-09-23 16:13:15 -04003391L: driverdev-devel@linuxdriverproject.org
3392S: Maintained
3393F: drivers/staging/dgnc/
3394
3395DIGI EPCA PCI PRODUCTS
3396M: Lidza Louina <lidza.louina@gmail.com>
Mark Hounschellabeb9352014-05-16 08:08:53 -04003397M: Mark Hounschell <markh@compro.net>
Daeseok Youn6d825f72014-07-12 01:25:42 +09003398M: Daeseok Youn <daeseok.youn@gmail.com>
Lidza Louina599aa692013-09-23 16:13:15 -04003399L: driverdev-devel@linuxdriverproject.org
3400S: Maintained
3401F: drivers/staging/dgap/
3402
Guenter Roeck335d7c52011-01-26 11:45:49 -08003403DIOLAN U2C-12 I2C DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07003404M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck335d7c52011-01-26 11:45:49 -08003405L: linux-i2c@vger.kernel.org
3406S: Maintained
3407F: drivers/i2c/busses/i2c-diolan-u2c.c
3408
Matthew Wilcoxd475c632015-02-16 15:58:56 -08003409DIRECT ACCESS (DAX)
3410M: Matthew Wilcox <willy@linux.intel.com>
3411L: linux-fsdevel@vger.kernel.org
3412S: Supported
3413F: fs/dax.c
3414
Randy Dunlape7839f22008-10-12 16:11:45 -07003415DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07003416M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04003417S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003418F: Documentation/filesystems/dnotify.txt
3419F: fs/notify/dnotify/
3420F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421
3422DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07003423M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
3425W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
3426W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
3427S: Maintained
3428
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003429DISKQUOTA
Jiri Slabyd8130622015-07-17 16:23:20 -07003430M: Jan Kara <jack@suse.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003432F: Documentation/filesystems/quota.txt
3433F: fs/quota/
3434F: include/linux/quota*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003435F: include/uapi/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436
Bernie Thompson702686a2012-03-01 13:52:13 -08003437DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
3438M: Bernie Thompson <bernie@plugable.com>
3439L: linux-fbdev@vger.kernel.org
3440S: Maintained
3441W: http://plugable.com/category/projects/udlfb/
Jingoo Han8a61f012014-07-01 15:36:01 +09003442F: drivers/video/fbdev/udlfb.c
Bernie Thompson702686a2012-03-01 13:52:13 -08003443F: include/video/udlfb.h
3444F: Documentation/fb/udlfb.txt
3445
Randy Dunlape7839f22008-10-12 16:11:45 -07003446DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07003447M: Christine Caulfield <ccaulfie@redhat.com>
3448M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04003449L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003450W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07003451T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003452S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003453F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003454
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05303455DMA BUFFER SHARING FRAMEWORK
3456M: Sumit Semwal <sumit.semwal@linaro.org>
3457S: Maintained
3458L: linux-media@vger.kernel.org
3459L: dri-devel@lists.freedesktop.org
Randy Dunlap8ada6d22014-10-13 15:51:19 -07003460L: linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
Maarten Lankhorst35fac7e2014-07-01 12:57:08 +02003461F: drivers/dma-buf/
Joe Perchese46d12c2014-08-08 14:26:16 -07003462F: include/linux/dma-buf*
3463F: include/linux/reservation.h
3464F: include/linux/*fence.h
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05303465F: Documentation/dma-buf-sharing.txt
3466T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
3467
Dan Williamsb3e5f262007-08-07 10:26:35 -07003468DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Dan Williams4abed0a2011-02-14 00:42:08 -08003469M: Vinod Koul <vinod.koul@intel.com>
Vinod Koul17b59562013-10-22 12:58:56 +05303470L: dmaengine@vger.kernel.org
3471Q: https://patchwork.kernel.org/project/linux-dmaengine/list/
Dan Williams08223d82014-08-19 06:07:56 -07003472S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003473F: drivers/dma/
Vinod Koul0ce3c062014-12-22 20:57:13 +05303474F: include/linux/dmaengine.h
Vinod Koul979a281e2014-11-06 11:21:17 +05303475F: Documentation/dmaengine/
3476T: git git://git.infradead.org/users/vkoul/slave-dma.git
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003477
Juerg Haefligerb8250372007-06-09 10:11:16 -04003478DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003479M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04003480L: lm-sensors@lm-sensors.org
3481S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003482F: Documentation/hwmon/dme1737
3483F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04003484
Jean Delvare1f31e1b2015-03-25 15:55:31 -07003485DMI/SMBIOS SUPPORT
Jiri Slabyd8130622015-07-17 16:23:20 -07003486M: Jean Delvare <jdelvare@suse.com>
Jean Delvare1f31e1b2015-03-25 15:55:31 -07003487S: Maintained
Jean Delvared4aeef92015-06-25 09:06:56 +02003488T: quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
Ivan Khoronzhukd7f96f972015-06-25 09:06:56 +02003489F: Documentation/ABI/testing/sysfs-firmware-dmi-tables
Jean Delvare1f31e1b2015-03-25 15:55:31 -07003490F: drivers/firmware/dmi-id.c
3491F: drivers/firmware/dmi_scan.c
3492F: include/linux/dmi.h
3493
Joe Perches7d2c86b2009-04-07 20:59:01 -07003494DOCUMENTATION
Jonathan Corbetad3118b2014-10-17 08:59:26 -04003495M: Jonathan Corbet <corbet@lwn.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02003496L: linux-doc@vger.kernel.org
3497S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003498F: Documentation/
Randy Dunlap97be0782014-06-27 18:28:56 -07003499X: Documentation/ABI/
3500X: Documentation/devicetree/
Jonathan Corbet933a46b2015-03-26 10:25:17 -06003501X: Documentation/acpi
3502X: Documentation/power
3503X: Documentation/spi
Jonathan Corbet6c121172015-07-24 15:08:14 +02003504X: Documentation/DocBook/media
Jonathan Corbete71e2c62014-12-29 16:17:36 -07003505T: git git://git.lwn.net/linux-2.6.git docs-next
Randy Dunlapabbaeff2008-07-04 09:59:57 -07003506
Linus Torvalds1da177e2005-04-16 15:20:36 -07003507DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003508M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003509L: blinux-list@redhat.com
3510S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003511F: drivers/char/dtlk.c
3512F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003514DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003515M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003516L: linux-scsi@vger.kernel.org
3517W: http://www.adaptec.com/
3518S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003519F: drivers/scsi/dpt*
3520F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003521
Philipp Reisnerb411b362009-09-25 16:07:19 -07003522DRBD DRIVER
Joe Perches28b8e8d2010-03-23 13:35:20 -07003523P: Philipp Reisner
3524P: Lars Ellenberg
3525M: drbd-dev@lists.linbit.com
3526L: drbd-user@lists.linbit.com
3527W: http://www.drbd.org
3528T: git git://git.drbd.org/linux-2.6-drbd.git drbd
3529T: git git://git.drbd.org/drbd-8.3.git
3530S: Supported
3531F: drivers/block/drbd/
3532F: lib/lru_cache.c
3533F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07003534
Wolfram Sangdc7dfcd2015-04-23 17:20:54 +02003535DRIVER CORE, KOBJECTS, DEBUGFS, KERNFS AND SYSFS
Greg KH879a5a02012-01-31 20:02:00 -08003536M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perches08deed12012-03-23 15:01:57 -07003537T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003538S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003539F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07003540F: drivers/base/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07003541F: fs/debugfs/
Wolfram Sangdc7dfcd2015-04-23 17:20:54 +02003542F: fs/kernfs/
3543F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07003544F: include/linux/debugfs.h
Wolfram Sangdc7dfcd2015-04-23 17:20:54 +02003545F: include/linux/kobj*
Joe Perches679655d2009-04-07 20:44:32 -07003546F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003547
3548DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003549M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04003550L: dri-devel@lists.freedesktop.org
Alex Deucherb0447882014-02-18 10:03:44 -05003551T: git git://people.freedesktop.org/~airlied/linux
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003553F: drivers/gpu/drm/
Daniel Vetter433e3b32014-05-26 23:44:42 +02003554F: drivers/gpu/vga/
Joe Perches850e9412010-08-09 17:20:45 -07003555F: include/drm/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003556F: include/uapi/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003557
Alex Deucher566f5932014-02-18 10:03:43 -05003558RADEON DRM DRIVERS
3559M: Alex Deucher <alexander.deucher@amd.com>
3560M: Christian König <christian.koenig@amd.com>
3561L: dri-devel@lists.freedesktop.org
3562T: git git://people.freedesktop.org/~agd5f/linux
3563S: Supported
3564F: drivers/gpu/drm/radeon/
Alex Deucher566f5932014-02-18 10:03:43 -05003565F: include/uapi/drm/radeon*
3566
Thierry Reding03e255b2014-04-04 08:59:18 +02003567DRM PANEL DRIVERS
3568M: Thierry Reding <thierry.reding@gmail.com>
3569L: dri-devel@lists.freedesktop.org
3570T: git git://anongit.freedesktop.org/tegra/linux.git
3571S: Maintained
3572F: drivers/gpu/drm/drm_panel.c
3573F: drivers/gpu/drm/panel/
3574F: include/drm/drm_panel.h
3575F: Documentation/devicetree/bindings/panel/
3576
Chris Wilson8daf7472010-09-28 14:07:26 +01003577INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
Daniel Vettercbce7102014-08-28 12:17:42 +02003578M: Daniel Vetter <daniel.vetter@intel.com>
Daniel Vetter47f95642014-01-07 09:24:31 +01003579M: Jani Nikula <jani.nikula@linux.intel.com>
Daniel Vetter362132d2013-03-13 22:28:46 +01003580L: intel-gfx@lists.freedesktop.org
Chris Wilson8daf7472010-09-28 14:07:26 +01003581L: dri-devel@lists.freedesktop.org
Daniel Vetter47f95642014-01-07 09:24:31 +01003582Q: http://patchwork.freedesktop.org/project/intel-gfx/
Daniel Vetter89258a92014-02-04 19:57:38 +01003583T: git git://anongit.freedesktop.org/drm-intel
Chris Wilson8daf7472010-09-28 14:07:26 +01003584S: Supported
Joe Perches14430812013-09-11 14:23:50 -07003585F: drivers/gpu/drm/i915/
Chris Wilson8daf7472010-09-28 14:07:26 +01003586F: include/drm/i915*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003587F: include/uapi/drm/i915*
Chris Wilson8daf7472010-09-28 14:07:26 +01003588
Kyungmin Park398a6d42011-11-02 11:33:16 +09003589DRM DRIVERS FOR EXYNOS
3590M: Inki Dae <inki.dae@samsung.com>
Inki Daef1501302012-01-17 14:08:55 +09003591M: Joonyoung Shim <jy0922.shim@samsung.com>
3592M: Seung-Woo Kim <sw0312.kim@samsung.com>
3593M: Kyungmin Park <kyungmin.park@samsung.com>
Kyungmin Park398a6d42011-11-02 11:33:16 +09003594L: dri-devel@lists.freedesktop.org
Inki Dae25a58032012-10-30 16:08:05 +09003595T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
Kyungmin Park398a6d42011-11-02 11:33:16 +09003596S: Supported
Joe Perches14430812013-09-11 14:23:50 -07003597F: drivers/gpu/drm/exynos/
Kyungmin Park398a6d42011-11-02 11:33:16 +09003598F: include/drm/exynos*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003599F: include/uapi/drm/exynos*
Kyungmin Park398a6d42011-11-02 11:33:16 +09003600
Jianwei Wangb55a1b92015-08-19 22:26:33 -04003601DRM DRIVERS FOR FREESCALE DCU
3602M: Jianwei Wang <jianwei.wang.chn@gmail.com>
3603M: Alison Wang <alison.wang@freescale.com>
3604L: dri-devel@lists.freedesktop.org
3605S: Supported
3606F: drivers/gpu/drm/fsl-dcu/
3607F: Documentation/devicetree/bindings/video/fsl,dcu.txt
3608F: Documentation/devicetree/bindings/panel/nec,nl4827hc19_05b.txt
3609
Philipp Zabel0a3d7752014-11-24 16:33:35 +01003610DRM DRIVERS FOR FREESCALE IMX
3611M: Philipp Zabel <p.zabel@pengutronix.de>
3612L: dri-devel@lists.freedesktop.org
3613S: Maintained
3614F: drivers/gpu/drm/imx/
3615F: Documentation/devicetree/bindings/drm/imx/
3616
Thierry Redingbd3b49f2012-11-28 20:45:28 +01003617DRM DRIVERS FOR NVIDIA TEGRA
Thierry Redinga5ad7a62013-05-19 14:19:21 +02003618M: Thierry Reding <thierry.reding@gmail.com>
3619M: Terje Bergström <tbergstrom@nvidia.com>
Thierry Redingbd3b49f2012-11-28 20:45:28 +01003620L: dri-devel@lists.freedesktop.org
3621L: linux-tegra@vger.kernel.org
Thierry Redinga5ad7a62013-05-19 14:19:21 +02003622T: git git://anongit.freedesktop.org/tegra/linux.git
Stephen Warrenadabdb02013-09-13 13:00:57 -06003623S: Supported
Thierry Redingdee82682013-10-09 10:32:49 +02003624F: drivers/gpu/drm/tegra/
Thierry Redinga5ad7a62013-05-19 14:19:21 +02003625F: drivers/gpu/host1x/
Thierry Redinge1e90642013-09-24 13:59:01 +02003626F: include/linux/host1x.h
Thierry Redinga5ad7a62013-05-19 14:19:21 +02003627F: include/uapi/drm/tegra_drm.h
Thierry Redingbd3b49f2012-11-28 20:45:28 +01003628F: Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt
3629
Laurent Pincharta284e9d2014-08-19 23:04:31 +02003630DRM DRIVERS FOR RENESAS
3631M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
3632L: dri-devel@lists.freedesktop.org
3633L: linux-sh@vger.kernel.org
3634T: git git://people.freedesktop.org/~airlied/linux
3635S: Supported
3636F: drivers/gpu/drm/rcar-du/
3637F: drivers/gpu/drm/shmobile/
Laurent Pincharta284e9d2014-08-19 23:04:31 +02003638F: include/linux/platform_data/shmob_drm.h
3639
Heiko Stuebner625e0342015-04-20 00:59:50 +02003640DRM DRIVERS FOR ROCKCHIP
3641M: Mark Yao <mark.yao@rock-chips.com>
3642L: dri-devel@lists.freedesktop.org
3643S: Maintained
3644F: drivers/gpu/drm/rockchip/
3645F: Documentation/devicetree/bindings/video/rockchip*
3646
Benjamin Gaignard7f11c472015-08-14 15:35:24 -07003647DRM DRIVERS FOR STI
3648M: Benjamin Gaignard <benjamin.gaignard@linaro.org>
3649M: Vincent Abriou <vincent.abriou@st.com>
3650L: dri-devel@lists.freedesktop.org
3651T: git http://git.linaro.org/people/benjamin.gaignard/kernel.git
3652S: Maintained
3653F: drivers/gpu/drm/sti
3654F: Documentation/devicetree/bindings/gpu/st,stih4xx.txt
3655
Alexey Klimov598df1a2012-11-28 17:16:32 -03003656DSBR100 USB FM RADIO DRIVER
3657M: Alexey Klimov <klimov.linux@gmail.com>
3658L: linux-media@vger.kernel.org
3659T: git git://linuxtv.org/media_tree.git
3660S: Maintained
3661F: drivers/media/radio/dsbr100.c
3662
Linus Torvalds1da177e2005-04-16 15:20:36 -07003663DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003664M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08003665L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003666S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003667F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668
Hans Verkuilcc11b142015-04-25 12:36:18 -03003669DT3155 MEDIA DRIVER
3670M: Hans Verkuil <hverkuil@xs4all.nl>
3671L: linux-media@vger.kernel.org
3672T: git git://linuxtv.org/media_tree.git
3673W: http://linuxtv.org
3674S: Odd Fixes
3675F: drivers/media/pci/dt3155/
3676
Antti Palosaari91952bc2012-10-01 12:28:46 -03003677DVB_USB_AF9015 MEDIA DRIVER
3678M: Antti Palosaari <crope@iki.fi>
3679L: linux-media@vger.kernel.org
3680W: http://linuxtv.org/
3681W: http://palosaari.fi/linux/
3682Q: http://patchwork.linuxtv.org/project/linux-media/list/
3683T: git git://linuxtv.org/anttip/media_tree.git
3684S: Maintained
3685F: drivers/media/usb/dvb-usb-v2/af9015*
3686
3687DVB_USB_AF9035 MEDIA DRIVER
3688M: Antti Palosaari <crope@iki.fi>
3689L: linux-media@vger.kernel.org
3690W: http://linuxtv.org/
3691W: http://palosaari.fi/linux/
3692Q: http://patchwork.linuxtv.org/project/linux-media/list/
3693T: git git://linuxtv.org/anttip/media_tree.git
3694S: Maintained
3695F: drivers/media/usb/dvb-usb-v2/af9035*
3696
3697DVB_USB_ANYSEE MEDIA DRIVER
3698M: Antti Palosaari <crope@iki.fi>
3699L: linux-media@vger.kernel.org
3700W: http://linuxtv.org/
3701W: http://palosaari.fi/linux/
3702Q: http://patchwork.linuxtv.org/project/linux-media/list/
3703T: git git://linuxtv.org/anttip/media_tree.git
3704S: Maintained
3705F: drivers/media/usb/dvb-usb-v2/anysee*
3706
3707DVB_USB_AU6610 MEDIA DRIVER
3708M: Antti Palosaari <crope@iki.fi>
3709L: linux-media@vger.kernel.org
3710W: http://linuxtv.org/
3711W: http://palosaari.fi/linux/
3712Q: http://patchwork.linuxtv.org/project/linux-media/list/
3713T: git git://linuxtv.org/anttip/media_tree.git
3714S: Maintained
3715F: drivers/media/usb/dvb-usb-v2/au6610*
3716
3717DVB_USB_CE6230 MEDIA DRIVER
3718M: Antti Palosaari <crope@iki.fi>
3719L: linux-media@vger.kernel.org
3720W: http://linuxtv.org/
3721W: http://palosaari.fi/linux/
3722Q: http://patchwork.linuxtv.org/project/linux-media/list/
3723T: git git://linuxtv.org/anttip/media_tree.git
3724S: Maintained
3725F: drivers/media/usb/dvb-usb-v2/ce6230*
3726
Michael Krufkyd099dea2012-10-02 00:56:20 -03003727DVB_USB_CXUSB MEDIA DRIVER
3728M: Michael Krufky <mkrufky@linuxtv.org>
3729L: linux-media@vger.kernel.org
3730W: http://linuxtv.org/
3731W: http://github.com/mkrufky
3732Q: http://patchwork.linuxtv.org/project/linux-media/list/
3733T: git git://linuxtv.org/media_tree.git
3734S: Maintained
Cesar Eduardo Barros9819da62013-01-04 15:35:25 -08003735F: drivers/media/usb/dvb-usb/cxusb*
Michael Krufkyd099dea2012-10-02 00:56:20 -03003736
Antti Palosaari91952bc2012-10-01 12:28:46 -03003737DVB_USB_EC168 MEDIA DRIVER
3738M: Antti Palosaari <crope@iki.fi>
3739L: linux-media@vger.kernel.org
3740W: http://linuxtv.org/
3741W: http://palosaari.fi/linux/
3742Q: http://patchwork.linuxtv.org/project/linux-media/list/
3743T: git git://linuxtv.org/anttip/media_tree.git
3744S: Maintained
3745F: drivers/media/usb/dvb-usb-v2/ec168*
3746
Antti Palosaari55609832013-04-09 20:30:42 -03003747DVB_USB_GL861 MEDIA DRIVER
3748M: Antti Palosaari <crope@iki.fi>
3749L: linux-media@vger.kernel.org
3750W: http://linuxtv.org/
3751Q: http://patchwork.linuxtv.org/project/linux-media/list/
3752T: git git://linuxtv.org/anttip/media_tree.git
3753S: Maintained
3754F: drivers/media/usb/dvb-usb-v2/gl861*
3755
Michael Krufky8856f5f2012-10-02 00:55:50 -03003756DVB_USB_MXL111SF MEDIA DRIVER
3757M: Michael Krufky <mkrufky@linuxtv.org>
3758L: linux-media@vger.kernel.org
3759W: http://linuxtv.org/
3760W: http://github.com/mkrufky
3761Q: http://patchwork.linuxtv.org/project/linux-media/list/
3762T: git git://linuxtv.org/mkrufky/mxl111sf.git
3763S: Maintained
3764F: drivers/media/usb/dvb-usb-v2/mxl111sf*
3765
Antti Palosaari91952bc2012-10-01 12:28:46 -03003766DVB_USB_RTL28XXU MEDIA DRIVER
3767M: Antti Palosaari <crope@iki.fi>
3768L: linux-media@vger.kernel.org
3769W: http://linuxtv.org/
3770W: http://palosaari.fi/linux/
3771Q: http://patchwork.linuxtv.org/project/linux-media/list/
3772T: git git://linuxtv.org/anttip/media_tree.git
3773S: Maintained
3774F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
3775
3776DVB_USB_V2 MEDIA DRIVER
3777M: Antti Palosaari <crope@iki.fi>
3778L: linux-media@vger.kernel.org
3779W: http://linuxtv.org/
3780W: http://palosaari.fi/linux/
3781Q: http://patchwork.linuxtv.org/project/linux-media/list/
3782T: git git://linuxtv.org/anttip/media_tree.git
3783S: Maintained
3784F: drivers/media/usb/dvb-usb-v2/dvb_usb*
3785F: drivers/media/usb/dvb-usb-v2/usb_urb.c
3786
Jason Baronac0ac382011-08-11 14:36:43 -04003787DYNAMIC DEBUG
Joe Perches5c4a97d2013-07-31 13:53:32 -07003788M: Jason Baron <jbaron@akamai.com>
Jason Baronac0ac382011-08-11 14:36:43 -04003789S: Maintained
3790F: lib/dynamic_debug.c
3791F: include/linux/dynamic_debug.h
3792
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08003793DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003794M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08003795S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003796F: drivers/tty/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08003797
Moritz Fischerf17effb2015-01-10 14:10:59 -08003798E3X0 POWER BUTTON DRIVER
3799M: Moritz Fischer <moritz.fischer@ettus.com>
3800L: usrp-users@lists.ettus.com
3801W: http://www.ettus.com
3802S: Supported
3803F: drivers/input/misc/e3x0-button.c
3804F: Documentation/devicetree/bindings/input/e3x0-button.txt
3805
Antti Palosaari91952bc2012-10-01 12:28:46 -03003806E4000 MEDIA DRIVER
3807M: Antti Palosaari <crope@iki.fi>
3808L: linux-media@vger.kernel.org
3809W: http://linuxtv.org/
3810W: http://palosaari.fi/linux/
3811Q: http://patchwork.linuxtv.org/project/linux-media/list/
3812T: git git://linuxtv.org/anttip/media_tree.git
3813S: Maintained
3814F: drivers/media/tuners/e4000*
3815
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003817M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818L: linux-scsi@vger.kernel.org
3819S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003820F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821
Antti Palosaari91952bc2012-10-01 12:28:46 -03003822EC100 MEDIA DRIVER
3823M: Antti Palosaari <crope@iki.fi>
3824L: linux-media@vger.kernel.org
3825W: http://linuxtv.org/
3826W: http://palosaari.fi/linux/
3827Q: http://patchwork.linuxtv.org/project/linux-media/list/
3828T: git git://linuxtv.org/anttip/media_tree.git
3829S: Maintained
3830F: drivers/media/dvb-frontends/ec100*
3831
Michael Halcrow237fead2006-10-04 02:16:22 -07003832ECRYPT FILE SYSTEM
Tyler Hicks0de9adf2011-11-05 09:04:47 -04003833M: Tyler Hicks <tyhicks@canonical.com>
Tyler Hicksa058bfb2011-05-27 11:47:59 -05003834L: ecryptfs@vger.kernel.org
Dustin Kirkland24a923e2013-05-31 10:41:43 -05003835W: http://ecryptfs.org
Michael Halcrow6dc75162008-12-15 13:54:17 -08003836W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07003837S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003838F: Documentation/filesystems/ecryptfs.txt
3839F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07003840
Alan Coxda9bb1d2006-01-18 17:44:13 -08003841EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07003842M: Doug Thompson <dougthompson@xmission.com>
Borislav Petkovaa15aa02014-03-03 15:38:17 -08003843M: Borislav Petkov <bp@alien8.de>
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02003844M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003845L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08003846W: bluesmoke.sourceforge.net
Borislav Petkov7a859512015-02-06 17:46:07 +01003847T: git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git#for-next
3848T: git://git.kernel.org/pub/linux/kernel/git/mchehab/linux-edac.git#linux_next
Doug Thompson8c2a6a42006-06-30 01:56:09 -07003849S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003850F: Documentation/edac.txt
Chris Metcalf91445c72012-03-31 09:46:03 -04003851F: drivers/edac/
Joe Perches679655d2009-04-07 20:44:32 -07003852F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08003853
Borislav Petkovc476c232009-05-20 20:31:58 +02003854EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07003855M: Doug Thompson <dougthompson@xmission.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01003856M: Borislav Petkov <bp@alien8.de>
Chris Metcalf91445c72012-03-31 09:46:03 -04003857L: linux-edac@vger.kernel.org
Borislav Petkovc476c232009-05-20 20:31:58 +02003858W: bluesmoke.sourceforge.net
Borislav Petkov487ba8e2012-10-29 18:40:10 +01003859S: Maintained
Borislav Petkovc476c232009-05-20 20:31:58 +02003860F: drivers/edac/amd64_edac*
3861
Robert Richter836dae52013-10-18 09:24:52 +02003862EDAC-CALXEDA
3863M: Doug Thompson <dougthompson@xmission.com>
3864M: Robert Richter <rric@kernel.org>
3865L: linux-edac@vger.kernel.org
3866W: bluesmoke.sourceforge.net
3867S: Maintained
3868F: drivers/edac/highbank*
3869
Ralf Baechlef65aad42012-10-17 00:39:09 +02003870EDAC-CAVIUM
3871M: Ralf Baechle <ralf@linux-mips.org>
3872M: David Daney <david.daney@cavium.com>
3873L: linux-edac@vger.kernel.org
3874L: linux-mips@linux-mips.org
3875W: bluesmoke.sourceforge.net
3876S: Supported
3877F: drivers/edac/octeon_edac*
3878
Dave Peterson0e438e32006-03-26 01:38:55 -08003879EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07003880M: Mark Gross <mark.gross@intel.com>
3881M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003882L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08003883W: bluesmoke.sourceforge.net
3884S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003885F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08003886
3887EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07003888M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003889L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08003890W: bluesmoke.sourceforge.net
3891S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003892F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08003893
Mauro Carvalho Chehab77c5f5d2013-02-15 06:11:57 -03003894EDAC-GHES
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02003895M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab77c5f5d2013-02-15 06:11:57 -03003896L: linux-edac@vger.kernel.org
3897W: bluesmoke.sourceforge.net
3898S: Maintained
Joe Perches2caa67a2013-09-11 14:23:40 -07003899F: drivers/edac/ghes_edac.c
Mauro Carvalho Chehab77c5f5d2013-02-15 06:11:57 -03003900
Douglas Thompson6bc78402007-07-19 01:50:12 -07003901EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07003902M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003903L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07003904W: bluesmoke.sourceforge.net
3905S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003906F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07003907
3908EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07003909M: Jason Uhlenkott <juhlenko@akamai.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003910L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07003911W: bluesmoke.sourceforge.net
3912S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003913F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07003914
3915EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07003916M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003917L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07003918W: bluesmoke.sourceforge.net
3919S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003920F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07003921
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08003922EDAC-I5400
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02003923M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03003924L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08003925W: bluesmoke.sourceforge.net
3926S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003927F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08003928
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03003929EDAC-I7300
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02003930M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03003931L: linux-edac@vger.kernel.org
3932W: bluesmoke.sourceforge.net
3933S: Maintained
3934F: drivers/edac/i7300_edac.c
3935
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03003936EDAC-I7CORE
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02003937M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03003938L: linux-edac@vger.kernel.org
3939W: bluesmoke.sourceforge.net
3940S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03003941F: drivers/edac/i7core_edac.c
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03003942
Douglas Thompsonba9a5912007-07-19 01:50:32 -07003943EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07003944M: Ranganathan Desikan <ravi@jetztechnologies.com>
Arvind R25527882011-01-21 23:13:37 +05303945M: "Arvind R." <arvino55@gmail.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003946L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07003947W: bluesmoke.sourceforge.net
3948S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003949F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07003950
Jason Baron791b4702014-07-09 21:13:11 +00003951EDAC-IE31200
3952M: Jason Baron <jbaron@akamai.com>
3953L: linux-edac@vger.kernel.org
3954W: bluesmoke.sourceforge.net
3955S: Maintained
3956F: drivers/edac/ie31200_edac.c
3957
Johannes Thumshirnccdfb972013-11-17 19:25:12 +01003958EDAC-MPC85XX
Johannes Thumshirn30c74692015-05-07 10:21:24 +02003959M: Johannes Thumshirn <morbidrsa@gmail.com>
Johannes Thumshirnccdfb972013-11-17 19:25:12 +01003960L: linux-edac@vger.kernel.org
3961W: bluesmoke.sourceforge.net
3962S: Maintained
3963F: drivers/edac/mpc85xx_edac.[ch]
3964
Douglas Thompsonba9a5912007-07-19 01:50:32 -07003965EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07003966M: Egor Martovetsky <egor@pasemi.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003967L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07003968W: bluesmoke.sourceforge.net
3969S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003970F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07003971
Dave Peterson0e438e32006-03-26 01:38:55 -08003972EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07003973M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003974L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08003975W: bluesmoke.sourceforge.net
3976S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003977F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08003978
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02003979EDAC-SBRIDGE
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02003980M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02003981L: linux-edac@vger.kernel.org
3982W: bluesmoke.sourceforge.net
3983S: Maintained
3984F: drivers/edac/sb_edac.c
3985
Loc Ho995e1de2015-05-22 17:32:57 -06003986EDAC-XGENE
3987APPLIED MICRO (APM) X-GENE SOC EDAC
3988M: Loc Ho <lho@apm.com>
3989S: Supported
3990F: drivers/edac/xgene_edac.c
3991F: Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
3992
Clemens Ladischaf399172011-01-10 16:32:54 +01003993EDIROL UA-101/UA-1000 DRIVER
3994M: Clemens Ladisch <clemens@ladisch.de>
3995L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3996T: git git://git.alsa-project.org/alsa-kernel.git
3997S: Maintained
3998F: sound/usb/misc/ua101.c
3999
Matt Fleming1f7df952012-10-03 10:04:02 +01004000EXTENSIBLE FIRMWARE INTERFACE (EFI)
4001M: Matt Fleming <matt.fleming@intel.com>
4002L: linux-efi@vger.kernel.org
Matt Fleming78bef242012-10-08 11:33:05 +01004003T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
Matt Fleming1f7df952012-10-03 10:04:02 +01004004S: Maintained
Joe Perchesfb2efb52014-08-08 14:25:01 -07004005F: Documentation/efi-stub.txt
Matt Fleming1f7df952012-10-03 10:04:02 +01004006F: arch/ia64/kernel/efi.c
4007F: arch/x86/boot/compressed/eboot.[ch]
4008F: arch/x86/include/asm/efi.h
4009F: arch/x86/platform/efi/*
Tom Gundersena9499fa2013-02-08 15:37:06 +00004010F: drivers/firmware/efi/*
Matt Fleming1f7df952012-10-03 10:04:02 +01004011F: include/linux/efi*.h
4012
Matt Flemingd68772b2013-02-08 16:27:24 +00004013EFI VARIABLE FILESYSTEM
4014M: Matthew Garrett <matthew.garrett@nebula.com>
4015M: Jeremy Kerr <jk@ozlabs.org>
4016M: Matt Fleming <matt.fleming@intel.com>
4017T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4018L: linux-efi@vger.kernel.org
4019S: Maintained
4020F: fs/efivarfs/
4021
Peter Jones85a00d92010-09-22 13:05:04 -07004022EFIFB FRAMEBUFFER DRIVER
4023L: linux-fbdev@vger.kernel.org
4024M: Peter Jones <pjones@redhat.com>
4025S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09004026F: drivers/video/fbdev/efifb.c
Peter Jones85a00d92010-09-22 13:05:04 -07004027
Josh Triplett0bee8d22006-07-30 03:03:58 -07004028EFS FILESYSTEM
4029W: http://aeschi.ch.eu.org/efs/
4030S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004031F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07004032
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004033EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004034M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
4035M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004036L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07004037S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004038F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07004039
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07004040EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
Thadeu Lima de Souza Cascardo34b19012011-10-13 09:56:19 +00004041M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07004042L: netdev@vger.kernel.org
4043S: Maintained
Jeff Kirsher9aa32832011-05-13 14:29:12 -07004044F: drivers/net/ethernet/ibm/ehea/
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07004045
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02004046EM28XX VIDEO4LINUX DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02004047M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02004048L: linux-media@vger.kernel.org
4049W: http://linuxtv.org
4050T: git git://linuxtv.org/media_tree.git
4051S: Maintained
4052F: drivers/media/usb/em28xx/
4053
David Woodhouse3e3a7d62008-05-01 04:34:46 -07004054EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07004055M: Paul Gortmaker <paul.gortmaker@windriver.com>
4056M: Matt Mackall <mpm@selenic.com>
4057M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07004058L: linux-embedded@vger.kernel.org
4059S: Maintained
4060
James Smart32505872015-05-15 13:10:58 -04004061EMULEX/AVAGO LPFC FC/FCOE SCSI DRIVER
4062M: James Smart <james.smart@avagotech.com>
4063M: Dick Kennedy <dick.kennedy@avagotech.com>
Jim Cromiece00f852006-11-30 04:49:44 +01004064L: linux-scsi@vger.kernel.org
James Smart32505872015-05-15 13:10:58 -04004065W: http://www.avagotech.com
Jim Cromiece00f852006-11-30 04:49:44 +01004066S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004067F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04004068
Michał Mirosław5f5bac82009-05-22 20:33:59 +02004069ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004070M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02004071S: Maintained
4072F: drivers/misc/cb710/
4073F: drivers/mmc/host/cb710-mmc.*
4074F: include/linux/cb710.h
4075
Maxim Levitsky931e39a2010-07-31 11:59:26 -03004076ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
4077M: Maxim Levitsky <maximlevitsky@gmail.com>
4078S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07004079F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03004080
Gavin Shanec207dc2013-06-28 21:12:14 +08004081ENHANCED ERROR HANDLING (EEH)
4082M: Gavin Shan <shangw@linux.vnet.ibm.com>
4083L: linuxppc-dev@lists.ozlabs.org
4084S: Supported
4085F: Documentation/powerpc/eeh-pci-error-recovery.txt
4086F: arch/powerpc/kernel/eeh*.c
4087
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07004088EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004089M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07004090S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07004091T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Jingoo Han8a61f012014-07-01 15:36:01 +09004092F: drivers/video/fbdev/s1d13xxxfb.c
Joe Perches679655d2009-04-07 20:44:32 -07004093F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07004094
Mark Einon38df6492014-09-30 22:29:46 +01004095ET131X NETWORK DRIVER
4096M: Mark Einon <mark.einon@gmail.com>
4097S: Odd Fixes
4098F: drivers/net/ethernet/agere/
4099
Linus Torvalds1da177e2005-04-16 15:20:36 -07004100ETHERNET BRIDGE
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08004101M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07004102L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08004103L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00004104W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07004105S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004106F: include/linux/netfilter_bridge/
4107F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004108
Florian Fainelli22f08ad2014-02-18 09:47:49 -08004109ETHERNET PHY LIBRARY
4110M: Florian Fainelli <f.fainelli@gmail.com>
4111L: netdev@vger.kernel.org
4112S: Maintained
4113F: include/linux/phy.h
4114F: include/linux/phy_fixed.h
4115F: drivers/net/phy/
4116F: Documentation/networking/phy.txt
4117F: drivers/of/of_mdio.c
4118F: drivers/of/of_net.c
4119
Linus Torvalds1da177e2005-04-16 15:20:36 -07004120EXT2 FILE SYSTEM
Jiri Slabyd8130622015-07-17 16:23:20 -07004121M: Jan Kara <jack@suse.com>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004122L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004123S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004124F: Documentation/filesystems/ext2.txt
4125F: fs/ext2/
4126F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004127
Erik Mouw72be2cc2006-12-06 20:40:49 -08004128EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004129M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02004130M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004131L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04004132W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004133Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004134S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004135F: Documentation/filesystems/ext4.txt
4136F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004137
Mimi Zoharc5532b02011-08-17 18:52:24 -04004138Extended Verification Module (EVM)
Mimi Zohar74dd7442014-02-27 08:44:45 -05004139M: Mimi Zohar <zohar@linux.vnet.ibm.com>
4140L: linux-ima-devel@lists.sourceforge.net
4141L: linux-security-module@vger.kernel.org
Mimi Zoharc5532b02011-08-17 18:52:24 -04004142S: Supported
4143F: security/integrity/evm/
4144
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09004145EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
4146M: MyungJoo Ham <myungjoo.ham@samsung.com>
4147M: Chanwoo Choi <cw00.choi@samsung.com>
4148L: linux-kernel@vger.kernel.org
Chanwoo Choi81df63a2013-09-28 15:04:37 +09004149T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09004150S: Maintained
4151F: drivers/extcon/
4152F: Documentation/extcon/
4153
Jingoo Hane2a75c42014-04-10 20:24:03 +09004154EXYNOS DP DRIVER
Jingoo Hanb7701752015-05-14 15:17:07 -07004155M: Jingoo Han <jingoohan1@gmail.com>
Jingoo Hane2a75c42014-04-10 20:24:03 +09004156L: dri-devel@lists.freedesktop.org
4157S: Maintained
4158F: drivers/gpu/drm/exynos/exynos_dp*
4159
Donghwa Lee33ad3912012-03-06 11:44:58 +09004160EXYNOS MIPI DISPLAY DRIVERS
4161M: Inki Dae <inki.dae@samsung.com>
4162M: Donghwa Lee <dh09.lee@samsung.com>
4163M: Kyungmin Park <kyungmin.park@samsung.com>
4164L: linux-fbdev@vger.kernel.org
4165S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09004166F: drivers/video/fbdev/exynos/exynos_mipi*
Donghwa Lee33ad3912012-03-06 11:44:58 +09004167F: include/video/exynos_mipi*
4168
Jean Delvaree53004e2006-01-09 23:26:14 +01004169F71805F HARDWARE MONITORING DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07004170M: Jean Delvare <jdelvare@suse.com>
Jean Delvaree53004e2006-01-09 23:26:14 +01004171L: lm-sensors@lm-sensors.org
4172S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004173F: Documentation/hwmon/f71805f
4174F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01004175
Michael Büscheea977e2012-04-02 12:14:32 -03004176FC0011 TUNER DRIVER
4177M: Michael Buesch <m@bues.ch>
4178L: linux-media@vger.kernel.org
4179S: Maintained
Mauro Carvalho Chehabccae7af2012-06-14 16:35:59 -03004180F: drivers/media/tuners/fc0011.h
4181F: drivers/media/tuners/fc0011.c
Michael Büscheea977e2012-04-02 12:14:32 -03004182
Antti Palosaari91952bc2012-10-01 12:28:46 -03004183FC2580 MEDIA DRIVER
4184M: Antti Palosaari <crope@iki.fi>
4185L: linux-media@vger.kernel.org
4186W: http://linuxtv.org/
4187W: http://palosaari.fi/linux/
4188Q: http://patchwork.linuxtv.org/project/linux-media/list/
4189T: git git://linuxtv.org/anttip/media_tree.git
4190S: Maintained
4191F: drivers/media/tuners/fc2580*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004192
Eric Paris88b2dbd2010-08-18 12:25:50 -04004193FANOTIFY
4194M: Eric Paris <eparis@redhat.com>
4195S: Maintained
4196F: fs/notify/fanotify/
4197F: include/linux/fanotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004198F: include/uapi/linux/fanotify.h
Eric Paris88b2dbd2010-08-18 12:25:50 -04004199
Linus Torvalds1da177e2005-04-16 15:20:36 -07004200FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004201M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004202W: http://www.farsite.co.uk/
4203S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004204F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004205
Akinobu Mitac5408b82007-04-23 14:41:20 -07004206FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004207M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07004208S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004209F: Documentation/fault-injection/
4210F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07004211
Noralf Trønnes053e5142015-01-23 19:29:07 +01004212FBTFT Framebuffer drivers
4213M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4214M: Noralf Trønnes <noralf@tronnes.org>
4215S: Maintained
4216F: drivers/staging/fbtft/
4217
Robert Lovecae727d2010-02-16 12:16:00 -08004218FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
Robert Love3bd746c2014-05-28 14:19:01 -07004219M: Vasu Dev <vasu.dev@intel.com>
Neil Hormanf4aaea62013-05-03 19:38:10 +00004220L: fcoe-devel@open-fcoe.org
Robert Lovecae727d2010-02-16 12:16:00 -08004221W: www.Open-FCoE.org
4222S: Supported
4223F: drivers/scsi/libfc/
4224F: drivers/scsi/fcoe/
4225F: include/scsi/fc/
4226F: include/scsi/libfc.h
4227F: include/scsi/libfcoe.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004228F: include/uapi/scsi/fc/
Robert Lovecae727d2010-02-16 12:16:00 -08004229
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004230FILE LOCKING (flock() and fcntl()/lockf())
Jeff Layton8c836fa2014-04-30 13:28:17 -04004231M: Jeff Layton <jlayton@poochiereds.net>
Joe Perches9c3646d2015-06-25 15:02:00 -07004232M: "J. Bruce Fields" <bfields@fieldses.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004233L: linux-fsdevel@vger.kernel.org
4234S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004235F: include/linux/fcntl.h
4236F: include/linux/fs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004237F: include/uapi/linux/fcntl.h
4238F: include/uapi/linux/fs.h
Joe Perches679655d2009-04-07 20:44:32 -07004239F: fs/fcntl.c
4240F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004241
4242FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07004243M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004244L: linux-fsdevel@vger.kernel.org
4245S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004246F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004247
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004248FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02004249M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004250L: lm-sensors@lm-sensors.org
4251S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07004252F: drivers/hwmon/f75375s.c
4253F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004254
Clemens Ladischa331b0c2011-05-25 09:48:48 +02004255FIREWIRE AUDIO DRIVERS
4256M: Clemens Ladisch <clemens@ladisch.de>
4257L: alsa-devel@alsa-project.org (moderated for non-subscribers)
4258T: git git://git.alsa-project.org/alsa-kernel.git
4259S: Maintained
4260F: sound/firewire/
4261
Stefan Richtereb86ec52012-11-03 09:25:20 +01004262FIREWIRE MEDIA DRIVERS (firedtv)
4263M: Stefan Richter <stefanr@s5r6.in-berlin.de>
4264L: linux-media@vger.kernel.org
4265L: linux1394-devel@lists.sourceforge.net
4266T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
4267S: Maintained
4268F: drivers/media/firewire/
4269
Chris Boota511ce32012-04-14 17:50:35 -07004270FIREWIRE SBP-2 TARGET
4271M: Chris Boot <bootc@bootc.net>
4272L: linux-scsi@vger.kernel.org
4273L: target-devel@vger.kernel.org
4274L: linux1394-devel@lists.sourceforge.net
4275T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
4276S: Maintained
4277F: drivers/target/sbp/
4278
Joe Perches7d2c86b2009-04-07 20:59:01 -07004279FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004280M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004281L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01004282W: http://ieee1394.wiki.kernel.org/
Stefan Richter2ca526b2011-12-20 21:23:28 +01004283T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004284S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004285F: drivers/firewire/
Stefan Richter8f06ce32012-12-17 16:00:07 -08004286F: include/linux/firewire.h
4287F: include/uapi/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02004288F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004289
4290FIRMWARE LOADER (request_firmware)
Ming Lei39e68082012-08-20 19:04:17 +08004291M: Ming Lei <ming.lei@canonical.com>
4292L: linux-kernel@vger.kernel.org
4293S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004294F: Documentation/firmware_class/
4295F: drivers/base/firmware*.c
4296F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004297
Philip J Kelleherf730e3d2013-06-18 14:43:58 -05004298FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
Philip J Kelleher9bb3c442013-02-27 09:24:59 -06004299M: Joshua Morris <josh.h.morris@us.ibm.com>
4300M: Philip Kelleher <pjk1939@linux.vnet.ibm.com>
4301S: Maintained
4302F: drivers/block/rsxx/
4303
Jiri Kosina8206f662012-05-18 13:52:29 +02004304FLOPPY DRIVER
Jiri Kosinae5f64502015-08-09 09:11:34 +02004305M: Jiri Kosina <jikos@kernel.org>
Jiri Kosina8206f662012-05-18 13:52:29 +02004306T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
4307S: Odd fixes
4308F: drivers/block/floppy.c
4309
Alessandro Rubini9c9f32e2013-06-12 09:13:25 +02004310FMC SUBSYSTEM
4311M: Alessandro Rubini <rubini@gnudd.com>
4312W: http://www.ohwr.org/projects/fmc-bus
4313S: Supported
4314F: drivers/fmc/
4315F: include/linux/fmc*.h
4316F: include/linux/ipmi-fru.h
4317K: fmc_d.*register
4318
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004319FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07004320M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07004321W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004322S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004323F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004324
4325FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004326L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00004327S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004328F: drivers/net/wan/dlci.c
4329F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004330
Linus Torvalds1da177e2005-04-16 15:20:36 -07004331FRAMEBUFFER LAYER
Jean-Christophe PLAGNIOL-VILLARD5489e942013-05-30 22:23:44 +02004332M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
4333M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004334L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004335W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09004336Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Jean-Christophe PLAGNIOL-VILLARD5489e942013-05-30 22:23:44 +02004337T: git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
Paul Mundt56be1412011-03-23 08:29:07 +09004338S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004339F: Documentation/fb/
Paul Mundtd958c622011-03-23 08:22:41 +09004340F: Documentation/devicetree/bindings/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09004341F: drivers/video/
4342F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07004343F: include/linux/fb.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004344F: include/uapi/video/
4345F: include/uapi/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004346
Timur Tabia57c1882012-10-16 17:33:42 -05004347FREESCALE DIU FRAMEBUFFER DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004348M: Timur Tabi <timur@tabi.org>
Timur Tabia57c1882012-10-16 17:33:42 -05004349L: linux-fbdev@vger.kernel.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004350S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09004351F: drivers/video/fbdev/fsl-diu-fb.*
Timur Tabia57c1882012-10-16 17:33:42 -05004352
Zhang Wei173acc72008-03-01 07:42:48 -07004353FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004354M: Li Yang <leoli@freescale.com>
4355M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004356L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07004357S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004358F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07004359
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02004360FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004361M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004362L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01004363L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02004364S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004365F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02004366
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01004367FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004368M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004369L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07004370L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01004371S: Maintained
Cesar Eduardo Barrosbad985a2013-01-04 15:35:28 -08004372F: include/linux/platform_data/video-imxfb.h
Jingoo Han8a61f012014-07-01 15:36:01 +09004373F: drivers/video/fbdev/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01004374
Han Xu4d8e2ce2015-01-16 03:29:17 +08004375FREESCALE QUAD SPI DRIVER
4376M: Han Xu <han.xu@freescale.com>
4377L: linux-mtd@lists.infradead.org
4378S: Maintained
4379F: drivers/mtd/spi-nor/fsl-quadspi.c
4380
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03004381FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004382M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
4383M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004384L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03004385L: netdev@vger.kernel.org
4386S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07004387F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07004388F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03004389
Timur Tabid9e9d822008-04-24 08:45:26 +10004390FREESCALE QUICC ENGINE LIBRARY
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004391L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004392S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004393F: arch/powerpc/sysdev/qe_lib/
4394F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10004395
Joe Perchesb55ef922009-10-26 16:49:46 -07004396FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004397M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07004398L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004399L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07004400S: Maintained
Joe Perchesfaf2e1d2014-08-08 14:26:18 -07004401F: drivers/usb/gadget/udc/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07004402
Li Yangbeaf53b2007-05-25 13:54:02 +08004403FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004404M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08004405L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004406L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08004407S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07004408F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08004409
Timur Tabid9e9d822008-04-24 08:45:26 +10004410FREESCALE QUICC ENGINE UCC UART DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004411M: Timur Tabi <timur@tabi.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004412L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004413S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004414F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10004415
4416FREESCALE SOC SOUND DRIVERS
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004417M: Timur Tabi <timur@tabi.org>
Mark Browndc859502014-08-07 10:47:24 +01004418M: Nicolin Chen <nicoleotsuka@gmail.com>
Xiubo Lib4b98292014-12-12 16:54:14 -08004419M: Xiubo Li <Xiubo.Lee@gmail.com>
Joe Perches93711662009-06-16 15:34:07 -07004420L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004421L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004422S: Maintained
Joe Perches69aefce2009-04-09 10:39:22 -07004423F: sound/soc/fsl/fsl*
Mark Browndc859502014-08-07 10:47:24 +01004424F: sound/soc/fsl/imx*
Joe Perches69aefce2009-04-09 10:39:22 -07004425F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10004426
J. German Rivera31c88962015-03-05 19:29:09 -06004427FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER
Joe Perches9c3646d2015-06-25 15:02:00 -07004428M: "J. German Rivera" <German.Rivera@freescale.com>
J. German Rivera31c88962015-03-05 19:29:09 -06004429L: linux-kernel@vger.kernel.org
4430S: Maintained
4431F: drivers/staging/fsl-mc/
4432
Linus Torvalds1da177e2005-04-16 15:20:36 -07004433FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004434M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004435W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
4436S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004437F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004438
Pavel Machek71038f52009-01-15 13:51:02 -08004439FREEZER
Rafael J. Wysocki49db1902013-10-09 01:47:53 +02004440M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Rafael J. Wysocki7fb06082014-03-20 03:34:47 +01004441M: Pavel Machek <pavel@ucw.cz>
WANG Congbf1c1382011-10-08 20:57:50 +02004442L: linux-pm@vger.kernel.org
Pavel Machek71038f52009-01-15 13:51:02 -08004443S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004444F: Documentation/power/freezing-of-tasks.txt
4445F: include/linux/freezer.h
4446F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08004447
Konrad Rzeszutek Wilk839a1f72012-04-16 17:06:35 -04004448FRONTSWAP API
4449M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4450L: linux-kernel@vger.kernel.org
4451S: Maintained
4452F: mm/frontswap.c
4453F: include/linux/frontswap.h
4454
David Howellsa5432f52009-04-20 15:46:45 +01004455FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07004456M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01004457L: linux-cachefs@redhat.com
4458S: Supported
4459F: Documentation/filesystems/caching/
4460F: fs/fscache/
4461F: include/linux/fscache*.h
4462
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09004463F2FS FILE SYSTEM
Jaegeuk Kim9b29d482014-05-30 08:20:08 +09004464M: Jaegeuk Kim <jaegeuk@kernel.org>
Jaegeuk Kimf6238a72014-05-31 01:00:49 +09004465M: Changman Lee <cm224.lee@samsung.com>
Chao Yu7b2a2462015-08-12 17:47:08 +08004466R: Chao Yu <chao2.yu@samsung.com>
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09004467L: linux-f2fs-devel@lists.sourceforge.net
4468W: http://en.wikipedia.org/wiki/F2FS
4469T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
4470S: Maintained
4471F: Documentation/filesystems/f2fs.txt
Jaegeuk Kim3bac3802014-01-09 21:00:06 +09004472F: Documentation/ABI/testing/sysfs-fs-f2fs
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09004473F: fs/f2fs/
4474F: include/linux/f2fs_fs.h
Chao Yu62d43ee2015-07-06 20:29:46 +08004475F: include/trace/events/f2fs.h
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09004476
David Howells5ab7ffe2007-04-10 15:10:45 +01004477FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07004478M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004479S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004480F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004481
Jonathan Woithe20b93732008-06-11 10:14:56 +09304482FUJITSU LAPTOP EXTRAS
Jonathan Woithe409a3e92012-03-27 13:01:01 +10304483M: Jonathan Woithe <jwoithe@just42.net>
Matthew Garrettd0944852010-02-11 10:40:13 -05004484L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09304485S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004486F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09304487
Heungjun Kim4da621b2011-11-11 08:05:33 -03004488FUJITSU M-5MO LS CAMERA ISP DRIVER
4489M: Kyungmin Park <kyungmin.park@samsung.com>
4490M: Heungjun Kim <riverful.kim@samsung.com>
4491L: linux-media@vger.kernel.org
4492S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004493F: drivers/media/i2c/m5mols/
Heungjun Kim4da621b2011-11-11 08:05:33 -03004494F: include/media/m5mols.h
4495
Robert Gerlach2d24c492012-01-18 14:26:22 +01004496FUJITSU TABLET EXTRAS
4497M: Robert Gerlach <khnz@gmx.de>
4498L: platform-driver-x86@vger.kernel.org
4499S: Maintained
4500F: drivers/platform/x86/fujitsu-tablet.c
4501
Miklos Szeredi04578f12005-09-09 13:10:22 -07004502FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07004503M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07004504L: fuse-devel@lists.sourceforge.net
4505W: http://fuse.sourceforge.net/
Miklos Szeredi0a30f612015-07-01 17:10:36 +02004506T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
Miklos Szeredi04578f12005-09-09 13:10:22 -07004507S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004508F: fs/fuse/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004509F: include/uapi/linux/fuse.h
Miklos Szeredi0a30f612015-07-01 17:10:36 +02004510F: Documentation/filesystems/fuse.txt
Miklos Szeredi04578f12005-09-09 13:10:22 -07004511
Linus Torvalds1da177e2005-04-16 15:20:36 -07004512FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07004513M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004514L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02004515S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07004516F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004517
Peter Oberparleiterd8e21622013-10-16 13:46:49 -07004518GCOV BASED KERNEL PROFILING
4519M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
4520S: Maintained
4521F: kernel/gcov/
4522F: Documentation/gcov.txt
4523
Linus Torvalds1da177e2005-04-16 15:20:36 -07004524GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004525M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004526L: linux-scsi@vger.kernel.org
4527W: http://www.icp-vortex.com/
4528S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004529F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004530
Jan Kiszka158daf12015-02-17 13:47:49 -08004531GDB KERNEL DEBUGGING HELPER SCRIPTS
4532M: Jan Kiszka <jan.kiszka@siemens.com>
4533S: Supported
4534F: scripts/gdb/
4535
Hans Verkuil3169a1c2012-11-23 07:11:58 -03004536GEMTEK FM RADIO RECEIVER DRIVER
4537M: Hans Verkuil <hverkuil@xs4all.nl>
4538L: linux-media@vger.kernel.org
4539T: git git://linuxtv.org/media_tree.git
4540W: http://linuxtv.org
4541S: Maintained
4542F: drivers/media/radio/radio-gemtek*
4543
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02004544GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07004545M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02004546S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004547F: drivers/i2c/busses/i2c-gpio.c
4548F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02004549
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01004550GENERIC GPIO I2C MULTIPLEXER DRIVER
4551M: Peter Korsgaard <peter.korsgaard@barco.com>
4552L: linux-i2c@vger.kernel.org
4553S: Supported
Jean Delvaree7065e22012-04-28 15:32:06 +02004554F: drivers/i2c/muxes/i2c-mux-gpio.c
4555F: include/linux/i2c-mux-gpio.h
4556F: Documentation/i2c/muxes/i2c-mux-gpio
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01004557
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004558GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004559M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004560W: http://www.kernel.org/pub/linux/utils/net/hdlc/
4561S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004562F: drivers/net/wan/c101.c
4563F: drivers/net/wan/hd6457*
4564F: drivers/net/wan/hdlc*
4565F: drivers/net/wan/n2.c
4566F: drivers/net/wan/pc300too.c
4567F: drivers/net/wan/pci200syn.c
4568F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004569
Arnd Bergmann1527aab2009-06-14 22:46:16 +02004570GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07004571M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02004572L: linux-arch@vger.kernel.org
4573T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
4574S: Maintained
Joe Perches14430812013-09-11 14:23:50 -07004575F: include/asm-generic/
4576F: include/uapi/asm-generic/
Arnd Bergmann1527aab2009-06-14 22:46:16 +02004577
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +05304578GENERIC PHY FRAMEWORK
4579M: Kishon Vijay Abraham I <kishon@ti.com>
4580L: linux-kernel@vger.kernel.org
4581T: git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
4582S: Supported
4583F: drivers/phy/
4584F: include/linux/phy/
4585
Kevin Hilmaneea97ae2015-03-12 10:33:46 -07004586GENERIC PM DOMAINS
4587M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
4588M: Kevin Hilman <khilman@kernel.org>
4589M: Ulf Hansson <ulf.hansson@linaro.org>
4590L: linux-pm@vger.kernel.org
4591S: Supported
4592F: drivers/base/power/domain*.c
4593F: include/linux/pm_domain.h
4594
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03004595GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07004596M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03004597L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03004598S: Supported
4599F: drivers/uio/uio_pci_generic.c
4600
Joe Perchesf8f1ec72014-06-04 16:05:31 -07004601GET_MAINTAINER SCRIPT
4602M: Joe Perches <joe@perches.com>
4603S: Maintained
4604F: scripts/get_maintainer.pl
4605
Steven Whitehouse5be7b502006-04-28 11:27:32 -04004606GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004607M: Steven Whitehouse <swhiteho@redhat.com>
Bob Peterson28666d62015-02-13 11:23:11 -06004608M: Bob Peterson <rpeterso@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04004609L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04004610W: http://sources.redhat.com/cluster/
Bob Peterson28666d62015-02-13 11:23:11 -06004611T: git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04004612S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004613F: Documentation/filesystems/gfs2*.txt
4614F: fs/gfs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004615F: include/uapi/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04004616
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08004617GIGASET ISDN DRIVERS
Tilman Schmidt6b096fd2015-05-02 19:23:22 +02004618M: Paul Bolle <pebolle@tiscali.nl>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08004619L: gigaset307x-common@lists.sourceforge.net
4620W: http://gigaset307x.sourceforge.net/
Tilman Schmidt6b096fd2015-05-02 19:23:22 +02004621S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004622F: Documentation/isdn/README.gigaset
4623F: drivers/isdn/gigaset/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004624F: include/uapi/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08004625
Joe Perches7eea35f2014-07-30 05:09:23 -03004626GO7007 MPEG CODEC
4627M: Hans Verkuil <hans.verkuil@cisco.com>
4628L: linux-media@vger.kernel.org
4629S: Maintained
4630F: drivers/media/usb/go7007/
4631
Bastien Noceraca96ea82014-10-31 09:26:16 -07004632GOODIX TOUCHSCREEN
4633M: Bastien Nocera <hadess@hadess.net>
4634L: linux-input@vger.kernel.org
4635S: Maintained
4636F: drivers/input/touchscreen/goodix.c
4637
Grant Likelya0dc00b2011-02-12 01:48:14 -07004638GPIO SUBSYSTEM
Linus Walleije4651a92012-08-06 09:52:52 +02004639M: Linus Walleij <linus.walleij@linaro.org>
Linus Walleijf2fa75c2013-12-10 09:43:09 +01004640M: Alexandre Courbot <gnurou@gmail.com>
Alexandre Courbotd15b7172013-05-26 11:50:54 +09004641L: linux-gpio@vger.kernel.org
Linus Walleijf2fa75c2013-12-10 09:43:09 +01004642T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
4643S: Maintained
4644F: Documentation/gpio/
Grant Likelya0dc00b2011-02-12 01:48:14 -07004645F: drivers/gpio/
Alexandre Courbotbdc6e952014-08-04 13:06:58 +09004646F: include/linux/gpio/
4647F: include/linux/gpio.h
Yang Bai9b692342012-10-04 17:12:35 -07004648F: include/asm-generic/gpio.h
Grant Likelya0dc00b2011-02-12 01:48:14 -07004649
Harry Wei71a6d0a2011-05-11 15:13:33 -07004650GRE DEMULTIPLEXER DRIVER
4651M: Dmitry Kozlov <xeb@mail.ru>
4652L: netdev@vger.kernel.org
4653S: Maintained
Joe Perches11c26772013-09-11 14:23:48 -07004654F: net/ipv4/gre_demux.c
4655F: net/ipv4/gre_offload.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07004656F: include/net/gre.h
4657
Kristoffer Glembod4c41132010-02-15 03:33:44 +00004658GRETH 10/100/1G Ethernet MAC device driver
4659M: Kristoffer Glembo <kristoffer@gaisler.com>
4660L: netdev@vger.kernel.org
4661S: Maintained
Joe Perchesa31a96a2012-01-10 15:08:58 -08004662F: drivers/net/ethernet/aeroflex/
Kristoffer Glembod4c41132010-02-15 03:33:44 +00004663
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004664GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004665M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004666L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004667T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004668S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004669F: drivers/media/usb/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004670
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03004671GSPCA GL860 SUBDRIVER
4672M: Olivier Lorin <o.lorin@laposte.net>
4673L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004674T: git git://linuxtv.org/media_tree.git
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03004675S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004676F: drivers/media/usb/gspca/gl860/
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03004677
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004678GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004679M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004680L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004681T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004682S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004683F: drivers/media/usb/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004684
4685GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004686M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004687L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004688T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004689S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004690F: drivers/media/usb/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004691
Brian Johnson261982f2009-07-19 15:58:56 -03004692GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03004693M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03004694L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004695T: git git://linuxtv.org/media_tree.git
Brian Johnson261982f2009-07-19 15:58:56 -03004696S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004697F: drivers/media/usb/gspca/sn9c20x.c
Brian Johnson261982f2009-07-19 15:58:56 -03004698
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004699GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004700M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004701L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004702T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004703S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004704F: drivers/media/usb/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004705
4706GSPCA USB WEBCAM DRIVER
Jean-Francois Moinefc3f9062012-05-24 07:29:41 -03004707M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004708L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004709T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004710S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004711F: drivers/media/usb/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004712
Davidlohr Bueso584ec972013-12-18 17:08:55 -08004713GUID PARTITION TABLE (GPT)
Andrew Morton4f973c62015-06-25 15:02:05 -07004714M: Davidlohr Bueso <dave@stgolabs.net>
Davidlohr Bueso584ec972013-12-18 17:08:55 -08004715L: linux-efi@vger.kernel.org
4716S: Maintained
4717F: block/partitions/efi.*
4718
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03004719STK1160 USB VIDEO CAPTURE DRIVER
Ezequiel Garcia3259aa52015-03-10 11:43:20 -03004720M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03004721L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004722T: git git://linuxtv.org/media_tree.git
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03004723S: Maintained
4724F: drivers/media/usb/stk1160/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004725
Yoshinori Sato4e456b82015-03-11 01:41:38 +09004726H8/300 ARCHITECTURE
4727M: Yoshinori Sato <ysato@users.sourceforge.jp>
Geert Uytterhoevenb992c762015-07-17 16:23:55 -07004728L: uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
Yoshinori Sato4e456b82015-03-11 01:41:38 +09004729W: http://uclinux-h8.sourceforge.jp
4730T: git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
4731S: Maintained
4732F: arch/h8300/
4733F: drivers/clocksource/h8300_*.c
4734F: drivers/clk/h8300/
4735F: drivers/irqchip/irq-renesas-h8*.c
4736
Harry Wei71a6d0a2011-05-11 15:13:33 -07004737HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
4738M: Frank Seidel <frank@f-seidel.de>
4739L: platform-driver-x86@vger.kernel.org
4740W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
4741S: Maintained
4742F: drivers/platform/x86/hdaps.c
4743
Hans Verkuil48fc9e22013-04-11 03:36:49 -03004744HDPVR USB VIDEO ENCODER DRIVER
4745M: Hans Verkuil <hverkuil@xs4all.nl>
4746L: linux-media@vger.kernel.org
4747T: git git://linuxtv.org/media_tree.git
4748W: http://linuxtv.org
4749S: Odd Fixes
Joe Perches14430812013-09-11 14:23:50 -07004750F: drivers/media/usb/hdpvr/
Hans Verkuil48fc9e22013-04-11 03:36:49 -03004751
Harry Wei71a6d0a2011-05-11 15:13:33 -07004752HWPOISON MEMORY FAILURE HANDLING
Andi Kleenf9625c42014-06-04 16:05:32 -07004753M: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
Harry Wei71a6d0a2011-05-11 15:13:33 -07004754L: linux-mm@kvack.org
Harry Wei71a6d0a2011-05-11 15:13:33 -07004755S: Maintained
4756F: mm/memory-failure.c
4757F: mm/hwpoison-inject.c
4758
4759HYPERVISOR VIRTUAL CONSOLE DRIVER
4760L: linuxppc-dev@lists.ozlabs.org
4761S: Odd Fixes
4762F: drivers/tty/hvc/
4763
Antti Palosaarie5ab1472014-09-10 04:20:15 -03004764HACKRF MEDIA DRIVER
4765M: Antti Palosaari <crope@iki.fi>
4766L: linux-media@vger.kernel.org
4767W: http://linuxtv.org/
4768W: http://palosaari.fi/linux/
4769Q: http://patchwork.linuxtv.org/project/linux-media/list/
4770T: git git://linuxtv.org/anttip/media_tree.git
4771S: Maintained
4772F: drivers/media/usb/hackrf/
4773
Michael Buesch844dd052006-06-26 00:24:59 -07004774HARDWARE MONITORING
Jiri Slabyd8130622015-07-17 16:23:20 -07004775M: Jean Delvare <jdelvare@suse.com>
Guenter Roeckca462082012-06-01 23:28:23 -07004776M: Guenter Roeck <linux@roeck-us.net>
Robert Love860e1d62005-08-31 23:57:59 -04004777L: lm-sensors@lm-sensors.org
4778W: http://www.lm-sensors.org/
Jean Delvarea94ef4e2015-04-27 16:37:39 +02004779T: quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07004780T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02004781S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01004782F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07004783F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01004784F: include/linux/hwmon*.h
Robert Love860e1d62005-08-31 23:57:59 -04004785
4786HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07004787M: Matt Mackall <mpm@selenic.com>
4788M: Herbert Xu <herbert@gondor.apana.org.au>
Michael S. Tsirkin3eda71672015-01-16 09:16:00 +02004789L: linux-crypto@vger.kernel.org
Joe Perchesc0d07872009-09-23 15:57:17 -07004790S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07004791F: Documentation/hw_random.txt
4792F: drivers/char/hw_random/
4793F: include/linux/hw_random.h
Robert Love860e1d62005-08-31 23:57:59 -04004794
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03004795HARDWARE SPINLOCK CORE
4796M: Ohad Ben-Cohen <ohad@wizery.com>
4797S: Maintained
4798F: Documentation/hwspinlock.txt
4799F: drivers/hwspinlock/hwspinlock_*
4800F: include/linux/hwspinlock.h
4801
Linus Torvalds1da177e2005-04-16 15:20:36 -07004802HARMONY SOUND DRIVER
Kyle McMartinac6aecb2007-12-03 22:04:34 +00004803L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004804S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004805F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004806
Antti Palosaari91952bc2012-10-01 12:28:46 -03004807HD29L2 MEDIA DRIVER
4808M: Antti Palosaari <crope@iki.fi>
4809L: linux-media@vger.kernel.org
4810W: http://linuxtv.org/
4811W: http://palosaari.fi/linux/
4812Q: http://patchwork.linuxtv.org/project/linux-media/list/
4813T: git git://linuxtv.org/anttip/media_tree.git
4814S: Maintained
4815F: drivers/media/dvb-frontends/hd29l2*
4816
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004817HEWLETT-PACKARD SMART2 RAID DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004818L: iss_storagedev@hp.com
Michael Opdenackeraf9f1b32014-10-13 15:51:28 -07004819S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004820F: Documentation/blockdev/cpqarray.txt
4821F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004822
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05004823HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Don Brace693373d2014-10-15 22:32:41 +00004824M: Don Brace <don.brace@pmcs.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05004825L: iss_storagedev@hp.com
Don Brace693373d2014-10-15 22:32:41 +00004826L: storagedev@pmcs.com
4827L: linux-scsi@vger.kernel.org
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05004828S: Supported
4829F: Documentation/scsi/hpsa.txt
4830F: drivers/scsi/hpsa*.[ch]
4831F: include/linux/cciss*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004832F: include/uapi/linux/cciss*.h
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05004833
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004834HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Don Brace693373d2014-10-15 22:32:41 +00004835M: Don Brace <don.brace@pmcs.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004836L: iss_storagedev@hp.com
Don Brace693373d2014-10-15 22:32:41 +00004837L: storagedev@pmcs.com
4838L: linux-scsi@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004839S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004840F: Documentation/blockdev/cciss.txt
4841F: drivers/block/cciss*
4842F: include/linux/cciss_ioctl.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004843F: include/uapi/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004844
Linus Torvalds1da177e2005-04-16 15:20:36 -07004845HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02004846L: linux-fsdevel@vger.kernel.org
4847S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004848F: Documentation/filesystems/hfs.txt
4849F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004850
Geert Uytterhoevenef575f42014-01-23 15:54:21 -08004851HFSPLUS FILESYSTEM
4852L: linux-fsdevel@vger.kernel.org
4853S: Orphan
4854F: Documentation/filesystems/hfsplus.txt
4855F: fs/hfsplus/
4856
Linus Torvalds1da177e2005-04-16 15:20:36 -07004857HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004858M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004859L: linux-nvidia@lists.surfsouth.com
4860W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
4861S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09004862F: drivers/video/fbdev/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004863
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004864HIBERNATION (aka Software Suspend, aka swsusp)
Rafael J. Wysocki49db1902013-10-09 01:47:53 +02004865M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Rafael J. Wysocki7fb06082014-03-20 03:34:47 +01004866M: Pavel Machek <pavel@ucw.cz>
WANG Congbf1c1382011-10-08 20:57:50 +02004867L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004868S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004869F: arch/x86/power/
4870F: drivers/base/power/
4871F: kernel/power/
4872F: include/linux/suspend.h
4873F: include/linux/freezer.h
4874F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07004875F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004876
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01004877HID CORE LAYER
Jiri Kosinae5f64502015-08-09 09:11:34 +02004878M: Jiri Kosina <jikos@kernel.org>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04004879L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004880T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01004881S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004882F: drivers/hid/
4883F: include/linux/hid*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004884F: include/uapi/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01004885
Srinivas Pandruvada30ee72f2015-05-15 11:35:38 -07004886HID SENSOR HUB DRIVERS
Jiri Kosinae5f64502015-08-09 09:11:34 +02004887M: Jiri Kosina <jikos@kernel.org>
Srinivas Pandruvada30ee72f2015-05-15 11:35:38 -07004888M: Jonathan Cameron <jic23@kernel.org>
4889M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
4890L: linux-input@vger.kernel.org
4891L: linux-iio@vger.kernel.org
4892S: Maintained
4893F: Documentation/hid/hid-sensor*
4894F: drivers/hid/hid-sensor-*
4895F: drivers/iio/*/hid-*
4896F: include/linux/hid-sensor-*
4897
Ingo Molnar38bed542007-02-22 09:09:34 +01004898HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07004899M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar981c3a42014-01-21 10:59:20 +01004900L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004901T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Ingo Molnar38bed542007-02-22 09:09:34 +01004902S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004903F: Documentation/timers/
Thomas Gleixner5cee9642014-06-22 12:06:40 +02004904F: kernel/time/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01004905F: kernel/time/clockevents.c
4906F: kernel/time/tick*.*
4907F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07004908F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07004909F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01004910
Linus Torvalds1da177e2005-04-16 15:20:36 -07004911HIGH-SPEED SCC DRIVER FOR AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -07004912L: linux-hams@vger.kernel.org
Uwe Kleine-König8b64f2a2012-05-29 15:07:11 -07004913S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004914F: drivers/net/hamradio/dmascc.c
4915F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004916
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08004917HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004918M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08004919W: http://www.highpoint-tech.com
4920S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004921F: Documentation/scsi/hptiop.txt
4922F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08004923
Linus Torvalds1da177e2005-04-16 15:20:36 -07004924HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07004925M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004926L: linux-hippi@sunsite.dk
4927S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004928F: include/linux/hippidevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004929F: include/uapi/linux/if_hippi.h
Joe Perches679655d2009-04-07 20:44:32 -07004930F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07004931F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004932
Jouni Malinenff1d2762005-05-12 22:54:16 -04004933HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004934M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07004935L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07004936L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04004937W: http://hostap.epitest.fi/
4938S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004939F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04004940
Carlos Corbachodd8cd772008-02-05 02:17:15 +00004941HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05004942L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01004943S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004944F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00004945
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004946HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07004947M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004948S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07004949F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004950
Joe Perches7d2c86b2009-04-07 20:59:01 -07004951HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07004952M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08004953S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004954F: Documentation/timers/hpet.txt
4955F: drivers/char/hpet.c
4956F: include/linux/hpet.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004957F: include/uapi/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08004958
Jiri Kosinae07b5d72010-03-18 10:59:57 +01004959HPET: x86
Joe Perches9e06f632014-04-03 14:48:53 -07004960S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004961F: arch/x86/kernel/hpet.c
4962F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08004963
Linus Torvalds1da177e2005-04-16 15:20:36 -07004964HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004965M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004966W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
4967S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004968F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004969
Sebastian Reichel3441cde2013-11-27 10:17:22 +01004970HSI SUBSYSTEM
Sebastian Reichel56459ea2014-03-28 19:57:59 +01004971M: Sebastian Reichel <sre@kernel.org>
4972T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
Sebastian Reichel3441cde2013-11-27 10:17:22 +01004973S: Maintained
4974F: Documentation/ABI/testing/sysfs-bus-hsi
Sebastian Reichel56459ea2014-03-28 19:57:59 +01004975F: Documentation/hsi.txt
Sebastian Reichel3441cde2013-11-27 10:17:22 +01004976F: drivers/hsi/
4977F: include/linux/hsi/
4978F: include/uapi/linux/hsi/
4979
Joe Perches7d2c86b2009-04-07 20:59:01 -07004980HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004981M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00004982W: http://www.pharscape.org
4983S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004984F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00004985
Arvid Brodin19990e22013-11-29 23:36:00 +01004986HSR NETWORK PROTOCOL
4987M: Arvid Brodin <arvid.brodin@alten.se>
4988L: netdev@vger.kernel.org
4989S: Maintained
4990F: net/hsr/
4991
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04004992HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004993M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04004994L: linux-input@vger.kernel.org
4995S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004996F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04004997
Linus Torvalds1da177e2005-04-16 15:20:36 -07004998HUGETLB FILESYSTEM
Nadia Yvette Chambers6d49e352012-12-06 10:39:54 +01004999M: Nadia Yvette Chambers <nyc@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005000S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005001F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005002
K. Y. Srinivasan05183182011-12-01 14:31:30 -08005003Hyper-V CORE AND DRIVERS
Joe Perches9c3646d2015-06-25 15:02:00 -07005004M: "K. Y. Srinivasan" <kys@microsoft.com>
K. Y. Srinivasan05183182011-12-01 14:31:30 -08005005M: Haiyang Zhang <haiyangz@microsoft.com>
5006L: devel@linuxdriverproject.org
5007S: Maintained
Haiyang Zhanga4162742013-05-09 14:34:55 -07005008F: arch/x86/include/asm/mshyperv.h
5009F: arch/x86/include/uapi/asm/hyperv.h
5010F: arch/x86/kernel/cpu/mshyperv.c
K. Y. Srinivasan05183182011-12-01 14:31:30 -08005011F: drivers/hid/hid-hyperv.c
Haiyang Zhanga4162742013-05-09 14:34:55 -07005012F: drivers/hv/
Haiyang Zhangf92ca802013-11-21 14:32:10 -08005013F: drivers/input/serio/hyperv-keyboard.c
K. Y. Srinivasan05183182011-12-01 14:31:30 -08005014F: drivers/net/hyperv/
Haiyang Zhanga4162742013-05-09 14:34:55 -07005015F: drivers/scsi/storvsc_drv.c
Jingoo Han8a61f012014-07-01 15:36:01 +09005016F: drivers/video/fbdev/hyperv_fb.c
Haiyang Zhanga4162742013-05-09 14:34:55 -07005017F: include/linux/hyperv.h
5018F: tools/hv/
Dexuan Cui54bf7252015-08-05 00:52:45 -07005019F: Documentation/ABI/stable/sysfs-bus-vmbus
K. Y. Srinivasan05183182011-12-01 14:31:30 -08005020
Jean Delvared85c8a6a2012-11-13 22:27:19 +01005021I2C OVER PARALLEL PORT
Jiri Slabyd8130622015-07-17 16:23:20 -07005022M: Jean Delvare <jdelvare@suse.com>
Jean Delvared85c8a6a2012-11-13 22:27:19 +01005023L: linux-i2c@vger.kernel.org
5024S: Maintained
5025F: Documentation/i2c/busses/i2c-parport
5026F: Documentation/i2c/busses/i2c-parport-light
5027F: drivers/i2c/busses/i2c-parport.c
5028F: drivers/i2c/busses/i2c-parport-light.c
5029
5030I2C/SMBUS CONTROLLER DRIVERS FOR PC
Jiri Slabyd8130622015-07-17 16:23:20 -07005031M: Jean Delvare <jdelvare@suse.com>
Jean Delvared85c8a6a2012-11-13 22:27:19 +01005032L: linux-i2c@vger.kernel.org
5033S: Maintained
5034F: Documentation/i2c/busses/i2c-ali1535
5035F: Documentation/i2c/busses/i2c-ali1563
5036F: Documentation/i2c/busses/i2c-ali15x3
5037F: Documentation/i2c/busses/i2c-amd756
5038F: Documentation/i2c/busses/i2c-amd8111
5039F: Documentation/i2c/busses/i2c-i801
5040F: Documentation/i2c/busses/i2c-nforce2
5041F: Documentation/i2c/busses/i2c-piix4
5042F: Documentation/i2c/busses/i2c-sis5595
5043F: Documentation/i2c/busses/i2c-sis630
5044F: Documentation/i2c/busses/i2c-sis96x
5045F: Documentation/i2c/busses/i2c-via
5046F: Documentation/i2c/busses/i2c-viapro
5047F: drivers/i2c/busses/i2c-ali1535.c
5048F: drivers/i2c/busses/i2c-ali1563.c
5049F: drivers/i2c/busses/i2c-ali15x3.c
5050F: drivers/i2c/busses/i2c-amd756.c
5051F: drivers/i2c/busses/i2c-amd756-s4882.c
5052F: drivers/i2c/busses/i2c-amd8111.c
5053F: drivers/i2c/busses/i2c-i801.c
5054F: drivers/i2c/busses/i2c-isch.c
5055F: drivers/i2c/busses/i2c-nforce2.c
5056F: drivers/i2c/busses/i2c-nforce2-s4985.c
5057F: drivers/i2c/busses/i2c-piix4.c
5058F: drivers/i2c/busses/i2c-sis5595.c
5059F: drivers/i2c/busses/i2c-sis630.c
5060F: drivers/i2c/busses/i2c-sis96x.c
5061F: drivers/i2c/busses/i2c-via.c
5062F: drivers/i2c/busses/i2c-viapro.c
5063
Neil Hormancb7f07a2013-02-10 11:59:03 -05005064I2C/SMBUS ISMT DRIVER
5065M: Seth Heasley <seth.heasley@intel.com>
5066M: Neil Horman <nhorman@tuxdriver.com>
5067L: linux-i2c@vger.kernel.org
5068F: drivers/i2c/busses/i2c-ismt.c
5069F: Documentation/i2c/busses/i2c-ismt
5070
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005071I2C/SMBUS STUB DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07005072M: Jean Delvare <jdelvare@suse.com>
Jean Delvare846557d2008-10-30 15:55:47 +01005073L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005074S: Maintained
Cesar Eduardo Barros8547a5b2012-12-16 21:11:54 +01005075F: drivers/i2c/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005076
Jean Delvare5b543962005-08-15 19:51:02 +02005077I2C SUBSYSTEM
Wolfram Sang14d77c42013-02-08 20:54:40 +01005078M: Wolfram Sang <wsa@the-dreams.de>
Jean Delvare846557d2008-10-30 15:55:47 +01005079L: linux-i2c@vger.kernel.org
Wolfram Sang9d4ea272014-04-02 20:25:59 +02005080W: https://i2c.wiki.kernel.org/
5081Q: https://patchwork.ozlabs.org/project/linux-i2c/list/
Wolfram Sang14d77c42013-02-08 20:54:40 +01005082T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005083S: Maintained
Wolfram Sang40ed1b42014-12-08 10:53:13 +01005084F: Documentation/devicetree/bindings/i2c/
Joe Perches679655d2009-04-07 20:44:32 -07005085F: Documentation/i2c/
5086F: drivers/i2c/
5087F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01005088F: include/linux/i2c-*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005089F: include/uapi/linux/i2c.h
5090F: include/uapi/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005091
Wolfram Sang4560d672014-08-19 10:08:35 -05005092I2C ACPI SUPPORT
5093M: Mika Westerberg <mika.westerberg@linux.intel.com>
5094L: linux-i2c@vger.kernel.org
5095L: linux-acpi@vger.kernel.org
5096S: Maintained
Wolfram Sang4560d672014-08-19 10:08:35 -05005097
Jean Delvared85c8a6a2012-11-13 22:27:19 +01005098I2C-TAOS-EVM DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07005099M: Jean Delvare <jdelvare@suse.com>
Jean Delvared85c8a6a2012-11-13 22:27:19 +01005100L: linux-i2c@vger.kernel.org
5101S: Maintained
5102F: Documentation/i2c/busses/i2c-taos-evm
5103F: drivers/i2c/busses/i2c-taos-evm.c
5104
Till Harbaume8c76ee2007-05-01 23:26:35 +02005105I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005106M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01005107L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07005108W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02005109S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005110F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02005111
Linus Torvalds1da177e2005-04-16 15:20:36 -07005112i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07005113M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005114S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005115F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005116
5117i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07005118M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07005119T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005120S: Maintained
5121
Linus Torvalds1da177e2005-04-16 15:20:36 -07005122IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07005123M: Tony Luck <tony.luck@intel.com>
5124M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005125L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07005126T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005127S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005128F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005129
Leonidas Da Silva Barbosa4cd38752015-08-08 18:29:27 -03005130IBM Power VMX Cryptographic instructions
5131M: Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
Paulo Flabiano Smorigo5cd01fe2015-08-10 16:14:17 -03005132M: Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
Leonidas Da Silva Barbosa4cd38752015-08-08 18:29:27 -03005133L: linux-crypto@vger.kernel.org
5134S: Supported
5135F: drivers/crypto/vmx/Makefile
5136F: drivers/crypto/vmx/Kconfig
5137F: drivers/crypto/vmx/vmx.c
5138F: drivers/crypto/vmx/aes*
5139F: drivers/crypto/vmx/ghash*
5140F: drivers/crypto/vmx/ppc-xlate.pl
5141
Kent Yoder956c2032012-09-07 04:17:01 +08005142IBM Power in-Nest Crypto Acceleration
Leonidas Da Silva Barbosa4cd38752015-08-08 18:29:27 -03005143M: Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
Paulo Flabiano Smorigo5cd01fe2015-08-10 16:14:17 -03005144M: Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
Kent Yoder956c2032012-09-07 04:17:01 +08005145L: linux-crypto@vger.kernel.org
5146S: Supported
Dan Streetman28bceea2015-06-18 12:28:32 -04005147F: drivers/crypto/nx/Makefile
5148F: drivers/crypto/nx/Kconfig
5149F: drivers/crypto/nx/nx-aes*
5150F: drivers/crypto/nx/nx-sha*
5151F: drivers/crypto/nx/nx.*
5152F: drivers/crypto/nx/nx_csbcpb.h
5153F: drivers/crypto/nx/nx_debugfs.h
Kent Yoder956c2032012-09-07 04:17:01 +08005154
Seth Jennings0e16aaf2012-07-19 09:42:40 -05005155IBM Power 842 compression accelerator
Dan Streetman41656aa2015-07-29 19:50:46 -04005156M: Dan Streetman <ddstreet@ieee.org>
Seth Jennings0e16aaf2012-07-19 09:42:40 -05005157S: Supported
Dan Streetman28bceea2015-06-18 12:28:32 -04005158F: drivers/crypto/nx/Makefile
5159F: drivers/crypto/nx/Kconfig
Dan Streetman7011a122015-05-07 13:49:17 -04005160F: drivers/crypto/nx/nx-842*
Dan Streetman2da572c2015-05-07 13:49:14 -04005161F: include/linux/sw842.h
Dan Streetman2062c5b2015-05-07 13:49:15 -04005162F: crypto/842.c
Dan Streetman2da572c2015-05-07 13:49:14 -04005163F: lib/842/
Seth Jennings0e16aaf2012-07-19 09:42:40 -05005164
Linus Torvalds1da177e2005-04-16 15:20:36 -07005165IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07005166M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005167S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005168F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005169
Santiago Leon9d348af2010-09-03 18:29:53 +00005170IBM Power Virtual Ethernet Device Driver
Thomas Falconeddd63a2015-01-09 14:29:40 -06005171M: Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
Santiago Leon9d348af2010-09-03 18:29:53 +00005172L: netdev@vger.kernel.org
5173S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07005174F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00005175
Nathan Fontenote6babec2014-04-09 13:32:06 -05005176IBM Power Virtual SCSI Device Drivers
Tyrel Datwylerbcbde522015-01-12 16:31:34 -08005177M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
Robert Jennings4b7652c2012-07-31 12:34:36 -05005178L: linux-scsi@vger.kernel.org
5179S: Supported
Nathan Fontenote6babec2014-04-09 13:32:06 -05005180F: drivers/scsi/ibmvscsi/ibmvscsi*
5181F: drivers/scsi/ibmvscsi/viosrp.h
5182
5183IBM Power Virtual FC Device Drivers
Tyrel Datwyler44b4dad2015-01-12 16:31:35 -08005184M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
Nathan Fontenote6babec2014-04-09 13:32:06 -05005185L: linux-scsi@vger.kernel.org
5186S: Supported
5187F: drivers/scsi/ibmvscsi/ibmvfc*
Robert Jennings4b7652c2012-07-31 12:34:36 -05005188
Linus Torvalds1da177e2005-04-16 15:20:36 -07005189IBM ServeRAID RAID DRIVER
Michael Opdenackerf9213e72014-08-08 14:23:50 -07005190S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005191F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005192
Peter Tyser6ed9f9c2012-04-18 09:48:24 -05005193ICH LPC AND GPIO DRIVER
5194M: Peter Tyser <ptyser@xes-inc.com>
5195S: Maintained
5196F: drivers/mfd/lpc_ich.c
5197F: drivers/gpio/gpio-ich.c
5198
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01005199IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005200M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005201L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005202Q: http://patchwork.ozlabs.org/project/linux-ide/list/
Joe Perches08deed12012-03-23 15:01:57 -07005203T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005204S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005205F: Documentation/ide/
5206F: drivers/ide/
5207F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005208
Ike Panhc6cb8c132011-08-25 22:28:45 +08005209IDEAPAD LAPTOP EXTRAS DRIVER
5210M: Ike Panhc <ike.pan@canonical.com>
5211L: platform-driver-x86@vger.kernel.org
5212W: http://launchpad.net/ideapad-laptop
5213S: Maintained
5214F: drivers/platform/x86/ideapad-laptop.c
5215
Andrey Moiseev1ea4c162013-08-25 22:51:15 -07005216IDEAPAD LAPTOP SLIDEBAR DRIVER
5217M: Andrey Moiseev <o2g.org.ru@gmail.com>
5218L: linux-input@vger.kernel.org
5219W: https://github.com/o2genum/ideapad-slidebar
5220S: Maintained
5221F: drivers/input/misc/ideapad_slidebar.c
5222
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02005223IDE/ATAPI DRIVERS
Borislav Petkov487ba8e2012-10-29 18:40:10 +01005224M: Borislav Petkov <bp@alien8.de>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01005225L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01005226S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005227F: Documentation/cdrom/ide-cd
5228F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005229
Andy Henroid27471fd2008-10-09 11:45:22 -07005230IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07005231M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02005232L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07005233S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005234F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07005235
Sergey Lapin02cf2282009-06-08 12:18:50 +00005236IEEE 802.15.4 SUBSYSTEM
Alexander Aringb6e195f2014-07-03 23:13:19 +02005237M: Alexander Aring <alex.aring@gmail.com>
Varka Bhadramebef9c12014-08-08 17:32:45 +05305238L: linux-wpan@vger.kernel.org
5239W: https://github.com/linux-wpan
5240T: git git://github.com/linux-wpan/linux-wpan-next.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00005241S: Maintained
5242F: net/ieee802154/
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00005243F: net/mac802154/
Cesar Eduardo Barros251741b2013-01-04 15:35:30 -08005244F: drivers/net/ieee802154/
Alexander Aring580947d2014-10-25 09:41:05 +02005245F: include/linux/nl802154.h
5246F: include/linux/ieee802154.h
5247F: include/net/nl802154.h
5248F: include/net/mac802154.h
5249F: include/net/af_ieee802154.h
5250F: include/net/cfg802154.h
5251F: include/net/ieee802154_netdev.h
Varka Bhadramebef9c12014-08-08 17:32:45 +05305252F: Documentation/networking/ieee802154.txt
Sergey Lapin02cf2282009-06-08 12:18:50 +00005253
Sean Youngb1c97192014-10-23 17:58:22 -03005254IGORPLUG-USB IR RECEIVER
5255M: Sean Young <sean@mess.org>
5256L: linux-media@vger.kernel.org
5257S: Maintained
5258F: drivers/media/rc/igorplugusb.c
5259
Sean Young40ad4a32012-11-19 10:32:53 -03005260IGUANAWORKS USB IR TRANSCEIVER
5261M: Sean Young <sean@mess.org>
5262L: linux-media@vger.kernel.org
5263S: Maintained
5264F: drivers/media/rc/iguanair.c
5265
Ameya Palande9545f862012-01-10 09:00:58 -08005266IIO SUBSYSTEM AND DRIVERS
Sachin Kamat030a13d2013-09-11 11:00:00 +01005267M: Jonathan Cameron <jic23@kernel.org>
Lars-Peter Clausenf0d61162014-08-18 09:29:00 +01005268R: Hartmut Knaack <knaack.h@gmx.de>
5269R: Lars-Peter Clausen <lars@metafoo.de>
5270R: Peter Meerwald <pmeerw@pmeerw.net>
Ameya Palande9545f862012-01-10 09:00:58 -08005271L: linux-iio@vger.kernel.org
5272S: Maintained
Lars-Peter Clausen03e7c252012-04-26 13:46:42 +02005273F: drivers/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08005274F: drivers/staging/iio/
Daniel Baluta8fe671f2014-11-13 15:19:47 -08005275F: include/linux/iio/
Roberta Dobrescu817020c2015-02-26 10:49:25 +02005276F: tools/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08005277
Stanislaw Gruszka65519262011-01-08 15:19:40 +01005278IKANOS/ADI EAGLE ADSL USB DRIVER
5279M: Matthieu Castet <castet.matthieu@free.fr>
5280M: Stanislaw Gruszka <stf_xl@wp.pl>
5281S: Maintained
5282F: drivers/usb/atm/ueagle-atm.c
5283
Guenter Roecke89ab512013-03-08 08:13:09 -08005284INA209 HARDWARE MONITOR DRIVER
5285M: Guenter Roeck <linux@roeck-us.net>
5286L: lm-sensors@lm-sensors.org
5287S: Maintained
5288F: Documentation/hwmon/ina209
5289F: Documentation/devicetree/bindings/i2c/ina209.txt
5290F: drivers/hwmon/ina209.c
5291
5292INA2XX HARDWARE MONITOR DRIVER
5293M: Guenter Roeck <linux@roeck-us.net>
5294L: lm-sensors@lm-sensors.org
5295S: Maintained
5296F: Documentation/hwmon/ina2xx
5297F: drivers/hwmon/ina2xx.c
5298F: include/linux/platform_data/ina2xx.h
5299
Samuel Iglesias Gonsalvez14dc1242012-11-16 16:19:59 +01005300INDUSTRY PACK SUBSYSTEM (IPACK)
5301M: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
5302M: Jens Taprogge <jens.taprogge@taprogge.org>
5303M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5304L: industrypack-devel@lists.sourceforge.net
5305W: http://industrypack.sourceforge.net
5306S: Maintained
5307F: drivers/ipack/
5308
Zubair Lutfullah Kakakhel8adc53f2015-03-18 16:16:37 +00005309INGENIC JZ4780 DMA Driver
5310M: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
5311S: Maintained
5312F: drivers/dma/dma-jz4780.c
5313
Mimi Zoharaa7168f2009-02-04 09:07:03 -05005314INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Mimi Zohar74dd7442014-02-27 08:44:45 -05005315M: Mimi Zohar <zohar@linux.vnet.ibm.com>
Dmitry Kasatkinbfd33c42015-01-15 14:18:18 +02005316M: Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
Mimi Zohar74dd7442014-02-27 08:44:45 -05005317L: linux-ima-devel@lists.sourceforge.net
5318L: linux-ima-user@lists.sourceforge.net
5319L: linux-security-module@vger.kernel.org
Mimi Zoharaa7168f2009-02-04 09:07:03 -05005320S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005321F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05005322
James Hogan9a4ea5a2014-11-17 09:17:49 -03005323IMGTEC IR DECODER DRIVER
5324M: James Hogan <james.hogan@imgtec.com>
5325S: Maintained
5326F: drivers/media/rc/img-ir/
5327
Linus Torvalds1da177e2005-04-16 15:20:36 -07005328IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005329L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09005330S: Orphan
Jingoo Han8a61f012014-07-01 15:36:01 +09005331F: drivers/video/fbdev/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005332
5333INFINIBAND SUBSYSTEM
Doug Ledfordb6b2bbe2015-05-05 12:57:09 -04005334M: Doug Ledford <dledford@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005335M: Sean Hefty <sean.hefty@intel.com>
5336M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07005337L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07005338W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08005339Q: http://patchwork.kernel.org/project/linux-rdma/list/
Doug Ledford2936ae02015-05-11 21:03:36 -04005340T: git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005341S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005342F: Documentation/infiniband/
5343F: drivers/infiniband/
Doug Ledford2dfcad32015-08-27 14:18:57 -04005344F: drivers/staging/rdma/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005345F: include/uapi/linux/if_infiniband.h
Yann Droneaud954138d2015-05-04 14:31:03 +02005346F: include/uapi/rdma/
5347F: include/rdma/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005348
Robert Lovec9f04f52005-07-15 12:21:07 -04005349INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07005350M: John McCutchan <john@johnmccutchan.com>
5351M: Robert Love <rlove@rlove.org>
5352M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04005353S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005354F: Documentation/filesystems/inotify.txt
5355F: fs/notify/inotify/
5356F: include/linux/inotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005357F: include/uapi/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04005358
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005359INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005360M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005361L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005362Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07005363T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005364S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005365F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07005366F: include/linux/input.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005367F: include/uapi/linux/input.h
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07005368F: include/linux/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005369
Henrik Rydberg3267a872010-06-24 19:10:40 -07005370INPUT MULTITOUCH (MT) PROTOCOL
Henrik Rydberg75dd1122015-01-08 14:32:21 -08005371M: Henrik Rydberg <rydberg@bitmath.org>
Henrik Rydberg3267a872010-06-24 19:10:40 -07005372L: linux-input@vger.kernel.org
Henrik Rydberg75dd1122015-01-08 14:32:21 -08005373S: Odd fixes
Henrik Rydberg3267a872010-06-24 19:10:40 -07005374F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01005375F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07005376K: \b(ABS|SYN)_MT_
5377
Jie Yang97fa99a2015-02-02 16:55:27 +08005378INTEL ASoC BDW/HSW DRIVERS
5379M: Jie Yang <yang.jie@linux.intel.com>
Jim Davise5747e42015-06-25 15:01:58 -07005380L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Jie Yang97fa99a2015-02-02 16:55:27 +08005381S: Supported
Joe Perchese8e12252015-06-30 14:59:39 -07005382F: sound/soc/intel/common/sst-dsp*
5383F: sound/soc/intel/common/sst-firmware.c
5384F: sound/soc/intel/boards/broadwell.c
5385F: sound/soc/intel/haswell/
Jie Yang97fa99a2015-02-02 16:55:27 +08005386
Dave Jiang4ac13e12011-07-29 17:16:55 -07005387INTEL C600 SERIES SAS CONTROLLER DRIVER
5388M: Intel SCU Linux support <intel-linux-scu@intel.com>
Lukasz Doraufdc58132014-04-07 15:39:58 -07005389M: Artur Paszkiewicz <artur.paszkiewicz@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07005390L: linux-scsi@vger.kernel.org
Dave Jiang71068912012-09-25 15:24:56 -07005391T: git git://git.code.sf.net/p/intel-sas/isci
5392S: Supported
Dave Jiang4ac13e12011-07-29 17:16:55 -07005393F: drivers/scsi/isci/
Dave Jiang4ac13e12011-07-29 17:16:55 -07005394
Len Brown26717172010-03-08 14:07:30 -05005395INTEL IDLE DRIVER
5396M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02005397L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005398T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05005399S: Supported
5400F: drivers/idle/intel_idle.c
5401
Kristen Carlson Accardi7c1ac182014-12-15 15:58:24 -08005402INTEL PSTATE DRIVER
5403M: Kristen Carlson Accardi <kristen@linux.intel.com>
5404L: linux-pm@vger.kernel.org
5405S: Supported
5406F: drivers/cpufreq/intel_pstate.c
5407
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005408INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08005409M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005410L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005411S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005412F: Documentation/fb/intelfb.txt
Jingoo Han8a61f012014-07-01 15:36:01 +09005413F: drivers/video/fbdev/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005414
Linus Torvalds1da177e2005-04-16 15:20:36 -07005415INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005416M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005417L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005418S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09005419F: drivers/video/fbdev/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005420
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05305421INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005422M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05005423L: platform-driver-x86@vger.kernel.org
Rafael J. Wysocki5ca92bd2013-10-10 23:03:44 +02005424W: https://01.org/linux-acpi
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05305425S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005426F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05305427
Linus Torvalds1da177e2005-04-16 15:20:36 -07005428INTEL IA32 MICROCODE UPDATE SUPPORT
Borislav Petkovca68a522015-03-29 15:54:13 +02005429M: Borislav Petkov <bp@alien8.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005430S: Maintained
Joe Perches73d425f2014-08-08 14:24:57 -07005431F: arch/x86/kernel/cpu/microcode/core*
5432F: arch/x86/kernel/cpu/microcode/intel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005433
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07005434INTEL I/OAT DMA DRIVER
Dave Jiang18ebd562013-10-22 15:29:20 -07005435M: Dave Jiang <dave.jiang@intel.com>
Dan Williams08223d82014-08-19 06:07:56 -07005436R: Dan Williams <dan.j.williams@intel.com>
Dave Jiang18ebd562013-10-22 15:29:20 -07005437L: dmaengine@vger.kernel.org
5438Q: https://patchwork.kernel.org/project/linux-dmaengine/list/
5439S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005440F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07005441
David Woodhouse6c8909b2008-10-18 16:12:17 +01005442INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07005443M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01005444L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07005445T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01005446S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07005447F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07005448F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01005449
Dan Williamsb3e5f262007-08-07 10:26:35 -07005450INTEL IOP-ADMA DMA DRIVER
Dan Williams08223d82014-08-19 06:07:56 -07005451R: Dan Williams <dan.j.williams@intel.com>
Dan Williams1dd83722012-08-15 19:20:02 -07005452S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07005453F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07005454
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01005455INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Krzysztof Hałasa5529c2c2014-09-30 10:32:58 +02005456M: Krzysztof Halasa <khalasa@piap.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01005457S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005458F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
5459F: arch/arm/mach-ixp4xx/include/mach/npe.h
5460F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
5461F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07005462F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07005463F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01005464
Michael Buesch844dd052006-06-26 00:24:59 -07005465INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005466M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07005467S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005468F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07005469
Jeff Kirsher2f302322015-03-25 17:01:03 -07005470INTEL ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005471M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Jeff Kirsher2f302322015-03-25 17:01:03 -07005472R: Jesse Brandeburg <jesse.brandeburg@intel.com>
5473R: Shannon Nelson <shannon.nelson@intel.com>
5474R: Carolyn Wyborny <carolyn.wyborny@intel.com>
5475R: Don Skidmore <donald.c.skidmore@intel.com>
5476R: Matthew Vick <matthew.vick@intel.com>
5477R: John Ronciak <john.ronciak@intel.com>
5478R: Mitch Williams <mitch.a.williams@intel.com>
5479L: intel-wired-lan@lists.osuosl.org
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00005480W: http://www.intel.com/support/feedback.htm
Auke Kokd94e6fe2008-03-03 14:37:47 -08005481W: http://e1000.sourceforge.net/
Jeff Kirsher2f302322015-03-25 17:01:03 -07005482Q: http://patchwork.ozlabs.org/project/intel-wired-lan/list/
5483T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
5484T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005485S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00005486F: Documentation/networking/e100.txt
5487F: Documentation/networking/e1000.txt
5488F: Documentation/networking/e1000e.txt
5489F: Documentation/networking/igb.txt
5490F: Documentation/networking/igbvf.txt
5491F: Documentation/networking/ixgb.txt
5492F: Documentation/networking/ixgbe.txt
5493F: Documentation/networking/ixgbevf.txt
Jesse Brandeburg1bff6522013-09-11 08:40:23 +00005494F: Documentation/networking/i40e.txt
Greg Rose105bf2f2013-12-21 06:13:16 +00005495F: Documentation/networking/i40evf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07005496F: drivers/net/ethernet/intel/
Joe Perchesbc90d292014-02-25 13:35:53 -08005497F: drivers/net/ethernet/intel/*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005498
Linus Walleij0963d59b2013-10-19 15:39:17 +02005499INTEL-MID GPIO DRIVER
5500M: David Cohen <david.a.cohen@linux.intel.com>
5501L: linux-gpio@vger.kernel.org
5502S: Maintained
5503F: drivers/gpio/gpio-intel-mid.c
5504
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04005505INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
5506M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07005507L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04005508S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005509F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07005510F: Documentation/networking/README.ipw2200
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04005511F: drivers/net/wireless/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06005512
Shane Wang4bd96a72010-03-10 14:36:10 +08005513INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
Gang Weie9b7d7c2012-09-17 14:08:59 -07005514M: Richard L Maliszewski <richard.l.maliszewski@intel.com>
5515M: Gang Wei <gang.wei@intel.com>
Shane Wang4bd96a72010-03-10 14:36:10 +08005516M: Shane Wang <shane.wang@intel.com>
5517L: tboot-devel@lists.sourceforge.net
5518W: http://tboot.sourceforge.net
Gang Weie9b7d7c2012-09-17 14:08:59 -07005519T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
Shane Wang4bd96a72010-03-10 14:36:10 +08005520S: Supported
5521F: Documentation/intel_txt.txt
5522F: include/linux/tboot.h
5523F: arch/x86/kernel/tboot.c
5524
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08005525INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07005526M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08005527M: linux-wimax@intel.com
Joe Perches49e7d9d2015-04-15 16:17:31 -07005528L: wimax@linuxwimax.org (subscribers-only)
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08005529S: Supported
5530W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07005531F: Documentation/wimax/README.i2400m
5532F: drivers/net/wimax/i2400m/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005533F: include/uapi/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08005534
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01005535INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
5536M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08005537L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01005538S: Supported
Wey-Yi Guyefa31442011-02-22 16:43:05 -08005539F: drivers/net/wireless/iwlegacy/
5540
Zhu Yib481de92007-09-25 17:54:57 -07005541INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07005542M: Johannes Berg <johannes.berg@intel.com>
Johannes Berg6161b022013-07-23 14:03:39 +02005543M: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07005544M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07005545L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07005546W: http://intellinuxwireless.org
Wey-Yi Guyb62ff7182011-09-22 15:14:49 -07005547T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07005548S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005549F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07005550
Tomas Winklerde8fe022012-05-09 16:39:02 +03005551INTEL MANAGEMENT ENGINE (mei)
5552M: Tomas Winkler <tomas.winkler@intel.com>
5553L: linux-kernel@vger.kernel.org
5554S: Supported
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005555F: include/uapi/linux/mei.h
Tomas Winkler5069288b2015-06-13 22:11:33 +03005556F: include/linux/mei_cl_bus.h
Tomas Winklerde8fe022012-05-09 16:39:02 +03005557F: drivers/misc/mei/*
Cesar Eduardo Barrose07950a2013-01-04 15:35:36 -08005558F: Documentation/misc-devices/mei/*
Tomas Winklerde8fe022012-05-09 16:39:02 +03005559
qipeng.zha0a8b8352015-06-27 00:32:15 +08005560INTEL PMC IPC DRIVER
5561M: Zha Qipeng<qipeng.zha@intel.com>
5562L: platform-driver-x86@vger.kernel.org
5563S: Maintained
5564F: drivers/platform/x86/intel_pmc_ipc.c
5565F: arch/x86/include/asm/intel_pmc_ipc.h
5566
Ralf Baechlecb109a02007-08-30 23:56:30 -07005567IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005568M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005569L: linux-mips@linux-mips.org
5570S: Maintained
Jeff Kirsher8862bf12011-05-20 07:50:27 -07005571F: drivers/net/ethernet/sgi/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005572
Ralf Baechlecb109a02007-08-30 23:56:30 -07005573IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005574M: Pat Gefre <pfg@sgi.com>
Ralf Baechled39e0722010-10-19 18:32:41 +01005575L: linux-serial@vger.kernel.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07005576S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08005577F: drivers/tty/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07005578
Stephen Warren0b6e8562013-09-13 13:10:27 -06005579IOMMU DRIVERS
5580M: Joerg Roedel <joro@8bytes.org>
5581L: iommu@lists.linux-foundation.org
5582T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
5583S: Maintained
5584F: drivers/iommu/
5585
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005586IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07005587M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005588S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005589F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005590
Francois Romieu1202d6f2007-09-17 17:13:55 -07005591IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005592M: Francois Romieu <romieu@fr.zoreil.com>
5593M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07005594L: netdev@vger.kernel.org
5595S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07005596F: drivers/net/ethernet/icplus/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07005597
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005598IPATH DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04005599M: Mike Marciniszyn <infinipath@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07005600L: linux-rdma@vger.kernel.org
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07005601S: Maintained
Dennis Dalessandro6f9b3892015-07-30 09:25:42 -04005602F: drivers/staging/rdma/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08005603
Corey Minyard4409ebe2006-04-20 02:43:12 -07005604IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005605M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08005606L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07005607W: http://openipmi.sourceforge.net/
5608S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005609F: Documentation/IPMI.txt
5610F: drivers/char/ipmi/
5611F: include/linux/ipmi*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005612F: include/uapi/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07005613
Kenneth Westfield2d800892015-03-03 16:21:50 -08005614QCOM AUDIO (ASoC) DRIVERS
5615M: Patrick Lai <plai@codeaurora.org>
5616M: Banajit Goswami <bgoswami@codeaurora.org>
5617L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5618S: Supported
5619F: sound/soc/qcom/
5620
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005621IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005622M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005623L: linux-scsi@vger.kernel.org
5624W: http://www.adaptec.com/
5625S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005626F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005627
5628IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07005629M: Wensong Zhang <wensong@linux-vs.org>
5630M: Simon Horman <horms@verge.net.au>
5631M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005632L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005633L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005634S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005635F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07005636F: include/net/ip_vs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005637F: include/uapi/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07005638F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005639
Randy Dunlape7839f22008-10-12 16:11:45 -07005640IPWIRELESS DRIVER
Jiri Kosinae5f64502015-08-09 09:11:34 +02005641M: Jiri Kosina <jikos@kernel.org>
Jiri Slabyd8130622015-07-17 16:23:20 -07005642M: David Sterba <dsterba@suse.com>
Jiri Kosina92094aa2011-11-13 21:41:00 +01005643S: Odd Fixes
Greg Kroah-Hartman282361a2011-02-22 16:23:22 -08005644F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01005645
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005646IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005647M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005648L: netdev@vger.kernel.org
5649S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005650F: include/net/ipx.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005651F: include/uapi/linux/ipx.h
Joe Perches679655d2009-04-07 20:44:32 -07005652F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005653
Linus Torvalds1da177e2005-04-16 15:20:36 -07005654IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005655M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07005656L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01005657L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005658W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07005659S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02005660T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07005661F: Documentation/networking/irda.txt
5662F: drivers/net/irda/
5663F: include/net/irda/
5664F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005665
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02005666IRQ SUBSYSTEM
5667M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar981c3a42014-01-21 10:59:20 +01005668L: linux-kernel@vger.kernel.org
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02005669S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005670T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02005671F: kernel/irq/
Jason Cooper2ed9fd22014-05-13 18:47:01 +00005672
5673IRQCHIP DRIVERS
5674M: Thomas Gleixner <tglx@linutronix.de>
5675M: Jason Cooper <jason@lakedaemon.net>
Thomas Gleixner54d9ffc2015-07-30 12:38:06 +02005676M: Marc Zyngier <marc.zyngier@arm.com>
Jason Cooper2ed9fd22014-05-13 18:47:01 +00005677L: linux-kernel@vger.kernel.org
5678S: Maintained
5679T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5680T: git git://git.infradead.org/users/jcooper/linux.git irqchip/core
Geert Uytterhoeven5b5a9062014-08-28 09:56:47 +02005681F: Documentation/devicetree/bindings/interrupt-controller/
Thomas Petazzoniedd96902012-10-28 10:05:40 +01005682F: drivers/irqchip/
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02005683
Grant Likely7ab3a832012-02-14 14:06:47 -07005684IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
Thomas Gleixnerb09dec22015-07-30 12:40:55 +02005685M: Jiang Liu <jiang.liu@linux.intel.com>
5686M: Marc Zyngier <marc.zyngier@arm.com>
Grant Likely7ab3a832012-02-14 14:06:47 -07005687S: Maintained
Thomas Gleixnerb09dec22015-07-30 12:40:55 +02005688T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Grant Likely7ab3a832012-02-14 14:06:47 -07005689F: Documentation/IRQ-domain.txt
5690F: include/linux/irqdomain.h
5691F: kernel/irq/irqdomain.c
Thomas Gleixnerb09dec22015-07-30 12:40:55 +02005692F: kernel/irq/msi.c
Grant Likely7ab3a832012-02-14 14:06:47 -07005693
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005694ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07005695M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005696S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005697F: Documentation/isapnp.txt
5698F: drivers/pnp/isapnp/
5699F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005700
Hans Verkuild39b8422012-11-23 07:07:02 -03005701ISA RADIO MODULE
5702M: Hans Verkuil <hverkuil@xs4all.nl>
5703L: linux-media@vger.kernel.org
5704T: git git://linuxtv.org/media_tree.git
5705W: http://linuxtv.org
5706S: Maintained
5707F: drivers/media/radio/radio-isa*
5708
Harry Wei71a6d0a2011-05-11 15:13:33 -07005709iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
5710M: Peter Jones <pjones@redhat.com>
5711M: Konrad Rzeszutek Wilk <konrad@kernel.org>
5712S: Maintained
5713F: drivers/firmware/iscsi_ibft*
5714
Mike Christie14816b12007-11-28 16:22:06 -08005715ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07005716M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b12007-11-28 16:22:06 -08005717L: open-iscsi@googlegroups.com
5718W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07005719T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b12007-11-28 16:22:06 -08005720S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005721F: drivers/scsi/*iscsi*
5722F: include/scsi/*iscsi*
Mike Christie14816b12007-11-28 16:22:06 -08005723
Or Gerlitz1e65eb42013-05-08 12:21:19 +00005724ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
5725M: Or Gerlitz <ogerlitz@mellanox.com>
Or Gerlitzb261aea2014-10-01 14:02:17 +03005726M: Sagi Grimberg <sagig@mellanox.com>
Or Gerlitz1e65eb42013-05-08 12:21:19 +00005727M: Roi Dayan <roid@mellanox.com>
5728L: linux-rdma@vger.kernel.org
5729S: Supported
5730W: http://www.openfabrics.org
5731W: www.open-iscsi.org
5732Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches14430812013-09-11 14:23:50 -07005733F: drivers/infiniband/ulp/iser/
Or Gerlitz1e65eb42013-05-08 12:21:19 +00005734
Sagi Grimberg2b70e5f2015-01-07 12:54:44 +02005735ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
5736M: Sagi Grimberg <sagig@mellanox.com>
5737T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
5738L: linux-rdma@vger.kernel.org
5739L: target-devel@vger.kernel.org
5740S: Supported
5741W: http://www.linux-iscsi.org
5742F: drivers/infiniband/ulp/isert
5743
Linus Torvalds1da177e2005-04-16 15:20:36 -07005744ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005745M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07005746L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07005747L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005748W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07005749T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005750S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005751F: Documentation/isdn/
5752F: drivers/isdn/
5753F: include/linux/isdn.h
5754F: include/linux/isdn/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005755F: include/uapi/linux/isdn.h
5756F: include/uapi/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005757
5758ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07005759M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07005760L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005761W: http://www.melware.de
5762S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005763F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005764
Jean Delvared6248702010-03-05 22:17:20 +01005765IT87 HARDWARE MONITORING DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07005766M: Jean Delvare <jdelvare@suse.com>
Jean Delvared6248702010-03-05 22:17:20 +01005767L: lm-sensors@lm-sensors.org
5768S: Maintained
5769F: Documentation/hwmon/it87
5770F: drivers/hwmon/it87.c
5771
Malcolm Priestley68620bd2012-11-04 19:16:31 +01005772IT913X MEDIA DRIVER
Antti Palosaarid7104bf2013-03-09 22:58:13 -03005773M: Antti Palosaari <crope@iki.fi>
5774L: linux-media@vger.kernel.org
5775W: http://linuxtv.org/
5776W: http://palosaari.fi/linux/
5777Q: http://patchwork.linuxtv.org/project/linux-media/list/
5778T: git git://linuxtv.org/anttip/media_tree.git
5779S: Maintained
Antti Palosaari249c6972014-09-01 19:44:59 -03005780F: drivers/media/tuners/it913x*
Antti Palosaarid7104bf2013-03-09 22:58:13 -03005781
Hans Verkuil91821ff2007-12-02 09:35:33 -03005782IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03005783M: Andy Walls <awalls@md.metrocast.net>
Joe Perches7b212ed2014-12-10 15:51:24 -08005784L: ivtv-devel@ivtvdriver.org (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005785L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005786T: git git://linuxtv.org/media_tree.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03005787W: http://www.ivtvdriver.org
5788S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005789F: Documentation/video4linux/*.ivtv
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005790F: drivers/media/pci/ivtv/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005791F: include/uapi/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03005792
Malcolm Priestley68620bd2012-11-04 19:16:31 +01005793IX2505V MEDIA DRIVER
5794M: Malcolm Priestley <tvboxspy@gmail.com>
5795L: linux-media@vger.kernel.org
5796W: http://linuxtv.org/
5797Q: http://patchwork.linuxtv.org/project/linux-media/list/
5798S: Maintained
5799F: drivers/media/dvb-frontends/ix2505v*
5800
Guenter Roeck4453d732010-08-09 17:21:08 -07005801JC42.4 TEMPERATURE SENSOR DRIVER
5802M: Guenter Roeck <linux@roeck-us.net>
5803L: lm-sensors@lm-sensors.org
5804S: Maintained
5805F: drivers/hwmon/jc42.c
5806F: Documentation/hwmon/jc42
5807
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005808JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06005809M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005810L: jfs-discussion@lists.sourceforge.net
5811W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07005812T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05005813S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005814F: Documentation/filesystems/jfs.txt
5815F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005816
Guo-Fu Tseng95252232008-09-16 01:00:11 +08005817JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005818M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08005819L: netdev@vger.kernel.org
5820S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07005821F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08005822
Linus Torvalds1da177e2005-04-16 15:20:36 -07005823JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07005824M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04005825L: linux-mtd@lists.infradead.org
5826W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07005827S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005828F: fs/jffs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005829F: include/uapi/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005830
Theodore Ts'od183e112011-05-26 09:53:09 -04005831JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
5832M: "Theodore Ts'o" <tytso@mit.edu>
Jan Karac290ea02015-06-18 16:52:29 +02005833M: Jan Kara <jack@suse.com>
Theodore Ts'od183e112011-05-26 09:53:09 -04005834L: linux-ext4@vger.kernel.org
5835S: Maintained
5836F: fs/jbd2/
5837F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07005838
Mikhail Ulyanov207dab52015-07-22 08:23:05 -03005839JPU V4L2 MEM2MEM DRIVER FOR RENESAS
5840M: Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
5841L: linux-media@vger.kernel.org
5842S: Maintained
5843F: drivers/media/platform/rcar_jpu.c
5844
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03005845JSM Neo PCI based serial card
Thadeu Lima de Souza Cascardo9d141cb2013-05-22 15:15:24 -03005846M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03005847L: linux-serial@vger.kernel.org
5848S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08005849F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03005850
Clemens Ladischaf399172011-01-10 16:32:54 +01005851K10TEMP HARDWARE MONITORING DRIVER
5852M: Clemens Ladisch <clemens@ladisch.de>
5853L: lm-sensors@lm-sensors.org
5854S: Maintained
5855F: Documentation/hwmon/k10temp
5856F: drivers/hwmon/k10temp.c
5857
Rudolf Marek4660cb32006-10-08 22:01:26 +02005858K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005859M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02005860L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005861S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005862F: Documentation/hwmon/k8temp
5863F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005864
5865KCONFIG
Michal Marek5eb1f992013-10-30 12:02:27 +01005866M: "Yann E. MORIN" <yann.morin.1998@free.fr>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02005867L: linux-kbuild@vger.kernel.org
Joe Perchescea83212014-03-03 15:38:38 -08005868T: git git://gitorious.org/linux-kconfig/linux-kconfig
Michal Marek5eb1f992013-10-30 12:02:27 +01005869S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005870F: Documentation/kbuild/kconfig-language.txt
5871F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005872
Vivek Goyalea6c2082006-05-20 14:59:55 -07005873KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07005874M: Vivek Goyal <vgoyal@redhat.com>
5875M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07005876L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07005877W: http://lse.sourceforge.net/kdump/
5878S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005879F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07005880
Hans Verkuilf41bf022012-11-23 07:04:36 -03005881KEENE FM RADIO TRANSMITTER DRIVER
5882M: Hans Verkuil <hverkuil@xs4all.nl>
5883L: linux-media@vger.kernel.org
5884T: git git://linuxtv.org/media_tree.git
5885W: http://linuxtv.org
5886S: Maintained
5887F: drivers/media/radio/radio-keene*
5888
Linus Torvalds1da177e2005-04-16 15:20:36 -07005889KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07005890M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08005891L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005892S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005893F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005894
Michal Marek70fb7ba2010-01-29 14:22:43 +01005895KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Jiri Slabyd8130622015-07-17 16:23:20 -07005896M: Michal Marek <mmarek@suse.com>
Joe Perches08deed12012-03-23 15:01:57 -07005897T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
5898T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02005899L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08005900S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005901F: Documentation/kbuild/
5902F: Makefile
5903F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01005904F: scripts/basic/
5905F: scripts/mk*
5906F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005907
5908KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07005909L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07005910W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07005911S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07005912
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04005913KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005914M: "J. Bruce Fields" <bfields@fieldses.org>
J. Bruce Fields883985f2015-08-24 16:44:40 -04005915M: Jeff Layton <jlayton@poochiereds.net>
Neil Brown16141c02007-12-11 16:16:12 -08005916L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005917W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08005918S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005919F: fs/nfsd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005920F: include/uapi/linux/nfsd/
Joe Perches679655d2009-04-07 20:44:32 -07005921F: fs/lockd/
5922F: fs/nfs_common/
5923F: net/sunrpc/
5924F: include/linux/lockd/
5925F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005926F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005927
Shuah Khan13b122b2014-10-13 15:51:21 -07005928KERNEL SELFTEST FRAMEWORK
5929M: Shuah Khan <shuahkh@osg.samsung.com>
5930L: linux-api@vger.kernel.org
5931T: git git://git.kernel.org/pub/scm/shuah/linux-kselftest
5932S: Maintained
5933F: tools/testing/selftests
5934
Avi Kivity426d62e2006-12-13 00:34:03 -08005935KERNEL VIRTUAL MACHINE (KVM)
Gleb Natapov0a00a772013-11-27 16:35:22 +02005936M: Gleb Natapov <gleb@kernel.org>
Paolo Bonzinic93a64f2013-05-15 19:02:24 +02005937M: Paolo Bonzini <pbonzini@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03005938L: kvm@vger.kernel.org
Ramkumar Ramachandrae3e58472013-10-31 16:16:34 +05305939W: http://www.linux-kvm.org
Ramkumar Ramachandraa94b40a2013-10-31 16:29:23 +05305940T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
Avi Kivity426d62e2006-12-13 00:34:03 -08005941S: Supported
Paolo Bonzinic93a64f2013-05-15 19:02:24 +02005942F: Documentation/*/kvm*.txt
5943F: Documentation/virtual/kvm/
Joe Perches679655d2009-04-07 20:44:32 -07005944F: arch/*/kvm/
Christian Borntraeger1662e862015-03-12 14:59:26 +01005945F: arch/x86/kernel/kvm.c
5946F: arch/x86/kernel/kvmclock.c
Joe Perches679655d2009-04-07 20:44:32 -07005947F: arch/*/include/asm/kvm*
5948F: include/linux/kvm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005949F: include/uapi/linux/kvm*
Joe Perches679655d2009-04-07 20:44:32 -07005950F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08005951
Joerg Roedelad8003d2008-09-10 20:01:07 +02005952KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joerg Roedel7de609c2012-10-29 19:08:21 +01005953M: Joerg Roedel <joro@8bytes.org>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07005954L: kvm@vger.kernel.org
5955W: http://kvm.qumranet.com
Joerg Roedel7de609c2012-10-29 19:08:21 +01005956S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005957F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07005958F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07005959
Hollis Blanchard513014b2008-04-16 23:28:08 -05005960KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Jiri Slabyd8130622015-07-17 16:23:20 -07005961M: Alexander Graf <agraf@suse.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03005962L: kvm-ppc@vger.kernel.org
5963W: http://kvm.qumranet.com
Michael Ellerman6a7f9722012-10-15 19:01:05 +00005964T: git git://github.com/agraf/linux-2.6.git
Hollis Blanchard513014b2008-04-16 23:28:08 -05005965S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005966F: arch/powerpc/include/asm/kvm*
5967F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05005968
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01005969KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07005970M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02005971M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01005972L: linux-s390@vger.kernel.org
5973W: http://www.ibm.com/developerworks/linux/linux390/
5974S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005975F: Documentation/s390/kvm.txt
5976F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07005977F: arch/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01005978
Christoffer Dalla7494742013-01-20 18:42:26 -05005979KERNEL VIRTUAL MACHINE (KVM) FOR ARM
Christoffer Dall0f4ca792013-06-21 13:54:36 -07005980M: Christoffer Dall <christoffer.dall@linaro.org>
Marc Zyngier5c8818b2014-04-26 03:43:01 -07005981M: Marc Zyngier <marc.zyngier@arm.com>
5982L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Christoffer Dalla7494742013-01-20 18:42:26 -05005983L: kvmarm@lists.cs.columbia.edu
5984W: http://systems.cs.columbia.edu/projects/kvm-arm
Christoffer Dall0f4ca792013-06-21 13:54:36 -07005985S: Supported
Christoffer Dalla7494742013-01-20 18:42:26 -05005986F: arch/arm/include/uapi/asm/kvm*
5987F: arch/arm/include/asm/kvm*
5988F: arch/arm/kvm/
Marc Zyngier5c8818b2014-04-26 03:43:01 -07005989F: virt/kvm/arm/
5990F: include/kvm/arm_*
Christoffer Dalla7494742013-01-20 18:42:26 -05005991
Marc Zyngier6394a3e2013-04-02 17:49:40 +01005992KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
Marc Zyngier5c8818b2014-04-26 03:43:01 -07005993M: Christoffer Dall <christoffer.dall@linaro.org>
Marc Zyngier6394a3e2013-04-02 17:49:40 +01005994M: Marc Zyngier <marc.zyngier@arm.com>
5995L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5996L: kvmarm@lists.cs.columbia.edu
5997S: Maintained
5998F: arch/arm64/include/uapi/asm/kvm*
5999F: arch/arm64/include/asm/kvm*
6000F: arch/arm64/kvm/
6001
Eric W. Biedermandc009d92005-06-25 14:57:52 -07006002KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07006003M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07006004W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07006005L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07006006S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006007F: include/linux/kexec.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006008F: include/uapi/linux/kexec.h
Joe Perches679655d2009-04-07 20:44:32 -07006009F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07006010
David Howellse9714612010-03-29 23:42:09 +01006011KEYS/KEYRINGS:
6012M: David Howells <dhowells@redhat.com>
David Howellsaa62eff2015-08-11 13:29:48 +01006013L: keyrings@vger.kernel.org
David Howellse9714612010-03-29 23:42:09 +01006014S: Maintained
Randy Dunlapd410fa42011-05-19 15:59:38 -07006015F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01006016F: include/linux/key.h
6017F: include/linux/key-type.h
6018F: include/keys/
6019F: security/keys/
6020
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006021KEYS-TRUSTED
Mimi Zohar74dd7442014-02-27 08:44:45 -05006022M: David Safford <safford@us.ibm.com>
6023M: Mimi Zohar <zohar@linux.vnet.ibm.com>
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006024L: linux-security-module@vger.kernel.org
David Howellsaa62eff2015-08-11 13:29:48 +01006025L: keyrings@vger.kernel.org
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006026S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07006027F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006028F: include/keys/trusted-type.h
6029F: security/keys/trusted.c
6030F: security/keys/trusted.h
6031
6032KEYS-ENCRYPTED
Mimi Zohar74dd7442014-02-27 08:44:45 -05006033M: Mimi Zohar <zohar@linux.vnet.ibm.com>
6034M: David Safford <safford@us.ibm.com>
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006035L: linux-security-module@vger.kernel.org
David Howellsaa62eff2015-08-11 13:29:48 +01006036L: keyrings@vger.kernel.org
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006037S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07006038F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006039F: include/keys/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08006040F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006041
Jason Wessel5b778da2010-05-20 21:04:28 -05006042KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07006043M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05006044W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05006045L: kgdb-bugreport@lists.sourceforge.net
6046S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006047F: Documentation/DocBook/kgdb.tmpl
6048F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006049F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05006050F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07006051F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05006052F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05006053
Pekka Enberg456db8c2008-04-28 22:47:29 +03006054KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07006055M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02006056M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03006057S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08006058F: Documentation/kmemcheck.txt
6059F: arch/x86/include/asm/kmemcheck.h
6060F: arch/x86/mm/kmemcheck/
6061F: include/linux/kmemcheck.h
6062F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03006063
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01006064KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07006065M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01006066S: Maintained
6067F: Documentation/kmemleak.txt
6068F: include/linux/kmemleak.h
6069F: mm/kmemleak.c
6070F: mm/kmemleak-test.c
6071
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07006072KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07006073M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
6074M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
6075M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07006076M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07006077S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006078F: Documentation/kprobes.txt
6079F: include/linux/kprobes.h
6080F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07006081
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08006082KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006083M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07006084W: http://miguelojeda.es/auxdisplay.htm
6085W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08006086S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006087F: Documentation/auxdisplay/ks0108
6088F: drivers/auxdisplay/ks0108.c
6089F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08006090
Linus Torvalds1da177e2005-04-16 15:20:36 -07006091LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07006092L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07006093S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006094F: Documentation/networking/lapb-module.txt
6095F: include/*/lapb.h
6096F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006097
6098LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07006099M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006100L: linux-scsi@vger.kernel.org
6101S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006102F: Documentation/scsi/53c700.txt
6103F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006104
Richard Purdie263de9b2006-05-15 09:44:16 -07006105LED SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006106M: Richard Purdie <rpurdie@rpsys.net>
Andrew Morton48b945a2015-05-05 16:23:30 -07006107M: Jacek Anaszewski <j.anaszewski@samsung.com>
Bryan Wuaa69cb82012-05-31 19:51:37 +08006108L: linux-leds@vger.kernel.org
Jacek Anaszewskib8926ba2015-08-20 08:59:35 +02006109T: git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07006110S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006111F: drivers/leds/
6112F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07006113
Jean Delvareb0461a42011-06-15 15:08:46 -07006114LEGACY EEPROM DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07006115M: Jean Delvare <jdelvare@suse.com>
Jean Delvareb0461a42011-06-15 15:08:46 -07006116S: Maintained
6117F: Documentation/misc-devices/eeprom
6118F: drivers/misc/eeprom/eeprom.c
6119
Linus Torvalds1da177e2005-04-16 15:20:36 -07006120LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07006121M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006122L: legousb-devel@lists.sourceforge.net
6123W: http://legousb.sourceforge.net/
6124S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006125F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006126
Michael Krufky055616a2012-10-02 00:56:06 -03006127LG2160 MEDIA DRIVER
6128M: Michael Krufky <mkrufky@linuxtv.org>
6129L: linux-media@vger.kernel.org
6130W: http://linuxtv.org/
6131W: http://github.com/mkrufky
6132Q: http://patchwork.linuxtv.org/project/linux-media/list/
6133T: git git://linuxtv.org/mkrufky/tuners.git
6134S: Maintained
6135F: drivers/media/dvb-frontends/lg2160.*
6136
Michael Krufky6f0e7722012-10-02 00:56:00 -03006137LGDT3305 MEDIA DRIVER
6138M: Michael Krufky <mkrufky@linuxtv.org>
6139L: linux-media@vger.kernel.org
6140W: http://linuxtv.org/
6141W: http://github.com/mkrufky
6142Q: http://patchwork.linuxtv.org/project/linux-media/list/
6143T: git git://linuxtv.org/mkrufky/tuners.git
6144S: Maintained
6145F: drivers/media/dvb-frontends/lgdt3305.*
6146
Rusty Russell568a17f2007-10-25 14:12:24 +10006147LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07006148M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006149L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10006150W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06006151S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08006152F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07006153F: arch/x86/lguest/
6154F: drivers/lguest/
6155F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08006156F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10006157
Tejun Heo32ac7cb2015-01-06 18:36:44 -05006158LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
6159M: Tejun Heo <tj@kernel.org>
6160L: linux-ide@vger.kernel.org
6161T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6162S: Maintained
6163F: drivers/ata/
6164F: include/linux/ata.h
6165F: include/linux/libata.h
6166
6167LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
Viresh Kumarda899472015-07-17 16:23:50 -07006168M: Viresh Kumar <vireshk@kernel.org>
Tejun Heo32ac7cb2015-01-06 18:36:44 -05006169L: linux-ide@vger.kernel.org
6170T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6171S: Maintained
6172F: include/linux/pata_arasan_cf_data.h
6173F: drivers/ata/pata_arasan_cf.c
6174
Bartlomiej Zolnierkiewiczc7fa0562014-12-02 17:29:08 +01006175LIBATA PATA DRIVERS
6176M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6177M: Tejun Heo <tj@kernel.org>
6178L: linux-ide@vger.kernel.org
6179T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6180S: Maintained
6181F: drivers/ata/pata_*.c
6182F: drivers/ata/ata_generic.c
6183
Tejun Heo32ac7cb2015-01-06 18:36:44 -05006184LIBATA SATA AHCI PLATFORM devices support
6185M: Hans de Goede <hdegoede@redhat.com>
6186M: Tejun Heo <tj@kernel.org>
6187L: linux-ide@vger.kernel.org
6188T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6189S: Maintained
6190F: drivers/ata/ahci_platform.c
6191F: drivers/ata/libahci_platform.c
6192F: include/linux/ahci_platform.h
6193
6194LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
6195M: Mikael Pettersson <mikpelinux@gmail.com>
6196L: linux-ide@vger.kernel.org
6197T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6198S: Maintained
6199F: drivers/ata/sata_promise.*
6200
Sasha Levin1acd4372013-06-13 18:41:24 -04006201LIBLOCKDEP
6202M: Sasha Levin <sasha.levin@oracle.com>
6203S: Maintained
6204F: tools/lib/lockdep/
6205
Dan Williamsbc301962015-06-25 04:48:19 -04006206LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
6207M: Dan Williams <dan.j.williams@intel.com>
6208L: linux-nvdimm@lists.01.org
6209Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
6210S: Supported
6211F: drivers/nvdimm/*
6212F: include/linux/nd.h
6213F: include/linux/libnvdimm.h
6214F: include/uapi/linux/ndctl.h
6215
6216LIBNVDIMM BLK: MMIO-APERTURE DRIVER
6217M: Ross Zwisler <ross.zwisler@linux.intel.com>
6218L: linux-nvdimm@lists.01.org
6219Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
6220S: Supported
6221F: drivers/nvdimm/blk.c
6222F: drivers/nvdimm/region_devs.c
6223F: drivers/acpi/nfit*
6224
6225LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
6226M: Vishal Verma <vishal.l.verma@intel.com>
6227L: linux-nvdimm@lists.01.org
6228Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
6229S: Supported
6230F: drivers/nvdimm/btt*
6231
6232LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
6233M: Ross Zwisler <ross.zwisler@linux.intel.com>
6234L: linux-nvdimm@lists.01.org
6235Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
6236S: Supported
6237F: drivers/nvdimm/pmem.c
Ross Zwislerb864bc12015-07-10 11:06:10 -06006238F: include/linux/pmem.h
Ross Zwisler40603522015-08-18 13:55:36 -06006239F: arch/*/include/asm/pmem.h
Dan Williamsbc301962015-06-25 04:48:19 -04006240
Linus Torvalds1da177e2005-04-16 15:20:36 -07006241LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07006242M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006243W: http://www.ibm.com/linux/ltc/projects/ppc
6244S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00006245F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006246
Paul Mackerras852bb9f2008-07-04 21:04:42 +10006247LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07006248M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
6249M: Paul Mackerras <paulus@samba.org>
Benjamin Herrenschmidtea668932014-07-28 13:54:37 +10006250M: Michael Ellerman <mpe@ellerman.id.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006251W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006252L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08006253Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Michael Ellerman99580842015-07-07 19:16:23 +10006254T: git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006255S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00006256F: Documentation/powerpc/
6257F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006258
6259LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07006260M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006261W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006262L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006263S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00006264F: arch/powerpc/platforms/powermac/
6265F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006266
Grant Likely77a76362008-07-12 12:11:43 -06006267LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00006268M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006269L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschincba5b1c2014-10-02 16:16:59 -07006270T: git git://git.denx.de/linux-denx-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006271S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00006272F: arch/powerpc/platforms/512x/
6273F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006274
6275LINUX FOR POWERPC EMBEDDED PPC4XX
Joe Perches49e7d9d2015-04-15 16:17:31 -07006276M: Alistair Popple <alistair@popple.id.au>
Joe Perches8b58be82009-07-29 15:04:30 -07006277M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006278W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006279L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006280S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00006281F: arch/powerpc/platforms/40x/
6282F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006283
Grant Likely260c02a2007-10-02 12:15:34 +10006284LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006285L: linuxppc-dev@lists.ozlabs.org
Grant Likelycdeb8992013-07-22 01:38:32 +01006286S: Orphan
Joe Perches11c34c72009-12-04 07:16:59 +00006287F: arch/powerpc/*/*virtex*
6288F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006289
Tom Rinie93adf12005-07-26 12:49:53 -07006290LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07006291M: Vitaly Bordug <vitb@kernel.crashing.org>
Tom Rinie93adf12005-07-26 12:49:53 -07006292W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006293L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07006294S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07006295F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07006296
Linus Torvalds1da177e2005-04-16 15:20:36 -07006297LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Scott Wooda1e0fb42014-05-05 20:46:43 -05006298M: Scott Wood <scottwood@freescale.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006299M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01006300W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006301L: linuxppc-dev@lists.ozlabs.org
Scott Wooda1e0fb42014-05-05 20:46:43 -05006302T: git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
Jim Cromiece00f852006-11-30 04:49:44 +01006303S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00006304F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03006305F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006306
Olof Johanssonab06ff32006-09-06 14:44:54 -05006307LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07006308M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006309L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00006310S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00006311F: arch/powerpc/platforms/pasemi/
6312F: drivers/*/*pasemi*
6313F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05006314
Linus Torvalds1da177e2005-04-16 15:20:36 -07006315LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07006316M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08006317L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006318S: Supported
6319
Harry Weia23ce6d2011-02-11 16:52:20 +01006320LIS3LV02D ACCELEROMETER DRIVER
6321M: Eric Piel <eric.piel@tremplin-utc.net>
6322S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01006323F: Documentation/misc-devices/lis3lv02d
6324F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07006325F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01006326
Seth Jenningsb700e7f2014-12-16 11:58:19 -06006327LIVE PATCHING
6328M: Josh Poimboeuf <jpoimboe@redhat.com>
6329M: Seth Jennings <sjenning@redhat.com>
Jiri Kosinae5f64502015-08-09 09:11:34 +02006330M: Jiri Kosina <jikos@kernel.org>
Jiri Slabyd8130622015-07-17 16:23:20 -07006331M: Vojtech Pavlik <vojtech@suse.com>
Seth Jenningsb700e7f2014-12-16 11:58:19 -06006332S: Maintained
6333F: kernel/livepatch/
6334F: include/linux/livepatch.h
6335F: arch/x86/include/asm/livepatch.h
6336F: arch/x86/kernel/livepatch.c
6337F: Documentation/ABI/testing/sysfs-kernel-livepatch
Seth Jennings13d1cf72014-12-16 11:58:20 -06006338F: samples/livepatch/
Seth Jenningsb700e7f2014-12-16 11:58:19 -06006339L: live-patching@vger.kernel.org
Jiri Kosina74d50da2014-12-22 13:40:20 +01006340T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
Seth Jenningsb700e7f2014-12-16 11:58:19 -06006341
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006342LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07006343M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006344S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006345F: include/linux/llc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006346F: include/uapi/linux/llc.h
Joe Perches679655d2009-04-07 20:44:32 -07006347F: include/net/llc*
6348F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006349
Adrien Demarez4e233cb2009-12-09 20:35:50 +01006350LM73 HARDWARE MONITOR DRIVER
6351M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
6352L: lm-sensors@lm-sensors.org
6353S: Maintained
6354F: drivers/hwmon/lm73.c
6355
Jean Delvare156e2d12011-07-25 21:46:11 +02006356LM78 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07006357M: Jean Delvare <jdelvare@suse.com>
Jean Delvare156e2d12011-07-25 21:46:11 +02006358L: lm-sensors@lm-sensors.org
6359S: Maintained
6360F: Documentation/hwmon/lm78
6361F: drivers/hwmon/lm78.c
6362
Linus Torvalds1da177e2005-04-16 15:20:36 -07006363LM83 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07006364M: Jean Delvare <jdelvare@suse.com>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02006365L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006366S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006367F: Documentation/hwmon/lm83
6368F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006369
6370LM90 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07006371M: Jean Delvare <jdelvare@suse.com>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02006372L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006373S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006374F: Documentation/hwmon/lm90
Wei Niaae7bce2013-11-15 10:40:39 +01006375F: Documentation/devicetree/bindings/hwmon/lm90.txt
Joe Perches679655d2009-04-07 20:44:32 -07006376F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006377
Guenter Roeck917cc4e2013-05-19 20:44:27 -07006378LM95234 HARDWARE MONITOR DRIVER
6379M: Guenter Roeck <linux@roeck-us.net>
6380L: lm-sensors@lm-sensors.org
6381S: Maintained
6382F: Documentation/hwmon/lm95234
6383F: drivers/hwmon/lm95234.c
6384
Malcolm Priestley68620bd2012-11-04 19:16:31 +01006385LME2510 MEDIA DRIVER
6386M: Malcolm Priestley <tvboxspy@gmail.com>
6387L: linux-media@vger.kernel.org
6388W: http://linuxtv.org/
6389Q: http://patchwork.linuxtv.org/project/linux-media/list/
6390S: Maintained
6391F: drivers/media/usb/dvb-usb-v2/lmedm04*
6392
Peter Zijlstra512e67f2007-10-11 22:11:11 +02006393LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07006394M: Peter Zijlstra <peterz@infradead.org>
6395M: Ingo Molnar <mingo@redhat.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +01006396L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006397T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02006398S: Maintained
Davidlohr Bueso214e0ae2014-07-30 13:41:55 -07006399F: Documentation/locking/lockdep*.txt
6400F: Documentation/locking/lockstat.txt
Joe Perches679655d2009-04-07 20:44:32 -07006401F: include/linux/lockdep.h
Joe Perches7486d6d2013-11-14 14:59:45 -08006402F: kernel/locking/
Peter Zijlstra512e67f2007-10-11 22:11:11 +02006403
Anton Altaparmakovdde33342007-05-21 09:37:42 +01006404LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07006405M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01006406L: linux-ntfs-dev@lists.sourceforge.net
6407W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006408S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006409F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08006410F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006411
Joern Engelef6ada32009-11-20 22:17:12 +01006412LogFS
6413M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05306414M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01006415L: logfs@logfs.org
6416W: logfs.org
6417S: Maintained
6418F: fs/logfs/
6419
Roland Stiggeb62d7942013-04-02 19:37:11 +02006420LPC32XX MACHINE SUPPORT
6421M: Roland Stigge <stigge@antcom.de>
6422L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6423S: Maintained
6424F: arch/arm/mach-lpc32xx/
6425
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07006426LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
Reddy, Sreekanth3a980502014-06-13 20:48:04 +05306427M: Nagalakshmi Nandigama <nagalakshmi.nandigama@avagotech.com>
6428M: Praveen Krishnamoorthy <praveen.krishnamoorthy@avagotech.com>
6429M: Sreekanth Reddy <sreekanth.reddy@avagotech.com>
6430M: Abhijit Mahajan <abhijit.mahajan@avagotech.com>
6431L: MPT-FusionLinux.pdl@avagotech.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07006432L: linux-scsi@vger.kernel.org
6433W: http://www.lsilogic.com/support
6434S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006435F: drivers/message/fusion/
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05306436F: drivers/scsi/mpt2sas/
6437F: drivers/scsi/mpt3sas/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07006438
Linus Torvalds1da177e2005-04-16 15:20:36 -07006439LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07006440M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006441L: linux-scsi@vger.kernel.org
6442S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006443F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006444
Guenter Roecke5f5c992010-06-25 11:59:54 -07006445LTC4261 HARDWARE MONITOR DRIVER
6446M: Guenter Roeck <linux@roeck-us.net>
6447L: lm-sensors@lm-sensors.org
6448S: Maintained
6449F: Documentation/hwmon/ltc4261
6450F: drivers/hwmon/ltc4261.c
6451
Mike Frysinger81365c32008-10-29 14:01:12 -07006452LTP (Linux Test Project)
Joe Perches28b8e8d2010-03-23 13:35:20 -07006453M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07006454M: Cyril Hrubis <chrubis@suse.cz>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07006455M: Wanlong Gao <gaowanlong@cn.fujitsu.com>
Cyril Hrubisf2eb7f62014-05-09 15:36:58 -07006456M: Jan Stancek <jstancek@redhat.com>
6457M: Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
6458M: Alexey Kodanev <alexey.kodanev@oracle.com>
Mike Frysinger81365c32008-10-29 14:01:12 -07006459L: ltp-list@lists.sourceforge.net (subscribers-only)
Cyril Hrubisf2eb7f62014-05-09 15:36:58 -07006460W: http://linux-test-project.github.io/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07006461T: git git://github.com/linux-test-project/ltp.git
Mike Frysinger81365c32008-10-29 14:01:12 -07006462S: Maintained
6463
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07006464M32R ARCHITECTURE
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07006465W: http://www.linux-m32r.org/
Michael Opdenackerb4174862014-10-13 15:51:26 -07006466S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006467F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07006468
Linus Torvalds1da177e2005-04-16 15:20:36 -07006469M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07006470M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006471L: linux-m68k@lists.linux-m68k.org
6472W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07006473T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006474S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006475F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07006476F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006477
6478M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07006479M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006480W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01006481L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006482S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07006483F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006484
6485M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07006486M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006487W: http://www.tazenda.demon.co.uk/phil/linux-hp
6488S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006489F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006490
Antti Palosaari74425542013-11-06 14:03:32 -03006491M88DS3103 MEDIA DRIVER
6492M: Antti Palosaari <crope@iki.fi>
6493L: linux-media@vger.kernel.org
6494W: http://linuxtv.org/
6495W: http://palosaari.fi/linux/
6496Q: http://patchwork.linuxtv.org/project/linux-media/list/
6497T: git git://linuxtv.org/anttip/media_tree.git
6498S: Maintained
6499F: drivers/media/dvb-frontends/m88ds3103*
6500
Malcolm Priestley68620bd2012-11-04 19:16:31 +01006501M88RS2000 MEDIA DRIVER
6502M: Malcolm Priestley <tvboxspy@gmail.com>
6503L: linux-media@vger.kernel.org
6504W: http://linuxtv.org/
6505Q: http://patchwork.linuxtv.org/project/linux-media/list/
6506S: Maintained
6507F: drivers/media/dvb-frontends/m88rs2000*
6508
Alexey Klimov07a092f2012-11-12 02:57:32 -03006509MA901 MASTERKIT USB FM RADIO DRIVER
Joe Perchesb75f0052014-03-03 15:38:37 -08006510M: Alexey Klimov <klimov.linux@gmail.com>
6511L: linux-media@vger.kernel.org
6512T: git git://linuxtv.org/media_tree.git
6513S: Maintained
6514F: drivers/media/radio/radio-ma901.c
Alexey Klimov07a092f2012-11-12 02:57:32 -03006515
Jiri Benc64a327a2007-05-05 11:47:08 -07006516MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07006517M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07006518L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006519W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02006520T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6521T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07006522S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006523F: Documentation/networking/mac80211-injection.txt
6524F: include/net/mac80211.h
6525F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07006526
Patrick McHardyb863ceb2007-07-14 18:55:06 -07006527MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006528M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07006529L: netdev@vger.kernel.org
6530S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006531F: drivers/net/macvlan.c
6532F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07006533
Jassi Brar2b6d83e2014-06-12 22:31:19 +05306534MAILBOX API
6535M: Jassi Brar <jassisinghbrar@gmail.com>
6536L: linux-kernel@vger.kernel.org
6537S: Maintained
6538F: drivers/mailbox/
6539F: include/linux/mailbox_client.h
6540F: include/linux/mailbox_controller.h
6541
Michael Kerriskfaf16682005-07-31 22:34:47 -07006542MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07006543M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006544W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07006545L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07006546S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07006547
Russell King8427def2014-02-28 22:40:53 +00006548MARVELL ARMADA DRM SUPPORT
6549M: Russell King <rmk+kernel@arm.linux.org.uk>
6550S: Maintained
6551F: drivers/gpu/drm/armada/
6552
Guenter Roeck3ad50cc2014-10-29 10:44:56 -07006553MARVELL 88E6352 DSA support
6554M: Guenter Roeck <linux@roeck-us.net>
6555S: Maintained
6556F: drivers/net/dsa/mv88e6352.c
6557
stephen hemminger44c14c12012-04-02 12:59:47 +00006558MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
6559M: Mirko Lindner <mlindner@marvell.com>
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08006560M: Stephen Hemminger <stephen@networkplumber.org>
stephen hemminger44c14c12012-04-02 12:59:47 +00006561L: netdev@vger.kernel.org
6562S: Maintained
6563F: drivers/net/ethernet/marvell/sk*
6564
Stefano Brivio74cda162007-11-19 20:27:46 +01006565MARVELL LIBERTAS WIRELESS DRIVER
Stefano Brivio74cda162007-11-19 20:27:46 +01006566L: libertas-dev@lists.infradead.org
Dan Williams8ac3e992013-03-26 14:40:51 -05006567S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006568F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01006569
Dale Farnsworthb60d6972006-01-16 16:45:45 -07006570MARVELL MV643XX ETHERNET DRIVER
Sebastian Hesselbarth4e3faf82013-10-04 12:56:39 +02006571M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07006572L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00006573S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07006574F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07006575F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006576
Thomas Petazzoni370b8ed2012-09-04 15:06:42 +02006577MARVELL MVNETA ETHERNET DRIVER
6578M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
6579L: netdev@vger.kernel.org
6580S: Maintained
6581F: drivers/net/ethernet/marvell/mvneta.*
6582
Bing Zhaofcad5842011-07-13 13:11:58 -07006583MARVELL MWIFIEX WIRELESS DRIVER
Bing Zhaob9d31702014-07-30 13:57:16 -07006584M: Amitkumar Karwar <akarwar@marvell.com>
Avinash Patil550795f2015-06-24 16:52:21 +05306585M: Nishant Sarmukadam <nishants@marvell.com>
Bing Zhaofcad5842011-07-13 13:11:58 -07006586L: linux-wireless@vger.kernel.org
6587S: Maintained
6588F: drivers/net/wireless/mwifiex/
6589
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02006590MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01006591M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02006592L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02006593S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02006594F: drivers/net/wireless/mwl8k.c
6595
Pierre Ossman2a695672009-03-16 19:52:26 +01006596MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04006597M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04006598S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07006599F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01006600
Linus Torvalds1da177e2005-04-16 15:20:36 -07006601MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006602L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07006603S: Orphan
Jingoo Han8a61f012014-07-01 15:36:01 +09006604F: drivers/video/fbdev/matrox/matroxfb_*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006605F: include/uapi/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006606
Guenter Roeckca462082012-06-01 23:28:23 -07006607MAX16065 HARDWARE MONITOR DRIVER
6608M: Guenter Roeck <linux@roeck-us.net>
6609L: lm-sensors@lm-sensors.org
6610S: Maintained
6611F: Documentation/hwmon/max16065
6612F: drivers/hwmon/max16065.c
6613
Guenter Roeck1f61cab2015-06-08 11:15:23 -07006614MAX20751 HARDWARE MONITOR DRIVER
6615M: Guenter Roeck <linux@roeck-us.net>
6616L: lm-sensors@lm-sensors.org
6617S: Maintained
6618F: Documentation/hwmon/max20751
6619F: drivers/hwmon/max20751.c
6620
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02006621MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07006622M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02006623L: lm-sensors@lm-sensors.org
6624S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006625F: Documentation/hwmon/max6650
6626F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02006627
Guenter Roecke89ab512013-03-08 08:13:09 -08006628MAX6697 HARDWARE MONITOR DRIVER
6629M: Guenter Roeck <linux@roeck-us.net>
6630L: lm-sensors@lm-sensors.org
6631S: Maintained
6632F: Documentation/hwmon/max6697
6633F: Documentation/devicetree/bindings/i2c/max6697.txt
6634F: drivers/hwmon/max6697.c
6635F: include/linux/platform_data/max6697.h
6636
Krzysztof Kozlowskif8f847b2015-01-20 11:00:56 +01006637MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
6638M: Krzysztof Kozlowski <k.kozlowski@samsung.com>
6639L: linux-pm@vger.kernel.org
6640S: Supported
6641F: drivers/power/max14577_charger.c
6642F: drivers/power/max77693_charger.c
6643
Javier Martinez Canillas38114052015-07-17 10:17:58 +02006644MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS
6645M: Javier Martinez Canillas <javier@osg.samsung.com>
6646L: linux-kernel@vger.kernel.org
6647S: Supported
6648F: drivers/*/*max77802.c
6649F: Documentation/devicetree/bindings/*/*max77802.txt
6650F: include/dt-bindings/*/*max77802.h
6651
Krzysztof Kozlowskibefeb592015-02-16 16:00:23 -08006652MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
6653M: Chanwoo Choi <cw00.choi@samsung.com>
6654M: Krzysztof Kozlowski <k.kozlowski@samsung.com>
6655L: linux-kernel@vger.kernel.org
6656S: Supported
6657F: drivers/*/max14577.c
6658F: drivers/*/max77686.c
6659F: drivers/*/max77693.c
6660F: drivers/extcon/extcon-max14577.c
6661F: drivers/extcon/extcon-max77693.c
6662F: drivers/rtc/rtc-max77686.c
6663F: drivers/clk/clk-max77686.c
6664F: Documentation/devicetree/bindings/mfd/max14577.txt
Javier Martinez Canillas377452f2015-07-17 10:17:57 +02006665F: Documentation/devicetree/bindings/*/max77686.txt
Krzysztof Kozlowskibefeb592015-02-16 16:00:23 -08006666F: Documentation/devicetree/bindings/mfd/max77693.txt
6667F: Documentation/devicetree/bindings/clock/maxim,max77686.txt
6668F: include/linux/mfd/max14577*.h
6669F: include/linux/mfd/max77686*.h
6670F: include/linux/mfd/max77693*.h
6671
Hans Verkuil9be3c9a2012-11-23 07:12:43 -03006672MAXIRADIO FM RADIO RECEIVER DRIVER
6673M: Hans Verkuil <hverkuil@xs4all.nl>
6674L: linux-media@vger.kernel.org
6675T: git git://linuxtv.org/media_tree.git
6676W: http://linuxtv.org
6677S: Maintained
6678F: drivers/media/radio/radio-maxiradio*
6679
Laurent Pinchart6f32a8c2015-03-04 09:12:20 -03006680MEDIA DRIVERS FOR RENESAS - VSP1
6681M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6682L: linux-media@vger.kernel.org
6683L: linux-sh@vger.kernel.org
6684T: git git://linuxtv.org/media_tree.git
6685S: Supported
6686F: Documentation/devicetree/bindings/media/renesas,vsp1.txt
6687F: drivers/media/platform/vsp1/
6688
Kozlov Sergeydacf9ce2015-07-28 11:33:01 -03006689MEDIA DRIVERS FOR ASCOT2E
6690M: Sergey Kozlov <serjk@netup.ru>
6691L: linux-media@vger.kernel.org
6692W: http://linuxtv.org
6693W: http://netup.tv/
6694T: git git://linuxtv.org/media_tree.git
6695S: Supported
6696F: drivers/media/dvb-frontends/ascot2e*
6697
Kozlov Sergeya6dc60ff2015-07-28 11:33:03 -03006698MEDIA DRIVERS FOR CXD2841ER
6699M: Sergey Kozlov <serjk@netup.ru>
6700L: linux-media@vger.kernel.org
6701W: http://linuxtv.org/
6702W: http://netup.tv/
6703T: git git://linuxtv.org/media_tree.git
6704S: Supported
6705F: drivers/media/dvb-frontends/cxd2841er*
6706
Kozlov Sergeya5d32b32015-07-28 11:33:00 -03006707MEDIA DRIVERS FOR HORUS3A
6708M: Sergey Kozlov <serjk@netup.ru>
6709L: linux-media@vger.kernel.org
6710W: http://linuxtv.org/
6711W: http://netup.tv/
6712T: git git://linuxtv.org/media_tree.git
6713S: Supported
6714F: drivers/media/dvb-frontends/horus3a*
6715
Kozlov Sergeye0252732015-07-28 11:33:02 -03006716MEDIA DRIVERS FOR LNBH25
6717M: Sergey Kozlov <serjk@netup.ru>
6718L: linux-media@vger.kernel.org
6719W: http://linuxtv.org/
6720W: http://netup.tv/
6721T: git git://linuxtv.org/media_tree.git
6722S: Supported
6723F: drivers/media/dvb-frontends/lnbh25*
6724
Kozlov Sergey52b1eaf2015-07-28 11:33:04 -03006725MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
6726M: Sergey Kozlov <serjk@netup.ru>
6727L: linux-media@vger.kernel.org
6728W: http://linuxtv.org/
6729W: http://netup.tv/
6730T: git git://linuxtv.org/media_tree.git
6731S: Supported
6732F: drivers/media/pci/netup_unidvb/*
6733
Joe Perches127c49a2009-04-08 08:34:04 -07006734MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02006735M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Joe Perches127c49a2009-04-08 08:34:04 -07006736P: LinuxTV.org Project
6737L: linux-media@vger.kernel.org
6738W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08006739Q: http://patchwork.kernel.org/project/linux-media/list/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006740T: git git://linuxtv.org/media_tree.git
Joe Perches127c49a2009-04-08 08:34:04 -07006741S: Maintained
6742F: Documentation/dvb/
6743F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02006744F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07006745F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02006746F: drivers/staging/media/
Joe Perches127c49a2009-04-08 08:34:04 -07006747F: include/media/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02006748F: include/uapi/linux/dvb/
6749F: include/uapi/linux/videodev2.h
6750F: include/uapi/linux/media.h
6751F: include/uapi/linux/v4l2-*
6752F: include/uapi/linux/meye.h
6753F: include/uapi/linux/ivtv*
6754F: include/uapi/linux/uvcvideo.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07006755
Jakub Kicinskic869f772015-05-26 11:16:00 +02006756MEDIATEK MT7601U WIRELESS LAN DRIVER
6757M: Jakub Kicinski <kubakici@wp.pl>
6758L: linux-wireless@vger.kernel.org
6759S: Maintained
6760F: drivers/net/wireless/mediatek/mt7601u/
6761
Sumit.Saxena@avagotech.come3990652014-11-17 15:24:03 +05306762MEGARAID SCSI/SAS DRIVERS
6763M: Kashyap Desai <kashyap.desai@avagotech.com>
6764M: Sumit Saxena <sumit.saxena@avagotech.com>
6765M: Uday Lingala <uday.lingala@avagotech.com>
6766L: megaraidlinux.pdl@avagotech.com
Jean Delvarebaaea1d2008-09-20 12:34:33 +02006767L: linux-scsi@vger.kernel.org
Sumit.Saxena@avagotech.come3990652014-11-17 15:24:03 +05306768W: http://www.lsi.com
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07006769S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006770F: Documentation/scsi/megaraid.txt
6771F: drivers/scsi/megaraid.*
6772F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07006773
Amir Vadai2c46c9d2012-12-02 03:49:21 +00006774MELLANOX ETHERNET DRIVER (mlx4_en)
6775M: Amir Vadai <amirv@mellanox.com>
Or Gerlitzdb603042015-04-02 16:31:23 +03006776M: Ido Shamay <idos@mellanox.com>
Joe Perchesb75f0052014-03-03 15:38:37 -08006777L: netdev@vger.kernel.org
Amir Vadai2c46c9d2012-12-02 03:49:21 +00006778S: Supported
6779W: http://www.mellanox.com
6780Q: http://patchwork.ozlabs.org/project/netdev/list/
6781F: drivers/net/ethernet/mellanox/mlx4/en_*
6782
Jiri Pirko93c1edb2015-07-29 23:33:46 +02006783MELLANOX ETHERNET SWITCH DRIVERS
6784M: Jiri Pirko <jiri@mellanox.com>
6785M: Ido Schimmel <idosch@mellanox.com>
6786L: netdev@vger.kernel.org
6787S: Supported
6788W: http://www.mellanox.com
6789Q: http://patchwork.ozlabs.org/project/netdev/list/
6790F: drivers/net/ethernet/mellanox/mlxsw/
6791
Steven Rostedt70ea91f2006-07-30 03:03:53 -07006792MEMORY MANAGEMENT
6793L: linux-mm@kvack.org
Steven Rostedt70ea91f2006-07-30 03:03:53 -07006794W: http://www.linux-mm.org
6795S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006796F: include/linux/mm.h
Cody P Schafer551450b2013-02-21 16:43:13 -08006797F: include/linux/gfp.h
6798F: include/linux/mmzone.h
6799F: include/linux/memory_hotplug.h
6800F: include/linux/vmalloc.h
Joe Perches679655d2009-04-07 20:44:32 -07006801F: mm/
Steven Rostedt70ea91f2006-07-30 03:03:53 -07006802
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04006803MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07006804M: David Woodhouse <dwmw2@infradead.org>
Brian Norris242c3252013-12-04 15:28:45 -08006805M: Brian Norris <computersforpeace@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006806L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08006807W: http://www.linux-mtd.infradead.org/
6808Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
Brian Norris242c3252013-12-04 15:28:45 -08006809T: git git://git.infradead.org/linux-mtd.git
Brian Norrisab95eac2014-09-15 21:56:17 -07006810T: git git://git.infradead.org/l2-mtd.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006811S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006812F: drivers/mtd/
6813F: include/linux/mtd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006814F: include/uapi/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006815
Johannes Thumshirn26c57ef2013-06-18 17:19:45 +02006816MEN A21 WATCHDOG DRIVER
Johannes Thumshirn30c74692015-05-07 10:21:24 +02006817M: Johannes Thumshirn <morbidrsa@gmail.com>
Johannes Thumshirn26c57ef2013-06-18 17:19:45 +02006818L: linux-watchdog@vger.kernel.org
Johannes Thumshirn30c74692015-05-07 10:21:24 +02006819S: Maintained
Johannes Thumshirn26c57ef2013-06-18 17:19:45 +02006820F: drivers/watchdog/mena21_wdt.c
6821
Johannes Thumshirn3764e822014-02-26 17:29:05 +01006822MEN CHAMELEON BUS (mcb)
Johannes Thumshirn30c74692015-05-07 10:21:24 +02006823M: Johannes Thumshirn <morbidrsa@gmail.com>
6824S: Maintained
Johannes Thumshirn3764e822014-02-26 17:29:05 +01006825F: drivers/mcb/
6826F: include/linux/mcb.h
Johannes Thumshirnb9f2f452015-07-17 12:23:01 +02006827F: Documentation/men-chameleon-bus.txt
Johannes Thumshirn3764e822014-02-26 17:29:05 +01006828
Andreas Werner48b490d2014-09-15 09:36:30 +02006829MEN F21BMC (Board Management Controller)
6830M: Andreas Werner <andreas.werner@men.de>
6831S: Supported
6832F: drivers/mfd/menf21bmc.c
6833F: drivers/watchdog/menf21bmc_wdt.c
6834F: drivers/leds/leds-menf21bmc.c
6835F: drivers/hwmon/menf21bmc_hwmon.c
6836F: Documentation/hwmon/menf21bmc
6837
James Hogan12285942012-10-10 12:59:49 +01006838METAG ARCHITECTURE
6839M: James Hogan <james.hogan@imgtec.com>
James Hogand668d9e2013-07-22 09:51:38 +01006840L: linux-metag@vger.kernel.org
James Hogan12285942012-10-10 12:59:49 +01006841S: Supported
6842F: arch/metag/
6843F: Documentation/metag/
6844F: Documentation/devicetree/bindings/metag/
James Hogana2c5d4e2012-10-09 10:54:39 +01006845F: drivers/clocksource/metag_generic.c
James Hogan5698c502012-10-09 10:54:47 +01006846F: drivers/irqchip/irq-metag.c
6847F: drivers/irqchip/irq-metag-ext.c
James Hoganae85ac72012-09-21 17:38:15 +01006848F: drivers/tty/metag_da.c
James Hogan12285942012-10-10 12:59:49 +01006849
Michal Simekc6375b02009-03-27 14:25:52 +01006850MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07006851M: Michal Simek <monstr@monstr.eu>
Michal Simekc6375b02009-03-27 14:25:52 +01006852W: http://www.monstr.eu/fdt/
6853T: git git://git.monstr.eu/linux-2.6-microblaze.git
6854S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02006855F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006856
Chen Yu2508a452015-08-18 23:30:25 +08006857MICROSOFT SURFACE PRO 3 BUTTON DRIVER
6858M: Chen Yu <yu.c.chen@intel.com>
6859L: platform-driver-x86@vger.kernel.org
6860S: Supported
6861F: drivers/platform/x86/surfacepro3_button.c
6862
Linus Torvalds1da177e2005-04-16 15:20:36 -07006863MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02006864M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006865S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006866F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006867
6868MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07006869M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006870L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01006871W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00006872T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01006873Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00006874S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006875F: Documentation/mips/
6876F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006877
Hans Verkuil08b76202012-11-23 07:15:42 -03006878MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
6879M: Hans Verkuil <hverkuil@xs4all.nl>
6880L: linux-media@vger.kernel.org
6881T: git git://linuxtv.org/media_tree.git
6882W: http://linuxtv.org
6883S: Odd Fixes
6884F: drivers/media/radio/radio-miropcm20*
6885
Eli Cohene126ba92013-07-07 17:25:49 +03006886Mellanox MLX5 core VPI driver
6887M: Eli Cohen <eli@mellanox.com>
6888L: netdev@vger.kernel.org
6889L: linux-rdma@vger.kernel.org
6890W: http://www.mellanox.com
6891Q: http://patchwork.ozlabs.org/project/netdev/list/
6892Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perchescea83212014-03-03 15:38:38 -08006893T: git git://openfabrics.org/~eli/connect-ib.git
Eli Cohene126ba92013-07-07 17:25:49 +03006894S: Supported
6895F: drivers/net/ethernet/mellanox/mlx5/core/
6896F: include/linux/mlx5/
6897
6898Mellanox MLX5 IB driver
Joe Perchesb75f0052014-03-03 15:38:37 -08006899M: Eli Cohen <eli@mellanox.com>
6900L: linux-rdma@vger.kernel.org
6901W: http://www.mellanox.com
6902Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perchescea83212014-03-03 15:38:38 -08006903T: git git://openfabrics.org/~eli/connect-ib.git
Joe Perchesb75f0052014-03-03 15:38:37 -08006904S: Supported
6905F: include/linux/mlx5/
6906F: drivers/infiniband/hw/mlx5/
Eli Cohene126ba92013-07-07 17:25:49 +03006907
Antti Palosaari0ce277e2014-11-12 00:35:42 -03006908MN88472 MEDIA DRIVER
6909M: Antti Palosaari <crope@iki.fi>
6910L: linux-media@vger.kernel.org
6911W: http://linuxtv.org/
6912W: http://palosaari.fi/linux/
6913Q: http://patchwork.linuxtv.org/project/linux-media/list/
6914T: git git://linuxtv.org/anttip/media_tree.git
6915S: Maintained
6916F: drivers/staging/media/mn88472/
6917F: drivers/media/dvb-frontends/mn88472.h
6918
Antti Palosaari4f4d2382014-11-12 00:53:57 -03006919MN88473 MEDIA DRIVER
6920M: Antti Palosaari <crope@iki.fi>
6921L: linux-media@vger.kernel.org
6922W: http://linuxtv.org/
6923W: http://palosaari.fi/linux/
6924Q: http://patchwork.linuxtv.org/project/linux-media/list/
6925T: git git://linuxtv.org/anttip/media_tree.git
6926S: Maintained
6927F: drivers/staging/media/mn88473/
6928F: drivers/media/dvb-frontends/mn88473.h
6929
Linus Torvalds1da177e2005-04-16 15:20:36 -07006930MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006931M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006932S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006933F: include/linux/module.h
6934F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006935
6936MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07006937W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08006938S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006939F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006940F: drivers/media/pci/meye/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02006941F: include/uapi/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006942
Jiri Slabyb9705b62008-04-30 00:53:48 -07006943MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07006944M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08006945S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006946F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07006947F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08006948
Alexey Klimov889b2f82012-11-16 17:43:59 -03006949MR800 AVERMEDIA USB FM RADIO DRIVER
6950M: Alexey Klimov <klimov.linux@gmail.com>
6951L: linux-media@vger.kernel.org
6952T: git git://linuxtv.org/media_tree.git
6953S: Maintained
6954F: drivers/media/radio/radio-mr800.c
6955
Alan Ottd7155692014-08-16 17:09:03 -04006956MRF24J40 IEEE 802.15.4 RADIO DRIVER
6957M: Alan Ott <alan@signal11.us>
6958L: linux-wpan@vger.kernel.org
6959S: Maintained
6960F: drivers/net/ieee802154/mrf24j40.c
Alexander Aring2e6fd642015-09-21 11:24:26 +02006961F: Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
Alan Ottd7155692014-08-16 17:09:03 -04006962
Lennart Poettering8c4c7312006-10-06 01:27:02 -04006963MSI LAPTOP SUPPORT
Lee, Chun-Yi182ae552012-12-14 16:14:24 +08006964M: "Lee, Chun-Yi" <jlee@suse.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05006965L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04006966S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006967F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04006968
Anisse Astier0f1006b2009-12-17 11:28:49 +01006969MSI WMI SUPPORT
Matthew Garrettd0944852010-02-11 10:40:13 -05006970L: platform-driver-x86@vger.kernel.org
Anisse Astier5ee70412015-06-14 22:32:23 +02006971S: Orphan
Anisse Astier0f1006b2009-12-17 11:28:49 +01006972F: drivers/platform/x86/msi-wmi.c
6973
Antti Palosaari19a628a2014-02-02 23:51:30 -03006974MSI001 MEDIA DRIVER
6975M: Antti Palosaari <crope@iki.fi>
6976L: linux-media@vger.kernel.org
6977W: http://linuxtv.org/
6978W: http://palosaari.fi/linux/
6979Q: http://patchwork.linuxtv.org/project/linux-media/list/
6980T: git git://linuxtv.org/anttip/media_tree.git
6981S: Maintained
Antti Palosaari0185e192014-07-12 08:58:32 -03006982F: drivers/media/tuners/msi001*
Antti Palosaari19a628a2014-02-02 23:51:30 -03006983
Antti Palosaari75705892014-07-13 21:35:47 -03006984MSI2500 MEDIA DRIVER
Antti Palosaari2c572132014-02-02 23:55:12 -03006985M: Antti Palosaari <crope@iki.fi>
6986L: linux-media@vger.kernel.org
6987W: http://linuxtv.org/
6988W: http://palosaari.fi/linux/
6989Q: http://patchwork.linuxtv.org/project/linux-media/list/
6990T: git git://linuxtv.org/anttip/media_tree.git
6991S: Maintained
Antti Palosaari75705892014-07-13 21:35:47 -03006992F: drivers/media/usb/msi2500/
Antti Palosaari2c572132014-02-02 23:55:12 -03006993
Robert Jarzmik159eeea2015-06-25 19:14:18 +02006994MSYSTEMS DISKONCHIP G3 MTD DRIVER
6995M: Robert Jarzmik <robert.jarzmik@free.fr>
6996L: linux-mtd@lists.infradead.org
6997S: Maintained
6998F: drivers/mtd/devices/docg3*
6999
Laurent Pinchart62a37dc2013-08-09 08:46:11 -03007000MT9M032 APTINA SENSOR DRIVER
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007001M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7002L: linux-media@vger.kernel.org
7003T: git git://linuxtv.org/media_tree.git
7004S: Maintained
7005F: drivers/media/i2c/mt9m032.c
7006F: include/media/mt9m032.h
7007
Laurent Pinchart62a37dc2013-08-09 08:46:11 -03007008MT9P031 APTINA CAMERA SENSOR
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007009M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7010L: linux-media@vger.kernel.org
7011T: git git://linuxtv.org/media_tree.git
7012S: Maintained
7013F: drivers/media/i2c/mt9p031.c
7014F: include/media/mt9p031.h
7015
Laurent Pinchart62a37dc2013-08-09 08:46:11 -03007016MT9T001 APTINA CAMERA SENSOR
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007017M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7018L: linux-media@vger.kernel.org
7019T: git git://linuxtv.org/media_tree.git
7020S: Maintained
7021F: drivers/media/i2c/mt9t001.c
7022F: include/media/mt9t001.h
7023
Laurent Pinchart62a37dc2013-08-09 08:46:11 -03007024MT9V032 APTINA CAMERA SENSOR
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007025M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7026L: linux-media@vger.kernel.org
7027T: git git://linuxtv.org/media_tree.git
7028S: Maintained
Laurent Pinchartf2272e12014-01-01 14:40:35 -03007029F: Documentation/devicetree/bindings/media/i2c/mt9v032.txt
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007030F: drivers/media/i2c/mt9v032.c
7031F: include/media/mt9v032.h
7032
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07007033MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07007034M: Samuel Ortiz <sameo@linux.intel.com>
Samuel Ortizf7d32102013-05-17 00:53:42 +02007035M: Lee Jones <lee.jones@linaro.org>
Lee Jones7caa7992014-07-22 13:24:38 +01007036T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07007037S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007038F: drivers/mfd/
Mark Brown55b59402013-06-28 15:14:11 +01007039F: include/linux/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07007040
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02007041MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Ulf Hanssone18eaf82014-02-19 00:01:05 +01007042M: Ulf Hansson <ulf.hansson@linaro.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07007043L: linux-mmc@vger.kernel.org
Ulf Hansson708dce32014-05-14 14:32:53 +02007044T: git git://git.linaro.org/people/ulf.hansson/mmc.git
Chris Ball245feaa2010-09-10 12:05:24 -04007045S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007046F: drivers/mmc/
7047F: include/linux/mmc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007048F: include/uapi/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01007049
David Brownell15a05802007-08-08 09:12:54 -07007050MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06007051S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007052F: drivers/mmc/host/mmc_spi.c
7053F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07007054
Linus Torvalds1da177e2005-04-16 15:20:36 -07007055MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007056M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007057S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007058F: Documentation/sound/oss/MultiSound
7059F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007060
Jiri Slabyd7354102006-12-08 02:38:35 -08007061MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02007062S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07007063F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07007064F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08007065
Felipe Balbi550a7372008-07-24 12:27:36 +03007066MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03007067M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007068L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03007069T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02007070S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007071F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03007072
Michael Krufkyea0af5f2012-10-02 00:55:41 -03007073MXL5007T MEDIA DRIVER
7074M: Michael Krufky <mkrufky@linuxtv.org>
7075L: linux-media@vger.kernel.org
7076W: http://linuxtv.org/
7077W: http://github.com/mkrufky
7078Q: http://patchwork.linuxtv.org/project/linux-media/list/
7079T: git git://linuxtv.org/mkrufky/tuners.git
7080S: Maintained
7081F: drivers/media/tuners/mxl5007t.*
7082
Brice Goglin2d3cf582008-05-17 12:45:36 +02007083MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Hyong-Youb Kim205057a2013-08-12 02:20:02 -07007084M: Hyong-Youb Kim <hykim@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02007085L: netdev@vger.kernel.org
Hyong-Youb Kim205057a2013-08-12 02:20:02 -07007086W: https://www.myricom.com/support/downloads/myri10ge.html
Brice Goglin2d3cf582008-05-17 12:45:36 +02007087S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07007088F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02007089
Linus Torvalds1da177e2005-04-16 15:20:36 -07007090NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04007091S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07007092F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007093
Daniel Mack23dc05a2011-05-18 11:28:38 +02007094NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
7095M: Daniel Mack <zonque@gmail.com>
7096S: Maintained
Jim Davise5747e42015-06-25 15:01:58 -07007097L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Daniel Mack23dc05a2011-05-18 11:28:38 +02007098W: http://www.native-instruments.com
7099F: sound/usb/caiaq/
7100
Linus Torvalds1da177e2005-04-16 15:20:36 -07007101NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07007102M: Petr Vandrovec <petr@vandrovec.name>
7103S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07007104F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007105
Finn Thaina79b0322014-05-05 15:35:30 +10007106NCR 5380 SCSI DRIVERS
7107M: Finn Thain <fthain@telegraphics.com.au>
7108M: Michael Schmitz <schmitzmic@gmail.com>
7109L: linux-scsi@vger.kernel.org
7110S: Maintained
7111F: Documentation/scsi/g_NCR5380.txt
7112F: drivers/scsi/NCR5380.*
7113F: drivers/scsi/arm/cumana_1.c
7114F: drivers/scsi/arm/oak.c
7115F: drivers/scsi/atari_NCR5380.c
7116F: drivers/scsi/atari_scsi.*
7117F: drivers/scsi/dmx3191d.c
7118F: drivers/scsi/dtc.*
7119F: drivers/scsi/g_NCR5380.*
7120F: drivers/scsi/g_NCR5380_mmio.c
7121F: drivers/scsi/mac_scsi.*
7122F: drivers/scsi/pas16.*
Finn Thaina79b0322014-05-05 15:35:30 +10007123F: drivers/scsi/sun3_scsi.*
7124F: drivers/scsi/sun3_scsi_vme.c
7125F: drivers/scsi/t128.*
7126
Linus Torvalds1da177e2005-04-16 15:20:36 -07007127NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07007128M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007129L: linux-scsi@vger.kernel.org
7130S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007131F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007132
Guenter Roeck4aa3eb42013-04-03 14:12:11 -07007133NCT6775 HARDWARE MONITOR DRIVER
7134M: Guenter Roeck <linux@roeck-us.net>
7135L: lm-sensors@lm-sensors.org
7136S: Maintained
7137F: Documentation/hwmon/nct6775
7138F: drivers/hwmon/nct6775.c
7139
Glenn Streiff3c2d7742008-02-04 20:20:45 -08007140NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07007141M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07007142L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00007143W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08007144S: Supported
7145F: drivers/infiniband/hw/nes/
7146
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07007147NETEM NETWORK EMULATOR
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08007148M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07007149L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07007150S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007151F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07007152
Jon Masonb2f5a052010-07-15 08:47:27 +00007153NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00007154M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07007155L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07007156S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007157F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00007158F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07007159F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07007160
Pablo Neira Ayusodb9cf3a2014-06-16 13:01:52 +02007161NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01007162M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07007163M: Patrick McHardy <kaber@trash.net>
Pablo Neira Ayuso42010ed2013-05-06 12:22:57 +02007164M: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
Patrick McHardy1a03b812007-09-18 13:19:26 -07007165L: netfilter-devel@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07007166L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007167W: http://www.netfilter.org/
7168W: http://www.iptables.org/
Pablo Neira Ayuso42010ed2013-05-06 12:22:57 +02007169Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/
7170T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
7171T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007172S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007173F: include/linux/netfilter*
7174F: include/linux/netfilter/
7175F: include/net/netfilter/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007176F: include/uapi/linux/netfilter*
7177F: include/uapi/linux/netfilter/
Joe Perches679655d2009-04-07 20:44:32 -07007178F: net/*/netfilter.c
7179F: net/*/netfilter/
7180F: net/netfilter/
Pablo Neira Ayuso91c269a2015-07-06 20:55:35 +02007181F: net/bridge/br_netfilter*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007182
Paul Moore4cc67732006-09-25 15:57:13 -07007183NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00007184M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07007185W: http://netlabel.sf.net
7186L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00007187S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07007188F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07007189F: include/net/netlabel.h
7190F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07007191
Linus Torvalds1da177e2005-04-16 15:20:36 -07007192NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07007193M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007194L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02007195W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007196S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007197F: include/net/netrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007198F: include/uapi/linux/netrom.h
Joe Perches679655d2009-04-07 20:44:32 -07007199F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007200
Pavel Machek5ddb88c2006-09-29 02:01:29 -07007201NETWORK BLOCK DEVICE (NBD)
Markus Pargmann4ca58292015-01-28 19:35:38 +01007202M: Markus Pargmann <mpa@pengutronix.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007203S: Maintained
Wouter Verhelst5e4b2692013-02-27 17:05:27 -08007204L: nbd-general@lists.sourceforge.net
Markus Pargmann4ca58292015-01-28 19:35:38 +01007205T: git git://git.pengutronix.de/git/mpa/linux-nbd.git
Joe Perches679655d2009-04-07 20:44:32 -07007206F: Documentation/blockdev/nbd.txt
7207F: drivers/block/nbd.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007208F: include/uapi/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007209
Neil Horman6e436502009-10-05 03:56:55 +00007210NETWORK DROP MONITOR
7211M: Neil Horman <nhorman@tuxdriver.com>
7212L: netdev@vger.kernel.org
7213S: Maintained
7214W: https://fedorahosted.org/dropwatch/
7215F: net/core/drop_monitor.c
7216
Linus Torvalds1da177e2005-04-16 15:20:36 -07007217NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07007218M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07007219L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00007220W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00007221Q: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00007222T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7223T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007224S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007225F: net/
7226F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00007227F: include/linux/in.h
7228F: include/linux/net.h
7229F: include/linux/netdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007230F: include/uapi/linux/in.h
7231F: include/uapi/linux/net.h
7232F: include/uapi/linux/netdevice.h
Nicolas Dichtel0c7aecd2015-01-15 15:11:15 +01007233F: include/uapi/linux/net_namespace.h
Tobias Klauser7e814a62014-03-11 12:06:24 +01007234F: tools/net/
Daniel Borkmannf4e53f92014-03-13 10:18:53 +01007235F: tools/testing/selftests/net/
Sasha Levin335a67d2014-03-27 02:01:34 -04007236F: lib/random32.c
Daniel Borkmanna101ccd2014-06-10 12:31:10 +02007237F: lib/test_bpf.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007238
7239NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07007240M: "David S. Miller" <davem@davemloft.net>
7241M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07007242M: James Morris <jmorris@namei.org>
7243M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
7244M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07007245L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007246T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007247S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007248F: net/ipv4/
7249F: net/ipv6/
7250F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00007251F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007252
David S. Miller73b76562012-10-16 14:08:40 -04007253NETWORKING [IPSEC]
7254M: Steffen Klassert <steffen.klassert@secunet.com>
7255M: Herbert Xu <herbert@gondor.apana.org.au>
7256M: "David S. Miller" <davem@davemloft.net>
7257L: netdev@vger.kernel.org
Steffen Klassertd1fc5022013-12-13 12:56:05 +01007258T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
7259T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
David S. Miller73b76562012-10-16 14:08:40 -04007260S: Maintained
Fan Du5826bdd2014-01-18 09:55:28 +08007261F: net/core/flow.c
David S. Miller73b76562012-10-16 14:08:40 -04007262F: net/xfrm/
7263F: net/key/
7264F: net/ipv4/xfrm*
Steffen Klassertd1fc5022013-12-13 12:56:05 +01007265F: net/ipv4/esp4.c
7266F: net/ipv4/ah4.c
7267F: net/ipv4/ipcomp.c
7268F: net/ipv4/ip_vti.c
David S. Miller73b76562012-10-16 14:08:40 -04007269F: net/ipv6/xfrm*
Steffen Klassertd1fc5022013-12-13 12:56:05 +01007270F: net/ipv6/esp6.c
7271F: net/ipv6/ah6.c
7272F: net/ipv6/ipcomp6.c
7273F: net/ipv6/ip6_vti.c
David S. Miller73b76562012-10-16 14:08:40 -04007274F: include/uapi/linux/xfrm.h
7275F: include/net/xfrm.h
7276
James Morris10e2ff12007-08-25 14:41:28 -07007277NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00007278M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07007279L: netdev@vger.kernel.org
7280S: Maintained
7281
John W. Linville29f8f632006-01-18 14:52:48 -08007282NETWORKING [WIRELESS]
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08007283L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007284Q: http://patchwork.kernel.org/project/linux-wireless/list/
John W. Linville29f8f632006-01-18 14:52:48 -08007285
Joe Perches788873a2009-04-16 09:38:45 +00007286NETWORKING DRIVERS
7287L: netdev@vger.kernel.org
7288W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00007289Q: http://patchwork.ozlabs.org/project/netdev/list/
Joe Perches08deed12012-03-23 15:01:57 -07007290T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7291T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00007292S: Odd Fixes
7293F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00007294F: include/linux/if_*
Jean Delvare0b63bf12012-10-18 22:11:38 +02007295F: include/linux/netdevice.h
7296F: include/linux/arcdevice.h
7297F: include/linux/etherdevice.h
7298F: include/linux/fcdevice.h
7299F: include/linux/fddidevice.h
7300F: include/linux/hippidevice.h
7301F: include/linux/inetdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007302F: include/uapi/linux/if_*
7303F: include/uapi/linux/netdevice.h
Joe Perches788873a2009-04-16 09:38:45 +00007304
John W. Linville0e324cf2014-12-17 12:07:05 -05007305NETWORKING DRIVERS (WIRELESS)
7306M: Kalle Valo <kvalo@codeaurora.org>
7307L: linux-wireless@vger.kernel.org
7308Q: http://patchwork.kernel.org/project/linux-wireless/list/
7309T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git/
7310S: Maintained
7311F: drivers/net/wireless/
7312
Amit S. Kale3d396eb2006-10-21 15:33:03 -04007313NETXEN (1/10) GbE SUPPORT
Manish Chopra86223152013-03-28 23:54:08 +00007314M: Manish Chopra <manish.chopra@qlogic.com>
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07007315M: Sony Chacko <sony.chacko@qlogic.com>
7316M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04007317L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00007318W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04007319S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07007320F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04007321
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03007322NFC SUBSYSTEM
7323M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
7324M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
7325M: Samuel Ortiz <sameo@linux.intel.com>
7326L: linux-wireless@vger.kernel.org
Dan Carpenter1eb3b212014-08-11 13:14:25 +03007327L: linux-nfc@lists.01.org (subscribers-only)
Samuel Ortiz0293ba22013-06-24 14:39:35 +02007328S: Supported
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03007329F: net/nfc/
Ilan Elias55eb94f2011-09-18 11:19:34 +03007330F: include/net/nfc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007331F: include/uapi/linux/nfc.h
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03007332F: drivers/nfc/
Marcel Holtmann08eaa1e2012-10-24 11:45:38 -07007333F: include/linux/platform_data/pn544.h
Mark A. Greer7ebb88e2014-03-10 11:56:25 -07007334F: Documentation/devicetree/bindings/net/nfc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007335
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04007336NFS, SUNRPC, AND LOCKD CLIENTS
Trond Myklebustcd7b9962013-12-04 12:29:49 -05007337M: Trond Myklebust <trond.myklebust@primarydata.com>
Trond Myklebust0e3b1372015-02-03 17:13:58 -05007338M: Anna Schumaker <anna.schumaker@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05007339L: linux-nfs@vger.kernel.org
7340W: http://client.linux-nfs.org
Trond Myklebustcd7b9962013-12-04 12:29:49 -05007341T: git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007342S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007343F: fs/lockd/
7344F: fs/nfs/
7345F: fs/nfs_common/
7346F: net/sunrpc/
7347F: include/linux/lockd/
7348F: include/linux/nfs*
7349F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007350F: include/uapi/linux/nfs*
7351F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007352
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07007353NILFS2 FILESYSTEM
Ryusuke Konishie2126932014-04-03 14:50:25 -07007354M: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09007355L: linux-nilfs@vger.kernel.org
Ryusuke Konishif9472262014-04-03 14:50:32 -07007356W: http://nilfs.sourceforge.net/
Ryusuke Konishie2126932014-04-03 14:50:25 -07007357T: git git://github.com/konis/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07007358S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007359F: Documentation/filesystems/nilfs2.txt
7360F: fs/nilfs2/
7361F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07007362
Linus Torvalds1da177e2005-04-16 15:20:36 -07007363NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007364M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007365W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7366S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007367F: Documentation/scsi/NinjaSCSI.txt
7368F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007369
7370NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007371M: GOTO Masanori <gotom@debian.or.jp>
7372M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007373W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7374S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007375F: Documentation/scsi/NinjaSCSI.txt
7376F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007377
Ley Foon Tan383b8fb2014-11-06 15:20:14 +08007378NIOS2 ARCHITECTURE
7379M: Ley Foon Tan <lftan@altera.com>
7380L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
Ley Foon Tan0094dc42015-09-08 01:50:05 +08007381T: git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
Ley Foon Tan383b8fb2014-11-06 15:20:14 +08007382S: Maintained
7383F: arch/nios2/
7384
Pali Rohár2a6afdd2015-03-29 15:35:54 +02007385NOKIA N900 POWER SUPPLY DRIVERS
7386M: Pali Rohár <pali.rohar@gmail.com>
7387S: Maintained
7388F: include/linux/power/bq2415x_charger.h
7389F: include/linux/power/bq27x00_battery.h
7390F: include/linux/power/isp1704_charger.h
7391F: drivers/power/bq2415x_charger.c
7392F: drivers/power/bq27x00_battery.c
7393F: drivers/power/isp1704_charger.c
7394F: drivers/power/rx51_battery.c
7395
Allen Hubbea1bd3ba2015-04-09 10:33:20 -04007396NTB DRIVER CORE
Jon Mason9ef6bf62014-06-19 10:44:24 -07007397M: Jon Mason <jdmason@kudzu.us>
7398M: Dave Jiang <dave.jiang@intel.com>
Allen Hubbea1bd3ba2015-04-09 10:33:20 -04007399M: Allen Hubbe <Allen.Hubbe@emc.com>
Jon Masonfce8a7b2012-11-16 19:27:12 -07007400S: Supported
Jon Mason29844112013-07-30 16:29:48 -07007401W: https://github.com/jonmason/ntb/wiki
7402T: git git://github.com/jonmason/ntb.git
Jon Masonfce8a7b2012-11-16 19:27:12 -07007403F: drivers/ntb/
Jon Mason548c2372012-11-16 19:27:13 -07007404F: drivers/net/ntb_netdev.c
Jon Masonfce8a7b2012-11-16 19:27:12 -07007405F: include/linux/ntb.h
Allen Hubbea1bd3ba2015-04-09 10:33:20 -04007406F: include/linux/ntb_transport.h
Jon Masonfce8a7b2012-11-16 19:27:12 -07007407
Allen Hubbee26a5842015-04-09 10:33:20 -04007408NTB INTEL DRIVER
7409M: Jon Mason <jdmason@kudzu.us>
7410M: Dave Jiang <dave.jiang@intel.com>
7411S: Supported
7412W: https://github.com/jonmason/ntb/wiki
7413T: git git://github.com/jonmason/ntb.git
7414F: drivers/ntb/hw/intel/
Joe Perches679655d2009-04-07 20:44:32 -07007415
7416NTFS FILESYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07007417M: Anton Altaparmakov <anton@tuxera.com>
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08007418L: linux-ntfs-dev@lists.sourceforge.net
Joe Perches8b58be82009-07-29 15:04:30 -07007419W: http://www.tuxera.com/
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01007420T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Jim Cromiece00f852006-11-30 04:49:44 +01007421S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007422F: Documentation/filesystems/ntfs.txt
7423F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007424
Tony Lindgrenf5525782009-05-28 13:23:53 -07007425NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches0e24bdd2009-10-26 16:49:40 -07007426M: Antonino Daplas <adaplas@gmail.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007427L: linux-fbdev@vger.kernel.org
7428S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09007429F: drivers/video/fbdev/riva/
7430F: drivers/video/fbdev/nvidia/
Tony Lindgrenf5525782009-05-28 13:23:53 -07007431
Matthew Wilcox79461682012-11-10 08:54:53 -05007432NVM EXPRESS DRIVER
7433M: Matthew Wilcox <willy@linux.intel.com>
7434L: linux-nvme@lists.infradead.org
7435T: git git://git.infradead.org/users/willy/linux-nvme.git
7436S: Supported
Dan Carpenter5be37bf2013-05-13 18:00:42 +03007437F: drivers/block/nvme*
Matthew Wilcox79461682012-11-10 08:54:53 -05007438F: include/linux/nvme.h
7439
Srinivas Kandagatlaaee4b9b2015-07-27 12:17:24 +01007440NVMEM FRAMEWORK
7441M: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
7442M: Maxime Ripard <maxime.ripard@free-electrons.com>
7443S: Maintained
7444F: drivers/nvmem/
7445F: Documentation/devicetree/bindings/nvmem/
7446F: include/linux/nvmem-consumer.h
7447F: include/linux/nvmem-provider.h
7448
Clément Perrochauddece4582015-03-09 11:12:04 +01007449NXP-NCI NFC DRIVER
7450M: Clément Perrochaud <clement.perrochaud@effinnov.com>
7451R: Charles Gorand <charles.gorand@effinnov.com>
7452L: linux-nfc@lists.01.org (moderated for non-subscribers)
7453S: Supported
7454F: drivers/nfc/nxp-nci
7455
Russell Kingf50d7142014-03-03 12:18:14 +00007456NXP TDA998X DRM DRIVER
7457M: Russell King <rmk+kernel@arm.linux.org.uk>
7458S: Supported
7459F: drivers/gpu/drm/i2c/tda998x_drv.c
7460F: include/drm/i2c/tda998x.h
7461
Peter Rosinfbace432014-11-08 14:40:17 +01007462NXP TFA9879 DRIVER
7463M: Peter Rosin <peda@axentia.se>
7464L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7465S: Maintained
7466F: sound/soc/codecs/tfa9879*
7467
Tony Lindgrenf5525782009-05-28 13:23:53 -07007468OMAP SUPPORT
7469M: Tony Lindgren <tony@atomide.com>
7470L: linux-omap@vger.kernel.org
7471W: http://www.muru.com/linux/omap/
7472W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08007473Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02007474T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07007475S: Maintained
Felipe Contreras4e04d5a2009-09-21 17:04:25 -07007476F: arch/arm/*omap*/
Felipe Balbi026da812015-01-19 16:13:53 -06007477F: arch/arm/configs/omap1_defconfig
7478F: arch/arm/configs/omap2plus_defconfig
Jean Delvare046d0a32012-01-12 20:32:05 +01007479F: drivers/i2c/busses/i2c-omap.c
Felipe Balbidc68cd12014-11-06 08:37:19 -06007480F: drivers/irqchip/irq-omap-intc.c
7481F: drivers/mfd/*omap*.c
7482F: drivers/mfd/menelaus.c
7483F: drivers/mfd/palmas.c
7484F: drivers/mfd/tps65217.c
7485F: drivers/mfd/tps65218.c
7486F: drivers/mfd/tps65910.c
7487F: drivers/mfd/twl-core.[ch]
7488F: drivers/mfd/twl4030*.c
7489F: drivers/mfd/twl6030*.c
7490F: drivers/mfd/twl6040*.c
7491F: drivers/regulator/palmas-regulator*.c
7492F: drivers/regulator/pbias-regulator.c
7493F: drivers/regulator/tps65217-regulator.c
7494F: drivers/regulator/tps65218-regulator.c
7495F: drivers/regulator/tps65910-regulator.c
7496F: drivers/regulator/twl-regulator.c
Jean Delvare046d0a32012-01-12 20:32:05 +01007497F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07007498
Tony Lindgren50f29fb2012-12-16 11:29:59 -08007499OMAP DEVICE TREE SUPPORT
Benoit Coussoncdb55ab2013-08-09 23:19:15 +02007500M: Benoît Cousson <bcousson@baylibre.com>
Tony Lindgren50f29fb2012-12-16 11:29:59 -08007501M: Tony Lindgren <tony@atomide.com>
7502L: linux-omap@vger.kernel.org
Grant Likelyd0fb18c2013-07-19 20:10:12 -07007503L: devicetree@vger.kernel.org
Tony Lindgren50f29fb2012-12-16 11:29:59 -08007504S: Maintained
7505F: arch/arm/boot/dts/*omap*
7506F: arch/arm/boot/dts/*am3*
Nishanth Menon05eb20f2014-10-21 09:24:22 -05007507F: arch/arm/boot/dts/*am4*
7508F: arch/arm/boot/dts/*am5*
7509F: arch/arm/boot/dts/*dra7*
Tony Lindgren50f29fb2012-12-16 11:29:59 -08007510
Tony Lindgrenf5525782009-05-28 13:23:53 -07007511OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007512M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007513L: linux-omap@vger.kernel.org
7514S: Maintained
7515F: arch/arm/*omap*/*clock*
7516
7517OMAP POWER MANAGEMENT SUPPORT
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08007518M: Kevin Hilman <khilman@deeprootsystems.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007519L: linux-omap@vger.kernel.org
7520S: Maintained
7521F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07007522F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07007523
Joe Perchesd21db562013-09-11 14:23:35 -07007524OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
Paul Walmsley692ab1f2011-03-09 18:44:28 -07007525M: Rajendra Nayak <rnayak@ti.com>
7526M: Paul Walmsley <paul@pwsan.com>
7527L: linux-omap@vger.kernel.org
7528S: Maintained
Joe Perchesd21db562013-09-11 14:23:35 -07007529F: arch/arm/mach-omap2/prm*
Paul Walmsley692ab1f2011-03-09 18:44:28 -07007530
Tony Lindgrenf5525782009-05-28 13:23:53 -07007531OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03007532M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03007533M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Jim Davise5747e42015-06-25 15:01:58 -07007534L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Tony Lindgrenf5525782009-05-28 13:23:53 -07007535L: linux-omap@vger.kernel.org
7536S: Maintained
7537F: sound/soc/omap/
7538
Tony Lindgren18640192014-11-20 09:13:42 -08007539OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
7540M: Roger Quadros <rogerq@ti.com>
7541M: Tony Lindgren <tony@atomide.com>
7542L: linux-omap@vger.kernel.org
7543S: Maintained
7544F: drivers/memory/omap-gpmc.c
7545F: arch/arm/mach-omap2/*gpmc*
7546
Tony Lindgrenf5525782009-05-28 13:23:53 -07007547OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02007548M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01007549L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07007550L: linux-omap@vger.kernel.org
7551S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09007552F: drivers/video/fbdev/omap/
Tony Lindgrenf5525782009-05-28 13:23:53 -07007553
Tomi Valkeinen676eec02010-01-07 13:18:04 +02007554OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02007555M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03007556L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02007557L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03007558S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09007559F: drivers/video/fbdev/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03007560F: Documentation/arm/OMAP/DSS
7561
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03007562OMAP HARDWARE SPINLOCK SUPPORT
7563M: Ohad Ben-Cohen <ohad@wizery.com>
7564L: linux-omap@vger.kernel.org
7565S: Maintained
7566F: drivers/hwspinlock/omap_hwspinlock.c
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03007567
Tony Lindgrenf5525782009-05-28 13:23:53 -07007568OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007569M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007570L: linux-omap@vger.kernel.org
7571S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07007572F: drivers/mmc/host/omap.c
7573
7574OMAP HS MMC SUPPORT
Venkatraman S0a4585c2012-08-17 23:59:53 +05307575L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07007576L: linux-omap@vger.kernel.org
Balaji T Kdfa5d192014-09-17 22:50:11 +05307577S: Orphan
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07007578F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07007579
7580OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007581M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007582S: Maintained
7583F: drivers/char/hw_random/omap-rng.c
7584
Paul Walmsleyf400c822010-12-06 19:08:54 -07007585OMAP HWMOD SUPPORT
Benoit Coussoncdb55ab2013-08-09 23:19:15 +02007586M: Benoît Cousson <bcousson@baylibre.com>
Paul Walmsleyf400c822010-12-06 19:08:54 -07007587M: Paul Walmsley <paul@pwsan.com>
7588L: linux-omap@vger.kernel.org
7589S: Maintained
Zhang Yanfei8fc8b122013-01-11 14:32:03 -08007590F: arch/arm/mach-omap2/omap_hwmod.*
Paul Walmsleyf400c822010-12-06 19:08:54 -07007591
Paul Walmsley8633fb32015-01-19 23:49:50 -07007592OMAP HWMOD DATA
7593M: Paul Walmsley <paul@pwsan.com>
7594L: linux-omap@vger.kernel.org
7595S: Maintained
7596F: arch/arm/mach-omap2/omap_hwmod*data*
7597
Paul Walmsleyf400c822010-12-06 19:08:54 -07007598OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
Benoit Coussoncdb55ab2013-08-09 23:19:15 +02007599M: Benoît Cousson <bcousson@baylibre.com>
Paul Walmsleyf400c822010-12-06 19:08:54 -07007600L: linux-omap@vger.kernel.org
7601S: Maintained
7602F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
7603
Laurent Pinchart0db83ce2014-06-06 12:08:59 -03007604OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03007605M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7606L: linux-media@vger.kernel.org
7607S: Maintained
Sakari Ailus7eec52d2015-03-19 01:50:22 +02007608F: Documentation/devicetree/bindings/media/ti,omap3isp.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007609F: drivers/media/platform/omap3isp/
Laurent Pinchart0db83ce2014-06-06 12:08:59 -03007610F: drivers/staging/media/omap4iss/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03007611
Tony Lindgrenf5525782009-05-28 13:23:53 -07007612OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03007613M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007614L: linux-usb@vger.kernel.org
7615L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03007616T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07007617S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07007618F: drivers/usb/*/*omap*
7619F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07007620
Kevin Hilman6d994712012-07-16 10:05:07 -07007621OMAP GPIO DRIVER
Javier Martinez Canillasa1415a82014-04-06 16:58:17 +02007622M: Javier Martinez Canillas <javier@dowhile0.org>
Santosh Shilimkar97215802014-10-13 14:16:28 -04007623M: Santosh Shilimkar <ssantosh@kernel.org>
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08007624M: Kevin Hilman <khilman@deeprootsystems.com>
Kevin Hilman6d994712012-07-16 10:05:07 -07007625L: linux-omap@vger.kernel.org
7626S: Maintained
7627F: drivers/gpio/gpio-omap.c
7628
Mark Jacksonc351e292013-10-04 09:15:01 +01007629OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
7630M: Mark Jackson <mpfj@newflow.co.uk>
7631L: linux-omap@vger.kernel.org
7632S: Maintained
7633F: arch/arm/boot/dts/am335x-nano.dts
7634
Bob Copeland0ad122d2008-07-25 19:45:18 -07007635OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007636M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07007637L: linux-karma-devel@lists.sourceforge.net
7638S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007639F: Documentation/filesystems/omfs.txt
7640F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07007641
Harald Weltec1986ee2005-11-13 16:06:29 -08007642OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007643M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08007644S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007645F: drivers/char/pcmcia/cm4000_cs.c
7646F: include/linux/cm4000_cs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007647F: include/uapi/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08007648
Harald Welte77c44ab2005-11-13 16:06:26 -08007649OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007650M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08007651S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007652F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08007653
Jonathan Corbet77d51402007-03-22 19:44:17 -03007654OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007655M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007656L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02007657T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03007658S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007659F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03007660
Thomas Gleixner431bca72007-05-02 09:31:35 +02007661ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007662M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02007663L: linux-mtd@lists.infradead.org
7664S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007665F: drivers/mtd/onenand/
7666F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02007667
Linus Torvalds1da177e2005-04-16 15:20:36 -07007668ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007669M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007670L: osst-users@lists.sourceforge.net
7671L: linux-scsi@vger.kernel.org
7672S: Maintained
Jean Delvaref7269cf2013-07-03 15:05:08 -07007673F: Documentation/scsi/osst.txt
7674F: drivers/scsi/osst.*
7675F: drivers/scsi/osst_*.h
7676F: drivers/scsi/st.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007677
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007678OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007679M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01007680L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007681S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007682F: Documentation/i2c/busses/i2c-ocores
7683F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007684
Grant Likely860c44c2009-10-26 16:49:49 -07007685OPEN FIRMWARE AND FLATTENED DEVICE TREE
Rob Herring5d3ad8a2013-12-03 10:20:16 -06007686M: Rob Herring <robh+dt@kernel.org>
Grant Likelyc8fb70a2015-08-23 13:34:08 -07007687M: Frank Rowand <frowand.list@gmail.com>
7688M: Grant Likely <grant.likely@linaro.org>
Grant Likelyd0fb18c2013-07-19 20:10:12 -07007689L: devicetree@vger.kernel.org
Rob Herringa7fefe92014-12-26 14:05:54 -06007690W: http://www.devicetree.org/
7691T: git git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux.git
Grant Likely860c44c2009-10-26 16:49:49 -07007692S: Maintained
Grant Likelyf8828202013-07-19 18:57:39 -07007693F: drivers/of/
Grant Likely860c44c2009-10-26 16:49:49 -07007694F: include/linux/of*.h
Grant Likelyf8828202013-07-19 18:57:39 -07007695F: scripts/dtc/
Grant Likely860c44c2009-10-26 16:49:49 -07007696
Grant Likelyf8828202013-07-19 18:57:39 -07007697OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
Rob Herring5d3ad8a2013-12-03 10:20:16 -06007698M: Rob Herring <robh+dt@kernel.org>
Grant Likelyf8828202013-07-19 18:57:39 -07007699M: Pawel Moll <pawel.moll@arm.com>
7700M: Mark Rutland <mark.rutland@arm.com>
Ian Campbellde809632013-08-30 09:50:42 +01007701M: Ian Campbell <ijc+devicetree@hellion.org.uk>
Kumar Galabdbff6b2013-08-08 10:51:15 -05007702M: Kumar Gala <galak@codeaurora.org>
Grant Likelyf8828202013-07-19 18:57:39 -07007703L: devicetree@vger.kernel.org
7704S: Maintained
7705F: Documentation/devicetree/
7706F: arch/*/boot/dts/
7707F: include/dt-bindings/
7708
Pantelis Antoniou2bb65f52015-03-17 22:30:57 +02007709OPEN FIRMWARE AND DEVICE TREE OVERLAYS
7710M: Pantelis Antoniou <pantelis.antoniou@konsulko.com>
7711L: devicetree@vger.kernel.org
7712S: Maintained
7713F: Documentation/devicetree/dynamic-resolution-notes.txt
7714F: Documentation/devicetree/overlay-notes.txt
7715F: drivers/of/overlay.c
7716F: drivers/of/resolver.c
7717
Jonas Bonn19f9d392011-06-04 22:00:38 +03007718OPENRISC ARCHITECTURE
7719M: Jonas Bonn <jonas@southpole.se>
7720W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02007721L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03007722S: Maintained
7723T: git git://openrisc.net/~jonas/linux
Joe Perches14430812013-09-11 14:23:50 -07007724F: arch/openrisc/
Jonas Bonn19f9d392011-06-04 22:00:38 +03007725
Jesse Grossccb13522011-10-25 19:26:31 -07007726OPENVSWITCH
Jesse Gross4f337ed2014-05-16 15:57:59 -07007727M: Pravin Shelar <pshelar@nicira.com>
Pravin B Shelarb422da72015-01-02 11:18:21 -08007728L: netdev@vger.kernel.org
Jesse Grossccb13522011-10-25 19:26:31 -07007729L: dev@openvswitch.org
7730W: http://openvswitch.org
Jesse Grossccb13522011-10-25 19:26:31 -07007731S: Maintained
7732F: net/openvswitch/
Pravin B Shelarb422da72015-01-02 11:18:21 -08007733F: include/uapi/linux/openvswitch.h
Jesse Grossccb13522011-10-25 19:26:31 -07007734
Clemens Ladischaf399172011-01-10 16:32:54 +01007735OPL4 DRIVER
7736M: Clemens Ladisch <clemens@ladisch.de>
7737L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7738T: git git://git.alsa-project.org/alsa-kernel.git
7739S: Maintained
7740F: sound/drivers/opl4/
7741
Linus Torvalds1da177e2005-04-16 15:20:36 -07007742OPROFILE
Robert Richter4cf7e712012-10-29 18:53:25 +01007743M: Robert Richter <rric@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007744L: oprofile-list@lists.sf.net
7745S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02007746F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07007747F: arch/*/oprofile/
7748F: drivers/oprofile/
7749F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007750
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007751ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07007752M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08007753M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007754L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
Mark Fasheh01945fa2015-02-27 15:51:40 -08007755W: http://ocfs2.wiki.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007756S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007757F: Documentation/filesystems/ocfs2.txt
7758F: Documentation/filesystems/dlmfs.txt
7759F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007760
Linus Torvalds1da177e2005-04-16 15:20:36 -07007761ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07007762L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02007763W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07007764W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01007765S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007766F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007767
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03007768OSD LIBRARY and FILESYSTEM
Boaz Harroshfadc0752014-10-19 19:19:57 +03007769M: Boaz Harrosh <ooo@electrozaur.com>
Benny Halevyf1f66302014-02-10 11:57:29 +02007770M: Benny Halevy <bhalevy@primarydata.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02007771L: osd-dev@open-osd.org
7772W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07007773T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02007774S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03007775F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07007776F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03007777F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02007778
Miklos Szeredief94b182014-11-20 16:39:59 +01007779OVERLAY FILESYSTEM
Neil Brown7c37fbd2014-10-24 00:14:39 +02007780M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi1d113732014-11-20 16:40:01 +01007781L: linux-unionfs@vger.kernel.org
7782T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
Neil Brown7c37fbd2014-10-24 00:14:39 +02007783S: Supported
Miklos Szeredi1d113732014-11-20 16:40:01 +01007784F: fs/overlayfs/
Neil Brown7c37fbd2014-10-24 00:14:39 +02007785F: Documentation/filesystems/overlayfs.txt
7786
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007787P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02007788M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007789L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02007790W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007791S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007792F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007793
Olof Johanssonf5cd7872007-01-31 21:43:54 -06007794PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007795M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06007796L: netdev@vger.kernel.org
7797S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07007798F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06007799
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01007800PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007801M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01007802L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01007803S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007804F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01007805
Steffen Klassert48fc2672010-08-13 10:10:46 -04007806PADATA PARALLEL EXECUTION MECHANISM
7807M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04007808L: linux-crypto@vger.kernel.org
7809S: Maintained
7810F: kernel/padata.c
7811F: include/linux/padata.h
7812F: Documentation/padata.txt
7813
Harald Welte709ee532008-09-23 17:46:57 +02007814PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007815M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05007816L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02007817S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007818F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02007819
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01007820PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07007821M: David Howells <dhowells@redhat.com>
7822M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01007823L: linux-am33-list@redhat.com (moderated for non-subscribers)
7824W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
7825S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007826F: Documentation/mn10300/
7827F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01007828
Sudip Mukherjee64dfff02015-05-20 20:57:02 +05307829PARALLEL PORT SUBSYSTEM
7830M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
7831M: Sudip Mukherjee <sudip@vectorindia.org>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07007832L: linux-parport@lists.infradead.org (subscribers-only)
Sudip Mukherjee64dfff02015-05-20 20:57:02 +05307833S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007834F: drivers/parport/
7835F: include/linux/parport*.h
7836F: drivers/char/ppdev.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007837F: include/uapi/linux/ppdev.h
Sudip Mukherjee64dfff02015-05-20 20:57:02 +05307838F: Documentation/parport*.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07007839
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007840PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08007841M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07007842M: Chris Wright <chrisw@sous-sol.org>
7843M: Alok Kataria <akataria@vmware.com>
7844M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00007845L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007846S: Supported
Luis R. Rodrigueza2e19992015-02-13 17:13:40 +10307847F: Documentation/virtual/paravirt_ops.txt
Joe Perches679655d2009-04-07 20:44:32 -07007848F: arch/*/kernel/paravirt*
7849F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007850
Linus Torvalds1da177e2005-04-16 15:20:36 -07007851PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07007852M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07007853L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007854S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007855F: Documentation/blockdev/paride.txt
7856F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007857
7858PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00007859M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05007860M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00007861L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007862W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08007863Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07007864T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Helge Dellerfbb46caa2013-05-16 21:00:16 +00007865T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007866S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007867F: arch/parisc/
Helge Deller2b6bac92013-05-30 13:48:07 +00007868F: Documentation/parisc/
Joe Perches679655d2009-04-07 20:44:32 -07007869F: drivers/parisc/
Helge Deller2b6bac92013-05-30 13:48:07 +00007870F: drivers/char/agp/parisc-agp.c
7871F: drivers/input/serio/gscps2.c
7872F: drivers/parport/parport_gsc.*
7873F: drivers/tty/serial/8250/8250_gsc.c
Jingoo Han8a61f012014-07-01 15:36:01 +09007874F: drivers/video/fbdev/sti*
Helge Deller2b6bac92013-05-30 13:48:07 +00007875F: drivers/video/console/sti*
7876F: drivers/video/logo/logo_parisc*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007877
Jim Cromie1662d322006-10-06 00:43:59 -07007878PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007879M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07007880L: lm-sensors@lm-sensors.org
7881S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007882F: Documentation/hwmon/pc87360
7883F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07007884
7885PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007886M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07007887S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007888F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07007889
Jean Delvare1ad107f2010-08-14 21:09:00 +02007890PC87427 HARDWARE MONITORING DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07007891M: Jean Delvare <jdelvare@suse.com>
Jean Delvare1ad107f2010-08-14 21:09:00 +02007892L: lm-sensors@lm-sensors.org
7893S: Maintained
7894F: Documentation/hwmon/pc87427
7895F: drivers/hwmon/pc87427.c
7896
Riku Voipiob26e0ed2009-03-03 21:37:17 +02007897PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007898M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02007899S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07007900F: drivers/leds/leds-pca9532.c
7901F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02007902
Guenter Roeck5ce914a2010-10-24 18:16:59 +02007903PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07007904M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02007905L: linux-i2c@vger.kernel.org
7906S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02007907F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02007908
Khalid Aziz3971dae2012-04-12 12:49:13 -07007909PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07007910M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07007911S: Maintained
7912F: drivers/firmware/pcdp.*
7913
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06007914PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07007915M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07007916L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06007917S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007918F: Documentation/PCI/pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06007919
Linus Torvalds1da177e2005-04-16 15:20:36 -07007920PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07007921M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07007922L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06007923Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06007924T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007925S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007926F: Documentation/PCI/
7927F: drivers/pci/
7928F: include/linux/pci*
Bjorn Helgaas6b49ee42013-10-09 14:39:08 -06007929F: arch/x86/pci/
Bjorn Helgaascad01f92014-04-05 15:07:00 -06007930F: arch/x86/kernel/quirks.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007931
Rob Herringb7e78172015-01-28 10:16:18 -06007932PCI DRIVER FOR ARM VERSATILE PLATFORM
7933M: Rob Herring <robh@kernel.org>
7934L: linux-pci@vger.kernel.org
7935L: linux-arm-kernel@lists.infradead.org
7936S: Maintained
7937F: Documentation/devicetree/bindings/pci/versatile.txt
7938F: drivers/pci/host/pci-versatile.c
7939
Tanmay Inamdar5f6b6cc2014-10-01 13:01:35 -06007940PCI DRIVER FOR APPLIEDMICRO XGENE
7941M: Tanmay Inamdar <tinamdar@apm.com>
7942L: linux-pci@vger.kernel.org
7943L: linux-arm-kernel@lists.infradead.org
7944S: Maintained
7945F: Documentation/devicetree/bindings/pci/xgene-pci.txt
7946F: drivers/pci/host/pci-xgene.c
7947
Minghuan Lian62d0ff832014-11-05 16:45:11 +08007948PCI DRIVER FOR FREESCALE LAYERSCAPE
7949M: Minghuan Lian <minghuan.Lian@freescale.com>
7950M: Mingkai Hu <mingkai.hu@freescale.com>
7951M: Roy Zang <tie-fei.zang@freescale.com>
7952L: linuxppc-dev@lists.ozlabs.org
7953L: linux-pci@vger.kernel.org
7954L: linux-arm-kernel@lists.infradead.org
7955S: Maintained
7956F: drivers/pci/host/*layerscape*
7957
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07007958PCI DRIVER FOR IMX6
Lucas Stachf175aa22015-01-19 11:17:31 +01007959M: Richard Zhu <Richard.Zhu@freescale.com>
Lucas Stach1ba55f52014-07-31 20:16:04 +02007960M: Lucas Stach <l.stach@pengutronix.de>
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07007961L: linux-pci@vger.kernel.org
7962L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7963S: Maintained
7964F: drivers/pci/host/*imx6*
7965
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -06007966PCI DRIVER FOR TI KEYSTONE
7967M: Murali Karicheri <m-karicheri2@ti.com>
7968L: linux-pci@vger.kernel.org
7969L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7970S: Maintained
7971F: drivers/pci/host/*keystone*
7972
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07007973PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
7974M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7975M: Jason Cooper <jason@lakedaemon.net>
7976L: linux-pci@vger.kernel.org
7977L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7978S: Maintained
7979F: drivers/pci/host/*mvebu*
7980
Thierry Reding0447cfd2013-08-09 16:49:32 +02007981PCI DRIVER FOR NVIDIA TEGRA
7982M: Thierry Reding <thierry.reding@gmail.com>
7983L: linux-tegra@vger.kernel.org
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07007984L: linux-pci@vger.kernel.org
Thierry Reding0447cfd2013-08-09 16:49:32 +02007985S: Supported
7986F: Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
7987F: drivers/pci/host/pci-tegra.c
7988
Kishon Vijay Abraham I47ff3de2014-07-22 15:23:45 -06007989PCI DRIVER FOR TI DRA7XX
7990M: Kishon Vijay Abraham I <kishon@ti.com>
7991L: linux-omap@vger.kernel.org
7992L: linux-pci@vger.kernel.org
7993S: Supported
7994F: Documentation/devicetree/bindings/pci/ti-pci.txt
7995F: drivers/pci/host/pci-dra7xx.c
7996
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07007997PCI DRIVER FOR RENESAS R-CAR
7998M: Simon Horman <horms@verge.net.au>
7999L: linux-pci@vger.kernel.org
8000L: linux-sh@vger.kernel.org
8001S: Maintained
8002F: drivers/pci/host/*rcar*
8003
Jingoo Han4af82252013-09-12 20:29:24 +09008004PCI DRIVER FOR SAMSUNG EXYNOS
Jingoo Hanb7701752015-05-14 15:17:07 -07008005M: Jingoo Han <jingoohan1@gmail.com>
Jingoo Han4af82252013-09-12 20:29:24 +09008006L: linux-pci@vger.kernel.org
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008007L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8008L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Jingoo Han4af82252013-09-12 20:29:24 +09008009S: Maintained
8010F: drivers/pci/host/pci-exynos.c
8011
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008012PCI DRIVER FOR SYNOPSIS DESIGNWARE
Jingoo Hanb7701752015-05-14 15:17:07 -07008013M: Jingoo Han <jingoohan1@gmail.com>
Pratyush Anand110baab2015-04-30 09:46:07 +05308014M: Pratyush Anand <pratyush.anand@gmail.com>
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008015L: linux-pci@vger.kernel.org
8016S: Maintained
8017F: drivers/pci/host/*designware*
8018
Will Deaconcf288552014-05-01 12:04:28 +01008019PCI DRIVER FOR GENERIC OF HOSTS
8020M: Will Deacon <will.deacon@arm.com>
8021L: linux-pci@vger.kernel.org
8022L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8023S: Maintained
8024F: Documentation/devicetree/bindings/pci/host-generic-pci.txt
8025F: drivers/pci/host/pci-host-generic.c
8026
Pratyush Anand51b66a62014-02-11 11:39:26 +05308027PCIE DRIVER FOR ST SPEAR13XX
Pratyush Anand110baab2015-04-30 09:46:07 +05308028M: Pratyush Anand <pratyush.anand@gmail.com>
Pratyush Anand51b66a62014-02-11 11:39:26 +05308029L: linux-pci@vger.kernel.org
Pratyush Anand110baab2015-04-30 09:46:07 +05308030S: Maintained
Pratyush Anand51b66a62014-02-11 11:39:26 +05308031F: drivers/pci/host/*spear*
8032
Duc Dangdcd19de2015-06-05 15:56:34 -05008033PCI MSI DRIVER FOR APPLIEDMICRO XGENE
8034M: Duc Dang <dhdang@apm.com>
8035L: linux-pci@vger.kernel.org
8036L: linux-arm-kernel@lists.infradead.org
8037S: Maintained
8038F: Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
8039F: drivers/pci/host/pci-xgene-msi.c
8040
Linus Torvalds1da177e2005-04-16 15:20:36 -07008041PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07008042P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07008043L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08008044W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07008045T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07008046S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008047F: Documentation/pcmcia/
8048F: drivers/pcmcia/
8049F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008050
8051PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08008052M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07008053L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008054S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07008055F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008056
Steffen Klassert48fc2672010-08-13 10:10:46 -04008057PCRYPT PARALLEL CRYPTO ENGINE
8058M: Steffen Klassert <steffen.klassert@secunet.com>
8059L: linux-crypto@vger.kernel.org
8060S: Maintained
8061F: crypto/pcrypt.c
8062F: include/crypto/pcrypt.h
8063
Tejun Heoe72df0b2010-12-10 17:02:49 +01008064PER-CPU MEMORY ALLOCATOR
8065M: Tejun Heo <tj@kernel.org>
8066M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01008067T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
8068S: Maintained
8069F: include/linux/percpu*.h
8070F: mm/percpu*.c
8071F: arch/*/include/asm/percpu.h
8072
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07008073PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07008074M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07008075S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008076F: include/linux/delayacct.h
8077F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07008078
Ingo Molnar57c0c152009-09-21 12:20:38 +02008079PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008080M: Peter Zijlstra <a.p.zijlstra@chello.nl>
Ingo Molnardd9b2382012-03-19 21:03:46 +01008081M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melof80c5392014-03-27 17:36:14 -03008082M: Arnaldo Carvalho de Melo <acme@kernel.org>
Ingo Molnar981c3a42014-01-21 10:59:20 +01008083L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008084T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10008085S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09008086F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02008087F: include/linux/perf_event.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008088F: include/uapi/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01008089F: arch/*/kernel/perf_event*.c
8090F: arch/*/kernel/*/perf_event*.c
8091F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02008092F: arch/*/include/asm/perf_event.h
Vincent Legolla0032362009-10-13 14:48:14 +02008093F: arch/*/kernel/perf_callchain.c
8094F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10008095
Jim Cromiedd49d0f2006-03-24 18:08:17 +01008096PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07008097M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01008098L: linux-abi-devel@lists.sourceforge.net
8099S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008100F: include/linux/personality.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008101F: include/uapi/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01008102
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00008103PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00008104M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00008105S: Supported
8106F: Documentation/networking/phonet.txt
8107F: include/linux/phonet.h
8108F: include/net/phonet/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008109F: include/uapi/linux/phonet.h
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00008110F: net/phonet/
8111
Linus Torvalds1da177e2005-04-16 15:20:36 -07008112PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008113M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008114L: linux-mtd@lists.infradead.org
8115S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008116F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008117
Bruno Prémontefdbb102012-07-30 21:39:03 +02008118PICOLCD HID DRIVER
8119M: Bruno Prémont <bonbons@linux-vserver.org>
8120L: linux-input@vger.kernel.org
8121S: Maintained
8122F: drivers/hid/hid-picolcd*
8123
Jamie Ilesa53bfa02011-12-12 20:28:42 +00008124PICOXCELL SUPPORT
8125M: Jamie Iles <jamie@jamieiles.com>
8126L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8127T: git git://github.com/jamieiles/linux-2.6-ji.git
8128S: Supported
Joe Perchesb8733982014-08-08 14:25:12 -07008129F: arch/arm/boot/dts/picoxcell*
Joe Perches14430812013-09-11 14:23:50 -07008130F: arch/arm/mach-picoxcell/
Joe Perchesb8733982014-08-08 14:25:12 -07008131F: drivers/crypto/picoxcell*
Jamie Ilesa53bfa02011-12-12 20:28:42 +00008132
Linus Walleij2744e8a2011-05-02 20:50:54 +02008133PIN CONTROL SUBSYSTEM
8134M: Linus Walleij <linus.walleij@linaro.org>
David Cohenc11f0422014-10-16 19:06:59 -07008135L: linux-gpio@vger.kernel.org
Linus Walleijdbe752a2015-01-19 11:27:19 +01008136T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
Linus Walleij2744e8a2011-05-02 20:50:54 +02008137S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07008138F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02008139F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02008140
Jean-Christophe PLAGNIOL-VILLARD2201bbb2012-10-27 19:53:12 +02008141PIN CONTROLLER - ATMEL AT91
8142M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
8143L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8144S: Maintained
Alexandre Bellonic654b6b2014-10-17 11:49:40 +02008145F: drivers/pinctrl/pinctrl-at91.*
Jean-Christophe PLAGNIOL-VILLARD2201bbb2012-10-27 19:53:12 +02008146
Mika Westerbergcbd1b652014-10-24 15:16:53 +03008147PIN CONTROLLER - INTEL
8148M: Mika Westerberg <mika.westerberg@linux.intel.com>
8149M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
8150S: Maintained
8151F: drivers/pinctrl/intel/
Viresh Kumardeda8282012-03-28 22:27:07 +05308152
Laurent Pinchart9963b532014-07-02 16:33:31 +02008153PIN CONTROLLER - RENESAS
8154M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8155L: linux-sh@vger.kernel.org
8156S: Maintained
8157F: drivers/pinctrl/sh-pfc/
8158
Doug Andersonb75e60d2013-06-16 15:17:46 -07008159PIN CONTROLLER - SAMSUNG
Tomasz Figafea685e2014-08-26 16:30:53 +02008160M: Tomasz Figa <tomasz.figa@gmail.com>
Doug Andersonb75e60d2013-06-16 15:17:46 -07008161L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8162L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8163S: Maintained
Sachin Kamat9b5b33f2014-07-11 14:29:50 +05308164F: drivers/pinctrl/samsung/
Doug Andersonb75e60d2013-06-16 15:17:46 -07008165
Viresh Kumardeda8282012-03-28 22:27:07 +05308166PIN CONTROLLER - ST SPEAR
Viresh Kumarda899472015-07-17 16:23:50 -07008167M: Viresh Kumar <vireshk@kernel.org>
Viresh Kumardeda8282012-03-28 22:27:07 +05308168L: spear-devel@list.st.com
8169L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8170W: http://www.st.com/spear
8171S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02008172F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05308173
Peter Osterlund249a6772005-09-27 21:45:30 -07008174PKTCDVD DRIVER
Jiri Kosinae5f64502015-08-09 09:11:34 +02008175M: Jiri Kosina <jikos@kernel.org>
Peter Osterlund249a6772005-09-27 21:45:30 -07008176S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008177F: drivers/block/pktcdvd.c
8178F: include/linux/pktcdvd.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008179F: include/uapi/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07008180
GuanXuetaob31d8272011-01-16 00:35:49 +08008181PKUNITY SOC DRIVERS
8182M: Guan Xuetao <gxt@mprc.pku.edu.cn>
8183W: http://mprc.pku.edu.cn/~guanxuetao/linux
8184S: Maintained
Guan Xuetaoceebf4d2014-05-27 07:53:10 +08008185T: git git://github.com/gxt/linux.git
GuanXuetaob31d8272011-01-16 00:35:49 +08008186F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08008187F: drivers/i2c/busses/i2c-puv3.c
Jingoo Han8a61f012014-07-01 15:36:01 +09008188F: drivers/video/fbdev/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08008189F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08008190
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07008191PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07008192M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07008193L: lm-sensors@lm-sensors.org
8194W: http://www.lm-sensors.org/
8195W: http://www.roeck-us.net/linux/drivers/
8196T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8197S: Maintained
8198F: Documentation/hwmon/pmbus
8199F: drivers/hwmon/pmbus/
8200F: include/linux/i2c/pmbus.h
8201
Anil Ravindranath89a36812009-08-25 17:35:18 -07008202PMC SIERRA MaxRAID DRIVER
Anil Ravindranath89a36812009-08-25 17:35:18 -07008203L: linux-scsi@vger.kernel.org
8204W: http://www.pmc-sierra.com/
Joe Perches3cdea4d712015-09-09 15:36:14 -07008205S: Orphan
Anil Ravindranath89a36812009-08-25 17:35:18 -07008206F: drivers/scsi/pmcraid.*
8207
jack wangdbf9bfe2009-10-14 16:19:21 +08008208PMC SIERRA PM8001 DRIVER
Jack Wangd32477e2015-07-29 12:02:50 +02008209M: Jack Wang <jinpu.wang@profitbricks.com>
jack wangdbf9bfe2009-10-14 16:19:21 +08008210M: lindar_liu@usish.com
Suresh Thiagarajanf5a7b522014-07-30 17:37:43 +05308211L: pmchba@pmcs.com
jack wangdbf9bfe2009-10-14 16:19:21 +08008212L: linux-scsi@vger.kernel.org
8213S: Supported
8214F: drivers/scsi/pm8001/
8215
Linus Torvalds1da177e2005-04-16 15:20:36 -07008216POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07008217M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar981c3a42014-01-21 10:59:20 +01008218L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008219T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner5cee9642014-06-22 12:06:40 +02008220S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008221F: fs/timerfd.c
8222F: include/linux/timer*
Thomas Gleixner5cee9642014-06-22 12:06:40 +02008223F: kernel/time/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008224
Anton Vorontsov3be86142007-07-15 04:43:36 +04008225POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Sebastian Reichelad8464a2014-07-16 20:14:30 +02008226M: Sebastian Reichel <sre@kernel.org>
Dmitry Eremin-Solenikov57318932014-01-21 03:33:09 +04008227M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008228M: David Woodhouse <dwmw2@infradead.org>
Sebastian Reichelad8464a2014-07-16 20:14:30 +02008229L: linux-pm@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07008230T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04008231S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008232F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07008233F: drivers/power/
Sebastian Reichel26305022015-07-24 23:11:28 +02008234X: drivers/power/avs/
Anton Vorontsov3be86142007-07-15 04:43:36 +04008235
Mark Rutland514f1612015-07-31 15:46:20 +01008236POWER STATE COORDINATION INTERFACE (PSCI)
8237M: Mark Rutland <mark.rutland@arm.com>
8238M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
8239L: linux-arm-kernel@lists.infradead.org
8240S: Maintained
8241F: drivers/firmware/psci.c
8242F: include/linux/psci.h
8243F: include/uapi/linux/psci.h
8244
Linus Torvalds1da177e2005-04-16 15:20:36 -07008245PNP SUPPORT
Joe Perches9c3646d2015-06-25 15:02:00 -07008246M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008247S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008248F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008249
Vitaly Wool999445d2007-01-04 13:07:03 +01008250PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008251M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01008252L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01008253S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008254F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01008255
Linus Torvalds1da177e2005-04-16 15:20:36 -07008256PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07008257M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008258L: linux-ppp@vger.kernel.org
8259S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07008260F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008261
8262PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07008263M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008264S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008265F: net/atm/pppoatm.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008266F: include/uapi/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008267
8268PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07008269M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008270S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07008271F: drivers/net/ppp/pppoe.c
8272F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008273
James Chapmana6d23702007-06-27 15:53:17 -07008274PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07008275M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07008276S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07008277F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07008278F: include/linux/if_pppol2tp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008279F: include/uapi/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07008280
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07008281PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07008282M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07008283W: http://wiki.enneenne.com/index.php/LinuxPPS_support
8284L: linuxpps@ml.enneenne.com (subscribers-only)
8285S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07008286F: Documentation/pps/
8287F: drivers/pps/
8288F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07008289
Harry Wei71a6d0a2011-05-11 15:13:33 -07008290PPTP DRIVER
8291M: Dmitry Kozlov <xeb@mail.ru>
8292L: netdev@vger.kernel.org
8293S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07008294F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07008295W: http://sourceforge.net/projects/accel-pptp
8296
Linus Torvalds1da177e2005-04-16 15:20:36 -07008297PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07008298M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008299L: kpreempt-tech@lists.sourceforge.net
8300W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
8301S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008302F: Documentation/preempt-locking.txt
8303F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008304
8305PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008306M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07008307L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04008308W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04008309S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07008310F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008311
Masakazu Mokuno02c18892007-07-05 20:11:16 +09008312PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00008313M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09008314L: netdev@vger.kernel.org
Michael Ellermana14ab6b2015-05-01 13:20:25 +10008315L: linuxppc-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00008316S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07008317F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09008318
Geoff Levandf58a9d12006-11-23 00:46:51 +01008319PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00008320M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10008321L: linuxppc-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00008322S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008323F: arch/powerpc/boot/ps3*
8324F: arch/powerpc/include/asm/lv1call.h
8325F: arch/powerpc/include/asm/ps3*.h
8326F: arch/powerpc/platforms/ps3/
8327F: drivers/*/ps3*
8328F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00008329F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07008330F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00008331F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01008332
Jim Pariscffb4add2009-01-06 11:32:10 +00008333PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008334M: Jim Paris <jim@jtan.com>
Geoff Levand3715a5d2015-06-10 18:00:18 +00008335M: Geoff Levand <geoff@infradead.org>
Michael Ellermana14ab6b2015-05-01 13:20:25 +10008336L: linuxppc-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00008337S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07008338F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00008339
Anton Vorontsov8defe592012-08-03 18:07:20 -07008340PSTORE FILESYSTEM
Anton Vorontsov9d5e2a02013-06-09 09:41:23 -07008341M: Anton Vorontsov <anton@enomsg.org>
Anton Vorontsov8defe592012-08-03 18:07:20 -07008342M: Colin Cross <ccross@android.com>
8343M: Kees Cook <keescook@chromium.org>
8344M: Tony Luck <tony.luck@intel.com>
8345S: Maintained
8346T: git git://git.infradead.org/users/cbou/linux-pstore.git
8347F: fs/pstore/
8348F: include/linux/pstore*
Matt Fleming04851772013-02-08 15:48:51 +00008349F: drivers/firmware/efi/efi-pstore.c
Anton Vorontsov8defe592012-08-03 18:07:20 -07008350F: drivers/acpi/apei/erst.c
8351
Richard Cochran7fbc4152012-03-10 01:55:53 +00008352PTP HARDWARE CLOCK SUPPORT
8353M: Richard Cochran <richardcochran@gmail.com>
Jiri Bence7333e32013-03-26 04:01:12 +00008354L: netdev@vger.kernel.org
Richard Cochran7fbc4152012-03-10 01:55:53 +00008355S: Maintained
8356W: http://linuxptp.sourceforge.net/
8357F: Documentation/ABI/testing/sysfs-ptp
8358F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07008359F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00008360F: drivers/net/phy/dp83640*
8361F: drivers/ptp/*
8362F: include/linux/ptp_cl*
8363
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07008364PTRACE SUPPORT
Richard Weinbergere846ee52014-08-08 14:23:46 -07008365M: Roland McGrath <roland@hack.frob.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008366M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07008367S: Maintained
8368F: include/asm-generic/syscall.h
8369F: include/linux/ptrace.h
8370F: include/linux/regset.h
8371F: include/linux/tracehook.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008372F: include/uapi/linux/ptrace.h
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07008373F: kernel/ptrace.c
8374
Michael Krufky83202042006-07-03 00:24:18 -07008375PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008376M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03008377L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008378L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07008379W: http://www.isely.net/pvrusb2/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008380T: git git://linuxtv.org/media_tree.git
Michael Krufky83202042006-07-03 00:24:18 -07008381S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008382F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008383F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07008384
Hans de Goede39532e62012-11-04 17:05:59 -03008385PWC WEBCAM DRIVER
8386M: Hans de Goede <hdegoede@redhat.com>
8387L: linux-media@vger.kernel.org
8388T: git git://linuxtv.org/media_tree.git
8389S: Maintained
8390F: drivers/media/usb/pwc/*
8391
Kamil Debski93c090b2014-08-20 11:29:23 +02008392PWM FAN DRIVER
8393M: Kamil Debski <k.debski@samsung.com>
8394L: lm-sensors@lm-sensors.org
8395S: Supported
8396F: Documentation/devicetree/bindings/hwmon/pwm-fan.txt
8397F: Documentation/hwmon/pwm-fan
8398F: drivers/hwmon/pwm-fan.c
8399
Thierry Reding200efed2012-03-27 13:16:18 +02008400PWM SUBSYSTEM
Thierry Redingaa3495f2013-05-06 12:50:36 +02008401M: Thierry Reding <thierry.reding@gmail.com>
8402L: linux-pwm@vger.kernel.org
Sascha Hauer0c2498f2011-01-28 09:40:40 +01008403S: Maintained
Thierry Reding006e8542013-11-01 11:15:05 +01008404T: git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
Thierry Reding200efed2012-03-27 13:16:18 +02008405F: Documentation/pwm.txt
8406F: Documentation/devicetree/bindings/pwm/
8407F: include/linux/pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01008408F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07008409F: drivers/video/backlight/pwm_bl.c
8410F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01008411
Eric Miao30ec2612008-06-12 15:21:41 -07008412PXA2xx/PXA3xx SUPPORT
Robert Jarzmik8da5e302014-09-24 23:08:00 +02008413M: Daniel Mack <daniel@zonque.org>
Haojian Zhuanga323f662012-03-14 18:33:07 +08008414M: Haojian Zhuang <haojian.zhuang@gmail.com>
Robert Jarzmik8da5e302014-09-24 23:08:00 +02008415M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -07008416L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08008417T: git git://github.com/hzhuang1/linux.git
Robert Jarzmik8da5e302014-09-24 23:08:00 +02008418T: git git://github.com/rjarzmik/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008419S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008420F: arch/arm/mach-pxa/
Robert Jarzmik820439f2015-05-25 23:29:19 +02008421F: drivers/dma/pxa*
Joe Perches679655d2009-04-07 20:44:32 -07008422F: drivers/pcmcia/pxa2xx*
Joe Perches9df92e62012-01-10 15:09:06 -08008423F: drivers/spi/spi-pxa2xx*
Joe Perchesfaf2e1d2014-08-08 14:26:18 -07008424F: drivers/usb/gadget/udc/pxa2*
Joe Perches679655d2009-04-07 20:44:32 -07008425F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01008426F: sound/arm/pxa*
Joe Perches14430812013-09-11 14:23:50 -07008427F: sound/soc/pxa/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008428
Ezequiel Garciaec64d3b2013-12-04 15:28:46 -08008429PXA3xx NAND FLASH DRIVER
8430M: Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
8431L: linux-mtd@lists.infradead.org
8432S: Maintained
Joe Perches9a67f092014-08-08 14:25:10 -07008433F: drivers/mtd/nand/pxa3xx_nand.c
Ezequiel Garciaec64d3b2013-12-04 15:28:46 -08008434
Haojian Zhuang3f640c62011-12-09 09:58:41 +08008435MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07008436M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08008437M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08008438L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08008439T: git git://github.com/hzhuang1/linux.git
8440T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08008441S: Maintained
Haojian Zhuang3f640c62011-12-09 09:58:41 +08008442F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08008443
Pierre Ossman272f1332007-05-14 21:25:26 +02008444PXA MMCI DRIVER
8445S: Orphan
8446
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08008447PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008448M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08008449L: rtc-linux@googlegroups.com
8450S: Maintained
8451
Tadeusz Strukcea40012014-06-05 13:44:39 -07008452QAT DRIVER
Joe Perches49e7d9d2015-04-15 16:17:31 -07008453M: Tadeusz Struk <tadeusz.struk@intel.com>
8454L: qat-linux@intel.com
8455S: Supported
8456F: drivers/crypto/qat/
Tadeusz Strukcea40012014-06-05 13:44:39 -07008457
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07008458QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04008459M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07008460L: linux-rdma@vger.kernel.org
8461S: Supported
8462F: drivers/infiniband/hw/qib/
8463
Jes Sorensen5e9772b2010-06-30 15:37:38 +02008464QLOGIC QLA1280 SCSI DRIVER
8465M: Michael Reed <mdr@sgi.com>
8466L: linux-scsi@vger.kernel.org
8467S: Maintained
8468F: drivers/scsi/qla1280.[ch]
8469
Linus Torvalds1da177e2005-04-16 15:20:36 -07008470QLOGIC QLA2XXX FC-SCSI DRIVER
Saurav Kashyap2c804eb2013-10-30 03:38:28 -04008471M: qla2xxx-upstream@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07008472L: linux-scsi@vger.kernel.org
8473S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008474F: Documentation/scsi/LICENSE.qla2xxx
8475F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008476
Ravi Anand883c98f2010-04-28 11:45:49 +05308477QLOGIC QLA4XXX iSCSI DRIVER
Nilesh Javali1018b8b2015-01-07 00:49:23 -05008478M: QLogic-Storage-Upstream@qlogic.com
Ravi Anand883c98f2010-04-28 11:45:49 +05308479L: linux-scsi@vger.kernel.org
8480S: Supported
Vikas Chaudharybacfb812013-07-11 02:09:43 -04008481F: Documentation/scsi/LICENSE.qla4xxx
Ravi Anand883c98f2010-04-28 11:45:49 +05308482F: drivers/scsi/qla4xxx/
8483
Ron Mercer5a4faa82006-07-25 00:40:21 -07008484QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00008485M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008486M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa82006-07-25 00:40:21 -07008487M: linux-driver@qlogic.com
8488L: netdev@vger.kernel.org
8489S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008490F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07008491F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa82006-07-25 00:40:21 -07008492
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00008493QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Sony Chacko195ca382013-03-06 13:03:25 +00008494M: Shahed Shaikh <shahed.shaikh@qlogic.com>
Shahed Shaikh9f35a3c2014-08-27 12:43:21 -04008495M: Dept-GELinuxNICDev@qlogic.com
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00008496L: netdev@vger.kernel.org
8497S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07008498F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00008499
Ron Mercerc4e84bd2008-09-18 11:56:28 -04008500QLOGIC QLGE 10Gb ETHERNET DRIVER
Harish Patilc9b1a5b2014-09-18 17:27:25 -04008501M: Harish Patil <harish.patil@qlogic.com>
8502M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
8503M: Dept-GELinuxNICDev@qlogic.com
Joe Perches4cbfbe22009-07-29 15:04:21 -07008504M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04008505L: netdev@vger.kernel.org
8506S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07008507F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04008508
Linus Torvalds1da177e2005-04-16 15:20:36 -07008509QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008510M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008511W: http://www.alarsen.net/linux/qnx4fs/
8512S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07008513F: fs/qnx4/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008514F: include/uapi/linux/qnx4_fs.h
8515F: include/uapi/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008516
Antti Palosaari91952bc2012-10-01 12:28:46 -03008517QT1010 MEDIA DRIVER
8518M: Antti Palosaari <crope@iki.fi>
8519L: linux-media@vger.kernel.org
8520W: http://linuxtv.org/
8521W: http://palosaari.fi/linux/
8522Q: http://patchwork.linuxtv.org/project/linux-media/list/
8523T: git git://linuxtv.org/anttip/media_tree.git
8524S: Maintained
8525F: drivers/media/tuners/qt1010*
8526
Sujith Manoharan966fb5e2013-11-06 10:43:27 +05308527QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
8528M: QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
8529L: linux-wireless@vger.kernel.org
8530L: ath9k-devel@lists.ath9k.org
8531W: http://wireless.kernel.org/en/users/Drivers/ath9k
8532S: Supported
8533F: drivers/net/wireless/ath/ath9k/
8534
Kalle Valo2ea0ffc2013-07-22 12:22:19 +03008535QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
8536M: Kalle Valo <kvalo@qca.qualcomm.com>
8537L: ath10k@lists.infradead.org
8538W: http://wireless.kernel.org/en/users/Drivers/ath10k
8539T: git git://github.com/kvalo/ath.git
8540S: Supported
8541F: drivers/net/wireless/ath/ath10k/
8542
Richard Kuo4f4567c2011-10-31 18:56:38 -05008543QUALCOMM HEXAGON ARCHITECTURE
8544M: Richard Kuo <rkuo@codeaurora.org>
8545L: linux-hexagon@vger.kernel.org
8546S: Supported
8547F: arch/hexagon/
8548
Eugene Krasnikov8e84c252013-10-08 21:25:58 +01008549QUALCOMM WCN36XX WIRELESS DRIVER
8550M: Eugene Krasnikov <k.eugene.e@gmail.com>
8551L: wcn36xx@lists.infradead.org
8552W: http://wireless.kernel.org/en/users/Drivers/wcn36xx
8553T: git git://github.com/KrasnikovEugene/wcn36xx.git
8554S: Supported
8555F: drivers/net/wireless/ath/wcn36xx/
8556
Yehuda Sadeh602adf42010-08-12 16:11:25 -07008557RADOS BLOCK DEVICE (RBD)
Sage Weil0f5417c2015-02-19 10:10:40 -08008558M: Ilya Dryomov <idryomov@gmail.com>
8559M: Sage Weil <sage@redhat.com>
Alex Elder527a88b2013-12-26 08:37:43 -06008560M: Alex Elder <elder@kernel.org>
Sage Weil398ecff52015-07-09 11:46:14 -04008561L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07008562W: http://ceph.com/
8563T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil6e67b7a2015-07-09 11:47:37 -04008564T: git git://github.com/ceph/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07008565S: Supported
Sage Weil398ecff52015-07-09 11:46:14 -04008566F: Documentation/ABI/testing/sysfs-bus-rbd
Yehuda Sadeh602adf42010-08-12 16:11:25 -07008567F: drivers/block/rbd.c
8568F: drivers/block/rbd_types.h
8569
Linus Torvalds1da177e2005-04-16 15:20:36 -07008570RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008571M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008572L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008573S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09008574F: drivers/video/fbdev/aty/radeon*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008575F: include/uapi/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008576
Hans de Goedec6c9b342012-11-04 17:03:58 -03008577RADIOSHARK RADIO DRIVER
8578M: Hans de Goede <hdegoede@redhat.com>
8579L: linux-media@vger.kernel.org
8580T: git git://linuxtv.org/media_tree.git
8581S: Maintained
8582F: drivers/media/radio/radio-shark.c
8583
8584RADIOSHARK2 RADIO DRIVER
8585M: Hans de Goede <hdegoede@redhat.com>
8586L: linux-media@vger.kernel.org
8587T: git git://linuxtv.org/media_tree.git
8588S: Maintained
8589F: drivers/media/radio/radio-shark2.c
8590F: drivers/media/radio/radio-tea5777.c
8591
Linus Torvalds1da177e2005-04-16 15:20:36 -07008592RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008593M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008594L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008595S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09008596F: drivers/video/fbdev/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008597
Randy Dunlape7839f22008-10-12 16:11:45 -07008598RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07008599P: rt2x00 project
Stanislaw Gruszkab1824272014-09-28 14:03:06 +02008600M: Stanislaw Gruszka <sgruszka@redhat.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01008601M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07008602L: linux-wireless@vger.kernel.org
Ivo van Doorn95ea3622007-09-25 17:57:13 -07008603S: Maintained
8604F: drivers/net/wireless/rt2x00/
8605
Nick Piggin9db55792008-02-08 04:19:49 -08008606RAMDISK RAM BLOCK DEVICE DRIVER
Ross Zwislerea7618e2015-03-17 12:56:30 -06008607M: Jens Axboe <axboe@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08008608S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008609F: Documentation/blockdev/ramdisk.txt
8610F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08008611
Matt Mackall9e95ce22005-04-16 15:25:56 -07008612RANDOM NUMBER DRIVER
Christoph Hellwig0624bca2014-04-25 01:12:01 -07008613M: "Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07008614S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008615F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07008616
Matt Porter394b7012005-11-07 01:00:15 -08008617RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008618M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08008619M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08008620S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008621F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08008622
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008623RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008624L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04008625S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07008626F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008627
8628RCUTORTURE MODULE
Josh Triplette0198b22014-07-30 16:08:42 -07008629M: Josh Triplett <josh@joshtriplett.org>
Joe Perches8b58be82009-07-29 15:04:30 -07008630M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +01008631L: linux-kernel@vger.kernel.org
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08008632S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07008633T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07008634F: Documentation/RCU/torture.txt
Joe Perches34e2d562014-07-03 15:08:00 -07008635F: kernel/rcu/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008636
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -07008637RCUTORTURE TEST FRAMEWORK
8638M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyab0afd62014-06-03 08:17:06 -07008639M: Josh Triplett <josh@joshtriplett.org>
Paul E. McKenney4632a192014-05-30 15:37:24 -07008640R: Steven Rostedt <rostedt@goodmis.org>
8641R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Lai Jiangshan96a39bc2015-07-01 15:26:27 +08008642R: Lai Jiangshan <jiangshanlai@gmail.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +01008643L: linux-kernel@vger.kernel.org
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -07008644S: Supported
8645T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8646F: tools/testing/selftests/rcutorture
8647
Florian Fainellic1f766b2008-02-06 22:39:44 +01008648RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07008649M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01008650S: Maintained
8651
Florian Fainellidb17f392007-12-19 11:30:30 +01008652RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008653M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f392007-12-19 11:30:30 +01008654L: netdev@vger.kernel.org
8655S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07008656F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01008657
Andy Grovera09ed662009-02-24 15:30:41 +00008658RDS - RELIABLE DATAGRAM SOCKETS
Venkat Venkatsubra8a85ac42014-01-30 13:28:47 -08008659M: Chien Yen <chien.yen@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00008660L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00008661S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008662F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00008663
Josh Triplett595182b2006-10-04 02:17:21 -07008664READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07008665M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyab0afd62014-06-03 08:17:06 -07008666M: Josh Triplett <josh@joshtriplett.org>
Paul E. McKenney4632a192014-05-30 15:37:24 -07008667R: Steven Rostedt <rostedt@goodmis.org>
8668R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Lai Jiangshan96a39bc2015-07-01 15:26:27 +08008669R: Lai Jiangshan <jiangshanlai@gmail.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +01008670L: linux-kernel@vger.kernel.org
Paul E. McKenney9fab97872012-05-07 09:36:34 -07008671W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07008672S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07008673T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08008674F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07008675X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08008676F: include/linux/rcu*
Paul E. McKenney4102ada2013-10-08 20:23:47 -07008677X: include/linux/srcu.h
8678F: kernel/rcu/
Joe Perches34e2d562014-07-03 15:08:00 -07008679X: kernel/torture.c
Josh Triplett595182b2006-10-04 02:17:21 -07008680
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08008681REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008682M: Alessandro Zummo <a.zummo@towertech.it>
Alexandre Belloni7c6f84f2015-04-16 12:45:43 -07008683M: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Alessandro Zummo76465492006-12-10 02:19:06 -08008684L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08008685Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alexandre Belloni4733f392015-05-26 11:13:04 +02008686T: git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08008687S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008688F: Documentation/rtc.txt
8689F: drivers/rtc/
8690F: include/linux/rtc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008691F: include/uapi/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08008692
Mark Brown0e400c52014-07-31 12:38:31 +01008693REALTEK AUDIO CODECS
8694M: Bard Liao <bardliao@realtek.com>
8695M: Oder Chiou <oder_chiou@realtek.com>
8696S: Maintained
8697F: sound/soc/codecs/rt*
8698F: include/sound/rt*.h
8699
Linus Torvalds1da177e2005-04-16 15:20:36 -07008700REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07008701L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008702S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008703F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008704
Mark Brownb83a3132011-05-11 19:59:58 +02008705REGISTER MAP ABSTRACTION
Mark Brownb02e48f2013-04-12 11:39:57 +01008706M: Mark Brown <broonie@kernel.org>
Mark Browndd060bc2014-08-16 12:30:58 +01008707L: linux-kernel@vger.kernel.org
Mark Brownb83a3132011-05-11 19:59:58 +02008708T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
8709S: Supported
8710F: drivers/base/regmap/
8711F: include/linux/regmap.h
8712
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02008713REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
8714M: Ohad Ben-Cohen <ohad@wizery.com>
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03008715T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02008716S: Maintained
8717F: drivers/remoteproc/
8718F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07008719F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02008720
Ohad Ben-Cohend8115db2013-04-16 20:34:49 +03008721REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
8722M: Ohad Ben-Cohen <ohad@wizery.com>
8723T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
8724S: Maintained
8725F: drivers/rpmsg/
8726F: Documentation/rpmsg.txt
8727F: include/linux/rpmsg.h
8728
Philipp Zabel1b0fe6b2014-05-27 15:58:09 +02008729RESET CONTROLLER FRAMEWORK
8730M: Philipp Zabel <p.zabel@pengutronix.de>
8731S: Maintained
8732F: drivers/reset/
8733F: Documentation/devicetree/bindings/reset/
Philipp Zabelb2f6dd72015-02-13 12:14:40 +01008734F: include/dt-bindings/reset/
Philipp Zabel1b0fe6b2014-05-27 15:58:09 +02008735F: include/linux/reset.h
8736F: include/linux/reset-controller.h
8737
Ivo van Doorne08976452008-04-12 19:23:55 +02008738RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07008739M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02008740L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02008741W: http://wireless.kernel.org/
8742T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
8743T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02008744S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08008745F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07008746F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02008747
Thomas Graf933685c2015-01-13 01:01:24 +01008748RHASHTABLE
8749M: Thomas Graf <tgraf@suug.ch>
8750L: netdev@vger.kernel.org
8751S: Maintained
8752F: lib/rhashtable.c
8753F: include/linux/rhashtable.h
8754
Maxim Levitsky67e054e2010-02-22 20:39:42 +02008755RICOH SMARTMEDIA/XD DRIVER
8756M: Maxim Levitsky <maximlevitsky@gmail.com>
8757S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07008758F: drivers/mtd/nand/r852.c
8759F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02008760
Maxim Levitsky92634122011-03-25 01:56:59 -07008761RICOH R5C592 MEMORYSTICK DRIVER
8762M: Maxim Levitsky <maximlevitsky@gmail.com>
8763S: Maintained
8764F: drivers/memstick/host/r592.*
8765
Stefan Achatz27f1d2f2013-09-05 06:36:01 +02008766ROCCAT DRIVERS
8767M: Stefan Achatz <erazor_de@users.sourceforge.net>
8768W: http://sourceforge.net/projects/roccat/
8769S: Maintained
8770F: drivers/hid/hid-roccat*
8771F: include/linux/hid-roccat*
8772F: Documentation/ABI/*/sysfs-driver-hid-roccat*
8773
Jiri Pirko4b8ac962014-11-28 14:34:26 +01008774ROCKER DRIVER
8775M: Jiri Pirko <jiri@resnulli.us>
8776M: Scott Feldman <sfeldma@gmail.com>
8777L: netdev@vger.kernel.org
8778S: Supported
8779F: drivers/net/ethernet/rocker/
8780
Linus Torvalds1da177e2005-04-16 15:20:36 -07008781ROCKETPORT DRIVER
8782P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008783W: http://www.comtrol.com
8784S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008785F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07008786F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008787
Kevin Cernekee7645c2f2014-10-21 15:23:06 -07008788ROCKETPORT EXPRESS/INFINITY DRIVER
8789M: Kevin Cernekee <cernekee@gmail.com>
8790L: linux-serial@vger.kernel.org
8791S: Odd Fixes
8792F: drivers/tty/serial/rp2.*
8793
Linus Torvalds1da177e2005-04-16 15:20:36 -07008794ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07008795M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008796L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02008797W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008798S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008799F: include/net/rose.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008800F: include/uapi/linux/rose.h
Joe Perches679655d2009-04-07 20:44:32 -07008801F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008802
Antti Palosaari91952bc2012-10-01 12:28:46 -03008803RTL2830 MEDIA DRIVER
8804M: Antti Palosaari <crope@iki.fi>
8805L: linux-media@vger.kernel.org
8806W: http://linuxtv.org/
8807W: http://palosaari.fi/linux/
8808Q: http://patchwork.linuxtv.org/project/linux-media/list/
8809T: git git://linuxtv.org/anttip/media_tree.git
8810S: Maintained
8811F: drivers/media/dvb-frontends/rtl2830*
8812
Antti Palosaari27a0aac2013-04-09 20:30:43 -03008813RTL2832 MEDIA DRIVER
8814M: Antti Palosaari <crope@iki.fi>
8815L: linux-media@vger.kernel.org
8816W: http://linuxtv.org/
8817W: http://palosaari.fi/linux/
8818Q: http://patchwork.linuxtv.org/project/linux-media/list/
8819T: git git://linuxtv.org/anttip/media_tree.git
8820S: Maintained
8821F: drivers/media/dvb-frontends/rtl2832*
8822
Antti Palosaariba6e6f62014-02-03 00:00:32 -03008823RTL2832_SDR MEDIA DRIVER
8824M: Antti Palosaari <crope@iki.fi>
8825L: linux-media@vger.kernel.org
8826W: http://linuxtv.org/
8827W: http://palosaari.fi/linux/
8828Q: http://patchwork.linuxtv.org/project/linux-media/list/
8829T: git git://linuxtv.org/anttip/media_tree.git
8830S: Maintained
Antti Palosaarib4bb1c22014-07-14 21:19:29 -03008831F: drivers/media/dvb-frontends/rtl2832_sdr*
Antti Palosaariba6e6f62014-02-03 00:00:32 -03008832
Larry Finger59840482008-11-12 17:13:09 -06008833RTL8180 WIRELESS DRIVER
Michael Wu605bebe2007-05-14 01:41:02 -04008834L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02008835W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07008836T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
John W. Linville7be6ff62014-12-04 16:52:41 -05008837S: Orphan
John W. Linville3cfeb0c2010-12-20 15:16:53 -05008838F: drivers/net/wireless/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04008839
Larry Finger59840482008-11-12 17:13:09 -06008840RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03008841M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008842M: Hin-Tak Leung <htl10@users.sourceforge.net>
8843M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07008844L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02008845W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07008846T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07008847S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05008848F: drivers/net/wireless/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06008849
Larry Finger3cf0c8a2010-12-16 09:13:21 -06008850RTL8192CE WIRELESS DRIVER
8851M: Larry Finger <Larry.Finger@lwfinger.net>
8852M: Chaoming Li <chaoming_li@realsil.com.cn>
8853L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02008854W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06008855T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8856S: Maintained
8857F: drivers/net/wireless/rtlwifi/
Larry Fingerf0b3e4b2010-12-17 16:04:11 -06008858F: drivers/net/wireless/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02008859
8860S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008861M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008862L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08008863S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09008864F: drivers/video/fbdev/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08008865
Linus Torvalds1da177e2005-04-16 15:20:36 -07008866S390
Joe Perches8b58be82009-07-29 15:04:30 -07008867M: Martin Schwidefsky <schwidefsky@de.ibm.com>
8868M: Heiko Carstens <heiko.carstens@de.ibm.com>
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01008869L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08008870W: http://www.ibm.com/developerworks/linux/linux390/
8871S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008872F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01008873F: drivers/s390/
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02008874F: Documentation/s390/
8875F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08008876
Sebastian Ott322986c2014-02-17 15:16:30 +01008877S390 COMMON I/O LAYER
8878M: Sebastian Ott <sebott@linux.vnet.ibm.com>
8879M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
8880L: linux-s390@vger.kernel.org
8881W: http://www.ibm.com/developerworks/linux/linux390/
8882S: Supported
8883F: drivers/s390/cio/
8884
8885S390 DASD DRIVER
8886M: Stefan Weinhuber <wein@de.ibm.com>
8887M: Stefan Haberland <stefan.haberland@de.ibm.com>
8888L: linux-s390@vger.kernel.org
8889W: http://www.ibm.com/developerworks/linux/linux390/
8890S: Supported
8891F: drivers/s390/block/dasd*
8892F: block/partitions/ibm.c
8893
Heiko Carstens5238da42006-02-11 17:56:01 -08008894S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008895M: Ursula Braun <ursula.braun@de.ibm.com>
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01008896L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08008897W: http://www.ibm.com/developerworks/linux/linux390/
8898S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008899F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08008900
Sebastian Ott322986c2014-02-17 15:16:30 +01008901S390 PCI SUBSYSTEM
8902M: Sebastian Ott <sebott@linux.vnet.ibm.com>
8903M: Gerald Schaefer <gerald.schaefer@de.ibm.com>
8904L: linux-s390@vger.kernel.org
8905W: http://www.ibm.com/developerworks/linux/linux390/
8906S: Supported
8907F: arch/s390/pci/
8908F: drivers/pci/hotplug/s390_pci_hpc.c
8909
Felix Beckfeed9b62009-03-26 15:24:23 +01008910S390 ZCRYPT DRIVER
Ingo Tuchscherer5c8d0982013-01-14 10:07:05 +01008911M: Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01008912L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01008913W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01008914S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07008915F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01008916
Heiko Carstens5238da42006-02-11 17:56:01 -08008917S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01008918M: Steffen Maier <maier@linux.vnet.ibm.com>
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01008919L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08008920W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008921S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008922F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008923
Ursula Braundd96df22007-09-19 13:09:02 +02008924S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07008925M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02008926L: linux-s390@vger.kernel.org
8927W: http://www.ibm.com/developerworks/linux/linux390/
8928S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008929F: drivers/s390/net/*iucv*
8930F: include/net/iucv/
8931F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02008932
Ben Dooks4dde7f72008-06-30 22:40:38 +01008933S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07008934M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07008935L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01008936S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008937F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01008938
Hans Verkuil1f15a222012-11-23 07:45:29 -03008939SAA6588 RDS RECEIVER DRIVER
8940M: Hans Verkuil <hverkuil@xs4all.nl>
8941L: linux-media@vger.kernel.org
8942T: git git://linuxtv.org/media_tree.git
8943W: http://linuxtv.org
8944S: Odd Fixes
8945F: drivers/media/i2c/saa6588*
8946
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02008947SAA7134 VIDEO4LINUX DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02008948M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02008949L: linux-media@vger.kernel.org
8950W: http://linuxtv.org
8951T: git git://linuxtv.org/media_tree.git
8952S: Odd fixes
Cesar Eduardo Barrose42bf502013-03-02 21:53:47 -03008953F: Documentation/video4linux/*.saa7134
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02008954F: drivers/media/pci/saa7134/
8955
Linus Torvalds1da177e2005-04-16 15:20:36 -07008956SAA7146 VIDEO4LINUX-2 DRIVER
Hans Verkuil566b8152012-11-23 09:58:12 -03008957M: Hans Verkuil <hverkuil@xs4all.nl>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008958L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008959T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008960S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008961F: drivers/media/common/saa7146/
8962F: drivers/media/pci/saa7146/
8963F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008964
Corentin Chary92304a42011-12-05 12:38:35 -05008965SAMSUNG LAPTOP DRIVER
Corentin Chary5909c652012-12-17 16:00:05 -08008966M: Corentin Chary <corentin.chary@gmail.com>
Corentin Chary92304a42011-12-05 12:38:35 -05008967L: platform-driver-x86@vger.kernel.org
8968S: Maintained
8969F: drivers/platform/x86/samsung-laptop.c
8970
Mark Brown4a109cc2010-09-24 10:50:46 +01008971SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09008972M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01008973L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8974S: Supported
Joe Perches14430812013-09-11 14:23:50 -07008975F: sound/soc/samsung/
Mark Brown4a109cc2010-09-24 10:50:46 +01008976
Jingoo Han0d89a282011-12-19 11:09:35 +09008977SAMSUNG FRAMEBUFFER DRIVER
Jingoo Hanb7701752015-05-14 15:17:07 -07008978M: Jingoo Han <jingoohan1@gmail.com>
Jingoo Han0d89a282011-12-19 11:09:35 +09008979L: linux-fbdev@vger.kernel.org
8980S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09008981F: drivers/video/fbdev/s3c-fb.c
Jingoo Han0d89a282011-12-19 11:09:35 +09008982
Krzysztof Kozlowskib40f0632015-05-06 14:19:36 +09008983SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09008984M: Sangbeom Kim <sbkim73@samsung.com>
Krzysztof Kozlowskib40f0632015-05-06 14:19:36 +09008985M: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09008986L: linux-kernel@vger.kernel.org
Krzysztof Kozlowskib40f0632015-05-06 14:19:36 +09008987L: linux-samsung-soc@vger.kernel.org
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09008988S: Supported
8989F: drivers/mfd/sec*.c
8990F: drivers/regulator/s2m*.c
8991F: drivers/regulator/s5m*.c
Krzysztof Kozlowskib40f0632015-05-06 14:19:36 +09008992F: drivers/clk/clk-s2mps11.c
8993F: drivers/rtc/rtc-s5m.c
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09008994F: include/linux/mfd/samsung/
Krzysztof Kozlowskib40f0632015-05-06 14:19:36 +09008995F: Documentation/devicetree/bindings/regulator/s5m8767-regulator.txt
8996F: Documentation/devicetree/bindings/mfd/s2mp*.txt
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09008997
Sylwester Nawrocki038f5c42013-05-28 18:26:20 -03008998SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
8999M: Kyungmin Park <kyungmin.park@samsung.com>
9000M: Sylwester Nawrocki <s.nawrocki@samsung.com>
9001L: linux-media@vger.kernel.org
9002Q: https://patchwork.linuxtv.org/project/linux-media/list/
9003S: Supported
9004F: drivers/media/platform/exynos4-is/
Sylwester Nawrocki038f5c42013-05-28 18:26:20 -03009005
Sylwester Nawrocki6fd86ab2012-11-15 18:05:15 -03009006SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
9007M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
9008L: linux-media@vger.kernel.org
9009L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9010S: Maintained
9011F: drivers/media/platform/s3c-camif/
9012F: include/media/s3c_camif.h
9013
Andrzej Hajdab84ef242013-01-31 07:03:05 -03009014SAMSUNG S5C73M3 CAMERA DRIVER
9015M: Kyungmin Park <kyungmin.park@samsung.com>
9016M: Andrzej Hajda <a.hajda@samsung.com>
9017L: linux-media@vger.kernel.org
9018S: Supported
9019F: drivers/media/i2c/s5c73m3/*
9020
Andrzej Hajda7d459932013-12-05 08:38:39 -03009021SAMSUNG S5K5BAF CAMERA DRIVER
9022M: Kyungmin Park <kyungmin.park@samsung.com>
9023M: Andrzej Hajda <a.hajda@samsung.com>
9024L: linux-media@vger.kernel.org
9025S: Supported
9026F: drivers/media/i2c/s5k5baf.c
9027
Robert Baldygac04c6742015-08-20 17:26:02 +02009028SAMSUNG S3FWRN5 NFC DRIVER
9029M: Robert Baldyga <r.baldyga@samsung.com>
9030L: linux-nfc@lists.01.org (moderated for non-subscribers)
9031S: Supported
9032F: drivers/nfc/s3fwrn5
9033
Tomasz Figa310e39c2013-11-09 03:17:34 +01009034SAMSUNG SOC CLOCK DRIVERS
Tomasz Figafea685e2014-08-26 16:30:53 +02009035M: Sylwester Nawrocki <s.nawrocki@samsung.com>
9036M: Tomasz Figa <tomasz.figa@gmail.com>
Tomasz Figa310e39c2013-11-09 03:17:34 +01009037S: Supported
9038L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9039F: drivers/clk/samsung/
9040
Byungho An66890ed2014-03-25 12:11:07 -07009041SAMSUNG SXGBE DRIVERS
9042M: Byungho An <bh74.an@samsung.com>
9043M: Girish K S <ks.giri@samsung.com>
Byungho An66890ed2014-03-25 12:11:07 -07009044M: Vipul Pandya <vipul.pandya@samsung.com>
9045S: Supported
9046L: netdev@vger.kernel.org
9047F: drivers/net/ethernet/samsung/sxgbe/
9048
Lukasz Majewski93c537a2015-02-24 16:31:28 +01009049SAMSUNG THERMAL DRIVER
9050M: Lukasz Majewski <l.majewski@samsung.com>
9051L: linux-pm@vger.kernel.org
9052L: linux-samsung-soc@vger.kernel.org
9053S: Supported
9054T: https://github.com/lmajewski/linux-samsung-thermal.git
9055F: drivers/thermal/samsung/
9056
Kamil Debskie296cd32014-08-21 11:33:37 +02009057SAMSUNG USB2 PHY DRIVER
9058M: Kamil Debski <k.debski@samsung.com>
9059L: linux-kernel@vger.kernel.org
9060S: Supported
9061F: Documentation/devicetree/bindings/phy/samsung-phy.txt
9062F: Documentation/phy/samsung-usb2.txt
9063F: drivers/phy/phy-exynos4210-usb2.c
9064F: drivers/phy/phy-exynos4x12-usb2.c
9065F: drivers/phy/phy-exynos5250-usb2.c
9066F: drivers/phy/phy-s5pv210-usb2.c
9067F: drivers/phy/phy-samsung-usb2.c
9068F: drivers/phy/phy-samsung-usb2.h
9069
Alan Coxca749e22011-03-18 13:56:14 +00009070SERIAL DRIVERS
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08009071M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Alan Coxca749e22011-03-18 13:56:14 +00009072L: linux-serial@vger.kernel.org
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08009073S: Maintained
Joe Perches14430812013-09-11 14:23:50 -07009074F: drivers/tty/serial/
Alan Coxca749e22011-03-18 13:56:14 +00009075
Viresh Kumaraecb7b62011-05-24 14:04:09 +05309076SYNOPSYS DESIGNWARE DMAC DRIVER
Viresh Kumarda899472015-07-17 16:23:50 -07009077M: Viresh Kumar <vireshk@kernel.org>
Viresh Kumar337ae47c2013-07-19 09:13:58 +05309078M: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05309079S: Maintained
Andy Shevchenko1fb200d2015-01-19 18:23:06 +02009080F: include/linux/dma/dw.h
Andy Shevchenko3d598f42014-08-19 20:29:12 +03009081F: include/linux/platform_data/dma-dw.h
Andy Shevchenko61a76492013-06-05 15:26:44 +03009082F: drivers/dma/dw/
Viresh Kumaraecb7b62011-05-24 14:04:09 +05309083
Lars Persson058999c2015-07-28 12:01:50 +02009084SYNOPSYS DESIGNWARE ETHERNET QOS 4.10a driver
9085M: Lars Persson <lars.persson@axis.com>
9086L: netdev@vger.kernel.org
9087S: Supported
9088F: Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt
9089F: drivers/net/ethernet/synopsys/dwc_eth_qos.c
9090
Seungwon Jeonf9e37132013-01-17 21:33:23 +09009091SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
9092M: Seungwon Jeon <tgih.jun@samsung.com>
9093M: Jaehoon Chung <jh80.chung@samsung.com>
9094L: linux-mmc@vger.kernel.org
9095S: Maintained
9096F: include/linux/mmc/dw_mmc.h
9097F: drivers/mmc/host/dw_mmc*
9098
Andreas Noever1db121d2014-07-10 18:58:04 +02009099THUNDERBOLT DRIVER
9100M: Andreas Noever <andreas.noever@gmail.com>
9101S: Maintained
9102F: drivers/thunderbolt/
9103
John Stultz9222d242013-07-16 16:45:31 +02009104TIMEKEEPING, CLOCKSOURCE CORE, NTP
John Stultz50363732012-12-13 13:08:47 -05009105M: John Stultz <john.stultz@linaro.org>
Thomas Gleixner88606e82010-12-14 21:37:13 +01009106M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar981c3a42014-01-21 10:59:20 +01009107L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01009108T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01009109S: Supported
9110F: include/linux/clocksource.h
9111F: include/linux/time.h
9112F: include/linux/timex.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009113F: include/uapi/linux/time.h
9114F: include/uapi/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01009115F: kernel/time/clocksource.c
9116F: kernel/time/time*.c
9117F: kernel/time/ntp.c
John Stultz7fe5f1c2015-03-11 17:40:15 -07009118F: tools/testing/selftests/timers/
Thomas Gleixner88606e82010-12-14 21:37:13 +01009119
Linus Torvalds1da177e2005-04-16 15:20:36 -07009120SC1200 WDT DRIVER
Jean Delvareb3006452013-11-12 15:08:56 -08009121M: Zwane Mwaikambo <zwanem@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009122S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009123F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07009124
9125SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01009126M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07009127M: Peter Zijlstra <peterz@infradead.org>
Ingo Molnar981c3a42014-01-21 10:59:20 +01009128L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01009129T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07009130S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09009131F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07009132F: include/linux/sched.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009133F: include/uapi/linux/sched.h
Peter Zijlstrac2eb5052013-10-02 11:49:47 +02009134F: include/linux/wait.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009135
Chen Liqin6bcf6732009-06-13 15:24:33 +08009136SCORE ARCHITECTURE
Lennox Wued386652013-09-26 01:41:22 +08009137M: Chen Liqin <liqin.linux@gmail.com>
Joe Perchesa2681a72009-10-26 16:49:43 -07009138M: Lennox Wu <lennox.wu@gmail.com>
Lennox Wued386652013-09-26 01:41:22 +08009139W: http://www.sunplus.com
Chen Liqin6bcf6732009-06-13 15:24:33 +08009140S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07009141F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08009142
Linus Torvalds1da177e2005-04-16 15:20:36 -07009143SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009144M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009145L: linux-scsi@vger.kernel.org
9146W: http://www.kernel.dk
9147S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009148F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009149
Roland Dreierfb50a832010-10-07 09:54:53 -07009150SCSI RDMA PROTOCOL (SRP) INITIATOR
Bart Van Assche3453bddb2015-02-06 15:27:56 +01009151M: Bart Van Assche <bart.vanassche@sandisk.com>
Roland Dreierfb50a832010-10-07 09:54:53 -07009152L: linux-rdma@vger.kernel.org
9153S: Supported
9154W: http://www.openfabrics.org
9155Q: http://patchwork.kernel.org/project/linux-rdma/list/
9156T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
9157F: drivers/infiniband/ulp/srp/
9158F: include/scsi/srp.h
9159
Linus Torvalds1da177e2005-04-16 15:20:36 -07009160SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009161M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009162L: linux-scsi@vger.kernel.org
Douglas Gilbert59ab3c92013-10-31 09:10:46 -04009163W: http://sg.danny.cz/sg
Linus Torvalds1da177e2005-04-16 15:20:36 -07009164S: Maintained
Douglas Gilbert59ab3c92013-10-31 09:10:46 -04009165F: Documentation/scsi/scsi-generic.txt
Joe Perches679655d2009-04-07 20:44:32 -07009166F: drivers/scsi/sg.c
9167F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009168
9169SCSI SUBSYSTEM
James Bottomley0351b8f2015-04-01 09:09:36 +00009170M: "James E.J. Bottomley" <JBottomley@odin.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009171L: linux-scsi@vger.kernel.org
James Bottomley0351b8f2015-04-01 09:09:36 +00009172T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07009173S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009174F: drivers/scsi/
9175F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009176
9177SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009178M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009179L: linux-scsi@vger.kernel.org
9180S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009181F: Documentation/scsi/st.txt
Jean Delvaref7269cf2013-07-03 15:05:08 -07009182F: drivers/scsi/st.*
9183F: drivers/scsi/st_*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009184
9185SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00009186M: Vlad Yasevich <vyasevich@gmail.com>
Neil Horman02c38d02012-10-24 09:26:51 +00009187M: Neil Horman <nhorman@tuxdriver.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07009188L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07009189W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00009190S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009191F: Documentation/networking/sctp.txt
9192F: include/linux/sctp.h
Daniel Borkmann4d58c022013-07-23 14:51:48 +02009193F: include/uapi/linux/sctp.h
Joe Perches679655d2009-04-07 20:44:32 -07009194F: include/net/sctp/
9195F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009196
9197SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07009198M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07009199S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07009200F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07009201F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07009202F: drivers/watchdog/scx200_wdt.c
9203F: drivers/i2c/busses/scx200*
9204F: drivers/mtd/maps/scx200_docflash.c
9205F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07009206
9207SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009208M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07009209S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009210F: drivers/char/scx200_gpio.c
9211F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07009212
9213SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009214M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07009215S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009216F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07009217
Sascha Sommer6a369132008-07-15 14:21:29 +02009218SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009219M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02009220L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
9221S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009222F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02009223
Randy Dunlape7839f22008-10-12 16:11:45 -07009224SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Joe Perches7a241d62009-10-26 16:49:42 -07009225L: linux-mmc@vger.kernel.org
Ulf Hanssona1cb1d12015-03-13 13:39:03 +01009226S: Orphan
Joe Perches7a241d62009-10-26 16:49:42 -07009227F: drivers/mmc/host/sdhci.*
Joe Perchesd4a45782012-01-10 15:08:54 -08009228F: drivers/mmc/host/sdhci-pltfm.[ch]
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009229
Kees Cookc04f9d62014-07-18 11:28:33 -07009230SECURE COMPUTING
9231M: Kees Cook <keescook@chromium.org>
Kees Cooka0cfd752014-08-12 15:41:17 -07009232R: Andy Lutomirski <luto@amacapital.net>
9233R: Will Drewry <wad@chromium.org>
Kees Cookc04f9d62014-07-18 11:28:33 -07009234T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
9235S: Supported
9236F: kernel/seccomp.c
9237F: include/uapi/linux/seccomp.h
9238F: include/linux/seccomp.h
Kees Cookc99ee512015-06-16 10:54:14 -07009239F: tools/testing/selftests/seccomp/*
Kees Cookc04f9d62014-07-18 11:28:33 -07009240K: \bsecure_computing
9241K: \bTIF_SECCOMP\b
9242
Ben Dooks0d1bb412009-06-14 13:52:37 +01009243SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009244M: Ben Dooks <ben-linux@fluff.org>
Ulf Hanssondc524882015-03-20 10:15:29 +01009245M: Jaehoon Chung <jh80.chung@samsung.com>
Joe Perches7a241d62009-10-26 16:49:42 -07009246L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01009247S: Maintained
Ulf Hanssondc524882015-03-20 10:15:29 +01009248F: drivers/mmc/host/sdhci-s3c*
Ben Dooks0d1bb412009-06-14 13:52:37 +01009249
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07009250SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Viresh Kumarda899472015-07-17 16:23:50 -07009251M: Viresh Kumar <vireshk@kernel.org>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07009252L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07009253L: linux-mmc@vger.kernel.org
9254S: Maintained
9255F: drivers/mmc/host/sdhci-spear.c
9256
James Morris8711cca2008-12-04 03:19:45 +11009257SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11009258M: James Morris <james.l.morris@oracle.com>
Joe Perches9c3646d2015-06-25 15:02:00 -07009259M: "Serge E. Hallyn" <serge@hallyn.com>
James Morris8711cca2008-12-04 03:19:45 +11009260L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11009261T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10009262W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11009263S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07009264F: security/
James Morris8711cca2008-12-04 03:19:45 +11009265
Linus Torvalds1da177e2005-04-16 15:20:36 -07009266SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07009267M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009268S: Supported
9269
9270SELINUX SECURITY MODULE
Paul Moore5a5f2ac2013-09-18 13:14:04 -04009271M: Paul Moore <paul@paul-moore.com>
Paul Mooree0238b42014-02-06 07:51:54 -05009272M: Stephen Smalley <sds@tycho.nsa.gov>
9273M: Eric Paris <eparis@parisplace.org>
9274L: selinux@tycho.nsa.gov (moderated for non-subscribers)
Stephen Smalleyf0589252008-09-11 09:20:26 -04009275W: http://selinuxproject.org
Paul Moore5a5f2ac2013-09-18 13:14:04 -04009276T: git git://git.infradead.org/users/pcmoore/selinux
Linus Torvalds1da177e2005-04-16 15:20:36 -07009277S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009278F: include/linux/selinux*
9279F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04009280F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009281
John Johansenc1c124e2010-07-29 14:48:09 -07009282APPARMOR SECURITY MODULE
9283M: John Johansen <john.johansen@canonical.com>
9284L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
9285W: apparmor.wiki.kernel.org
9286T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
9287S: Supported
9288F: security/apparmor/
9289
Kees Cook730daa12015-07-23 18:02:48 -07009290YAMA SECURITY MODULE
9291M: Kees Cook <keescook@chromium.org>
9292T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
9293S: Supported
9294F: security/yama/
9295
Jiri Slabycef2cf02007-05-08 00:31:45 -07009296SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07009297M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07009298S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009299F: drivers/misc/phantom.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009300F: include/uapi/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07009301
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05309302SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Minh Tran4627de92015-05-14 23:16:17 -07009303M: Jayamohan Kallickal <jayamohan.kallickal@avagotech.com>
9304M: Minh Tran <minh.tran@avagotech.com>
9305M: John Soni Jose <sony.john-n@avagotech.com>
Joe Perches3387f652009-11-11 14:26:11 -08009306L: linux-scsi@vger.kernel.org
Minh Tran4627de92015-05-14 23:16:17 -07009307W: http://www.avagotech.com
Joe Perches3387f652009-11-11 14:26:11 -08009308S: Supported
9309F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05309310
Sathya Perla6938f852015-05-12 02:13:50 -04009311Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER
9312M: Sathya Perla <sathya.perla@avagotech.com>
9313M: Ajit Khaparde <ajit.khaparde@avagotech.com>
9314M: Padmanabh Ratnakar <padmanabh.ratnakar@avagotech.com>
9315M: Sriharsha Basavapatna <sriharsha.basavapatna@avagotech.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07009316L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08009317W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07009318S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07009319F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07009320
Selvin Xavierd2928a82015-03-15 00:09:41 +05309321EMULEX ONECONNECT ROCE DRIVER
Laurent Navet2b8e7332015-06-30 14:59:33 -07009322M: Selvin Xavier <selvin.xavier@avagotech.com>
9323M: Devesh Sharma <devesh.sharma@avagotech.com>
9324M: Mitesh Ahuja <mitesh.ahuja@avagotech.com>
Selvin Xavierd2928a82015-03-15 00:09:41 +05309325L: linux-rdma@vger.kernel.org
9326W: http://www.emulex.com
9327S: Supported
9328F: drivers/infiniband/hw/ocrdma/
9329
Ben Hutchings8ceee662008-04-27 12:55:59 +01009330SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00009331M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Shradha Shah8533ccf2014-01-23 13:19:55 +00009332M: Shradha Shah <sshah@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +00009333L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01009334S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07009335F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01009336
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009337SGI GRU DRIVER
Bjorn Helgaascc883af2013-01-29 15:48:37 -07009338M: Dimitri Sivanich <sivanich@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009339S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009340F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009341
9342SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009343M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009344L: linux-ia64@vger.kernel.org
9345S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009346F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08009347F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07009348F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009349
Jack Steiner75312612008-08-15 00:40:42 -07009350SGI XP/XPC/XPNET DRIVER
Robin Holte1803832013-08-16 18:01:42 -05009351M: Cliff Whickman <cpw@sgi.com>
9352M: Robin Holt <robinmholt@gmail.com>
Jack Steiner75312612008-08-15 00:40:42 -07009353S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009354F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07009355
Antti Palosaari46eacf32014-04-15 06:21:03 -03009356SI2157 MEDIA DRIVER
9357M: Antti Palosaari <crope@iki.fi>
9358L: linux-media@vger.kernel.org
9359W: http://linuxtv.org/
9360W: http://palosaari.fi/linux/
9361Q: http://patchwork.linuxtv.org/project/linux-media/list/
9362T: git git://linuxtv.org/anttip/media_tree.git
9363S: Maintained
9364F: drivers/media/tuners/si2157*
9365
Antti Palosaari75e2d5b2014-04-15 06:17:53 -03009366SI2168 MEDIA DRIVER
9367M: Antti Palosaari <crope@iki.fi>
9368L: linux-media@vger.kernel.org
9369W: http://linuxtv.org/
9370W: http://palosaari.fi/linux/
9371Q: http://patchwork.linuxtv.org/project/linux-media/list/
9372T: git git://linuxtv.org/anttip/media_tree.git
9373S: Maintained
9374F: drivers/media/dvb-frontends/si2168*
9375
Hans Verkuil49cc6292012-11-30 07:13:29 -03009376SI470X FM RADIO RECEIVER I2C DRIVER
9377M: Hans Verkuil <hverkuil@xs4all.nl>
9378L: linux-media@vger.kernel.org
9379T: git git://linuxtv.org/media_tree.git
9380W: http://linuxtv.org
9381S: Odd Fixes
9382F: drivers/media/radio/si470x/radio-si470x-i2c.c
9383
9384SI470X FM RADIO RECEIVER USB DRIVER
9385M: Hans Verkuil <hverkuil@xs4all.nl>
9386L: linux-media@vger.kernel.org
9387T: git git://linuxtv.org/media_tree.git
9388W: http://linuxtv.org
9389S: Maintained
9390F: drivers/media/radio/si470x/radio-si470x-common.c
9391F: drivers/media/radio/si470x/radio-si470x.h
9392F: drivers/media/radio/si470x/radio-si470x-usb.c
9393
Eduardo Valentinc937ca02013-02-27 10:37:39 -03009394SI4713 FM RADIO TRANSMITTER I2C DRIVER
9395M: Eduardo Valentin <edubezval@gmail.com>
9396L: linux-media@vger.kernel.org
9397T: git git://linuxtv.org/media_tree.git
9398W: http://linuxtv.org
9399S: Odd Fixes
Dinesh Ram99995de2013-10-15 12:24:43 -03009400F: drivers/media/radio/si4713/si4713.?
Eduardo Valentinc937ca02013-02-27 10:37:39 -03009401
9402SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
9403M: Eduardo Valentin <edubezval@gmail.com>
9404L: linux-media@vger.kernel.org
9405T: git git://linuxtv.org/media_tree.git
9406W: http://linuxtv.org
9407S: Odd Fixes
Dinesh Ram99995de2013-10-15 12:24:43 -03009408F: drivers/media/radio/si4713/radio-platform-si4713.c
9409
9410SI4713 FM RADIO TRANSMITTER USB DRIVER
9411M: Hans Verkuil <hverkuil@xs4all.nl>
9412L: linux-media@vger.kernel.org
9413T: git git://linuxtv.org/media_tree.git
9414W: http://linuxtv.org
9415S: Maintained
9416F: drivers/media/radio/si4713/radio-usb-si4713.c
Eduardo Valentinc937ca02013-02-27 10:37:39 -03009417
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03009418SIANO DVB DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02009419M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03009420L: linux-media@vger.kernel.org
9421W: http://linuxtv.org
9422T: git git://linuxtv.org/media_tree.git
9423S: Odd fixes
9424F: drivers/media/common/siano/
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03009425F: drivers/media/usb/siano/
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03009426F: drivers/media/usb/siano/
Joe Perches14430812013-09-11 14:23:50 -07009427F: drivers/media/mmc/siano/
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03009428
Hans de Goede6f15b602014-11-14 13:26:46 +01009429SIMPLEFB FB DRIVER
9430M: Hans de Goede <hdegoede@redhat.com>
9431L: linux-fbdev@vger.kernel.org
9432S: Maintained
9433F: Documentation/devicetree/bindings/video/simple-framebuffer.txt
9434F: drivers/video/fbdev/simplefb.c
9435F: include/linux/platform_data/simplefb.h
9436
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03009437SH_VEU V4L2 MEM2MEM DRIVER
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03009438L: linux-media@vger.kernel.org
Guennadi Liakhovetskibb60fcb2013-11-24 17:44:08 -03009439S: Orphan
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03009440F: drivers/media/platform/sh_veu.c
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03009441
9442SH_VOU V4L2 OUTPUT DRIVER
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03009443L: linux-media@vger.kernel.org
Guennadi Liakhovetskibb60fcb2013-11-24 17:44:08 -03009444S: Orphan
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03009445F: drivers/media/platform/sh_vou.c
9446F: include/media/sh_vou.h
9447
Len Brown6349d992009-08-14 15:07:14 -04009448SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07009449M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04009450L: sfi-devel@simplefirmware.org
9451W: http://simplefirmware.org/
9452T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009453S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07009454F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04009455F: drivers/sfi/
9456F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009457
Linus Torvalds1da177e2005-04-16 15:20:36 -07009458SIMTEC EB110ATX (Chalice CATS)
9459P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08009460P: Vincent Sanders <vince@simtec.co.uk>
9461M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009462W: http://www.simtec.co.uk/products/EB110ATX/
9463S: Supported
9464
9465SIMTEC EB2410ITX (BAST)
9466P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08009467P: Vincent Sanders <vince@simtec.co.uk>
9468M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009469W: http://www.simtec.co.uk/products/EB2410ITX/
9470S: Supported
Joe Perches15dba382013-09-11 14:23:36 -07009471F: arch/arm/mach-s3c24xx/mach-bast.c
9472F: arch/arm/mach-s3c24xx/bast-ide.c
9473F: arch/arm/mach-s3c24xx/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07009474
Kevin Hilman4c5adde2009-06-19 12:02:33 -07009475TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08009476M: Sekhar Nori <nsekhar@ti.com>
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08009477M: Kevin Hilman <khilman@deeprootsystems.com>
Sekhar Noric9f46a82012-01-27 21:12:20 +05309478T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -08009479Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07009480S: Supported
Joe Perches14430812013-09-11 14:23:50 -07009481F: arch/arm/mach-davinci/
Jean Delvare046d0a32012-01-12 20:32:05 +01009482F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -07009483
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03009484TI DAVINCI SERIES MEDIA DRIVER
Joe Perchese43cdb52015-06-25 15:02:03 -07009485M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03009486L: linux-media@vger.kernel.org
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03009487W: http://linuxtv.org/
9488Q: http://patchwork.linuxtv.org/project/linux-media/list/
9489T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
Lad, Prabhakar9ce5eca2013-04-15 01:32:44 -03009490S: Maintained
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03009491F: drivers/media/platform/davinci/
9492F: include/media/davinci/
9493
Benoit Parrot417d2e52014-12-09 16:43:44 -03009494TI AM437X VPFE DRIVER
Joe Perchese43cdb52015-06-25 15:02:03 -07009495M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
Benoit Parrot417d2e52014-12-09 16:43:44 -03009496L: linux-media@vger.kernel.org
9497W: http://linuxtv.org/
9498Q: http://patchwork.linuxtv.org/project/linux-media/list/
9499T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9500S: Maintained
9501F: drivers/media/platform/am437x/
9502
Benoit Parrotc4c02832015-03-20 18:03:52 -03009503OV2659 OMNIVISION SENSOR DRIVER
Joe Perchese43cdb52015-06-25 15:02:03 -07009504M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
Benoit Parrotc4c02832015-03-20 18:03:52 -03009505L: linux-media@vger.kernel.org
9506W: http://linuxtv.org/
9507Q: http://patchwork.linuxtv.org/project/linux-media/list/
9508T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9509S: Maintained
9510F: drivers/media/i2c/ov2659.c
9511F: include/media/ov2659.h
9512
Sudip Mukherjee3a6779f2015-08-07 18:31:15 +05309513SILICON MOTION SM712 FRAME BUFFER DRIVER
9514M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
9515M: Teddy Wang <teddy.wang@siliconmotion.com>
9516M: Sudip Mukherjee <sudip@vectorindia.org>
9517L: linux-fbdev@vger.kernel.org
9518S: Maintained
9519F: drivers/video/fbdev/sm712*
9520F: Documentation/fb/sm712fb.txt
9521
Francois Romieu92aab3c2005-07-30 13:11:18 +02009522SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009523M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02009524L: netdev@vger.kernel.org
9525S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07009526F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02009527
Linus Torvalds1da177e2005-04-16 15:20:36 -07009528SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009529M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009530W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07009531L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07009532S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07009533F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009534
9535SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009536M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009537W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03009538S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009539F: Documentation/fb/sisfb.txt
Jingoo Han8a61f012014-07-01 15:36:01 +09009540F: drivers/video/fbdev/sis/
Joe Perches679655d2009-04-07 20:44:32 -07009541F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009542
9543SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009544M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009545W: http://www.winischhofer.at/linuxsisusbvga.shtml
9546S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009547F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009548
Christoph Lameter415ad262007-07-26 10:40:56 -07009549SLAB ALLOCATOR
Christoph Lameter16e943b2014-06-23 13:22:03 -07009550M: Christoph Lameter <cl@linux.com>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02009551M: Pekka Enberg <penberg@kernel.org>
Christoph Lameter16e943b2014-06-23 13:22:03 -07009552M: David Rientjes <rientjes@google.com>
9553M: Joonsoo Kim <iamjoonsoo.kim@lge.com>
9554M: Andrew Morton <akpm@linux-foundation.org>
Christoph Lameter415ad262007-07-26 10:40:56 -07009555L: linux-mm@kvack.org
9556S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009557F: include/linux/sl?b*.h
Christoph Lameter16e943b2014-06-23 13:22:03 -07009558F: mm/sl?b*
Christoph Lameter415ad262007-07-26 10:40:56 -07009559
Paul E. McKenney9fab97872012-05-07 09:36:34 -07009560SLEEPABLE READ-COPY UPDATE (SRCU)
Lai Jiangshan96a39bc2015-07-01 15:26:27 +08009561M: Lai Jiangshan <jiangshanlai@gmail.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -07009562M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyab0afd62014-06-03 08:17:06 -07009563M: Josh Triplett <josh@joshtriplett.org>
Paul E. McKenney4632a192014-05-30 15:37:24 -07009564R: Steven Rostedt <rostedt@goodmis.org>
9565R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +01009566L: linux-kernel@vger.kernel.org
Paul E. McKenney9fab97872012-05-07 09:36:34 -07009567W: http://www.rdrop.com/users/paulmck/RCU/
9568S: Supported
9569T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenney4102ada2013-10-08 20:23:47 -07009570F: include/linux/srcu.h
9571F: kernel/rcu/srcu.c
Paul E. McKenney9fab97872012-05-07 09:36:34 -07009572
Casey Schaufler66372842012-05-23 18:34:52 -07009573SMACK SECURITY MODULE
9574M: Casey Schaufler <casey@schaufler-ca.com>
9575L: linux-security-module@vger.kernel.org
9576W: http://schaufler-ca.com
9577T: git git://git.gitorious.org/smack-next/kernel.git
9578S: Maintained
9579F: Documentation/security/Smack.txt
9580F: security/smack/
9581
Kevin Hilman20651e02014-09-24 16:30:00 -07009582DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
Kevin Hilman68ace3e2013-08-06 16:57:14 -07009583M: Kevin Hilman <khilman@kernel.org>
9584M: Nishanth Menon <nm@ti.com>
9585S: Maintained
Kevin Hilman20651e02014-09-24 16:30:00 -07009586F: drivers/power/avs/
Kevin Hilman68ace3e2013-08-06 16:57:14 -07009587F: include/linux/power/smartreflex.h
9588L: linux-pm@vger.kernel.org
9589
Linus Torvalds1da177e2005-04-16 15:20:36 -07009590SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04009591M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04009592S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -07009593F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009594
Sakari Ailuse8e31622012-11-12 18:14:39 -03009595SMIA AND SMIA++ IMAGE SENSOR DRIVER
9596M: Sakari Ailus <sakari.ailus@iki.fi>
9597L: linux-media@vger.kernel.org
9598S: Maintained
Joe Perches14430812013-09-11 14:23:50 -07009599F: drivers/media/i2c/smiapp/
Sakari Ailuse8e31622012-11-12 18:14:39 -03009600F: include/media/smiapp.h
9601F: drivers/media/i2c/smiapp-pll.c
9602F: drivers/media/i2c/smiapp-pll.h
Sakari Ailusfd2bfdc2014-11-16 12:08:44 -03009603F: include/uapi/linux/smiapp.h
Sakari Ailusa2cec3c2014-11-06 18:16:13 -03009604F: Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
Sakari Ailuse8e31622012-11-12 18:14:39 -03009605
Guenter Roeck920fa1f2010-08-09 17:21:06 -07009606SMM665 HARDWARE MONITOR DRIVER
9607M: Guenter Roeck <linux@roeck-us.net>
9608L: lm-sensors@lm-sensors.org
9609S: Maintained
9610F: Documentation/hwmon/smm665
9611F: drivers/hwmon/smm665.c
9612
Steve Glendinning9df73052010-08-14 21:08:54 +02009613SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01009614M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning9df73052010-08-14 21:08:54 +02009615L: lm-sensors@lm-sensors.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01009616S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +02009617F: Documentation/hwmon/emc2103
9618F: drivers/hwmon/emc2103.c
9619
Hans de Goedea98d5062011-03-21 17:59:36 +01009620SMSC SCH5627 HARDWARE MONITOR DRIVER
9621M: Hans de Goede <hdegoede@redhat.com>
9622L: lm-sensors@lm-sensors.org
9623S: Supported
9624F: Documentation/hwmon/sch5627
9625F: drivers/hwmon/sch5627.c
9626
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04009627SMSC47B397 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07009628M: Jean Delvare <jdelvare@suse.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04009629L: lm-sensors@lm-sensors.org
9630S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009631F: Documentation/hwmon/smsc47b397
9632F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04009633
Steve Glendinningfd9abb32008-11-05 00:35:37 +00009634SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01009635M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00009636L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01009637S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009638F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -07009639F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00009640
Steve Glendinning2cb37722008-12-11 20:54:30 -08009641SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01009642M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -08009643L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01009644S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -07009645F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08009646
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01009647SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01009648M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01009649L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01009650S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09009651F: drivers/video/fbdev/smscufx.c
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01009652
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03009653SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07009654M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03009655L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02009656T: git git://linuxtv.org/media_tree.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02009657S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03009658F: include/media/soc*
9659F: drivers/media/i2c/soc_camera/
9660F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03009661
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009662SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07009663M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009664S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009665F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009666
Joe Perchese3994db2014-07-30 00:38:42 -03009667SOFTLOGIC 6x10 MPEG CODEC
Andrey Utkin9661975d2014-11-17 13:59:23 -03009668M: Bluecherry Maintainers <maintainers@bluecherrydvr.com>
9669M: Andrey Utkin <andrey.utkin@corp.bluecherry.net>
9670M: Andrey Utkin <andrey.krieger.utkin@gmail.com>
Ismael Luceno1f141f62015-01-20 11:43:50 -03009671M: Ismael Luceno <ismael@iodev.co.uk>
Joe Perchese3994db2014-07-30 00:38:42 -03009672L: linux-media@vger.kernel.org
9673S: Supported
9674F: drivers/media/pci/solo6x10/
9675
Linus Torvalds1da177e2005-04-16 15:20:36 -07009676SOFTWARE RAID (Multiple Disks) SUPPORT
Jiri Slabyd8130622015-07-17 16:23:20 -07009677M: Neil Brown <neilb@suse.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009678L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08009679S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009680F: drivers/md/
9681F: include/linux/raid/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009682F: include/uapi/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009683
Linus Torvalds1da177e2005-04-16 15:20:36 -07009684SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009685M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07009686L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07009687S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07009688F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009689
Michael Buesch61e115a2007-09-18 15:12:50 -04009690SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +02009691M: Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04009692L: netdev@vger.kernel.org
9693S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009694F: drivers/ssb/
9695F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04009696
Linus Torvalds1da177e2005-04-16 15:20:36 -07009697SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009698M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd0944852010-02-11 10:40:13 -05009699L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01009700W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07009701S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009702F: Documentation/laptops/sony-laptop.txt
9703F: drivers/char/sonypi.c
9704F: drivers/platform/x86/sony-laptop.c
9705F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009706
Alex Dubovbaf85322008-02-09 10:20:54 -08009707SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07009708M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08009709W: http://tifmxx.berlios.de/
9710S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009711F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08009712
Maxim Levitsky0ab30492013-09-11 14:26:02 -07009713SONY MEMORYSTICK STANDARD SUPPORT
9714M: Maxim Levitsky <maximlevitsky@gmail.com>
9715S: Maintained
9716F: drivers/memstick/core/ms_block.*
9717
Linus Torvalds1da177e2005-04-16 15:20:36 -07009718SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07009719M: Jaroslav Kysela <perex@perex.cz>
Jiri Slabyd8130622015-07-17 16:23:20 -07009720M: Takashi Iwai <tiwai@suse.com>
Joe Perches93711662009-06-16 15:34:07 -07009721L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07009722W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +02009723T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -07009724T: git git://git.alsa-project.org/alsa-kernel.git
Takashi Iwaiff4a8f32014-05-13 14:55:51 +02009725Q: http://patchwork.kernel.org/project/alsa-devel/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009726S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07009727F: Documentation/sound/
9728F: include/sound/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009729F: include/uapi/sound/
Joe Perches679655d2009-04-07 20:44:32 -07009730F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009731
Mark Brown33bbe142013-08-09 18:10:50 +01009732SOUND - COMPRESSED AUDIO
9733M: Vinod Koul <vinod.koul@intel.com>
9734L: alsa-devel@alsa-project.org (moderated for non-subscribers)
9735T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
9736S: Supported
Vinod Koulf672f312013-08-12 11:15:27 +05309737F: Documentation/sound/alsa/compress_offload.txt
Mark Brown33bbe142013-08-09 18:10:50 +01009738F: include/sound/compress_driver.h
Vinod Koulf672f312013-08-12 11:15:27 +05309739F: include/uapi/sound/compress_*
Mark Brown33bbe142013-08-09 18:10:50 +01009740F: sound/core/compress_offload.c
9741F: sound/soc/soc-compress.c
9742
Mark Brownbd903bd2008-11-19 19:16:05 +00009743SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood6b9cf5c2013-01-15 15:13:27 +00009744M: Liam Girdwood <lgirdwood@gmail.com>
Mark Brownb02e48f2013-04-12 11:39:57 +01009745M: Mark Brown <broonie@kernel.org>
Mark Brown86f14df2011-11-02 21:36:32 +00009746T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -07009747L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01009748W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02009749S: Supported
Mark Brown2820f612013-08-11 19:35:11 +01009750F: Documentation/sound/alsa/soc/
Joe Perches679655d2009-04-07 20:44:32 -07009751F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01009752F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02009753
Mark Brownd7f87612013-10-19 14:33:54 +01009754SOUND - DMAENGINE HELPERS
9755M: Lars-Peter Clausen <lars@metafoo.de>
9756S: Supported
9757F: include/sound/dmaengine_pcm.h
9758F: sound/core/pcm_dmaengine.c
9759F: sound/soc/soc-generic-dmaengine-pcm.c
9760
Olli Salonen990a6a92014-08-22 13:50:42 -03009761SP2 MEDIA DRIVER
9762M: Olli Salonen <olli.salonen@iki.fi>
9763L: linux-media@vger.kernel.org
9764W: http://linuxtv.org/
9765Q: http://patchwork.linuxtv.org/project/linux-media/list/
9766S: Maintained
9767F: drivers/media/dvb-frontends/sp2*
9768
Sam Ravnborg473321f2009-01-04 15:47:49 -08009769SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07009770M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009771L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08009772Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -07009773T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
9774T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07009775S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009776F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07009777F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009778
David S. Miller6404fcc2010-03-16 01:00:17 -07009779SPARC SERIAL DRIVERS
9780M: "David S. Miller" <davem@davemloft.net>
9781L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07009782T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
9783T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -07009784S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -05009785F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08009786F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08009787F: drivers/tty/serial/sunhv.c
9788F: drivers/tty/serial/sunsab.c
9789F: drivers/tty/serial/sunsab.h
9790F: drivers/tty/serial/sunsu.c
9791F: drivers/tty/serial/sunzilog.c
9792F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -07009793
Christopher Li389325b2012-04-05 14:25:14 -07009794SPARSE CHECKER
9795M: "Christopher Li" <sparse@chrisli.org>
9796L: linux-sparse@vger.kernel.org
9797W: https://sparse.wiki.kernel.org/
9798T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
9799T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
9800S: Maintained
9801F: include/linux/compiler.h
9802
viresh kumarfc0c1952010-04-01 12:31:21 +01009803SPEAR PLATFORM SUPPORT
Viresh Kumarda899472015-07-17 16:23:50 -07009804M: Viresh Kumar <vireshk@kernel.org>
Viresh Kumar9cc23682014-04-18 15:07:16 -07009805M: Shiraz Hashim <shiraz.linux.kernel@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07009806L: spear-devel@list.st.com
9807L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01009808W: http://www.st.com/spear
9809S: Maintained
Joe Perches281e1922013-09-11 14:23:37 -07009810F: arch/arm/mach-spear/
viresh kumarfc0c1952010-04-01 12:31:21 +01009811
9812SPEAR CLOCK FRAMEWORK SUPPORT
Viresh Kumarda899472015-07-17 16:23:50 -07009813M: Viresh Kumar <vireshk@kernel.org>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07009814L: spear-devel@list.st.com
9815L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01009816W: http://www.st.com/spear
9817S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +05309818F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +01009819
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009820SPI SUBSYSTEM
Mark Brownb02e48f2013-04-12 11:39:57 +01009821M: Mark Brown <broonie@kernel.org>
Mark Browndfbe4032013-05-17 13:12:52 +01009822L: linux-spi@vger.kernel.org
Mark Browne7e4e132013-04-18 18:18:47 +01009823T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
Joe Perches8a6e2532010-03-05 13:43:11 -08009824Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009825S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009826F: Documentation/spi/
9827F: drivers/spi/
9828F: include/linux/spi/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009829F: include/uapi/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009830
Jim Lewis2752e402006-09-29 02:01:19 -07009831SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07009832M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
Jim Lewis2752e402006-09-29 02:01:19 -07009833L: netdev@vger.kernel.org
9834S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009835F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -07009836F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07009837
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009838SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07009839M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10009840L: linuxppc-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009841W: http://www.ibm.com/developerworks/power/cell/
9842S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009843F: Documentation/filesystems/spufs.txt
9844F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009845
Phillip Lougherfc555842009-01-05 08:46:29 +00009846SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +01009847M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00009848L: squashfs-devel@lists.sourceforge.net (subscribers-only)
9849W: http://squashfs.org.uk
9850S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009851F: Documentation/filesystems/squashfs.txt
9852F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00009853
Linus Torvalds1da177e2005-04-16 15:20:36 -07009854SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07009855M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009856S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009857F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07009858
Linus Torvalds26e9a392008-10-17 09:50:12 -07009859STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -08009860M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -08009861L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -08009862S: Supported
Greg Kroah-Hartman7b175c42013-06-18 12:58:12 -07009863F: Documentation/stable_kernel_rules.txt
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009864
Linus Torvalds26e9a392008-10-17 09:50:12 -07009865STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08009866M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -07009867T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07009868L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -08009869S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009870F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07009871
Joe Perchesebd3d012011-07-05 09:42:02 -07009872STAGING - COMEDI
9873M: Ian Abbott <abbotti@mev.co.uk>
Lidza Louina81b884c2013-07-24 11:29:33 -04009874M: H Hartley Sweeten <hsweeten@visionengravers.com>
Joe Perchesebd3d012011-07-05 09:42:02 -07009875S: Odd Fixes
9876F: drivers/staging/comedi/
9877
Joe Perchesa0138162011-07-05 15:21:34 -07009878STAGING - FLARION FT1000 DRIVERS
9879M: Marek Belisko <marek.belisko@gmail.com>
9880S: Odd Fixes
9881F: drivers/staging/ft1000/
9882
Joe Perches6c1bb422011-07-05 09:42:07 -07009883STAGING - INDUSTRIAL IO
Sachin Kamat030a13d2013-09-11 11:00:00 +01009884M: Jonathan Cameron <jic23@kernel.org>
Joe Perchesa0138162011-07-05 15:21:34 -07009885L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -07009886S: Odd Fixes
9887F: drivers/staging/iio/
9888
Joe Perchesa0138162011-07-05 15:21:34 -07009889STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
9890M: Jarod Wilson <jarod@wilsonet.com>
9891W: http://www.lirc.org/
9892S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08009893F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -07009894
Oleg Drokinf5e5de12014-08-15 12:48:14 -04009895STAGING - LUSTRE PARALLEL FILESYSTEM
9896M: Oleg Drokin <oleg.drokin@intel.com>
9897M: Andreas Dilger <andreas.dilger@intel.com>
9898L: HPDD-discuss@lists.01.org (moderated for non-subscribers)
9899W: http://lustre.opensfs.org/
9900S: Maintained
9901F: drivers/staging/lustre
9902
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02009903STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
Julian Andres Klodeb8125382011-09-27 19:01:05 +02009904M: Julian Andres Klode <jak@jak-linux.org>
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02009905M: Marc Dietrich <marvin24@gmx.de>
9906L: ac100@lists.launchpad.net (moderated for non-subscribers)
Stephen Warren5d96bf42013-02-27 17:02:54 -08009907L: linux-tegra@vger.kernel.org
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02009908S: Maintained
9909F: drivers/staging/nvec/
9910
Joe Perchesa0138162011-07-05 15:21:34 -07009911STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
Jens Frederich3140b452013-08-04 20:57:43 +02009912M: Jens Frederich <jfrederich@gmail.com>
9913M: Daniel Drake <dsd@laptop.org>
Joe Perchesa0138162011-07-05 15:21:34 -07009914M: Jon Nettleton <jon.nettleton@gmail.com>
9915W: http://wiki.laptop.org/go/DCON
Jens Frederich3140b452013-08-04 20:57:43 +02009916S: Maintained
Joe Perchesa0138162011-07-05 15:21:34 -07009917F: drivers/staging/olpc_dcon/
9918
9919STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
Joe Perches29e70172011-07-05 09:42:08 -07009920M: Willy Tarreau <willy@meta-x.org>
9921S: Odd Fixes
9922F: drivers/staging/panel/
9923
Joe Perchesa0138162011-07-05 15:21:34 -07009924STAGING - REALTEK RTL8712U DRIVERS
9925M: Larry Finger <Larry.Finger@lwfinger.net>
9926M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
9927S: Odd Fixes
9928F: drivers/staging/rtl8712/
9929
Jes Sorensen7591ba82014-04-26 18:54:48 +02009930STAGING - REALTEK RTL8723U WIRELESS DRIVER
9931M: Larry Finger <Larry.Finger@lwfinger.net>
9932M: Jes Sorensen <Jes.Sorensen@redhat.com>
9933L: linux-wireless@vger.kernel.org
9934S: Maintained
9935F: drivers/staging/rtl8723au/
9936
Sudip Mukherjee980ac4d2015-03-03 16:21:07 +05309937STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
9938M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
9939M: Teddy Wang <teddy.wang@siliconmotion.com>
9940M: Sudip Mukherjee <sudip@vectorindia.org>
9941L: linux-fbdev@vger.kernel.org
9942S: Maintained
9943F: drivers/staging/sm750fb/
9944
Joe Perches510fa4082014-02-10 16:37:56 -08009945STAGING - SLICOSS
9946M: Lior Dotan <liodot@gmail.com>
9947M: Christopher Harrer <charrer@alacritech.com>
9948S: Odd Fixes
9949F: drivers/staging/slicoss/
9950
Joe Perchesa0138162011-07-05 15:21:34 -07009951STAGING - SPEAKUP CONSOLE SPEECH DRIVER
9952M: William Hubbs <w.d.hubbs@gmail.com>
9953M: Chris Brannon <chris@the-brannons.com>
William Hubbsd33bce32013-05-12 13:49:54 -05009954M: Kirk Reiser <kirk@reisers.ca>
Joe Perchesa0138162011-07-05 15:21:34 -07009955M: Samuel Thibault <samuel.thibault@ens-lyon.org>
Samuel Thibaulte6a152e2014-07-17 23:34:58 +02009956L: speakup@linux-speakup.org
Joe Perchesa0138162011-07-05 15:21:34 -07009957W: http://www.linux-speakup.org/
9958S: Odd Fixes
9959F: drivers/staging/speakup/
9960
Joe Perchesb3e871c2011-07-05 09:42:10 -07009961STAGING - VIA VT665X DRIVERS
9962M: Forest Bond <forest@alittletooquiet.net>
9963S: Odd Fixes
9964F: drivers/staging/vt665?/
9965
Johnny Kima30baec2015-05-11 14:30:57 +09009966STAGING - WILC1000 WIFI DRIVER
9967M: Johnny Kim <johnny.kim@atmel.com>
9968M: Rachel Kim <rachel.kim@atmel.com>
9969M: Dean Lee <dean.lee@atmel.com>
9970M: Chris Park <chris.park@atmel.com>
9971L: linux-wireless@vger.kernel.org
9972S: Supported
9973F: drivers/staging/wilc1000/
9974
Joe Perches709bcb02011-07-05 09:42:13 -07009975STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +02009976M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -07009977S: Odd Fixes
9978F: drivers/staging/xgifb/
9979
Mike Marciniszyn77241052015-07-30 15:17:43 -04009980HFI1 DRIVER
9981M: Mike Marciniszyn <infinipath@intel.com>
9982L: linux-rdma@vger.kernel.org
9983S: Supported
9984F: drivers/staging/rdma/hfi1
9985
Linus Torvalds1da177e2005-04-16 15:20:36 -07009986STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009987M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07009988S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -07009989F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009990
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009991SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07009992M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009993W: http://sammy.net/sun3/
9994S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009995F: arch/m68k/kernel/*sun3*
9996F: arch/m68k/sun3*/
9997F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -07009998F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009999
Hans de Goedeaf6a5af2014-12-18 09:24:50 -080010000SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
10001M: Hans de Goede <hdegoede@redhat.com>
10002L: linux-input@vger.kernel.org
10003S: Maintained
10004F: Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
10005F: drivers/input/keyboard/sun4i-lradc-keys.c
10006
Denis Kirjanov2bc9ff02013-08-17 09:08:49 +040010007SUNDANCE NETWORK DRIVER
10008M: Denis Kirjanov <kda@linux-powerpc.org>
10009L: netdev@vger.kernel.org
10010S: Maintained
10011F: drivers/net/ethernet/dlink/sundance.c
10012
Paul Mundt2cbb12a2007-11-19 13:08:37 +090010013SUPERH
Paul Mundt2cbb12a2007-11-19 13:08:37 +090010014L: linux-sh@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -080010015Q: http://patchwork.kernel.org/project/linux-sh/list/
Geert Uytterhoevendcaa57d2014-04-03 14:48:47 -070010016S: Orphan
Paul Mundt066069e2009-04-14 06:32:08 +090010017F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -070010018F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +090010019F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010020
Randy Dunlap4480f15b2008-10-12 16:11:58 -070010021SUSPEND TO RAM
Rafael J. Wysocki7fb06082014-03-20 03:34:47 +010010022M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Joe Perches8b58be82009-07-29 15:04:30 -070010023M: Len Brown <len.brown@intel.com>
10024M: Pavel Machek <pavel@ucw.cz>
WANG Congbf1c1382011-10-08 20:57:50 +020010025L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010026S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010027F: Documentation/power/
10028F: arch/x86/kernel/acpi/
10029F: drivers/base/power/
10030F: kernel/power/
10031F: include/linux/suspend.h
10032F: include/linux/freezer.h
10033F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070010034
10035SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -070010036M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010037L: linux-video@atrey.karlin.mff.cuni.cz
10038S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010039F: Documentation/svga.txt
10040F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010041
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -070010042SWIOTLB SUBSYSTEM
10043M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10044L: linux-kernel@vger.kernel.org
10045S: Supported
10046F: lib/swiotlb.c
10047F: arch/*/kernel/pci-swiotlb.c
10048F: include/linux/swiotlb.h
10049
Jiri Pirko007f7902014-11-28 14:34:17 +010010050SWITCHDEV
10051M: Jiri Pirko <jiri@resnulli.us>
10052L: netdev@vger.kernel.org
10053S: Supported
10054F: net/switchdev/
10055F: include/net/switchdev.h
10056
Vineet Guptadb8e35d2013-01-18 15:12:25 +053010057SYNOPSYS ARC ARCHITECTURE
10058M: Vineet Gupta <vgupta@synopsys.com>
Vineet Guptadb8e35d2013-01-18 15:12:25 +053010059S: Supported
10060F: arch/arc/
Vineet Gupta9b288292014-11-18 17:36:11 +053010061F: Documentation/devicetree/bindings/arc/*
Joe Perchesc6a0fe42013-09-11 14:23:45 -070010062F: drivers/tty/serial/arc_uart.c
Baruch Siachb7182d12015-08-11 12:08:32 +030010063T: git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
Vineet Guptadb8e35d2013-01-18 15:12:25 +053010064
Alexey Brodkin556cc1c2014-01-27 14:51:34 +010010065SYNOPSYS ARC SDP platform support
10066M: Alexey Brodkin <abrodkin@synopsys.com>
10067S: Supported
10068F: arch/arc/plat-axs10x
10069F: arch/arc/boot/dts/ax*
10070F: Documentation/devicetree/bindings/arc/axs10*
10071
Lee Jones6c284c92015-05-12 14:13:58 +010010072SYSTEM CONFIGURATION (SYSCON)
10073M: Lee Jones <lee.jones@linaro.org>
10074M: Arnd Bergmann <arnd@arndb.de>
10075T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
10076S: Supported
10077F: drivers/mfd/syscon.c
10078
Linus Torvalds1da177e2005-04-16 15:20:36 -070010079SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070010080M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010081S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010082F: Documentation/filesystems/sysv-fs.txt
10083F: fs/sysv/
10084F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070010085
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -070010086TARGET SUBSYSTEM
Joe Perches9c3646d2015-06-25 15:02:00 -070010087M: "Nicholas A. Bellinger" <nab@linux-iscsi.org>
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -070010088L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +000010089L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -070010090W: http://www.linux-iscsi.org
Joe Perchescf015e92014-02-25 15:01:47 -080010091W: http://groups.google.com/group/linux-iscsi-target-dev
Nicholas Bellinger452cf322013-05-11 16:27:56 -070010092T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -070010093S: Supported
10094F: drivers/target/
10095F: include/target/
10096F: Documentation/target/
10097
Alan Cox4e688522008-04-30 00:52:11 -070010098TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -070010099M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -070010100S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010101F: Documentation/accounting/taskstats*
10102F: include/linux/taskstats*
10103F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -070010104
Stephen Hemminger781b456a2006-07-10 20:25:29 -070010105TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +000010106M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-07-10 20:25:29 -070010107L: netdev@vger.kernel.org
10108S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010109F: include/net/pkt_cls.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010110F: include/uapi/linux/pkt_cls.h
Joe Perches679655d2009-04-07 20:44:32 -070010111F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -070010112
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -070010113TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -070010114M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
10115M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -070010116W: http://tcp-lp-mod.sourceforge.net/
10117S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010118F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -070010119
Antti Palosaari91952bc2012-10-01 12:28:46 -030010120TDA10071 MEDIA DRIVER
10121M: Antti Palosaari <crope@iki.fi>
10122L: linux-media@vger.kernel.org
10123W: http://linuxtv.org/
10124W: http://palosaari.fi/linux/
10125Q: http://patchwork.linuxtv.org/project/linux-media/list/
10126T: git git://linuxtv.org/anttip/media_tree.git
10127S: Maintained
10128F: drivers/media/dvb-frontends/tda10071*
10129
10130TDA18212 MEDIA DRIVER
10131M: Antti Palosaari <crope@iki.fi>
10132L: linux-media@vger.kernel.org
10133W: http://linuxtv.org/
10134W: http://palosaari.fi/linux/
10135Q: http://patchwork.linuxtv.org/project/linux-media/list/
10136T: git git://linuxtv.org/anttip/media_tree.git
10137S: Maintained
10138F: drivers/media/tuners/tda18212*
10139
10140TDA18218 MEDIA DRIVER
10141M: Antti Palosaari <crope@iki.fi>
10142L: linux-media@vger.kernel.org
10143W: http://linuxtv.org/
10144W: http://palosaari.fi/linux/
10145Q: http://patchwork.linuxtv.org/project/linux-media/list/
10146T: git git://linuxtv.org/anttip/media_tree.git
10147S: Maintained
10148F: drivers/media/tuners/tda18218*
10149
Michael Krufky3b2f6ab2012-10-02 00:55:32 -030010150TDA18271 MEDIA DRIVER
10151M: Michael Krufky <mkrufky@linuxtv.org>
10152L: linux-media@vger.kernel.org
10153W: http://linuxtv.org/
10154W: http://github.com/mkrufky
10155Q: http://patchwork.linuxtv.org/project/linux-media/list/
10156T: git git://linuxtv.org/mkrufky/tuners.git
10157S: Maintained
10158F: drivers/media/tuners/tda18271*
10159
Michael Krufkye48307a2012-10-02 00:56:33 -030010160TDA827x MEDIA DRIVER
10161M: Michael Krufky <mkrufky@linuxtv.org>
10162L: linux-media@vger.kernel.org
10163W: http://linuxtv.org/
10164W: http://github.com/mkrufky
10165Q: http://patchwork.linuxtv.org/project/linux-media/list/
10166T: git git://linuxtv.org/mkrufky/tuners.git
10167S: Maintained
10168F: drivers/media/tuners/tda8290.*
10169
Michael Krufky66cf9212012-10-02 00:56:28 -030010170TDA8290 MEDIA DRIVER
10171M: Michael Krufky <mkrufky@linuxtv.org>
10172L: linux-media@vger.kernel.org
10173W: http://linuxtv.org/
10174W: http://github.com/mkrufky
10175Q: http://patchwork.linuxtv.org/project/linux-media/list/
10176T: git git://linuxtv.org/mkrufky/tuners.git
10177S: Maintained
10178F: drivers/media/tuners/tda8290.*
10179
Hans Verkuil4b9fba32012-11-23 10:02:05 -030010180TDA9840 MEDIA DRIVER
10181M: Hans Verkuil <hverkuil@xs4all.nl>
10182L: linux-media@vger.kernel.org
10183T: git git://linuxtv.org/media_tree.git
10184W: http://linuxtv.org
10185S: Maintained
10186F: drivers/media/i2c/tda9840*
10187
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -020010188TEA5761 TUNER DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -020010189M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -020010190L: linux-media@vger.kernel.org
10191W: http://linuxtv.org
10192T: git git://linuxtv.org/media_tree.git
10193S: Odd fixes
10194F: drivers/media/tuners/tea5761.*
10195
10196TEA5767 TUNER DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -020010197M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -020010198L: linux-media@vger.kernel.org
10199W: http://linuxtv.org
10200T: git git://linuxtv.org/media_tree.git
10201S: Maintained
10202F: drivers/media/tuners/tea5767.*
10203
Hans Verkuil4b9fba32012-11-23 10:02:05 -030010204TEA6415C MEDIA DRIVER
10205M: Hans Verkuil <hverkuil@xs4all.nl>
10206L: linux-media@vger.kernel.org
10207T: git git://linuxtv.org/media_tree.git
10208W: http://linuxtv.org
10209S: Maintained
10210F: drivers/media/i2c/tea6415c*
10211
10212TEA6420 MEDIA DRIVER
10213M: Hans Verkuil <hverkuil@xs4all.nl>
10214L: linux-media@vger.kernel.org
10215T: git git://linuxtv.org/media_tree.git
10216W: http://linuxtv.org
10217S: Maintained
10218F: drivers/media/i2c/tea6420*
10219
Jiri Pirko3d249d42011-11-11 22:16:48 +000010220TEAM DRIVER
Jiri Pirkodca9ab92013-02-15 23:55:05 +000010221M: Jiri Pirko <jiri@resnulli.us>
Jiri Pirko3d249d42011-11-11 22:16:48 +000010222L: netdev@vger.kernel.org
10223S: Supported
10224F: drivers/net/team/
10225F: include/linux/if_team.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010226F: include/uapi/linux/if_team.h
Jiri Pirko3d249d42011-11-11 22:16:48 +000010227
Vivien Didelot7d029122013-01-04 16:18:14 -050010228TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
Joe Perches9c3646d2015-06-25 15:02:00 -070010229M: "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
Vivien Didelot7d029122013-01-04 16:18:14 -050010230S: Maintained
10231F: arch/x86/platform/ts5500/
10232
Sean Young40ad4a32012-11-19 10:32:53 -030010233TECHNOTREND USB IR RECEIVER
10234M: Sean Young <sean@mess.org>
10235L: linux-media@vger.kernel.org
10236S: Maintained
10237F: drivers/media/rc/ttusbir.c
10238
Stephen Warrenadabdb02013-09-13 13:00:57 -060010239TEGRA ARCHITECTURE SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -070010240M: Stephen Warren <swarren@wwwdotorg.org>
Stephen Warrenadabdb02013-09-13 13:00:57 -060010241M: Thierry Reding <thierry.reding@gmail.com>
Stephen Warren554077c2014-10-03 09:50:32 -060010242M: Alexandre Courbot <gnurou@gmail.com>
Erik Gilling84b94142010-06-09 15:35:53 -070010243L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -070010244Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
Andreas Färberb779b882014-07-28 12:06:26 -060010245T: git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
Erik Gilling84b94142010-06-09 15:35:53 -070010246S: Supported
Stephen Warrenbbbe96e2013-04-29 16:17:23 -070010247N: [^a-z]tegra
Erik Gilling84b94142010-06-09 15:35:53 -070010248
Stephen Warrenadabdb02013-09-13 13:00:57 -060010249TEGRA CLOCK DRIVER
10250M: Peter De Schrijver <pdeschrijver@nvidia.com>
10251M: Prashant Gaikwad <pgaikwad@nvidia.com>
10252S: Supported
10253F: drivers/clk/tegra/
10254
10255TEGRA DMA DRIVER
10256M: Laxman Dewangan <ldewangan@nvidia.com>
10257S: Supported
10258F: drivers/dma/tegra20-apb-dma.c
10259
Stephen Warrenadabdb02013-09-13 13:00:57 -060010260TEGRA I2C DRIVER
10261M: Laxman Dewangan <ldewangan@nvidia.com>
10262S: Supported
10263F: drivers/i2c/busses/i2c-tegra.c
10264
10265TEGRA IOMMU DRIVERS
10266M: Hiroshi Doyu <hdoyu@nvidia.com>
10267S: Supported
10268F: drivers/iommu/tegra*
10269
10270TEGRA KBC DRIVER
10271M: Rakesh Iyer <riyer@nvidia.com>
10272M: Laxman Dewangan <ldewangan@nvidia.com>
10273S: Supported
10274F: drivers/input/keyboard/tegra-kbc.c
10275
Stephen Warrenadabdb02013-09-13 13:00:57 -060010276TEGRA PWM DRIVER
10277M: Thierry Reding <thierry.reding@gmail.com>
10278S: Supported
10279F: drivers/pwm/pwm-tegra.c
10280
10281TEGRA SERIAL DRIVER
10282M: Laxman Dewangan <ldewangan@nvidia.com>
10283S: Supported
10284F: drivers/tty/serial/serial-tegra.c
10285
10286TEGRA SPI DRIVER
10287M: Laxman Dewangan <ldewangan@nvidia.com>
10288S: Supported
10289F: drivers/spi/spi-tegra*
10290
Andy Gospodarek1a348cc2007-09-17 18:50:36 -070010291TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010292M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -070010293L: netdev@vger.kernel.org
10294S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -070010295F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -070010296
Alan Cox4e688522008-04-30 00:52:11 -070010297Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -070010298M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -070010299S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010300F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -070010301
Randy Dunlap4480f15b2008-10-12 16:11:58 -070010302TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -070010303M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -070010304M: Max Filippov <jcmvbkbc@gmail.com>
10305L: linux-xtensa@linux-xtensa.org
Alan Cox4e688522008-04-30 00:52:11 -070010306S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010307F: arch/xtensa/
Max Filippov3dc99852014-04-03 14:48:48 -070010308F: drivers/irqchip/irq-xtensa-*
Alan Cox4e688522008-04-30 00:52:11 -070010309
Hans Verkuil5313ba62013-12-13 09:00:38 -030010310THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
10311M: Hans Verkuil <hverkuil@xs4all.nl>
10312L: linux-media@vger.kernel.org
10313T: git git://linuxtv.org/media_tree.git
10314W: http://linuxtv.org
10315S: Maintained
10316F: drivers/media/radio/radio-raremono.c
10317
Zhang Ruid3fb6952012-11-15 08:58:27 +080010318THERMAL
Joe Perchesb75f0052014-03-03 15:38:37 -080010319M: Zhang Rui <rui.zhang@intel.com>
Lee Jonesf14d1c22014-05-30 11:03:28 +010010320M: Eduardo Valentin <edubezval@gmail.com>
Joe Perchesb75f0052014-03-03 15:38:37 -080010321L: linux-pm@vger.kernel.org
10322T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
10323T: git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
10324Q: https://patchwork.kernel.org/project/linux-pm/list/
10325S: Supported
10326F: drivers/thermal/
10327F: include/linux/thermal.h
Florian Fainelliaf6c9f12014-11-19 18:11:00 -080010328F: include/uapi/linux/thermal.h
Joe Perchesb75f0052014-03-03 15:38:37 -080010329F: include/linux/cpu_cooling.h
10330F: Documentation/devicetree/bindings/thermal/
Zhang Ruid3fb6952012-11-15 08:58:27 +080010331
Vivien Didelot30ba2fb2013-01-22 12:01:21 -050010332THINGM BLINK(1) USB RGB LED DRIVER
10333M: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
10334S: Maintained
10335F: drivers/hid/hid-thingm.c
10336
Alan Cox4e688522008-04-30 00:52:11 -070010337THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010338M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -070010339L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -050010340L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -070010341W: http://ibm-acpi.sourceforge.net
10342W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -070010343T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -070010344S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010345F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -070010346
Eduardo Valentin1b46f2a2013-03-15 09:00:34 -040010347TI BANDGAP AND THERMAL DRIVER
Lee Jonesf14d1c22014-05-30 11:03:28 +010010348M: Eduardo Valentin <edubezval@gmail.com>
Eduardo Valentin1b46f2a2013-03-15 09:00:34 -040010349L: linux-pm@vger.kernel.org
Nishanth Menon531ff132015-01-03 13:13:30 -060010350L: linux-omap@vger.kernel.org
Eduardo Valentin5a723e82015-01-05 17:48:13 -040010351S: Maintained
Eduardo Valentin794b2e22013-05-15 15:46:01 +000010352F: drivers/thermal/ti-soc-thermal/
Eduardo Valentin1b46f2a2013-03-15 09:00:34 -040010353
Max Filippov0c7665c2015-01-12 10:20:46 +030010354TI CDCE706 CLOCK DRIVER
10355M: Max Filippov <jcmvbkbc@gmail.com>
10356S: Maintained
10357F: drivers/clk/clk-cdce706.c
10358
Tero Kristo49b6a5e2014-07-02 17:03:50 +030010359TI CLOCK DRIVER
10360M: Tero Kristo <t-kristo@ti.com>
10361L: linux-omap@vger.kernel.org
10362S: Maintained
10363F: drivers/clk/ti/
10364F: include/linux/clk/ti.h
10365
Alex Dubov4020f2d2006-10-04 02:15:37 -070010366TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010367M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020010368S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010369F: drivers/misc/tifm*
10370F: drivers/mmc/host/tifm_sd.c
10371F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -070010372
Santosh Shilimkare0c52402014-07-10 11:30:08 -040010373TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
Santosh Shilimkar97215802014-10-13 14:16:28 -040010374M: Santosh Shilimkar <ssantosh@kernel.org>
Santosh Shilimkare0c52402014-07-10 11:30:08 -040010375L: linux-kernel@vger.kernel.org
10376L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10377S: Maintained
10378F: drivers/soc/ti/*
10379T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
10380
10381
M R Swami Reddy152ad442012-04-02 20:02:31 +053010382TI LM49xxx FAMILY ASoC CODEC DRIVERS
10383M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +053010384M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +053010385L: alsa-devel@alsa-project.org (moderated for non-subscribers)
10386S: Maintained
10387F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +053010388F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +053010389
Kim, Milo0edd8072012-12-17 16:01:17 -080010390TI LP855x BACKLIGHT DRIVER
10391M: Milo Kim <milo.kim@ti.com>
10392S: Maintained
10393F: Documentation/backlight/lp855x-driver.txt
10394F: drivers/video/backlight/lp855x_bl.c
10395F: include/linux/platform_data/lp855x.h
10396
Kim, Milofaf13f62012-12-10 05:27:03 +000010397TI LP8727 CHARGER DRIVER
10398M: Milo Kim <milo.kim@ti.com>
10399S: Maintained
10400F: drivers/power/lp8727_charger.c
10401F: include/linux/platform_data/lp8727.h
10402
Kim, Milo22f12292012-12-10 05:27:55 +000010403TI LP8788 MFD DRIVER
10404M: Milo Kim <milo.kim@ti.com>
10405S: Maintained
10406F: drivers/iio/adc/lp8788_adc.c
10407F: drivers/leds/leds-lp8788.c
10408F: drivers/mfd/lp8788*.c
10409F: drivers/power/lp8788-charger.c
10410F: drivers/regulator/lp8788-*.c
10411F: include/linux/mfd/lp8788*.h
10412
Karicheri, Muralidharan84640e22015-01-15 19:12:50 -050010413TI NETCP ETHERNET DRIVER
10414M: Wingman Kwok <w-kwok2@ti.com>
10415M: Murali Karicheri <m-karicheri2@ti.com>
10416L: netdev@vger.kernel.org
10417S: Maintained
10418F: drivers/net/ethernet/ti/netcp*
10419
Kevin Cernekee217e0ca2015-05-03 17:00:19 -070010420TI TAS571X FAMILY ASoC CODEC DRIVER
10421M: Kevin Cernekee <cernekee@chromium.org>
10422L: alsa-devel@alsa-project.org (moderated for non-subscribers)
10423S: Odd Fixes
10424F: sound/soc/codecs/tas571x*
10425
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +030010426TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +030010427M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +030010428L: alsa-devel@alsa-project.org (moderated for non-subscribers)
10429S: Maintained
10430F: sound/soc/codecs/twl4030*
10431
Luciano Coelho90921012011-11-20 21:40:41 +020010432TI WILINK WIRELESS DRIVERS
Luciano Coelho90921012011-11-20 21:40:41 +020010433L: linux-wireless@vger.kernel.org
10434W: http://wireless.kernel.org/en/users/Drivers/wl12xx
10435W: http://wireless.kernel.org/en/users/Drivers/wl1251
10436T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
Luciano Coelho22d072f2013-12-09 22:28:32 +020010437S: Orphan
Luciano Coelho90921012011-11-20 21:40:41 +020010438F: drivers/net/wireless/ti/
10439F: include/linux/wl12xx.h
10440
Per Lidene86eaa32006-01-12 16:45:18 +010010441TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -070010442M: Jon Maloy <jon.maloy@ericsson.com>
Jon Paul Maloy115403d2015-03-09 14:44:13 -040010443M: Ying Xue <ying.xue@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -050010444L: netdev@vger.kernel.org (core kernel code)
10445L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +010010446W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +010010447S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010448F: include/uapi/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -070010449F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +010010450
Chris Metcalf867e3592010-05-28 23:09:12 -040010451TILE ARCHITECTURE
Chris Metcalfc47b15c2014-11-13 09:41:58 -050010452M: Chris Metcalf <cmetcalf@ezchip.com>
Chris Metcalf740e1432015-02-13 13:16:49 -050010453W: http://www.ezchip.com/scm/
Chris Metcalf867e3592010-05-28 23:09:12 -040010454S: Supported
10455F: arch/tile/
Chris Metcalf6b940602013-08-07 10:45:01 -040010456F: drivers/char/tile-srom.c
Chris Metcalf5c770752011-03-01 13:01:49 -050010457F: drivers/edac/tile_edac.c
Chris Metcalf6b940602013-08-07 10:45:01 -040010458F: drivers/net/ethernet/tile/
10459F: drivers/rtc/rtc-tile.c
10460F: drivers/tty/hvc/hvc_tile.c
Chris Metcalfb5c6c1a2013-08-12 14:11:44 -040010461F: drivers/tty/serial/tilegx.c
Chris Metcalf6b940602013-08-07 10:45:01 -040010462F: drivers/usb/host/*-tilegx.c
10463F: include/linux/usb/tilegx.h
Chris Metcalf867e3592010-05-28 23:09:12 -040010464
Linus Torvalds1da177e2005-04-16 15:20:36 -070010465TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010466M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +080010467L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010468W: http://sourceforge.net/projects/tlan/
10469S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010470F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -070010471F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010472
Kentaro Takedad74db3b2009-02-05 17:18:18 +090010473TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -070010474M: Kentaro Takeda <takedakn@nttdata.co.jp>
10475M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +090010476L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
10477L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +090010478L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
10479L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
10480W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +090010481T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +090010482S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010483F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +090010484
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -030010485TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -030010486M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd0944852010-02-11 10:40:13 -050010487L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -030010488S: Maintained
10489F: drivers/platform/x86/topstar-laptop.c
10490
Linus Torvalds1da177e2005-04-16 15:20:36 -070010491TOSHIBA ACPI EXTRAS DRIVER
Azael Avalos0a63ca12015-03-06 18:14:42 -070010492M: Azael Avalos <coproscefalo@gmail.com>
Matthew Garrettd0944852010-02-11 10:40:13 -050010493L: platform-driver-x86@vger.kernel.org
Azael Avalos0a63ca12015-03-06 18:14:42 -070010494S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010495F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070010496
Azael Avalos0a63ca12015-03-06 18:14:42 -070010497TOSHIBA BLUETOOTH DRIVER
10498M: Azael Avalos <coproscefalo@gmail.com>
10499L: platform-driver-x86@vger.kernel.org
10500S: Maintained
10501F: drivers/platform/x86/toshiba_bluetooth.c
10502
10503TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
10504M: Azael Avalos <coproscefalo@gmail.com>
10505L: platform-driver-x86@vger.kernel.org
10506S: Maintained
10507F: drivers/platform/x86/toshiba_haps.c
10508
Linus Torvalds1da177e2005-04-16 15:20:36 -070010509TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010510M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010511W: http://www.buzzard.org.uk/toshiba/
10512S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010513F: drivers/char/toshiba.c
10514F: include/linux/toshiba.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010515F: include/uapi/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070010516
Mats Randgaardd32d9862015-07-09 05:45:47 -030010517TOSHIBA TC358743 DRIVER
10518M: Mats Randgaard <matrandg@cisco.com>
10519L: linux-media@vger.kernel.org
10520S: Maintained
10521F: drivers/media/i2c/tc358743*
10522F: include/media/tc358743.h
10523
Pierre Ossmand719f902009-03-24 21:06:09 +010010524TMIO MMC DRIVER
Ben Hutchingsc4b13fb2015-04-27 00:01:53 +010010525M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +020010526L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +010010527S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +020010528F: drivers/mmc/host/tmio_mmc*
10529F: drivers/mmc/host/sh_mobile_sdhi.c
10530F: include/linux/mmc/tmio.h
10531F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +010010532
Guenter Roeck917cc4e2013-05-19 20:44:27 -070010533TMP401 HARDWARE MONITOR DRIVER
10534M: Guenter Roeck <linux@roeck-us.net>
10535L: lm-sensors@lm-sensors.org
10536S: Maintained
10537F: Documentation/hwmon/tmp401
10538F: drivers/hwmon/tmp401.c
10539
Hugh Dickins98f32602009-05-21 20:33:58 +010010540TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -070010541M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +010010542L: linux-mm@kvack.org
10543S: Maintained
10544F: include/linux/shmem_fs.h
10545F: mm/shmem.c
10546
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -020010547TM6000 VIDEO4LINUX DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -020010548M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -020010549L: linux-media@vger.kernel.org
10550W: http://linuxtv.org
10551T: git git://linuxtv.org/media_tree.git
10552S: Odd fixes
10553F: drivers/media/usb/tm6000/
10554
Hans Verkuilc65fde12014-08-10 05:16:39 -030010555TW68 VIDEO4LINUX DRIVER
10556M: Hans Verkuil <hverkuil@xs4all.nl>
10557L: linux-media@vger.kernel.org
10558T: git git://linuxtv.org/media_tree.git
10559W: http://linuxtv.org
10560S: Odd Fixes
10561F: drivers/media/pci/tw68/
10562
Alan Cox4e688522008-04-30 00:52:11 -070010563TPM DEVICE DRIVER
Peter Huewe901486b2013-10-22 19:28:30 +020010564M: Peter Huewe <peterhuewe@gmx.de>
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -030010565M: Marcel Selhorst <tpmdd@selhorst.net>
Peter Huewece93b4b2015-03-15 01:05:31 +010010566R: Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
Peter Huewe383dec12013-10-30 20:54:45 +010010567W: http://tpmdd.sourceforge.net
Rajiv Andrade63a10df2008-10-15 22:04:36 -070010568L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Peter Huewef78c81b2015-01-17 15:17:51 +010010569Q: git git://github.com/PeterHuewe/linux-tpmdd.git
10570T: https://github.com/PeterHuewe/linux-tpmdd
Alan Cox4e688522008-04-30 00:52:11 -070010571S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010572F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -070010573
Ashley Lai1a0f1b22014-12-04 21:01:51 -060010574TPM IBM_VTPM DEVICE DRIVER
10575M: Ashley Lai <ashleydlai@gmail.com>
10576W: http://tpmdd.sourceforge.net
10577L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
10578S: Maintained
10579F: drivers/char/tpm/tpm_ibmvtpm*
10580
Joe Perchesd6f005a2009-10-26 16:49:40 -070010581TRACING
10582M: Steven Rostedt <rostedt@goodmis.org>
Joe Perchesd6f005a2009-10-26 16:49:40 -070010583M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +010010584T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -070010585S: Maintained
10586F: Documentation/trace/ftrace.txt
10587F: arch/*/*/*/ftrace.h
10588F: arch/*/kernel/ftrace.c
10589F: include/*/ftrace.h
10590F: include/linux/trace*.h
10591F: include/trace/
10592F: kernel/trace/
Masami Hiramatsu6e68e6c2014-09-22 23:42:50 +000010593F: tools/testing/selftests/ftrace/
Joe Perchesd6f005a2009-10-26 16:49:40 -070010594
Linus Torvalds1da177e2005-04-16 15:20:36 -070010595TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -070010596M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -070010597T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070010598S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +020010599K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -070010600
Alan Cox4e688522008-04-30 00:52:11 -070010601TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -080010602M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jiri Slabyd8130622015-07-17 16:23:20 -070010603M: Jiri Slaby <jslaby@suse.com>
Greg KH879a5a02012-01-31 20:02:00 -080010604S: Supported
Joe Perches08deed12012-03-23 15:01:57 -070010605T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Baruch Siach84e1eb82015-06-04 10:56:58 +030010606F: Documentation/serial/
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -020010607F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -080010608F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +010010609F: include/linux/serial_core.h
10610F: include/linux/serial.h
10611F: include/linux/tty.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010612F: include/uapi/linux/serial_core.h
10613F: include/uapi/linux/serial.h
10614F: include/uapi/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -070010615
Antti Palosaari91952bc2012-10-01 12:28:46 -030010616TUA9001 MEDIA DRIVER
10617M: Antti Palosaari <crope@iki.fi>
10618L: linux-media@vger.kernel.org
10619W: http://linuxtv.org/
10620W: http://palosaari.fi/linux/
10621Q: http://patchwork.linuxtv.org/project/linux-media/list/
10622T: git git://linuxtv.org/anttip/media_tree.git
10623S: Maintained
10624F: drivers/media/tuners/tua9001*
10625
Grant Grundler740db6d2008-02-17 11:53:49 -070010626TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -070010627M: Grant Grundler <grundler@parisc-linux.org>
Grant Grundler740db6d2008-02-17 11:53:49 -070010628L: netdev@vger.kernel.org
10629S: Maintained
Joe Perches0f04e2a2012-01-10 15:08:56 -080010630F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010631
10632TUN/TAP driver
Jiri Slabyba57b6f2012-11-30 07:05:40 +000010633M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010634W: http://vtun.sourceforge.net/tun
10635S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010636F: Documentation/networking/tuntap.txt
10637F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010638
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -080010639TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070010640M: "Maciej W. Rozycki" <macro@linux-mips.org>
Ralf Baechlec4063392014-04-03 13:29:06 +020010641M: Ralf Baechle <ralf@linux-mips.org>
10642L: linux-mips@linux-mips.org
10643Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -080010644S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010645F: drivers/tc/
10646F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -080010647
Linus Torvalds1da177e2005-04-16 15:20:36 -070010648U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010649M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010650L: linux-scsi@vger.kernel.org
10651S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010652F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070010653
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010654UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +030010655M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +030010656M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010657L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +030010658T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010659W: http://www.linux-mtd.infradead.org/doc/ubifs.html
10660S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010661F: Documentation/filesystems/ubifs.txt
10662F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010663
Greg Ungerere1632fa2015-06-19 10:40:03 +100010664UCLINUX (M68KNOMMU AND COLDFIRE)
Joe Perches8b58be82009-07-29 15:04:30 -070010665M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +010010666W: http://www.uclinux.org/
Greg Ungerere1632fa2015-06-19 10:40:03 +100010667L: linux-m68k@lists.linux-m68k.org
Alan Coxcc2020e2008-05-19 14:21:51 +010010668L: uclinux-dev@uclinux.org (subscribers-only)
Greg Ungerere1632fa2015-06-19 10:40:03 +100010669T: git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
Alan Coxcc2020e2008-05-19 14:21:51 +010010670S: Maintained
Greg Ungerere1632fa2015-06-19 10:40:03 +100010671F: arch/m68k/coldfire/
10672F: arch/m68k/68*/
Joe Perches61bc02b2011-04-14 15:22:04 -070010673F: arch/m68k/*/*_no.*
10674F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +010010675
Linus Torvalds1da177e2005-04-16 15:20:36 -070010676UDF FILESYSTEM
Jiri Slabyd8130622015-07-17 16:23:20 -070010677M: Jan Kara <jack@suse.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010678S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010679F: Documentation/filesystems/udf.txt
10680F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010681
Alan Coxcc2020e2008-05-19 14:21:51 +010010682UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070010683M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +010010684S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010685F: Documentation/filesystems/ufs.txt
10686F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +010010687
David Herrmann0a09d3a2012-06-10 15:16:28 +020010688UHID USERSPACE HID IO DRIVER:
10689M: David Herrmann <dh.herrmann@googlemail.com>
10690L: linux-input@vger.kernel.org
10691S: Maintained
10692F: drivers/hid/uhid.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010693F: include/uapi/linux/uhid.h
David Herrmann0a09d3a2012-06-10 15:16:28 +020010694
David Vrabel18332a82008-09-17 16:34:44 +010010695ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +010010696L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +010010697S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +000010698F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -070010699F: include/linux/uwb.h
10700F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +010010701
GuanXuetaob31d8272011-01-16 00:35:49 +080010702UNICORE32 ARCHITECTURE:
10703M: Guan Xuetao <gxt@mprc.pku.edu.cn>
10704W: http://mprc.pku.edu.cn/~guanxuetao/linux
10705S: Maintained
Guan Xuetaoceebf4d2014-05-27 07:53:10 +080010706T: git git://github.com/gxt/linux.git
GuanXuetaob31d8272011-01-16 00:35:49 +080010707F: arch/unicore32/
10708
Tony Finchd8379ab2009-11-27 15:50:30 +000010709UNIFDEF
10710M: Tony Finch <dot@dotat.at>
10711W: http://dotat.at/prog/unifdef
10712S: Maintained
10713F: scripts/unifdef.c
10714
Linus Torvalds1da177e2005-04-16 15:20:36 -070010715UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010716M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010717W: http://www.kernel.dk
10718S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010719F: Documentation/cdrom/
10720F: drivers/cdrom/cdrom.c
10721F: include/linux/cdrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010722F: include/uapi/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070010723
Benjamin Romer56df0122014-03-07 13:02:21 -060010724UNISYS S-PAR DRIVERS
Joe Perches49e7d9d2015-04-15 16:17:31 -070010725M: Benjamin Romer <benjamin.romer@unisys.com>
10726M: David Kershner <david.kershner@unisys.com>
10727L: sparmaintainer@unisys.com (Unisys internal)
10728S: Supported
10729F: drivers/staging/unisys/
Benjamin Romer56df0122014-03-07 13:02:21 -060010730
Vinayak Holikatti9941fa62012-04-20 14:11:50 +053010731UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
10732M: Vinayak Holikatti <vinholikatti@gmail.com>
Vinayak Holikatti9941fa62012-04-20 14:11:50 +053010733L: linux-scsi@vger.kernel.org
10734S: Supported
10735F: Documentation/scsi/ufs.txt
10736F: drivers/scsi/ufs/
10737
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010738UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +030010739M: Artem Bityutskiy <dedekind1@gmail.com>
Richard Weinberger346be9b2015-01-28 12:28:24 +010010740M: Richard Weinberger <richard@nod.at>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010741W: http://www.linux-mtd.infradead.org/
10742L: linux-mtd@lists.infradead.org
Artem Bityutskiyb6b44e02014-01-02 16:43:51 +020010743T: git git://git.infradead.org/ubifs-2.6.git
Richard Weinberger346be9b2015-01-28 12:28:24 +010010744S: Supported
Joe Perches80811492009-04-08 20:20:27 -070010745F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -070010746F: include/linux/mtd/ubi.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010747F: include/uapi/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010748
Linus Torvalds1da177e2005-04-16 15:20:36 -070010749USB ACM DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +020010750M: Oliver Neukum <oliver@neukum.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -070010751L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070010752S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010753F: Documentation/usb/acm.txt
10754F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010755
Pontus Fuchsb7d572e2012-10-23 20:33:57 +020010756USB AR5523 WIRELESS DRIVER
10757M: Pontus Fuchs <pontus.fuchs@gmail.com>
10758L: linux-wireless@vger.kernel.org
10759S: Maintained
10760F: drivers/net/wireless/ath/ar5523/
10761
Matthew Wilcox115bb1f2010-10-07 13:05:23 +020010762USB ATTACHED SCSI
Hans de Goedef50a4962013-10-28 10:48:04 +000010763M: Hans de Goede <hdegoede@redhat.com>
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +010010764M: Gerd Hoffmann <kraxel@redhat.com>
Matthew Wilcox115bb1f2010-10-07 13:05:23 +020010765L: linux-usb@vger.kernel.org
10766L: linux-scsi@vger.kernel.org
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +010010767S: Maintained
Matthew Wilcox115bb1f2010-10-07 13:05:23 +020010768F: drivers/usb/storage/uas.c
10769
Linus Torvalds1da177e2005-04-16 15:20:36 -070010770USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +020010771M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +020010772L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070010773S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010774F: drivers/net/usb/cdc_*.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010775F: include/uapi/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070010776
Keith Packard66e3e592015-03-19 20:36:49 -070010777USB CHAOSKEY DRIVER
10778M: Keith Packard <keithp@keithp.com>
10779L: linux-usb@vger.kernel.org
10780S: Maintained
10781F: drivers/usb/misc/chaoskey.c
10782
Peter Korsgaardb02b3712008-04-27 08:59:44 +020010783USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010784M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +020010785L: linux-usb@vger.kernel.org
10786S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010787F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +020010788
Peter Korsgaardd0374f42007-02-16 17:03:54 +010010789USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010790M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +020010791L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +010010792W: http://www.linux-usb.org/usbnet
10793S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010794F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +010010795
Alan Coxcc2020e2008-05-19 14:21:51 +010010796USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010797M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +010010798L: rio500-users@lists.sourceforge.net
10799W: http://rio500.sourceforge.net
10800S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010801F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +010010802
Linus Torvalds1da177e2005-04-16 15:20:36 -070010803USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -040010804M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +020010805L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -040010806S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010807F: Documentation/usb/ehci.txt
10808F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010809
David Brownell69ae9e32006-11-14 02:03:31 -080010810USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f662011-06-08 19:16:28 +030010811M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020010812L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -080010813W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +030010814T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
10815S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010816F: drivers/usb/gadget/
10817F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -080010818
Jiri Kosina2dea64b2007-07-11 12:12:11 +020010819USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Jiri Kosinae5f64502015-08-09 09:11:34 +020010820M: Jiri Kosina <jikos@kernel.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +020010821L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -070010822T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070010823S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -070010824F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -070010825F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010826
Olav Kongas959eea22005-11-03 17:38:14 +020010827USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010828M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +020010829L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +020010830S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010831F: drivers/usb/host/isp116x*
10832F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +020010833
Linus Torvalds1da177e2005-04-16 15:20:36 -070010834USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010835M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +020010836L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -080010837L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -070010838S: Maintained
10839W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -070010840F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010841
Clemens Ladischaf399172011-01-10 16:32:54 +010010842USB MIDI DRIVER
10843M: Clemens Ladisch <clemens@ladisch.de>
10844L: alsa-devel@alsa-project.org (moderated for non-subscribers)
10845T: git git://git.alsa-project.org/alsa-kernel.git
10846S: Maintained
10847F: sound/usb/midi.*
10848
Joe Perches444ce9d2013-08-01 21:03:32 -070010849USB NETWORKING DRIVERS
10850L: linux-usb@vger.kernel.org
10851S: Odd Fixes
10852F: drivers/net/usb/
10853
Linus Torvalds1da177e2005-04-16 15:20:36 -070010854USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -040010855M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +020010856L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -040010857S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010858F: Documentation/usb/ohci.txt
10859F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010860
Peter Chen963ffa32015-02-15 12:22:59 +080010861USB OTG FSM (Finite State Machine)
10862M: Peter Chen <Peter.Chen@freescale.com>
Peter Chen83738562015-03-23 19:57:36 +080010863T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
Peter Chen963ffa32015-02-15 12:22:59 +080010864L: linux-usb@vger.kernel.org
10865S: Maintained
10866F: drivers/usb/common/usb-otg-fsm.c
10867
Valentina Manea563da3a2014-08-20 07:31:02 +030010868USB OVER IP DRIVER
10869M: Valentina Manea <valentina.manea.m@gmail.com>
10870M: Shuah Khan <shuah.kh@samsung.com>
10871L: linux-usb@vger.kernel.org
10872S: Maintained
10873F: drivers/usb/usbip/
10874F: tools/usb/usbip/
10875
Linus Torvalds1da177e2005-04-16 15:20:36 -070010876USB PEGASUS DRIVER
Petko Manolova16b9452013-04-29 16:17:25 -070010877M: Petko Manolov <petkan@nucleusys.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020010878L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +020010879L: netdev@vger.kernel.org
Petko Manolov052e3122013-11-15 11:51:54 +020010880T: git git://github.com/petkan/pegasus.git
10881W: https://github.com/petkan/pegasus
Linus Torvalds1da177e2005-04-16 15:20:36 -070010882S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010883F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010884
Felipe Balbid3ad5582012-05-21 16:24:49 +030010885USB PHY LAYER
10886M: Felipe Balbi <balbi@ti.com>
10887L: linux-usb@vger.kernel.org
10888T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
10889S: Maintained
10890F: drivers/usb/phy/
Felipe Balbid3ad5582012-05-21 16:24:49 +030010891
Pete Zaitcev73e4fb32007-06-21 15:18:35 -070010892USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -070010893M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020010894L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -070010895S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010896F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070010897
10898USB RTL8150 DRIVER
Petko Manolova16b9452013-04-29 16:17:25 -070010899M: Petko Manolov <petkan@nucleusys.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020010900L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +020010901L: netdev@vger.kernel.org
Petko Manolov052e3122013-11-15 11:51:54 +020010902T: git git://github.com/petkan/rtl8150.git
10903W: https://github.com/petkan/rtl8150
Linus Torvalds1da177e2005-04-16 15:20:36 -070010904S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010905F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070010906
Greg KHf896b792013-10-30 11:07:31 -070010907USB SERIAL SUBSYSTEM
Johan Hovold66085692014-06-23 12:33:15 +020010908M: Johan Hovold <johan@kernel.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +020010909L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -070010910S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010911F: Documentation/usb/usb-serial.txt
Greg KHf896b792013-10-30 11:07:31 -070010912F: drivers/usb/serial/
Joe Perches679655d2009-04-07 20:44:32 -070010913F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070010914
Steve Glendinningb3f0db12012-08-15 21:53:38 +000010915USB SMSC75XX ETHERNET DRIVER
10916M: Steve Glendinning <steve.glendinning@shawell.net>
10917L: netdev@vger.kernel.org
10918S: Maintained
10919F: drivers/net/usb/smsc75xx.*
10920
Steve Glendinning2f7ca802008-10-02 05:27:57 +000010921USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +010010922M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +000010923L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +010010924S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010925F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +000010926
Linus Torvalds1da177e2005-04-16 15:20:36 -070010927USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -080010928M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +020010929L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070010930W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -070010931T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070010932S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010933F: Documentation/usb/
Joe Perches679655d2009-04-07 20:44:32 -070010934F: drivers/usb/
10935F: include/linux/usb.h
10936F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010937
10938USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010939M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +020010940L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070010941S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010942F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010943
David Brownell69ae9e32006-11-14 02:03:31 -080010944USB "USBNET" DRIVER FRAMEWORK
Jiri Slabyd8130622015-07-17 16:23:20 -070010945M: Oliver Neukum <oneukum@suse.com>
Peter Korsgaard043600a2007-06-27 21:18:18 +020010946L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -080010947W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -070010948S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010949F: drivers/net/usb/usbnet.c
10950F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070010951
Laurent Pinchartc0efd232008-06-30 15:04:50 -030010952USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -070010953M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -030010954L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -030010955L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -020010956T: git git://linuxtv.org/media_tree.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -030010957W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -030010958S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -030010959F: drivers/media/usb/uvc/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -020010960F: include/uapi/linux/uvcvideo.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070010961
Hans Verkuilb60b9c42012-11-23 07:54:42 -030010962USB VISION DRIVER
10963M: Hans Verkuil <hverkuil@xs4all.nl>
10964L: linux-media@vger.kernel.org
10965T: git git://linuxtv.org/media_tree.git
10966W: http://linuxtv.org
10967S: Odd Fixes
10968F: drivers/media/usb/usbvision/
10969
Laurent Pinchart8282da42012-10-04 02:32:42 +020010970USB WEBCAM GADGET
10971M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10972L: linux-usb@vger.kernel.org
10973S: Maintained
Andrzej Pietrasiewicz3a83c162014-09-09 02:02:09 +030010974F: drivers/usb/gadget/function/*uvc*
Joe Perchesfaf2e1d2014-08-08 14:26:18 -070010975F: drivers/usb/gadget/legacy/webcam.c
Laurent Pinchart8282da42012-10-04 02:32:42 +020010976
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +020010977USB WIRELESS RNDIS DRIVER (rndis_wlan)
Jussi Kivilinnae6146c52013-03-07 22:33:38 +020010978M: Jussi Kivilinna <jussi.kivilinna@iki.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +020010979L: linux-wireless@vger.kernel.org
10980S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010981F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +020010982
Sarah Sharpeb6bab12009-04-29 19:07:13 -070010983USB XHCI DRIVER
Sarah Sharp03d85052014-03-20 16:20:56 -070010984M: Mathias Nyman <mathias.nyman@intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -070010985L: linux-usb@vger.kernel.org
10986S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -080010987F: drivers/usb/host/xhci*
10988F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -070010989
Linus Torvalds1da177e2005-04-16 15:20:36 -070010990USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -040010991L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070010992W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -040010993S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -070010994F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010995
Antoine Jacquetb7eee612007-04-27 12:30:59 -030010996USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010997M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020010998L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -030010999L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -020011000T: git git://linuxtv.org/media_tree.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -030011001W: http://royale.zerezo.com/zr364xx/
11002S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011003F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -030011004F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -030011005
Heikki Krogerus289fcff2015-05-13 15:26:42 +030011006ULPI BUS
11007M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
11008L: linux-usb@vger.kernel.org
11009S: Maintained
11010F: drivers/usb/common/ulpi.c
11011F: include/linux/ulpi/
11012
Randy Dunlape7839f22008-10-12 16:11:45 -070011013USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -070011014M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +010011015M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011016L: user-mode-linux-devel@lists.sourceforge.net
11017L: user-mode-linux-user@lists.sourceforge.net
11018W: http://user-mode-linux.sourceforge.net
11019S: Maintained
Rob Landley61516582011-05-06 09:27:36 -070011020F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -070011021F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +020011022F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -070011023F: fs/hostfs/
11024F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -030011025
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +010011026USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -070011027M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -080011028M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +010011029S: Maintained
Mandeep Sandhu3d3fecb2015-01-10 19:15:45 -080011030T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Joe Perches679655d2009-04-07 20:44:32 -070011031F: Documentation/DocBook/uio-howto.tmpl
11032F: drivers/uio/
11033F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +010011034
Karel Zak256cccb2012-06-01 10:13:09 +020011035UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -070011036M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +020011037L: util-linux@vger.kernel.org
11038W: http://en.wikipedia.org/wiki/Util-linux
11039T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -070011040S: Maintained
11041
Michal Januszewskic1fd1c02008-10-15 22:03:48 -070011042UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011043M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +010011044L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -070011045W: http://dev.gentoo.org/~spock/projects/uvesafb/
11046S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011047F: Documentation/fb/uvesafb.txt
Jingoo Han8a61f012014-07-01 15:36:01 +090011048F: drivers/video/fbdev/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -070011049
Randy Dunlap4480f15b2008-10-12 16:11:58 -070011050VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070011051M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011052S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011053F: Documentation/filesystems/vfat.txt
11054F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011055
Alex Williamsoncba33452012-07-31 08:16:22 -060011056VFIO DRIVER
11057M: Alex Williamson <alex.williamson@redhat.com>
11058L: kvm@vger.kernel.org
11059S: Maintained
11060F: Documentation/vfio.txt
11061F: drivers/vfio/
11062F: include/linux/vfio.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011063F: include/uapi/linux/vfio.h
Alex Williamsoncba33452012-07-31 08:16:22 -060011064
Alex Williamsona714ea52015-06-18 11:59:22 -060011065VFIO PLATFORM DRIVER
11066M: Baptiste Reynal <b.reynal@virtualopensystems.com>
11067L: kvm@vger.kernel.org
11068S: Maintained
11069F: drivers/vfio/platform/
11070
Pawel Osciak9e6f3432011-06-15 15:08:32 -070011071VIDEOBUF2 FRAMEWORK
11072M: Pawel Osciak <pawel@osciak.com>
11073M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -030011074M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -070011075L: linux-media@vger.kernel.org
11076S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -030011077F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -070011078F: include/media/videobuf2-*
11079
Amit Shah9a824462010-03-23 18:23:09 +053011080VIRTIO CONSOLE DRIVER
11081M: Amit Shah <amit.shah@redhat.com>
11082L: virtualization@lists.linux-foundation.org
11083S: Maintained
11084F: drivers/char/virtio_console.c
11085F: include/linux/virtio_console.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011086F: include/uapi/linux/virtio_console.h
Amit Shah9a824462010-03-23 18:23:09 +053011087
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +103011088VIRTIO CORE, NET AND BLOCK DRIVERS
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +103011089M: "Michael S. Tsirkin" <mst@redhat.com>
11090L: virtualization@lists.linux-foundation.org
11091S: Maintained
11092F: drivers/virtio/
Michael S. Tsirkinc893c8d2013-07-08 11:31:13 +093011093F: tools/virtio/
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +103011094F: drivers/net/virtio_net.c
11095F: drivers/block/virtio_blk.c
11096F: include/linux/virtio_*.h
Amos Kong916cdab2013-04-02 16:42:02 +103011097F: include/uapi/linux/virtio_*.h
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +103011098
Cornelia Huckf2dbda32015-07-01 17:15:37 +020011099VIRTIO DRIVERS FOR S390
11100M: Christian Borntraeger <borntraeger@de.ibm.com>
11101M: Cornelia Huck <cornelia.huck@de.ibm.com>
11102L: linux-s390@vger.kernel.org
11103L: virtualization@lists.linux-foundation.org
11104L: kvm@vger.kernel.org
11105S: Supported
Cornelia Huck1b568d92015-07-07 11:41:01 +020011106F: drivers/s390/virtio/
Cornelia Huckf2dbda32015-07-01 17:15:37 +020011107
Gerd Hoffmann4ad6ee92015-06-02 10:49:03 +020011108VIRTIO GPU DRIVER
11109M: David Airlie <airlied@linux.ie>
11110M: Gerd Hoffmann <kraxel@redhat.com>
11111L: dri-devel@lists.freedesktop.org
11112L: virtualization@lists.linux-foundation.org
11113S: Maintained
11114F: drivers/gpu/drm/virtio/
11115F: include/uapi/linux/virtio_gpu.h
11116
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000011117VIRTIO HOST (VHOST)
11118M: "Michael S. Tsirkin" <mst@redhat.com>
11119L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +000011120L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000011121L: netdev@vger.kernel.org
11122S: Maintained
11123F: drivers/vhost/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011124F: include/uapi/linux/vhost.h
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000011125
Gerd Hoffmann271c8652015-03-27 12:46:12 +103011126VIRTIO INPUT DRIVER
11127M: Gerd Hoffmann <kraxel@redhat.com>
11128S: Maintained
11129F: drivers/virtio/virtio_input.c
11130F: include/uapi/linux/virtio_input.h
11131
Linus Torvalds1da177e2005-04-16 15:20:36 -070011132VIA RHINE NETWORK DRIVER
Roger Luethi210347e2015-05-26 19:12:54 +020011133S: Orphan
Jeff Kirsherf2148a42011-05-20 20:43:09 -070011134F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070011135
Harald Weltef0bf7f62009-06-17 20:22:39 +020011136VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -080011137M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -070011138M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +020011139S: Maintained
11140F: drivers/mmc/host/via-sdmmc.c
11141
Joseph Chan69e4a7c2008-10-15 22:03:31 -070011142VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +000011143M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +010011144L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -070011145S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +000011146F: include/linux/via-core.h
11147F: include/linux/via-gpio.h
11148F: include/linux/via_i2c.h
Jingoo Han8a61f012014-07-01 15:36:01 +090011149F: drivers/video/fbdev/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -070011150
Francois Romieu01f20732007-01-26 00:57:17 -080011151VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011152M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -080011153L: netdev@vger.kernel.org
11154S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -070011155F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011156
Hans Verkuil77911fd2014-12-10 04:22:37 -030011157VIVID VIRTUAL VIDEO DRIVER
Hans Verkuil0b7bc1f2012-11-23 08:21:50 -030011158M: Hans Verkuil <hverkuil@xs4all.nl>
11159L: linux-media@vger.kernel.org
11160T: git git://linuxtv.org/media_tree.git
11161W: http://linuxtv.org
11162S: Maintained
Hans Verkuil77911fd2014-12-10 04:22:37 -030011163F: drivers/media/platform/vivid/*
Hans Verkuil0b7bc1f2012-11-23 08:21:50 -030011164
Patrick McHardybe7f8272007-10-23 20:26:36 -070011165VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -070011166M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -070011167L: netdev@vger.kernel.org
11168S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011169F: drivers/net/macvlan.c
11170F: include/linux/if_*vlan.h
11171F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -070011172
Florian Fainelli55e331c2009-06-16 15:33:53 -070011173VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -070011174M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -080011175L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -070011176S: Maintained
11177F: drivers/vlynq/vlynq.c
11178F: include/linux/vlynq.h
11179
Martyn Welch390beae2012-05-03 17:52:36 +010011180VME SUBSYSTEM
11181M: Martyn Welch <martyn.welch@ge.com>
Manohar Vanga1bd289d2012-06-14 15:57:01 +020011182M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +010011183M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11184L: devel@driverdev.osuosl.org
11185S: Maintained
11186T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11187F: Documentation/vme_api.txt
11188F: drivers/staging/vme/
11189F: drivers/vme/
11190F: include/linux/vme*
11191
Alok Kataria4488e092013-09-04 14:23:41 +053011192VMWARE HYPERVISOR INTERFACE
11193M: Alok Kataria <akataria@vmware.com>
11194L: virtualization@lists.linux-foundation.org
11195S: Supported
11196F: arch/x86/kernel/cpu/vmware.c
11197
Dmitry Torokhov73b35d02014-06-20 10:14:58 -070011198VMWARE BALLOON DRIVER
11199M: Xavier Deguillard <xdeguillard@vmware.com>
11200M: Philip Moltmann <moltmann@vmware.com>
11201M: "VMware, Inc." <pv-drivers@vmware.com>
11202L: linux-kernel@vger.kernel.org
11203S: Maintained
11204F: drivers/misc/vmw_balloon.c
11205
Thomas Hellstrom8b8be512015-04-14 10:06:38 -070011206VMWARE VMMOUSE SUBDRIVER
11207M: "VMware Graphics" <linux-graphics-maintainer@vmware.com>
11208M: "VMware, Inc." <pv-drivers@vmware.com>
11209L: linux-input@vger.kernel.org
11210S: Maintained
11211F: drivers/input/mouse/vmmouse.c
11212F: drivers/input/mouse/vmmouse.h
11213
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -070011214VMWARE VMXNET3 ETHERNET DRIVER
Shrikrishna Khare04e1b732015-08-24 14:24:11 -070011215M: Shrikrishna Khare <skhare@vmware.com>
Joe Perches65c8bb52009-11-11 14:26:12 -080011216M: "VMware, Inc." <pv-drivers@vmware.com>
11217L: netdev@vger.kernel.org
11218S: Maintained
11219F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -070011220
Alok Kataria851b1642009-10-13 14:51:05 -070011221VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -080011222M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -070011223M: VMware PV-Drivers <pv-drivers@vmware.com>
11224L: linux-scsi@vger.kernel.org
11225S: Maintained
11226F: drivers/scsi/vmw_pvscsi.c
11227F: drivers/scsi/vmw_pvscsi.h
11228
Liam Girdwoode53e86c2008-07-10 15:48:00 +010011229VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Axel Lin88dd75a2013-03-25 16:49:51 +080011230M: Liam Girdwood <lgirdwood@gmail.com>
Mark Brownb02e48f2013-04-12 11:39:57 +010011231M: Mark Brown <broonie@kernel.org>
Mark Brown5cdeb2c2014-08-16 12:31:11 +010011232L: linux-kernel@vger.kernel.org
Liam Girdwoode53e86c2008-07-10 15:48:00 +010011233W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +000011234W: http://www.slimlogic.co.uk/?p=48
Sachin Kamat6febb5a2013-07-04 12:08:50 +053011235T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +010011236S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070011237F: drivers/regulator/
11238F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +010011239
David Ahern081958e2015-08-25 10:26:22 -070011240VRF
11241M: David Ahern <dsa@cumulusnetworks.com>
11242M: Shrijeet Mukherjee <shm@cumulusnetworks.com>
11243L: netdev@vger.kernel.org
11244S: Maintained
11245F: drivers/net/vrf.c
11246F: include/net/vrf.h
11247
Juerg Haefligerab413192006-09-24 20:54:04 +020011248VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011249M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +020011250L: lm-sensors@lm-sensors.org
11251S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011252F: Documentation/hwmon/vt1211
11253F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +020011254
Roger Lucas1de9e372005-11-26 20:20:05 +010011255VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011256M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +010011257L: lm-sensors@lm-sensors.org
11258S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011259F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +010011260
Tony Olech88095e72011-05-14 16:48:13 -040011261VUB300 USB to SDIO/SD/MMC bridge chip
11262M: Tony Olech <tony.olech@elandigitalsystems.com>
11263L: linux-mmc@vger.kernel.org
11264L: linux-usb@vger.kernel.org
11265S: Supported
11266F: drivers/mmc/host/vub300.c
11267
Linus Torvalds1da177e2005-04-16 15:20:36 -070011268W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -070011269M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011270S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011271F: Documentation/w1/
11272F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011273
Charles Spirakis13927072006-07-05 18:05:15 +020011274W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011275M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +020011276L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -040011277S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011278F: Documentation/hwmon/w83791d
11279F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +020011280
Rudolf Marek61db0112006-12-12 18:18:30 +010011281W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011282M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +010011283L: lm-sensors@lm-sensors.org
11284S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011285F: Documentation/hwmon/w83793
11286F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +010011287
Jean Delvaree3760b42010-10-28 20:31:49 +020011288W83795 HARDWARE MONITORING DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -070011289M: Jean Delvare <jdelvare@suse.com>
Jean Delvaree3760b42010-10-28 20:31:49 +020011290L: lm-sensors@lm-sensors.org
11291S: Maintained
11292F: drivers/hwmon/w83795.c
11293
Linus Torvalds1da177e2005-04-16 15:20:36 -070011294W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011295M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011296S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011297F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011298
Hans de Goedeb4e05922014-07-20 13:35:44 -070011299WACOM PROTOCOL 4 SERIAL TABLETS
11300M: Julian Squires <julian@cipht.net>
11301M: Hans de Goede <hdegoede@redhat.com>
11302L: linux-input@vger.kernel.org
11303S: Maintained
11304F: drivers/input/tablet/wacom_serial4.c
11305
Wim Van Sebroeck35277612006-01-15 21:21:14 +010011306WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -070011307M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +000011308L: linux-watchdog@vger.kernel.org
11309W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +010011310T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +010011311S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011312F: Documentation/watchdog/
11313F: drivers/watchdog/
11314F: include/linux/watchdog.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011315F: include/uapi/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +010011316
Linus Torvalds1da177e2005-04-16 15:20:36 -070011317WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011318M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011319L: linux-scsi@vger.kernel.org
11320S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011321F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070011322
David Herrmannb22e00f2011-09-06 13:50:40 +020011323WIIMOTE HID DRIVER
11324M: David Herrmann <dh.herrmann@googlemail.com>
11325L: linux-input@vger.kernel.org
11326S: Maintained
11327F: drivers/hid/hid-wiimote*
11328
David Härdemane258b802009-09-21 17:04:53 -070011329WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -070011330M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -070011331S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -070011332F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -070011333
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -080011334WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -070011335M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -080011336M: linux-wimax@intel.com
Joe Perches49e7d9d2015-04-15 16:17:31 -070011337L: wimax@linuxwimax.org (subscribers-only)
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -080011338S: Supported
11339W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -070011340F: Documentation/wimax/README.wimax
Joe Perches315987d2010-08-09 17:20:50 -070011341F: include/linux/wimax/debug.h
11342F: include/net/wimax.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011343F: include/uapi/linux/wimax.h
Joe Perches315987d2010-08-09 17:20:50 -070011344F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -080011345
Dmitry Torokhov5fc146802005-11-20 00:50:06 -050011346WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011347M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -050011348S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011349F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -050011350
Linus Torvalds1da177e2005-04-16 15:20:36 -070011351WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011352M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -070011353L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -030011354W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -070011355S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011356F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011357
Mark Brownfebf1df2008-04-02 00:51:09 -040011358WM97XX TOUCHSCREEN DRIVERS
Mark Brownd9f1f482013-06-01 19:31:15 +010011359M: Mark Brown <broonie@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -070011360M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -040011361L: linux-input@vger.kernel.org
11362T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
11363W: http://opensource.wolfsonmicro.com/node/7
11364S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070011365F: drivers/input/touchscreen/*wm97*
11366F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -040011367
Mark Brown055bcbc2010-08-13 14:18:12 +010011368WOLFSON MICROELECTRONICS DRIVERS
Mark Brownfef95162012-04-04 12:06:24 +010011369L: patches@opensource.wolfsonmicro.com
Mark Browncf8eda32010-10-05 19:31:40 -070011370T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
Mark Brownb75ea162009-07-02 16:43:08 +010011371T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
Mark Browncf8eda32010-10-05 19:31:40 -070011372W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
Mark Brownb75ea162009-07-02 16:43:08 +010011373S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -080011374F: Documentation/hwmon/wm83??
Mark Brownaf1c5382011-10-14 21:09:43 +010011375F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +010011376F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +010011377F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +010011378F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +010011379F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +010011380F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -050011381F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +090011382F: drivers/input/misc/wm831x-on.c
11383F: drivers/input/touchscreen/wm831x-ts.c
11384F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +010011385F: drivers/mfd/arizona*
11386F: drivers/mfd/wm*.c
Mark Brownb75ea162009-07-02 16:43:08 +010011387F: drivers/power/wm83*.c
11388F: drivers/rtc/rtc-wm83*.c
11389F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +010011390F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +010011391F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +010011392F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +010011393F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +010011394F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -080011395F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +090011396F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +010011397F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +010011398F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +010011399F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +010011400
Tejun Heo3e6cd7a2010-12-10 17:20:23 +010011401WORKQUEUE
11402M: Tejun Heo <tj@kernel.org>
Lai Jiangshanbadb7f52015-07-01 15:38:04 +080011403R: Lai Jiangshan <jiangshanlai@gmail.com>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +010011404T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
11405S: Maintained
11406F: include/linux/workqueue.h
11407F: kernel/workqueue.c
11408F: Documentation/workqueue.txt
11409
Linus Torvalds1da177e2005-04-16 15:20:36 -070011410X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +000011411M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011412L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +000011413S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -070011414F: Documentation/networking/x25*
11415F: include/net/x25*
11416F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011417
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011418X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -070011419M: Thomas Gleixner <tglx@linutronix.de>
11420M: Ingo Molnar <mingo@redhat.com>
11421M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -080011422M: x86@kernel.org
Ingo Molnar981c3a42014-01-21 10:59:20 +010011423L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +010011424T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011425S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011426F: Documentation/x86/
11427F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011428
Matthew Garrettd0944852010-02-11 10:40:13 -050011429X86 PLATFORM DRIVERS
Darren Harte181ba12014-08-27 23:36:06 -070011430M: Darren Hart <dvhart@infradead.org>
Matthew Garrettd0944852010-02-11 10:40:13 -050011431L: platform-driver-x86@vger.kernel.org
Darren Harte181ba12014-08-27 23:36:06 -070011432T: git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
Matthew Garrettd0944852010-02-11 10:40:13 -050011433S: Maintained
Joe Perches14430812013-09-11 14:23:50 -070011434F: drivers/platform/x86/
Matthew Garrettd0944852010-02-11 10:40:13 -050011435
Ingo Molnarc1f5c542011-06-18 22:51:13 +020011436X86 MCE INFRASTRUCTURE
11437M: Tony Luck <tony.luck@intel.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +010011438M: Borislav Petkov <bp@alien8.de>
Ingo Molnarc1f5c542011-06-18 22:51:13 +020011439L: linux-edac@vger.kernel.org
11440S: Maintained
11441F: arch/x86/kernel/cpu/mcheck/*
11442
Andy Lutomirskif0905c52014-12-12 16:25:47 -080011443X86 VDSO
11444M: Andy Lutomirski <luto@amacapital.net>
11445L: linux-kernel@vger.kernel.org
11446T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
11447S: Maintained
Ingo Molnard603c8e2015-06-03 18:05:44 +020011448F: arch/x86/entry/vdso/
Andy Lutomirskif0905c52014-12-12 16:25:47 -080011449
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -020011450XC2028/3028 TUNER DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -020011451M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -020011452L: linux-media@vger.kernel.org
11453W: http://linuxtv.org
11454T: git git://linuxtv.org/media_tree.git
11455S: Maintained
11456F: drivers/media/tuners/tuner-xc2028.*
11457
Ian Campbellc4468082011-04-27 15:26:46 -070011458XEN HYPERVISOR INTERFACE
Ian Campbellc4468082011-04-27 15:26:46 -070011459M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Konrad Rzeszutek Wilk3eeef8f2013-08-05 14:01:49 -040011460M: Boris Ostrovsky <boris.ostrovsky@oracle.com>
11461M: David Vrabel <david.vrabel@citrix.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040011462L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
David Vrabelea70ba32014-01-17 11:51:51 +000011463T: git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
Ian Campbellc4468082011-04-27 15:26:46 -070011464S: Supported
11465F: arch/x86/xen/
11466F: drivers/*/xen-*front.c
11467F: drivers/xen/
11468F: arch/x86/include/asm/xen/
11469F: include/xen/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011470F: include/uapi/xen/
Ian Campbellc4468082011-04-27 15:26:46 -070011471
Stefano Stabellini77bfb472012-09-14 13:35:15 +000011472XEN HYPERVISOR ARM
11473M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040011474L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
Stefano Stabellini77bfb472012-09-14 13:35:15 +000011475S: Supported
11476F: arch/arm/xen/
11477F: arch/arm/include/asm/xen/
11478
Stefano Stabellinib475e832013-06-04 16:13:23 +000011479XEN HYPERVISOR ARM64
11480M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040011481L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
Stefano Stabellinib475e832013-06-04 16:13:23 +000011482S: Supported
11483F: arch/arm64/xen/
11484F: arch/arm64/include/asm/xen/
11485
Ian Campbell9b57e1a2011-04-03 23:12:23 +000011486XEN NETWORK BACKEND DRIVER
11487M: Ian Campbell <ian.campbell@citrix.com>
Wei Liu83860402013-09-26 12:41:53 +010011488M: Wei Liu <wei.liu2@citrix.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040011489L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
Ian Campbell9b57e1a2011-04-03 23:12:23 +000011490L: netdev@vger.kernel.org
11491S: Supported
11492F: drivers/net/xen-netback/*
11493
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -040011494XEN PCI SUBSYSTEM
11495M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040011496L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +020011497S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -040011498F: arch/x86/pci/*xen*
11499F: drivers/pci/*xen*
11500
Konrad Rzeszutek Wilka2c5ae62014-06-27 10:10:45 -040011501XEN BLOCK SUBSYSTEM
11502M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Roger Pau Monnebcadb692015-01-23 17:14:29 +010011503M: Roger Pau Monné <roger.pau@citrix.com>
Konrad Rzeszutek Wilka2c5ae62014-06-27 10:10:45 -040011504L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
11505S: Supported
11506F: drivers/block/xen-blkback/*
11507F: drivers/block/xen*
11508
Juergen Gross15d03602014-08-28 06:44:13 +020011509XEN PVSCSI DRIVERS
11510M: Juergen Gross <jgross@suse.com>
11511L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
11512L: linux-scsi@vger.kernel.org
11513S: Supported
11514F: drivers/scsi/xen-scsifront.c
11515F: drivers/xen/xen-scsiback.c
11516F: include/xen/interface/io/vscsiif.h
11517
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -040011518XEN SWIOTLB SUBSYSTEM
11519M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040011520L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -040011521S: Supported
11522F: arch/x86/xen/*swiotlb*
11523F: drivers/xen/*swiotlb*
11524
Linus Torvalds1da177e2005-04-16 15:20:36 -070011525XFS FILESYSTEM
11526P: Silicon Graphics Inc
Namjae Jeon809625c2013-12-08 23:33:50 +090011527M: Dave Chinner <david@fromorbit.com>
Ben Myers18caa672012-04-12 17:05:05 +000011528M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +100011529L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -070011530W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -070011531T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070011532S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070011533F: Documentation/filesystems/xfs.txt
11534F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011535
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +000011536XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +000011537M: Anirudha Sarangi <anirudh@xilinx.com>
11538M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +000011539S: Maintained
11540F: drivers/net/ethernet/xilinx/xilinx_axienet*
11541
Peter Korsgaard238b8722006-12-06 20:35:17 -080011542XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011543M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -080011544L: linux-serial@vger.kernel.org
11545S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -080011546F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -080011547
Laurent Pinchartdf330512013-05-15 11:36:19 -030011548XILINX VIDEO IP CORES
11549M: Hyun Kwon <hyun.kwon@xilinx.com>
11550M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11551L: linux-media@vger.kernel.org
11552T: git git://linuxtv.org/media_tree.git
11553S: Supported
11554F: Documentation/devicetree/bindings/media/xilinx/
11555F: drivers/media/platform/xilinx/
Laurent Pincharta5562f62013-05-15 11:36:56 -030011556F: include/uapi/linux/xilinx-v4l2-controls.h
Laurent Pinchartdf330512013-05-15 11:36:19 -030011557
Eli Billauer74316942014-09-09 09:38:01 +030011558XILLYBUS DRIVER
11559M: Eli Billauer <eli.billauer@gmail.com>
11560L: linux-kernel@vger.kernel.org
11561S: Supported
11562F: drivers/char/xillybus/
11563
Max Filippovf620e4b2014-03-12 21:55:26 +040011564XTENSA XTFPGA PLATFORM SUPPORT
11565M: Max Filippov <jcmvbkbc@gmail.com>
11566L: linux-xtensa@linux-xtensa.org
11567S: Maintained
11568F: drivers/spi/spi-xtensa-xtfpga.c
Max Filippov57b70682014-12-26 20:19:38 +030011569F: sound/soc/xtensa/xtfpga-i2s.c
Max Filippovf620e4b2014-03-12 21:55:26 +040011570
Linus Torvalds1da177e2005-04-16 15:20:36 -070011571YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -070011572M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011573L: linux-hams@vger.kernel.org
11574S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011575F: drivers/net/hamradio/yam*
11576F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011577
Henkaf64a5e2005-10-12 15:02:56 +020011578YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011579M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +020011580L: usbb2k-api-dev@nongnu.org
11581S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011582F: Documentation/input/yealink.txt
11583F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +020011584
Linus Torvalds1da177e2005-04-16 15:20:36 -070011585Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -070011586M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011587W: http://yaina.de/jreuter/
11588W: http://www.qsl.net/dl1bke/
11589L: linux-hams@vger.kernel.org
11590S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011591F: Documentation/networking/z8530drv.txt
11592F: drivers/net/hamradio/*scc.c
11593F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011594
Seth Jennings0cf31ec2013-07-08 16:00:05 -070011595ZBUD COMPRESSED PAGE ALLOCATOR
Seth Jennings0e3b7e52014-05-06 12:50:02 -070011596M: Seth Jennings <sjennings@variantweb.net>
Seth Jennings0cf31ec2013-07-08 16:00:05 -070011597L: linux-mm@kvack.org
11598S: Maintained
11599F: mm/zbud.c
11600F: include/linux/zbud.h
11601
Daniel Drake7c0c3af2006-07-16 13:55:17 +010011602ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011603M: Daniel Drake <dsd@gentoo.org>
11604M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +010011605W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -070011606L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +010011607L: zd1211-devs@lists.sourceforge.net (subscribers-only)
11608S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011609F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +010011610
Dan Streetman20263022015-06-30 14:59:57 -070011611ZPOOL COMPRESSED PAGE STORAGE API
11612M: Dan Streetman <ddstreet@ieee.org>
11613L: linux-mm@kvack.org
11614S: Maintained
11615F: mm/zpool.c
11616F: include/linux/zpool.h
11617
Linus Torvalds1da177e2005-04-16 15:20:36 -070011618ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -070011619L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -030011620L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070011621W: http://mjpeg.sourceforge.net/driver-zoran/
Joe Perchescea83212014-03-03 15:38:38 -080011622T: hg http://linuxtv.org/hg/v4l-dvb
Trent Piephof63145e2009-01-24 20:52:41 -030011623S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -030011624F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011625
Minchan Kim6920f2c2014-01-30 15:45:56 -080011626ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
11627M: Minchan Kim <minchan@kernel.org>
11628M: Nitin Gupta <ngupta@vflare.org>
Minchan Kim74f30372015-05-05 16:23:28 -070011629R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
Minchan Kim6920f2c2014-01-30 15:45:56 -080011630L: linux-kernel@vger.kernel.org
11631S: Maintained
11632F: drivers/block/zram/
11633F: Documentation/blockdev/zram.txt
11634
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -070011635ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011636M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -070011637S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -080011638F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -070011639
Minchan Kimeae70d02014-01-30 15:45:57 -080011640ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
11641M: Minchan Kim <minchan@kernel.org>
11642M: Nitin Gupta <ngupta@vflare.org>
11643L: linux-mm@kvack.org
11644S: Maintained
11645F: mm/zsmalloc.c
11646F: include/linux/zsmalloc.h
Minchan Kimd02be502015-04-15 16:15:46 -070011647F: Documentation/vm/zsmalloc.txt
Minchan Kimeae70d02014-01-30 15:45:57 -080011648
Seth Jennings0cf31ec2013-07-08 16:00:05 -070011649ZSWAP COMPRESSED SWAP CACHING
Seth Jennings0e3b7e52014-05-06 12:50:02 -070011650M: Seth Jennings <sjennings@variantweb.net>
Seth Jennings0cf31ec2013-07-08 16:00:05 -070011651L: linux-mm@kvack.org
11652S: Maintained
11653F: mm/zswap.c
11654
Linus Torvalds1da177e2005-04-16 15:20:36 -070011655THE REST
Joe Perches8b58be82009-07-29 15:04:30 -070011656M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -070011657L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -080011658Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -040011659T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070011660S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -070011661F: *
11662F: */