blob: 9f6685f6c5a97062e7d44d04493afe518fa27ab8 [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
Jordan Crouse67d76712008-05-12 14:02:22 -0700618L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Greg Kroah-Hartmanb4731972015-09-25 20:45:27 -0700619S: Orphan
Joe Perchesfaf2e1d2014-08-08 14:26:18 -0700620F: drivers/usb/gadget/udc/amd5536udc.*
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700621
Jordan Crousef90b8112006-01-06 00:12:14 -0800622AMD GEODE PROCESSOR/CHIPSET SUPPORT
Andres Salomon69006092010-12-21 17:24:23 -0800623P: Andres Salomon <dilinger@queued.net>
Jordan Crouse67d76712008-05-12 14:02:22 -0700624L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Jordan Crousef90b8112006-01-06 00:12:14 -0800625W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
626S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700627F: drivers/char/hw_random/geode-rng.c
628F: drivers/crypto/geode*
Jingoo Han8a61f012014-07-01 15:36:01 +0900629F: drivers/video/fbdev/geode/
Joe Perches679655d2009-04-07 20:44:32 -0700630F: arch/x86/include/asm/geode.h
Jordan Crousef90b8112006-01-06 00:12:14 -0800631
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200632AMD IOMMU (AMD-VI)
Joerg Roedele4110562012-10-23 16:16:23 +0200633M: Joerg Roedel <joro@8bytes.org>
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200634L: iommu@lists.linux-foundation.org
Joerg Roedel525b2332012-03-15 11:56:44 +0100635T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
Joerg Roedele4110562012-10-23 16:16:23 +0200636S: Maintained
Joe Perchesb2c16392011-12-08 20:21:40 -0800637F: drivers/iommu/amd_iommu*.[ch]
638F: include/linux/amd-iommu.h
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200639
Oded Gabbay16423d62014-07-15 13:08:36 +0300640AMD KFD
Oded Gabbay1241e0b2015-05-10 12:37:28 +0300641M: Oded Gabbay <oded.gabbay@gmail.com>
Joe Perches49e7d9d2015-04-15 16:17:31 -0700642L: dri-devel@lists.freedesktop.org
643T: git git://people.freedesktop.org/~gabbayo/linux.git
644S: Supported
Oded Gabbay130e0372015-06-12 21:35:14 +0300645F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
646F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
Oded Gabbay32c22e92015-06-12 21:38:22 +0300647F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
Ben Gozff758a12014-10-07 14:43:07 +0300648F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
Joe Perches49e7d9d2015-04-15 16:17:31 -0700649F: drivers/gpu/drm/amd/amdkfd/
Oded Gabbay04df25d2015-01-05 18:15:45 +0200650F: drivers/gpu/drm/amd/include/cik_structs.h
651F: drivers/gpu/drm/amd/include/kgd_kfd_interface.h
Ben Gozff758a12014-10-07 14:43:07 +0300652F: drivers/gpu/drm/amd/include/vi_structs.h
Joe Perches49e7d9d2015-04-15 16:17:31 -0700653F: drivers/gpu/drm/radeon/radeon_kfd.c
654F: drivers/gpu/drm/radeon/radeon_kfd.h
655F: include/uapi/linux/kfd_ioctl.h
Oded Gabbay16423d62014-07-15 13:08:36 +0300656
Peter Orubae7f5b302008-07-28 18:44:11 +0200657AMD MICROCODE UPDATE SUPPORT
Borislav Petkovca68a522015-03-29 15:54:13 +0200658M: Borislav Petkov <bp@alien8.de>
Andreas Herrmann943482d2012-10-29 18:51:38 +0100659S: Maintained
Joe Perches73d425f2014-08-08 14:24:57 -0700660F: arch/x86/kernel/cpu/microcode/amd*
Peter Orubae7f5b302008-07-28 18:44:11 +0200661
Lendacky, Thomas45198c72014-06-05 09:15:24 -0500662AMD XGBE DRIVER
663M: Tom Lendacky <thomas.lendacky@amd.com>
664L: netdev@vger.kernel.org
665S: Supported
666F: drivers/net/ethernet/amd/xgbe/
Lendacky, Thomas45198c72014-06-05 09:15:24 -0500667
Stelian Pop284f42b2006-12-12 18:18:31 +0100668AMS (Apple Motion Sensor) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700669M: Michael Hanselmann <linux-kernel@hansmi.ch>
Stelian Pop284f42b2006-12-12 18:18:31 +0100670S: Supported
Jean Delvarebd5f47e2010-10-28 20:31:50 +0200671F: drivers/macintosh/ams/
Stelian Pop284f42b2006-12-12 18:18:31 +0100672
Tom Tuckerf94b5332006-09-22 15:22:48 -0700673AMSO1100 RNIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700674M: Tom Tucker <tom@opengridcomputing.com>
675M: Steve Wise <swise@opengridcomputing.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -0700676L: linux-rdma@vger.kernel.org
Tom Tuckerf94b5332006-09-22 15:22:48 -0700677S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700678F: drivers/infiniband/hw/amso1100/
Tom Tuckerf94b5332006-09-22 15:22:48 -0700679
Hans Verkuil531fca12012-11-23 06:53:24 -0300680ANALOG DEVICES INC AD9389B DRIVER
681M: Hans Verkuil <hans.verkuil@cisco.com>
682L: linux-media@vger.kernel.org
683S: Maintained
684F: drivers/media/i2c/ad9389b*
685
Lars-Peter Clausen614b4382015-01-23 12:52:34 -0300686ANALOG DEVICES INC ADV7180 DRIVER
687M: Lars-Peter Clausen <lars@metafoo.de>
688L: linux-media@vger.kernel.org
689W: http://ez.analog.com/community/linux-device-drivers
690S: Supported
691F: drivers/media/i2c/adv7180.c
692
Hans Verkuilc40ddfa2013-08-12 10:02:48 -0300693ANALOG DEVICES INC ADV7511 DRIVER
694M: Hans Verkuil <hans.verkuil@cisco.com>
695L: linux-media@vger.kernel.org
696S: Maintained
697F: drivers/media/i2c/adv7511*
698
Hans Verkuil531fca12012-11-23 06:53:24 -0300699ANALOG DEVICES INC ADV7604 DRIVER
700M: Hans Verkuil <hans.verkuil@cisco.com>
701L: linux-media@vger.kernel.org
702S: Maintained
703F: drivers/media/i2c/adv7604*
704
Hans Verkuilc40ddfa2013-08-12 10:02:48 -0300705ANALOG DEVICES INC ADV7842 DRIVER
706M: Hans Verkuil <hans.verkuil@cisco.com>
707L: linux-media@vger.kernel.org
708S: Maintained
709F: drivers/media/i2c/adv7842*
710
Michael Hennerich527a1a82010-10-28 11:31:28 +0000711ANALOG DEVICES INC ASOC CODEC DRIVERS
Lars-Peter Clausen535bd162011-10-17 20:33:05 +0200712M: Lars-Peter Clausen <lars@metafoo.de>
Michael Hennerich527a1a82010-10-28 11:31:28 +0000713L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perchesa3f531a2011-03-22 16:34:28 -0700714W: http://wiki.analog.com/
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800715W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000716S: Supported
Mark Brown39c9d192011-06-17 11:22:27 +0100717F: sound/soc/codecs/adau*
Lars-Peter Clausencc526882011-06-27 17:04:01 +0200718F: sound/soc/codecs/adav*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000719F: sound/soc/codecs/ad1*
Mark Brownae48f5e2013-08-07 18:01:08 +0100720F: sound/soc/codecs/ad7*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000721F: sound/soc/codecs/ssm*
Lars-Peter Clausen40216ce2011-11-28 09:44:17 +0100722F: sound/soc/codecs/sigmadsp.*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000723
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400724ANALOG DEVICES INC ASOC DRIVERS
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -0700725L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400726L: alsa-devel@alsa-project.org (moderated for non-subscribers)
727W: http://blackfin.uclinux.org/
728S: Supported
729F: sound/soc/blackfin/*
Rob Herring7d1f9012014-12-26 13:47:30 -0600730
Lars-Peter Clausen4ce72ab2014-08-18 09:08:00 +0100731ANALOG DEVICES INC IIO DRIVERS
732M: Lars-Peter Clausen <lars@metafoo.de>
733M: Michael Hennerich <Michael.Hennerich@analog.com>
734W: http://wiki.analog.com/
735W: http://ez.analog.com/community/linux-device-drivers
736S: Supported
737F: drivers/iio/*/ad*
738X: drivers/iio/*/adjd*
739F: drivers/staging/iio/*/ad*
740F: staging/iio/trigger/iio-trig-bfin-timer.c
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400741
Lars-Peter Clausen0e3b67b2015-08-20 17:39:13 +0200742ANALOG DEVICES INC DMA DRIVERS
743M: Lars-Peter Clausen <lars@metafoo.de>
744W: http://ez.analog.com/community/linux-device-drivers
745S: Supported
746F: drivers/dma/dma-axi-dmac.c
747
Greg KH41c9e952015-01-18 16:33:24 +0900748ANDROID DRIVERS
749M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Baruch Siach27682402015-03-18 21:29:10 +0200750M: Arve Hjønnevåg <arve@android.com>
Greg KH41c9e952015-01-18 16:33:24 +0900751M: Riley Andrews <riandrews@android.com>
Lee Campbell0e4a5662015-05-24 14:47:38 -0700752T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg KH41c9e952015-01-18 16:33:24 +0900753L: devel@driverdev.osuosl.org
754S: Supported
755F: drivers/android/
756F: drivers/staging/android/
757
Johannes Berg42269062006-07-25 16:15:50 +0200758AOA (Apple Onboard Audio) ALSA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700759M: Johannes Berg <johannes@sipsolutions.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +1000760L: linuxppc-dev@lists.ozlabs.org
Joe Perches93711662009-06-16 15:34:07 -0700761L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Johannes Berg42269062006-07-25 16:15:50 +0200762S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700763F: sound/aoa/
Johannes Berg42269062006-07-25 16:15:50 +0200764
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765APM DRIVER
Jiri Kosinae5f64502015-08-09 09:11:34 +0200766M: Jiri Kosina <jikos@kernel.org>
Jiri Kosina81024fc2011-05-04 13:41:31 +0200767S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -0700768F: arch/x86/kernel/apm_32.c
769F: include/linux/apm_bios.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -0800770F: include/uapi/linux/apm_bios.h
Jiri Kosina81024fc2011-05-04 13:41:31 +0200771F: drivers/char/apm-emulation.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700773APPLE BCM5974 MULTITOUCH DRIVER
Henrik Rydberg75dd1122015-01-08 14:32:21 -0800774M: Henrik Rydberg <rydberg@bitmath.org>
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700775L: linux-input@vger.kernel.org
Henrik Rydberg75dd1122015-01-08 14:32:21 -0800776S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -0700777F: drivers/input/mouse/bcm5974.c
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700778
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700779APPLE SMC DRIVER
Henrik Rydberg75dd1122015-01-08 14:32:21 -0800780M: Henrik Rydberg <rydberg@bitmath.org>
Henrik Rydbergd618540f2010-04-14 16:14:11 +0200781L: lm-sensors@lm-sensors.org
Henrik Rydberg75dd1122015-01-08 14:32:21 -0800782S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -0700783F: drivers/hwmon/applesmc.c
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700784
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785APPLETALK NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -0700786M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700788F: drivers/net/appletalk/
789F: net/appletalk/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
Iyappan Subramanian24299502014-08-07 15:14:25 -0700791APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
792M: Iyappan Subramanian <isubramanian@apm.com>
793M: Keyur Chudgar <kchudgar@apm.com>
Iyappan Subramanian24299502014-08-07 15:14:25 -0700794S: Supported
795F: drivers/net/ethernet/apm/xgene/
796F: Documentation/devicetree/bindings/net/apm-xgene-enet.txt
797
Laurent Pinchart62a37dc2013-08-09 08:46:11 -0300798APTINA CAMERA SENSOR PLL
799M: Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
800L: linux-media@vger.kernel.org
801S: Maintained
802F: drivers/media/i2c/aptina-pll.*
803
Jaya Kumar1154ea72005-06-21 17:17:04 -0700804ARC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700805M: Jaya Kumar <jayalk@intworks.biz>
Jaya Kumar1154ea72005-06-21 17:17:04 -0700806S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +0900807F: drivers/video/fbdev/arcfb.c
808F: drivers/video/fbdev/core/fb_defio.c
Jaya Kumar1154ea72005-06-21 17:17:04 -0700809
Michael Grzeschikc38f6ac2015-09-17 15:26:16 +0200810ARCNET NETWORK LAYER
811M: Michael Grzeschik <m.grzeschik@pengutronix.de>
812L: netdev@vger.kernel.org
813S: Maintained
814F: drivers/net/arcnet/
815F: include/uapi/linux/if_arcnet.h
816
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817ARM MFM AND FLOPPY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -0700818M: Ian Molton <spyro@f2s.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700820F: arch/arm/lib/floppydma.S
821F: arch/arm/include/asm/floppy.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
Will Deacon6f965212011-07-01 14:38:53 +0100823ARM PMU PROFILING AND DEBUGGING
824M: Will Deacon <will.deacon@arm.com>
825S: Maintained
Mark Rutlandfa8ad782015-07-06 12:23:53 +0100826F: arch/arm/kernel/perf_*
Will Deacon6f965212011-07-01 14:38:53 +0100827F: arch/arm/oprofile/common.c
Will Deacon6f965212011-07-01 14:38:53 +0100828F: arch/arm/kernel/hw_breakpoint.c
829F: arch/arm/include/asm/hw_breakpoint.h
Mark Rutlandfa8ad782015-07-06 12:23:53 +0100830F: arch/arm/include/asm/perf_event.h
831F: drivers/perf/arm_pmu.c
832F: include/linux/perf/arm_pmu.h
Will Deacon6f965212011-07-01 14:38:53 +0100833
Russell Kingd4275352009-04-16 14:05:27 +0100834ARM PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700835M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700836L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100837W: http://www.arm.linux.org.uk/
838S: Maintained
839F: arch/arm/
840
Stephen Boydd323c2432012-10-24 11:00:29 -0700841ARM SUB-ARCHITECTURES
842L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Zhang Yanfei56ca9d92013-01-11 14:32:04 -0800843S: Maintained
Stephen Boydd323c2432012-10-24 11:00:29 -0700844F: arch/arm/mach-*/
845F: arch/arm/plat-*/
846T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
847
Russell Kingcefbf4e2009-11-22 17:40:28 +0000848ARM PRIMECELL AACI PL041 DRIVER
849M: Russell King <linux@arm.linux.org.uk>
850S: Maintained
851F: sound/arm/aaci.*
852
853ARM PRIMECELL CLCD PL110 DRIVER
854M: Russell King <linux@arm.linux.org.uk>
855S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +0900856F: drivers/video/fbdev/amba-clcd.*
Russell Kingcefbf4e2009-11-22 17:40:28 +0000857
858ARM PRIMECELL KMI PL050 DRIVER
859M: Russell King <linux@arm.linux.org.uk>
860S: Maintained
861F: drivers/input/serio/ambakmi.*
862F: include/linux/amba/kmi.h
863
Russell King2761f5c2007-05-24 06:56:08 +0200864ARM PRIMECELL MMCI PL180/1 DRIVER
Russell King08a5c9a2013-02-11 15:28:51 +0000865M: Russell King <linux@arm.linux.org.uk>
866S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700867F: drivers/mmc/host/mmci.*
Russell King2f748aa2013-02-11 15:28:05 +0000868F: include/linux/amba/mmci.h
Russell King2761f5c2007-05-24 06:56:08 +0200869
Russell King1b4304e2013-02-11 15:26:27 +0000870ARM PRIMECELL UART PL010 AND PL011 DRIVERS
871M: Russell King <linux@arm.linux.org.uk>
872S: Maintained
873F: drivers/tty/serial/amba-pl01*.c
874F: include/linux/amba/serial.h
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800875
Russell Kingcefbf4e2009-11-22 17:40:28 +0000876ARM PRIMECELL BUS SUPPORT
877M: Russell King <linux@arm.linux.org.uk>
878S: Maintained
879F: drivers/amba/
880F: include/linux/amba/bus.h
881
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800882ARM/ADS SPHERE MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700883M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700884L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800885S: Maintained
886
Sergey Lapin9c784f92008-08-03 02:29:48 +0100887ARM/AFEB9260 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700888M: Sergey Lapin <slapin@ossfans.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700889L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sergey Lapin9c784f92008-08-03 02:29:48 +0100890S: Maintained
891
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800892ARM/AJECO 1ARM MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700893M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700894L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800895S: Maintained
896
Maxime Ripard1b106692012-11-15 21:51:26 +0100897ARM/Allwinner A1X SoC support
898M: Maxime Ripard <maxime.ripard@free-electrons.com>
899L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
900S: Maintained
Maxime Ripard60b0f382013-12-30 16:03:33 +0100901N: sun[x4567]i
902
903ARM/Allwinner SoC Clock Support
904M: Emilio López <emilio@elopez.com.ar>
905S: Maintained
906F: drivers/clk/sunxi/
Maxime Ripard1b106692012-11-15 21:51:26 +0100907
Carlo Caione7c1e3872014-09-12 20:18:31 +0200908ARM/Amlogic MesonX SoC support
909M: Carlo Caione <carlo@caione.org>
910L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
911S: Maintained
Beniamino Galvani12ddbad2014-11-18 17:22:34 -0300912F: drivers/media/rc/meson-ir.c
Carlo Caione7c1e3872014-09-12 20:18:31 +0200913N: meson[x68]
914
Tsahee Zidenbergeff506f2015-03-12 13:53:25 +0200915ARM/Annapurna Labs ALPINE ARCHITECTURE
916M: Tsahee Zidenberg <tsahee@annapurnalabs.com>
917S: Maintained
918F: arch/arm/mach-alpine/
919
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800920ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800921M: Nicolas Ferre <nicolas.ferre@atmel.com>
Nicolas Ferred68b35f2015-04-29 11:57:18 +0200922M: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800923M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700924L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800925W: http://www.linux4sam.org
926S: Supported
927F: arch/arm/mach-at91/
Alexandre Bellonif0a0a582014-11-07 21:58:21 +0100928F: include/soc/at91/
Mark Brown70e389c2013-10-16 12:04:07 +0100929F: arch/arm/boot/dts/at91*.dts
930F: arch/arm/boot/dts/at91*.dtsi
931F: arch/arm/boot/dts/sama*.dts
932F: arch/arm/boot/dts/sama*.dtsi
Alexandre Belloni5f58c972015-01-12 19:42:14 +0100933F: arch/arm/include/debug/at91.S
Andrew Victord4a89c72006-12-04 13:56:21 +0100934
Boris BREZILLON6e05dd42014-05-27 13:39:28 +0200935ARM/ATMEL AT91 Clock Support
936M: Boris Brezillon <boris.brezillon@free-electrons.com>
937S: Maintained
938F: drivers/clk/at91
939
Rob Herring986cf2e2011-06-22 11:28:53 -0500940ARM/CALXEDA HIGHBANK ARCHITECTURE
Rob Herring5d3ad8a2013-12-03 10:20:16 -0600941M: Rob Herring <robh@kernel.org>
Rob Herring986cf2e2011-06-22 11:28:53 -0500942L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
943S: Maintained
944F: arch/arm/mach-highbank/
945
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300946ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
Krzysztof Hałasa5529c2c2014-09-30 10:32:58 +0200947M: Krzysztof Halasa <khalasa@piap.pl>
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300948S: Maintained
949F: arch/arm/mach-cns3xxx/
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300950
Sunil Goutham4863dea2015-05-26 19:20:15 -0700951ARM/CAVIUM THUNDER NETWORK DRIVER
952M: Sunil Goutham <sgoutham@cavium.com>
953M: Robert Richter <rric@kernel.org>
954L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
955S: Supported
Aleksey Makarov322e5cc2015-08-30 12:29:09 +0300956F: drivers/net/ethernet/cavium/thunder/
Sunil Goutham4863dea2015-05-26 19:20:15 -0700957
Alexander Shiyan386ab512012-11-17 17:57:24 +0400958ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
959M: Alexander Shiyan <shc_work@mail.ru>
960L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
961S: Odd Fixes
Alexander Shiyanb8ba3872014-02-15 12:05:33 +0400962N: clps711x
Alexander Shiyan386ab512012-11-17 17:57:24 +0400963
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800964ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100965M: Hartley Sweeten <hsweeten@visionengravers.com>
Ryan Mallon1c5454e2011-06-15 14:45:36 +1000966M: Ryan Mallon <rmallon@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700967L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800968S: Maintained
Hartley Sweetend19d3662009-07-10 23:02:59 +0100969F: arch/arm/mach-ep93xx/
970F: arch/arm/mach-ep93xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800971
972ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700973M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700974L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800975S: Maintained
976
Russell Kingd4275352009-04-16 14:05:27 +0100977ARM/CLKDEV SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700978M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700979L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches37417042012-03-23 15:01:58 -0700980S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +0100981F: arch/arm/include/asm/clkdev.h
Joe Perches4fa26512011-03-22 16:34:31 -0700982F: drivers/clk/clkdev.c
Russell Kingd4275352009-04-16 14:05:27 +0100983
Mike Rapoportd48134e72008-08-20 09:03:26 +0100984ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700985M: Mike Rapoport <mike@compulab.co.il>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700986L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100987S: Maintained
988
Hubert Feurstein94150092009-10-07 08:36:07 +0100989ARM/CONTEC MICRO9 MACHINE SUPPORT
990M: Hubert Feurstein <hubert.feurstein@contec.at>
991S: Maintained
992F: arch/arm/mach-ep93xx/micro9.c
993
Pratik Patela06ae862014-11-03 11:07:35 -0700994ARM/CORESIGHT FRAMEWORK AND DRIVERS
995M: Mathieu Poirier <mathieu.poirier@linaro.org>
996L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
997S: Maintained
Mathieu Poirier01081f52015-03-30 14:13:41 -0600998F: drivers/hwtracing/coresight/*
Pratik Patela06ae862014-11-03 11:07:35 -0700999F: Documentation/trace/coresight.txt
1000F: Documentation/devicetree/bindings/arm/coresight.txt
Mathieu Poirier7a25ec82014-11-10 14:06:42 -07001001F: Documentation/ABI/testing/sysfs-bus-coresight-devices-*
Pratik Patela06ae862014-11-03 11:07:35 -07001002
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003ARM/CORGI MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001004M: Richard Purdie <rpurdie@rpsys.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005S: Maintained
1006
Paulius Zaleckas881a95f2009-03-26 10:06:27 +02001007ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
Hans Ulli Kroll162500b2010-05-13 06:43:59 +01001008M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001009L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Krollb60e23b2015-05-07 19:29:03 +02001010T: git git://github.com/ulli-kroll/linux.git
Hans Ulli Kroll162500b2010-05-13 06:43:59 +01001011S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +03001012F: arch/arm/mach-gemini/
Hans Ulli Kroll98a9bb52015-05-20 17:49:31 +02001013F: drivers/rtc/rtc-gemini.c
Paulius Zaleckas881a95f2009-03-26 10:06:27 +02001014
Barry Songa990cbd2011-07-12 21:44:10 +08001015ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
Barry Song5abf58b2013-09-29 22:45:10 +08001016M: Barry Song <baohua@kernel.org>
Barry Songa990cbd2011-07-12 21:44:10 +08001017L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Barry Song85529d12013-06-17 09:44:26 +08001018T: git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
Barry Songa990cbd2011-07-12 21:44:10 +08001019S: Maintained
1020F: arch/arm/mach-prima2/
Joe Perches4a9c44f2014-08-08 14:25:03 -07001021F: drivers/clk/sirf/
Barry Song05f30e82013-09-29 22:45:09 +08001022F: drivers/clocksource/timer-prima2.c
Barry Song5833ac92015-01-12 00:04:43 +08001023F: drivers/clocksource/timer-atlas7.c
Barry Songf8505ef2014-01-03 11:24:13 +08001024N: [^a-z]sirf
Barry Songa990cbd2011-07-12 21:44:10 +08001025
Baruch Siachc9d862c2015-04-28 13:59:43 +03001026ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1027M: Baruch Siach <baruch@tkos.co.il>
1028L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1029S: Maintained
Baruch Siachcde137a2015-07-06 14:41:46 +03001030F: arch/arm/boot/dts/cx92755*
Baruch Siachc9d862c2015-04-28 13:59:43 +03001031N: digicolor
1032
Russell Kingd4275352009-04-16 14:05:27 +01001033ARM/EBSA110 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001034M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001035L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001036W: http://www.arm.linux.org.uk/
1037S: Maintained
1038F: arch/arm/mach-ebsa110/
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07001039F: drivers/net/ethernet/amd/am79c961a.*
Russell Kingd4275352009-04-16 14:05:27 +01001040
Uwe Kleine-König4721f3c2013-12-20 21:21:59 +01001041ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1042M: Uwe Kleine-König <kernel@pengutronix.de>
1043L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1044S: Maintained
1045N: efm32
1046
Russell Kinga9da4f72008-07-12 21:42:04 +01001047ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
Joe Perches8b58be82009-07-29 15:04:30 -07001048M: Daniel Ribeiro <drwyrm@gmail.com>
1049M: Stefan Schmidt <stefan@openezx.org>
1050M: Harald Welte <laforge@openezx.org>
Paul Bolled66f18862011-04-06 22:34:00 +02001051L: openezx-devel@lists.openezx.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +01001052W: http://www.openezx.org/
1053S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +02001054T: topgit git://git.openezx.org/openezx.git
1055F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +01001056
Paulius Zaleckas6a915af2009-03-25 13:10:20 +02001057ARM/FARADAY FA526 PORT
Hans Ulli Kroll162500b2010-05-13 06:43:59 +01001058M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001059L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +01001060S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -07001061T: git git://git.berlios.de/gemini-board
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +03001062F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +02001063
Russell Kingd4275352009-04-16 14:05:27 +01001064ARM/FOOTBRIDGE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001065M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001066L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001067W: http://www.arm.linux.org.uk/
1068S: Maintained
1069F: arch/arm/include/asm/hardware/dec21285.h
1070F: arch/arm/mach-footbridge/
1071
Sascha Hauer86183a52008-07-24 23:50:35 +02001072ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
Shawn Guo7609ea22015-06-03 19:34:10 +08001073M: Shawn Guo <shawnguo@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07001074M: Sascha Hauer <kernel@pengutronix.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001075L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer86183a52008-07-24 23:50:35 +02001076S: Maintained
Shawn Guof1c12832014-03-11 22:57:53 +08001077T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
Shawn Guo2a82f952013-12-10 22:19:21 +08001078F: arch/arm/mach-imx/
Shawn Guoce515a62014-07-02 15:37:10 +08001079F: arch/arm/mach-mxs/
Shawn Guo2a82f952013-12-10 22:19:21 +08001080F: arch/arm/boot/dts/imx*
1081F: arch/arm/configs/imx*_defconfig
Shawn Guocf209682015-04-26 21:58:12 +08001082F: drivers/clk/imx/
1083F: include/soc/imx/
Shawn Guo8bcb9762011-10-07 22:24:18 +08001084
Stefan Agner142109d2015-03-02 00:09:02 +01001085ARM/FREESCALE VYBRID ARM ARCHITECTURE
Shawn Guo7609ea22015-06-03 19:34:10 +08001086M: Shawn Guo <shawnguo@kernel.org>
Stefan Agner142109d2015-03-02 00:09:02 +01001087M: Sascha Hauer <kernel@pengutronix.de>
1088R: Stefan Agner <stefan@agner.ch>
1089L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1090S: Maintained
1091T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1092F: arch/arm/mach-imx/*vf610*
1093F: arch/arm/boot/dts/vf*
1094
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001095ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001096M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001097L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001098S: Maintained
1099
Jaya Kumar90b8fc32008-03-15 05:11:07 +01001100ARM/GUMSTIX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001101M: Steve Sakoman <sakoman@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001102L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jaya Kumar90b8fc32008-03-15 05:11:07 +01001103S: Maintained
1104
Philipp Zabelef47d5f2009-05-28 07:07:47 +02001105ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001106M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel12a93f32012-02-26 12:40:19 +01001107M: Paul Parsons <lost.distance@yahoo.com>
1108L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Philipp Zabelef47d5f2009-05-28 07:07:47 +02001109S: Maintained
1110F: arch/arm/mach-pxa/hx4700.c
1111F: arch/arm/mach-pxa/include/mach/hx4700.h
Philipp Zabel12a93f32012-02-26 12:40:19 +01001112F: sound/soc/pxa/hx4700.c
Philipp Zabelef47d5f2009-05-28 07:07:47 +02001113
Wei Xu4dfad062014-07-07 10:41:53 +08001114ARM/HISILICON SOC SUPPORT
1115M: Wei Xu <xuwei5@hisilicon.com>
1116L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1117W: http://www.hisilicon.com
1118S: Supported
1119T: git git://github.com/hisilicon/linux-hisi.git
1120F: arch/arm/mach-hisi/
1121
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +01001122ARM/HP JORNADA 7XX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001123M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02001124W: www.jlime.com
1125S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07001126T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1127F: arch/arm/mach-sa1100/jornada720.c
1128F: arch/arm/mach-sa1100/include/mach/jornada720.h
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +01001129
Javier Martinez Canillas5e767ab2012-10-08 10:47:34 +02001130ARM/IGEP MACHINE SUPPORT
1131M: Enric Balletbo i Serra <eballetbo@gmail.com>
1132M: Javier Martinez Canillas <javier@dowhile0.org>
1133L: linux-omap@vger.kernel.org
1134L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1135S: Maintained
Javier Martinez Canillas06ff74f2013-10-18 17:37:53 +02001136F: arch/arm/boot/dts/omap3-igep*
Javier Martinez Canillas5e767ab2012-10-08 10:47:34 +02001137
Marek Vasut403d2972010-05-22 00:29:39 +02001138ARM/INCOME PXA270 SUPPORT
1139M: Marek Vasut <marek.vasut@gmail.com>
1140L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1141S: Maintained
Joe Perchesec154082010-10-26 14:22:59 -07001142F: arch/arm/mach-pxa/colibri-pxa270-income.c
Marek Vasut403d2972010-05-22 00:29:39 +02001143
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001144ARM/INTEL IOP32X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001145M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001146L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -07001147S: Maintained
Dan Williamse2bdb172007-01-02 18:32:37 +01001148
1149ARM/INTEL IOP33X ARM ARCHITECTURE
Joe Perchesefc03ec2009-09-21 17:04:27 -07001150L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williams08223d82014-08-19 06:07:56 -07001151S: Orphan
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001152
1153ARM/INTEL IOP13XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001154M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001155L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -07001156S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001157
1158ARM/INTEL IQ81342EX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001159M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001160L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -07001161S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001162
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001163ARM/INTEL IXDP2850 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001164M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001165L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001166S: Maintained
1167
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +02001168ARM/INTEL IXP4XX ARM ARCHITECTURE
1169M: Imre Kaloz <kaloz@openwrt.org>
Krzysztof Hałasa5529c2c2014-09-30 10:32:58 +02001170M: Krzysztof Halasa <khalasa@piap.pl>
Russell Kingbaea7b92009-09-24 21:22:33 +01001171L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +02001172S: Maintained
1173F: arch/arm/mach-ixp4xx/
1174
Joe Perches838553c2010-10-26 14:22:59 -07001175ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
Jonathan Cameron7f49a7f2009-10-15 16:39:30 +01001176M: Jonathan Cameron <jic23@cam.ac.uk>
1177L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1178S: Maintained
1179F: arch/arm/mach-pxa/stargate2.c
1180F: drivers/pcmcia/pxa2xx_stargate2.c
1181
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001182ARM/INTEL XSC3 (MANZANO) ARM CORE
Joe Perches8b58be82009-07-29 15:04:30 -07001183M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001184L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -07001185S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001186
1187ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001188M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001189L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001190S: Maintained
1191
Santosh Shilimkar1154f852013-08-05 14:11:14 -04001192ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
Santosh Shilimkar97215802014-10-13 14:16:28 -04001193M: Santosh Shilimkar <ssantosh@kernel.org>
Santosh Shilimkar1154f852013-08-05 14:11:14 -04001194L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1195S: Maintained
1196F: arch/arm/mach-keystone/
Santosh Shilimkar317929c2013-11-23 17:31:27 -05001197T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
Santosh Shilimkar1154f852013-08-05 14:11:14 -04001198
Santosh Shilimkarbc6aa562014-06-22 16:06:22 -04001199ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
Santosh Shilimkar97215802014-10-13 14:16:28 -04001200M: Santosh Shilimkar <ssantosh@kernel.org>
Santosh Shilimkarbc6aa562014-06-22 16:06:22 -04001201L: linux-kernel@vger.kernel.org
1202S: Maintained
1203F: drivers/clk/keystone/
1204
1205ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
Santosh Shilimkar97215802014-10-13 14:16:28 -04001206M: Santosh Shilimkar <ssantosh@kernel.org>
Santosh Shilimkarbc6aa562014-06-22 16:06:22 -04001207L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1208L: linux-kernel@vger.kernel.org
1209S: Maintained
1210F: drivers/clocksource/timer-keystone.c
1211
1212ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
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/power/reset/keystone-reset.c
1217
1218ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
Santosh Shilimkar97215802014-10-13 14:16:28 -04001219M: Santosh Shilimkar <ssantosh@kernel.org>
Santosh Shilimkarbc6aa562014-06-22 16:06:22 -04001220L: linux-kernel@vger.kernel.org
1221S: Maintained
1222F: drivers/memory/*emif*
1223
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001224ARM/LOGICPD PXA270 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001225M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001226L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001227S: Maintained
1228
Joachim Eastwood31438752015-05-19 20:59:21 +02001229ARM/LPC18XX ARCHITECTURE
1230M: Joachim Eastwood <manabian@gmail.com>
1231L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1232S: Maintained
1233N: lpc18xx
1234
Philipp Zabel3b8861712008-07-09 21:27:15 +01001235ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001236M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +01001237S: Maintained
1238
Gregory CLEMENT31c17ac2015-05-15 14:25:43 +02001239ARM/Marvell Kirkwood and Armada 370, 375, 38x, XP SOC support
Thomas Petazzoni75f41272012-06-01 18:50:52 +02001240M: Jason Cooper <jason@lakedaemon.net>
1241M: Andrew Lunn <andrew@lunn.ch>
1242M: Gregory Clement <gregory.clement@free-electrons.com>
Jason Cooperdcb71502013-10-14 18:32:21 +00001243M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Thomas Petazzoni75f41272012-06-01 18:50:52 +02001244L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1245S: Maintained
1246F: arch/arm/mach-mvebu/
Joe Perches59ec9672015-03-25 15:55:17 -07001247F: drivers/rtc/rtc-armada38x.c
Gregory CLEMENT31c17ac2015-05-15 14:25:43 +02001248F: arch/arm/boot/dts/armada*
1249F: arch/arm/boot/dts/kirkwood*
1250
Thomas Petazzoni75f41272012-06-01 18:50:52 +02001251
Sebastian Hesselbarth40f49782013-10-08 12:52:30 +02001252ARM/Marvell Berlin SoC support
1253M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1254L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1255S: Maintained
1256F: arch/arm/mach-berlin/
Gregory CLEMENT31c17ac2015-05-15 14:25:43 +02001257F: arch/arm/boot/dts/berlin*
1258
Sebastian Hesselbarth40f49782013-10-08 12:52:30 +02001259
Andrew Lunn4cfab572014-07-16 22:32:51 +02001260ARM/Marvell Dove/MV78xx0/Orion SOC support
Nicolas Pitre4f1312b2012-04-30 13:44:48 -04001261M: Jason Cooper <jason@lakedaemon.net>
1262M: Andrew Lunn <andrew@lunn.ch>
Jason Cooperdcb71502013-10-14 18:32:21 +00001263M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Gregory CLEMENTbfda4032015-03-13 14:41:45 +01001264M: Gregory Clement <gregory.clement@free-electrons.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001265L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Pitre4f1312b2012-04-30 13:44:48 -04001266S: Maintained
1267F: arch/arm/mach-dove/
Nicolas Pitre54a246f2009-08-11 23:28:51 -04001268F: arch/arm/mach-mv78xx0/
1269F: arch/arm/mach-orion5x/
1270F: arch/arm/plat-orion/
Gregory CLEMENT31c17ac2015-05-15 14:25:43 +02001271F: arch/arm/boot/dts/dove*
1272F: arch/arm/boot/dts/orion5x*
1273
Nicolas Pitre54a246f2009-08-11 23:28:51 -04001274
Alexander Clouterd69ac132011-04-14 15:22:02 -07001275ARM/Orion SoC/Technologic Systems TS-78xx platform support
1276M: Alexander Clouter <alex@digriz.org.uk>
1277L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1278W: http://www.digriz.org.uk/ts78xx/kernel
1279S: Maintained
1280F: arch/arm/mach-orion5x/ts78xx-*
1281
Eddie Huang607b8fc2015-05-06 15:23:42 +08001282ARM/Mediatek RTC DRIVER
1283M: Eddie Huang <eddie.huang@mediatek.com>
1284L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1285L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1286S: Maintained
1287F: drivers/rtc/rtc-mt6397.c
1288
Matthias Bruggere54951c2014-09-26 11:45:55 +02001289ARM/Mediatek SoC support
1290M: Matthias Brugger <matthias.bgg@gmail.com>
1291L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Matthias Brugger17b199d2015-04-16 12:49:21 -07001292L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
Matthias Bruggere54951c2014-09-26 11:45:55 +02001293S: Maintained
1294F: arch/arm/boot/dts/mt6*
1295F: arch/arm/boot/dts/mt8*
1296F: arch/arm/mach-mediatek/
1297N: mtk
1298K: mediatek
1299
Arnd Bergmannadcb0792012-09-07 12:21:56 +00001300ARM/MICREL KS8695 ARCHITECTURE
1301M: Greg Ungerer <gerg@uclinux.org>
1302L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches14430812013-09-11 14:23:50 -07001303F: arch/arm/mach-ks8695/
Arnd Bergmannadcb0792012-09-07 12:21:56 +00001304S: Odd Fixes
1305
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +02001306ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001307M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001308L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +02001309F: arch/arm/mach-pxa/mioa701.c
1310S: Maintained
1311
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +01001312ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001313M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +01001314S: Maintained
1315
Alessandro Rubinie0ee9852009-12-02 14:01:03 +01001316ARM/NOMADIK ARCHITECTURE
Joe Perches28b8e8d2010-03-23 13:35:20 -07001317M: Alessandro Rubini <rubini@unipv.it>
Linus Walleije4651a92012-08-06 09:52:52 +02001318M: Linus Walleij <linus.walleij@linaro.org>
Joe Perches28b8e8d2010-03-23 13:35:20 -07001319L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1320S: Maintained
1321F: arch/arm/mach-nomadik/
Joe Perchesecc265f2014-08-08 14:26:20 -07001322F: drivers/pinctrl/nomadik/
Linus Walleij87572882010-12-22 09:18:29 +01001323F: drivers/i2c/busses/i2c-nomadik.c
Linus Walleije4651a92012-08-06 09:52:52 +02001324T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
Alessandro Rubinie0ee9852009-12-02 14:01:03 +01001325
Andy Green9d762952009-05-19 06:41:42 -03001326ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001327M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -03001328L: openmoko-kernel@lists.openmoko.org (subscribers-only)
1329W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
1330S: Supported
1331
Dirk Opfer8459c152005-11-06 14:27:52 +00001332ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001333M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1334M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +00001335S: Maintained
1336
Marek Vasut5d783a22009-07-16 13:26:48 +02001337ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
Joe Perches933d35f2009-10-01 15:43:59 -07001338M: Marek Vasut <marek.vasut@gmail.com>
Marek Vasut75280782009-08-22 00:49:53 +02001339L: linux-arm-kernel@lists.infradead.org
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001340W: http://hackndev.com
1341S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001342F: arch/arm/mach-pxa/include/mach/palmtx.h
1343F: arch/arm/mach-pxa/palmtx.c
1344F: arch/arm/mach-pxa/include/mach/palmt5.h
1345F: arch/arm/mach-pxa/palmt5.c
1346F: arch/arm/mach-pxa/include/mach/palmld.h
1347F: arch/arm/mach-pxa/palmld.c
1348F: arch/arm/mach-pxa/include/mach/palmte2.h
1349F: arch/arm/mach-pxa/palmte2.c
1350F: arch/arm/mach-pxa/include/mach/palmtc.h
1351F: arch/arm/mach-pxa/palmtc.c
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001352
Joe Perchesb57fe922009-12-14 18:00:52 -08001353ARM/PALM TREO SUPPORT
Jiri Slabyd8130622015-07-17 16:23:20 -07001354M: Tomas Cech <sleep_walker@suse.com>
Marek Vasut75280782009-08-22 00:49:53 +02001355L: linux-arm-kernel@lists.infradead.org
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001356W: http://hackndev.com
1357S: Maintained
Joe Perchesb57fe922009-12-14 18:00:52 -08001358F: arch/arm/mach-pxa/include/mach/palmtreo.h
1359F: arch/arm/mach-pxa/palmtreo.c
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001360
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001361ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001362M: Sergey Lapin <slapin@ossfans.org>
Marek Vasut75280782009-08-22 00:49:53 +02001363L: linux-arm-kernel@lists.infradead.org
Joe Perches7d2c86b2009-04-07 20:59:01 -07001364W: http://hackndev.com
1365S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001366F: arch/arm/mach-pxa/include/mach/palmz72.h
1367F: arch/arm/mach-pxa/palmz72.c
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001368
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001370M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1372S: Maintained
1373
1374ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001375M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001376L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377W: http://www.arm.linux.org.uk/
1378S: Maintained
1379
Kumar Gala8fc1b0f2014-01-21 17:14:10 -06001380ARM/QUALCOMM SUPPORT
1381M: Kumar Gala <galak@codeaurora.org>
Andy Grossf5d3af92015-01-21 22:39:24 -06001382M: Andy Gross <agross@codeaurora.org>
Kumar Gala8fc1b0f2014-01-21 17:14:10 -06001383M: David Brown <davidb@codeaurora.org>
1384L: linux-arm-msm@vger.kernel.org
Andy Grossf5d3af92015-01-21 22:39:24 -06001385L: linux-soc@vger.kernel.org
Kumar Gala8fc1b0f2014-01-21 17:14:10 -06001386S: Maintained
1387F: arch/arm/mach-qcom/
Andy Grossf5d3af92015-01-21 22:39:24 -06001388F: drivers/soc/qcom/
Stephen Boydc0c89fa2015-03-13 11:09:34 -07001389F: drivers/tty/serial/msm_serial.h
1390F: drivers/tty/serial/msm_serial.c
1391F: drivers/*/pm8???-*
1392F: drivers/mfd/ssbi.c
Kumar Gala916f7432015-02-26 15:49:09 -06001393F: drivers/firmware/qcom_scm.c
Kumar Gala8fc1b0f2014-01-21 17:14:10 -06001394T: git git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git
1395
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001396ARM/RADISYS ENP2611 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001397M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001398L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001399S: Maintained
1400
Russell Kingd4275352009-04-16 14:05:27 +01001401ARM/RISCPC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001402M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001403L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001404W: http://www.arm.linux.org.uk/
1405S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01001406F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1407F: arch/arm/include/asm/hardware/ioc.h
1408F: arch/arm/include/asm/hardware/iomd.h
1409F: arch/arm/include/asm/hardware/memc.h
1410F: arch/arm/mach-rpc/
Jeff Kirsher1a6422f2011-11-04 12:58:41 +00001411F: drivers/net/ethernet/8390/etherh.c
Jeff Kirsher9e13fbf2011-07-15 03:18:21 -07001412F: drivers/net/ethernet/i825xx/ether1*
1413F: drivers/net/ethernet/seeq/ether3*
Russell Kingd4275352009-04-16 14:05:27 +01001414F: drivers/scsi/arm/
1415
Heiko Stuebner08ddbb02013-10-14 23:19:58 +02001416ARM/Rockchip SoC support
1417M: Heiko Stuebner <heiko@sntech.de>
1418L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Heiko Stuebner00250b52014-08-20 12:31:03 +02001419L: linux-rockchip@lists.infradead.org
Heiko Stuebner08ddbb02013-10-14 23:19:58 +02001420S: Maintained
Heiko Stübner541555e2014-08-27 00:05:50 +02001421F: arch/arm/boot/dts/rk3*
Heiko Stuebner08ddbb02013-10-14 23:19:58 +02001422F: arch/arm/mach-rockchip/
Heiko Stübner541555e2014-08-27 00:05:50 +02001423F: drivers/clk/rockchip/
1424F: drivers/i2c/busses/i2c-rk3x.c
Heiko Stuebner08ddbb02013-10-14 23:19:58 +02001425F: drivers/*/*rockchip*
Heiko Stübner541555e2014-08-27 00:05:50 +02001426F: drivers/*/*/*rockchip*
1427F: sound/soc/rockchip/
Heiko Stuebnerb4331b42015-03-14 19:32:06 +01001428N: rockchip
Heiko Stuebner08ddbb02013-10-14 23:19:58 +02001429
Kukjin Kim5bfb9372014-11-14 16:54:57 +09001430ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1431M: Kukjin Kim <kgene@kernel.org>
Krzysztof Kozlowskie8f98452015-05-14 21:15:20 +09001432M: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001433L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Mark Brown7a549d72011-12-02 13:52:12 +09001434L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +01001435S: Maintained
Mark Brown6f0589c2013-10-08 07:18:21 +09001436F: arch/arm/boot/dts/s3c*
1437F: arch/arm/boot/dts/exynos*
Krzysztof Kozlowskid97236e2015-06-06 19:02:19 +09001438F: arch/arm64/boot/dts/exynos/
Kukjin Kim482ce512010-06-29 15:05:26 -07001439F: arch/arm/plat-samsung/
Heiko Stuebner769bbb62011-12-02 13:51:56 +09001440F: arch/arm/mach-s3c24*/
1441F: arch/arm/mach-s3c64xx/
Kukjin Kim5bfb9372014-11-14 16:54:57 +09001442F: arch/arm/mach-s5p*/
1443F: arch/arm/mach-exynos*/
Ben Dookseb2ffca2011-02-01 15:52:36 -08001444F: drivers/*/*s3c2410*
1445F: drivers/*/*/*s3c2410*
Mark Brown40c76662011-12-02 13:54:25 +09001446F: drivers/spi/spi-s3c*
1447F: sound/soc/samsung/*
Doug Anderson33d43cd2013-06-18 07:02:23 +09001448N: exynos
Kukjin Kimf556cb072010-09-30 15:15:35 -07001449
Kyungmin Park10ffa962011-03-04 17:36:26 -08001450ARM/SAMSUNG MOBILE MACHINE SUPPORT
1451M: Kyungmin Park <kyungmin.park@samsung.com>
1452L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1453S: Maintained
Christian Kujau004bbd32014-10-13 15:51:17 -07001454F: arch/arm/mach-s5pv210/
Kyungmin Park10ffa962011-03-04 17:36:26 -08001455
Kamil Debski3ce4ccb2012-11-28 06:14:22 -03001456ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1457M: Kyungmin Park <kyungmin.park@samsung.com>
1458M: Kamil Debski <k.debski@samsung.com>
1459L: linux-arm-kernel@lists.infradead.org
1460L: linux-media@vger.kernel.org
1461S: Maintained
1462F: drivers/media/platform/s5p-g2d/
1463
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001464ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1465M: Kyungmin Park <kyungmin.park@samsung.com>
1466M: Kamil Debski <k.debski@samsung.com>
Joe Perches63059022012-06-07 14:21:10 -07001467M: Jeongtae Park <jtp.park@samsung.com>
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001468L: linux-arm-kernel@lists.infradead.org
1469L: linux-media@vger.kernel.org
1470S: Maintained
Cesar Eduardo Barros934455d2013-01-04 15:35:17 -08001471F: arch/arm/plat-samsung/s5p-dev-mfc.c
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001472F: drivers/media/platform/s5p-mfc/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001473
1474ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1475M: Kyungmin Park <kyungmin.park@samsung.com>
1476M: Tomasz Stanislawski <t.stanislaws@samsung.com>
1477L: linux-arm-kernel@lists.infradead.org
1478L: linux-media@vger.kernel.org
1479S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001480F: drivers/media/platform/s5p-tv/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001481
Paul Mundtd48d38e2010-02-08 12:50:24 +09001482ARM/SHMOBILE ARM ARCHITECTURE
Simon Horman5e212592012-11-27 11:41:49 +09001483M: Simon Horman <horms@verge.net.au>
Paul Mundtd48d38e2010-02-08 12:50:24 +09001484M: Magnus Damm <magnus.damm@gmail.com>
1485L: linux-sh@vger.kernel.org
Paul Mundtd48d38e2010-02-08 12:50:24 +09001486W: http://oss.renesas.com
Paul Mundtbbff48f2010-04-07 17:17:22 +09001487Q: http://patchwork.kernel.org/project/linux-sh/list/
Simon Horman5e212592012-11-27 11:41:49 +09001488T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
Paul Mundtd48d38e2010-02-08 12:50:24 +09001489S: Supported
Simon Horman0b514fd2014-05-15 08:48:21 +09001490F: arch/arm/boot/dts/emev2*
1491F: arch/arm/boot/dts/r7s*
1492F: arch/arm/boot/dts/r8a*
1493F: arch/arm/boot/dts/sh*
Simon Horman0b514fd2014-05-15 08:48:21 +09001494F: arch/arm/configs/bockw_defconfig
Simon Horman0b514fd2014-05-15 08:48:21 +09001495F: arch/arm/configs/marzen_defconfig
1496F: arch/arm/configs/shmobile_defconfig
Geert Uytterhoeven7a2071c2014-11-14 16:49:47 +01001497F: arch/arm/include/debug/renesas-scif.S
Paul Mundtd48d38e2010-02-08 12:50:24 +09001498F: arch/arm/mach-shmobile/
1499F: drivers/sh/
1500
Dinh Nguyen66314222012-07-18 16:07:18 -06001501ARM/SOCFPGA ARCHITECTURE
Dinh Nguyenba2b7d02014-08-06 16:31:27 -05001502M: Dinh Nguyen <dinguyen@opensource.altera.com>
Dinh Nguyen66314222012-07-18 16:07:18 -06001503S: Maintained
1504F: arch/arm/mach-socfpga/
Dinh Nguyenefadb752015-04-20 14:13:12 -05001505F: arch/arm/boot/dts/socfpga*
1506F: arch/arm/configs/socfpga_defconfig
Dinh Nguyenba2b7d02014-08-06 16:31:27 -05001507W: http://www.rocketboards.org
Dinh Nguyenefadb752015-04-20 14:13:12 -05001508T: git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
Dinh Nguyen66314222012-07-18 16:07:18 -06001509
1510ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
Dinh Nguyenba2b7d02014-08-06 16:31:27 -05001511M: Dinh Nguyen <dinguyen@opensource.altera.com>
Dinh Nguyen66314222012-07-18 16:07:18 -06001512S: Maintained
1513F: drivers/clk/socfpga/
1514
Thor Thayer71bcada2014-09-03 10:27:54 -05001515ARM/SOCFPGA EDAC SUPPORT
1516M: Thor Thayer <tthayer@opensource.altera.com>
1517S: Maintained
1518F: drivers/edac/altera_edac.
1519
Srinivas Kandagatla65ebcc12013-06-25 12:15:10 +01001520ARM/STI ARCHITECTURE
Srinivas Kandagatlaa92177e2014-03-03 11:28:59 +00001521M: Srinivas Kandagatla <srinivas.kandagatla@gmail.com>
1522M: Maxime Coquelin <maxime.coquelin@st.com>
1523M: Patrice Chotard <patrice.chotard@st.com>
Srinivas Kandagatla65ebcc12013-06-25 12:15:10 +01001524L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1525L: kernel@stlinux.com
1526W: http://www.stlinux.com
1527S: Maintained
1528F: arch/arm/mach-sti/
Srinivas Kandagatlaa92177e2014-03-03 11:28:59 +00001529F: arch/arm/boot/dts/sti*
1530F: drivers/clocksource/arm_global_timer.c
Lee Jones82805d12015-05-12 13:58:17 +01001531F: drivers/clocksource/clksrc_st_lpc.c
Srinivas Kandagatlaa92177e2014-03-03 11:28:59 +00001532F: drivers/i2c/busses/i2c-st.c
Greg Kroah-Hartman346e2e42014-09-25 13:11:52 +02001533F: drivers/media/rc/st_rc.c
Peter Griffin95d66b12015-07-30 14:09:01 -03001534F: drivers/media/platform/sti/c8sectpfe/
Peter Griffinf53b2bf2014-06-04 17:30:24 +01001535F: drivers/mmc/host/sdhci-st.c
Peter Griffine95cf392015-04-01 07:42:41 +01001536F: drivers/phy/phy-miphy28lp.c
1537F: drivers/phy/phy-miphy365x.c
Peter Griffin6da969a2014-09-11 18:02:46 +01001538F: drivers/phy/phy-stih407-usb.c
Peter Griffin26389c72014-09-08 11:33:02 +01001539F: drivers/phy/phy-stih41x-usb.c
Greg Kroah-Hartman346e2e42014-09-25 13:11:52 +02001540F: drivers/pinctrl/pinctrl-st.c
1541F: drivers/reset/sti/
Lee Jonesdb4112e2015-04-09 15:47:34 +01001542F: drivers/rtc/rtc-st-lpc.c
Greg Kroah-Hartman346e2e42014-09-25 13:11:52 +02001543F: drivers/tty/serial/st-asc.c
Peter Griffineb11ada2014-09-05 16:36:32 +01001544F: drivers/usb/dwc3/dwc3-st.c
Peter Griffin62f6f082014-09-08 13:04:48 +01001545F: drivers/usb/host/ehci-st.c
1546F: drivers/usb/host/ohci-st.c
Lee Jonesdb4112e2015-04-09 15:47:34 +01001547F: drivers/watchdog/st_lpc_wdt.c
Peter Griffindaac6f82014-11-19 08:44:54 +00001548F: drivers/ata/ahci_st.c
Srinivas Kandagatla65ebcc12013-06-25 12:15:10 +01001549
Maxime Coquelinee6e7872015-05-09 09:53:58 +02001550ARM/STM32 ARCHITECTURE
1551M: Maxime Coquelin <mcoquelin.stm32@gmail.com>
1552L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1553S: Maintained
1554T: git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git
1555N: stm32
1556F: drivers/clocksource/armv7m_systick.c
1557
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001558ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001559M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001560L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001561S: Maintained
1562
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001563ARM/TETON BGA MACHINE SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07001564M: "Mark F. Brown" <mark.brown314@gmail.com>
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001565L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1566S: Maintained
1567
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001568ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001569M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001570L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001571S: Maintained
1572
wanzongshun98ad6e32009-02-13 06:04:32 +01001573ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001574M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001575L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -07001576W: http://www.mcuos.com
1577S: Maintained
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001578F: arch/arm/mach-w90x900/
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001579F: drivers/input/keyboard/w90p910_keypad.c
1580F: drivers/input/touchscreen/w90p910_ts.c
1581F: drivers/watchdog/nuc900_wdt.c
Jeff Kirsher679ec0e2011-07-17 00:20:45 -07001582F: drivers/net/ethernet/nuvoton/w90p910_ether.c
Joe Perches53516842010-08-09 17:20:37 -07001583F: drivers/mtd/nand/nuc900_nand.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001584F: drivers/rtc/rtc-nuc900.c
Joe Perches9df92e62012-01-10 15:09:06 -08001585F: drivers/spi/spi-nuc900.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001586F: drivers/usb/host/ehci-w90x900.c
Jingoo Han8a61f012014-07-01 15:36:01 +09001587F: drivers/video/fbdev/nuc900fb.c
wanzongshun98ad6e32009-02-13 06:04:32 +01001588
Linus Walleij54274d72010-04-04 10:58:03 +01001589ARM/U300 MACHINE SUPPORT
Linus Walleije4651a92012-08-06 09:52:52 +02001590M: Linus Walleij <linus.walleij@linaro.org>
Linus Walleij54274d72010-04-04 10:58:03 +01001591L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1592S: Supported
1593F: arch/arm/mach-u300/
Linus Walleij9affbd22014-01-21 15:04:14 +01001594F: drivers/clocksource/timer-u300.c
Linus Walleij54274d72010-04-04 10:58:03 +01001595F: drivers/i2c/busses/i2c-stu300.c
1596F: drivers/rtc/rtc-coh901331.c
1597F: drivers/watchdog/coh901327_wdt.c
1598F: drivers/dma/coh901318*
Linus Walleij87572882010-12-22 09:18:29 +01001599F: drivers/mfd/ab3100*
1600F: drivers/rtc/rtc-ab3100.c
1601F: drivers/rtc/rtc-coh901331.c
1602T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Linus Walleij54274d72010-04-04 10:58:03 +01001603
Masahiro Yamada3d00d042015-05-08 13:07:14 +09001604ARM/UNIPHIER ARCHITECTURE
1605M: Masahiro Yamada <yamada.masahiro@socionext.com>
1606L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1607S: Maintained
Masahiro Yamadaa3ff83d2015-07-25 16:23:24 +09001608F: arch/arm/boot/dts/uniphier*
Masahiro Yamada3d00d042015-05-08 13:07:14 +09001609F: arch/arm/mach-uniphier/
Masahiro Yamadaa3ff83d2015-07-25 16:23:24 +09001610F: drivers/pinctrl/uniphier/
1611F: drivers/tty/serial/8250/8250_uniphier.c
Masahiro Yamada3d00d042015-05-08 13:07:14 +09001612N: uniphier
1613
Linus Walleij87572882010-12-22 09:18:29 +01001614ARM/Ux500 ARM ARCHITECTURE
Linus Walleije4651a92012-08-06 09:52:52 +02001615M: Linus Walleij <linus.walleij@linaro.org>
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001616L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1617S: Maintained
1618F: arch/arm/mach-ux500/
Linus Walleije4651a92012-08-06 09:52:52 +02001619F: drivers/clocksource/clksrc-dbx500-prcmu.c
Linus Walleij87572882010-12-22 09:18:29 +01001620F: drivers/dma/ste_dma40*
Linus Walleije4651a92012-08-06 09:52:52 +02001621F: drivers/hwspinlock/u8500_hsem.c
Linus Walleij87572882010-12-22 09:18:29 +01001622F: drivers/mfd/abx500*
1623F: drivers/mfd/ab8500*
Linus Walleije4651a92012-08-06 09:52:52 +02001624F: drivers/mfd/dbx500*
1625F: drivers/mfd/db8500*
Joe Perchesecc265f2014-08-08 14:26:20 -07001626F: drivers/pinctrl/nomadik/pinctrl-ab*
1627F: drivers/pinctrl/nomadik/pinctrl-nomadik*
Linus Walleij87572882010-12-22 09:18:29 +01001628F: drivers/rtc/rtc-ab8500.c
Linus Walleije4651a92012-08-06 09:52:52 +02001629F: drivers/rtc/rtc-pl031.c
Linus Walleij87572882010-12-22 09:18:29 +01001630T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001631
Ulf Hanssone93fde22013-11-12 11:41:12 +01001632ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1633M: Ulf Hansson <ulf.hansson@linaro.org>
1634L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1635T: git git://git.linaro.org/people/ulfh/clk.git
1636S: Maintained
1637F: drivers/clk/ux500/
1638F: include/linux/platform_data/clk-ux500.h
1639
Pawel Moll740d93b2014-11-26 12:13:05 +00001640ARM/VERSATILE EXPRESS PLATFORM
1641M: Liviu Dudau <liviu.dudau@arm.com>
1642M: Sudeep Holla <sudeep.holla@arm.com>
1643M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
1644L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1645S: Maintained
1646F: arch/arm/boot/dts/vexpress*
Kristina Martsenko9ccd6082015-07-01 13:36:03 +01001647F: arch/arm64/boot/dts/arm/vexpress*
Pawel Moll740d93b2014-11-26 12:13:05 +00001648F: arch/arm/mach-vexpress/
1649F: */*/vexpress*
Pawel Moll7e8f4032014-12-01 14:16:33 +00001650F: */*/*/vexpress*
Pawel Moll740d93b2014-11-26 12:13:05 +00001651F: drivers/clk/versatile/clk-vexpress-osc.c
1652F: drivers/clocksource/versatile.c
1653
Russell Kingd4275352009-04-16 14:05:27 +01001654ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001655M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001656L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001657W: http://www.arm.linux.org.uk/
1658S: Maintained
1659F: arch/arm/vfp/
1660
Marek Vasute66b6d82010-03-26 06:51:32 +01001661ARM/VOIPAC PXA270 SUPPORT
1662M: Marek Vasut <marek.vasut@gmail.com>
1663L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1664S: Maintained
1665F: arch/arm/mach-pxa/vpac270.c
Joe Perchese0cca112010-08-09 17:20:38 -07001666F: arch/arm/mach-pxa/include/mach/vpac270.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001667
Tony Prisk04529fe2012-07-24 04:19:37 +12001668ARM/VT8500 ARM ARCHITECTURE
1669M: Tony Prisk <linux@prisktech.co.nz>
1670L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1671S: Maintained
1672F: arch/arm/mach-vt8500/
Tony Prisk41fd91b2013-02-08 18:18:03 +13001673F: drivers/clocksource/vt8500_timer.c
Tony Prisk560746e2013-06-15 09:52:16 +12001674F: drivers/i2c/busses/i2c-wmt.c
Tony Prisk41fd91b2013-02-08 18:18:03 +13001675F: drivers/mmc/host/wmt-sdmmc.c
1676F: drivers/pwm/pwm-vt8500.c
1677F: drivers/rtc/rtc-vt8500.c
1678F: drivers/tty/serial/vt8500_serial.c
Joe Perches4f311022013-09-11 14:23:46 -07001679F: drivers/usb/host/ehci-platform.c
Tony Prisk41fd91b2013-02-08 18:18:03 +13001680F: drivers/usb/host/uhci-platform.c
Jingoo Han8a61f012014-07-01 15:36:01 +09001681F: drivers/video/fbdev/vt8500lcdfb.*
1682F: drivers/video/fbdev/wm8505fb*
1683F: drivers/video/fbdev/wmt_ge_rops.*
Tony Prisk04529fe2012-07-24 04:19:37 +12001684
Marek Vasute66b6d82010-03-26 06:51:32 +01001685ARM/ZIPIT Z2 SUPPORT
1686M: Marek Vasut <marek.vasut@gmail.com>
1687L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1688S: Maintained
1689F: arch/arm/mach-pxa/z2.c
Joe Perches6ab2a852010-08-09 17:20:38 -07001690F: arch/arm/mach-pxa/include/mach/z2.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001691
Jun Nie5ecc4b52015-04-28 17:18:06 +08001692ARM/ZTE ARCHITECTURE
1693M: Jun Nie <jun.nie@linaro.org>
1694L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1695S: Maintained
1696F: arch/arm/mach-zx/
1697F: drivers/clk/zte/
1698F: Documentation/devicetree/bindings/arm/zte.txt
1699F: Documentation/devicetree/bindings/clock/zx296702-clk.txt
1700
Michal Simek51f29d42013-01-21 17:41:46 +01001701ARM/ZYNQ ARCHITECTURE
1702M: Michal Simek <michal.simek@xilinx.com>
Soren Brinkmannf0fd9ad2014-10-23 09:29:22 -07001703R: Sören Brinkmann <soren.brinkmann@xilinx.com>
Michal Simek51f29d42013-01-21 17:41:46 +01001704L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1705W: http://wiki.xilinx.com
Soren Brinkmannd6448b72015-06-26 09:04:32 -07001706T: git https://github.com/Xilinx/linux-xlnx.git
Michal Simek51f29d42013-01-21 17:41:46 +01001707S: Supported
1708F: arch/arm/mach-zynq/
Michal Simekbd2a3372013-06-04 07:17:39 +00001709F: drivers/cpuidle/cpuidle-zynq.c
Michal Simekfb9d4952014-10-13 15:51:15 -07001710F: drivers/block/xsysace.c
Michal Simekc2fd4e32014-01-02 12:58:50 -08001711N: zynq
1712N: xilinx
1713F: drivers/clocksource/cadence_ttc_timer.c
Soren Brinkmanndf8eb562014-04-04 14:27:55 -07001714F: drivers/i2c/busses/i2c-cadence.c
Soren Brinkmanne3ec3a32013-12-02 10:02:36 -08001715F: drivers/mmc/host/sdhci-of-arasan.c
Punnaiah Choudary Kalluriae9b56e2015-01-06 23:13:47 +05301716F: drivers/edac/synopsys_edac.c
Michal Simek51f29d42013-01-21 17:41:46 +01001717
Will Deacon48ec83b2015-05-27 17:25:59 +01001718ARM SMMU DRIVERS
Will Deaconb8f98792013-06-24 18:31:26 +01001719M: Will Deacon <will.deacon@arm.com>
1720L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1721S: Maintained
1722F: drivers/iommu/arm-smmu.c
Will Deacon48ec83b2015-05-27 17:25:59 +01001723F: drivers/iommu/arm-smmu-v3.c
Will Deacone1d3c0f2014-11-14 17:18:23 +00001724F: drivers/iommu/io-pgtable-arm.c
Will Deaconb8f98792013-06-24 18:31:26 +01001725
Catalin Marinas38074222012-03-05 11:49:34 +00001726ARM64 PORT (AARCH64 ARCHITECTURE)
1727M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasd19766e2012-12-11 13:58:05 +00001728M: Will Deacon <will.deacon@arm.com>
Catalin Marinas38074222012-03-05 11:49:34 +00001729L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1730S: Maintained
1731F: arch/arm64/
Catalin Marinasd19766e2012-12-11 13:58:05 +00001732F: Documentation/arm64/
Catalin Marinas38074222012-03-05 11:49:34 +00001733
Laurent Pinchart9d7005f92012-12-10 20:38:24 -03001734AS3645A LED FLASH CONTROLLER DRIVER
1735M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1736L: linux-media@vger.kernel.org
1737T: git git://linuxtv.org/media_tree.git
1738S: Maintained
1739F: drivers/media/i2c/as3645a.c
1740F: include/media/as3645a.h
1741
George Josephd58de032010-03-05 22:17:25 +01001742ASC7621 HARDWARE MONITOR DRIVER
1743M: George Joseph <george.joseph@fairview5.com>
1744L: lm-sensors@lm-sensors.org
1745S: Maintained
1746F: Documentation/hwmon/asc7621
1747F: drivers/hwmon/asc7621.c
1748
Corentin Charyb229ece2011-02-26 10:20:40 +01001749ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
Corentin Chary5909c652012-12-17 16:00:05 -08001750M: Corentin Chary <corentin.chary@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05001752L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001753W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754S: Maintained
Corentin Charyb229ece2011-02-26 10:20:40 +01001755F: drivers/platform/x86/asus*.c
1756F: drivers/platform/x86/eeepc*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757
Andrew Morton953a6472008-11-06 12:53:28 -08001758ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williams08223d82014-08-19 06:07:56 -07001759R: Dan Williams <dan.j.williams@intel.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001760W: http://sourceforge.net/projects/xscaleiop
Dan Williams08223d82014-08-19 06:07:56 -07001761S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07001762F: Documentation/crypto/async-tx-api.txt
1763F: crypto/async_tx/
1764F: drivers/dma/
1765F: include/linux/dmaengine.h
1766F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001767
Wolfram Sanga1867d32009-09-18 22:45:51 +02001768AT24 EEPROM DRIVER
Wolfram Sang14d77c42013-02-08 20:54:40 +01001769M: Wolfram Sang <wsa@the-dreams.de>
Wolfram Sanga1867d32009-09-18 22:45:51 +02001770L: linux-i2c@vger.kernel.org
1771S: Maintained
1772F: drivers/misc/eeprom/at24.c
Vivien Didelot25f73ed2013-09-27 15:06:28 -04001773F: include/linux/platform_data/at24.h
Wolfram Sanga1867d32009-09-18 22:45:51 +02001774
Randy Dunlape7839f22008-10-12 16:11:45 -07001775ATA OVER ETHERNET (AOE) DRIVER
Ed Cashinfb903812015-03-25 15:55:06 -07001776M: "Ed L. Cashin" <ed.cashin@acm.org>
1777W: http://www.openaoe.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001779F: Documentation/aoe/
1780F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781
Joe Perches9a10a872010-12-01 09:37:55 -08001782ATHEROS ATH GENERIC UTILITIES
Luis R. Rodriguezf726ee62013-12-14 20:11:39 +01001783M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
Joe Perches9a10a872010-12-01 09:37:55 -08001784L: linux-wireless@vger.kernel.org
1785S: Supported
1786F: drivers/net/wireless/ath/*
1787
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001788ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001789M: Jiri Slaby <jirislaby@gmail.com>
1790M: Nick Kossifidis <mickflemm@gmail.com>
Luis R. Rodriguezf726ee62013-12-14 20:11:39 +01001791M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001792L: linux-wireless@vger.kernel.org
Joe Perches72c706b2009-09-07 11:34:30 -07001793W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001794S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001795F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001796
Kalle Valo12e62d62011-09-13 10:21:25 +03001797ATHEROS ATH6KL WIRELESS DRIVER
1798M: Kalle Valo <kvalo@qca.qualcomm.com>
1799L: linux-wireless@vger.kernel.org
1800W: http://wireless.kernel.org/en/users/Drivers/ath6kl
Kalle Valo58cfb682013-07-22 12:26:12 +03001801T: git git://github.com/kvalo/ath.git
Kalle Valo12e62d62011-09-13 10:21:25 +03001802S: Supported
1803F: drivers/net/wireless/ath/ath6kl/
1804
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001805WILOCITY WIL6210 WIRELESS DRIVER
1806M: Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
1807L: linux-wireless@vger.kernel.org
1808L: wil6210@qca.qualcomm.com
1809S: Supported
1810W: http://wireless.kernel.org/en/users/Drivers/wil6210
1811F: drivers/net/wireless/ath/wil6210/
Vladimir Kondratievdba4b742014-10-01 15:05:25 +03001812F: include/uapi/linux/wil6210_uapi.h
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001813
Christian Lamparter1d7e1e62010-09-06 01:10:25 +02001814CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1815M: Christian Lamparter <chunkeey@googlemail.com>
1816L: linux-wireless@vger.kernel.org
1817W: http://wireless.kernel.org/en/users/Drivers/carl9170
1818S: Maintained
1819F: drivers/net/wireless/ath/carl9170/
1820
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001821ATK0110 HWMON DRIVER
1822M: Luca Tettamanti <kronos.it@gmail.com>
1823L: lm-sensors@lm-sensors.org
1824S: Maintained
1825F: drivers/hwmon/asus_atk0110.c
1826
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001827ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001828M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001829S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001830F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001831
Chris Snook7ae115b2008-09-09 03:26:57 -04001832ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001833M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +00001834M: Chris Snook <chris.snook@gmail.com>
Chris Snooke443e382010-09-16 22:00:28 -07001835L: netdev@vger.kernel.org
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001836W: http://sourceforge.net/projects/atl1
1837W: http://atl1.sourceforge.net
1838S: Maintained
Jeff Kirsher2b133ad2011-05-20 06:55:16 -07001839F: drivers/net/ethernet/atheros/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001840
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841ATM
chas williams - CONTRACTOR366c1bd2015-03-11 16:18:01 -04001842M: Chas Williams <3chas3@gmail.com>
Joe Perches476604d2009-10-26 16:49:41 -07001843L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001844L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845W: http://linux-atm.sourceforge.net
1846S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001847F: drivers/atm/
1848F: include/linux/atm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001849F: include/uapi/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001851ATMEL AT91 / AT32 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001852M: Ludovic Desroches <ludovic.desroches@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001853S: Maintained
1854F: drivers/mmc/host/atmel-mci.c
1855F: drivers/mmc/host/atmel-mci-regs.h
1856
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001857ATMEL AT91 / AT32 SERIAL DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001858M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001859S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001860F: drivers/tty/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001861
Bo Shendfae90e2014-09-28 09:57:19 +08001862ATMEL Audio ALSA driver
Nicolas Ferre3a820022015-03-31 15:34:51 +02001863M: Nicolas Ferre <nicolas.ferre@atmel.com>
Bo Shendfae90e2014-09-28 09:57:19 +08001864L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1865S: Supported
1866F: sound/soc/atmel
1867
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001868ATMEL DMA DRIVER
1869M: Nicolas Ferre <nicolas.ferre@atmel.com>
1870L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1871S: Supported
1872F: drivers/dma/at_hdmac.c
1873F: drivers/dma/at_hdmac_regs.h
Cesar Eduardo Barros6f0d65a2013-01-04 15:35:20 -08001874F: include/linux/platform_data/dma-atmel.h
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001875
Ludovic Desroches6bd0f432014-10-22 17:22:20 +02001876ATMEL XDMA DRIVER
1877M: Ludovic Desroches <ludovic.desroches@atmel.com>
1878L: linux-arm-kernel@lists.infradead.org
1879L: dmaengine@vger.kernel.org
1880S: Supported
1881F: drivers/dma/at_xdmac.c
1882
Ludovic Desroches888f2802013-03-15 05:32:57 +00001883ATMEL I2C DRIVER
1884M: Ludovic Desroches <ludovic.desroches@atmel.com>
1885L: linux-i2c@vger.kernel.org
1886S: Supported
1887F: drivers/i2c/busses/i2c-at91.c
1888
Josh Wu15515542012-03-23 17:56:29 +08001889ATMEL ISI DRIVER
1890M: Josh Wu <josh.wu@atmel.com>
1891L: linux-media@vger.kernel.org
1892S: Supported
Cesar Eduardo Barrosf2294c22013-01-04 15:35:21 -08001893F: drivers/media/platform/soc_camera/atmel-isi.c
Josh Wu15515542012-03-23 17:56:29 +08001894F: include/media/atmel-isi.h
1895
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001896ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001897M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01001898L: linux-fbdev@vger.kernel.org
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001899S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09001900F: drivers/video/fbdev/atmel_lcdfb.c
Joe Perches679655d2009-04-07 20:44:32 -07001901F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001902
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001903ATMEL MACB ETHERNET DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001904M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001905S: Supported
Jeff Kirsher9f2f3812011-06-18 01:52:36 -07001906F: drivers/net/ethernet/cadence/
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001907
Josh Wu5cbac982014-10-13 15:51:24 -07001908ATMEL NAND DRIVER
1909M: Josh Wu <josh.wu@atmel.com>
1910L: linux-mtd@lists.infradead.org
1911S: Supported
1912F: drivers/mtd/nand/atmel_nand*
1913
ludovic.desroches@atmel.com05c441e2015-07-29 16:22:48 +02001914ATMEL SDMMC DRIVER
1915M: Ludovic Desroches <ludovic.desroches@atmel.com>
1916L: linux-mmc@vger.kernel.org
1917S: Supported
1918F: drivers/mmc/host/sdhci-of-at91.c
1919
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001920ATMEL SPI DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001921M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001922S: Supported
Joe Perches9df92e62012-01-10 15:09:06 -08001923F: drivers/spi/spi-atmel.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001924
Bo Shen0ef09012014-09-28 09:57:18 +08001925ATMEL SSC DRIVER
Nicolas Ferre03515f32015-03-19 10:49:42 +01001926M: Nicolas Ferre <nicolas.ferre@atmel.com>
Bo Shen0ef09012014-09-28 09:57:18 +08001927L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1928S: Supported
1929F: drivers/misc/atmel-ssc.c
1930F: include/linux/atmel-ssc.h
1931
Nicolas Ferree9cb1c52012-03-26 15:59:32 +02001932ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1933M: Nicolas Ferre <nicolas.ferre@atmel.com>
1934L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1935S: Supported
1936F: drivers/misc/atmel_tclib.c
1937F: drivers/clocksource/tcb_clksrc.c
1938
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001939ATMEL USBA UDC DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001940M: Nicolas Ferre <nicolas.ferre@atmel.com>
1941L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001942S: Supported
Joe Perchesfaf2e1d2014-08-08 14:26:18 -07001943F: drivers/usb/gadget/udc/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001944
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001946M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07001947L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948W: http://www.thekelleys.org.uk/atmel
1949W: http://atmelwlandriver.sourceforge.net/
1950S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001951F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952
Nick Dyera14c0f82015-08-04 16:22:54 -07001953ATMEL MAXTOUCH DRIVER
1954M: Nick Dyer <nick.dyer@itdev.co.uk>
1955T: git git://github.com/atmel-maxtouch/linux.git
1956S: Supported
1957F: Documentation/devicetree/bindings/input/atmel,maxtouch.txt
1958F: drivers/input/touchscreen/atmel_mxt_ts.c
1959F: include/linux/platform_data/atmel_mxt_ts.h
1960
Bradley Grove26780d92013-08-23 10:35:45 -04001961ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
Joe Perchesb75f0052014-03-03 15:38:37 -08001962M: Bradley Grove <linuxdrivers@attotech.com>
1963L: linux-scsi@vger.kernel.org
1964W: http://www.attotech.com
1965S: Supported
1966F: drivers/scsi/esas2r
Bradley Grove26780d92013-08-23 10:35:45 -04001967
Stefan Schmidtbc6e17b2015-05-29 10:51:28 +02001968ATUSB IEEE 802.15.4 RADIO DRIVER
1969M: Stefan Schmidt <stefan@osg.samsung.com>
1970L: linux-wpan@vger.kernel.org
1971S: Maintained
1972F: drivers/net/ieee802154/atusb.c
1973F: drivers/net/ieee802154/atusb.h
1974F: drivers/net/ieee802154/at86rf230.h
1975
Chris Wrighta92b7b82005-07-07 18:12:23 -07001976AUDIT SUBSYSTEM
Paul Moore915f3892014-10-20 11:59:43 -04001977M: Paul Moore <paul@paul-moore.com>
Joe Perches8b58be82009-07-29 15:04:30 -07001978M: Eric Paris <eparis@redhat.com>
Paul Moore915f3892014-10-20 11:59:43 -04001979L: linux-audit@redhat.com (moderated for non-subscribers)
David Woodhousead3f9a22005-07-13 15:28:29 +01001980W: http://people.redhat.com/sgrubb/audit/
Paul Moore915f3892014-10-20 11:59:43 -04001981T: git git://git.infradead.org/users/pcmoore/audit
Chris Wrighta92b7b82005-07-07 18:12:23 -07001982S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001983F: include/linux/audit.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001984F: include/uapi/linux/audit.h
Joe Perches679655d2009-04-07 20:44:32 -07001985F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001986
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001987AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001988M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001989W: http://miguelojeda.es/auxdisplay.htm
1990W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001991S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001992F: drivers/auxdisplay/
1993F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001994
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001995AVR32 ARCHITECTURE
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001996M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1997M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001998W: http://www.atmel.com/products/AVR32/
Matthias Brugger249d9d92013-02-04 14:28:47 -08001999W: http://mirror.egtvedt.no/avr32linux.org/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07002000W: http://avrfreaks.net/
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02002001S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002002F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07002003
2004AVR32/AT32AP MACHINE SUPPORT
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02002005M: Haavard Skinnemoen <hskinnemoen@gmail.com>
2006M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
2007S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002008F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07002009
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07002011M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002013W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002015F: include/uapi/linux/ax25.h
Joe Perches679655d2009-04-07 20:44:32 -07002016F: include/net/ax25.h
2017F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018
Mauro Carvalho Chehabd5269392012-11-02 12:00:30 -02002019AZ6007 DVB DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02002020M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehabd5269392012-11-02 12:00:30 -02002021L: linux-media@vger.kernel.org
2022W: http://linuxtv.org
2023T: git git://linuxtv.org/media_tree.git
2024S: Maintained
2025F: drivers/media/usb/dvb-usb-v2/az6007.c
2026
Hans Verkuil67773762012-11-23 07:09:23 -03002027AZTECH FM RADIO RECEIVER DRIVER
2028M: Hans Verkuil <hverkuil@xs4all.nl>
2029L: linux-media@vger.kernel.org
2030T: git git://linuxtv.org/media_tree.git
2031W: http://linuxtv.org
2032S: Maintained
2033F: drivers/media/radio/radio-aztech*
2034
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002035B43 WIRELESS DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002036L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01002037L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02002038W: http://wireless.kernel.org/en/users/Drivers/b43
Joe Perches8a72ed62015-04-15 16:17:39 -07002039S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07002040F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002041
2042B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002043M: Larry Finger <Larry.Finger@lwfinger.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002044L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01002045L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02002046W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002047S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002048F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002049
Richard Purdie300abeb2007-02-07 22:21:07 +00002050BACKLIGHT CLASS/SUBSYSTEM
Jingoo Hanb7701752015-05-14 15:17:07 -07002051M: Jingoo Han <jingoohan1@gmail.com>
Jingoo Han70d14fc2014-04-03 14:48:46 -07002052M: Lee Jones <lee.jones@linaro.org>
Richard Purdie300abeb2007-02-07 22:21:07 +00002053S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002054F: drivers/video/backlight/
2055F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00002056
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002057BATMAN ADVANCED
Antonio Quartulli207df492013-09-21 13:46:56 +02002058M: Marek Lindner <mareklindner@neomailbox.ch>
Simon Wunderlichc679ff82013-10-10 23:59:10 +02002059M: Simon Wunderlich <sw@simonwunderlich.de>
Antonio Quartulli207df492013-09-21 13:46:56 +02002060M: Antonio Quartulli <antonio@meshcoding.com>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002061L: b.a.t.m.a.n@lists.open-mesh.org
2062W: http://www.open-mesh.org/
2063S: Maintained
2064F: net/batman-adv/
2065
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002066BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002067M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002068L: linux-hams@vger.kernel.org
2069W: http://www.baycom.org/~tom/ham/ham.html
2070S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002071F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002072
Kent Overstreetcafe5632013-03-23 16:11:31 -07002073BCACHE (BLOCK LAYER CACHE)
Joe Perchesd1aa1ab2015-06-30 14:59:54 -07002074M: Kent Overstreet <kent.overstreet@gmail.com>
Kent Overstreetcafe5632013-03-23 16:11:31 -07002075L: linux-bcache@vger.kernel.org
2076W: http://bcache.evilpiepirate.org
Joe Perchesd1aa1ab2015-06-30 14:59:54 -07002077S: Maintained
Kent Overstreetcafe5632013-03-23 16:11:31 -07002078F: drivers/md/bcache/
2079
Hans Verkuil04bd8442015-06-08 09:26:20 -03002080BDISP ST MEDIA DRIVER
2081M: Fabien Dessenne <fabien.dessenne@st.com>
2082L: linux-media@vger.kernel.org
2083T: git git://linuxtv.org/media_tree.git
2084W: http://linuxtv.org
2085S: Supported
2086F: drivers/media/platform/sti/bdisp
2087
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002088BEFS FILE SYSTEM
Joe Perches55817d32010-08-09 17:20:52 -07002089S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002090F: Documentation/filesystems/befs.txt
2091F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002092
Dariusz Marcinkiewicz564ee362014-08-15 17:50:47 +02002093BECKHOFF CX5020 ETHERCAT MASTER DRIVER
Joe Perches49e7d9d2015-04-15 16:17:31 -07002094M: Dariusz Marcinkiewicz <reksio@newterm.pl>
2095L: netdev@vger.kernel.org
2096S: Maintained
2097F: drivers/net/ethernet/ec_bhf.c
Dariusz Marcinkiewicz564ee362014-08-15 17:50:47 +02002098
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002099BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002100M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002101S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002102F: Documentation/filesystems/bfs.txt
2103F: fs/bfs/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002104F: include/uapi/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002105
Bryan Wu1394f032007-05-06 14:50:22 -07002106BLACKFIN ARCHITECTURE
Sonic Zhanga4edbc12014-01-29 14:05:55 -08002107M: Steven Miao <realmz6@gmail.com>
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002108L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Michael Opdenacker14431762014-03-10 15:49:49 -07002109T: git git://git.code.sf.net/p/adi-linux/code
Bryan Wue3b2d3f2007-06-11 15:31:30 +08002110W: http://blackfin.uclinux.org
2111S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002112F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07002113
Bryan Wue190d6b2007-07-17 14:43:44 +08002114BLACKFIN EMAC DRIVER
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002115L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Bryan Wue190d6b2007-07-17 14:43:44 +08002116W: http://blackfin.uclinux.org
2117S: Supported
Jeff Kirsher7b35f032011-06-18 00:01:26 -07002118F: drivers/net/ethernet/adi/
Bryan Wue190d6b2007-07-17 14:43:44 +08002119
Mike Frysinger566da5b2007-06-11 15:31:30 +08002120BLACKFIN RTC DRIVER
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002121L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Mike Frysinger566da5b2007-06-11 15:31:30 +08002122W: http://blackfin.uclinux.org
2123S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002124F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08002125
Mike Frysinger936ed492010-03-10 15:20:38 -08002126BLACKFIN SDH DRIVER
Sonic Zhang109ec8c2012-08-08 12:16:08 +08002127M: Sonic Zhang <sonic.zhang@analog.com>
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002128L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Mike Frysinger936ed492010-03-10 15:20:38 -08002129W: http://blackfin.uclinux.org
2130S: Supported
2131F: drivers/mmc/host/bfin_sdh.c
2132
Bryan Wu1394f032007-05-06 14:50:22 -07002133BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002134M: Sonic Zhang <sonic.zhang@analog.com>
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002135L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Bryan Wue3b2d3f2007-06-11 15:31:30 +08002136W: http://blackfin.uclinux.org
2137S: Supported
Joe Perches84602412012-01-10 15:09:04 -08002138F: drivers/tty/serial/bfin_uart.c
Bryan Wu1394f032007-05-06 14:50:22 -07002139
Bryan Wu1e6d3202007-07-15 02:50:02 +08002140BLACKFIN WATCHDOG DRIVER
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002141L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Bryan Wu1e6d3202007-07-15 02:50:02 +08002142W: http://blackfin.uclinux.org
2143S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002144F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08002145
Bryan Wud24ecfc2007-05-01 23:26:32 +02002146BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002147M: Sonic Zhang <sonic.zhang@analog.com>
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002148L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Bryan Wud24ecfc2007-05-01 23:26:32 +02002149W: http://blackfin.uclinux.org/
2150S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002151F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02002152
Scott Jiang1e204372013-01-18 17:09:47 -03002153BLACKFIN MEDIA DRIVER
2154M: Scott Jiang <scott.jiang.linux@gmail.com>
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002155L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Scott Jiang1e204372013-01-18 17:09:47 -03002156W: http://blackfin.uclinux.org/
2157S: Supported
2158F: drivers/media/platform/blackfin/
2159F: drivers/media/i2c/adv7183*
2160F: drivers/media/i2c/vs6624*
2161
Jan-Simon Möllerb54cf352012-07-20 16:49:06 +08002162BLINKM RGB LED DRIVER
2163M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
2164S: Maintained
2165F: drivers/leds/leds-blinkm.c
2166
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07002168M: Jens Axboe <axboe@kernel.dk>
Joe Perches08deed12012-03-23 15:01:57 -07002169T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002171F: block/
Steven Rostedtae11f7e2015-06-09 17:30:11 -04002172F: kernel/trace/blktrace.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173
Joern Engel2b54aae2008-02-06 01:38:02 -08002174BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002175M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08002176L: linux-mtd@lists.infradead.org
2177S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002178F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08002179
Marcel Holtmann63fbd242008-08-18 13:23:53 +02002180BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002181M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07002182M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07002183M: Johan Hedberg <johan.hedberg@gmail.com>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02002184L: linux-bluetooth@vger.kernel.org
2185W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02002186T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2187T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Marcel Holtmann63fbd242008-08-18 13:23:53 +02002188S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002189F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02002190
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002192M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07002193M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07002194M: Johan Hedberg <johan.hedberg@gmail.com>
Pavel Machek781c2842008-03-20 15:41:02 -07002195L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02002196W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02002197T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2198T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002200F: net/bluetooth/
2201F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203BONDING DRIVER
Jay Vosburgh79b30752014-03-27 10:33:44 -07002204M: Jay Vosburgh <j.vosburgh@gmail.com>
Veaceslav Falico898602a2014-03-27 18:43:50 +01002205M: Veaceslav Falico <vfalico@gmail.com>
Andy Gospodarek31639b92015-02-25 17:00:16 -05002206M: Andy Gospodarek <gospo@cumulusnetworks.com>
Simon Hormana6c36ee2010-11-21 09:58:04 -08002207L: netdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01002208W: http://sourceforge.net/projects/bonding/
2209S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002210F: drivers/net/bonding/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002211F: include/uapi/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212
Alexei Starovoitovb5f4df32014-07-22 23:01:59 -07002213BPF (Safe dynamic programs and tools)
2214M: Alexei Starovoitov <ast@kernel.org>
2215L: netdev@vger.kernel.org
2216L: linux-kernel@vger.kernel.org
2217S: Supported
2218F: kernel/bpf/
2219
Gary Zambrano39105892006-06-22 17:26:20 -07002220BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002221M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07002222L: netdev@vger.kernel.org
2223S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07002224F: drivers/net/ethernet/broadcom/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07002225
Florian Fainelli32ec90d2014-02-13 16:08:51 -08002226BROADCOM GENET ETHERNET DRIVER
2227M: Florian Fainelli <f.fainelli@gmail.com>
2228L: netdev@vger.kernel.org
2229S: Supported
2230F: drivers/net/ethernet/broadcom/genet/
2231
Michael Chan948c51e2006-06-04 02:51:39 -07002232BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Jitendra Kalsariaf1d1bae2014-06-23 15:10:35 -04002233M: Sony Chacko <sony.chacko@qlogic.com>
2234M: Dept-HSGLinuxNICDev@qlogic.com
Michael Chan948c51e2006-06-04 02:51:39 -07002235L: netdev@vger.kernel.org
2236S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07002237F: drivers/net/ethernet/broadcom/bnx2.*
2238F: drivers/net/ethernet/broadcom/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07002239
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08002240BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Ariel Elior08f6dd82014-05-27 13:11:36 +03002241M: Ariel Elior <ariel.elior@qlogic.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08002242L: netdev@vger.kernel.org
2243S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07002244F: drivers/net/ethernet/broadcom/bnx2x/
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08002245
Matt Porter90f4c592014-05-06 12:09:45 -04002246BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
Florian Fainellif18cf052014-09-19 11:17:12 -07002247M: Florian Fainelli <f.fainelli@gmail.com>
Florian Fainellid3cc2e82015-04-10 11:49:44 -07002248M: Ray Jui <rjui@broadcom.com>
2249M: Scott Branden <sbranden@broadcom.com>
Christian Daudt497a0452013-09-24 15:27:47 -07002250L: bcm-kernel-feedback-list@broadcom.com
Matt Porter90f4c592014-05-06 12:09:45 -04002251T: git git://github.com/broadcom/mach-bcm
Christian Daudtaf4b8e32013-09-11 14:23:49 -07002252S: Maintained
2253F: arch/arm/mach-bcm/
2254F: arch/arm/boot/dts/bcm113*
Matt Porter90f4c592014-05-06 12:09:45 -04002255F: arch/arm/boot/dts/bcm216*
Christian Daudtaf4b8e32013-09-11 14:23:49 -07002256F: arch/arm/boot/dts/bcm281*
2257F: arch/arm/configs/bcm_defconfig
Joe Perchese4ef47f2014-08-08 14:25:08 -07002258F: drivers/mmc/host/sdhci-bcm-kona.c
Christian Daudtaf4b8e32013-09-11 14:23:49 -07002259F: drivers/clocksource/bcm_kona_timer.c
2260
Scott Branden9209bec2014-10-16 21:57:16 -06002261BROADCOM BCM2835 ARM ARCHITECTURE
Stephen Warrenf680f252012-09-15 00:18:54 -06002262M: Stephen Warren <swarren@wwwdotorg.org>
Stephen Warren8bcdd922014-11-04 20:27:17 -07002263M: Lee Jones <lee@kernel.org>
Eric Anholt10b9e8872015-07-22 12:55:36 -07002264M: Eric Anholt <eric@anholt.net>
Stephen Warrenf680f252012-09-15 00:18:54 -06002265L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
Eric Anholt82481122015-07-22 12:55:37 -07002266L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Stephen Warren8bcdd922014-11-04 20:27:17 -07002267T: git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git
Stephen Warrenf680f252012-09-15 00:18:54 -06002268S: Maintained
Scott Branden9209bec2014-10-16 21:57:16 -06002269N: bcm2835
Stephen Warrenf680f252012-09-15 00:18:54 -06002270
Kevin Cernekeea2f67342014-10-20 21:28:06 -07002271BROADCOM BCM33XX MIPS ARCHITECTURE
2272M: Kevin Cernekee <cernekee@gmail.com>
2273L: linux-mips@linux-mips.org
2274S: Maintained
2275F: arch/mips/bcm3384/*
2276F: arch/mips/include/asm/mach-bcm3384/*
2277F: arch/mips/kernel/*bmips*
2278
Rafał Miłecki5564f092015-05-29 07:39:26 +02002279BROADCOM BCM47XX MIPS ARCHITECTURE
2280M: Hauke Mehrtens <hauke@hauke-m.de>
2281M: Rafał Miłecki <zajec5@gmail.com>
2282L: linux-mips@linux-mips.org
2283S: Maintained
2284F: arch/mips/bcm47xx/*
2285F: arch/mips/include/asm/mach-bcm47xx/*
2286
Scott Branden9209bec2014-10-16 21:57:16 -06002287BROADCOM BCM5301X ARM ARCHITECTURE
Hauke Mehrtens5b293eb2014-02-04 00:01:43 +01002288M: Hauke Mehrtens <hauke@hauke-m.de>
2289L: linux-arm-kernel@lists.infradead.org
2290S: Maintained
2291F: arch/arm/mach-bcm/bcm_5301x.c
2292F: arch/arm/boot/dts/bcm5301x.dtsi
2293F: arch/arm/boot/dts/bcm470*
2294
Florian Fainellie076e962014-03-04 18:14:58 -08002295BROADCOM BCM63XX ARM ARCHITECTURE
2296M: Florian Fainelli <f.fainelli@gmail.com>
2297L: linux-arm-kernel@lists.infradead.org
Florian Fainellieb6725d2015-01-29 15:21:56 -08002298T: git git://github.com/broadcom/arm-bcm63xx.git
Florian Fainellie076e962014-03-04 18:14:58 -08002299S: Maintained
2300F: arch/arm/mach-bcm/bcm63xx.c
2301F: arch/arm/include/debug/bcm63xx.S
2302
Kevin Cernekee7110e2272014-10-20 21:28:07 -07002303BROADCOM BCM63XX/BCM33XX UDC DRIVER
2304M: Kevin Cernekee <cernekee@gmail.com>
2305L: linux-usb@vger.kernel.org
2306S: Maintained
2307F: drivers/usb/gadget/udc/bcm63xx_udc.*
2308
Brian Norris2df94fd2014-07-14 18:06:03 -07002309BROADCOM BCM7XXX ARM ARCHITECTURE
Brian Norris2df94fd2014-07-14 18:06:03 -07002310M: Brian Norris <computersforpeace@gmail.com>
Florian Fainelli3b4b6fe2014-11-14 12:53:43 -08002311M: Gregory Fong <gregory.0xf0@gmail.com>
2312M: Florian Fainelli <f.fainelli@gmail.com>
Brian Norris2df94fd2014-07-14 18:06:03 -07002313L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Florian Fainellieb6725d2015-01-29 15:21:56 -08002314T: git git://github.com/broadcom/stblinux.git
Brian Norris2df94fd2014-07-14 18:06:03 -07002315S: Maintained
2316F: arch/arm/mach-bcm/*brcmstb*
2317F: arch/arm/boot/dts/bcm7*.dts*
Florian Fainellie36661e2014-11-14 12:53:44 -08002318F: drivers/bus/brcmstb_gisb.c
Brian Norris5009a282015-03-18 18:09:05 -07002319N: brcmstb
Brian Norris2df94fd2014-07-14 18:06:03 -07002320
Kevin Cernekee70371ce2014-11-15 16:17:45 -08002321BROADCOM BMIPS MIPS ARCHITECTURE
2322M: Kevin Cernekee <cernekee@gmail.com>
2323M: Florian Fainelli <f.fainelli@gmail.com>
2324L: linux-mips@linux-mips.org
Florian Fainellieb6725d2015-01-29 15:21:56 -08002325T: git git://github.com/broadcom/stblinux.git
Kevin Cernekee70371ce2014-11-15 16:17:45 -08002326S: Maintained
2327F: arch/mips/bmips/*
2328F: arch/mips/include/asm/mach-bmips/*
2329F: arch/mips/kernel/*bmips*
Joe Perches338808d2015-06-30 14:59:42 -07002330F: arch/mips/boot/dts/brcm/bcm*.dts*
Kevin Cernekee70371ce2014-11-15 16:17:45 -08002331F: drivers/irqchip/irq-bcm7*
2332F: drivers/irqchip/irq-brcmstb*
2333
Michael Chan948c51e2006-06-04 02:51:39 -07002334BROADCOM TG3 GIGABIT ETHERNET DRIVER
Prashant Sreedharan23629472014-06-27 16:21:50 -07002335M: Prashant Sreedharan <prashant@broadcom.com>
Joe Perches8b58be82009-07-29 15:04:30 -07002336M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07002337L: netdev@vger.kernel.org
2338S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07002339F: drivers/net/ethernet/broadcom/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07002340
Henry Ptasinskia9533e72010-09-08 21:04:42 -07002341BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2342M: Brett Rudley <brudley@broadcom.com>
Henry Ptasinski818c07b2010-12-08 13:09:49 -08002343M: Arend van Spriel <arend@broadcom.com>
Roland Vossen85d63682011-06-01 13:44:56 +02002344M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
Arend van Spriel006a8f12012-11-28 21:44:04 +01002345M: Hante Meuleman <meuleman@broadcom.com>
Henry Ptasinskia9533e72010-09-08 21:04:42 -07002346L: linux-wireless@vger.kernel.org
Arend van Spriel56151712012-06-14 14:16:27 +02002347L: brcm80211-dev-list@broadcom.com
Henry Ptasinskia9533e72010-09-08 21:04:42 -07002348S: Supported
Joe Perchesf62ebdd2011-12-09 00:12:52 -08002349F: drivers/net/wireless/brcm80211/
Henry Ptasinskia9533e72010-09-08 21:04:42 -07002350
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07002351BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
Vikas Chaudhary3b7f0402014-07-03 08:18:29 -04002352M: QLogic-Storage-Upstream@qlogic.com
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07002353L: linux-scsi@vger.kernel.org
2354S: Supported
2355F: drivers/scsi/bnx2fc/
2356
Eddie Wai6a6b5ad02013-07-11 17:15:56 -07002357BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
Vikas Chaudhary3b7f0402014-07-03 08:18:29 -04002358M: QLogic-Storage-Upstream@qlogic.com
Eddie Wai6a6b5ad02013-07-11 17:15:56 -07002359L: linux-scsi@vger.kernel.org
2360S: Supported
2361F: drivers/scsi/bnx2i/
2362
Scott Branden36c02372014-09-12 16:50:56 -07002363BROADCOM CYGNUS/IPROC ARM ARCHITECTURE
2364M: Ray Jui <rjui@broadcom.com>
2365M: Scott Branden <sbranden@broadcom.com>
2366L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2367L: bcm-kernel-feedback-list@broadcom.com
Florian Fainellieb6725d2015-01-29 15:21:56 -08002368T: git git://github.com/broadcom/cygnus-linux.git
Scott Branden36c02372014-09-12 16:50:56 -07002369S: Maintained
2370N: iproc
2371N: cygnus
2372N: bcm9113*
2373N: bcm9583*
2374N: bcm583*
2375N: bcm113*
2376
Gregory Fong3b0213d2015-05-28 19:14:05 -07002377BROADCOM BRCMSTB GPIO DRIVER
2378M: Gregory Fong <gregory.0xf0@gmail.com>
2379L: bcm-kernel-feedback-list@broadcom.com>
2380S: Supported
2381F: drivers/gpio/gpio-brcmstb.c
2382F: Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2383
Markus Mayer7b7f5882014-02-12 15:42:27 -08002384BROADCOM KONA GPIO DRIVER
Markus Mayer5e163902014-07-29 11:10:07 -07002385M: Ray Jui <rjui@broadcom.com>
Markus Mayer7b7f5882014-02-12 15:42:27 -08002386L: bcm-kernel-feedback-list@broadcom.com
2387S: Supported
2388F: drivers/gpio/gpio-bcm-kona.c
Joe Perches1db12cd2015-06-30 14:59:45 -07002389F: Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
Markus Mayer7b7f5882014-02-12 15:42:27 -08002390
Rafał Miłeckif6e734a2015-06-10 23:05:08 +02002391BROADCOM NVRAM DRIVER
2392M: Rafał Miłecki <zajec5@gmail.com>
2393L: linux-mips@linux-mips.org
2394S: Maintained
2395F: drivers/firmware/broadcom/*
2396
Brian Norris02787da2015-05-12 17:16:50 -07002397BROADCOM STB NAND FLASH DRIVER
2398M: Brian Norris <computersforpeace@gmail.com>
2399L: linux-mtd@lists.infradead.org
2400S: Maintained
2401F: drivers/mtd/nand/brcmnand/
2402
Rafał Miłeckic9678d82012-01-13 22:55:05 +01002403BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2404M: Rafał Miłecki <zajec5@gmail.com>
2405L: linux-wireless@vger.kernel.org
2406S: Maintained
2407F: drivers/bcma/
2408F: include/linux/bcma/
2409
Florian Fainellib8302202014-04-24 18:09:00 -07002410BROADCOM SYSTEMPORT ETHERNET DRIVER
2411M: Florian Fainelli <f.fainelli@gmail.com>
2412L: netdev@vger.kernel.org
2413S: Supported
2414F: drivers/net/ethernet/broadcom/bcmsysport.*
2415
Jing Huang7725ccf2009-09-23 17:46:15 -07002416BROCADE BFA FC SCSI DRIVER
Anil Gurumurthyaa803372014-02-26 06:08:42 -05002417M: Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2418M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
Joe Perches455518e2009-11-11 14:26:10 -08002419L: linux-scsi@vger.kernel.org
2420S: Supported
2421F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07002422
Rasesh Mody8b230ed2010-08-23 20:24:12 -07002423BROCADE BNA 10 GIGABIT ETHERNET DRIVER
Rasesh Mody439e9572014-10-01 17:20:41 -04002424M: Rasesh Mody <rasesh.mody@qlogic.com>
Rasesh Mody8b230ed2010-08-23 20:24:12 -07002425L: netdev@vger.kernel.org
2426S: Supported
Jeff Kirsherf844a0e2011-05-13 01:00:03 -07002427F: drivers/net/ethernet/brocade/bna/
Rasesh Mody8b230ed2010-08-23 20:24:12 -07002428
Jens Axboe5cdf7f72007-07-17 08:58:06 +02002429BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07002430M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02002431L: linux-scsi@vger.kernel.org
2432S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002433F: block/bsg.c
2434F: include/linux/bsg.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002435F: include/uapi/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02002436
Clemens Ladischaf399172011-01-10 16:32:54 +01002437BT87X AUDIO DRIVER
2438M: Clemens Ladisch <clemens@ladisch.de>
2439L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2440T: git git://git.alsa-project.org/alsa-kernel.git
2441S: Maintained
2442F: Documentation/sound/alsa/Bt87x.txt
2443F: sound/pci/bt87x.c
2444
Michael Bueschff1d5c22008-07-25 01:46:10 -07002445BT8XXGPIO DRIVER
Michael Büscheb032b92011-07-04 20:50:05 +02002446M: Michael Buesch <m@bues.ch>
Michael Bueschff1d5c22008-07-25 01:46:10 -07002447W: http://bu3sch.de/btgpio.php
2448S: Maintained
Joe Perches72dbb702012-01-10 15:08:46 -08002449F: drivers/gpio/gpio-bt8xx.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07002450
Joe Percheseb1eb042009-01-21 10:49:16 -05002451BTRFS FILE SYSTEM
Chris Masonc0778e22013-12-03 20:16:03 -05002452M: Chris Mason <clm@fb.com>
2453M: Josef Bacik <jbacik@fb.com>
Jiri Slabyd8130622015-07-17 16:23:20 -07002454M: David Sterba <dsterba@suse.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05002455L: linux-btrfs@vger.kernel.org
2456W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08002457Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Liu Bo9c106402012-06-14 02:23:25 -06002458T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
Joe Percheseb1eb042009-01-21 10:49:16 -05002459S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002460F: Documentation/filesystems/btrfs.txt
2461F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05002462
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02002464M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002465L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07002466W: http://linuxtv.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02002467T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehabf96236e2012-11-02 11:14:18 -02002468S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07002469F: Documentation/video4linux/bttv/
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002470F: drivers/media/pci/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471
Khalid Aziz1f349232013-06-25 09:57:27 -06002472BUSLOGIC SCSI DRIVER
2473M: Khalid Aziz <khalid@gonehiking.org>
2474L: linux-scsi@vger.kernel.org
2475S: Maintained
2476F: drivers/scsi/BusLogic.*
2477F: drivers/scsi/FlashPoint.*
2478
Clemens Ladischaf399172011-01-10 16:32:54 +01002479C-MEDIA CMI8788 DRIVER
2480M: Clemens Ladisch <clemens@ladisch.de>
2481L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2482T: git git://git.alsa-project.org/alsa-kernel.git
2483S: Maintained
2484F: sound/pci/oxygen/
2485
Mark Salter21413552011-10-04 11:21:42 -04002486C6X ARCHITECTURE
2487M: Mark Salter <msalter@redhat.com>
2488M: Aurelien Jacquiot <a-jacquiot@ti.com>
2489L: linux-c6x-dev@linux-c6x.org
2490W: http://www.linux-c6x.org/wiki/index.php/Main_Page
2491S: Maintained
2492F: arch/c6x/
2493
David Howellsa5432f52009-04-20 15:46:45 +01002494CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07002495M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01002496L: linux-cachefs@redhat.com
2497S: Supported
2498F: Documentation/filesystems/caching/cachefiles.txt
2499F: fs/cachefiles/
2500
Hans Verkuilc815ca32012-11-23 07:05:54 -03002501CADET FM/AM RADIO RECEIVER DRIVER
2502M: Hans Verkuil <hverkuil@xs4all.nl>
2503L: linux-media@vger.kernel.org
2504T: git git://linuxtv.org/media_tree.git
2505W: http://linuxtv.org
2506S: Maintained
2507F: drivers/media/radio/radio-cadet*
2508
Jonathan Corbet77d51402007-03-22 19:44:17 -03002509CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002510M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002511L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02002512T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03002513S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002514F: Documentation/video4linux/cafe_ccic
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002515F: drivers/media/platform/marvell-ccic/
Jonathan Corbet77d51402007-03-22 19:44:17 -03002516
Joe Perches201b6ba2010-09-07 20:33:24 +00002517CAIF NETWORK LAYER
sjur.brandeland@stericsson.com5c574f52013-04-22 23:57:00 +00002518M: Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
Joe Perches201b6ba2010-09-07 20:33:24 +00002519L: netdev@vger.kernel.org
2520S: Supported
2521F: Documentation/networking/caif/
2522F: drivers/net/caif/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002523F: include/uapi/linux/caif/
Joe Perches201b6ba2010-09-07 20:33:24 +00002524F: include/net/caif/
2525F: net/caif/
2526
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02002527CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07002528M: Muli Ben-Yehuda <muli@il.ibm.com>
2529M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02002530L: discuss@x86-64.org
2531S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002532F: arch/x86/kernel/pci-calgary_64.c
2533F: arch/x86/kernel/tce_64.c
2534F: arch/x86/include/asm/calgary.h
2535F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02002536
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002537CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00002538M: Oliver Hartkopp <socketcan@hartkopp.net>
Marc Kleine-Buddef7214cf2015-03-06 09:00:38 +01002539M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00002540L: linux-can@vger.kernel.org
Marc Kleine-Budde84b0d712015-03-06 08:58:33 +01002541W: https://github.com/linux-can
Marc Kleine-Budde870482a2015-01-15 16:56:26 +01002542T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2543T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002544S: Maintained
John Whitmoref35f6c82013-12-06 12:49:08 +00002545F: Documentation/networking/can.txt
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00002546F: net/can/
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00002547F: include/linux/can/core.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002548F: include/uapi/linux/can.h
2549F: include/uapi/linux/can/bcm.h
2550F: include/uapi/linux/can/raw.h
2551F: include/uapi/linux/can/gw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002552
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00002553CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002554M: Wolfgang Grandegger <wg@grandegger.com>
Oliver Hartkoppec782132012-01-03 08:40:28 +00002555M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00002556L: linux-can@vger.kernel.org
Marc Kleine-Budde84b0d712015-03-06 08:58:33 +01002557W: https://github.com/linux-can
Marc Kleine-Budde870482a2015-01-15 16:56:26 +01002558T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2559T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00002560S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00002561F: drivers/net/can/
2562F: include/linux/can/dev.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00002563F: include/linux/can/platform/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002564F: include/uapi/linux/can/error.h
2565F: include/uapi/linux/can/netlink.h
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00002566
James Morris95d16c72012-03-16 12:05:48 +11002567CAPABILITIES
2568M: Serge Hallyn <serge.hallyn@canonical.com>
2569L: linux-security-module@vger.kernel.org
Joe Perches63059022012-06-07 14:21:10 -07002570S: Supported
James Morris95d16c72012-03-16 12:05:48 +11002571F: include/linux/capability.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002572F: include/uapi/linux/capability.h
Joe Perches63059022012-06-07 14:21:10 -07002573F: security/commoncap.c
James Morris38a94112012-04-09 11:03:36 +10002574F: kernel/capability.c
James Morris95d16c72012-03-16 12:05:48 +11002575
Kevin Tsaib84894c2015-01-15 17:41:04 -08002576CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
2577M: Kevin Tsai <ktsai@capellamicro.com>
2578S: Maintained
2579F: drivers/iio/light/cm*
2580F: Documentation/devicetree/bindings/i2c/trivial-devices.txt
2581
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002582CAVIUM LIQUIDIO NETWORK DRIVER
2583M: Derek Chickles <derek.chickles@caviumnetworks.com>
2584M: Satanand Burla <satananda.burla@caviumnetworks.com>
2585M: Felix Manlunas <felix.manlunas@caviumnetworks.com>
2586M: Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
2587L: netdev@vger.kernel.org
2588W: http://www.cavium.com
2589S: Supported
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002590F: drivers/net/ethernet/cavium/liquidio/
2591
Varka Bhadramef0bbac2014-10-29 16:15:22 +05302592CC2520 IEEE-802.15.4 RADIO DRIVER
2593M: Varka Bhadram <varkabhadram@gmail.com>
2594L: linux-wpan@vger.kernel.org
2595S: Maintained
2596F: drivers/net/ieee802154/cc2520.c
2597F: include/linux/spi/cc2520.h
2598F: Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
2599
Arnd Bergmannb8154542008-05-16 11:10:59 +02002600CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07002601M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002602L: linuxppc-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02002603W: http://www.ibm.com/developerworks/power/cell/
2604S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002605F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07002606F: arch/powerpc/include/asm/spu*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002607F: arch/powerpc/include/uapi/asm/spu*.h
Joe Perches679655d2009-04-07 20:44:32 -07002608F: arch/powerpc/oprofile/*cell*
2609F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02002610
Sage Weil398ecff52015-07-09 11:46:14 -04002611CEPH COMMON CODE (LIBCEPH)
2612M: Ilya Dryomov <idryomov@gmail.com>
Joe Perchese43cdb52015-06-25 15:02:03 -07002613M: "Yan, Zheng" <zyan@redhat.com>
Sage Weil0f5417c2015-02-19 10:10:40 -08002614M: Sage Weil <sage@redhat.com>
Sage Weil82593f82010-03-29 09:53:23 -07002615L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07002616W: http://ceph.com/
Sage Weilfb99f882009-12-03 15:04:08 -08002617T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil6e67b7a2015-07-09 11:47:37 -04002618T: git git://github.com/ceph/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07002619S: Supported
Joe Perches14430812013-09-11 14:23:50 -07002620F: net/ceph/
2621F: include/linux/ceph/
2622F: include/linux/crush/
Sage Weil9030aaf2009-10-06 11:31:15 -07002623
Sage Weil398ecff52015-07-09 11:46:14 -04002624CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
2625M: "Yan, Zheng" <zyan@redhat.com>
2626M: Sage Weil <sage@redhat.com>
2627M: Ilya Dryomov <idryomov@gmail.com>
2628L: ceph-devel@vger.kernel.org
2629W: http://ceph.com/
2630T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil6e67b7a2015-07-09 11:47:37 -04002631T: git git://github.com/ceph/ceph-client.git
Sage Weil398ecff52015-07-09 11:46:14 -04002632S: Supported
2633F: Documentation/filesystems/ceph.txt
2634F: fs/ceph/
2635
David Howellscfc411e2015-08-14 15:20:41 +01002636CERTIFICATE HANDLING:
2637M: David Howells <dhowells@redhat.com>
2638M: David Woodhouse <dwmw2@infradead.org>
2639L: keyrings@linux-nfs.org
2640S: Maintained
2641F: Documentation/module-signing.txt
2642F: certs/
2643F: scripts/extract-cert.c
2644
David Vrabel18332a82008-09-17 16:34:44 +01002645CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01002646L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01002647S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002648F: Documentation/usb/WUSB-Design-overview.txt
2649F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00002650F: drivers/usb/host/hwa-hc.c
2651F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07002652F: drivers/usb/wusbcore/
2653F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01002654
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002655CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002656M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07002657W: http://miguelojeda.es/auxdisplay.htm
2658W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002659S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002660F: drivers/auxdisplay/cfag12864b.c
2661F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002662
2663CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002664M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07002665W: http://miguelojeda.es/auxdisplay.htm
2666W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002667S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002668F: drivers/auxdisplay/cfag12864bfb.c
2669F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002670
Johannes Berg704232c2007-04-23 12:20:05 -07002671CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07002672M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07002673L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02002674W: http://wireless.kernel.org/
2675T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2676T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Johannes Berg704232c2007-04-23 12:20:05 -07002677S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002678F: include/uapi/linux/nl80211.h
Joe Perches679655d2009-04-07 20:44:32 -07002679F: include/net/cfg80211.h
2680F: net/wireless/*
2681X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07002682
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002683CHAR and MISC DRIVERS
2684M: Arnd Bergmann <arnd@arndb.de>
Greg KH879a5a02012-01-31 20:02:00 -08002685M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002686T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Greg KH879a5a02012-01-31 20:02:00 -08002687S: Supported
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002688F: drivers/char/*
2689F: drivers/misc/*
Robert P. J. Day471322a2014-05-16 04:41:09 -04002690F: include/linux/miscdevice.h
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002691
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002692CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07002693M: Andy Whitcroft <apw@canonical.com>
Joe Perches10d83f02013-02-21 16:44:15 -08002694M: Joe Perches <joe@perches.com>
2695S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002696F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002697
Harry Weif8407f22011-02-25 14:44:15 -08002698CHINESE DOCUMENTATION
2699M: Harry Wei <harryxiyou@gmail.com>
Joe Perches97401532012-12-17 16:00:00 -08002700L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
Harry Weif8407f22011-02-25 14:44:15 -08002701L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
2702S: Maintained
2703F: Documentation/zh_CN/
2704
Alexander Shishkin2721ea22012-05-11 17:25:59 +03002705CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
Greg Kroah-Hartmaneee52f92013-12-02 15:43:48 -08002706M: Peter Chen <Peter.Chen@freescale.com>
Peter Chen83738562015-03-23 19:57:36 +08002707T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
Alexander Shishkin2721ea22012-05-11 17:25:59 +03002708L: linux-usb@vger.kernel.org
2709S: Maintained
2710F: drivers/usb/chipidea/
2711
Hans de Goedea93ad652015-03-21 20:40:45 -07002712CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
2713M: Hans de Goede <hdegoede@redhat.com>
2714L: linux-input@vger.kernel.org
2715S: Maintained
2716F: Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
2717F: drivers/input/touchscreen/chipone_icn8318.c
2718
Olof Johanssonab043102013-11-07 14:25:45 -08002719CHROME HARDWARE PLATFORM SUPPORT
2720M: Olof Johansson <olof@lixom.net>
2721S: Maintained
2722F: drivers/platform/chrome/
2723
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00002724CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri2360d2e2011-02-04 16:17:26 +00002725M: Christian Benvenuti <benve@cisco.com>
govindarajulu.v001e1c12013-09-04 11:17:18 +05302726M: Sujith Sankar <ssujith@cisco.com>
Govindarajulu Varadarajanc327e8f2014-05-20 03:14:32 +05302727M: Govindarajulu Varadarajan <_govind@gmx.com>
Neel Patel5c6652f2012-02-03 08:25:25 +00002728M: Neel Patel <neepatel@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08002729S: Supported
Jeff Kirshera6a55802011-05-13 22:20:35 -07002730F: drivers/net/ethernet/cisco/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08002731
Upinder Malhie3cf00d2013-09-10 03:38:16 +00002732CISCO VIC LOW LATENCY NIC DRIVER
Joe Perchesb75f0052014-03-03 15:38:37 -08002733M: Upinder Malhi <umalhi@cisco.com>
2734S: Supported
2735F: drivers/infiniband/hw/usnic
Upinder Malhie3cf00d2013-09-10 03:38:16 +00002736
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002737CIRRUS LOGIC EP93XX ETHERNET DRIVER
H Hartley Sweeten55879122011-06-09 15:00:21 -07002738M: Hartley Sweeten <hsweeten@visionengravers.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002739L: netdev@vger.kernel.org
2740S: Maintained
Jeff Kirsher57d0b7a2011-07-16 23:50:52 -07002741F: drivers/net/ethernet/cirrus/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002742
Mark Brown3d4cfdc2014-02-04 20:28:12 +00002743CIRRUS LOGIC AUDIO CODEC DRIVERS
2744M: Brian Austin <brian.austin@cirrus.com>
2745M: Paul Handrigan <Paul.Handrigan@cirrus.com>
2746L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2747S: Maintained
2748F: sound/soc/codecs/cs*
2749
Konrad Rzeszutek Wilk94574d92012-03-19 11:47:18 -04002750CLEANCACHE API
2751M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2752L: linux-kernel@vger.kernel.org
2753S: Maintained
2754F: mm/cleancache.c
2755F: include/linux/cleancache.h
2756
Russell Kingd4275352009-04-16 14:05:27 +01002757CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07002758M: Russell King <linux@arm.linux.org.uk>
Paul Walmsleyaa571b12015-03-25 18:32:59 +00002759L: linux-clk@vger.kernel.org
Joe Perches37417042012-03-23 15:01:58 -07002760S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01002761F: include/linux/clk.h
2762
John Stultz9222d242013-07-16 16:45:31 +02002763CLOCKSOURCE, CLOCKEVENT DRIVERS
2764M: Daniel Lezcano <daniel.lezcano@linaro.org>
2765M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar981c3a42014-01-21 10:59:20 +01002766L: linux-kernel@vger.kernel.org
John Stultz9222d242013-07-16 16:45:31 +02002767T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
2768S: Supported
2769F: drivers/clocksource
2770
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002771CISCO FCOE HBA DRIVER
Hiral Patel8fc89a72012-12-10 01:21:29 -08002772M: Hiral Patel <hiralpat@cisco.com>
2773M: Suma Ramars <sramars@cisco.com>
Abhijeet Joglekard7e01dc2011-06-13 21:21:17 -07002774M: Brian Uchino <buchino@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002775L: linux-scsi@vger.kernel.org
2776S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07002777F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002778
Narsimhulu Musinic8806b62015-05-29 01:04:01 -07002779CISCO SCSI HBA DRIVER
2780M: Narsimhulu Musini <nmusini@cisco.com>
2781M: Sesidhar Baddela <sebaddel@cisco.com>
2782L: linux-scsi@vger.kernel.org
2783S: Supported
2784F: drivers/scsi/snic/
2785
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002786CMPC ACPI DRIVER
2787M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2788M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd0944852010-02-11 10:40:13 -05002789L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002790S: Supported
2791F: drivers/platform/x86/classmate-laptop.c
2792
Hans Verkuil85756a02015-05-12 08:52:21 -03002793COBALT MEDIA DRIVER
2794M: Hans Verkuil <hans.verkuil@cisco.com>
2795L: linux-media@vger.kernel.org
2796T: git git://linuxtv.org/media_tree.git
2797W: http://linuxtv.org
2798S: Supported
2799F: drivers/media/pci/cobalt/
2800
Nicolas Palix74425ee2010-06-06 17:15:01 +02002801COCCINELLE/Semantic Patches (SmPL)
Nicolas Palix26de9c22012-09-20 22:52:42 +02002802M: Julia Lawall <Julia.Lawall@lip6.fr>
Nicolas Palix74425ee2010-06-06 17:15:01 +02002803M: Gilles Muller <Gilles.Muller@lip6.fr>
Nicolas Palix26de9c22012-09-20 22:52:42 +02002804M: Nicolas Palix <nicolas.palix@imag.fr>
Jiri Slabyd8130622015-07-17 16:23:20 -07002805M: Michal Marek <mmarek@suse.com>
Nicolas Palix26de9c22012-09-20 22:52:42 +02002806L: cocci@systeme.lip6.fr (moderated for non-subscribers)
Nicolas Palixc00b5112013-06-06 23:39:53 +02002807T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
Nicolas Palix74425ee2010-06-06 17:15:01 +02002808W: http://coccinelle.lip6.fr/
2809S: Supported
Nicolas Palix4b92b2a2013-06-20 13:10:55 +02002810F: Documentation/coccinelle.txt
Nicolas Palix74425ee2010-06-06 17:15:01 +02002811F: scripts/coccinelle/
2812F: scripts/coccicheck
2813
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002815M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816M: coda@cs.cmu.edu
2817L: codalist@coda.cs.cmu.edu
2818W: http://www.coda.cs.cmu.edu/
2819S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002820F: Documentation/filesystems/coda.txt
2821F: fs/coda/
2822F: include/linux/coda*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002823F: include/uapi/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824
Philipp Zabel0b142612014-11-04 07:26:35 -03002825CODA V4L2 MEM2MEM DRIVER
2826M: Philipp Zabel <p.zabel@pengutronix.de>
2827L: linux-media@vger.kernel.org
2828S: Maintained
2829F: Documentation/devicetree/bindings/media/coda.txt
2830F: drivers/media/platform/coda/
2831
Mike Turquette7704add2012-05-02 18:37:45 -07002832COMMON CLK FRAMEWORK
Michael Turquettea85fa002015-06-17 13:41:04 -07002833M: Michael Turquette <mturquette@baylibre.com>
Michael Turquettef9561652014-11-12 16:43:47 -08002834M: Stephen Boyd <sboyd@codeaurora.org>
Paul Walmsleyaa571b12015-03-25 18:32:59 +00002835L: linux-clk@vger.kernel.org
Michael Turquettebaeb0d92014-11-13 17:18:20 -08002836T: git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
Mike Turquette7704add2012-05-02 18:37:45 -07002837S: Maintained
Stephen Warren60bea3b2013-06-05 09:50:30 -06002838F: drivers/clk/
2839X: drivers/clk/clkdev.c
Mike Turquette7704add2012-05-02 18:37:45 -07002840F: include/linux/clk-pr*
Stephen Warren60bea3b2013-06-05 09:50:30 -06002841F: include/linux/clk/
Mike Turquette7704add2012-05-02 18:37:45 -07002842
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002843COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07002844M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04002845L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08002846L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002847W: http://linux-cifs.samba.org/
Kevin Cernekeebb1d5dd2014-11-10 13:09:24 -08002848T: git git://git.samba.org/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002849S: Supported
Joe Perchesec421a72014-08-08 14:24:59 -07002850F: Documentation/filesystems/cifs/
Joe Perches679655d2009-04-07 20:44:32 -07002851F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002852
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853COMPACTPCI HOTPLUG CORE
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/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858
2859COMPACTPCI HOTPLUG ZIATECH ZT5550 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_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864
2865COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002866M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002867L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002868S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002869F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002871COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002872M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05002873L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002874S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002875F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002876
Simon Arlott949be0f2007-03-06 02:47:46 -08002877CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002878M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02002879L: accessrunner-general@lists.sourceforge.net
2880W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08002881S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002882F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08002883
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002884CONFIGFS
Joel Beckerd6351db2011-01-07 18:10:32 -08002885M: Joel Becker <jlbec@evilplan.org>
2886T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002887S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002888F: fs/configfs/
2889F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002890
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002891CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07002892M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002893L: netdev@vger.kernel.org
2894S: Maintained
2895F: drivers/connector/
2896
Tejun Heoa3e33542014-05-13 15:49:58 -04002897CONTROL GROUP (CGROUP)
Paul Menage860ca0e2011-11-18 14:22:09 -08002898M: Tejun Heo <tj@kernel.org>
Li Zefanad50c152012-03-29 08:53:30 -07002899M: Li Zefan <lizefan@huawei.com>
Tejun Heo4d205672015-06-12 17:15:23 -05002900M: Johannes Weiner <hannes@cmpxchg.org>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08002901L: cgroups@vger.kernel.org
Paul Menage860ca0e2011-11-18 14:22:09 -08002902T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002903S: Maintained
Tejun Heoa3e33542014-05-13 15:49:58 -04002904F: Documentation/cgroups/
Joe Perches679655d2009-04-07 20:44:32 -07002905F: include/linux/cgroup*
2906F: kernel/cgroup*
Tejun Heoa3e33542014-05-13 15:49:58 -04002907
2908CONTROL GROUP - CPUSET
2909M: Li Zefan <lizefan@huawei.com>
2910L: cgroups@vger.kernel.org
2911W: http://www.bullopensource.org/cpuset/
2912W: http://oss.sgi.com/projects/cpusets/
2913T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2914S: Maintained
2915F: Documentation/cgroups/cpusets.txt
2916F: include/linux/cpuset.h
2917F: kernel/cpuset.c
2918
2919CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
2920M: Johannes Weiner <hannes@cmpxchg.org>
Michal Hockofbd7dc72015-07-17 16:23:26 -07002921M: Michal Hocko <mhocko@kernel.org>
Tejun Heoa3e33542014-05-13 15:49:58 -04002922L: cgroups@vger.kernel.org
2923L: linux-mm@kvack.org
2924S: Maintained
2925F: mm/memcontrol.c
Johannes Weiner5d1ea482014-12-10 15:44:55 -08002926F: mm/swap_cgroup.c
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002927
Rudolf Marekbebe4672007-05-08 17:22:02 +02002928CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02002929M: Fenghua Yu <fenghua.yu@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02002930L: lm-sensors@lm-sensors.org
2931S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002932F: Documentation/hwmon/coretemp
2933F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02002934
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002936M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937W: http://www.fi.muni.cz/~kas/cosa/
2938S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002939F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940
Florian Fainelli4371ee32009-06-01 02:43:17 -07002941CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002942M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07002943L: netdev@vger.kernel.org
2944S: Maintained
Jeff Kirsherb544dba2011-06-14 12:56:50 -07002945F: drivers/net/ethernet/ti/cpmac.c
Florian Fainelli4371ee32009-06-01 02:43:17 -07002946
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947CPU FREQUENCY DRIVERS
Joe Perches9c3646d2015-06-25 15:02:00 -07002948M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
viresh kumar45c009a2013-04-26 12:53:16 +00002949M: Viresh Kumar <viresh.kumar@linaro.org>
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002950L: linux-pm@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951S: Maintained
Viresh Kumar27209d92013-05-29 12:23:14 +05302952T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2953T: git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
Joe Perches679655d2009-04-07 20:44:32 -07002954F: drivers/cpufreq/
2955F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956
Viresh Kumar8a67f0e2013-04-01 12:57:49 +00002957CPU FREQUENCY DRIVERS - ARM BIG LITTLE
2958M: Viresh Kumar <viresh.kumar@linaro.org>
Sudeep Holla171d0ba2014-02-11 11:42:32 +00002959M: Sudeep Holla <sudeep.holla@arm.com>
Viresh Kumar8a67f0e2013-04-01 12:57:49 +00002960L: linux-pm@vger.kernel.org
2961W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php
2962S: Maintained
2963F: drivers/cpufreq/arm_big_little.h
2964F: drivers/cpufreq/arm_big_little.c
2965F: drivers/cpufreq/arm_big_little_dt.c
2966
Lorenzo Pieralisi14d2c342013-06-12 17:40:01 +02002967CPUIDLE DRIVER - ARM BIG LITTLE
Joe Perchesb75f0052014-03-03 15:38:37 -08002968M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2969M: Daniel Lezcano <daniel.lezcano@linaro.org>
2970L: linux-pm@vger.kernel.org
2971L: linux-arm-kernel@lists.infradead.org
Joe Perchescea83212014-03-03 15:38:38 -08002972T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
Joe Perchesb75f0052014-03-03 15:38:37 -08002973S: Maintained
2974F: drivers/cpuidle/cpuidle-big_little.c
Lorenzo Pieralisi14d2c342013-06-12 17:40:01 +02002975
Bartlomiej Zolnierkiewicz0c570c12014-12-02 16:41:35 +01002976CPUIDLE DRIVER - ARM EXYNOS
2977M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
2978M: Daniel Lezcano <daniel.lezcano@linaro.org>
2979M: Kukjin Kim <kgene@kernel.org>
2980L: linux-pm@vger.kernel.org
2981L: linux-samsung-soc@vger.kernel.org
2982S: Supported
2983F: drivers/cpuidle/cpuidle-exynos.c
2984F: arch/arm/mach-exynos/pm.c
2985
Daniel Lezcanoa8e39c32013-04-26 11:05:44 +00002986CPUIDLE DRIVERS
Joe Perches9c3646d2015-06-25 15:02:00 -07002987M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Daniel Lezcanoa8e39c32013-04-26 11:05:44 +00002988M: Daniel Lezcano <daniel.lezcano@linaro.org>
2989L: linux-pm@vger.kernel.org
2990S: Maintained
Joe Perchescea83212014-03-03 15:38:38 -08002991T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
Daniel Lezcanoa8e39c32013-04-26 11:05:44 +00002992F: drivers/cpuidle/*
2993F: include/linux/cpuidle.h
2994
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002996M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002998F: arch/x86/kernel/cpuid.c
2999F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02003001CPU POWER MONITORING SUBSYSTEM
Jiri Slabyd8130622015-07-17 16:23:20 -07003002M: Thomas Renninger <trenn@suse.com>
Thomas Renninger103f1792014-07-22 16:06:01 +02003003L: linux-pm@vger.kernel.org
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02003004S: Maintained
Joe Perches14430812013-09-11 14:23:50 -07003005F: tools/power/cpupower/
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02003006
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01003008W: http://sourceforge.net/projects/cramfs/
Michael Opdenacker54886a72013-11-12 15:08:35 -08003009S: Orphan / Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07003010F: Documentation/filesystems/cramfs.txt
3011F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012
3013CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003014M: Mikael Starvik <starvik@axis.com>
3015M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02003016L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017W: http://developer.axis.com
3018S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003019F: arch/cris/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003020F: drivers/tty/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021
3022CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07003023M: Herbert Xu <herbert@gondor.apana.org.au>
3024M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003026T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003028F: Documentation/crypto/
Stephan Mueller2ca87a12015-03-06 21:36:21 +01003029F: Documentation/DocBook/crypto-API.tmpl
Joe Perches679655d2009-04-07 20:44:32 -07003030F: arch/*/crypto/
3031F: crypto/
3032F: drivers/crypto/
3033F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034
Neil Horman5b07bd52009-02-05 16:03:04 +11003035CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003036M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11003037L: linux-crypto@vger.kernel.org
3038S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07003039F: crypto/ansi_cprng.c
3040F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11003041
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01003042CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07003043M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01003044S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003045F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01003046
Solomon Peachya910e4a2013-05-24 20:04:38 -04003047CW1200 WLAN driver
Joe Perchesb75f0052014-03-03 15:38:37 -08003048M: Solomon Peachy <pizza@shaftnet.org>
3049S: Maintained
3050F: drivers/net/wireless/cw1200/
Solomon Peachya910e4a2013-05-24 20:04:38 -04003051
Hans Verkuil6d8425b2008-05-05 18:25:22 -03003052CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03003053M: Andy Walls <awalls@md.metrocast.net>
Joe Perches7b212ed2014-12-10 15:51:24 -08003054L: ivtv-devel@ivtvdriver.org (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003055L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003056T: git git://linuxtv.org/media_tree.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03003057W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07003058W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b2008-05-05 18:25:22 -03003059S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003060F: Documentation/video4linux/cx18.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03003061F: drivers/media/pci/cx18/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02003062F: include/uapi/linux/ivtv*
Hans Verkuil6d8425b2008-05-05 18:25:22 -03003063
Hans Verkuil3f101d92012-11-23 07:00:02 -03003064CX2341X MPEG ENCODER HELPER MODULE
3065M: Hans Verkuil <hverkuil@xs4all.nl>
3066L: linux-media@vger.kernel.org
3067T: git git://linuxtv.org/media_tree.git
3068W: http://linuxtv.org
3069S: Maintained
Cesar Eduardo Barrosc368360b2013-03-02 21:53:42 -03003070F: drivers/media/common/cx2341x*
Hans Verkuil3f101d92012-11-23 07:00:02 -03003071F: include/media/cx2341x*
3072
Patrick Boettcherb8fe6e22015-04-28 02:53:13 -03003073CX24120 MEDIA DRIVER
3074M: Jemma Denson <jdenson@gmail.com>
3075M: Patrick Boettcher <patrick.boettcher@posteo.de>
3076L: linux-media@vger.kernel.org
3077W: http://linuxtv.org/
3078Q: http://patchwork.linuxtv.org/project/linux-media/list/
3079S: Maintained
3080F: drivers/media/dvb-frontends/cx24120*
3081
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02003082CX88 VIDEO4LINUX DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02003083M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02003084L: linux-media@vger.kernel.org
3085W: http://linuxtv.org
3086T: git git://linuxtv.org/media_tree.git
3087S: Odd fixes
3088F: Documentation/video4linux/cx88/
3089F: drivers/media/pci/cx88/
Knut Petersen9fa68ea2005-09-09 13:04:56 -07003090
Antti Palosaari91952bc2012-10-01 12:28:46 -03003091CXD2820R MEDIA DRIVER
3092M: Antti Palosaari <crope@iki.fi>
3093L: linux-media@vger.kernel.org
3094W: http://linuxtv.org/
3095W: http://palosaari.fi/linux/
3096Q: http://patchwork.linuxtv.org/project/linux-media/list/
3097T: git git://linuxtv.org/anttip/media_tree.git
3098S: Maintained
3099F: drivers/media/dvb-frontends/cxd2820r*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07003100
Steve Wisee5ec3782008-05-20 14:06:33 -07003101CXGB3 ETHERNET DRIVER (CXGB3)
Divy Le Raycdc99232013-11-11 15:01:39 -08003102M: Santosh Raspatur <santosh@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07003103L: netdev@vger.kernel.org
3104W: http://www.chelsio.com
3105S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07003106F: drivers/net/ethernet/chelsio/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07003107
Anish Bhattd8ae3c32014-11-04 15:19:22 -08003108CXGB3 ISCSI DRIVER (CXGB3I)
Joe Perches49e7d9d2015-04-15 16:17:31 -07003109M: Karen Xie <kxie@chelsio.com>
3110L: linux-scsi@vger.kernel.org
3111W: http://www.chelsio.com
3112S: Supported
3113F: drivers/scsi/cxgbi/cxgb3i
Anish Bhattd8ae3c32014-11-04 15:19:22 -08003114
Steve Wisee5ec3782008-05-20 14:06:33 -07003115CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07003116M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003117L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07003118W: http://www.openfabrics.org
3119S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003120F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07003121
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003122CXGB4 ETHERNET DRIVER (CXGB4)
Dimitris Michailidis56f16c72014-06-13 14:11:14 -07003123M: Hariprasad S <hariprasad@chelsio.com>
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003124L: netdev@vger.kernel.org
3125W: http://www.chelsio.com
3126S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07003127F: drivers/net/ethernet/chelsio/cxgb4/
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003128
Anish Bhattd8ae3c32014-11-04 15:19:22 -08003129CXGB4 ISCSI DRIVER (CXGB4I)
Joe Perches49e7d9d2015-04-15 16:17:31 -07003130M: Karen Xie <kxie@chelsio.com>
3131L: linux-scsi@vger.kernel.org
3132W: http://www.chelsio.com
3133S: Supported
3134F: drivers/scsi/cxgbi/cxgb4i
Anish Bhattd8ae3c32014-11-04 15:19:22 -08003135
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003136CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3137M: Steve Wise <swise@chelsio.com>
3138L: linux-rdma@vger.kernel.org
3139W: http://www.openfabrics.org
3140S: Supported
3141F: drivers/infiniband/hw/cxgb4/
3142
Casey Leedom5c20a5c2010-07-19 17:55:33 -07003143CXGB4VF ETHERNET DRIVER (CXGB4VF)
3144M: Casey Leedom <leedom@chelsio.com>
3145L: netdev@vger.kernel.org
3146W: http://www.chelsio.com
3147S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07003148F: drivers/net/ethernet/chelsio/cxgb4vf/
Casey Leedom5c20a5c2010-07-19 17:55:33 -07003149
Ian Munsiea9282d02014-10-08 19:55:05 +11003150CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3151M: Ian Munsie <imunsie@au1.ibm.com>
3152M: Michael Neuling <mikey@neuling.org>
3153L: linuxppc-dev@lists.ozlabs.org
3154S: Supported
3155F: drivers/misc/cxl/
Michael Neulingec249dd2015-05-27 16:07:16 +10003156F: include/misc/cxl*
Ian Munsiea9282d02014-10-08 19:55:05 +11003157F: include/uapi/misc/cxl.h
3158F: Documentation/powerpc/cxl.txt
3159F: Documentation/powerpc/cxl.txt
3160F: Documentation/ABI/testing/sysfs-class-cxl
3161
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08003162STMMAC ETHERNET DRIVER
3163M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
3164L: netdev@vger.kernel.org
3165W: http://www.stlinux.com
3166S: Supported
Jeff Kirsher7ac66532011-05-16 00:05:19 -07003167F: drivers/net/ethernet/stmicro/stmmac/
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08003168
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003170M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07003171L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172W: http://www.arm.linux.org.uk/
3173S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09003174F: drivers/video/fbdev/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07003175
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08003178S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07003179F: drivers/tty/cyclades.c
Joe Perches679655d2009-04-07 20:44:32 -07003180F: include/linux/cyclades.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003181F: include/uapi/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182
3183CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08003185S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003186F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187
Antti Palosaari402f6ae2013-04-09 21:30:41 -03003188CYPRESS_FIRMWARE MEDIA DRIVER
3189M: Antti Palosaari <crope@iki.fi>
3190L: linux-media@vger.kernel.org
3191W: http://linuxtv.org/
3192W: http://palosaari.fi/linux/
3193Q: http://patchwork.linuxtv.org/project/linux-media/list/
3194T: git git://linuxtv.org/anttip/media_tree.git
3195S: Maintained
3196F: drivers/media/common/cypress_firmware*
3197
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08003198CYTTSP TOUCHSCREEN DRIVER
Javier Martinez Canillasbe9a6f42013-08-29 08:43:58 -07003199M: Ferruh Yigit <fery@cypress.com>
Joe Perches63059022012-06-07 14:21:10 -07003200L: linux-input@vger.kernel.org
Javier Martinez Canillasbe9a6f42013-08-29 08:43:58 -07003201S: Supported
Joe Perches63059022012-06-07 14:21:10 -07003202F: drivers/input/touchscreen/cyttsp*
3203F: include/linux/input/cyttsp.h
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08003204
Joshua Kinardaaaf5fb2015-02-16 16:00:26 -08003205DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3206M: Joshua Kinard <kumba@gentoo.org>
3207S: Maintained
3208F: drivers/rtc/rtc-ds1685.c
3209F: include/linux/rtc/ds1685.h
3210
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07003212M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213W: http://yaina.de/jreuter/
3214W: http://www.qsl.net/dl1bke/
3215L: linux-hams@vger.kernel.org
3216S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003217F: net/ax25/af_ax25.c
3218F: net/ax25/ax25_dev.c
3219F: net/ax25/ax25_ds_*
3220F: net/ax25/ax25_in.c
3221F: net/ax25/ax25_out.c
3222F: net/ax25/ax25_timer.c
3223F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003224
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003225DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003226L: netdev@vger.kernel.org
Joe Perches5ff77422011-05-24 17:13:22 -07003227S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003228F: Documentation/networking/dmfe.txt
Joe Perches0f04e2a2012-01-10 15:08:56 -08003229F: drivers/net/ethernet/dec/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003230
3231DC390/AM53C974 SCSI driver
Jiri Slabyd8130622015-07-17 16:23:20 -07003232M: Hannes Reinecke <hare@suse.com>
Hannes Reinecke71bd8492014-11-24 15:37:30 +01003233L: linux-scsi@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003234S: Maintained
Hannes Reinecke71bd8492014-11-24 15:37:30 +01003235F: drivers/scsi/am53c974.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003236
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237DC395x SCSI driver
Oliver Neukum61eee9a2012-08-01 14:32:55 +02003238M: Oliver Neukum <oliver@neukum.org>
Joe Perches8b58be82009-07-29 15:04:30 -07003239M: Ali Akcaagac <aliakc@web.de>
3240M: Jamie Lenehan <lenehan@twibble.org>
Randy Dunlapf5df58812006-07-14 00:24:29 -07003241L: dc395x@twibble.org
Joe Perchescf015e92014-02-25 15:01:47 -08003242W: http://twibble.org/dist/dc395x/
3243W: http://lists.twibble.org/mailman/listinfo/dc395x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003245F: Documentation/scsi/dc395x.txt
3246F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07003248DCCP PROTOCOL
Arnaldo Carvalho de Meloa89d0302011-02-26 16:28:54 +00003249M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07003250L: dccp@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00003251W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07003252S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003253F: include/linux/dccp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003254F: include/uapi/linux/dccp.h
Joe Perches679655d2009-04-07 20:44:32 -07003255F: include/linux/tfrc.h
3256F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07003257
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259W: http://linux-decnet.sourceforge.net
3260L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00003261S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003262F: Documentation/networking/decnet.txt
3263F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264
Maciej W. Rozyckiebff05b2014-04-06 23:04:00 +01003265DECSTATION PLATFORM SUPPORT
3266M: "Maciej W. Rozycki" <macro@linux-mips.org>
3267L: linux-mips@linux-mips.org
3268W: http://www.linux-mips.org/wiki/DECstation
3269S: Maintained
3270F: arch/mips/dec/
3271F: arch/mips/include/asm/dec/
3272F: arch/mips/include/asm/mach-dec/
3273
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003275M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276S: Maintained
Jeff Kirsher33f810b2011-07-31 00:06:29 -07003277F: drivers/net/fddi/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278
Matthew Garrettad8f07c2009-01-07 18:08:56 -08003279DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003280M: Matthew Garrett <mjg59@srcf.ucam.org>
Pali Rohárcdbff612015-03-29 15:38:50 +02003281M: Pali Rohár <pali.rohar@gmail.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05003282L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08003283S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003284F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08003285
Pali Rohár817a5cd2015-06-06 10:23:28 +02003286DELL LAPTOP RBTN DRIVER
3287M: Pali Rohár <pali.rohar@gmail.com>
3288S: Maintained
3289F: drivers/platform/x86/dell-rbtn.*
3290
Pali Rohárcdbff612015-03-29 15:38:50 +02003291DELL LAPTOP FREEFALL DRIVER
3292M: Pali Rohár <pali.rohar@gmail.com>
3293S: Maintained
3294F: drivers/platform/x86/dell-smo8800.c
3295
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296DELL LAPTOP SMM DRIVER
Pali Rohára5afba12015-05-14 13:16:36 +02003297M: Pali Rohár <pali.rohar@gmail.com>
Guenter Roeckef3522f2014-12-21 20:54:37 +01003298S: Maintained
Pali Rohára5afba12015-05-14 13:16:36 +02003299F: drivers/hwmon/dell-smm-hwmon.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003300F: include/uapi/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301
Doug Warzecha90563ec2005-09-06 15:17:15 -07003302DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07003303M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07003304S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003305F: Documentation/dcdbas.txt
3306F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07003307
Matthew Garrett0b3f6102009-01-09 20:17:11 +00003308DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003309M: Matthew Garrett <mjg59@srcf.ucam.org>
Pali Rohárcdbff612015-03-29 15:38:50 +02003310M: Pali Rohár <pali.rohar@gmail.com>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00003311S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07003312F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00003313
Paul Zimmerman5efc75e2013-03-11 17:48:03 -07003314DESIGNWARE USB2 DRD IP DRIVER
Paul Zimmerman16272ae2015-01-15 20:14:10 +00003315M: John Youn <johnyoun@synopsys.com>
Paul Zimmerman5efc75e2013-03-11 17:48:03 -07003316L: linux-usb@vger.kernel.org
Paul Zimmerman18f340f2014-09-19 14:49:36 -07003317T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Paul Zimmerman5efc75e2013-03-11 17:48:03 -07003318S: Maintained
Paul Zimmerman197ba5f2014-01-13 13:50:09 -08003319F: drivers/usb/dwc2/
Paul Zimmerman5efc75e2013-03-11 17:48:03 -07003320
Felipe Balbi94ab23d2011-08-19 18:10:59 +03003321DESIGNWARE USB3 DRD IP DRIVER
3322M: Felipe Balbi <balbi@ti.com>
3323L: linux-usb@vger.kernel.org
3324L: linux-omap@vger.kernel.org
3325T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3326S: Maintained
3327F: drivers/usb/dwc3/
3328
Johannes Berg833c9542014-09-12 09:01:56 +02003329DEVICE COREDUMP (DEV_COREDUMP)
3330M: Johannes Berg <johannes@sipsolutions.net>
3331L: linux-kernel@vger.kernel.org
3332S: Maintained
3333F: drivers/base/devcoredump.c
3334F: include/linux/devcoredump.h
3335
Kyungmin Park89d07762012-01-10 15:09:09 -08003336DEVICE FREQUENCY (DEVFREQ)
3337M: MyungJoo Ham <myungjoo.ham@samsung.com>
3338M: Kyungmin Park <kyungmin.park@samsung.com>
MyungJoo Ham88476d32013-03-14 17:28:24 +09003339L: linux-pm@vger.kernel.org
Kyungmin Park89d07762012-01-10 15:09:09 -08003340S: Maintained
3341F: drivers/devfreq/
3342
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07003344M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346S: Maintained
3347
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003348DEVICE-MAPPER (LVM)
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01003349M: Alasdair Kergon <agk@redhat.com>
Alasdair G Kergon8504eed2013-07-10 23:41:19 +01003350M: Mike Snitzer <snitzer@redhat.com>
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01003351M: dm-devel@redhat.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003352L: dm-devel@redhat.com
3353W: http://sources.redhat.com/dm
Joe Perches8a6e2532010-03-05 13:43:11 -08003354Q: http://patchwork.kernel.org/project/dm-devel/list/
Mike Snitzer41d35d22013-11-04 19:42:38 -05003355T: git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01003356T: quilt http://people.redhat.com/agk/patches/linux/editing/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003357S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003358F: Documentation/device-mapper/
3359F: drivers/md/dm*
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01003360F: drivers/md/persistent-data/
Joe Perches679655d2009-04-07 20:44:32 -07003361F: include/linux/device-mapper.h
3362F: include/linux/dm-*.h
Alasdair G Kergon8504eed2013-07-10 23:41:19 +01003363F: include/uapi/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003364
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003365DIALOG SEMICONDUCTOR DRIVERS
3366M: Support Opensource <support.opensource@diasemi.com>
3367W: http://www.dialog-semiconductor.com/products
3368S: Supported
3369F: Documentation/hwmon/da90??
3370F: drivers/gpio/gpio-da90??.c
3371F: drivers/hwmon/da90??-hwmon.c
Adam Thomson7be72c22015-02-18 14:08:37 +00003372F: drivers/iio/adc/da91??-*.c
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003373F: drivers/input/misc/da90??_onkey.c
3374F: drivers/input/touchscreen/da9052_tsi.c
3375F: drivers/leds/leds-da90??.c
3376F: drivers/mfd/da903x.c
3377F: drivers/mfd/da90??-*.c
Adam Thomson7be72c22015-02-18 14:08:37 +00003378F: drivers/mfd/da91??-*.c
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003379F: drivers/power/da9052-battery.c
Adam Thomson7be72c22015-02-18 14:08:37 +00003380F: drivers/power/da91??-*.c
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003381F: drivers/regulator/da903x.c
3382F: drivers/regulator/da9???-regulator.[ch]
3383F: drivers/rtc/rtc-da90??.c
3384F: drivers/video/backlight/da90??_bl.c
3385F: drivers/watchdog/da90??_wdt.c
3386F: include/linux/mfd/da903x.h
3387F: include/linux/mfd/da9052/
3388F: include/linux/mfd/da9055/
3389F: include/linux/mfd/da9063/
Adam Thomson7be72c22015-02-18 14:08:37 +00003390F: include/linux/mfd/da9150/
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003391F: include/sound/da[79]*.h
3392F: sound/soc/codecs/da[79]*.[ch]
3393
Lidza Louina599aa692013-09-23 16:13:15 -04003394DIGI NEO AND CLASSIC PCI PRODUCTS
3395M: Lidza Louina <lidza.louina@gmail.com>
Mark Hounschell542f3d52014-04-25 14:32:15 -04003396M: Mark Hounschell <markh@compro.net>
Lidza Louina599aa692013-09-23 16:13:15 -04003397L: driverdev-devel@linuxdriverproject.org
3398S: Maintained
3399F: drivers/staging/dgnc/
3400
3401DIGI EPCA PCI PRODUCTS
3402M: Lidza Louina <lidza.louina@gmail.com>
Daeseok Youn6d825f72014-07-12 01:25:42 +09003403M: Daeseok Youn <daeseok.youn@gmail.com>
Lidza Louina599aa692013-09-23 16:13:15 -04003404L: driverdev-devel@linuxdriverproject.org
3405S: Maintained
3406F: drivers/staging/dgap/
3407
Guenter Roeck335d7c52011-01-26 11:45:49 -08003408DIOLAN U2C-12 I2C DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07003409M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck335d7c52011-01-26 11:45:49 -08003410L: linux-i2c@vger.kernel.org
3411S: Maintained
3412F: drivers/i2c/busses/i2c-diolan-u2c.c
3413
Matthew Wilcoxd475c632015-02-16 15:58:56 -08003414DIRECT ACCESS (DAX)
3415M: Matthew Wilcox <willy@linux.intel.com>
3416L: linux-fsdevel@vger.kernel.org
3417S: Supported
3418F: fs/dax.c
3419
Randy Dunlape7839f22008-10-12 16:11:45 -07003420DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07003421M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04003422S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003423F: Documentation/filesystems/dnotify.txt
3424F: fs/notify/dnotify/
3425F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426
3427DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07003428M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003429W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
3430W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
3431W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
3432S: Maintained
3433
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003434DISKQUOTA
Jiri Slabyd8130622015-07-17 16:23:20 -07003435M: Jan Kara <jack@suse.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003437F: Documentation/filesystems/quota.txt
3438F: fs/quota/
3439F: include/linux/quota*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003440F: include/uapi/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441
Bernie Thompson702686a2012-03-01 13:52:13 -08003442DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
3443M: Bernie Thompson <bernie@plugable.com>
3444L: linux-fbdev@vger.kernel.org
3445S: Maintained
3446W: http://plugable.com/category/projects/udlfb/
Jingoo Han8a61f012014-07-01 15:36:01 +09003447F: drivers/video/fbdev/udlfb.c
Bernie Thompson702686a2012-03-01 13:52:13 -08003448F: include/video/udlfb.h
3449F: Documentation/fb/udlfb.txt
3450
Randy Dunlape7839f22008-10-12 16:11:45 -07003451DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07003452M: Christine Caulfield <ccaulfie@redhat.com>
3453M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04003454L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003455W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07003456T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003457S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003458F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003459
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05303460DMA BUFFER SHARING FRAMEWORK
3461M: Sumit Semwal <sumit.semwal@linaro.org>
3462S: Maintained
3463L: linux-media@vger.kernel.org
3464L: dri-devel@lists.freedesktop.org
Randy Dunlap8ada6d22014-10-13 15:51:19 -07003465L: linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
Maarten Lankhorst35fac7e2014-07-01 12:57:08 +02003466F: drivers/dma-buf/
Joe Perchese46d12c2014-08-08 14:26:16 -07003467F: include/linux/dma-buf*
3468F: include/linux/reservation.h
3469F: include/linux/*fence.h
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05303470F: Documentation/dma-buf-sharing.txt
3471T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
3472
Dan Williamsb3e5f262007-08-07 10:26:35 -07003473DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Dan Williams4abed0a2011-02-14 00:42:08 -08003474M: Vinod Koul <vinod.koul@intel.com>
Vinod Koul17b59562013-10-22 12:58:56 +05303475L: dmaengine@vger.kernel.org
3476Q: https://patchwork.kernel.org/project/linux-dmaengine/list/
Dan Williams08223d82014-08-19 06:07:56 -07003477S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003478F: drivers/dma/
Vinod Koul0ce3c062014-12-22 20:57:13 +05303479F: include/linux/dmaengine.h
Vinod Koul979a281e2014-11-06 11:21:17 +05303480F: Documentation/dmaengine/
3481T: git git://git.infradead.org/users/vkoul/slave-dma.git
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003482
Juerg Haefligerb8250372007-06-09 10:11:16 -04003483DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003484M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04003485L: lm-sensors@lm-sensors.org
3486S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003487F: Documentation/hwmon/dme1737
3488F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04003489
Jean Delvare1f31e1b2015-03-25 15:55:31 -07003490DMI/SMBIOS SUPPORT
Jiri Slabyd8130622015-07-17 16:23:20 -07003491M: Jean Delvare <jdelvare@suse.com>
Jean Delvare1f31e1b2015-03-25 15:55:31 -07003492S: Maintained
Jean Delvared4aeef92015-06-25 09:06:56 +02003493T: quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
Ivan Khoronzhukd7f96f972015-06-25 09:06:56 +02003494F: Documentation/ABI/testing/sysfs-firmware-dmi-tables
Jean Delvare1f31e1b2015-03-25 15:55:31 -07003495F: drivers/firmware/dmi-id.c
3496F: drivers/firmware/dmi_scan.c
3497F: include/linux/dmi.h
3498
Joe Perches7d2c86b2009-04-07 20:59:01 -07003499DOCUMENTATION
Jonathan Corbetad3118b2014-10-17 08:59:26 -04003500M: Jonathan Corbet <corbet@lwn.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02003501L: linux-doc@vger.kernel.org
3502S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003503F: Documentation/
Randy Dunlap97be0782014-06-27 18:28:56 -07003504X: Documentation/ABI/
3505X: Documentation/devicetree/
Jonathan Corbet933a46b2015-03-26 10:25:17 -06003506X: Documentation/acpi
3507X: Documentation/power
3508X: Documentation/spi
Jonathan Corbet6c121172015-07-24 15:08:14 +02003509X: Documentation/DocBook/media
Jonathan Corbete71e2c62014-12-29 16:17:36 -07003510T: git git://git.lwn.net/linux-2.6.git docs-next
Randy Dunlapabbaeff2008-07-04 09:59:57 -07003511
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003513M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003514L: blinux-list@redhat.com
3515S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003516F: drivers/char/dtlk.c
3517F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003519DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003520M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003521L: linux-scsi@vger.kernel.org
3522W: http://www.adaptec.com/
3523S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003524F: drivers/scsi/dpt*
3525F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003526
Philipp Reisnerb411b362009-09-25 16:07:19 -07003527DRBD DRIVER
Joe Perches28b8e8d2010-03-23 13:35:20 -07003528P: Philipp Reisner
3529P: Lars Ellenberg
3530M: drbd-dev@lists.linbit.com
3531L: drbd-user@lists.linbit.com
3532W: http://www.drbd.org
3533T: git git://git.drbd.org/linux-2.6-drbd.git drbd
3534T: git git://git.drbd.org/drbd-8.3.git
3535S: Supported
3536F: drivers/block/drbd/
3537F: lib/lru_cache.c
3538F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07003539
Wolfram Sangdc7dfcd2015-04-23 17:20:54 +02003540DRIVER CORE, KOBJECTS, DEBUGFS, KERNFS AND SYSFS
Greg KH879a5a02012-01-31 20:02:00 -08003541M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perches08deed12012-03-23 15:01:57 -07003542T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003543S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003544F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07003545F: drivers/base/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07003546F: fs/debugfs/
Wolfram Sangdc7dfcd2015-04-23 17:20:54 +02003547F: fs/kernfs/
3548F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07003549F: include/linux/debugfs.h
Wolfram Sangdc7dfcd2015-04-23 17:20:54 +02003550F: include/linux/kobj*
Joe Perches679655d2009-04-07 20:44:32 -07003551F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552
3553DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003554M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04003555L: dri-devel@lists.freedesktop.org
Alex Deucherb0447882014-02-18 10:03:44 -05003556T: git git://people.freedesktop.org/~airlied/linux
Linus Torvalds1da177e2005-04-16 15:20:36 -07003557S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003558F: drivers/gpu/drm/
Daniel Vetter433e3b32014-05-26 23:44:42 +02003559F: drivers/gpu/vga/
Joe Perches850e9412010-08-09 17:20:45 -07003560F: include/drm/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003561F: include/uapi/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003562
Alex Deucher566f5932014-02-18 10:03:43 -05003563RADEON DRM DRIVERS
3564M: Alex Deucher <alexander.deucher@amd.com>
3565M: Christian König <christian.koenig@amd.com>
3566L: dri-devel@lists.freedesktop.org
3567T: git git://people.freedesktop.org/~agd5f/linux
3568S: Supported
3569F: drivers/gpu/drm/radeon/
Alex Deucher566f5932014-02-18 10:03:43 -05003570F: include/uapi/drm/radeon*
3571
Thierry Reding03e255b2014-04-04 08:59:18 +02003572DRM PANEL DRIVERS
3573M: Thierry Reding <thierry.reding@gmail.com>
3574L: dri-devel@lists.freedesktop.org
3575T: git git://anongit.freedesktop.org/tegra/linux.git
3576S: Maintained
3577F: drivers/gpu/drm/drm_panel.c
3578F: drivers/gpu/drm/panel/
3579F: include/drm/drm_panel.h
3580F: Documentation/devicetree/bindings/panel/
3581
Chris Wilson8daf7472010-09-28 14:07:26 +01003582INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
Daniel Vettercbce7102014-08-28 12:17:42 +02003583M: Daniel Vetter <daniel.vetter@intel.com>
Daniel Vetter47f95642014-01-07 09:24:31 +01003584M: Jani Nikula <jani.nikula@linux.intel.com>
Daniel Vetter362132d2013-03-13 22:28:46 +01003585L: intel-gfx@lists.freedesktop.org
Chris Wilson8daf7472010-09-28 14:07:26 +01003586L: dri-devel@lists.freedesktop.org
Daniel Vetter47f95642014-01-07 09:24:31 +01003587Q: http://patchwork.freedesktop.org/project/intel-gfx/
Daniel Vetter89258a92014-02-04 19:57:38 +01003588T: git git://anongit.freedesktop.org/drm-intel
Chris Wilson8daf7472010-09-28 14:07:26 +01003589S: Supported
Joe Perches14430812013-09-11 14:23:50 -07003590F: drivers/gpu/drm/i915/
Chris Wilson8daf7472010-09-28 14:07:26 +01003591F: include/drm/i915*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003592F: include/uapi/drm/i915*
Chris Wilson8daf7472010-09-28 14:07:26 +01003593
Kyungmin Park398a6d42011-11-02 11:33:16 +09003594DRM DRIVERS FOR EXYNOS
3595M: Inki Dae <inki.dae@samsung.com>
Inki Daef1501302012-01-17 14:08:55 +09003596M: Joonyoung Shim <jy0922.shim@samsung.com>
3597M: Seung-Woo Kim <sw0312.kim@samsung.com>
3598M: Kyungmin Park <kyungmin.park@samsung.com>
Kyungmin Park398a6d42011-11-02 11:33:16 +09003599L: dri-devel@lists.freedesktop.org
Inki Dae25a58032012-10-30 16:08:05 +09003600T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
Kyungmin Park398a6d42011-11-02 11:33:16 +09003601S: Supported
Joe Perches14430812013-09-11 14:23:50 -07003602F: drivers/gpu/drm/exynos/
Kyungmin Park398a6d42011-11-02 11:33:16 +09003603F: include/drm/exynos*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003604F: include/uapi/drm/exynos*
Kyungmin Park398a6d42011-11-02 11:33:16 +09003605
Jianwei Wangb55a1b92015-08-19 22:26:33 -04003606DRM DRIVERS FOR FREESCALE DCU
3607M: Jianwei Wang <jianwei.wang.chn@gmail.com>
3608M: Alison Wang <alison.wang@freescale.com>
3609L: dri-devel@lists.freedesktop.org
3610S: Supported
3611F: drivers/gpu/drm/fsl-dcu/
3612F: Documentation/devicetree/bindings/video/fsl,dcu.txt
3613F: Documentation/devicetree/bindings/panel/nec,nl4827hc19_05b.txt
3614
Philipp Zabel0a3d7752014-11-24 16:33:35 +01003615DRM DRIVERS FOR FREESCALE IMX
3616M: Philipp Zabel <p.zabel@pengutronix.de>
3617L: dri-devel@lists.freedesktop.org
3618S: Maintained
3619F: drivers/gpu/drm/imx/
3620F: Documentation/devicetree/bindings/drm/imx/
3621
Thierry Redingbd3b49f2012-11-28 20:45:28 +01003622DRM DRIVERS FOR NVIDIA TEGRA
Thierry Redinga5ad7a62013-05-19 14:19:21 +02003623M: Thierry Reding <thierry.reding@gmail.com>
3624M: Terje Bergström <tbergstrom@nvidia.com>
Thierry Redingbd3b49f2012-11-28 20:45:28 +01003625L: dri-devel@lists.freedesktop.org
3626L: linux-tegra@vger.kernel.org
Thierry Redinga5ad7a62013-05-19 14:19:21 +02003627T: git git://anongit.freedesktop.org/tegra/linux.git
Stephen Warrenadabdb02013-09-13 13:00:57 -06003628S: Supported
Thierry Redingdee82682013-10-09 10:32:49 +02003629F: drivers/gpu/drm/tegra/
Thierry Redinga5ad7a62013-05-19 14:19:21 +02003630F: drivers/gpu/host1x/
Thierry Redinge1e90642013-09-24 13:59:01 +02003631F: include/linux/host1x.h
Thierry Redinga5ad7a62013-05-19 14:19:21 +02003632F: include/uapi/drm/tegra_drm.h
Thierry Redingbd3b49f2012-11-28 20:45:28 +01003633F: Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt
3634
Laurent Pincharta284e9d2014-08-19 23:04:31 +02003635DRM DRIVERS FOR RENESAS
3636M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
3637L: dri-devel@lists.freedesktop.org
3638L: linux-sh@vger.kernel.org
3639T: git git://people.freedesktop.org/~airlied/linux
3640S: Supported
3641F: drivers/gpu/drm/rcar-du/
3642F: drivers/gpu/drm/shmobile/
Laurent Pincharta284e9d2014-08-19 23:04:31 +02003643F: include/linux/platform_data/shmob_drm.h
3644
Heiko Stuebner625e0342015-04-20 00:59:50 +02003645DRM DRIVERS FOR ROCKCHIP
3646M: Mark Yao <mark.yao@rock-chips.com>
3647L: dri-devel@lists.freedesktop.org
3648S: Maintained
3649F: drivers/gpu/drm/rockchip/
3650F: Documentation/devicetree/bindings/video/rockchip*
3651
Benjamin Gaignard7f11c472015-08-14 15:35:24 -07003652DRM DRIVERS FOR STI
3653M: Benjamin Gaignard <benjamin.gaignard@linaro.org>
3654M: Vincent Abriou <vincent.abriou@st.com>
3655L: dri-devel@lists.freedesktop.org
3656T: git http://git.linaro.org/people/benjamin.gaignard/kernel.git
3657S: Maintained
3658F: drivers/gpu/drm/sti
3659F: Documentation/devicetree/bindings/gpu/st,stih4xx.txt
3660
Alexey Klimov598df1a2012-11-28 17:16:32 -03003661DSBR100 USB FM RADIO DRIVER
3662M: Alexey Klimov <klimov.linux@gmail.com>
3663L: linux-media@vger.kernel.org
3664T: git git://linuxtv.org/media_tree.git
3665S: Maintained
3666F: drivers/media/radio/dsbr100.c
3667
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003669M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08003670L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003671S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003672F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003673
Hans Verkuilcc11b142015-04-25 12:36:18 -03003674DT3155 MEDIA DRIVER
3675M: Hans Verkuil <hverkuil@xs4all.nl>
3676L: linux-media@vger.kernel.org
3677T: git git://linuxtv.org/media_tree.git
3678W: http://linuxtv.org
3679S: Odd Fixes
3680F: drivers/media/pci/dt3155/
3681
Antti Palosaari91952bc2012-10-01 12:28:46 -03003682DVB_USB_AF9015 MEDIA DRIVER
3683M: Antti Palosaari <crope@iki.fi>
3684L: linux-media@vger.kernel.org
3685W: http://linuxtv.org/
3686W: http://palosaari.fi/linux/
3687Q: http://patchwork.linuxtv.org/project/linux-media/list/
3688T: git git://linuxtv.org/anttip/media_tree.git
3689S: Maintained
3690F: drivers/media/usb/dvb-usb-v2/af9015*
3691
3692DVB_USB_AF9035 MEDIA DRIVER
3693M: Antti Palosaari <crope@iki.fi>
3694L: linux-media@vger.kernel.org
3695W: http://linuxtv.org/
3696W: http://palosaari.fi/linux/
3697Q: http://patchwork.linuxtv.org/project/linux-media/list/
3698T: git git://linuxtv.org/anttip/media_tree.git
3699S: Maintained
3700F: drivers/media/usb/dvb-usb-v2/af9035*
3701
3702DVB_USB_ANYSEE MEDIA DRIVER
3703M: Antti Palosaari <crope@iki.fi>
3704L: linux-media@vger.kernel.org
3705W: http://linuxtv.org/
3706W: http://palosaari.fi/linux/
3707Q: http://patchwork.linuxtv.org/project/linux-media/list/
3708T: git git://linuxtv.org/anttip/media_tree.git
3709S: Maintained
3710F: drivers/media/usb/dvb-usb-v2/anysee*
3711
3712DVB_USB_AU6610 MEDIA DRIVER
3713M: Antti Palosaari <crope@iki.fi>
3714L: linux-media@vger.kernel.org
3715W: http://linuxtv.org/
3716W: http://palosaari.fi/linux/
3717Q: http://patchwork.linuxtv.org/project/linux-media/list/
3718T: git git://linuxtv.org/anttip/media_tree.git
3719S: Maintained
3720F: drivers/media/usb/dvb-usb-v2/au6610*
3721
3722DVB_USB_CE6230 MEDIA DRIVER
3723M: Antti Palosaari <crope@iki.fi>
3724L: linux-media@vger.kernel.org
3725W: http://linuxtv.org/
3726W: http://palosaari.fi/linux/
3727Q: http://patchwork.linuxtv.org/project/linux-media/list/
3728T: git git://linuxtv.org/anttip/media_tree.git
3729S: Maintained
3730F: drivers/media/usb/dvb-usb-v2/ce6230*
3731
Michael Krufkyd099dea2012-10-02 00:56:20 -03003732DVB_USB_CXUSB MEDIA DRIVER
3733M: Michael Krufky <mkrufky@linuxtv.org>
3734L: linux-media@vger.kernel.org
3735W: http://linuxtv.org/
3736W: http://github.com/mkrufky
3737Q: http://patchwork.linuxtv.org/project/linux-media/list/
3738T: git git://linuxtv.org/media_tree.git
3739S: Maintained
Cesar Eduardo Barros9819da62013-01-04 15:35:25 -08003740F: drivers/media/usb/dvb-usb/cxusb*
Michael Krufkyd099dea2012-10-02 00:56:20 -03003741
Antti Palosaari91952bc2012-10-01 12:28:46 -03003742DVB_USB_EC168 MEDIA DRIVER
3743M: Antti Palosaari <crope@iki.fi>
3744L: linux-media@vger.kernel.org
3745W: http://linuxtv.org/
3746W: http://palosaari.fi/linux/
3747Q: http://patchwork.linuxtv.org/project/linux-media/list/
3748T: git git://linuxtv.org/anttip/media_tree.git
3749S: Maintained
3750F: drivers/media/usb/dvb-usb-v2/ec168*
3751
Antti Palosaari55609832013-04-09 20:30:42 -03003752DVB_USB_GL861 MEDIA DRIVER
3753M: Antti Palosaari <crope@iki.fi>
3754L: linux-media@vger.kernel.org
3755W: http://linuxtv.org/
3756Q: http://patchwork.linuxtv.org/project/linux-media/list/
3757T: git git://linuxtv.org/anttip/media_tree.git
3758S: Maintained
3759F: drivers/media/usb/dvb-usb-v2/gl861*
3760
Michael Krufky8856f5f2012-10-02 00:55:50 -03003761DVB_USB_MXL111SF MEDIA DRIVER
3762M: Michael Krufky <mkrufky@linuxtv.org>
3763L: linux-media@vger.kernel.org
3764W: http://linuxtv.org/
3765W: http://github.com/mkrufky
3766Q: http://patchwork.linuxtv.org/project/linux-media/list/
3767T: git git://linuxtv.org/mkrufky/mxl111sf.git
3768S: Maintained
3769F: drivers/media/usb/dvb-usb-v2/mxl111sf*
3770
Antti Palosaari91952bc2012-10-01 12:28:46 -03003771DVB_USB_RTL28XXU MEDIA DRIVER
3772M: Antti Palosaari <crope@iki.fi>
3773L: linux-media@vger.kernel.org
3774W: http://linuxtv.org/
3775W: http://palosaari.fi/linux/
3776Q: http://patchwork.linuxtv.org/project/linux-media/list/
3777T: git git://linuxtv.org/anttip/media_tree.git
3778S: Maintained
3779F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
3780
3781DVB_USB_V2 MEDIA DRIVER
3782M: Antti Palosaari <crope@iki.fi>
3783L: linux-media@vger.kernel.org
3784W: http://linuxtv.org/
3785W: http://palosaari.fi/linux/
3786Q: http://patchwork.linuxtv.org/project/linux-media/list/
3787T: git git://linuxtv.org/anttip/media_tree.git
3788S: Maintained
3789F: drivers/media/usb/dvb-usb-v2/dvb_usb*
3790F: drivers/media/usb/dvb-usb-v2/usb_urb.c
3791
Jason Baronac0ac382011-08-11 14:36:43 -04003792DYNAMIC DEBUG
Joe Perches5c4a97d2013-07-31 13:53:32 -07003793M: Jason Baron <jbaron@akamai.com>
Jason Baronac0ac382011-08-11 14:36:43 -04003794S: Maintained
3795F: lib/dynamic_debug.c
3796F: include/linux/dynamic_debug.h
3797
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08003798DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003799M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08003800S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003801F: drivers/tty/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08003802
Moritz Fischerf17effb2015-01-10 14:10:59 -08003803E3X0 POWER BUTTON DRIVER
3804M: Moritz Fischer <moritz.fischer@ettus.com>
3805L: usrp-users@lists.ettus.com
3806W: http://www.ettus.com
3807S: Supported
3808F: drivers/input/misc/e3x0-button.c
3809F: Documentation/devicetree/bindings/input/e3x0-button.txt
3810
Antti Palosaari91952bc2012-10-01 12:28:46 -03003811E4000 MEDIA DRIVER
3812M: Antti Palosaari <crope@iki.fi>
3813L: linux-media@vger.kernel.org
3814W: http://linuxtv.org/
3815W: http://palosaari.fi/linux/
3816Q: http://patchwork.linuxtv.org/project/linux-media/list/
3817T: git git://linuxtv.org/anttip/media_tree.git
3818S: Maintained
3819F: drivers/media/tuners/e4000*
3820
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003822M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823L: linux-scsi@vger.kernel.org
3824S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003825F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003826
Antti Palosaari91952bc2012-10-01 12:28:46 -03003827EC100 MEDIA DRIVER
3828M: Antti Palosaari <crope@iki.fi>
3829L: linux-media@vger.kernel.org
3830W: http://linuxtv.org/
3831W: http://palosaari.fi/linux/
3832Q: http://patchwork.linuxtv.org/project/linux-media/list/
3833T: git git://linuxtv.org/anttip/media_tree.git
3834S: Maintained
3835F: drivers/media/dvb-frontends/ec100*
3836
Michael Halcrow237fead2006-10-04 02:16:22 -07003837ECRYPT FILE SYSTEM
Tyler Hicks0de9adf2011-11-05 09:04:47 -04003838M: Tyler Hicks <tyhicks@canonical.com>
Tyler Hicksa058bfb2011-05-27 11:47:59 -05003839L: ecryptfs@vger.kernel.org
Dustin Kirkland24a923e2013-05-31 10:41:43 -05003840W: http://ecryptfs.org
Michael Halcrow6dc75162008-12-15 13:54:17 -08003841W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07003842S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003843F: Documentation/filesystems/ecryptfs.txt
3844F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07003845
Alan Coxda9bb1d2006-01-18 17:44:13 -08003846EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07003847M: Doug Thompson <dougthompson@xmission.com>
Borislav Petkovaa15aa02014-03-03 15:38:17 -08003848M: Borislav Petkov <bp@alien8.de>
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02003849M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003850L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08003851W: bluesmoke.sourceforge.net
Borislav Petkov7a859512015-02-06 17:46:07 +01003852T: git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git#for-next
3853T: git://git.kernel.org/pub/linux/kernel/git/mchehab/linux-edac.git#linux_next
Doug Thompson8c2a6a42006-06-30 01:56:09 -07003854S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003855F: Documentation/edac.txt
Chris Metcalf91445c72012-03-31 09:46:03 -04003856F: drivers/edac/
Joe Perches679655d2009-04-07 20:44:32 -07003857F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08003858
Borislav Petkovc476c232009-05-20 20:31:58 +02003859EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07003860M: Doug Thompson <dougthompson@xmission.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01003861M: Borislav Petkov <bp@alien8.de>
Chris Metcalf91445c72012-03-31 09:46:03 -04003862L: linux-edac@vger.kernel.org
Borislav Petkovc476c232009-05-20 20:31:58 +02003863W: bluesmoke.sourceforge.net
Borislav Petkov487ba8e2012-10-29 18:40:10 +01003864S: Maintained
Borislav Petkovc476c232009-05-20 20:31:58 +02003865F: drivers/edac/amd64_edac*
3866
Robert Richter836dae52013-10-18 09:24:52 +02003867EDAC-CALXEDA
3868M: Doug Thompson <dougthompson@xmission.com>
3869M: Robert Richter <rric@kernel.org>
3870L: linux-edac@vger.kernel.org
3871W: bluesmoke.sourceforge.net
3872S: Maintained
3873F: drivers/edac/highbank*
3874
Ralf Baechlef65aad42012-10-17 00:39:09 +02003875EDAC-CAVIUM
3876M: Ralf Baechle <ralf@linux-mips.org>
3877M: David Daney <david.daney@cavium.com>
3878L: linux-edac@vger.kernel.org
3879L: linux-mips@linux-mips.org
3880W: bluesmoke.sourceforge.net
3881S: Supported
3882F: drivers/edac/octeon_edac*
3883
Dave Peterson0e438e32006-03-26 01:38:55 -08003884EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07003885M: Mark Gross <mark.gross@intel.com>
3886M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003887L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08003888W: bluesmoke.sourceforge.net
3889S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003890F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08003891
3892EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07003893M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003894L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08003895W: bluesmoke.sourceforge.net
3896S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003897F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08003898
Mauro Carvalho Chehab77c5f5d2013-02-15 06:11:57 -03003899EDAC-GHES
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02003900M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab77c5f5d2013-02-15 06:11:57 -03003901L: linux-edac@vger.kernel.org
3902W: bluesmoke.sourceforge.net
3903S: Maintained
Joe Perches2caa67a2013-09-11 14:23:40 -07003904F: drivers/edac/ghes_edac.c
Mauro Carvalho Chehab77c5f5d2013-02-15 06:11:57 -03003905
Douglas Thompson6bc78402007-07-19 01:50:12 -07003906EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07003907M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003908L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07003909W: bluesmoke.sourceforge.net
3910S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003911F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07003912
3913EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07003914M: Jason Uhlenkott <juhlenko@akamai.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003915L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07003916W: bluesmoke.sourceforge.net
3917S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003918F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07003919
3920EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07003921M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003922L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07003923W: bluesmoke.sourceforge.net
3924S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003925F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07003926
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08003927EDAC-I5400
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02003928M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03003929L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08003930W: bluesmoke.sourceforge.net
3931S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003932F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08003933
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03003934EDAC-I7300
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02003935M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03003936L: linux-edac@vger.kernel.org
3937W: bluesmoke.sourceforge.net
3938S: Maintained
3939F: drivers/edac/i7300_edac.c
3940
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03003941EDAC-I7CORE
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02003942M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03003943L: linux-edac@vger.kernel.org
3944W: bluesmoke.sourceforge.net
3945S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03003946F: drivers/edac/i7core_edac.c
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03003947
Douglas Thompsonba9a5912007-07-19 01:50:32 -07003948EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07003949M: Ranganathan Desikan <ravi@jetztechnologies.com>
Arvind R25527882011-01-21 23:13:37 +05303950M: "Arvind R." <arvino55@gmail.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003951L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07003952W: bluesmoke.sourceforge.net
3953S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003954F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07003955
Jason Baron791b4702014-07-09 21:13:11 +00003956EDAC-IE31200
3957M: Jason Baron <jbaron@akamai.com>
3958L: linux-edac@vger.kernel.org
3959W: bluesmoke.sourceforge.net
3960S: Maintained
3961F: drivers/edac/ie31200_edac.c
3962
Johannes Thumshirnccdfb972013-11-17 19:25:12 +01003963EDAC-MPC85XX
Johannes Thumshirn30c74692015-05-07 10:21:24 +02003964M: Johannes Thumshirn <morbidrsa@gmail.com>
Johannes Thumshirnccdfb972013-11-17 19:25:12 +01003965L: linux-edac@vger.kernel.org
3966W: bluesmoke.sourceforge.net
3967S: Maintained
3968F: drivers/edac/mpc85xx_edac.[ch]
3969
Douglas Thompsonba9a5912007-07-19 01:50:32 -07003970EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07003971M: Egor Martovetsky <egor@pasemi.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003972L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07003973W: bluesmoke.sourceforge.net
3974S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003975F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07003976
Dave Peterson0e438e32006-03-26 01:38:55 -08003977EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07003978M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003979L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08003980W: bluesmoke.sourceforge.net
3981S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003982F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08003983
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02003984EDAC-SBRIDGE
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02003985M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02003986L: linux-edac@vger.kernel.org
3987W: bluesmoke.sourceforge.net
3988S: Maintained
3989F: drivers/edac/sb_edac.c
3990
Loc Ho995e1de2015-05-22 17:32:57 -06003991EDAC-XGENE
3992APPLIED MICRO (APM) X-GENE SOC EDAC
3993M: Loc Ho <lho@apm.com>
3994S: Supported
3995F: drivers/edac/xgene_edac.c
3996F: Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
3997
Clemens Ladischaf399172011-01-10 16:32:54 +01003998EDIROL UA-101/UA-1000 DRIVER
3999M: Clemens Ladisch <clemens@ladisch.de>
4000L: alsa-devel@alsa-project.org (moderated for non-subscribers)
4001T: git git://git.alsa-project.org/alsa-kernel.git
4002S: Maintained
4003F: sound/usb/misc/ua101.c
4004
Matt Fleming1f7df952012-10-03 10:04:02 +01004005EXTENSIBLE FIRMWARE INTERFACE (EFI)
4006M: Matt Fleming <matt.fleming@intel.com>
4007L: linux-efi@vger.kernel.org
Matt Fleming78bef242012-10-08 11:33:05 +01004008T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
Matt Fleming1f7df952012-10-03 10:04:02 +01004009S: Maintained
Joe Perchesfb2efb52014-08-08 14:25:01 -07004010F: Documentation/efi-stub.txt
Matt Fleming1f7df952012-10-03 10:04:02 +01004011F: arch/ia64/kernel/efi.c
4012F: arch/x86/boot/compressed/eboot.[ch]
4013F: arch/x86/include/asm/efi.h
4014F: arch/x86/platform/efi/*
Tom Gundersena9499fa2013-02-08 15:37:06 +00004015F: drivers/firmware/efi/*
Matt Fleming1f7df952012-10-03 10:04:02 +01004016F: include/linux/efi*.h
4017
Matt Flemingd68772b2013-02-08 16:27:24 +00004018EFI VARIABLE FILESYSTEM
4019M: Matthew Garrett <matthew.garrett@nebula.com>
4020M: Jeremy Kerr <jk@ozlabs.org>
4021M: Matt Fleming <matt.fleming@intel.com>
4022T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4023L: linux-efi@vger.kernel.org
4024S: Maintained
4025F: fs/efivarfs/
4026
Peter Jones85a00d92010-09-22 13:05:04 -07004027EFIFB FRAMEBUFFER DRIVER
4028L: linux-fbdev@vger.kernel.org
4029M: Peter Jones <pjones@redhat.com>
4030S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09004031F: drivers/video/fbdev/efifb.c
Peter Jones85a00d92010-09-22 13:05:04 -07004032
Josh Triplett0bee8d22006-07-30 03:03:58 -07004033EFS FILESYSTEM
4034W: http://aeschi.ch.eu.org/efs/
4035S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004036F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07004037
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004038EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004039M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
4040M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004041L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07004042S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004043F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07004044
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07004045EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
Thadeu Lima de Souza Cascardo34b19012011-10-13 09:56:19 +00004046M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07004047L: netdev@vger.kernel.org
4048S: Maintained
Jeff Kirsher9aa32832011-05-13 14:29:12 -07004049F: drivers/net/ethernet/ibm/ehea/
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07004050
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02004051EM28XX VIDEO4LINUX DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02004052M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02004053L: linux-media@vger.kernel.org
4054W: http://linuxtv.org
4055T: git git://linuxtv.org/media_tree.git
4056S: Maintained
4057F: drivers/media/usb/em28xx/
4058
David Woodhouse3e3a7d62008-05-01 04:34:46 -07004059EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07004060M: Paul Gortmaker <paul.gortmaker@windriver.com>
4061M: Matt Mackall <mpm@selenic.com>
4062M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07004063L: linux-embedded@vger.kernel.org
4064S: Maintained
4065
James Smart32505872015-05-15 13:10:58 -04004066EMULEX/AVAGO LPFC FC/FCOE SCSI DRIVER
4067M: James Smart <james.smart@avagotech.com>
4068M: Dick Kennedy <dick.kennedy@avagotech.com>
Jim Cromiece00f852006-11-30 04:49:44 +01004069L: linux-scsi@vger.kernel.org
James Smart32505872015-05-15 13:10:58 -04004070W: http://www.avagotech.com
Jim Cromiece00f852006-11-30 04:49:44 +01004071S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004072F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04004073
Michał Mirosław5f5bac82009-05-22 20:33:59 +02004074ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004075M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02004076S: Maintained
4077F: drivers/misc/cb710/
4078F: drivers/mmc/host/cb710-mmc.*
4079F: include/linux/cb710.h
4080
Maxim Levitsky931e39a2010-07-31 11:59:26 -03004081ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
4082M: Maxim Levitsky <maximlevitsky@gmail.com>
4083S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07004084F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03004085
Gavin Shanec207dc2013-06-28 21:12:14 +08004086ENHANCED ERROR HANDLING (EEH)
4087M: Gavin Shan <shangw@linux.vnet.ibm.com>
4088L: linuxppc-dev@lists.ozlabs.org
4089S: Supported
4090F: Documentation/powerpc/eeh-pci-error-recovery.txt
4091F: arch/powerpc/kernel/eeh*.c
4092
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07004093EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004094M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07004095S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07004096T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Jingoo Han8a61f012014-07-01 15:36:01 +09004097F: drivers/video/fbdev/s1d13xxxfb.c
Joe Perches679655d2009-04-07 20:44:32 -07004098F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07004099
Mark Einon38df6492014-09-30 22:29:46 +01004100ET131X NETWORK DRIVER
4101M: Mark Einon <mark.einon@gmail.com>
4102S: Odd Fixes
4103F: drivers/net/ethernet/agere/
4104
Linus Torvalds1da177e2005-04-16 15:20:36 -07004105ETHERNET BRIDGE
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08004106M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07004107L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08004108L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00004109W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07004110S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004111F: include/linux/netfilter_bridge/
4112F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004113
Florian Fainelli22f08ad2014-02-18 09:47:49 -08004114ETHERNET PHY LIBRARY
4115M: Florian Fainelli <f.fainelli@gmail.com>
4116L: netdev@vger.kernel.org
4117S: Maintained
4118F: include/linux/phy.h
4119F: include/linux/phy_fixed.h
4120F: drivers/net/phy/
4121F: Documentation/networking/phy.txt
4122F: drivers/of/of_mdio.c
4123F: drivers/of/of_net.c
4124
Linus Torvalds1da177e2005-04-16 15:20:36 -07004125EXT2 FILE SYSTEM
Jiri Slabyd8130622015-07-17 16:23:20 -07004126M: Jan Kara <jack@suse.com>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004127L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004129F: Documentation/filesystems/ext2.txt
4130F: fs/ext2/
4131F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004132
Erik Mouw72be2cc2006-12-06 20:40:49 -08004133EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004134M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02004135M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004136L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04004137W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004138Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004139S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004140F: Documentation/filesystems/ext4.txt
4141F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004142
Mimi Zoharc5532b02011-08-17 18:52:24 -04004143Extended Verification Module (EVM)
Mimi Zohar74dd7442014-02-27 08:44:45 -05004144M: Mimi Zohar <zohar@linux.vnet.ibm.com>
4145L: linux-ima-devel@lists.sourceforge.net
4146L: linux-security-module@vger.kernel.org
Mimi Zoharc5532b02011-08-17 18:52:24 -04004147S: Supported
4148F: security/integrity/evm/
4149
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09004150EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
4151M: MyungJoo Ham <myungjoo.ham@samsung.com>
4152M: Chanwoo Choi <cw00.choi@samsung.com>
4153L: linux-kernel@vger.kernel.org
Chanwoo Choi81df63a2013-09-28 15:04:37 +09004154T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09004155S: Maintained
4156F: drivers/extcon/
4157F: Documentation/extcon/
4158
Jingoo Hane2a75c42014-04-10 20:24:03 +09004159EXYNOS DP DRIVER
Jingoo Hanb7701752015-05-14 15:17:07 -07004160M: Jingoo Han <jingoohan1@gmail.com>
Jingoo Hane2a75c42014-04-10 20:24:03 +09004161L: dri-devel@lists.freedesktop.org
4162S: Maintained
4163F: drivers/gpu/drm/exynos/exynos_dp*
4164
Donghwa Lee33ad3912012-03-06 11:44:58 +09004165EXYNOS MIPI DISPLAY DRIVERS
4166M: Inki Dae <inki.dae@samsung.com>
4167M: Donghwa Lee <dh09.lee@samsung.com>
4168M: Kyungmin Park <kyungmin.park@samsung.com>
4169L: linux-fbdev@vger.kernel.org
4170S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09004171F: drivers/video/fbdev/exynos/exynos_mipi*
Donghwa Lee33ad3912012-03-06 11:44:58 +09004172F: include/video/exynos_mipi*
4173
Jean Delvaree53004e2006-01-09 23:26:14 +01004174F71805F HARDWARE MONITORING DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07004175M: Jean Delvare <jdelvare@suse.com>
Jean Delvaree53004e2006-01-09 23:26:14 +01004176L: lm-sensors@lm-sensors.org
4177S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004178F: Documentation/hwmon/f71805f
4179F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01004180
Michael Büscheea977e2012-04-02 12:14:32 -03004181FC0011 TUNER DRIVER
4182M: Michael Buesch <m@bues.ch>
4183L: linux-media@vger.kernel.org
4184S: Maintained
Mauro Carvalho Chehabccae7af2012-06-14 16:35:59 -03004185F: drivers/media/tuners/fc0011.h
4186F: drivers/media/tuners/fc0011.c
Michael Büscheea977e2012-04-02 12:14:32 -03004187
Antti Palosaari91952bc2012-10-01 12:28:46 -03004188FC2580 MEDIA DRIVER
4189M: Antti Palosaari <crope@iki.fi>
4190L: linux-media@vger.kernel.org
4191W: http://linuxtv.org/
4192W: http://palosaari.fi/linux/
4193Q: http://patchwork.linuxtv.org/project/linux-media/list/
4194T: git git://linuxtv.org/anttip/media_tree.git
4195S: Maintained
4196F: drivers/media/tuners/fc2580*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004197
Eric Paris88b2dbd2010-08-18 12:25:50 -04004198FANOTIFY
4199M: Eric Paris <eparis@redhat.com>
4200S: Maintained
4201F: fs/notify/fanotify/
4202F: include/linux/fanotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004203F: include/uapi/linux/fanotify.h
Eric Paris88b2dbd2010-08-18 12:25:50 -04004204
Linus Torvalds1da177e2005-04-16 15:20:36 -07004205FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004206M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004207W: http://www.farsite.co.uk/
4208S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004209F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004210
Akinobu Mitac5408b82007-04-23 14:41:20 -07004211FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004212M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07004213S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004214F: Documentation/fault-injection/
4215F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07004216
Noralf Trønnes053e5142015-01-23 19:29:07 +01004217FBTFT Framebuffer drivers
4218M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4219M: Noralf Trønnes <noralf@tronnes.org>
4220S: Maintained
4221F: drivers/staging/fbtft/
4222
Robert Lovecae727d2010-02-16 12:16:00 -08004223FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
Robert Love3bd746c2014-05-28 14:19:01 -07004224M: Vasu Dev <vasu.dev@intel.com>
Neil Hormanf4aaea62013-05-03 19:38:10 +00004225L: fcoe-devel@open-fcoe.org
Robert Lovecae727d2010-02-16 12:16:00 -08004226W: www.Open-FCoE.org
4227S: Supported
4228F: drivers/scsi/libfc/
4229F: drivers/scsi/fcoe/
4230F: include/scsi/fc/
4231F: include/scsi/libfc.h
4232F: include/scsi/libfcoe.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004233F: include/uapi/scsi/fc/
Robert Lovecae727d2010-02-16 12:16:00 -08004234
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004235FILE LOCKING (flock() and fcntl()/lockf())
Jeff Layton8c836fa2014-04-30 13:28:17 -04004236M: Jeff Layton <jlayton@poochiereds.net>
Joe Perches9c3646d2015-06-25 15:02:00 -07004237M: "J. Bruce Fields" <bfields@fieldses.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004238L: linux-fsdevel@vger.kernel.org
4239S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004240F: include/linux/fcntl.h
4241F: include/linux/fs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004242F: include/uapi/linux/fcntl.h
4243F: include/uapi/linux/fs.h
Joe Perches679655d2009-04-07 20:44:32 -07004244F: fs/fcntl.c
4245F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004246
4247FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07004248M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004249L: linux-fsdevel@vger.kernel.org
4250S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004251F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004252
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004253FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02004254M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004255L: lm-sensors@lm-sensors.org
4256S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07004257F: drivers/hwmon/f75375s.c
4258F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004259
Clemens Ladischa331b0c2011-05-25 09:48:48 +02004260FIREWIRE AUDIO DRIVERS
4261M: Clemens Ladisch <clemens@ladisch.de>
4262L: alsa-devel@alsa-project.org (moderated for non-subscribers)
4263T: git git://git.alsa-project.org/alsa-kernel.git
4264S: Maintained
4265F: sound/firewire/
4266
Stefan Richtereb86ec52012-11-03 09:25:20 +01004267FIREWIRE MEDIA DRIVERS (firedtv)
4268M: Stefan Richter <stefanr@s5r6.in-berlin.de>
4269L: linux-media@vger.kernel.org
4270L: linux1394-devel@lists.sourceforge.net
4271T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
4272S: Maintained
4273F: drivers/media/firewire/
4274
Chris Boota511ce32012-04-14 17:50:35 -07004275FIREWIRE SBP-2 TARGET
4276M: Chris Boot <bootc@bootc.net>
4277L: linux-scsi@vger.kernel.org
4278L: target-devel@vger.kernel.org
4279L: linux1394-devel@lists.sourceforge.net
4280T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
4281S: Maintained
4282F: drivers/target/sbp/
4283
Joe Perches7d2c86b2009-04-07 20:59:01 -07004284FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004285M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004286L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01004287W: http://ieee1394.wiki.kernel.org/
Stefan Richter2ca526b2011-12-20 21:23:28 +01004288T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004289S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004290F: drivers/firewire/
Stefan Richter8f06ce32012-12-17 16:00:07 -08004291F: include/linux/firewire.h
4292F: include/uapi/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02004293F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004294
4295FIRMWARE LOADER (request_firmware)
Ming Lei39e68082012-08-20 19:04:17 +08004296M: Ming Lei <ming.lei@canonical.com>
4297L: linux-kernel@vger.kernel.org
4298S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004299F: Documentation/firmware_class/
4300F: drivers/base/firmware*.c
4301F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004302
Philip J Kelleherf730e3d2013-06-18 14:43:58 -05004303FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
Philip J Kelleher9bb3c442013-02-27 09:24:59 -06004304M: Joshua Morris <josh.h.morris@us.ibm.com>
4305M: Philip Kelleher <pjk1939@linux.vnet.ibm.com>
4306S: Maintained
4307F: drivers/block/rsxx/
4308
Jiri Kosina8206f662012-05-18 13:52:29 +02004309FLOPPY DRIVER
Jiri Kosinae5f64502015-08-09 09:11:34 +02004310M: Jiri Kosina <jikos@kernel.org>
Jiri Kosina8206f662012-05-18 13:52:29 +02004311T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
4312S: Odd fixes
4313F: drivers/block/floppy.c
4314
Alessandro Rubini9c9f32e2013-06-12 09:13:25 +02004315FMC SUBSYSTEM
4316M: Alessandro Rubini <rubini@gnudd.com>
4317W: http://www.ohwr.org/projects/fmc-bus
4318S: Supported
4319F: drivers/fmc/
4320F: include/linux/fmc*.h
4321F: include/linux/ipmi-fru.h
4322K: fmc_d.*register
4323
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004324FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07004325M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07004326W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004327S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004328F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004329
4330FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004331L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00004332S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004333F: drivers/net/wan/dlci.c
4334F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004335
Linus Torvalds1da177e2005-04-16 15:20:36 -07004336FRAMEBUFFER LAYER
Jean-Christophe PLAGNIOL-VILLARD5489e942013-05-30 22:23:44 +02004337M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
4338M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004339L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004340W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09004341Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Jean-Christophe PLAGNIOL-VILLARD5489e942013-05-30 22:23:44 +02004342T: git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
Paul Mundt56be1412011-03-23 08:29:07 +09004343S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004344F: Documentation/fb/
Paul Mundtd958c622011-03-23 08:22:41 +09004345F: Documentation/devicetree/bindings/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09004346F: drivers/video/
4347F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07004348F: include/linux/fb.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004349F: include/uapi/video/
4350F: include/uapi/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004351
Timur Tabia57c1882012-10-16 17:33:42 -05004352FREESCALE DIU FRAMEBUFFER DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004353M: Timur Tabi <timur@tabi.org>
Timur Tabia57c1882012-10-16 17:33:42 -05004354L: linux-fbdev@vger.kernel.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004355S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09004356F: drivers/video/fbdev/fsl-diu-fb.*
Timur Tabia57c1882012-10-16 17:33:42 -05004357
Zhang Wei173acc72008-03-01 07:42:48 -07004358FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004359M: Li Yang <leoli@freescale.com>
4360M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004361L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07004362S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004363F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07004364
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02004365FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004366M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004367L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01004368L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02004369S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004370F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02004371
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01004372FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004373M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004374L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07004375L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01004376S: Maintained
Cesar Eduardo Barrosbad985a2013-01-04 15:35:28 -08004377F: include/linux/platform_data/video-imxfb.h
Jingoo Han8a61f012014-07-01 15:36:01 +09004378F: drivers/video/fbdev/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01004379
Han Xu4d8e2ce2015-01-16 03:29:17 +08004380FREESCALE QUAD SPI DRIVER
4381M: Han Xu <han.xu@freescale.com>
4382L: linux-mtd@lists.infradead.org
4383S: Maintained
4384F: drivers/mtd/spi-nor/fsl-quadspi.c
4385
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03004386FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004387M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
4388M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004389L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03004390L: netdev@vger.kernel.org
4391S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07004392F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07004393F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03004394
Timur Tabid9e9d822008-04-24 08:45:26 +10004395FREESCALE QUICC ENGINE LIBRARY
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004396L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004397S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004398F: arch/powerpc/sysdev/qe_lib/
4399F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10004400
Joe Perchesb55ef922009-10-26 16:49:46 -07004401FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004402M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07004403L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004404L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07004405S: Maintained
Joe Perchesfaf2e1d2014-08-08 14:26:18 -07004406F: drivers/usb/gadget/udc/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07004407
Li Yangbeaf53b2007-05-25 13:54:02 +08004408FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004409M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08004410L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004411L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08004412S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07004413F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08004414
Timur Tabid9e9d822008-04-24 08:45:26 +10004415FREESCALE QUICC ENGINE UCC UART DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004416M: Timur Tabi <timur@tabi.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004417L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004418S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004419F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10004420
4421FREESCALE SOC SOUND DRIVERS
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004422M: Timur Tabi <timur@tabi.org>
Mark Browndc859502014-08-07 10:47:24 +01004423M: Nicolin Chen <nicoleotsuka@gmail.com>
Xiubo Lib4b98292014-12-12 16:54:14 -08004424M: Xiubo Li <Xiubo.Lee@gmail.com>
Joe Perches93711662009-06-16 15:34:07 -07004425L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004426L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004427S: Maintained
Joe Perches69aefce2009-04-09 10:39:22 -07004428F: sound/soc/fsl/fsl*
Mark Browndc859502014-08-07 10:47:24 +01004429F: sound/soc/fsl/imx*
Joe Perches69aefce2009-04-09 10:39:22 -07004430F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10004431
J. German Rivera31c88962015-03-05 19:29:09 -06004432FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER
Joe Perches9c3646d2015-06-25 15:02:00 -07004433M: "J. German Rivera" <German.Rivera@freescale.com>
J. German Rivera31c88962015-03-05 19:29:09 -06004434L: linux-kernel@vger.kernel.org
4435S: Maintained
4436F: drivers/staging/fsl-mc/
4437
Linus Torvalds1da177e2005-04-16 15:20:36 -07004438FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004439M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004440W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
4441S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004442F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004443
Pavel Machek71038f52009-01-15 13:51:02 -08004444FREEZER
Rafael J. Wysocki49db1902013-10-09 01:47:53 +02004445M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Rafael J. Wysocki7fb06082014-03-20 03:34:47 +01004446M: Pavel Machek <pavel@ucw.cz>
WANG Congbf1c1382011-10-08 20:57:50 +02004447L: linux-pm@vger.kernel.org
Pavel Machek71038f52009-01-15 13:51:02 -08004448S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004449F: Documentation/power/freezing-of-tasks.txt
4450F: include/linux/freezer.h
4451F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08004452
Konrad Rzeszutek Wilk839a1f72012-04-16 17:06:35 -04004453FRONTSWAP API
4454M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4455L: linux-kernel@vger.kernel.org
4456S: Maintained
4457F: mm/frontswap.c
4458F: include/linux/frontswap.h
4459
David Howellsa5432f52009-04-20 15:46:45 +01004460FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07004461M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01004462L: linux-cachefs@redhat.com
4463S: Supported
4464F: Documentation/filesystems/caching/
4465F: fs/fscache/
4466F: include/linux/fscache*.h
4467
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09004468F2FS FILE SYSTEM
Jaegeuk Kim9b29d482014-05-30 08:20:08 +09004469M: Jaegeuk Kim <jaegeuk@kernel.org>
Jaegeuk Kimf6238a72014-05-31 01:00:49 +09004470M: Changman Lee <cm224.lee@samsung.com>
Chao Yu7b2a2462015-08-12 17:47:08 +08004471R: Chao Yu <chao2.yu@samsung.com>
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09004472L: linux-f2fs-devel@lists.sourceforge.net
4473W: http://en.wikipedia.org/wiki/F2FS
4474T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
4475S: Maintained
4476F: Documentation/filesystems/f2fs.txt
Jaegeuk Kim3bac3802014-01-09 21:00:06 +09004477F: Documentation/ABI/testing/sysfs-fs-f2fs
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09004478F: fs/f2fs/
4479F: include/linux/f2fs_fs.h
Chao Yu62d43ee2015-07-06 20:29:46 +08004480F: include/trace/events/f2fs.h
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09004481
David Howells5ab7ffe2007-04-10 15:10:45 +01004482FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07004483M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004484S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004485F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004486
Jonathan Woithe20b93732008-06-11 10:14:56 +09304487FUJITSU LAPTOP EXTRAS
Jonathan Woithe409a3e92012-03-27 13:01:01 +10304488M: Jonathan Woithe <jwoithe@just42.net>
Matthew Garrettd0944852010-02-11 10:40:13 -05004489L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09304490S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004491F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09304492
Heungjun Kim4da621b2011-11-11 08:05:33 -03004493FUJITSU M-5MO LS CAMERA ISP DRIVER
4494M: Kyungmin Park <kyungmin.park@samsung.com>
4495M: Heungjun Kim <riverful.kim@samsung.com>
4496L: linux-media@vger.kernel.org
4497S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004498F: drivers/media/i2c/m5mols/
Heungjun Kim4da621b2011-11-11 08:05:33 -03004499F: include/media/m5mols.h
4500
Robert Gerlach2d24c492012-01-18 14:26:22 +01004501FUJITSU TABLET EXTRAS
4502M: Robert Gerlach <khnz@gmx.de>
4503L: platform-driver-x86@vger.kernel.org
4504S: Maintained
4505F: drivers/platform/x86/fujitsu-tablet.c
4506
Miklos Szeredi04578f12005-09-09 13:10:22 -07004507FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07004508M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07004509L: fuse-devel@lists.sourceforge.net
4510W: http://fuse.sourceforge.net/
Miklos Szeredi0a30f612015-07-01 17:10:36 +02004511T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
Miklos Szeredi04578f12005-09-09 13:10:22 -07004512S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004513F: fs/fuse/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004514F: include/uapi/linux/fuse.h
Miklos Szeredi0a30f612015-07-01 17:10:36 +02004515F: Documentation/filesystems/fuse.txt
Miklos Szeredi04578f12005-09-09 13:10:22 -07004516
Linus Torvalds1da177e2005-04-16 15:20:36 -07004517FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07004518M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004519L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02004520S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07004521F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004522
Peter Oberparleiterd8e21622013-10-16 13:46:49 -07004523GCOV BASED KERNEL PROFILING
4524M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
4525S: Maintained
4526F: kernel/gcov/
4527F: Documentation/gcov.txt
4528
Linus Torvalds1da177e2005-04-16 15:20:36 -07004529GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004530M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004531L: linux-scsi@vger.kernel.org
4532W: http://www.icp-vortex.com/
4533S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004534F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004535
Jan Kiszka158daf12015-02-17 13:47:49 -08004536GDB KERNEL DEBUGGING HELPER SCRIPTS
4537M: Jan Kiszka <jan.kiszka@siemens.com>
4538S: Supported
4539F: scripts/gdb/
4540
Hans Verkuil3169a1c2012-11-23 07:11:58 -03004541GEMTEK FM RADIO RECEIVER DRIVER
4542M: Hans Verkuil <hverkuil@xs4all.nl>
4543L: linux-media@vger.kernel.org
4544T: git git://linuxtv.org/media_tree.git
4545W: http://linuxtv.org
4546S: Maintained
4547F: drivers/media/radio/radio-gemtek*
4548
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02004549GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07004550M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02004551S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004552F: drivers/i2c/busses/i2c-gpio.c
4553F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02004554
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01004555GENERIC GPIO I2C MULTIPLEXER DRIVER
4556M: Peter Korsgaard <peter.korsgaard@barco.com>
4557L: linux-i2c@vger.kernel.org
4558S: Supported
Jean Delvaree7065e22012-04-28 15:32:06 +02004559F: drivers/i2c/muxes/i2c-mux-gpio.c
4560F: include/linux/i2c-mux-gpio.h
4561F: Documentation/i2c/muxes/i2c-mux-gpio
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01004562
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004563GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004564M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004565W: http://www.kernel.org/pub/linux/utils/net/hdlc/
4566S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004567F: drivers/net/wan/c101.c
4568F: drivers/net/wan/hd6457*
4569F: drivers/net/wan/hdlc*
4570F: drivers/net/wan/n2.c
4571F: drivers/net/wan/pc300too.c
4572F: drivers/net/wan/pci200syn.c
4573F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004574
Arnd Bergmann1527aab2009-06-14 22:46:16 +02004575GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07004576M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02004577L: linux-arch@vger.kernel.org
4578T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
4579S: Maintained
Joe Perches14430812013-09-11 14:23:50 -07004580F: include/asm-generic/
4581F: include/uapi/asm-generic/
Arnd Bergmann1527aab2009-06-14 22:46:16 +02004582
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +05304583GENERIC PHY FRAMEWORK
4584M: Kishon Vijay Abraham I <kishon@ti.com>
4585L: linux-kernel@vger.kernel.org
4586T: git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
4587S: Supported
4588F: drivers/phy/
4589F: include/linux/phy/
4590
Kevin Hilmaneea97ae2015-03-12 10:33:46 -07004591GENERIC PM DOMAINS
4592M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
4593M: Kevin Hilman <khilman@kernel.org>
4594M: Ulf Hansson <ulf.hansson@linaro.org>
4595L: linux-pm@vger.kernel.org
4596S: Supported
4597F: drivers/base/power/domain*.c
4598F: include/linux/pm_domain.h
4599
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03004600GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07004601M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03004602L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03004603S: Supported
4604F: drivers/uio/uio_pci_generic.c
4605
Joe Perchesf8f1ec72014-06-04 16:05:31 -07004606GET_MAINTAINER SCRIPT
4607M: Joe Perches <joe@perches.com>
4608S: Maintained
4609F: scripts/get_maintainer.pl
4610
Steven Whitehouse5be7b502006-04-28 11:27:32 -04004611GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004612M: Steven Whitehouse <swhiteho@redhat.com>
Bob Peterson28666d62015-02-13 11:23:11 -06004613M: Bob Peterson <rpeterso@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04004614L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04004615W: http://sources.redhat.com/cluster/
Bob Peterson28666d62015-02-13 11:23:11 -06004616T: git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04004617S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004618F: Documentation/filesystems/gfs2*.txt
4619F: fs/gfs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004620F: include/uapi/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04004621
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08004622GIGASET ISDN DRIVERS
Tilman Schmidt6b096fd2015-05-02 19:23:22 +02004623M: Paul Bolle <pebolle@tiscali.nl>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08004624L: gigaset307x-common@lists.sourceforge.net
4625W: http://gigaset307x.sourceforge.net/
Tilman Schmidt6b096fd2015-05-02 19:23:22 +02004626S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004627F: Documentation/isdn/README.gigaset
4628F: drivers/isdn/gigaset/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004629F: include/uapi/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08004630
Joe Perches7eea35f2014-07-30 05:09:23 -03004631GO7007 MPEG CODEC
4632M: Hans Verkuil <hans.verkuil@cisco.com>
4633L: linux-media@vger.kernel.org
4634S: Maintained
4635F: drivers/media/usb/go7007/
4636
Bastien Noceraca96ea82014-10-31 09:26:16 -07004637GOODIX TOUCHSCREEN
4638M: Bastien Nocera <hadess@hadess.net>
4639L: linux-input@vger.kernel.org
4640S: Maintained
4641F: drivers/input/touchscreen/goodix.c
4642
Grant Likelya0dc00b2011-02-12 01:48:14 -07004643GPIO SUBSYSTEM
Linus Walleije4651a92012-08-06 09:52:52 +02004644M: Linus Walleij <linus.walleij@linaro.org>
Linus Walleijf2fa75c2013-12-10 09:43:09 +01004645M: Alexandre Courbot <gnurou@gmail.com>
Alexandre Courbotd15b7172013-05-26 11:50:54 +09004646L: linux-gpio@vger.kernel.org
Linus Walleijf2fa75c2013-12-10 09:43:09 +01004647T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
4648S: Maintained
4649F: Documentation/gpio/
Grant Likelya0dc00b2011-02-12 01:48:14 -07004650F: drivers/gpio/
Alexandre Courbotbdc6e952014-08-04 13:06:58 +09004651F: include/linux/gpio/
4652F: include/linux/gpio.h
Yang Bai9b692342012-10-04 17:12:35 -07004653F: include/asm-generic/gpio.h
Grant Likelya0dc00b2011-02-12 01:48:14 -07004654
Harry Wei71a6d0a2011-05-11 15:13:33 -07004655GRE DEMULTIPLEXER DRIVER
4656M: Dmitry Kozlov <xeb@mail.ru>
4657L: netdev@vger.kernel.org
4658S: Maintained
Joe Perches11c26772013-09-11 14:23:48 -07004659F: net/ipv4/gre_demux.c
4660F: net/ipv4/gre_offload.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07004661F: include/net/gre.h
4662
Kristoffer Glembod4c41132010-02-15 03:33:44 +00004663GRETH 10/100/1G Ethernet MAC device driver
4664M: Kristoffer Glembo <kristoffer@gaisler.com>
4665L: netdev@vger.kernel.org
4666S: Maintained
Joe Perchesa31a96a2012-01-10 15:08:58 -08004667F: drivers/net/ethernet/aeroflex/
Kristoffer Glembod4c41132010-02-15 03:33:44 +00004668
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004669GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004670M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004671L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004672T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004673S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004674F: drivers/media/usb/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004675
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03004676GSPCA GL860 SUBDRIVER
4677M: Olivier Lorin <o.lorin@laposte.net>
4678L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004679T: git git://linuxtv.org/media_tree.git
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03004680S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004681F: drivers/media/usb/gspca/gl860/
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03004682
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004683GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004684M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004685L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004686T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004687S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004688F: drivers/media/usb/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004689
4690GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004691M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004692L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004693T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004694S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004695F: drivers/media/usb/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004696
Brian Johnson261982f2009-07-19 15:58:56 -03004697GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03004698M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03004699L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004700T: git git://linuxtv.org/media_tree.git
Brian Johnson261982f2009-07-19 15:58:56 -03004701S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004702F: drivers/media/usb/gspca/sn9c20x.c
Brian Johnson261982f2009-07-19 15:58:56 -03004703
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004704GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004705M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004706L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004707T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004708S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004709F: drivers/media/usb/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004710
4711GSPCA USB WEBCAM DRIVER
Jean-Francois Moinefc3f9062012-05-24 07:29:41 -03004712M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004713L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004714T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004715S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004716F: drivers/media/usb/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004717
Davidlohr Bueso584ec972013-12-18 17:08:55 -08004718GUID PARTITION TABLE (GPT)
Andrew Morton4f973c62015-06-25 15:02:05 -07004719M: Davidlohr Bueso <dave@stgolabs.net>
Davidlohr Bueso584ec972013-12-18 17:08:55 -08004720L: linux-efi@vger.kernel.org
4721S: Maintained
4722F: block/partitions/efi.*
4723
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03004724STK1160 USB VIDEO CAPTURE DRIVER
Ezequiel Garcia3259aa52015-03-10 11:43:20 -03004725M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03004726L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004727T: git git://linuxtv.org/media_tree.git
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03004728S: Maintained
4729F: drivers/media/usb/stk1160/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004730
Yoshinori Sato4e456b82015-03-11 01:41:38 +09004731H8/300 ARCHITECTURE
4732M: Yoshinori Sato <ysato@users.sourceforge.jp>
Geert Uytterhoevenb992c762015-07-17 16:23:55 -07004733L: uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
Yoshinori Sato4e456b82015-03-11 01:41:38 +09004734W: http://uclinux-h8.sourceforge.jp
4735T: git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
4736S: Maintained
4737F: arch/h8300/
4738F: drivers/clocksource/h8300_*.c
4739F: drivers/clk/h8300/
4740F: drivers/irqchip/irq-renesas-h8*.c
4741
Harry Wei71a6d0a2011-05-11 15:13:33 -07004742HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
4743M: Frank Seidel <frank@f-seidel.de>
4744L: platform-driver-x86@vger.kernel.org
4745W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
4746S: Maintained
4747F: drivers/platform/x86/hdaps.c
4748
Hans Verkuil48fc9e22013-04-11 03:36:49 -03004749HDPVR USB VIDEO ENCODER DRIVER
4750M: Hans Verkuil <hverkuil@xs4all.nl>
4751L: linux-media@vger.kernel.org
4752T: git git://linuxtv.org/media_tree.git
4753W: http://linuxtv.org
4754S: Odd Fixes
Joe Perches14430812013-09-11 14:23:50 -07004755F: drivers/media/usb/hdpvr/
Hans Verkuil48fc9e22013-04-11 03:36:49 -03004756
Harry Wei71a6d0a2011-05-11 15:13:33 -07004757HWPOISON MEMORY FAILURE HANDLING
Andi Kleenf9625c42014-06-04 16:05:32 -07004758M: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
Harry Wei71a6d0a2011-05-11 15:13:33 -07004759L: linux-mm@kvack.org
Harry Wei71a6d0a2011-05-11 15:13:33 -07004760S: Maintained
4761F: mm/memory-failure.c
4762F: mm/hwpoison-inject.c
4763
4764HYPERVISOR VIRTUAL CONSOLE DRIVER
4765L: linuxppc-dev@lists.ozlabs.org
4766S: Odd Fixes
4767F: drivers/tty/hvc/
4768
Antti Palosaarie5ab1472014-09-10 04:20:15 -03004769HACKRF MEDIA DRIVER
4770M: Antti Palosaari <crope@iki.fi>
4771L: linux-media@vger.kernel.org
4772W: http://linuxtv.org/
4773W: http://palosaari.fi/linux/
4774Q: http://patchwork.linuxtv.org/project/linux-media/list/
4775T: git git://linuxtv.org/anttip/media_tree.git
4776S: Maintained
4777F: drivers/media/usb/hackrf/
4778
Michael Buesch844dd052006-06-26 00:24:59 -07004779HARDWARE MONITORING
Jiri Slabyd8130622015-07-17 16:23:20 -07004780M: Jean Delvare <jdelvare@suse.com>
Guenter Roeckca462082012-06-01 23:28:23 -07004781M: Guenter Roeck <linux@roeck-us.net>
Robert Love860e1d62005-08-31 23:57:59 -04004782L: lm-sensors@lm-sensors.org
4783W: http://www.lm-sensors.org/
Jean Delvarea94ef4e2015-04-27 16:37:39 +02004784T: quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07004785T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02004786S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01004787F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07004788F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01004789F: include/linux/hwmon*.h
Robert Love860e1d62005-08-31 23:57:59 -04004790
4791HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07004792M: Matt Mackall <mpm@selenic.com>
4793M: Herbert Xu <herbert@gondor.apana.org.au>
Michael S. Tsirkin3eda71672015-01-16 09:16:00 +02004794L: linux-crypto@vger.kernel.org
Joe Perchesc0d07872009-09-23 15:57:17 -07004795S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07004796F: Documentation/hw_random.txt
4797F: drivers/char/hw_random/
4798F: include/linux/hw_random.h
Robert Love860e1d62005-08-31 23:57:59 -04004799
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03004800HARDWARE SPINLOCK CORE
4801M: Ohad Ben-Cohen <ohad@wizery.com>
4802S: Maintained
4803F: Documentation/hwspinlock.txt
4804F: drivers/hwspinlock/hwspinlock_*
4805F: include/linux/hwspinlock.h
4806
Linus Torvalds1da177e2005-04-16 15:20:36 -07004807HARMONY SOUND DRIVER
Kyle McMartinac6aecb2007-12-03 22:04:34 +00004808L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004809S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004810F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004811
Antti Palosaari91952bc2012-10-01 12:28:46 -03004812HD29L2 MEDIA DRIVER
4813M: Antti Palosaari <crope@iki.fi>
4814L: linux-media@vger.kernel.org
4815W: http://linuxtv.org/
4816W: http://palosaari.fi/linux/
4817Q: http://patchwork.linuxtv.org/project/linux-media/list/
4818T: git git://linuxtv.org/anttip/media_tree.git
4819S: Maintained
4820F: drivers/media/dvb-frontends/hd29l2*
4821
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004822HEWLETT-PACKARD SMART2 RAID DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004823L: iss_storagedev@hp.com
Michael Opdenackeraf9f1b32014-10-13 15:51:28 -07004824S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004825F: Documentation/blockdev/cpqarray.txt
4826F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004827
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05004828HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Don Brace693373d2014-10-15 22:32:41 +00004829M: Don Brace <don.brace@pmcs.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05004830L: iss_storagedev@hp.com
Don Brace693373d2014-10-15 22:32:41 +00004831L: storagedev@pmcs.com
4832L: linux-scsi@vger.kernel.org
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05004833S: Supported
4834F: Documentation/scsi/hpsa.txt
4835F: drivers/scsi/hpsa*.[ch]
4836F: include/linux/cciss*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004837F: include/uapi/linux/cciss*.h
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05004838
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004839HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Don Brace693373d2014-10-15 22:32:41 +00004840M: Don Brace <don.brace@pmcs.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004841L: iss_storagedev@hp.com
Don Brace693373d2014-10-15 22:32:41 +00004842L: storagedev@pmcs.com
4843L: linux-scsi@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004844S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004845F: Documentation/blockdev/cciss.txt
4846F: drivers/block/cciss*
4847F: include/linux/cciss_ioctl.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004848F: include/uapi/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004849
Linus Torvalds1da177e2005-04-16 15:20:36 -07004850HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02004851L: linux-fsdevel@vger.kernel.org
4852S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004853F: Documentation/filesystems/hfs.txt
4854F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004855
Geert Uytterhoevenef575f42014-01-23 15:54:21 -08004856HFSPLUS FILESYSTEM
4857L: linux-fsdevel@vger.kernel.org
4858S: Orphan
4859F: Documentation/filesystems/hfsplus.txt
4860F: fs/hfsplus/
4861
Linus Torvalds1da177e2005-04-16 15:20:36 -07004862HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004863M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004864L: linux-nvidia@lists.surfsouth.com
4865W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
4866S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09004867F: drivers/video/fbdev/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004868
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004869HIBERNATION (aka Software Suspend, aka swsusp)
Rafael J. Wysocki49db1902013-10-09 01:47:53 +02004870M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Rafael J. Wysocki7fb06082014-03-20 03:34:47 +01004871M: Pavel Machek <pavel@ucw.cz>
WANG Congbf1c1382011-10-08 20:57:50 +02004872L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004873S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004874F: arch/x86/power/
4875F: drivers/base/power/
4876F: kernel/power/
4877F: include/linux/suspend.h
4878F: include/linux/freezer.h
4879F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07004880F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004881
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01004882HID CORE LAYER
Jiri Kosinae5f64502015-08-09 09:11:34 +02004883M: Jiri Kosina <jikos@kernel.org>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04004884L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004885T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01004886S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004887F: drivers/hid/
4888F: include/linux/hid*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004889F: include/uapi/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01004890
Srinivas Pandruvada30ee72f2015-05-15 11:35:38 -07004891HID SENSOR HUB DRIVERS
Jiri Kosinae5f64502015-08-09 09:11:34 +02004892M: Jiri Kosina <jikos@kernel.org>
Srinivas Pandruvada30ee72f2015-05-15 11:35:38 -07004893M: Jonathan Cameron <jic23@kernel.org>
4894M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
4895L: linux-input@vger.kernel.org
4896L: linux-iio@vger.kernel.org
4897S: Maintained
4898F: Documentation/hid/hid-sensor*
4899F: drivers/hid/hid-sensor-*
4900F: drivers/iio/*/hid-*
4901F: include/linux/hid-sensor-*
4902
Ingo Molnar38bed542007-02-22 09:09:34 +01004903HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07004904M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar981c3a42014-01-21 10:59:20 +01004905L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004906T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Ingo Molnar38bed542007-02-22 09:09:34 +01004907S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004908F: Documentation/timers/
Thomas Gleixner5cee9642014-06-22 12:06:40 +02004909F: kernel/time/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01004910F: kernel/time/clockevents.c
4911F: kernel/time/tick*.*
4912F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07004913F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07004914F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01004915
Linus Torvalds1da177e2005-04-16 15:20:36 -07004916HIGH-SPEED SCC DRIVER FOR AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -07004917L: linux-hams@vger.kernel.org
Uwe Kleine-König8b64f2a2012-05-29 15:07:11 -07004918S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004919F: drivers/net/hamradio/dmascc.c
4920F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004921
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08004922HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004923M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08004924W: http://www.highpoint-tech.com
4925S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004926F: Documentation/scsi/hptiop.txt
4927F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08004928
Linus Torvalds1da177e2005-04-16 15:20:36 -07004929HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07004930M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004931L: linux-hippi@sunsite.dk
4932S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004933F: include/linux/hippidevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004934F: include/uapi/linux/if_hippi.h
Joe Perches679655d2009-04-07 20:44:32 -07004935F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07004936F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004937
Jouni Malinenff1d2762005-05-12 22:54:16 -04004938HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004939M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07004940L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07004941L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04004942W: http://hostap.epitest.fi/
4943S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004944F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04004945
Carlos Corbachodd8cd772008-02-05 02:17:15 +00004946HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05004947L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01004948S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004949F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00004950
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004951HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07004952M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004953S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07004954F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004955
Joe Perches7d2c86b2009-04-07 20:59:01 -07004956HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07004957M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08004958S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004959F: Documentation/timers/hpet.txt
4960F: drivers/char/hpet.c
4961F: include/linux/hpet.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004962F: include/uapi/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08004963
Jiri Kosinae07b5d72010-03-18 10:59:57 +01004964HPET: x86
Joe Perches9e06f632014-04-03 14:48:53 -07004965S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004966F: arch/x86/kernel/hpet.c
4967F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08004968
Linus Torvalds1da177e2005-04-16 15:20:36 -07004969HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004970M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004971W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
4972S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004973F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004974
Sebastian Reichel3441cde2013-11-27 10:17:22 +01004975HSI SUBSYSTEM
Sebastian Reichel56459ea2014-03-28 19:57:59 +01004976M: Sebastian Reichel <sre@kernel.org>
4977T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
Sebastian Reichel3441cde2013-11-27 10:17:22 +01004978S: Maintained
4979F: Documentation/ABI/testing/sysfs-bus-hsi
Sebastian Reichel56459ea2014-03-28 19:57:59 +01004980F: Documentation/hsi.txt
Sebastian Reichel3441cde2013-11-27 10:17:22 +01004981F: drivers/hsi/
4982F: include/linux/hsi/
4983F: include/uapi/linux/hsi/
4984
Joe Perches7d2c86b2009-04-07 20:59:01 -07004985HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004986M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00004987W: http://www.pharscape.org
4988S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004989F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00004990
Arvid Brodin19990e22013-11-29 23:36:00 +01004991HSR NETWORK PROTOCOL
4992M: Arvid Brodin <arvid.brodin@alten.se>
4993L: netdev@vger.kernel.org
4994S: Maintained
4995F: net/hsr/
4996
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04004997HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004998M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04004999L: linux-input@vger.kernel.org
5000S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005001F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04005002
Linus Torvalds1da177e2005-04-16 15:20:36 -07005003HUGETLB FILESYSTEM
Nadia Yvette Chambers6d49e352012-12-06 10:39:54 +01005004M: Nadia Yvette Chambers <nyc@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005005S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005006F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005007
K. Y. Srinivasan05183182011-12-01 14:31:30 -08005008Hyper-V CORE AND DRIVERS
Joe Perches9c3646d2015-06-25 15:02:00 -07005009M: "K. Y. Srinivasan" <kys@microsoft.com>
K. Y. Srinivasan05183182011-12-01 14:31:30 -08005010M: Haiyang Zhang <haiyangz@microsoft.com>
5011L: devel@linuxdriverproject.org
5012S: Maintained
Haiyang Zhanga4162742013-05-09 14:34:55 -07005013F: arch/x86/include/asm/mshyperv.h
5014F: arch/x86/include/uapi/asm/hyperv.h
5015F: arch/x86/kernel/cpu/mshyperv.c
K. Y. Srinivasan05183182011-12-01 14:31:30 -08005016F: drivers/hid/hid-hyperv.c
Haiyang Zhanga4162742013-05-09 14:34:55 -07005017F: drivers/hv/
Haiyang Zhangf92ca802013-11-21 14:32:10 -08005018F: drivers/input/serio/hyperv-keyboard.c
K. Y. Srinivasan05183182011-12-01 14:31:30 -08005019F: drivers/net/hyperv/
Haiyang Zhanga4162742013-05-09 14:34:55 -07005020F: drivers/scsi/storvsc_drv.c
Jingoo Han8a61f012014-07-01 15:36:01 +09005021F: drivers/video/fbdev/hyperv_fb.c
Haiyang Zhanga4162742013-05-09 14:34:55 -07005022F: include/linux/hyperv.h
5023F: tools/hv/
Dexuan Cui54bf7252015-08-05 00:52:45 -07005024F: Documentation/ABI/stable/sysfs-bus-vmbus
K. Y. Srinivasan05183182011-12-01 14:31:30 -08005025
Jean Delvared85c8a6a2012-11-13 22:27:19 +01005026I2C OVER PARALLEL PORT
Jiri Slabyd8130622015-07-17 16:23:20 -07005027M: Jean Delvare <jdelvare@suse.com>
Jean Delvared85c8a6a2012-11-13 22:27:19 +01005028L: linux-i2c@vger.kernel.org
5029S: Maintained
5030F: Documentation/i2c/busses/i2c-parport
5031F: Documentation/i2c/busses/i2c-parport-light
5032F: drivers/i2c/busses/i2c-parport.c
5033F: drivers/i2c/busses/i2c-parport-light.c
5034
5035I2C/SMBUS CONTROLLER DRIVERS FOR PC
Jiri Slabyd8130622015-07-17 16:23:20 -07005036M: Jean Delvare <jdelvare@suse.com>
Jean Delvared85c8a6a2012-11-13 22:27:19 +01005037L: linux-i2c@vger.kernel.org
5038S: Maintained
5039F: Documentation/i2c/busses/i2c-ali1535
5040F: Documentation/i2c/busses/i2c-ali1563
5041F: Documentation/i2c/busses/i2c-ali15x3
5042F: Documentation/i2c/busses/i2c-amd756
5043F: Documentation/i2c/busses/i2c-amd8111
5044F: Documentation/i2c/busses/i2c-i801
5045F: Documentation/i2c/busses/i2c-nforce2
5046F: Documentation/i2c/busses/i2c-piix4
5047F: Documentation/i2c/busses/i2c-sis5595
5048F: Documentation/i2c/busses/i2c-sis630
5049F: Documentation/i2c/busses/i2c-sis96x
5050F: Documentation/i2c/busses/i2c-via
5051F: Documentation/i2c/busses/i2c-viapro
5052F: drivers/i2c/busses/i2c-ali1535.c
5053F: drivers/i2c/busses/i2c-ali1563.c
5054F: drivers/i2c/busses/i2c-ali15x3.c
5055F: drivers/i2c/busses/i2c-amd756.c
5056F: drivers/i2c/busses/i2c-amd756-s4882.c
5057F: drivers/i2c/busses/i2c-amd8111.c
5058F: drivers/i2c/busses/i2c-i801.c
5059F: drivers/i2c/busses/i2c-isch.c
5060F: drivers/i2c/busses/i2c-nforce2.c
5061F: drivers/i2c/busses/i2c-nforce2-s4985.c
5062F: drivers/i2c/busses/i2c-piix4.c
5063F: drivers/i2c/busses/i2c-sis5595.c
5064F: drivers/i2c/busses/i2c-sis630.c
5065F: drivers/i2c/busses/i2c-sis96x.c
5066F: drivers/i2c/busses/i2c-via.c
5067F: drivers/i2c/busses/i2c-viapro.c
5068
Neil Hormancb7f07a2013-02-10 11:59:03 -05005069I2C/SMBUS ISMT DRIVER
5070M: Seth Heasley <seth.heasley@intel.com>
5071M: Neil Horman <nhorman@tuxdriver.com>
5072L: linux-i2c@vger.kernel.org
5073F: drivers/i2c/busses/i2c-ismt.c
5074F: Documentation/i2c/busses/i2c-ismt
5075
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005076I2C/SMBUS STUB DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07005077M: Jean Delvare <jdelvare@suse.com>
Jean Delvare846557d2008-10-30 15:55:47 +01005078L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005079S: Maintained
Cesar Eduardo Barros8547a5b2012-12-16 21:11:54 +01005080F: drivers/i2c/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005081
Jean Delvare5b543962005-08-15 19:51:02 +02005082I2C SUBSYSTEM
Wolfram Sang14d77c42013-02-08 20:54:40 +01005083M: Wolfram Sang <wsa@the-dreams.de>
Jean Delvare846557d2008-10-30 15:55:47 +01005084L: linux-i2c@vger.kernel.org
Wolfram Sang9d4ea272014-04-02 20:25:59 +02005085W: https://i2c.wiki.kernel.org/
5086Q: https://patchwork.ozlabs.org/project/linux-i2c/list/
Wolfram Sang14d77c42013-02-08 20:54:40 +01005087T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005088S: Maintained
Wolfram Sang40ed1b42014-12-08 10:53:13 +01005089F: Documentation/devicetree/bindings/i2c/
Joe Perches679655d2009-04-07 20:44:32 -07005090F: Documentation/i2c/
5091F: drivers/i2c/
5092F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01005093F: include/linux/i2c-*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005094F: include/uapi/linux/i2c.h
5095F: include/uapi/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005096
Wolfram Sang4560d672014-08-19 10:08:35 -05005097I2C ACPI SUPPORT
5098M: Mika Westerberg <mika.westerberg@linux.intel.com>
5099L: linux-i2c@vger.kernel.org
5100L: linux-acpi@vger.kernel.org
5101S: Maintained
Wolfram Sang4560d672014-08-19 10:08:35 -05005102
Jean Delvared85c8a6a2012-11-13 22:27:19 +01005103I2C-TAOS-EVM DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07005104M: Jean Delvare <jdelvare@suse.com>
Jean Delvared85c8a6a2012-11-13 22:27:19 +01005105L: linux-i2c@vger.kernel.org
5106S: Maintained
5107F: Documentation/i2c/busses/i2c-taos-evm
5108F: drivers/i2c/busses/i2c-taos-evm.c
5109
Till Harbaume8c76ee2007-05-01 23:26:35 +02005110I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005111M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01005112L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07005113W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02005114S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005115F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02005116
Linus Torvalds1da177e2005-04-16 15:20:36 -07005117i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07005118M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005119S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005120F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005121
5122i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07005123M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07005124T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005125S: Maintained
5126
Linus Torvalds1da177e2005-04-16 15:20:36 -07005127IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07005128M: Tony Luck <tony.luck@intel.com>
5129M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005130L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07005131T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005132S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005133F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005134
Leonidas Da Silva Barbosa4cd38752015-08-08 18:29:27 -03005135IBM Power VMX Cryptographic instructions
5136M: Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
Paulo Flabiano Smorigo5cd01fe2015-08-10 16:14:17 -03005137M: Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
Leonidas Da Silva Barbosa4cd38752015-08-08 18:29:27 -03005138L: linux-crypto@vger.kernel.org
5139S: Supported
5140F: drivers/crypto/vmx/Makefile
5141F: drivers/crypto/vmx/Kconfig
5142F: drivers/crypto/vmx/vmx.c
5143F: drivers/crypto/vmx/aes*
5144F: drivers/crypto/vmx/ghash*
5145F: drivers/crypto/vmx/ppc-xlate.pl
5146
Kent Yoder956c2032012-09-07 04:17:01 +08005147IBM Power in-Nest Crypto Acceleration
Leonidas Da Silva Barbosa4cd38752015-08-08 18:29:27 -03005148M: Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
Paulo Flabiano Smorigo5cd01fe2015-08-10 16:14:17 -03005149M: Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
Kent Yoder956c2032012-09-07 04:17:01 +08005150L: linux-crypto@vger.kernel.org
5151S: Supported
Dan Streetman28bceea2015-06-18 12:28:32 -04005152F: drivers/crypto/nx/Makefile
5153F: drivers/crypto/nx/Kconfig
5154F: drivers/crypto/nx/nx-aes*
5155F: drivers/crypto/nx/nx-sha*
5156F: drivers/crypto/nx/nx.*
5157F: drivers/crypto/nx/nx_csbcpb.h
5158F: drivers/crypto/nx/nx_debugfs.h
Kent Yoder956c2032012-09-07 04:17:01 +08005159
Seth Jennings0e16aaf2012-07-19 09:42:40 -05005160IBM Power 842 compression accelerator
Dan Streetman41656aa2015-07-29 19:50:46 -04005161M: Dan Streetman <ddstreet@ieee.org>
Seth Jennings0e16aaf2012-07-19 09:42:40 -05005162S: Supported
Dan Streetman28bceea2015-06-18 12:28:32 -04005163F: drivers/crypto/nx/Makefile
5164F: drivers/crypto/nx/Kconfig
Dan Streetman7011a122015-05-07 13:49:17 -04005165F: drivers/crypto/nx/nx-842*
Dan Streetman2da572c2015-05-07 13:49:14 -04005166F: include/linux/sw842.h
Dan Streetman2062c5b2015-05-07 13:49:15 -04005167F: crypto/842.c
Dan Streetman2da572c2015-05-07 13:49:14 -04005168F: lib/842/
Seth Jennings0e16aaf2012-07-19 09:42:40 -05005169
Linus Torvalds1da177e2005-04-16 15:20:36 -07005170IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07005171M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005172S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005173F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005174
Santiago Leon9d348af2010-09-03 18:29:53 +00005175IBM Power Virtual Ethernet Device Driver
Thomas Falconeddd63a2015-01-09 14:29:40 -06005176M: Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
Santiago Leon9d348af2010-09-03 18:29:53 +00005177L: netdev@vger.kernel.org
5178S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07005179F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00005180
Nathan Fontenote6babec2014-04-09 13:32:06 -05005181IBM Power Virtual SCSI Device Drivers
Tyrel Datwylerbcbde522015-01-12 16:31:34 -08005182M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
Robert Jennings4b7652c2012-07-31 12:34:36 -05005183L: linux-scsi@vger.kernel.org
5184S: Supported
Nathan Fontenote6babec2014-04-09 13:32:06 -05005185F: drivers/scsi/ibmvscsi/ibmvscsi*
5186F: drivers/scsi/ibmvscsi/viosrp.h
5187
5188IBM Power Virtual FC Device Drivers
Tyrel Datwyler44b4dad2015-01-12 16:31:35 -08005189M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
Nathan Fontenote6babec2014-04-09 13:32:06 -05005190L: linux-scsi@vger.kernel.org
5191S: Supported
5192F: drivers/scsi/ibmvscsi/ibmvfc*
Robert Jennings4b7652c2012-07-31 12:34:36 -05005193
Linus Torvalds1da177e2005-04-16 15:20:36 -07005194IBM ServeRAID RAID DRIVER
Michael Opdenackerf9213e72014-08-08 14:23:50 -07005195S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005196F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005197
Peter Tyser6ed9f9c2012-04-18 09:48:24 -05005198ICH LPC AND GPIO DRIVER
5199M: Peter Tyser <ptyser@xes-inc.com>
5200S: Maintained
5201F: drivers/mfd/lpc_ich.c
5202F: drivers/gpio/gpio-ich.c
5203
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01005204IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005205M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005206L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005207Q: http://patchwork.ozlabs.org/project/linux-ide/list/
Joe Perches08deed12012-03-23 15:01:57 -07005208T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005209S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005210F: Documentation/ide/
5211F: drivers/ide/
5212F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005213
Ike Panhc6cb8c132011-08-25 22:28:45 +08005214IDEAPAD LAPTOP EXTRAS DRIVER
5215M: Ike Panhc <ike.pan@canonical.com>
5216L: platform-driver-x86@vger.kernel.org
5217W: http://launchpad.net/ideapad-laptop
5218S: Maintained
5219F: drivers/platform/x86/ideapad-laptop.c
5220
Andrey Moiseev1ea4c162013-08-25 22:51:15 -07005221IDEAPAD LAPTOP SLIDEBAR DRIVER
5222M: Andrey Moiseev <o2g.org.ru@gmail.com>
5223L: linux-input@vger.kernel.org
5224W: https://github.com/o2genum/ideapad-slidebar
5225S: Maintained
5226F: drivers/input/misc/ideapad_slidebar.c
5227
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02005228IDE/ATAPI DRIVERS
Borislav Petkov487ba8e2012-10-29 18:40:10 +01005229M: Borislav Petkov <bp@alien8.de>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01005230L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01005231S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005232F: Documentation/cdrom/ide-cd
5233F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005234
Andy Henroid27471fd2008-10-09 11:45:22 -07005235IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07005236M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02005237L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07005238S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005239F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07005240
Sergey Lapin02cf2282009-06-08 12:18:50 +00005241IEEE 802.15.4 SUBSYSTEM
Alexander Aringb6e195f2014-07-03 23:13:19 +02005242M: Alexander Aring <alex.aring@gmail.com>
Varka Bhadramebef9c12014-08-08 17:32:45 +05305243L: linux-wpan@vger.kernel.org
5244W: https://github.com/linux-wpan
5245T: git git://github.com/linux-wpan/linux-wpan-next.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00005246S: Maintained
5247F: net/ieee802154/
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00005248F: net/mac802154/
Cesar Eduardo Barros251741b2013-01-04 15:35:30 -08005249F: drivers/net/ieee802154/
Alexander Aring580947d2014-10-25 09:41:05 +02005250F: include/linux/nl802154.h
5251F: include/linux/ieee802154.h
5252F: include/net/nl802154.h
5253F: include/net/mac802154.h
5254F: include/net/af_ieee802154.h
5255F: include/net/cfg802154.h
5256F: include/net/ieee802154_netdev.h
Varka Bhadramebef9c12014-08-08 17:32:45 +05305257F: Documentation/networking/ieee802154.txt
Sergey Lapin02cf2282009-06-08 12:18:50 +00005258
Sean Youngb1c97192014-10-23 17:58:22 -03005259IGORPLUG-USB IR RECEIVER
5260M: Sean Young <sean@mess.org>
5261L: linux-media@vger.kernel.org
5262S: Maintained
5263F: drivers/media/rc/igorplugusb.c
5264
Sean Young40ad4a32012-11-19 10:32:53 -03005265IGUANAWORKS USB IR TRANSCEIVER
5266M: Sean Young <sean@mess.org>
5267L: linux-media@vger.kernel.org
5268S: Maintained
5269F: drivers/media/rc/iguanair.c
5270
Ameya Palande9545f862012-01-10 09:00:58 -08005271IIO SUBSYSTEM AND DRIVERS
Sachin Kamat030a13d2013-09-11 11:00:00 +01005272M: Jonathan Cameron <jic23@kernel.org>
Lars-Peter Clausenf0d61162014-08-18 09:29:00 +01005273R: Hartmut Knaack <knaack.h@gmx.de>
5274R: Lars-Peter Clausen <lars@metafoo.de>
5275R: Peter Meerwald <pmeerw@pmeerw.net>
Ameya Palande9545f862012-01-10 09:00:58 -08005276L: linux-iio@vger.kernel.org
5277S: Maintained
Lars-Peter Clausen03e7c252012-04-26 13:46:42 +02005278F: drivers/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08005279F: drivers/staging/iio/
Daniel Baluta8fe671f2014-11-13 15:19:47 -08005280F: include/linux/iio/
Roberta Dobrescu817020c2015-02-26 10:49:25 +02005281F: tools/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08005282
Stanislaw Gruszka65519262011-01-08 15:19:40 +01005283IKANOS/ADI EAGLE ADSL USB DRIVER
5284M: Matthieu Castet <castet.matthieu@free.fr>
5285M: Stanislaw Gruszka <stf_xl@wp.pl>
5286S: Maintained
5287F: drivers/usb/atm/ueagle-atm.c
5288
Guenter Roecke89ab512013-03-08 08:13:09 -08005289INA209 HARDWARE MONITOR DRIVER
5290M: Guenter Roeck <linux@roeck-us.net>
5291L: lm-sensors@lm-sensors.org
5292S: Maintained
5293F: Documentation/hwmon/ina209
5294F: Documentation/devicetree/bindings/i2c/ina209.txt
5295F: drivers/hwmon/ina209.c
5296
5297INA2XX HARDWARE MONITOR DRIVER
5298M: Guenter Roeck <linux@roeck-us.net>
5299L: lm-sensors@lm-sensors.org
5300S: Maintained
5301F: Documentation/hwmon/ina2xx
5302F: drivers/hwmon/ina2xx.c
5303F: include/linux/platform_data/ina2xx.h
5304
Samuel Iglesias Gonsalvez14dc1242012-11-16 16:19:59 +01005305INDUSTRY PACK SUBSYSTEM (IPACK)
5306M: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
5307M: Jens Taprogge <jens.taprogge@taprogge.org>
5308M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5309L: industrypack-devel@lists.sourceforge.net
5310W: http://industrypack.sourceforge.net
5311S: Maintained
5312F: drivers/ipack/
5313
Zubair Lutfullah Kakakhel8adc53f2015-03-18 16:16:37 +00005314INGENIC JZ4780 DMA Driver
5315M: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
5316S: Maintained
5317F: drivers/dma/dma-jz4780.c
5318
Mimi Zoharaa7168f2009-02-04 09:07:03 -05005319INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Mimi Zohar74dd7442014-02-27 08:44:45 -05005320M: Mimi Zohar <zohar@linux.vnet.ibm.com>
Dmitry Kasatkinbfd33c42015-01-15 14:18:18 +02005321M: Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
Mimi Zohar74dd7442014-02-27 08:44:45 -05005322L: linux-ima-devel@lists.sourceforge.net
5323L: linux-ima-user@lists.sourceforge.net
5324L: linux-security-module@vger.kernel.org
Mimi Zoharaa7168f2009-02-04 09:07:03 -05005325S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005326F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05005327
James Hogan9a4ea5a2014-11-17 09:17:49 -03005328IMGTEC IR DECODER DRIVER
5329M: James Hogan <james.hogan@imgtec.com>
5330S: Maintained
5331F: drivers/media/rc/img-ir/
5332
Linus Torvalds1da177e2005-04-16 15:20:36 -07005333IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005334L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09005335S: Orphan
Jingoo Han8a61f012014-07-01 15:36:01 +09005336F: drivers/video/fbdev/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005337
5338INFINIBAND SUBSYSTEM
Doug Ledfordb6b2bbe2015-05-05 12:57:09 -04005339M: Doug Ledford <dledford@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005340M: Sean Hefty <sean.hefty@intel.com>
5341M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07005342L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07005343W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08005344Q: http://patchwork.kernel.org/project/linux-rdma/list/
Doug Ledford2936ae02015-05-11 21:03:36 -04005345T: git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005346S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005347F: Documentation/infiniband/
5348F: drivers/infiniband/
Doug Ledford2dfcad32015-08-27 14:18:57 -04005349F: drivers/staging/rdma/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005350F: include/uapi/linux/if_infiniband.h
Yann Droneaud954138d2015-05-04 14:31:03 +02005351F: include/uapi/rdma/
5352F: include/rdma/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005353
Robert Lovec9f04f52005-07-15 12:21:07 -04005354INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07005355M: John McCutchan <john@johnmccutchan.com>
5356M: Robert Love <rlove@rlove.org>
5357M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04005358S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005359F: Documentation/filesystems/inotify.txt
5360F: fs/notify/inotify/
5361F: include/linux/inotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005362F: include/uapi/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04005363
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005364INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005365M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005366L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005367Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07005368T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005369S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005370F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07005371F: include/linux/input.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005372F: include/uapi/linux/input.h
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07005373F: include/linux/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005374
Henrik Rydberg3267a872010-06-24 19:10:40 -07005375INPUT MULTITOUCH (MT) PROTOCOL
Henrik Rydberg75dd1122015-01-08 14:32:21 -08005376M: Henrik Rydberg <rydberg@bitmath.org>
Henrik Rydberg3267a872010-06-24 19:10:40 -07005377L: linux-input@vger.kernel.org
Henrik Rydberg75dd1122015-01-08 14:32:21 -08005378S: Odd fixes
Henrik Rydberg3267a872010-06-24 19:10:40 -07005379F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01005380F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07005381K: \b(ABS|SYN)_MT_
5382
Jie Yang97fa99a2015-02-02 16:55:27 +08005383INTEL ASoC BDW/HSW DRIVERS
5384M: Jie Yang <yang.jie@linux.intel.com>
Jim Davise5747e42015-06-25 15:01:58 -07005385L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Jie Yang97fa99a2015-02-02 16:55:27 +08005386S: Supported
Joe Perchese8e12252015-06-30 14:59:39 -07005387F: sound/soc/intel/common/sst-dsp*
5388F: sound/soc/intel/common/sst-firmware.c
5389F: sound/soc/intel/boards/broadwell.c
5390F: sound/soc/intel/haswell/
Jie Yang97fa99a2015-02-02 16:55:27 +08005391
Dave Jiang4ac13e12011-07-29 17:16:55 -07005392INTEL C600 SERIES SAS CONTROLLER DRIVER
5393M: Intel SCU Linux support <intel-linux-scu@intel.com>
Lukasz Doraufdc58132014-04-07 15:39:58 -07005394M: Artur Paszkiewicz <artur.paszkiewicz@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07005395L: linux-scsi@vger.kernel.org
Dave Jiang71068912012-09-25 15:24:56 -07005396T: git git://git.code.sf.net/p/intel-sas/isci
5397S: Supported
Dave Jiang4ac13e12011-07-29 17:16:55 -07005398F: drivers/scsi/isci/
Dave Jiang4ac13e12011-07-29 17:16:55 -07005399
Len Brown26717172010-03-08 14:07:30 -05005400INTEL IDLE DRIVER
5401M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02005402L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005403T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05005404S: Supported
5405F: drivers/idle/intel_idle.c
5406
Kristen Carlson Accardi7c1ac182014-12-15 15:58:24 -08005407INTEL PSTATE DRIVER
5408M: Kristen Carlson Accardi <kristen@linux.intel.com>
5409L: linux-pm@vger.kernel.org
5410S: Supported
5411F: drivers/cpufreq/intel_pstate.c
5412
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005413INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08005414M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005415L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005416S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005417F: Documentation/fb/intelfb.txt
Jingoo Han8a61f012014-07-01 15:36:01 +09005418F: drivers/video/fbdev/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005419
Linus Torvalds1da177e2005-04-16 15:20:36 -07005420INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005421M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005422L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005423S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09005424F: drivers/video/fbdev/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005425
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05305426INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005427M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05005428L: platform-driver-x86@vger.kernel.org
Rafael J. Wysocki5ca92bd2013-10-10 23:03:44 +02005429W: https://01.org/linux-acpi
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05305430S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005431F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05305432
Linus Torvalds1da177e2005-04-16 15:20:36 -07005433INTEL IA32 MICROCODE UPDATE SUPPORT
Borislav Petkovca68a522015-03-29 15:54:13 +02005434M: Borislav Petkov <bp@alien8.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005435S: Maintained
Joe Perches73d425f2014-08-08 14:24:57 -07005436F: arch/x86/kernel/cpu/microcode/core*
5437F: arch/x86/kernel/cpu/microcode/intel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005438
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07005439INTEL I/OAT DMA DRIVER
Dave Jiang18ebd562013-10-22 15:29:20 -07005440M: Dave Jiang <dave.jiang@intel.com>
Dan Williams08223d82014-08-19 06:07:56 -07005441R: Dan Williams <dan.j.williams@intel.com>
Dave Jiang18ebd562013-10-22 15:29:20 -07005442L: dmaengine@vger.kernel.org
5443Q: https://patchwork.kernel.org/project/linux-dmaengine/list/
5444S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005445F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07005446
David Woodhouse6c8909b2008-10-18 16:12:17 +01005447INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07005448M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01005449L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07005450T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01005451S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07005452F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07005453F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01005454
Dan Williamsb3e5f262007-08-07 10:26:35 -07005455INTEL IOP-ADMA DMA DRIVER
Dan Williams08223d82014-08-19 06:07:56 -07005456R: Dan Williams <dan.j.williams@intel.com>
Dan Williams1dd83722012-08-15 19:20:02 -07005457S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07005458F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07005459
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01005460INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Krzysztof Hałasa5529c2c2014-09-30 10:32:58 +02005461M: Krzysztof Halasa <khalasa@piap.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01005462S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005463F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
5464F: arch/arm/mach-ixp4xx/include/mach/npe.h
5465F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
5466F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07005467F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07005468F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01005469
Michael Buesch844dd052006-06-26 00:24:59 -07005470INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005471M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07005472S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005473F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07005474
Jeff Kirsher2f302322015-03-25 17:01:03 -07005475INTEL ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005476M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Jeff Kirsher2f302322015-03-25 17:01:03 -07005477R: Jesse Brandeburg <jesse.brandeburg@intel.com>
5478R: Shannon Nelson <shannon.nelson@intel.com>
5479R: Carolyn Wyborny <carolyn.wyborny@intel.com>
5480R: Don Skidmore <donald.c.skidmore@intel.com>
5481R: Matthew Vick <matthew.vick@intel.com>
5482R: John Ronciak <john.ronciak@intel.com>
5483R: Mitch Williams <mitch.a.williams@intel.com>
5484L: intel-wired-lan@lists.osuosl.org
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00005485W: http://www.intel.com/support/feedback.htm
Auke Kokd94e6fe2008-03-03 14:37:47 -08005486W: http://e1000.sourceforge.net/
Jeff Kirsher2f302322015-03-25 17:01:03 -07005487Q: http://patchwork.ozlabs.org/project/intel-wired-lan/list/
5488T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
5489T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005490S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00005491F: Documentation/networking/e100.txt
5492F: Documentation/networking/e1000.txt
5493F: Documentation/networking/e1000e.txt
5494F: Documentation/networking/igb.txt
5495F: Documentation/networking/igbvf.txt
5496F: Documentation/networking/ixgb.txt
5497F: Documentation/networking/ixgbe.txt
5498F: Documentation/networking/ixgbevf.txt
Jesse Brandeburg1bff6522013-09-11 08:40:23 +00005499F: Documentation/networking/i40e.txt
Greg Rose105bf2f2013-12-21 06:13:16 +00005500F: Documentation/networking/i40evf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07005501F: drivers/net/ethernet/intel/
Joe Perchesbc90d292014-02-25 13:35:53 -08005502F: drivers/net/ethernet/intel/*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005503
Linus Walleij0963d59b2013-10-19 15:39:17 +02005504INTEL-MID GPIO DRIVER
5505M: David Cohen <david.a.cohen@linux.intel.com>
5506L: linux-gpio@vger.kernel.org
5507S: Maintained
5508F: drivers/gpio/gpio-intel-mid.c
5509
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04005510INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
5511M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07005512L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04005513S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005514F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07005515F: Documentation/networking/README.ipw2200
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04005516F: drivers/net/wireless/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06005517
Shane Wang4bd96a72010-03-10 14:36:10 +08005518INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
Gang Weie9b7d7c2012-09-17 14:08:59 -07005519M: Richard L Maliszewski <richard.l.maliszewski@intel.com>
5520M: Gang Wei <gang.wei@intel.com>
Shane Wang4bd96a72010-03-10 14:36:10 +08005521M: Shane Wang <shane.wang@intel.com>
5522L: tboot-devel@lists.sourceforge.net
5523W: http://tboot.sourceforge.net
Gang Weie9b7d7c2012-09-17 14:08:59 -07005524T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
Shane Wang4bd96a72010-03-10 14:36:10 +08005525S: Supported
5526F: Documentation/intel_txt.txt
5527F: include/linux/tboot.h
5528F: arch/x86/kernel/tboot.c
5529
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08005530INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07005531M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08005532M: linux-wimax@intel.com
Joe Perches49e7d9d2015-04-15 16:17:31 -07005533L: wimax@linuxwimax.org (subscribers-only)
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08005534S: Supported
5535W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07005536F: Documentation/wimax/README.i2400m
5537F: drivers/net/wimax/i2400m/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005538F: include/uapi/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08005539
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01005540INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
5541M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08005542L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01005543S: Supported
Wey-Yi Guyefa31442011-02-22 16:43:05 -08005544F: drivers/net/wireless/iwlegacy/
5545
Zhu Yib481de92007-09-25 17:54:57 -07005546INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07005547M: Johannes Berg <johannes.berg@intel.com>
Johannes Berg6161b022013-07-23 14:03:39 +02005548M: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07005549M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07005550L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07005551W: http://intellinuxwireless.org
Wey-Yi Guyb62ff7182011-09-22 15:14:49 -07005552T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07005553S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005554F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07005555
Tomas Winklerde8fe022012-05-09 16:39:02 +03005556INTEL MANAGEMENT ENGINE (mei)
5557M: Tomas Winkler <tomas.winkler@intel.com>
5558L: linux-kernel@vger.kernel.org
5559S: Supported
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005560F: include/uapi/linux/mei.h
Tomas Winkler5069288b2015-06-13 22:11:33 +03005561F: include/linux/mei_cl_bus.h
Tomas Winklerde8fe022012-05-09 16:39:02 +03005562F: drivers/misc/mei/*
Cesar Eduardo Barrose07950a2013-01-04 15:35:36 -08005563F: Documentation/misc-devices/mei/*
Tomas Winklerde8fe022012-05-09 16:39:02 +03005564
qipeng.zha0a8b8352015-06-27 00:32:15 +08005565INTEL PMC IPC DRIVER
5566M: Zha Qipeng<qipeng.zha@intel.com>
5567L: platform-driver-x86@vger.kernel.org
5568S: Maintained
5569F: drivers/platform/x86/intel_pmc_ipc.c
5570F: arch/x86/include/asm/intel_pmc_ipc.h
5571
Ralf Baechlecb109a02007-08-30 23:56:30 -07005572IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005573M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005574L: linux-mips@linux-mips.org
5575S: Maintained
Jeff Kirsher8862bf12011-05-20 07:50:27 -07005576F: drivers/net/ethernet/sgi/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005577
Ralf Baechlecb109a02007-08-30 23:56:30 -07005578IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005579M: Pat Gefre <pfg@sgi.com>
Ralf Baechled39e0722010-10-19 18:32:41 +01005580L: linux-serial@vger.kernel.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07005581S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08005582F: drivers/tty/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07005583
Stephen Warren0b6e8562013-09-13 13:10:27 -06005584IOMMU DRIVERS
5585M: Joerg Roedel <joro@8bytes.org>
5586L: iommu@lists.linux-foundation.org
5587T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
5588S: Maintained
5589F: drivers/iommu/
5590
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005591IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07005592M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005593S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005594F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005595
Francois Romieu1202d6f2007-09-17 17:13:55 -07005596IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005597M: Francois Romieu <romieu@fr.zoreil.com>
5598M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07005599L: netdev@vger.kernel.org
5600S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07005601F: drivers/net/ethernet/icplus/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07005602
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005603IPATH DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04005604M: Mike Marciniszyn <infinipath@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07005605L: linux-rdma@vger.kernel.org
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07005606S: Maintained
Dennis Dalessandro6f9b3892015-07-30 09:25:42 -04005607F: drivers/staging/rdma/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08005608
Corey Minyard4409ebe2006-04-20 02:43:12 -07005609IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005610M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08005611L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07005612W: http://openipmi.sourceforge.net/
5613S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005614F: Documentation/IPMI.txt
5615F: drivers/char/ipmi/
5616F: include/linux/ipmi*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005617F: include/uapi/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07005618
Kenneth Westfield2d800892015-03-03 16:21:50 -08005619QCOM AUDIO (ASoC) DRIVERS
5620M: Patrick Lai <plai@codeaurora.org>
5621M: Banajit Goswami <bgoswami@codeaurora.org>
5622L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5623S: Supported
5624F: sound/soc/qcom/
5625
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005626IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005627M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005628L: linux-scsi@vger.kernel.org
5629W: http://www.adaptec.com/
5630S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005631F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005632
5633IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07005634M: Wensong Zhang <wensong@linux-vs.org>
5635M: Simon Horman <horms@verge.net.au>
5636M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005637L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005638L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005639S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005640F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07005641F: include/net/ip_vs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005642F: include/uapi/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07005643F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005644
Randy Dunlape7839f22008-10-12 16:11:45 -07005645IPWIRELESS DRIVER
Jiri Kosinae5f64502015-08-09 09:11:34 +02005646M: Jiri Kosina <jikos@kernel.org>
Jiri Slabyd8130622015-07-17 16:23:20 -07005647M: David Sterba <dsterba@suse.com>
Jiri Kosina92094aa2011-11-13 21:41:00 +01005648S: Odd Fixes
Greg Kroah-Hartman282361a2011-02-22 16:23:22 -08005649F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01005650
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005651IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005652M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005653L: netdev@vger.kernel.org
5654S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005655F: include/net/ipx.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005656F: include/uapi/linux/ipx.h
Joe Perches679655d2009-04-07 20:44:32 -07005657F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005658
Linus Torvalds1da177e2005-04-16 15:20:36 -07005659IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005660M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07005661L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01005662L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005663W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07005664S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02005665T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07005666F: Documentation/networking/irda.txt
5667F: drivers/net/irda/
5668F: include/net/irda/
5669F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005670
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02005671IRQ SUBSYSTEM
5672M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar981c3a42014-01-21 10:59:20 +01005673L: linux-kernel@vger.kernel.org
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02005674S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005675T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02005676F: kernel/irq/
Jason Cooper2ed9fd22014-05-13 18:47:01 +00005677
5678IRQCHIP DRIVERS
5679M: Thomas Gleixner <tglx@linutronix.de>
5680M: Jason Cooper <jason@lakedaemon.net>
Thomas Gleixner54d9ffc2015-07-30 12:38:06 +02005681M: Marc Zyngier <marc.zyngier@arm.com>
Jason Cooper2ed9fd22014-05-13 18:47:01 +00005682L: linux-kernel@vger.kernel.org
5683S: Maintained
5684T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5685T: git git://git.infradead.org/users/jcooper/linux.git irqchip/core
Geert Uytterhoeven5b5a9062014-08-28 09:56:47 +02005686F: Documentation/devicetree/bindings/interrupt-controller/
Thomas Petazzoniedd96902012-10-28 10:05:40 +01005687F: drivers/irqchip/
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02005688
Grant Likely7ab3a832012-02-14 14:06:47 -07005689IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
Thomas Gleixnerb09dec22015-07-30 12:40:55 +02005690M: Jiang Liu <jiang.liu@linux.intel.com>
5691M: Marc Zyngier <marc.zyngier@arm.com>
Grant Likely7ab3a832012-02-14 14:06:47 -07005692S: Maintained
Thomas Gleixnerb09dec22015-07-30 12:40:55 +02005693T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Grant Likely7ab3a832012-02-14 14:06:47 -07005694F: Documentation/IRQ-domain.txt
5695F: include/linux/irqdomain.h
5696F: kernel/irq/irqdomain.c
Thomas Gleixnerb09dec22015-07-30 12:40:55 +02005697F: kernel/irq/msi.c
Grant Likely7ab3a832012-02-14 14:06:47 -07005698
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005699ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07005700M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005701S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005702F: Documentation/isapnp.txt
5703F: drivers/pnp/isapnp/
5704F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005705
Hans Verkuild39b8422012-11-23 07:07:02 -03005706ISA RADIO MODULE
5707M: Hans Verkuil <hverkuil@xs4all.nl>
5708L: linux-media@vger.kernel.org
5709T: git git://linuxtv.org/media_tree.git
5710W: http://linuxtv.org
5711S: Maintained
5712F: drivers/media/radio/radio-isa*
5713
Harry Wei71a6d0a2011-05-11 15:13:33 -07005714iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
5715M: Peter Jones <pjones@redhat.com>
5716M: Konrad Rzeszutek Wilk <konrad@kernel.org>
5717S: Maintained
5718F: drivers/firmware/iscsi_ibft*
5719
Mike Christie14816b12007-11-28 16:22:06 -08005720ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07005721M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b12007-11-28 16:22:06 -08005722L: open-iscsi@googlegroups.com
5723W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07005724T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b12007-11-28 16:22:06 -08005725S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005726F: drivers/scsi/*iscsi*
5727F: include/scsi/*iscsi*
Mike Christie14816b12007-11-28 16:22:06 -08005728
Or Gerlitz1e65eb42013-05-08 12:21:19 +00005729ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
5730M: Or Gerlitz <ogerlitz@mellanox.com>
Or Gerlitzb261aea2014-10-01 14:02:17 +03005731M: Sagi Grimberg <sagig@mellanox.com>
Or Gerlitz1e65eb42013-05-08 12:21:19 +00005732M: Roi Dayan <roid@mellanox.com>
5733L: linux-rdma@vger.kernel.org
5734S: Supported
5735W: http://www.openfabrics.org
5736W: www.open-iscsi.org
5737Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches14430812013-09-11 14:23:50 -07005738F: drivers/infiniband/ulp/iser/
Or Gerlitz1e65eb42013-05-08 12:21:19 +00005739
Sagi Grimberg2b70e5f2015-01-07 12:54:44 +02005740ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
5741M: Sagi Grimberg <sagig@mellanox.com>
5742T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
5743L: linux-rdma@vger.kernel.org
5744L: target-devel@vger.kernel.org
5745S: Supported
5746W: http://www.linux-iscsi.org
5747F: drivers/infiniband/ulp/isert
5748
Linus Torvalds1da177e2005-04-16 15:20:36 -07005749ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005750M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07005751L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07005752L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005753W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07005754T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005755S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005756F: Documentation/isdn/
5757F: drivers/isdn/
5758F: include/linux/isdn.h
5759F: include/linux/isdn/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005760F: include/uapi/linux/isdn.h
5761F: include/uapi/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005762
5763ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07005764M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07005765L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005766W: http://www.melware.de
5767S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005768F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005769
Jean Delvared6248702010-03-05 22:17:20 +01005770IT87 HARDWARE MONITORING DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07005771M: Jean Delvare <jdelvare@suse.com>
Jean Delvared6248702010-03-05 22:17:20 +01005772L: lm-sensors@lm-sensors.org
5773S: Maintained
5774F: Documentation/hwmon/it87
5775F: drivers/hwmon/it87.c
5776
Malcolm Priestley68620bd2012-11-04 19:16:31 +01005777IT913X MEDIA DRIVER
Antti Palosaarid7104bf2013-03-09 22:58:13 -03005778M: Antti Palosaari <crope@iki.fi>
5779L: linux-media@vger.kernel.org
5780W: http://linuxtv.org/
5781W: http://palosaari.fi/linux/
5782Q: http://patchwork.linuxtv.org/project/linux-media/list/
5783T: git git://linuxtv.org/anttip/media_tree.git
5784S: Maintained
Antti Palosaari249c6972014-09-01 19:44:59 -03005785F: drivers/media/tuners/it913x*
Antti Palosaarid7104bf2013-03-09 22:58:13 -03005786
Hans Verkuil91821ff2007-12-02 09:35:33 -03005787IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03005788M: Andy Walls <awalls@md.metrocast.net>
Joe Perches7b212ed2014-12-10 15:51:24 -08005789L: ivtv-devel@ivtvdriver.org (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005790L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005791T: git git://linuxtv.org/media_tree.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03005792W: http://www.ivtvdriver.org
5793S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005794F: Documentation/video4linux/*.ivtv
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005795F: drivers/media/pci/ivtv/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005796F: include/uapi/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03005797
Malcolm Priestley68620bd2012-11-04 19:16:31 +01005798IX2505V MEDIA DRIVER
5799M: Malcolm Priestley <tvboxspy@gmail.com>
5800L: linux-media@vger.kernel.org
5801W: http://linuxtv.org/
5802Q: http://patchwork.linuxtv.org/project/linux-media/list/
5803S: Maintained
5804F: drivers/media/dvb-frontends/ix2505v*
5805
Guenter Roeck4453d732010-08-09 17:21:08 -07005806JC42.4 TEMPERATURE SENSOR DRIVER
5807M: Guenter Roeck <linux@roeck-us.net>
5808L: lm-sensors@lm-sensors.org
5809S: Maintained
5810F: drivers/hwmon/jc42.c
5811F: Documentation/hwmon/jc42
5812
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005813JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06005814M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005815L: jfs-discussion@lists.sourceforge.net
5816W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07005817T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05005818S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005819F: Documentation/filesystems/jfs.txt
5820F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005821
Guo-Fu Tseng95252232008-09-16 01:00:11 +08005822JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005823M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08005824L: netdev@vger.kernel.org
5825S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07005826F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08005827
Linus Torvalds1da177e2005-04-16 15:20:36 -07005828JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07005829M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04005830L: linux-mtd@lists.infradead.org
5831W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07005832S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005833F: fs/jffs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005834F: include/uapi/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005835
Theodore Ts'od183e112011-05-26 09:53:09 -04005836JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
5837M: "Theodore Ts'o" <tytso@mit.edu>
Jan Karac290ea02015-06-18 16:52:29 +02005838M: Jan Kara <jack@suse.com>
Theodore Ts'od183e112011-05-26 09:53:09 -04005839L: linux-ext4@vger.kernel.org
5840S: Maintained
5841F: fs/jbd2/
5842F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07005843
Mikhail Ulyanov207dab52015-07-22 08:23:05 -03005844JPU V4L2 MEM2MEM DRIVER FOR RENESAS
5845M: Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
5846L: linux-media@vger.kernel.org
5847S: Maintained
5848F: drivers/media/platform/rcar_jpu.c
5849
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03005850JSM Neo PCI based serial card
Thadeu Lima de Souza Cascardo9d141cb2013-05-22 15:15:24 -03005851M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03005852L: linux-serial@vger.kernel.org
5853S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08005854F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03005855
Clemens Ladischaf399172011-01-10 16:32:54 +01005856K10TEMP HARDWARE MONITORING DRIVER
5857M: Clemens Ladisch <clemens@ladisch.de>
5858L: lm-sensors@lm-sensors.org
5859S: Maintained
5860F: Documentation/hwmon/k10temp
5861F: drivers/hwmon/k10temp.c
5862
Rudolf Marek4660cb32006-10-08 22:01:26 +02005863K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005864M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02005865L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005866S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005867F: Documentation/hwmon/k8temp
5868F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005869
5870KCONFIG
Michal Marek5eb1f992013-10-30 12:02:27 +01005871M: "Yann E. MORIN" <yann.morin.1998@free.fr>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02005872L: linux-kbuild@vger.kernel.org
Joe Perchescea83212014-03-03 15:38:38 -08005873T: git git://gitorious.org/linux-kconfig/linux-kconfig
Michal Marek5eb1f992013-10-30 12:02:27 +01005874S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005875F: Documentation/kbuild/kconfig-language.txt
5876F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005877
Vivek Goyalea6c2082006-05-20 14:59:55 -07005878KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07005879M: Vivek Goyal <vgoyal@redhat.com>
5880M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07005881L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07005882W: http://lse.sourceforge.net/kdump/
5883S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005884F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07005885
Hans Verkuilf41bf022012-11-23 07:04:36 -03005886KEENE FM RADIO TRANSMITTER DRIVER
5887M: Hans Verkuil <hverkuil@xs4all.nl>
5888L: linux-media@vger.kernel.org
5889T: git git://linuxtv.org/media_tree.git
5890W: http://linuxtv.org
5891S: Maintained
5892F: drivers/media/radio/radio-keene*
5893
Linus Torvalds1da177e2005-04-16 15:20:36 -07005894KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07005895M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08005896L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005897S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005898F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005899
Michal Marek70fb7ba2010-01-29 14:22:43 +01005900KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Jiri Slabyd8130622015-07-17 16:23:20 -07005901M: Michal Marek <mmarek@suse.com>
Joe Perches08deed12012-03-23 15:01:57 -07005902T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
5903T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02005904L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08005905S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005906F: Documentation/kbuild/
5907F: Makefile
5908F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01005909F: scripts/basic/
5910F: scripts/mk*
5911F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005912
5913KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07005914L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07005915W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07005916S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07005917
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04005918KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005919M: "J. Bruce Fields" <bfields@fieldses.org>
J. Bruce Fields883985f2015-08-24 16:44:40 -04005920M: Jeff Layton <jlayton@poochiereds.net>
Neil Brown16141c02007-12-11 16:16:12 -08005921L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005922W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08005923S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005924F: fs/nfsd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005925F: include/uapi/linux/nfsd/
Joe Perches679655d2009-04-07 20:44:32 -07005926F: fs/lockd/
5927F: fs/nfs_common/
5928F: net/sunrpc/
5929F: include/linux/lockd/
5930F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005931F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005932
Shuah Khan13b122b2014-10-13 15:51:21 -07005933KERNEL SELFTEST FRAMEWORK
5934M: Shuah Khan <shuahkh@osg.samsung.com>
5935L: linux-api@vger.kernel.org
5936T: git git://git.kernel.org/pub/scm/shuah/linux-kselftest
5937S: Maintained
5938F: tools/testing/selftests
5939
Avi Kivity426d62e2006-12-13 00:34:03 -08005940KERNEL VIRTUAL MACHINE (KVM)
Gleb Natapov0a00a772013-11-27 16:35:22 +02005941M: Gleb Natapov <gleb@kernel.org>
Paolo Bonzinic93a64f2013-05-15 19:02:24 +02005942M: Paolo Bonzini <pbonzini@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03005943L: kvm@vger.kernel.org
Ramkumar Ramachandrae3e58472013-10-31 16:16:34 +05305944W: http://www.linux-kvm.org
Ramkumar Ramachandraa94b40a2013-10-31 16:29:23 +05305945T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
Avi Kivity426d62e2006-12-13 00:34:03 -08005946S: Supported
Paolo Bonzinic93a64f2013-05-15 19:02:24 +02005947F: Documentation/*/kvm*.txt
5948F: Documentation/virtual/kvm/
Joe Perches679655d2009-04-07 20:44:32 -07005949F: arch/*/kvm/
Christian Borntraeger1662e862015-03-12 14:59:26 +01005950F: arch/x86/kernel/kvm.c
5951F: arch/x86/kernel/kvmclock.c
Joe Perches679655d2009-04-07 20:44:32 -07005952F: arch/*/include/asm/kvm*
5953F: include/linux/kvm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005954F: include/uapi/linux/kvm*
Joe Perches679655d2009-04-07 20:44:32 -07005955F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08005956
Joerg Roedelad8003d2008-09-10 20:01:07 +02005957KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joerg Roedel7de609c2012-10-29 19:08:21 +01005958M: Joerg Roedel <joro@8bytes.org>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07005959L: kvm@vger.kernel.org
5960W: http://kvm.qumranet.com
Joerg Roedel7de609c2012-10-29 19:08:21 +01005961S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005962F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07005963F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07005964
Hollis Blanchard513014b2008-04-16 23:28:08 -05005965KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Jiri Slabyd8130622015-07-17 16:23:20 -07005966M: Alexander Graf <agraf@suse.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03005967L: kvm-ppc@vger.kernel.org
5968W: http://kvm.qumranet.com
Michael Ellerman6a7f9722012-10-15 19:01:05 +00005969T: git git://github.com/agraf/linux-2.6.git
Hollis Blanchard513014b2008-04-16 23:28:08 -05005970S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005971F: arch/powerpc/include/asm/kvm*
5972F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05005973
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01005974KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07005975M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02005976M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01005977L: linux-s390@vger.kernel.org
5978W: http://www.ibm.com/developerworks/linux/linux390/
5979S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005980F: Documentation/s390/kvm.txt
5981F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07005982F: arch/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01005983
Christoffer Dalla7494742013-01-20 18:42:26 -05005984KERNEL VIRTUAL MACHINE (KVM) FOR ARM
Christoffer Dall0f4ca792013-06-21 13:54:36 -07005985M: Christoffer Dall <christoffer.dall@linaro.org>
Marc Zyngier5c8818b2014-04-26 03:43:01 -07005986M: Marc Zyngier <marc.zyngier@arm.com>
5987L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Christoffer Dalla7494742013-01-20 18:42:26 -05005988L: kvmarm@lists.cs.columbia.edu
5989W: http://systems.cs.columbia.edu/projects/kvm-arm
Christoffer Dall0f4ca792013-06-21 13:54:36 -07005990S: Supported
Christoffer Dalla7494742013-01-20 18:42:26 -05005991F: arch/arm/include/uapi/asm/kvm*
5992F: arch/arm/include/asm/kvm*
5993F: arch/arm/kvm/
Marc Zyngier5c8818b2014-04-26 03:43:01 -07005994F: virt/kvm/arm/
5995F: include/kvm/arm_*
Christoffer Dalla7494742013-01-20 18:42:26 -05005996
Marc Zyngier6394a3e2013-04-02 17:49:40 +01005997KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
Marc Zyngier5c8818b2014-04-26 03:43:01 -07005998M: Christoffer Dall <christoffer.dall@linaro.org>
Marc Zyngier6394a3e2013-04-02 17:49:40 +01005999M: Marc Zyngier <marc.zyngier@arm.com>
6000L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6001L: kvmarm@lists.cs.columbia.edu
6002S: Maintained
6003F: arch/arm64/include/uapi/asm/kvm*
6004F: arch/arm64/include/asm/kvm*
6005F: arch/arm64/kvm/
6006
Eric W. Biedermandc009d92005-06-25 14:57:52 -07006007KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07006008M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07006009W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07006010L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07006011S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006012F: include/linux/kexec.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006013F: include/uapi/linux/kexec.h
Joe Perches679655d2009-04-07 20:44:32 -07006014F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07006015
David Howellse9714612010-03-29 23:42:09 +01006016KEYS/KEYRINGS:
6017M: David Howells <dhowells@redhat.com>
David Howellsaa62eff2015-08-11 13:29:48 +01006018L: keyrings@vger.kernel.org
David Howellse9714612010-03-29 23:42:09 +01006019S: Maintained
Randy Dunlapd410fa42011-05-19 15:59:38 -07006020F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01006021F: include/linux/key.h
6022F: include/linux/key-type.h
6023F: include/keys/
6024F: security/keys/
6025
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006026KEYS-TRUSTED
Mimi Zohar74dd7442014-02-27 08:44:45 -05006027M: David Safford <safford@us.ibm.com>
6028M: Mimi Zohar <zohar@linux.vnet.ibm.com>
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006029L: linux-security-module@vger.kernel.org
David Howellsaa62eff2015-08-11 13:29:48 +01006030L: keyrings@vger.kernel.org
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006031S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07006032F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006033F: include/keys/trusted-type.h
6034F: security/keys/trusted.c
6035F: security/keys/trusted.h
6036
6037KEYS-ENCRYPTED
Mimi Zohar74dd7442014-02-27 08:44:45 -05006038M: Mimi Zohar <zohar@linux.vnet.ibm.com>
6039M: David Safford <safford@us.ibm.com>
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006040L: linux-security-module@vger.kernel.org
David Howellsaa62eff2015-08-11 13:29:48 +01006041L: keyrings@vger.kernel.org
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006042S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07006043F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006044F: include/keys/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08006045F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006046
Jason Wessel5b778da2010-05-20 21:04:28 -05006047KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07006048M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05006049W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05006050L: kgdb-bugreport@lists.sourceforge.net
6051S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006052F: Documentation/DocBook/kgdb.tmpl
6053F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006054F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05006055F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07006056F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05006057F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05006058
Pekka Enberg456db8c2008-04-28 22:47:29 +03006059KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07006060M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02006061M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03006062S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08006063F: Documentation/kmemcheck.txt
6064F: arch/x86/include/asm/kmemcheck.h
6065F: arch/x86/mm/kmemcheck/
6066F: include/linux/kmemcheck.h
6067F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03006068
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01006069KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07006070M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01006071S: Maintained
6072F: Documentation/kmemleak.txt
6073F: include/linux/kmemleak.h
6074F: mm/kmemleak.c
6075F: mm/kmemleak-test.c
6076
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07006077KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07006078M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
6079M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
6080M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07006081M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07006082S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006083F: Documentation/kprobes.txt
6084F: include/linux/kprobes.h
6085F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07006086
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08006087KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006088M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07006089W: http://miguelojeda.es/auxdisplay.htm
6090W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08006091S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006092F: Documentation/auxdisplay/ks0108
6093F: drivers/auxdisplay/ks0108.c
6094F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08006095
Linus Torvalds1da177e2005-04-16 15:20:36 -07006096LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07006097L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07006098S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006099F: Documentation/networking/lapb-module.txt
6100F: include/*/lapb.h
6101F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006102
6103LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07006104M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006105L: linux-scsi@vger.kernel.org
6106S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006107F: Documentation/scsi/53c700.txt
6108F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006109
Richard Purdie263de9b2006-05-15 09:44:16 -07006110LED SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006111M: Richard Purdie <rpurdie@rpsys.net>
Andrew Morton48b945a2015-05-05 16:23:30 -07006112M: Jacek Anaszewski <j.anaszewski@samsung.com>
Bryan Wuaa69cb82012-05-31 19:51:37 +08006113L: linux-leds@vger.kernel.org
Jacek Anaszewskib8926ba2015-08-20 08:59:35 +02006114T: git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07006115S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006116F: drivers/leds/
6117F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07006118
Jean Delvareb0461a42011-06-15 15:08:46 -07006119LEGACY EEPROM DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07006120M: Jean Delvare <jdelvare@suse.com>
Jean Delvareb0461a42011-06-15 15:08:46 -07006121S: Maintained
6122F: Documentation/misc-devices/eeprom
6123F: drivers/misc/eeprom/eeprom.c
6124
Linus Torvalds1da177e2005-04-16 15:20:36 -07006125LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07006126M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006127L: legousb-devel@lists.sourceforge.net
6128W: http://legousb.sourceforge.net/
6129S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006130F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006131
Michael Krufky055616a2012-10-02 00:56:06 -03006132LG2160 MEDIA DRIVER
6133M: Michael Krufky <mkrufky@linuxtv.org>
6134L: linux-media@vger.kernel.org
6135W: http://linuxtv.org/
6136W: http://github.com/mkrufky
6137Q: http://patchwork.linuxtv.org/project/linux-media/list/
6138T: git git://linuxtv.org/mkrufky/tuners.git
6139S: Maintained
6140F: drivers/media/dvb-frontends/lg2160.*
6141
Michael Krufky6f0e7722012-10-02 00:56:00 -03006142LGDT3305 MEDIA DRIVER
6143M: Michael Krufky <mkrufky@linuxtv.org>
6144L: linux-media@vger.kernel.org
6145W: http://linuxtv.org/
6146W: http://github.com/mkrufky
6147Q: http://patchwork.linuxtv.org/project/linux-media/list/
6148T: git git://linuxtv.org/mkrufky/tuners.git
6149S: Maintained
6150F: drivers/media/dvb-frontends/lgdt3305.*
6151
Rusty Russell568a17f2007-10-25 14:12:24 +10006152LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07006153M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006154L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10006155W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06006156S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08006157F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07006158F: arch/x86/lguest/
6159F: drivers/lguest/
6160F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08006161F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10006162
Tejun Heo32ac7cb2015-01-06 18:36:44 -05006163LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
6164M: Tejun Heo <tj@kernel.org>
6165L: linux-ide@vger.kernel.org
6166T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6167S: Maintained
6168F: drivers/ata/
6169F: include/linux/ata.h
6170F: include/linux/libata.h
6171
6172LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
Viresh Kumarda899472015-07-17 16:23:50 -07006173M: Viresh Kumar <vireshk@kernel.org>
Tejun Heo32ac7cb2015-01-06 18:36:44 -05006174L: linux-ide@vger.kernel.org
6175T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6176S: Maintained
6177F: include/linux/pata_arasan_cf_data.h
6178F: drivers/ata/pata_arasan_cf.c
6179
Bartlomiej Zolnierkiewiczc7fa0562014-12-02 17:29:08 +01006180LIBATA PATA DRIVERS
6181M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6182M: Tejun Heo <tj@kernel.org>
6183L: linux-ide@vger.kernel.org
6184T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6185S: Maintained
6186F: drivers/ata/pata_*.c
6187F: drivers/ata/ata_generic.c
6188
Tejun Heo32ac7cb2015-01-06 18:36:44 -05006189LIBATA SATA AHCI PLATFORM devices support
6190M: Hans de Goede <hdegoede@redhat.com>
6191M: Tejun Heo <tj@kernel.org>
6192L: linux-ide@vger.kernel.org
6193T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6194S: Maintained
6195F: drivers/ata/ahci_platform.c
6196F: drivers/ata/libahci_platform.c
6197F: include/linux/ahci_platform.h
6198
6199LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
6200M: Mikael Pettersson <mikpelinux@gmail.com>
6201L: linux-ide@vger.kernel.org
6202T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6203S: Maintained
6204F: drivers/ata/sata_promise.*
6205
Sasha Levin1acd4372013-06-13 18:41:24 -04006206LIBLOCKDEP
6207M: Sasha Levin <sasha.levin@oracle.com>
6208S: Maintained
6209F: tools/lib/lockdep/
6210
Dan Williamsbc301962015-06-25 04:48:19 -04006211LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
6212M: Dan Williams <dan.j.williams@intel.com>
6213L: linux-nvdimm@lists.01.org
6214Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
6215S: Supported
6216F: drivers/nvdimm/*
6217F: include/linux/nd.h
6218F: include/linux/libnvdimm.h
6219F: include/uapi/linux/ndctl.h
6220
6221LIBNVDIMM BLK: MMIO-APERTURE DRIVER
6222M: Ross Zwisler <ross.zwisler@linux.intel.com>
6223L: linux-nvdimm@lists.01.org
6224Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
6225S: Supported
6226F: drivers/nvdimm/blk.c
6227F: drivers/nvdimm/region_devs.c
6228F: drivers/acpi/nfit*
6229
6230LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
6231M: Vishal Verma <vishal.l.verma@intel.com>
6232L: linux-nvdimm@lists.01.org
6233Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
6234S: Supported
6235F: drivers/nvdimm/btt*
6236
6237LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
6238M: Ross Zwisler <ross.zwisler@linux.intel.com>
6239L: linux-nvdimm@lists.01.org
6240Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
6241S: Supported
6242F: drivers/nvdimm/pmem.c
Ross Zwislerb864bc12015-07-10 11:06:10 -06006243F: include/linux/pmem.h
Ross Zwisler40603522015-08-18 13:55:36 -06006244F: arch/*/include/asm/pmem.h
Dan Williamsbc301962015-06-25 04:48:19 -04006245
Linus Torvalds1da177e2005-04-16 15:20:36 -07006246LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07006247M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006248W: http://www.ibm.com/linux/ltc/projects/ppc
6249S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00006250F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006251
Paul Mackerras852bb9f2008-07-04 21:04:42 +10006252LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07006253M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
6254M: Paul Mackerras <paulus@samba.org>
Benjamin Herrenschmidtea668932014-07-28 13:54:37 +10006255M: Michael Ellerman <mpe@ellerman.id.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006256W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006257L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08006258Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Michael Ellerman99580842015-07-07 19:16:23 +10006259T: git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006260S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00006261F: Documentation/powerpc/
6262F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006263
6264LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07006265M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006266W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006267L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006268S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00006269F: arch/powerpc/platforms/powermac/
6270F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006271
Grant Likely77a76362008-07-12 12:11:43 -06006272LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00006273M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006274L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschincba5b1c2014-10-02 16:16:59 -07006275T: git git://git.denx.de/linux-denx-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006276S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00006277F: arch/powerpc/platforms/512x/
6278F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006279
6280LINUX FOR POWERPC EMBEDDED PPC4XX
Joe Perches49e7d9d2015-04-15 16:17:31 -07006281M: Alistair Popple <alistair@popple.id.au>
Joe Perches8b58be82009-07-29 15:04:30 -07006282M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006283W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006284L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006285S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00006286F: arch/powerpc/platforms/40x/
6287F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006288
Grant Likely260c02a2007-10-02 12:15:34 +10006289LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006290L: linuxppc-dev@lists.ozlabs.org
Grant Likelycdeb8992013-07-22 01:38:32 +01006291S: Orphan
Joe Perches11c34c72009-12-04 07:16:59 +00006292F: arch/powerpc/*/*virtex*
6293F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006294
Tom Rinie93adf12005-07-26 12:49:53 -07006295LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07006296M: Vitaly Bordug <vitb@kernel.crashing.org>
Tom Rinie93adf12005-07-26 12:49:53 -07006297W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006298L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07006299S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07006300F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07006301
Linus Torvalds1da177e2005-04-16 15:20:36 -07006302LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Scott Wooda1e0fb42014-05-05 20:46:43 -05006303M: Scott Wood <scottwood@freescale.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006304M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01006305W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006306L: linuxppc-dev@lists.ozlabs.org
Scott Wooda1e0fb42014-05-05 20:46:43 -05006307T: git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
Jim Cromiece00f852006-11-30 04:49:44 +01006308S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00006309F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03006310F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006311
Olof Johanssonab06ff32006-09-06 14:44:54 -05006312LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07006313M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006314L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00006315S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00006316F: arch/powerpc/platforms/pasemi/
6317F: drivers/*/*pasemi*
6318F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05006319
Linus Torvalds1da177e2005-04-16 15:20:36 -07006320LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07006321M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08006322L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006323S: Supported
6324
Harry Weia23ce6d2011-02-11 16:52:20 +01006325LIS3LV02D ACCELEROMETER DRIVER
6326M: Eric Piel <eric.piel@tremplin-utc.net>
6327S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01006328F: Documentation/misc-devices/lis3lv02d
6329F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07006330F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01006331
Seth Jenningsb700e7f2014-12-16 11:58:19 -06006332LIVE PATCHING
6333M: Josh Poimboeuf <jpoimboe@redhat.com>
6334M: Seth Jennings <sjenning@redhat.com>
Jiri Kosinae5f64502015-08-09 09:11:34 +02006335M: Jiri Kosina <jikos@kernel.org>
Jiri Slabyd8130622015-07-17 16:23:20 -07006336M: Vojtech Pavlik <vojtech@suse.com>
Seth Jenningsb700e7f2014-12-16 11:58:19 -06006337S: Maintained
6338F: kernel/livepatch/
6339F: include/linux/livepatch.h
6340F: arch/x86/include/asm/livepatch.h
6341F: arch/x86/kernel/livepatch.c
6342F: Documentation/ABI/testing/sysfs-kernel-livepatch
Seth Jennings13d1cf72014-12-16 11:58:20 -06006343F: samples/livepatch/
Seth Jenningsb700e7f2014-12-16 11:58:19 -06006344L: live-patching@vger.kernel.org
Jiri Kosina74d50da2014-12-22 13:40:20 +01006345T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
Seth Jenningsb700e7f2014-12-16 11:58:19 -06006346
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006347LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07006348M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006349S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006350F: include/linux/llc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006351F: include/uapi/linux/llc.h
Joe Perches679655d2009-04-07 20:44:32 -07006352F: include/net/llc*
6353F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006354
Adrien Demarez4e233cb2009-12-09 20:35:50 +01006355LM73 HARDWARE MONITOR DRIVER
6356M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
6357L: lm-sensors@lm-sensors.org
6358S: Maintained
6359F: drivers/hwmon/lm73.c
6360
Jean Delvare156e2d12011-07-25 21:46:11 +02006361LM78 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07006362M: Jean Delvare <jdelvare@suse.com>
Jean Delvare156e2d12011-07-25 21:46:11 +02006363L: lm-sensors@lm-sensors.org
6364S: Maintained
6365F: Documentation/hwmon/lm78
6366F: drivers/hwmon/lm78.c
6367
Linus Torvalds1da177e2005-04-16 15:20:36 -07006368LM83 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07006369M: Jean Delvare <jdelvare@suse.com>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02006370L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006371S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006372F: Documentation/hwmon/lm83
6373F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006374
6375LM90 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07006376M: Jean Delvare <jdelvare@suse.com>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02006377L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006378S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006379F: Documentation/hwmon/lm90
Wei Niaae7bce2013-11-15 10:40:39 +01006380F: Documentation/devicetree/bindings/hwmon/lm90.txt
Joe Perches679655d2009-04-07 20:44:32 -07006381F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006382
Guenter Roeck917cc4e2013-05-19 20:44:27 -07006383LM95234 HARDWARE MONITOR DRIVER
6384M: Guenter Roeck <linux@roeck-us.net>
6385L: lm-sensors@lm-sensors.org
6386S: Maintained
6387F: Documentation/hwmon/lm95234
6388F: drivers/hwmon/lm95234.c
6389
Malcolm Priestley68620bd2012-11-04 19:16:31 +01006390LME2510 MEDIA DRIVER
6391M: Malcolm Priestley <tvboxspy@gmail.com>
6392L: linux-media@vger.kernel.org
6393W: http://linuxtv.org/
6394Q: http://patchwork.linuxtv.org/project/linux-media/list/
6395S: Maintained
6396F: drivers/media/usb/dvb-usb-v2/lmedm04*
6397
Peter Zijlstra512e67f2007-10-11 22:11:11 +02006398LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07006399M: Peter Zijlstra <peterz@infradead.org>
6400M: Ingo Molnar <mingo@redhat.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +01006401L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006402T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02006403S: Maintained
Davidlohr Bueso214e0ae2014-07-30 13:41:55 -07006404F: Documentation/locking/lockdep*.txt
6405F: Documentation/locking/lockstat.txt
Joe Perches679655d2009-04-07 20:44:32 -07006406F: include/linux/lockdep.h
Joe Perches7486d6d2013-11-14 14:59:45 -08006407F: kernel/locking/
Peter Zijlstra512e67f2007-10-11 22:11:11 +02006408
Anton Altaparmakovdde33342007-05-21 09:37:42 +01006409LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07006410M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01006411L: linux-ntfs-dev@lists.sourceforge.net
6412W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006413S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006414F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08006415F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006416
Joern Engelef6ada32009-11-20 22:17:12 +01006417LogFS
6418M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05306419M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01006420L: logfs@logfs.org
6421W: logfs.org
6422S: Maintained
6423F: fs/logfs/
6424
Roland Stiggeb62d7942013-04-02 19:37:11 +02006425LPC32XX MACHINE SUPPORT
6426M: Roland Stigge <stigge@antcom.de>
6427L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6428S: Maintained
6429F: arch/arm/mach-lpc32xx/
6430
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07006431LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
Reddy, Sreekanth3a980502014-06-13 20:48:04 +05306432M: Nagalakshmi Nandigama <nagalakshmi.nandigama@avagotech.com>
6433M: Praveen Krishnamoorthy <praveen.krishnamoorthy@avagotech.com>
6434M: Sreekanth Reddy <sreekanth.reddy@avagotech.com>
6435M: Abhijit Mahajan <abhijit.mahajan@avagotech.com>
6436L: MPT-FusionLinux.pdl@avagotech.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07006437L: linux-scsi@vger.kernel.org
6438W: http://www.lsilogic.com/support
6439S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006440F: drivers/message/fusion/
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05306441F: drivers/scsi/mpt2sas/
6442F: drivers/scsi/mpt3sas/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07006443
Linus Torvalds1da177e2005-04-16 15:20:36 -07006444LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07006445M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006446L: linux-scsi@vger.kernel.org
6447S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006448F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006449
Guenter Roecke5f5c992010-06-25 11:59:54 -07006450LTC4261 HARDWARE MONITOR DRIVER
6451M: Guenter Roeck <linux@roeck-us.net>
6452L: lm-sensors@lm-sensors.org
6453S: Maintained
6454F: Documentation/hwmon/ltc4261
6455F: drivers/hwmon/ltc4261.c
6456
Mike Frysinger81365c32008-10-29 14:01:12 -07006457LTP (Linux Test Project)
Joe Perches28b8e8d2010-03-23 13:35:20 -07006458M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07006459M: Cyril Hrubis <chrubis@suse.cz>
Cyril Hrubis05261092015-09-17 16:01:57 -07006460M: Wanlong Gao <wanlong.gao@gmail.com>
Cyril Hrubisf2eb7f62014-05-09 15:36:58 -07006461M: Jan Stancek <jstancek@redhat.com>
6462M: Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
6463M: Alexey Kodanev <alexey.kodanev@oracle.com>
Cyril Hrubis05261092015-09-17 16:01:57 -07006464L: ltp@lists.linux.it (subscribers-only)
Cyril Hrubisf2eb7f62014-05-09 15:36:58 -07006465W: http://linux-test-project.github.io/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07006466T: git git://github.com/linux-test-project/ltp.git
Mike Frysinger81365c32008-10-29 14:01:12 -07006467S: Maintained
6468
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07006469M32R ARCHITECTURE
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07006470W: http://www.linux-m32r.org/
Michael Opdenackerb4174862014-10-13 15:51:26 -07006471S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006472F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07006473
Linus Torvalds1da177e2005-04-16 15:20:36 -07006474M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07006475M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006476L: linux-m68k@lists.linux-m68k.org
6477W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07006478T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006479S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006480F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07006481F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006482
6483M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07006484M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006485W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01006486L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006487S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07006488F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006489
6490M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07006491M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006492W: http://www.tazenda.demon.co.uk/phil/linux-hp
6493S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006494F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006495
Antti Palosaari74425542013-11-06 14:03:32 -03006496M88DS3103 MEDIA DRIVER
6497M: Antti Palosaari <crope@iki.fi>
6498L: linux-media@vger.kernel.org
6499W: http://linuxtv.org/
6500W: http://palosaari.fi/linux/
6501Q: http://patchwork.linuxtv.org/project/linux-media/list/
6502T: git git://linuxtv.org/anttip/media_tree.git
6503S: Maintained
6504F: drivers/media/dvb-frontends/m88ds3103*
6505
Malcolm Priestley68620bd2012-11-04 19:16:31 +01006506M88RS2000 MEDIA DRIVER
6507M: Malcolm Priestley <tvboxspy@gmail.com>
6508L: linux-media@vger.kernel.org
6509W: http://linuxtv.org/
6510Q: http://patchwork.linuxtv.org/project/linux-media/list/
6511S: Maintained
6512F: drivers/media/dvb-frontends/m88rs2000*
6513
Alexey Klimov07a092f2012-11-12 02:57:32 -03006514MA901 MASTERKIT USB FM RADIO DRIVER
Joe Perchesb75f0052014-03-03 15:38:37 -08006515M: Alexey Klimov <klimov.linux@gmail.com>
6516L: linux-media@vger.kernel.org
6517T: git git://linuxtv.org/media_tree.git
6518S: Maintained
6519F: drivers/media/radio/radio-ma901.c
Alexey Klimov07a092f2012-11-12 02:57:32 -03006520
Jiri Benc64a327a2007-05-05 11:47:08 -07006521MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07006522M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07006523L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006524W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02006525T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6526T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07006527S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006528F: Documentation/networking/mac80211-injection.txt
6529F: include/net/mac80211.h
6530F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07006531
Patrick McHardyb863ceb2007-07-14 18:55:06 -07006532MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006533M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07006534L: netdev@vger.kernel.org
6535S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006536F: drivers/net/macvlan.c
6537F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07006538
Jassi Brar2b6d83e2014-06-12 22:31:19 +05306539MAILBOX API
6540M: Jassi Brar <jassisinghbrar@gmail.com>
6541L: linux-kernel@vger.kernel.org
6542S: Maintained
6543F: drivers/mailbox/
6544F: include/linux/mailbox_client.h
6545F: include/linux/mailbox_controller.h
6546
Michael Kerriskfaf16682005-07-31 22:34:47 -07006547MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07006548M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006549W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07006550L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07006551S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07006552
Russell King8427def2014-02-28 22:40:53 +00006553MARVELL ARMADA DRM SUPPORT
6554M: Russell King <rmk+kernel@arm.linux.org.uk>
6555S: Maintained
6556F: drivers/gpu/drm/armada/
6557
Guenter Roeck3ad50cc2014-10-29 10:44:56 -07006558MARVELL 88E6352 DSA support
6559M: Guenter Roeck <linux@roeck-us.net>
6560S: Maintained
6561F: drivers/net/dsa/mv88e6352.c
6562
stephen hemminger44c14c12012-04-02 12:59:47 +00006563MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
6564M: Mirko Lindner <mlindner@marvell.com>
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08006565M: Stephen Hemminger <stephen@networkplumber.org>
stephen hemminger44c14c12012-04-02 12:59:47 +00006566L: netdev@vger.kernel.org
6567S: Maintained
6568F: drivers/net/ethernet/marvell/sk*
6569
Stefano Brivio74cda162007-11-19 20:27:46 +01006570MARVELL LIBERTAS WIRELESS DRIVER
Stefano Brivio74cda162007-11-19 20:27:46 +01006571L: libertas-dev@lists.infradead.org
Dan Williams8ac3e992013-03-26 14:40:51 -05006572S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006573F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01006574
Dale Farnsworthb60d6972006-01-16 16:45:45 -07006575MARVELL MV643XX ETHERNET DRIVER
Sebastian Hesselbarth4e3faf82013-10-04 12:56:39 +02006576M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07006577L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00006578S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07006579F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07006580F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006581
Thomas Petazzoni370b8ed2012-09-04 15:06:42 +02006582MARVELL MVNETA ETHERNET DRIVER
6583M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
6584L: netdev@vger.kernel.org
6585S: Maintained
6586F: drivers/net/ethernet/marvell/mvneta.*
6587
Bing Zhaofcad5842011-07-13 13:11:58 -07006588MARVELL MWIFIEX WIRELESS DRIVER
Bing Zhaob9d31702014-07-30 13:57:16 -07006589M: Amitkumar Karwar <akarwar@marvell.com>
Avinash Patil550795f2015-06-24 16:52:21 +05306590M: Nishant Sarmukadam <nishants@marvell.com>
Bing Zhaofcad5842011-07-13 13:11:58 -07006591L: linux-wireless@vger.kernel.org
6592S: Maintained
6593F: drivers/net/wireless/mwifiex/
6594
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02006595MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01006596M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02006597L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02006598S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02006599F: drivers/net/wireless/mwl8k.c
6600
Pierre Ossman2a695672009-03-16 19:52:26 +01006601MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04006602M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04006603S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07006604F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01006605
Linus Torvalds1da177e2005-04-16 15:20:36 -07006606MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006607L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07006608S: Orphan
Jingoo Han8a61f012014-07-01 15:36:01 +09006609F: drivers/video/fbdev/matrox/matroxfb_*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006610F: include/uapi/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006611
Guenter Roeckca462082012-06-01 23:28:23 -07006612MAX16065 HARDWARE MONITOR DRIVER
6613M: Guenter Roeck <linux@roeck-us.net>
6614L: lm-sensors@lm-sensors.org
6615S: Maintained
6616F: Documentation/hwmon/max16065
6617F: drivers/hwmon/max16065.c
6618
Guenter Roeck1f61cab2015-06-08 11:15:23 -07006619MAX20751 HARDWARE MONITOR DRIVER
6620M: Guenter Roeck <linux@roeck-us.net>
6621L: lm-sensors@lm-sensors.org
6622S: Maintained
6623F: Documentation/hwmon/max20751
6624F: drivers/hwmon/max20751.c
6625
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02006626MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07006627M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02006628L: lm-sensors@lm-sensors.org
6629S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006630F: Documentation/hwmon/max6650
6631F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02006632
Guenter Roecke89ab512013-03-08 08:13:09 -08006633MAX6697 HARDWARE MONITOR DRIVER
6634M: Guenter Roeck <linux@roeck-us.net>
6635L: lm-sensors@lm-sensors.org
6636S: Maintained
6637F: Documentation/hwmon/max6697
6638F: Documentation/devicetree/bindings/i2c/max6697.txt
6639F: drivers/hwmon/max6697.c
6640F: include/linux/platform_data/max6697.h
6641
Krzysztof Kozlowskif8f847b2015-01-20 11:00:56 +01006642MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
6643M: Krzysztof Kozlowski <k.kozlowski@samsung.com>
6644L: linux-pm@vger.kernel.org
6645S: Supported
6646F: drivers/power/max14577_charger.c
6647F: drivers/power/max77693_charger.c
6648
Javier Martinez Canillas38114052015-07-17 10:17:58 +02006649MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS
6650M: Javier Martinez Canillas <javier@osg.samsung.com>
6651L: linux-kernel@vger.kernel.org
6652S: Supported
6653F: drivers/*/*max77802.c
6654F: Documentation/devicetree/bindings/*/*max77802.txt
6655F: include/dt-bindings/*/*max77802.h
6656
Krzysztof Kozlowskibefeb592015-02-16 16:00:23 -08006657MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
6658M: Chanwoo Choi <cw00.choi@samsung.com>
6659M: Krzysztof Kozlowski <k.kozlowski@samsung.com>
6660L: linux-kernel@vger.kernel.org
6661S: Supported
6662F: drivers/*/max14577.c
6663F: drivers/*/max77686.c
6664F: drivers/*/max77693.c
6665F: drivers/extcon/extcon-max14577.c
6666F: drivers/extcon/extcon-max77693.c
6667F: drivers/rtc/rtc-max77686.c
6668F: drivers/clk/clk-max77686.c
6669F: Documentation/devicetree/bindings/mfd/max14577.txt
Javier Martinez Canillas377452f2015-07-17 10:17:57 +02006670F: Documentation/devicetree/bindings/*/max77686.txt
Krzysztof Kozlowskibefeb592015-02-16 16:00:23 -08006671F: Documentation/devicetree/bindings/mfd/max77693.txt
6672F: Documentation/devicetree/bindings/clock/maxim,max77686.txt
6673F: include/linux/mfd/max14577*.h
6674F: include/linux/mfd/max77686*.h
6675F: include/linux/mfd/max77693*.h
6676
Hans Verkuil9be3c9a2012-11-23 07:12:43 -03006677MAXIRADIO FM RADIO RECEIVER DRIVER
6678M: Hans Verkuil <hverkuil@xs4all.nl>
6679L: linux-media@vger.kernel.org
6680T: git git://linuxtv.org/media_tree.git
6681W: http://linuxtv.org
6682S: Maintained
6683F: drivers/media/radio/radio-maxiradio*
6684
Laurent Pinchart6f32a8c2015-03-04 09:12:20 -03006685MEDIA DRIVERS FOR RENESAS - VSP1
6686M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6687L: linux-media@vger.kernel.org
6688L: linux-sh@vger.kernel.org
6689T: git git://linuxtv.org/media_tree.git
6690S: Supported
6691F: Documentation/devicetree/bindings/media/renesas,vsp1.txt
6692F: drivers/media/platform/vsp1/
6693
Kozlov Sergeydacf9ce2015-07-28 11:33:01 -03006694MEDIA DRIVERS FOR ASCOT2E
6695M: Sergey Kozlov <serjk@netup.ru>
6696L: linux-media@vger.kernel.org
6697W: http://linuxtv.org
6698W: http://netup.tv/
6699T: git git://linuxtv.org/media_tree.git
6700S: Supported
6701F: drivers/media/dvb-frontends/ascot2e*
6702
Kozlov Sergeya6dc60ff2015-07-28 11:33:03 -03006703MEDIA DRIVERS FOR CXD2841ER
6704M: Sergey Kozlov <serjk@netup.ru>
6705L: linux-media@vger.kernel.org
6706W: http://linuxtv.org/
6707W: http://netup.tv/
6708T: git git://linuxtv.org/media_tree.git
6709S: Supported
6710F: drivers/media/dvb-frontends/cxd2841er*
6711
Kozlov Sergeya5d32b32015-07-28 11:33:00 -03006712MEDIA DRIVERS FOR HORUS3A
6713M: Sergey Kozlov <serjk@netup.ru>
6714L: linux-media@vger.kernel.org
6715W: http://linuxtv.org/
6716W: http://netup.tv/
6717T: git git://linuxtv.org/media_tree.git
6718S: Supported
6719F: drivers/media/dvb-frontends/horus3a*
6720
Kozlov Sergeye0252732015-07-28 11:33:02 -03006721MEDIA DRIVERS FOR LNBH25
6722M: Sergey Kozlov <serjk@netup.ru>
6723L: linux-media@vger.kernel.org
6724W: http://linuxtv.org/
6725W: http://netup.tv/
6726T: git git://linuxtv.org/media_tree.git
6727S: Supported
6728F: drivers/media/dvb-frontends/lnbh25*
6729
Kozlov Sergey52b1eaf2015-07-28 11:33:04 -03006730MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
6731M: Sergey Kozlov <serjk@netup.ru>
6732L: linux-media@vger.kernel.org
6733W: http://linuxtv.org/
6734W: http://netup.tv/
6735T: git git://linuxtv.org/media_tree.git
6736S: Supported
6737F: drivers/media/pci/netup_unidvb/*
6738
Joe Perches127c49a2009-04-08 08:34:04 -07006739MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02006740M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Joe Perches127c49a2009-04-08 08:34:04 -07006741P: LinuxTV.org Project
6742L: linux-media@vger.kernel.org
6743W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08006744Q: http://patchwork.kernel.org/project/linux-media/list/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006745T: git git://linuxtv.org/media_tree.git
Joe Perches127c49a2009-04-08 08:34:04 -07006746S: Maintained
6747F: Documentation/dvb/
6748F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02006749F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07006750F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02006751F: drivers/staging/media/
Joe Perches127c49a2009-04-08 08:34:04 -07006752F: include/media/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02006753F: include/uapi/linux/dvb/
6754F: include/uapi/linux/videodev2.h
6755F: include/uapi/linux/media.h
6756F: include/uapi/linux/v4l2-*
6757F: include/uapi/linux/meye.h
6758F: include/uapi/linux/ivtv*
6759F: include/uapi/linux/uvcvideo.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07006760
Jakub Kicinskic869f772015-05-26 11:16:00 +02006761MEDIATEK MT7601U WIRELESS LAN DRIVER
6762M: Jakub Kicinski <kubakici@wp.pl>
6763L: linux-wireless@vger.kernel.org
6764S: Maintained
6765F: drivers/net/wireless/mediatek/mt7601u/
6766
Sumit.Saxena@avagotech.come3990652014-11-17 15:24:03 +05306767MEGARAID SCSI/SAS DRIVERS
6768M: Kashyap Desai <kashyap.desai@avagotech.com>
6769M: Sumit Saxena <sumit.saxena@avagotech.com>
6770M: Uday Lingala <uday.lingala@avagotech.com>
6771L: megaraidlinux.pdl@avagotech.com
Jean Delvarebaaea1d2008-09-20 12:34:33 +02006772L: linux-scsi@vger.kernel.org
Sumit.Saxena@avagotech.come3990652014-11-17 15:24:03 +05306773W: http://www.lsi.com
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07006774S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006775F: Documentation/scsi/megaraid.txt
6776F: drivers/scsi/megaraid.*
6777F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07006778
Amir Vadai2c46c9d2012-12-02 03:49:21 +00006779MELLANOX ETHERNET DRIVER (mlx4_en)
6780M: Amir Vadai <amirv@mellanox.com>
Or Gerlitzdb603042015-04-02 16:31:23 +03006781M: Ido Shamay <idos@mellanox.com>
Joe Perchesb75f0052014-03-03 15:38:37 -08006782L: netdev@vger.kernel.org
Amir Vadai2c46c9d2012-12-02 03:49:21 +00006783S: Supported
6784W: http://www.mellanox.com
6785Q: http://patchwork.ozlabs.org/project/netdev/list/
6786F: drivers/net/ethernet/mellanox/mlx4/en_*
6787
Jiri Pirko93c1edb2015-07-29 23:33:46 +02006788MELLANOX ETHERNET SWITCH DRIVERS
6789M: Jiri Pirko <jiri@mellanox.com>
6790M: Ido Schimmel <idosch@mellanox.com>
6791L: netdev@vger.kernel.org
6792S: Supported
6793W: http://www.mellanox.com
6794Q: http://patchwork.ozlabs.org/project/netdev/list/
6795F: drivers/net/ethernet/mellanox/mlxsw/
6796
Mathieu Desnoyers5b25b132015-09-11 13:07:39 -07006797MEMBARRIER SUPPORT
6798M: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
6799M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
6800L: linux-kernel@vger.kernel.org
6801S: Supported
6802F: kernel/membarrier.c
6803F: include/uapi/linux/membarrier.h
6804
Steven Rostedt70ea91f2006-07-30 03:03:53 -07006805MEMORY MANAGEMENT
6806L: linux-mm@kvack.org
Steven Rostedt70ea91f2006-07-30 03:03:53 -07006807W: http://www.linux-mm.org
6808S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006809F: include/linux/mm.h
Cody P Schafer551450b2013-02-21 16:43:13 -08006810F: include/linux/gfp.h
6811F: include/linux/mmzone.h
6812F: include/linux/memory_hotplug.h
6813F: include/linux/vmalloc.h
Joe Perches679655d2009-04-07 20:44:32 -07006814F: mm/
Steven Rostedt70ea91f2006-07-30 03:03:53 -07006815
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04006816MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07006817M: David Woodhouse <dwmw2@infradead.org>
Brian Norris242c3252013-12-04 15:28:45 -08006818M: Brian Norris <computersforpeace@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006819L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08006820W: http://www.linux-mtd.infradead.org/
6821Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
Brian Norris242c3252013-12-04 15:28:45 -08006822T: git git://git.infradead.org/linux-mtd.git
Brian Norrisab95eac2014-09-15 21:56:17 -07006823T: git git://git.infradead.org/l2-mtd.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006824S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006825F: drivers/mtd/
6826F: include/linux/mtd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006827F: include/uapi/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006828
Johannes Thumshirn26c57ef2013-06-18 17:19:45 +02006829MEN A21 WATCHDOG DRIVER
Johannes Thumshirn30c74692015-05-07 10:21:24 +02006830M: Johannes Thumshirn <morbidrsa@gmail.com>
Johannes Thumshirn26c57ef2013-06-18 17:19:45 +02006831L: linux-watchdog@vger.kernel.org
Johannes Thumshirn30c74692015-05-07 10:21:24 +02006832S: Maintained
Johannes Thumshirn26c57ef2013-06-18 17:19:45 +02006833F: drivers/watchdog/mena21_wdt.c
6834
Johannes Thumshirn3764e822014-02-26 17:29:05 +01006835MEN CHAMELEON BUS (mcb)
Johannes Thumshirn30c74692015-05-07 10:21:24 +02006836M: Johannes Thumshirn <morbidrsa@gmail.com>
6837S: Maintained
Johannes Thumshirn3764e822014-02-26 17:29:05 +01006838F: drivers/mcb/
6839F: include/linux/mcb.h
Johannes Thumshirnb9f2f452015-07-17 12:23:01 +02006840F: Documentation/men-chameleon-bus.txt
Johannes Thumshirn3764e822014-02-26 17:29:05 +01006841
Andreas Werner48b490d2014-09-15 09:36:30 +02006842MEN F21BMC (Board Management Controller)
6843M: Andreas Werner <andreas.werner@men.de>
6844S: Supported
6845F: drivers/mfd/menf21bmc.c
6846F: drivers/watchdog/menf21bmc_wdt.c
6847F: drivers/leds/leds-menf21bmc.c
6848F: drivers/hwmon/menf21bmc_hwmon.c
6849F: Documentation/hwmon/menf21bmc
6850
James Hogan12285942012-10-10 12:59:49 +01006851METAG ARCHITECTURE
6852M: James Hogan <james.hogan@imgtec.com>
James Hogand668d9e2013-07-22 09:51:38 +01006853L: linux-metag@vger.kernel.org
James Hogan12285942012-10-10 12:59:49 +01006854S: Supported
6855F: arch/metag/
6856F: Documentation/metag/
6857F: Documentation/devicetree/bindings/metag/
James Hogana2c5d4e2012-10-09 10:54:39 +01006858F: drivers/clocksource/metag_generic.c
James Hogan5698c502012-10-09 10:54:47 +01006859F: drivers/irqchip/irq-metag.c
6860F: drivers/irqchip/irq-metag-ext.c
James Hoganae85ac72012-09-21 17:38:15 +01006861F: drivers/tty/metag_da.c
James Hogan12285942012-10-10 12:59:49 +01006862
Michal Simekc6375b02009-03-27 14:25:52 +01006863MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07006864M: Michal Simek <monstr@monstr.eu>
Michal Simekc6375b02009-03-27 14:25:52 +01006865W: http://www.monstr.eu/fdt/
6866T: git git://git.monstr.eu/linux-2.6-microblaze.git
6867S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02006868F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006869
Chen Yu2508a452015-08-18 23:30:25 +08006870MICROSOFT SURFACE PRO 3 BUTTON DRIVER
6871M: Chen Yu <yu.c.chen@intel.com>
6872L: platform-driver-x86@vger.kernel.org
6873S: Supported
6874F: drivers/platform/x86/surfacepro3_button.c
6875
Linus Torvalds1da177e2005-04-16 15:20:36 -07006876MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02006877M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006878S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006879F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006880
6881MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07006882M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006883L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01006884W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00006885T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01006886Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00006887S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006888F: Documentation/mips/
6889F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006890
Hans Verkuil08b76202012-11-23 07:15:42 -03006891MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
6892M: Hans Verkuil <hverkuil@xs4all.nl>
6893L: linux-media@vger.kernel.org
6894T: git git://linuxtv.org/media_tree.git
6895W: http://linuxtv.org
6896S: Odd Fixes
6897F: drivers/media/radio/radio-miropcm20*
6898
Eli Cohene126ba92013-07-07 17:25:49 +03006899Mellanox MLX5 core VPI driver
6900M: Eli Cohen <eli@mellanox.com>
6901L: netdev@vger.kernel.org
6902L: linux-rdma@vger.kernel.org
6903W: http://www.mellanox.com
6904Q: http://patchwork.ozlabs.org/project/netdev/list/
6905Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perchescea83212014-03-03 15:38:38 -08006906T: git git://openfabrics.org/~eli/connect-ib.git
Eli Cohene126ba92013-07-07 17:25:49 +03006907S: Supported
6908F: drivers/net/ethernet/mellanox/mlx5/core/
6909F: include/linux/mlx5/
6910
6911Mellanox MLX5 IB driver
Joe Perchesb75f0052014-03-03 15:38:37 -08006912M: Eli Cohen <eli@mellanox.com>
6913L: linux-rdma@vger.kernel.org
6914W: http://www.mellanox.com
6915Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perchescea83212014-03-03 15:38:38 -08006916T: git git://openfabrics.org/~eli/connect-ib.git
Joe Perchesb75f0052014-03-03 15:38:37 -08006917S: Supported
6918F: include/linux/mlx5/
6919F: drivers/infiniband/hw/mlx5/
Eli Cohene126ba92013-07-07 17:25:49 +03006920
Antti Palosaari0ce277e2014-11-12 00:35:42 -03006921MN88472 MEDIA DRIVER
6922M: Antti Palosaari <crope@iki.fi>
6923L: linux-media@vger.kernel.org
6924W: http://linuxtv.org/
6925W: http://palosaari.fi/linux/
6926Q: http://patchwork.linuxtv.org/project/linux-media/list/
6927T: git git://linuxtv.org/anttip/media_tree.git
6928S: Maintained
6929F: drivers/staging/media/mn88472/
6930F: drivers/media/dvb-frontends/mn88472.h
6931
Antti Palosaari4f4d2382014-11-12 00:53:57 -03006932MN88473 MEDIA DRIVER
6933M: Antti Palosaari <crope@iki.fi>
6934L: linux-media@vger.kernel.org
6935W: http://linuxtv.org/
6936W: http://palosaari.fi/linux/
6937Q: http://patchwork.linuxtv.org/project/linux-media/list/
6938T: git git://linuxtv.org/anttip/media_tree.git
6939S: Maintained
6940F: drivers/staging/media/mn88473/
6941F: drivers/media/dvb-frontends/mn88473.h
6942
Linus Torvalds1da177e2005-04-16 15:20:36 -07006943MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006944M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006945S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006946F: include/linux/module.h
6947F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006948
6949MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07006950W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08006951S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006952F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006953F: drivers/media/pci/meye/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02006954F: include/uapi/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006955
Jiri Slabyb9705b62008-04-30 00:53:48 -07006956MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07006957M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08006958S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006959F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07006960F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08006961
Alexey Klimov889b2f82012-11-16 17:43:59 -03006962MR800 AVERMEDIA USB FM RADIO DRIVER
6963M: Alexey Klimov <klimov.linux@gmail.com>
6964L: linux-media@vger.kernel.org
6965T: git git://linuxtv.org/media_tree.git
6966S: Maintained
6967F: drivers/media/radio/radio-mr800.c
6968
Alan Ottd7155692014-08-16 17:09:03 -04006969MRF24J40 IEEE 802.15.4 RADIO DRIVER
6970M: Alan Ott <alan@signal11.us>
6971L: linux-wpan@vger.kernel.org
6972S: Maintained
6973F: drivers/net/ieee802154/mrf24j40.c
6974
Lennart Poettering8c4c7312006-10-06 01:27:02 -04006975MSI LAPTOP SUPPORT
Lee, Chun-Yi182ae552012-12-14 16:14:24 +08006976M: "Lee, Chun-Yi" <jlee@suse.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05006977L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04006978S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006979F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04006980
Anisse Astier0f1006b2009-12-17 11:28:49 +01006981MSI WMI SUPPORT
Matthew Garrettd0944852010-02-11 10:40:13 -05006982L: platform-driver-x86@vger.kernel.org
Anisse Astier5ee70412015-06-14 22:32:23 +02006983S: Orphan
Anisse Astier0f1006b2009-12-17 11:28:49 +01006984F: drivers/platform/x86/msi-wmi.c
6985
Antti Palosaari19a628a2014-02-02 23:51:30 -03006986MSI001 MEDIA DRIVER
6987M: Antti Palosaari <crope@iki.fi>
6988L: linux-media@vger.kernel.org
6989W: http://linuxtv.org/
6990W: http://palosaari.fi/linux/
6991Q: http://patchwork.linuxtv.org/project/linux-media/list/
6992T: git git://linuxtv.org/anttip/media_tree.git
6993S: Maintained
Antti Palosaari0185e192014-07-12 08:58:32 -03006994F: drivers/media/tuners/msi001*
Antti Palosaari19a628a2014-02-02 23:51:30 -03006995
Antti Palosaari75705892014-07-13 21:35:47 -03006996MSI2500 MEDIA DRIVER
Antti Palosaari2c572132014-02-02 23:55:12 -03006997M: Antti Palosaari <crope@iki.fi>
6998L: linux-media@vger.kernel.org
6999W: http://linuxtv.org/
7000W: http://palosaari.fi/linux/
7001Q: http://patchwork.linuxtv.org/project/linux-media/list/
7002T: git git://linuxtv.org/anttip/media_tree.git
7003S: Maintained
Antti Palosaari75705892014-07-13 21:35:47 -03007004F: drivers/media/usb/msi2500/
Antti Palosaari2c572132014-02-02 23:55:12 -03007005
Robert Jarzmik159eeea2015-06-25 19:14:18 +02007006MSYSTEMS DISKONCHIP G3 MTD DRIVER
7007M: Robert Jarzmik <robert.jarzmik@free.fr>
7008L: linux-mtd@lists.infradead.org
7009S: Maintained
7010F: drivers/mtd/devices/docg3*
7011
Laurent Pinchart62a37dc2013-08-09 08:46:11 -03007012MT9M032 APTINA SENSOR DRIVER
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007013M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7014L: linux-media@vger.kernel.org
7015T: git git://linuxtv.org/media_tree.git
7016S: Maintained
7017F: drivers/media/i2c/mt9m032.c
7018F: include/media/mt9m032.h
7019
Laurent Pinchart62a37dc2013-08-09 08:46:11 -03007020MT9P031 APTINA CAMERA SENSOR
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007021M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7022L: linux-media@vger.kernel.org
7023T: git git://linuxtv.org/media_tree.git
7024S: Maintained
7025F: drivers/media/i2c/mt9p031.c
7026F: include/media/mt9p031.h
7027
Laurent Pinchart62a37dc2013-08-09 08:46:11 -03007028MT9T001 APTINA CAMERA SENSOR
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007029M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7030L: linux-media@vger.kernel.org
7031T: git git://linuxtv.org/media_tree.git
7032S: Maintained
7033F: drivers/media/i2c/mt9t001.c
7034F: include/media/mt9t001.h
7035
Laurent Pinchart62a37dc2013-08-09 08:46:11 -03007036MT9V032 APTINA CAMERA SENSOR
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007037M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7038L: linux-media@vger.kernel.org
7039T: git git://linuxtv.org/media_tree.git
7040S: Maintained
Laurent Pinchartf2272e12014-01-01 14:40:35 -03007041F: Documentation/devicetree/bindings/media/i2c/mt9v032.txt
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007042F: drivers/media/i2c/mt9v032.c
7043F: include/media/mt9v032.h
7044
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07007045MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07007046M: Samuel Ortiz <sameo@linux.intel.com>
Samuel Ortizf7d32102013-05-17 00:53:42 +02007047M: Lee Jones <lee.jones@linaro.org>
Lee Jones7caa7992014-07-22 13:24:38 +01007048T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07007049S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007050F: drivers/mfd/
Mark Brown55b59402013-06-28 15:14:11 +01007051F: include/linux/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07007052
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02007053MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Ulf Hanssone18eaf82014-02-19 00:01:05 +01007054M: Ulf Hansson <ulf.hansson@linaro.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07007055L: linux-mmc@vger.kernel.org
Ulf Hansson708dce32014-05-14 14:32:53 +02007056T: git git://git.linaro.org/people/ulf.hansson/mmc.git
Chris Ball245feaa2010-09-10 12:05:24 -04007057S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007058F: drivers/mmc/
7059F: include/linux/mmc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007060F: include/uapi/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01007061
David Brownell15a05802007-08-08 09:12:54 -07007062MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06007063S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007064F: drivers/mmc/host/mmc_spi.c
7065F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07007066
Linus Torvalds1da177e2005-04-16 15:20:36 -07007067MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007068M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007069S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007070F: Documentation/sound/oss/MultiSound
7071F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007072
Jiri Slabyd7354102006-12-08 02:38:35 -08007073MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02007074S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07007075F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07007076F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08007077
Felipe Balbi550a7372008-07-24 12:27:36 +03007078MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03007079M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007080L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03007081T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02007082S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007083F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03007084
Michael Krufkyea0af5f2012-10-02 00:55:41 -03007085MXL5007T MEDIA DRIVER
7086M: Michael Krufky <mkrufky@linuxtv.org>
7087L: linux-media@vger.kernel.org
7088W: http://linuxtv.org/
7089W: http://github.com/mkrufky
7090Q: http://patchwork.linuxtv.org/project/linux-media/list/
7091T: git git://linuxtv.org/mkrufky/tuners.git
7092S: Maintained
7093F: drivers/media/tuners/mxl5007t.*
7094
Brice Goglin2d3cf582008-05-17 12:45:36 +02007095MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Hyong-Youb Kim205057a2013-08-12 02:20:02 -07007096M: Hyong-Youb Kim <hykim@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02007097L: netdev@vger.kernel.org
Hyong-Youb Kim205057a2013-08-12 02:20:02 -07007098W: https://www.myricom.com/support/downloads/myri10ge.html
Brice Goglin2d3cf582008-05-17 12:45:36 +02007099S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07007100F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02007101
Linus Torvalds1da177e2005-04-16 15:20:36 -07007102NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04007103S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07007104F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007105
Daniel Mack23dc05a2011-05-18 11:28:38 +02007106NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
7107M: Daniel Mack <zonque@gmail.com>
7108S: Maintained
Jim Davise5747e42015-06-25 15:01:58 -07007109L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Daniel Mack23dc05a2011-05-18 11:28:38 +02007110W: http://www.native-instruments.com
7111F: sound/usb/caiaq/
7112
Linus Torvalds1da177e2005-04-16 15:20:36 -07007113NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07007114M: Petr Vandrovec <petr@vandrovec.name>
7115S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07007116F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007117
Finn Thaina79b0322014-05-05 15:35:30 +10007118NCR 5380 SCSI DRIVERS
7119M: Finn Thain <fthain@telegraphics.com.au>
7120M: Michael Schmitz <schmitzmic@gmail.com>
7121L: linux-scsi@vger.kernel.org
7122S: Maintained
7123F: Documentation/scsi/g_NCR5380.txt
7124F: drivers/scsi/NCR5380.*
7125F: drivers/scsi/arm/cumana_1.c
7126F: drivers/scsi/arm/oak.c
7127F: drivers/scsi/atari_NCR5380.c
7128F: drivers/scsi/atari_scsi.*
7129F: drivers/scsi/dmx3191d.c
7130F: drivers/scsi/dtc.*
7131F: drivers/scsi/g_NCR5380.*
7132F: drivers/scsi/g_NCR5380_mmio.c
7133F: drivers/scsi/mac_scsi.*
7134F: drivers/scsi/pas16.*
Finn Thaina79b0322014-05-05 15:35:30 +10007135F: drivers/scsi/sun3_scsi.*
7136F: drivers/scsi/sun3_scsi_vme.c
7137F: drivers/scsi/t128.*
7138
Linus Torvalds1da177e2005-04-16 15:20:36 -07007139NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07007140M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007141L: linux-scsi@vger.kernel.org
7142S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007143F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007144
Guenter Roeck4aa3eb42013-04-03 14:12:11 -07007145NCT6775 HARDWARE MONITOR DRIVER
7146M: Guenter Roeck <linux@roeck-us.net>
7147L: lm-sensors@lm-sensors.org
7148S: Maintained
7149F: Documentation/hwmon/nct6775
7150F: drivers/hwmon/nct6775.c
7151
Glenn Streiff3c2d7742008-02-04 20:20:45 -08007152NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07007153M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07007154L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00007155W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08007156S: Supported
7157F: drivers/infiniband/hw/nes/
7158
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07007159NETEM NETWORK EMULATOR
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08007160M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07007161L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07007162S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007163F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07007164
Jon Masonb2f5a052010-07-15 08:47:27 +00007165NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00007166M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07007167L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07007168S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007169F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00007170F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07007171F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07007172
Pablo Neira Ayusodb9cf3a2014-06-16 13:01:52 +02007173NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01007174M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07007175M: Patrick McHardy <kaber@trash.net>
Pablo Neira Ayuso42010ed2013-05-06 12:22:57 +02007176M: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
Patrick McHardy1a03b812007-09-18 13:19:26 -07007177L: netfilter-devel@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07007178L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007179W: http://www.netfilter.org/
7180W: http://www.iptables.org/
Pablo Neira Ayuso42010ed2013-05-06 12:22:57 +02007181Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/
7182T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
7183T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007184S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007185F: include/linux/netfilter*
7186F: include/linux/netfilter/
7187F: include/net/netfilter/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007188F: include/uapi/linux/netfilter*
7189F: include/uapi/linux/netfilter/
Joe Perches679655d2009-04-07 20:44:32 -07007190F: net/*/netfilter.c
7191F: net/*/netfilter/
7192F: net/netfilter/
Pablo Neira Ayuso91c269a2015-07-06 20:55:35 +02007193F: net/bridge/br_netfilter*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007194
Paul Moore4cc67732006-09-25 15:57:13 -07007195NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00007196M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07007197W: http://netlabel.sf.net
7198L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00007199S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07007200F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07007201F: include/net/netlabel.h
7202F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07007203
Linus Torvalds1da177e2005-04-16 15:20:36 -07007204NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07007205M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007206L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02007207W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007208S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007209F: include/net/netrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007210F: include/uapi/linux/netrom.h
Joe Perches679655d2009-04-07 20:44:32 -07007211F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007212
Pavel Machek5ddb88c2006-09-29 02:01:29 -07007213NETWORK BLOCK DEVICE (NBD)
Markus Pargmann4ca58292015-01-28 19:35:38 +01007214M: Markus Pargmann <mpa@pengutronix.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007215S: Maintained
Wouter Verhelst5e4b2692013-02-27 17:05:27 -08007216L: nbd-general@lists.sourceforge.net
Markus Pargmann4ca58292015-01-28 19:35:38 +01007217T: git git://git.pengutronix.de/git/mpa/linux-nbd.git
Joe Perches679655d2009-04-07 20:44:32 -07007218F: Documentation/blockdev/nbd.txt
7219F: drivers/block/nbd.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007220F: include/uapi/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007221
Neil Horman6e436502009-10-05 03:56:55 +00007222NETWORK DROP MONITOR
7223M: Neil Horman <nhorman@tuxdriver.com>
7224L: netdev@vger.kernel.org
7225S: Maintained
7226W: https://fedorahosted.org/dropwatch/
7227F: net/core/drop_monitor.c
7228
Linus Torvalds1da177e2005-04-16 15:20:36 -07007229NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07007230M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07007231L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00007232W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00007233Q: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00007234T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7235T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007236S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007237F: net/
7238F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00007239F: include/linux/in.h
7240F: include/linux/net.h
7241F: include/linux/netdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007242F: include/uapi/linux/in.h
7243F: include/uapi/linux/net.h
7244F: include/uapi/linux/netdevice.h
Nicolas Dichtel0c7aecd2015-01-15 15:11:15 +01007245F: include/uapi/linux/net_namespace.h
Tobias Klauser7e814a62014-03-11 12:06:24 +01007246F: tools/net/
Daniel Borkmannf4e53f92014-03-13 10:18:53 +01007247F: tools/testing/selftests/net/
Sasha Levin335a67d2014-03-27 02:01:34 -04007248F: lib/random32.c
Daniel Borkmanna101ccd2014-06-10 12:31:10 +02007249F: lib/test_bpf.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007250
7251NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07007252M: "David S. Miller" <davem@davemloft.net>
7253M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07007254M: James Morris <jmorris@namei.org>
7255M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
7256M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07007257L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007258T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007259S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007260F: net/ipv4/
7261F: net/ipv6/
7262F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00007263F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007264
David S. Miller73b76562012-10-16 14:08:40 -04007265NETWORKING [IPSEC]
7266M: Steffen Klassert <steffen.klassert@secunet.com>
7267M: Herbert Xu <herbert@gondor.apana.org.au>
7268M: "David S. Miller" <davem@davemloft.net>
7269L: netdev@vger.kernel.org
Steffen Klassertd1fc5022013-12-13 12:56:05 +01007270T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
7271T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
David S. Miller73b76562012-10-16 14:08:40 -04007272S: Maintained
Fan Du5826bdd2014-01-18 09:55:28 +08007273F: net/core/flow.c
David S. Miller73b76562012-10-16 14:08:40 -04007274F: net/xfrm/
7275F: net/key/
7276F: net/ipv4/xfrm*
Steffen Klassertd1fc5022013-12-13 12:56:05 +01007277F: net/ipv4/esp4.c
7278F: net/ipv4/ah4.c
7279F: net/ipv4/ipcomp.c
7280F: net/ipv4/ip_vti.c
David S. Miller73b76562012-10-16 14:08:40 -04007281F: net/ipv6/xfrm*
Steffen Klassertd1fc5022013-12-13 12:56:05 +01007282F: net/ipv6/esp6.c
7283F: net/ipv6/ah6.c
7284F: net/ipv6/ipcomp6.c
7285F: net/ipv6/ip6_vti.c
David S. Miller73b76562012-10-16 14:08:40 -04007286F: include/uapi/linux/xfrm.h
7287F: include/net/xfrm.h
7288
James Morris10e2ff12007-08-25 14:41:28 -07007289NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00007290M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07007291L: netdev@vger.kernel.org
7292S: Maintained
7293
John W. Linville29f8f632006-01-18 14:52:48 -08007294NETWORKING [WIRELESS]
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08007295L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007296Q: http://patchwork.kernel.org/project/linux-wireless/list/
John W. Linville29f8f632006-01-18 14:52:48 -08007297
Joe Perches788873a2009-04-16 09:38:45 +00007298NETWORKING DRIVERS
7299L: netdev@vger.kernel.org
7300W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00007301Q: http://patchwork.ozlabs.org/project/netdev/list/
Joe Perches08deed12012-03-23 15:01:57 -07007302T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7303T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00007304S: Odd Fixes
7305F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00007306F: include/linux/if_*
Jean Delvare0b63bf12012-10-18 22:11:38 +02007307F: include/linux/netdevice.h
7308F: include/linux/arcdevice.h
7309F: include/linux/etherdevice.h
7310F: include/linux/fcdevice.h
7311F: include/linux/fddidevice.h
7312F: include/linux/hippidevice.h
7313F: include/linux/inetdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007314F: include/uapi/linux/if_*
7315F: include/uapi/linux/netdevice.h
Joe Perches788873a2009-04-16 09:38:45 +00007316
John W. Linville0e324cf2014-12-17 12:07:05 -05007317NETWORKING DRIVERS (WIRELESS)
7318M: Kalle Valo <kvalo@codeaurora.org>
7319L: linux-wireless@vger.kernel.org
7320Q: http://patchwork.kernel.org/project/linux-wireless/list/
7321T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git/
7322S: Maintained
7323F: drivers/net/wireless/
7324
Amit S. Kale3d396eb2006-10-21 15:33:03 -04007325NETXEN (1/10) GbE SUPPORT
Manish Chopra86223152013-03-28 23:54:08 +00007326M: Manish Chopra <manish.chopra@qlogic.com>
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07007327M: Sony Chacko <sony.chacko@qlogic.com>
7328M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04007329L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00007330W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04007331S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07007332F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04007333
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03007334NFC SUBSYSTEM
7335M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
7336M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
7337M: Samuel Ortiz <sameo@linux.intel.com>
7338L: linux-wireless@vger.kernel.org
Dan Carpenter1eb3b212014-08-11 13:14:25 +03007339L: linux-nfc@lists.01.org (subscribers-only)
Samuel Ortiz0293ba22013-06-24 14:39:35 +02007340S: Supported
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03007341F: net/nfc/
Ilan Elias55eb94f2011-09-18 11:19:34 +03007342F: include/net/nfc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007343F: include/uapi/linux/nfc.h
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03007344F: drivers/nfc/
Marcel Holtmann08eaa1e2012-10-24 11:45:38 -07007345F: include/linux/platform_data/pn544.h
Mark A. Greer7ebb88e2014-03-10 11:56:25 -07007346F: Documentation/devicetree/bindings/net/nfc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007347
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04007348NFS, SUNRPC, AND LOCKD CLIENTS
Trond Myklebustcd7b9962013-12-04 12:29:49 -05007349M: Trond Myklebust <trond.myklebust@primarydata.com>
Trond Myklebust0e3b1372015-02-03 17:13:58 -05007350M: Anna Schumaker <anna.schumaker@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05007351L: linux-nfs@vger.kernel.org
7352W: http://client.linux-nfs.org
Trond Myklebustcd7b9962013-12-04 12:29:49 -05007353T: git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007354S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007355F: fs/lockd/
7356F: fs/nfs/
7357F: fs/nfs_common/
7358F: net/sunrpc/
7359F: include/linux/lockd/
7360F: include/linux/nfs*
7361F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007362F: include/uapi/linux/nfs*
7363F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007364
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07007365NILFS2 FILESYSTEM
Ryusuke Konishie2126932014-04-03 14:50:25 -07007366M: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09007367L: linux-nilfs@vger.kernel.org
Ryusuke Konishif9472262014-04-03 14:50:32 -07007368W: http://nilfs.sourceforge.net/
Ryusuke Konishie2126932014-04-03 14:50:25 -07007369T: git git://github.com/konis/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07007370S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007371F: Documentation/filesystems/nilfs2.txt
7372F: fs/nilfs2/
7373F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07007374
Linus Torvalds1da177e2005-04-16 15:20:36 -07007375NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007376M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007377W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7378S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007379F: Documentation/scsi/NinjaSCSI.txt
7380F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007381
7382NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007383M: GOTO Masanori <gotom@debian.or.jp>
7384M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007385W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7386S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007387F: Documentation/scsi/NinjaSCSI.txt
7388F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007389
Ley Foon Tan383b8fb2014-11-06 15:20:14 +08007390NIOS2 ARCHITECTURE
7391M: Ley Foon Tan <lftan@altera.com>
7392L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
Ley Foon Tan0094dc42015-09-08 01:50:05 +08007393T: git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
Ley Foon Tan383b8fb2014-11-06 15:20:14 +08007394S: Maintained
7395F: arch/nios2/
7396
Pali Rohár2a6afdd2015-03-29 15:35:54 +02007397NOKIA N900 POWER SUPPLY DRIVERS
7398M: Pali Rohár <pali.rohar@gmail.com>
7399S: Maintained
7400F: include/linux/power/bq2415x_charger.h
7401F: include/linux/power/bq27x00_battery.h
7402F: include/linux/power/isp1704_charger.h
7403F: drivers/power/bq2415x_charger.c
7404F: drivers/power/bq27x00_battery.c
7405F: drivers/power/isp1704_charger.c
7406F: drivers/power/rx51_battery.c
7407
Allen Hubbea1bd3ba2015-04-09 10:33:20 -04007408NTB DRIVER CORE
Jon Mason9ef6bf62014-06-19 10:44:24 -07007409M: Jon Mason <jdmason@kudzu.us>
7410M: Dave Jiang <dave.jiang@intel.com>
Allen Hubbea1bd3ba2015-04-09 10:33:20 -04007411M: Allen Hubbe <Allen.Hubbe@emc.com>
Jon Mason5e9fd732015-07-04 14:48:33 -04007412L: linux-ntb@googlegroups.com
Jon Masonfce8a7b2012-11-16 19:27:12 -07007413S: Supported
Jon Mason29844112013-07-30 16:29:48 -07007414W: https://github.com/jonmason/ntb/wiki
7415T: git git://github.com/jonmason/ntb.git
Jon Masonfce8a7b2012-11-16 19:27:12 -07007416F: drivers/ntb/
Jon Mason548c2372012-11-16 19:27:13 -07007417F: drivers/net/ntb_netdev.c
Jon Masonfce8a7b2012-11-16 19:27:12 -07007418F: include/linux/ntb.h
Allen Hubbea1bd3ba2015-04-09 10:33:20 -04007419F: include/linux/ntb_transport.h
Jon Masonfce8a7b2012-11-16 19:27:12 -07007420
Allen Hubbee26a5842015-04-09 10:33:20 -04007421NTB INTEL DRIVER
7422M: Jon Mason <jdmason@kudzu.us>
7423M: Dave Jiang <dave.jiang@intel.com>
Jon Mason5e9fd732015-07-04 14:48:33 -04007424L: linux-ntb@googlegroups.com
Allen Hubbee26a5842015-04-09 10:33:20 -04007425S: Supported
7426W: https://github.com/jonmason/ntb/wiki
7427T: git git://github.com/jonmason/ntb.git
7428F: drivers/ntb/hw/intel/
Joe Perches679655d2009-04-07 20:44:32 -07007429
7430NTFS FILESYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07007431M: Anton Altaparmakov <anton@tuxera.com>
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08007432L: linux-ntfs-dev@lists.sourceforge.net
Joe Perches8b58be82009-07-29 15:04:30 -07007433W: http://www.tuxera.com/
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01007434T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Jim Cromiece00f852006-11-30 04:49:44 +01007435S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007436F: Documentation/filesystems/ntfs.txt
7437F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007438
Tony Lindgrenf5525782009-05-28 13:23:53 -07007439NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches0e24bdd2009-10-26 16:49:40 -07007440M: Antonino Daplas <adaplas@gmail.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007441L: linux-fbdev@vger.kernel.org
7442S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09007443F: drivers/video/fbdev/riva/
7444F: drivers/video/fbdev/nvidia/
Tony Lindgrenf5525782009-05-28 13:23:53 -07007445
Matthew Wilcox79461682012-11-10 08:54:53 -05007446NVM EXPRESS DRIVER
7447M: Matthew Wilcox <willy@linux.intel.com>
7448L: linux-nvme@lists.infradead.org
7449T: git git://git.infradead.org/users/willy/linux-nvme.git
7450S: Supported
Dan Carpenter5be37bf2013-05-13 18:00:42 +03007451F: drivers/block/nvme*
Matthew Wilcox79461682012-11-10 08:54:53 -05007452F: include/linux/nvme.h
7453
Srinivas Kandagatlaaee4b9b2015-07-27 12:17:24 +01007454NVMEM FRAMEWORK
7455M: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
7456M: Maxime Ripard <maxime.ripard@free-electrons.com>
7457S: Maintained
7458F: drivers/nvmem/
7459F: Documentation/devicetree/bindings/nvmem/
7460F: include/linux/nvmem-consumer.h
7461F: include/linux/nvmem-provider.h
7462
Clément Perrochauddece4582015-03-09 11:12:04 +01007463NXP-NCI NFC DRIVER
7464M: Clément Perrochaud <clement.perrochaud@effinnov.com>
7465R: Charles Gorand <charles.gorand@effinnov.com>
7466L: linux-nfc@lists.01.org (moderated for non-subscribers)
7467S: Supported
7468F: drivers/nfc/nxp-nci
7469
Russell Kingf50d7142014-03-03 12:18:14 +00007470NXP TDA998X DRM DRIVER
7471M: Russell King <rmk+kernel@arm.linux.org.uk>
7472S: Supported
7473F: drivers/gpu/drm/i2c/tda998x_drv.c
7474F: include/drm/i2c/tda998x.h
7475
Peter Rosinfbace432014-11-08 14:40:17 +01007476NXP TFA9879 DRIVER
7477M: Peter Rosin <peda@axentia.se>
7478L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7479S: Maintained
7480F: sound/soc/codecs/tfa9879*
7481
Tony Lindgrenf5525782009-05-28 13:23:53 -07007482OMAP SUPPORT
7483M: Tony Lindgren <tony@atomide.com>
7484L: linux-omap@vger.kernel.org
7485W: http://www.muru.com/linux/omap/
7486W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08007487Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02007488T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07007489S: Maintained
Felipe Contreras4e04d5a2009-09-21 17:04:25 -07007490F: arch/arm/*omap*/
Felipe Balbi026da812015-01-19 16:13:53 -06007491F: arch/arm/configs/omap1_defconfig
7492F: arch/arm/configs/omap2plus_defconfig
Jean Delvare046d0a32012-01-12 20:32:05 +01007493F: drivers/i2c/busses/i2c-omap.c
Felipe Balbidc68cd12014-11-06 08:37:19 -06007494F: drivers/irqchip/irq-omap-intc.c
7495F: drivers/mfd/*omap*.c
7496F: drivers/mfd/menelaus.c
7497F: drivers/mfd/palmas.c
7498F: drivers/mfd/tps65217.c
7499F: drivers/mfd/tps65218.c
7500F: drivers/mfd/tps65910.c
7501F: drivers/mfd/twl-core.[ch]
7502F: drivers/mfd/twl4030*.c
7503F: drivers/mfd/twl6030*.c
7504F: drivers/mfd/twl6040*.c
7505F: drivers/regulator/palmas-regulator*.c
7506F: drivers/regulator/pbias-regulator.c
7507F: drivers/regulator/tps65217-regulator.c
7508F: drivers/regulator/tps65218-regulator.c
7509F: drivers/regulator/tps65910-regulator.c
7510F: drivers/regulator/twl-regulator.c
Jean Delvare046d0a32012-01-12 20:32:05 +01007511F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07007512
Tony Lindgren50f29fb2012-12-16 11:29:59 -08007513OMAP DEVICE TREE SUPPORT
Benoit Coussoncdb55ab2013-08-09 23:19:15 +02007514M: Benoît Cousson <bcousson@baylibre.com>
Tony Lindgren50f29fb2012-12-16 11:29:59 -08007515M: Tony Lindgren <tony@atomide.com>
7516L: linux-omap@vger.kernel.org
Grant Likelyd0fb18c2013-07-19 20:10:12 -07007517L: devicetree@vger.kernel.org
Tony Lindgren50f29fb2012-12-16 11:29:59 -08007518S: Maintained
7519F: arch/arm/boot/dts/*omap*
7520F: arch/arm/boot/dts/*am3*
Nishanth Menon05eb20f2014-10-21 09:24:22 -05007521F: arch/arm/boot/dts/*am4*
7522F: arch/arm/boot/dts/*am5*
7523F: arch/arm/boot/dts/*dra7*
Tony Lindgren50f29fb2012-12-16 11:29:59 -08007524
Tony Lindgrenf5525782009-05-28 13:23:53 -07007525OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007526M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007527L: linux-omap@vger.kernel.org
7528S: Maintained
7529F: arch/arm/*omap*/*clock*
7530
7531OMAP POWER MANAGEMENT SUPPORT
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08007532M: Kevin Hilman <khilman@deeprootsystems.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007533L: linux-omap@vger.kernel.org
7534S: Maintained
7535F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07007536F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07007537
Joe Perchesd21db562013-09-11 14:23:35 -07007538OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
Paul Walmsley692ab1f2011-03-09 18:44:28 -07007539M: Rajendra Nayak <rnayak@ti.com>
7540M: Paul Walmsley <paul@pwsan.com>
7541L: linux-omap@vger.kernel.org
7542S: Maintained
Joe Perchesd21db562013-09-11 14:23:35 -07007543F: arch/arm/mach-omap2/prm*
Paul Walmsley692ab1f2011-03-09 18:44:28 -07007544
Tony Lindgrenf5525782009-05-28 13:23:53 -07007545OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03007546M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03007547M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Jim Davise5747e42015-06-25 15:01:58 -07007548L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Tony Lindgrenf5525782009-05-28 13:23:53 -07007549L: linux-omap@vger.kernel.org
7550S: Maintained
7551F: sound/soc/omap/
7552
Tony Lindgren18640192014-11-20 09:13:42 -08007553OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
7554M: Roger Quadros <rogerq@ti.com>
7555M: Tony Lindgren <tony@atomide.com>
7556L: linux-omap@vger.kernel.org
7557S: Maintained
7558F: drivers/memory/omap-gpmc.c
7559F: arch/arm/mach-omap2/*gpmc*
7560
Tony Lindgrenf5525782009-05-28 13:23:53 -07007561OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02007562M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01007563L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07007564L: linux-omap@vger.kernel.org
7565S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09007566F: drivers/video/fbdev/omap/
Tony Lindgrenf5525782009-05-28 13:23:53 -07007567
Tomi Valkeinen676eec02010-01-07 13:18:04 +02007568OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02007569M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03007570L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02007571L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03007572S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09007573F: drivers/video/fbdev/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03007574F: Documentation/arm/OMAP/DSS
7575
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03007576OMAP HARDWARE SPINLOCK SUPPORT
7577M: Ohad Ben-Cohen <ohad@wizery.com>
7578L: linux-omap@vger.kernel.org
7579S: Maintained
7580F: drivers/hwspinlock/omap_hwspinlock.c
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03007581
Tony Lindgrenf5525782009-05-28 13:23:53 -07007582OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007583M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007584L: linux-omap@vger.kernel.org
7585S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07007586F: drivers/mmc/host/omap.c
7587
7588OMAP HS MMC SUPPORT
Venkatraman S0a4585c2012-08-17 23:59:53 +05307589L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07007590L: linux-omap@vger.kernel.org
Balaji T Kdfa5d192014-09-17 22:50:11 +05307591S: Orphan
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07007592F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07007593
7594OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007595M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007596S: Maintained
7597F: drivers/char/hw_random/omap-rng.c
7598
Paul Walmsleyf400c822010-12-06 19:08:54 -07007599OMAP HWMOD SUPPORT
Benoit Coussoncdb55ab2013-08-09 23:19:15 +02007600M: Benoît Cousson <bcousson@baylibre.com>
Paul Walmsleyf400c822010-12-06 19:08:54 -07007601M: Paul Walmsley <paul@pwsan.com>
7602L: linux-omap@vger.kernel.org
7603S: Maintained
Zhang Yanfei8fc8b122013-01-11 14:32:03 -08007604F: arch/arm/mach-omap2/omap_hwmod.*
Paul Walmsleyf400c822010-12-06 19:08:54 -07007605
Paul Walmsley8633fb32015-01-19 23:49:50 -07007606OMAP HWMOD DATA
7607M: Paul Walmsley <paul@pwsan.com>
7608L: linux-omap@vger.kernel.org
7609S: Maintained
7610F: arch/arm/mach-omap2/omap_hwmod*data*
7611
Paul Walmsleyf400c822010-12-06 19:08:54 -07007612OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
Benoit Coussoncdb55ab2013-08-09 23:19:15 +02007613M: Benoît Cousson <bcousson@baylibre.com>
Paul Walmsleyf400c822010-12-06 19:08:54 -07007614L: linux-omap@vger.kernel.org
7615S: Maintained
7616F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
7617
Laurent Pinchart0db83ce2014-06-06 12:08:59 -03007618OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03007619M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7620L: linux-media@vger.kernel.org
7621S: Maintained
Sakari Ailus7eec52d2015-03-19 01:50:22 +02007622F: Documentation/devicetree/bindings/media/ti,omap3isp.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007623F: drivers/media/platform/omap3isp/
Laurent Pinchart0db83ce2014-06-06 12:08:59 -03007624F: drivers/staging/media/omap4iss/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03007625
Tony Lindgrenf5525782009-05-28 13:23:53 -07007626OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03007627M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007628L: linux-usb@vger.kernel.org
7629L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03007630T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07007631S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07007632F: drivers/usb/*/*omap*
7633F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07007634
Kevin Hilman6d994712012-07-16 10:05:07 -07007635OMAP GPIO DRIVER
Javier Martinez Canillasa1415a82014-04-06 16:58:17 +02007636M: Javier Martinez Canillas <javier@dowhile0.org>
Santosh Shilimkar97215802014-10-13 14:16:28 -04007637M: Santosh Shilimkar <ssantosh@kernel.org>
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08007638M: Kevin Hilman <khilman@deeprootsystems.com>
Kevin Hilman6d994712012-07-16 10:05:07 -07007639L: linux-omap@vger.kernel.org
7640S: Maintained
7641F: drivers/gpio/gpio-omap.c
7642
Mark Jacksonc351e292013-10-04 09:15:01 +01007643OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
7644M: Mark Jackson <mpfj@newflow.co.uk>
7645L: linux-omap@vger.kernel.org
7646S: Maintained
7647F: arch/arm/boot/dts/am335x-nano.dts
7648
Bob Copeland0ad122d2008-07-25 19:45:18 -07007649OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007650M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07007651L: linux-karma-devel@lists.sourceforge.net
7652S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007653F: Documentation/filesystems/omfs.txt
7654F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07007655
Harald Weltec1986ee2005-11-13 16:06:29 -08007656OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007657M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08007658S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007659F: drivers/char/pcmcia/cm4000_cs.c
7660F: include/linux/cm4000_cs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007661F: include/uapi/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08007662
Harald Welte77c44ab2005-11-13 16:06:26 -08007663OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007664M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08007665S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007666F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08007667
Jonathan Corbet77d51402007-03-22 19:44:17 -03007668OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007669M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007670L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02007671T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03007672S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007673F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03007674
Thomas Gleixner431bca72007-05-02 09:31:35 +02007675ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007676M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02007677L: linux-mtd@lists.infradead.org
7678S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007679F: drivers/mtd/onenand/
7680F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02007681
Linus Torvalds1da177e2005-04-16 15:20:36 -07007682ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007683M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007684L: osst-users@lists.sourceforge.net
7685L: linux-scsi@vger.kernel.org
7686S: Maintained
Jean Delvaref7269cf2013-07-03 15:05:08 -07007687F: Documentation/scsi/osst.txt
7688F: drivers/scsi/osst.*
7689F: drivers/scsi/osst_*.h
7690F: drivers/scsi/st.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007691
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007692OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007693M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01007694L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007695S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007696F: Documentation/i2c/busses/i2c-ocores
7697F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007698
Grant Likely860c44c2009-10-26 16:49:49 -07007699OPEN FIRMWARE AND FLATTENED DEVICE TREE
Rob Herring5d3ad8a2013-12-03 10:20:16 -06007700M: Rob Herring <robh+dt@kernel.org>
Grant Likelyc8fb70a2015-08-23 13:34:08 -07007701M: Frank Rowand <frowand.list@gmail.com>
7702M: Grant Likely <grant.likely@linaro.org>
Grant Likelyd0fb18c2013-07-19 20:10:12 -07007703L: devicetree@vger.kernel.org
Rob Herringa7fefe92014-12-26 14:05:54 -06007704W: http://www.devicetree.org/
7705T: git git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux.git
Grant Likely860c44c2009-10-26 16:49:49 -07007706S: Maintained
Grant Likelyf8828202013-07-19 18:57:39 -07007707F: drivers/of/
Grant Likely860c44c2009-10-26 16:49:49 -07007708F: include/linux/of*.h
Grant Likelyf8828202013-07-19 18:57:39 -07007709F: scripts/dtc/
Grant Likely860c44c2009-10-26 16:49:49 -07007710
Grant Likelyf8828202013-07-19 18:57:39 -07007711OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
Rob Herring5d3ad8a2013-12-03 10:20:16 -06007712M: Rob Herring <robh+dt@kernel.org>
Grant Likelyf8828202013-07-19 18:57:39 -07007713M: Pawel Moll <pawel.moll@arm.com>
7714M: Mark Rutland <mark.rutland@arm.com>
Ian Campbellde809632013-08-30 09:50:42 +01007715M: Ian Campbell <ijc+devicetree@hellion.org.uk>
Kumar Galabdbff6b2013-08-08 10:51:15 -05007716M: Kumar Gala <galak@codeaurora.org>
Grant Likelyf8828202013-07-19 18:57:39 -07007717L: devicetree@vger.kernel.org
7718S: Maintained
7719F: Documentation/devicetree/
7720F: arch/*/boot/dts/
7721F: include/dt-bindings/
7722
Pantelis Antoniou2bb65f52015-03-17 22:30:57 +02007723OPEN FIRMWARE AND DEVICE TREE OVERLAYS
7724M: Pantelis Antoniou <pantelis.antoniou@konsulko.com>
7725L: devicetree@vger.kernel.org
7726S: Maintained
7727F: Documentation/devicetree/dynamic-resolution-notes.txt
7728F: Documentation/devicetree/overlay-notes.txt
7729F: drivers/of/overlay.c
7730F: drivers/of/resolver.c
7731
Jonas Bonn19f9d392011-06-04 22:00:38 +03007732OPENRISC ARCHITECTURE
7733M: Jonas Bonn <jonas@southpole.se>
7734W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02007735L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03007736S: Maintained
7737T: git git://openrisc.net/~jonas/linux
Joe Perches14430812013-09-11 14:23:50 -07007738F: arch/openrisc/
Jonas Bonn19f9d392011-06-04 22:00:38 +03007739
Jesse Grossccb13522011-10-25 19:26:31 -07007740OPENVSWITCH
Jesse Gross4f337ed2014-05-16 15:57:59 -07007741M: Pravin Shelar <pshelar@nicira.com>
Pravin B Shelarb422da72015-01-02 11:18:21 -08007742L: netdev@vger.kernel.org
Jesse Grossccb13522011-10-25 19:26:31 -07007743L: dev@openvswitch.org
7744W: http://openvswitch.org
Jesse Grossccb13522011-10-25 19:26:31 -07007745S: Maintained
7746F: net/openvswitch/
Pravin B Shelarb422da72015-01-02 11:18:21 -08007747F: include/uapi/linux/openvswitch.h
Jesse Grossccb13522011-10-25 19:26:31 -07007748
Clemens Ladischaf399172011-01-10 16:32:54 +01007749OPL4 DRIVER
7750M: Clemens Ladisch <clemens@ladisch.de>
7751L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7752T: git git://git.alsa-project.org/alsa-kernel.git
7753S: Maintained
7754F: sound/drivers/opl4/
7755
Linus Torvalds1da177e2005-04-16 15:20:36 -07007756OPROFILE
Robert Richter4cf7e712012-10-29 18:53:25 +01007757M: Robert Richter <rric@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007758L: oprofile-list@lists.sf.net
7759S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02007760F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07007761F: arch/*/oprofile/
7762F: drivers/oprofile/
7763F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007764
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007765ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07007766M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08007767M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007768L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
Mark Fasheh01945fa2015-02-27 15:51:40 -08007769W: http://ocfs2.wiki.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007770S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007771F: Documentation/filesystems/ocfs2.txt
7772F: Documentation/filesystems/dlmfs.txt
7773F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007774
Linus Torvalds1da177e2005-04-16 15:20:36 -07007775ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07007776L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02007777W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07007778W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01007779S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007780F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007781
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03007782OSD LIBRARY and FILESYSTEM
Boaz Harroshfadc0752014-10-19 19:19:57 +03007783M: Boaz Harrosh <ooo@electrozaur.com>
Benny Halevyf1f66302014-02-10 11:57:29 +02007784M: Benny Halevy <bhalevy@primarydata.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02007785L: osd-dev@open-osd.org
7786W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07007787T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02007788S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03007789F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07007790F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03007791F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02007792
Miklos Szeredief94b182014-11-20 16:39:59 +01007793OVERLAY FILESYSTEM
Neil Brown7c37fbd2014-10-24 00:14:39 +02007794M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi1d113732014-11-20 16:40:01 +01007795L: linux-unionfs@vger.kernel.org
7796T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
Neil Brown7c37fbd2014-10-24 00:14:39 +02007797S: Supported
Miklos Szeredi1d113732014-11-20 16:40:01 +01007798F: fs/overlayfs/
Neil Brown7c37fbd2014-10-24 00:14:39 +02007799F: Documentation/filesystems/overlayfs.txt
7800
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007801P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02007802M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007803L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02007804W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007805S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007806F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007807
Olof Johanssonf5cd7872007-01-31 21:43:54 -06007808PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007809M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06007810L: netdev@vger.kernel.org
7811S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07007812F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06007813
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01007814PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007815M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01007816L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01007817S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007818F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01007819
Steffen Klassert48fc2672010-08-13 10:10:46 -04007820PADATA PARALLEL EXECUTION MECHANISM
7821M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04007822L: linux-crypto@vger.kernel.org
7823S: Maintained
7824F: kernel/padata.c
7825F: include/linux/padata.h
7826F: Documentation/padata.txt
7827
Harald Welte709ee532008-09-23 17:46:57 +02007828PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007829M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05007830L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02007831S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007832F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02007833
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01007834PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07007835M: David Howells <dhowells@redhat.com>
7836M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01007837L: linux-am33-list@redhat.com (moderated for non-subscribers)
7838W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
7839S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007840F: Documentation/mn10300/
7841F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01007842
Sudip Mukherjee64dfff02015-05-20 20:57:02 +05307843PARALLEL PORT SUBSYSTEM
7844M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
7845M: Sudip Mukherjee <sudip@vectorindia.org>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07007846L: linux-parport@lists.infradead.org (subscribers-only)
Sudip Mukherjee64dfff02015-05-20 20:57:02 +05307847S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007848F: drivers/parport/
7849F: include/linux/parport*.h
7850F: drivers/char/ppdev.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007851F: include/uapi/linux/ppdev.h
Sudip Mukherjee64dfff02015-05-20 20:57:02 +05307852F: Documentation/parport*.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07007853
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007854PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08007855M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07007856M: Chris Wright <chrisw@sous-sol.org>
7857M: Alok Kataria <akataria@vmware.com>
7858M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00007859L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007860S: Supported
Luis R. Rodrigueza2e19992015-02-13 17:13:40 +10307861F: Documentation/virtual/paravirt_ops.txt
Joe Perches679655d2009-04-07 20:44:32 -07007862F: arch/*/kernel/paravirt*
7863F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007864
Linus Torvalds1da177e2005-04-16 15:20:36 -07007865PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07007866M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07007867L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007868S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007869F: Documentation/blockdev/paride.txt
7870F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007871
7872PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00007873M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05007874M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00007875L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007876W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08007877Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07007878T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Helge Dellerfbb46caa2013-05-16 21:00:16 +00007879T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007880S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007881F: arch/parisc/
Helge Deller2b6bac92013-05-30 13:48:07 +00007882F: Documentation/parisc/
Joe Perches679655d2009-04-07 20:44:32 -07007883F: drivers/parisc/
Helge Deller2b6bac92013-05-30 13:48:07 +00007884F: drivers/char/agp/parisc-agp.c
7885F: drivers/input/serio/gscps2.c
7886F: drivers/parport/parport_gsc.*
7887F: drivers/tty/serial/8250/8250_gsc.c
Jingoo Han8a61f012014-07-01 15:36:01 +09007888F: drivers/video/fbdev/sti*
Helge Deller2b6bac92013-05-30 13:48:07 +00007889F: drivers/video/console/sti*
7890F: drivers/video/logo/logo_parisc*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007891
Jim Cromie1662d322006-10-06 00:43:59 -07007892PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007893M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07007894L: lm-sensors@lm-sensors.org
7895S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007896F: Documentation/hwmon/pc87360
7897F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07007898
7899PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007900M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07007901S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007902F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07007903
Jean Delvare1ad107f2010-08-14 21:09:00 +02007904PC87427 HARDWARE MONITORING DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07007905M: Jean Delvare <jdelvare@suse.com>
Jean Delvare1ad107f2010-08-14 21:09:00 +02007906L: lm-sensors@lm-sensors.org
7907S: Maintained
7908F: Documentation/hwmon/pc87427
7909F: drivers/hwmon/pc87427.c
7910
Riku Voipiob26e0ed2009-03-03 21:37:17 +02007911PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007912M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02007913S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07007914F: drivers/leds/leds-pca9532.c
7915F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02007916
Guenter Roeck5ce914a2010-10-24 18:16:59 +02007917PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07007918M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02007919L: linux-i2c@vger.kernel.org
7920S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02007921F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02007922
Khalid Aziz3971dae2012-04-12 12:49:13 -07007923PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07007924M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07007925S: Maintained
7926F: drivers/firmware/pcdp.*
7927
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06007928PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07007929M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07007930L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06007931S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007932F: Documentation/PCI/pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06007933
Linus Torvalds1da177e2005-04-16 15:20:36 -07007934PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07007935M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07007936L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06007937Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06007938T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007939S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007940F: Documentation/PCI/
7941F: drivers/pci/
7942F: include/linux/pci*
Bjorn Helgaas6b49ee42013-10-09 14:39:08 -06007943F: arch/x86/pci/
Bjorn Helgaascad01f92014-04-05 15:07:00 -06007944F: arch/x86/kernel/quirks.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007945
Rob Herringb7e78172015-01-28 10:16:18 -06007946PCI DRIVER FOR ARM VERSATILE PLATFORM
7947M: Rob Herring <robh@kernel.org>
7948L: linux-pci@vger.kernel.org
7949L: linux-arm-kernel@lists.infradead.org
7950S: Maintained
7951F: Documentation/devicetree/bindings/pci/versatile.txt
7952F: drivers/pci/host/pci-versatile.c
7953
Tanmay Inamdar5f6b6cc2014-10-01 13:01:35 -06007954PCI DRIVER FOR APPLIEDMICRO XGENE
7955M: Tanmay Inamdar <tinamdar@apm.com>
7956L: linux-pci@vger.kernel.org
7957L: linux-arm-kernel@lists.infradead.org
7958S: Maintained
7959F: Documentation/devicetree/bindings/pci/xgene-pci.txt
7960F: drivers/pci/host/pci-xgene.c
7961
Minghuan Lian62d0ff832014-11-05 16:45:11 +08007962PCI DRIVER FOR FREESCALE LAYERSCAPE
7963M: Minghuan Lian <minghuan.Lian@freescale.com>
7964M: Mingkai Hu <mingkai.hu@freescale.com>
7965M: Roy Zang <tie-fei.zang@freescale.com>
7966L: linuxppc-dev@lists.ozlabs.org
7967L: linux-pci@vger.kernel.org
7968L: linux-arm-kernel@lists.infradead.org
7969S: Maintained
7970F: drivers/pci/host/*layerscape*
7971
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07007972PCI DRIVER FOR IMX6
Lucas Stachf175aa22015-01-19 11:17:31 +01007973M: Richard Zhu <Richard.Zhu@freescale.com>
Lucas Stach1ba55f52014-07-31 20:16:04 +02007974M: Lucas Stach <l.stach@pengutronix.de>
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07007975L: linux-pci@vger.kernel.org
7976L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7977S: Maintained
7978F: drivers/pci/host/*imx6*
7979
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -06007980PCI DRIVER FOR TI KEYSTONE
7981M: Murali Karicheri <m-karicheri2@ti.com>
7982L: linux-pci@vger.kernel.org
7983L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7984S: Maintained
7985F: drivers/pci/host/*keystone*
7986
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07007987PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
7988M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7989M: Jason Cooper <jason@lakedaemon.net>
7990L: linux-pci@vger.kernel.org
7991L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7992S: Maintained
7993F: drivers/pci/host/*mvebu*
7994
Thierry Reding0447cfd2013-08-09 16:49:32 +02007995PCI DRIVER FOR NVIDIA TEGRA
7996M: Thierry Reding <thierry.reding@gmail.com>
7997L: linux-tegra@vger.kernel.org
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07007998L: linux-pci@vger.kernel.org
Thierry Reding0447cfd2013-08-09 16:49:32 +02007999S: Supported
8000F: Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
8001F: drivers/pci/host/pci-tegra.c
8002
Kishon Vijay Abraham I47ff3de2014-07-22 15:23:45 -06008003PCI DRIVER FOR TI DRA7XX
8004M: Kishon Vijay Abraham I <kishon@ti.com>
8005L: linux-omap@vger.kernel.org
8006L: linux-pci@vger.kernel.org
8007S: Supported
8008F: Documentation/devicetree/bindings/pci/ti-pci.txt
8009F: drivers/pci/host/pci-dra7xx.c
8010
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008011PCI DRIVER FOR RENESAS R-CAR
8012M: Simon Horman <horms@verge.net.au>
8013L: linux-pci@vger.kernel.org
8014L: linux-sh@vger.kernel.org
8015S: Maintained
8016F: drivers/pci/host/*rcar*
8017
Jingoo Han4af82252013-09-12 20:29:24 +09008018PCI DRIVER FOR SAMSUNG EXYNOS
Jingoo Hanb7701752015-05-14 15:17:07 -07008019M: Jingoo Han <jingoohan1@gmail.com>
Jingoo Han4af82252013-09-12 20:29:24 +09008020L: linux-pci@vger.kernel.org
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008021L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8022L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Jingoo Han4af82252013-09-12 20:29:24 +09008023S: Maintained
8024F: drivers/pci/host/pci-exynos.c
8025
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008026PCI DRIVER FOR SYNOPSIS DESIGNWARE
Jingoo Hanb7701752015-05-14 15:17:07 -07008027M: Jingoo Han <jingoohan1@gmail.com>
Pratyush Anand110baab2015-04-30 09:46:07 +05308028M: Pratyush Anand <pratyush.anand@gmail.com>
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008029L: linux-pci@vger.kernel.org
8030S: Maintained
8031F: drivers/pci/host/*designware*
8032
Will Deaconcf288552014-05-01 12:04:28 +01008033PCI DRIVER FOR GENERIC OF HOSTS
8034M: Will Deacon <will.deacon@arm.com>
8035L: linux-pci@vger.kernel.org
8036L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8037S: Maintained
8038F: Documentation/devicetree/bindings/pci/host-generic-pci.txt
8039F: drivers/pci/host/pci-host-generic.c
8040
Pratyush Anand51b66a62014-02-11 11:39:26 +05308041PCIE DRIVER FOR ST SPEAR13XX
Pratyush Anand110baab2015-04-30 09:46:07 +05308042M: Pratyush Anand <pratyush.anand@gmail.com>
Pratyush Anand51b66a62014-02-11 11:39:26 +05308043L: linux-pci@vger.kernel.org
Pratyush Anand110baab2015-04-30 09:46:07 +05308044S: Maintained
Pratyush Anand51b66a62014-02-11 11:39:26 +05308045F: drivers/pci/host/*spear*
8046
Duc Dangdcd19de2015-06-05 15:56:34 -05008047PCI MSI DRIVER FOR APPLIEDMICRO XGENE
8048M: Duc Dang <dhdang@apm.com>
8049L: linux-pci@vger.kernel.org
8050L: linux-arm-kernel@lists.infradead.org
8051S: Maintained
8052F: Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
8053F: drivers/pci/host/pci-xgene-msi.c
8054
Linus Torvalds1da177e2005-04-16 15:20:36 -07008055PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07008056P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07008057L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08008058W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07008059T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07008060S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008061F: Documentation/pcmcia/
8062F: drivers/pcmcia/
8063F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008064
8065PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08008066M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07008067L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008068S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07008069F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008070
Steffen Klassert48fc2672010-08-13 10:10:46 -04008071PCRYPT PARALLEL CRYPTO ENGINE
8072M: Steffen Klassert <steffen.klassert@secunet.com>
8073L: linux-crypto@vger.kernel.org
8074S: Maintained
8075F: crypto/pcrypt.c
8076F: include/crypto/pcrypt.h
8077
Tejun Heoe72df0b2010-12-10 17:02:49 +01008078PER-CPU MEMORY ALLOCATOR
8079M: Tejun Heo <tj@kernel.org>
8080M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01008081T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
8082S: Maintained
8083F: include/linux/percpu*.h
8084F: mm/percpu*.c
8085F: arch/*/include/asm/percpu.h
8086
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07008087PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07008088M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07008089S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008090F: include/linux/delayacct.h
8091F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07008092
Ingo Molnar57c0c152009-09-21 12:20:38 +02008093PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008094M: Peter Zijlstra <a.p.zijlstra@chello.nl>
Ingo Molnardd9b2382012-03-19 21:03:46 +01008095M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melof80c5392014-03-27 17:36:14 -03008096M: Arnaldo Carvalho de Melo <acme@kernel.org>
Ingo Molnar981c3a42014-01-21 10:59:20 +01008097L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008098T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10008099S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09008100F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02008101F: include/linux/perf_event.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008102F: include/uapi/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01008103F: arch/*/kernel/perf_event*.c
8104F: arch/*/kernel/*/perf_event*.c
8105F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02008106F: arch/*/include/asm/perf_event.h
Vincent Legolla0032362009-10-13 14:48:14 +02008107F: arch/*/kernel/perf_callchain.c
8108F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10008109
Jim Cromiedd49d0f2006-03-24 18:08:17 +01008110PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07008111M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01008112L: linux-abi-devel@lists.sourceforge.net
8113S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008114F: include/linux/personality.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008115F: include/uapi/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01008116
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00008117PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00008118M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00008119S: Supported
8120F: Documentation/networking/phonet.txt
8121F: include/linux/phonet.h
8122F: include/net/phonet/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008123F: include/uapi/linux/phonet.h
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00008124F: net/phonet/
8125
Linus Torvalds1da177e2005-04-16 15:20:36 -07008126PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008127M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008128L: linux-mtd@lists.infradead.org
8129S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008130F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008131
Bruno Prémontefdbb102012-07-30 21:39:03 +02008132PICOLCD HID DRIVER
8133M: Bruno Prémont <bonbons@linux-vserver.org>
8134L: linux-input@vger.kernel.org
8135S: Maintained
8136F: drivers/hid/hid-picolcd*
8137
Jamie Ilesa53bfa02011-12-12 20:28:42 +00008138PICOXCELL SUPPORT
8139M: Jamie Iles <jamie@jamieiles.com>
8140L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8141T: git git://github.com/jamieiles/linux-2.6-ji.git
8142S: Supported
Joe Perchesb8733982014-08-08 14:25:12 -07008143F: arch/arm/boot/dts/picoxcell*
Joe Perches14430812013-09-11 14:23:50 -07008144F: arch/arm/mach-picoxcell/
Joe Perchesb8733982014-08-08 14:25:12 -07008145F: drivers/crypto/picoxcell*
Jamie Ilesa53bfa02011-12-12 20:28:42 +00008146
Linus Walleij2744e8a2011-05-02 20:50:54 +02008147PIN CONTROL SUBSYSTEM
8148M: Linus Walleij <linus.walleij@linaro.org>
David Cohenc11f0422014-10-16 19:06:59 -07008149L: linux-gpio@vger.kernel.org
Linus Walleijdbe752a2015-01-19 11:27:19 +01008150T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
Linus Walleij2744e8a2011-05-02 20:50:54 +02008151S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07008152F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02008153F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02008154
Jean-Christophe PLAGNIOL-VILLARD2201bbb2012-10-27 19:53:12 +02008155PIN CONTROLLER - ATMEL AT91
8156M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
8157L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8158S: Maintained
Alexandre Bellonic654b6b2014-10-17 11:49:40 +02008159F: drivers/pinctrl/pinctrl-at91.*
Jean-Christophe PLAGNIOL-VILLARD2201bbb2012-10-27 19:53:12 +02008160
Mika Westerbergcbd1b652014-10-24 15:16:53 +03008161PIN CONTROLLER - INTEL
8162M: Mika Westerberg <mika.westerberg@linux.intel.com>
8163M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
8164S: Maintained
8165F: drivers/pinctrl/intel/
Viresh Kumardeda8282012-03-28 22:27:07 +05308166
Laurent Pinchart9963b532014-07-02 16:33:31 +02008167PIN CONTROLLER - RENESAS
8168M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8169L: linux-sh@vger.kernel.org
8170S: Maintained
8171F: drivers/pinctrl/sh-pfc/
8172
Doug Andersonb75e60d2013-06-16 15:17:46 -07008173PIN CONTROLLER - SAMSUNG
Tomasz Figafea685e2014-08-26 16:30:53 +02008174M: Tomasz Figa <tomasz.figa@gmail.com>
Doug Andersonb75e60d2013-06-16 15:17:46 -07008175L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8176L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8177S: Maintained
Sachin Kamat9b5b33f2014-07-11 14:29:50 +05308178F: drivers/pinctrl/samsung/
Doug Andersonb75e60d2013-06-16 15:17:46 -07008179
Viresh Kumardeda8282012-03-28 22:27:07 +05308180PIN CONTROLLER - ST SPEAR
Viresh Kumarda899472015-07-17 16:23:50 -07008181M: Viresh Kumar <vireshk@kernel.org>
Viresh Kumardeda8282012-03-28 22:27:07 +05308182L: spear-devel@list.st.com
8183L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8184W: http://www.st.com/spear
8185S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02008186F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05308187
Peter Osterlund249a6772005-09-27 21:45:30 -07008188PKTCDVD DRIVER
Jiri Kosinae5f64502015-08-09 09:11:34 +02008189M: Jiri Kosina <jikos@kernel.org>
Peter Osterlund249a6772005-09-27 21:45:30 -07008190S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008191F: drivers/block/pktcdvd.c
8192F: include/linux/pktcdvd.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008193F: include/uapi/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07008194
GuanXuetaob31d8272011-01-16 00:35:49 +08008195PKUNITY SOC DRIVERS
8196M: Guan Xuetao <gxt@mprc.pku.edu.cn>
8197W: http://mprc.pku.edu.cn/~guanxuetao/linux
8198S: Maintained
Guan Xuetaoceebf4d2014-05-27 07:53:10 +08008199T: git git://github.com/gxt/linux.git
GuanXuetaob31d8272011-01-16 00:35:49 +08008200F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08008201F: drivers/i2c/busses/i2c-puv3.c
Jingoo Han8a61f012014-07-01 15:36:01 +09008202F: drivers/video/fbdev/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08008203F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08008204
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07008205PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07008206M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07008207L: lm-sensors@lm-sensors.org
8208W: http://www.lm-sensors.org/
8209W: http://www.roeck-us.net/linux/drivers/
8210T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8211S: Maintained
8212F: Documentation/hwmon/pmbus
8213F: drivers/hwmon/pmbus/
8214F: include/linux/i2c/pmbus.h
8215
Anil Ravindranath89a36812009-08-25 17:35:18 -07008216PMC SIERRA MaxRAID DRIVER
Anil Ravindranath89a36812009-08-25 17:35:18 -07008217L: linux-scsi@vger.kernel.org
8218W: http://www.pmc-sierra.com/
Joe Perches3cdea4d712015-09-09 15:36:14 -07008219S: Orphan
Anil Ravindranath89a36812009-08-25 17:35:18 -07008220F: drivers/scsi/pmcraid.*
8221
jack wangdbf9bfe2009-10-14 16:19:21 +08008222PMC SIERRA PM8001 DRIVER
Jack Wangd32477e2015-07-29 12:02:50 +02008223M: Jack Wang <jinpu.wang@profitbricks.com>
jack wangdbf9bfe2009-10-14 16:19:21 +08008224M: lindar_liu@usish.com
Suresh Thiagarajanf5a7b522014-07-30 17:37:43 +05308225L: pmchba@pmcs.com
jack wangdbf9bfe2009-10-14 16:19:21 +08008226L: linux-scsi@vger.kernel.org
8227S: Supported
8228F: drivers/scsi/pm8001/
8229
Linus Torvalds1da177e2005-04-16 15:20:36 -07008230POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07008231M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar981c3a42014-01-21 10:59:20 +01008232L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008233T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner5cee9642014-06-22 12:06:40 +02008234S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008235F: fs/timerfd.c
8236F: include/linux/timer*
Thomas Gleixner5cee9642014-06-22 12:06:40 +02008237F: kernel/time/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008238
Anton Vorontsov3be86142007-07-15 04:43:36 +04008239POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Sebastian Reichelad8464a2014-07-16 20:14:30 +02008240M: Sebastian Reichel <sre@kernel.org>
Dmitry Eremin-Solenikov57318932014-01-21 03:33:09 +04008241M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008242M: David Woodhouse <dwmw2@infradead.org>
Sebastian Reichelad8464a2014-07-16 20:14:30 +02008243L: linux-pm@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07008244T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04008245S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008246F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07008247F: drivers/power/
Sebastian Reichel26305022015-07-24 23:11:28 +02008248X: drivers/power/avs/
Anton Vorontsov3be86142007-07-15 04:43:36 +04008249
Mark Rutland514f1612015-07-31 15:46:20 +01008250POWER STATE COORDINATION INTERFACE (PSCI)
8251M: Mark Rutland <mark.rutland@arm.com>
8252M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
8253L: linux-arm-kernel@lists.infradead.org
8254S: Maintained
8255F: drivers/firmware/psci.c
8256F: include/linux/psci.h
8257F: include/uapi/linux/psci.h
8258
Linus Torvalds1da177e2005-04-16 15:20:36 -07008259PNP SUPPORT
Joe Perches9c3646d2015-06-25 15:02:00 -07008260M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008261S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008262F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008263
Vitaly Wool999445d2007-01-04 13:07:03 +01008264PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008265M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01008266L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01008267S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008268F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01008269
Linus Torvalds1da177e2005-04-16 15:20:36 -07008270PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07008271M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008272L: linux-ppp@vger.kernel.org
8273S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07008274F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008275
8276PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07008277M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008278S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008279F: net/atm/pppoatm.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008280F: include/uapi/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008281
8282PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07008283M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008284S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07008285F: drivers/net/ppp/pppoe.c
8286F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008287
James Chapmana6d23702007-06-27 15:53:17 -07008288PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07008289M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07008290S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07008291F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07008292F: include/linux/if_pppol2tp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008293F: include/uapi/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07008294
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07008295PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07008296M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07008297W: http://wiki.enneenne.com/index.php/LinuxPPS_support
8298L: linuxpps@ml.enneenne.com (subscribers-only)
8299S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07008300F: Documentation/pps/
8301F: drivers/pps/
8302F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07008303
Harry Wei71a6d0a2011-05-11 15:13:33 -07008304PPTP DRIVER
8305M: Dmitry Kozlov <xeb@mail.ru>
8306L: netdev@vger.kernel.org
8307S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07008308F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07008309W: http://sourceforge.net/projects/accel-pptp
8310
Linus Torvalds1da177e2005-04-16 15:20:36 -07008311PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07008312M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008313L: kpreempt-tech@lists.sourceforge.net
8314W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
8315S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008316F: Documentation/preempt-locking.txt
8317F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008318
8319PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008320M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07008321L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04008322W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04008323S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07008324F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008325
Masakazu Mokuno02c18892007-07-05 20:11:16 +09008326PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00008327M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09008328L: netdev@vger.kernel.org
Michael Ellermana14ab6b2015-05-01 13:20:25 +10008329L: linuxppc-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00008330S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07008331F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09008332
Geoff Levandf58a9d12006-11-23 00:46:51 +01008333PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00008334M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10008335L: linuxppc-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00008336S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008337F: arch/powerpc/boot/ps3*
8338F: arch/powerpc/include/asm/lv1call.h
8339F: arch/powerpc/include/asm/ps3*.h
8340F: arch/powerpc/platforms/ps3/
8341F: drivers/*/ps3*
8342F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00008343F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07008344F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00008345F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01008346
Jim Pariscffb4add2009-01-06 11:32:10 +00008347PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008348M: Jim Paris <jim@jtan.com>
Geoff Levand3715a5d2015-06-10 18:00:18 +00008349M: Geoff Levand <geoff@infradead.org>
Michael Ellermana14ab6b2015-05-01 13:20:25 +10008350L: linuxppc-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00008351S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07008352F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00008353
Anton Vorontsov8defe592012-08-03 18:07:20 -07008354PSTORE FILESYSTEM
Anton Vorontsov9d5e2a02013-06-09 09:41:23 -07008355M: Anton Vorontsov <anton@enomsg.org>
Anton Vorontsov8defe592012-08-03 18:07:20 -07008356M: Colin Cross <ccross@android.com>
8357M: Kees Cook <keescook@chromium.org>
8358M: Tony Luck <tony.luck@intel.com>
8359S: Maintained
8360T: git git://git.infradead.org/users/cbou/linux-pstore.git
8361F: fs/pstore/
8362F: include/linux/pstore*
Matt Fleming04851772013-02-08 15:48:51 +00008363F: drivers/firmware/efi/efi-pstore.c
Anton Vorontsov8defe592012-08-03 18:07:20 -07008364F: drivers/acpi/apei/erst.c
8365
Richard Cochran7fbc4152012-03-10 01:55:53 +00008366PTP HARDWARE CLOCK SUPPORT
8367M: Richard Cochran <richardcochran@gmail.com>
Jiri Bence7333e32013-03-26 04:01:12 +00008368L: netdev@vger.kernel.org
Richard Cochran7fbc4152012-03-10 01:55:53 +00008369S: Maintained
8370W: http://linuxptp.sourceforge.net/
8371F: Documentation/ABI/testing/sysfs-ptp
8372F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07008373F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00008374F: drivers/net/phy/dp83640*
8375F: drivers/ptp/*
8376F: include/linux/ptp_cl*
8377
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07008378PTRACE SUPPORT
Richard Weinbergere846ee52014-08-08 14:23:46 -07008379M: Roland McGrath <roland@hack.frob.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008380M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07008381S: Maintained
8382F: include/asm-generic/syscall.h
8383F: include/linux/ptrace.h
8384F: include/linux/regset.h
8385F: include/linux/tracehook.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008386F: include/uapi/linux/ptrace.h
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07008387F: kernel/ptrace.c
8388
Michael Krufky83202042006-07-03 00:24:18 -07008389PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008390M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03008391L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008392L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07008393W: http://www.isely.net/pvrusb2/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008394T: git git://linuxtv.org/media_tree.git
Michael Krufky83202042006-07-03 00:24:18 -07008395S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008396F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008397F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07008398
Hans de Goede39532e62012-11-04 17:05:59 -03008399PWC WEBCAM DRIVER
8400M: Hans de Goede <hdegoede@redhat.com>
8401L: linux-media@vger.kernel.org
8402T: git git://linuxtv.org/media_tree.git
8403S: Maintained
8404F: drivers/media/usb/pwc/*
8405
Kamil Debski93c090b2014-08-20 11:29:23 +02008406PWM FAN DRIVER
8407M: Kamil Debski <k.debski@samsung.com>
8408L: lm-sensors@lm-sensors.org
8409S: Supported
8410F: Documentation/devicetree/bindings/hwmon/pwm-fan.txt
8411F: Documentation/hwmon/pwm-fan
8412F: drivers/hwmon/pwm-fan.c
8413
Thierry Reding200efed2012-03-27 13:16:18 +02008414PWM SUBSYSTEM
Thierry Redingaa3495f2013-05-06 12:50:36 +02008415M: Thierry Reding <thierry.reding@gmail.com>
8416L: linux-pwm@vger.kernel.org
Sascha Hauer0c2498f2011-01-28 09:40:40 +01008417S: Maintained
Thierry Reding006e8542013-11-01 11:15:05 +01008418T: git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
Thierry Reding200efed2012-03-27 13:16:18 +02008419F: Documentation/pwm.txt
8420F: Documentation/devicetree/bindings/pwm/
8421F: include/linux/pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01008422F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07008423F: drivers/video/backlight/pwm_bl.c
8424F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01008425
Eric Miao30ec2612008-06-12 15:21:41 -07008426PXA2xx/PXA3xx SUPPORT
Robert Jarzmik8da5e302014-09-24 23:08:00 +02008427M: Daniel Mack <daniel@zonque.org>
Haojian Zhuanga323f662012-03-14 18:33:07 +08008428M: Haojian Zhuang <haojian.zhuang@gmail.com>
Robert Jarzmik8da5e302014-09-24 23:08:00 +02008429M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -07008430L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08008431T: git git://github.com/hzhuang1/linux.git
Robert Jarzmik8da5e302014-09-24 23:08:00 +02008432T: git git://github.com/rjarzmik/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008433S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008434F: arch/arm/mach-pxa/
Robert Jarzmik820439f2015-05-25 23:29:19 +02008435F: drivers/dma/pxa*
Joe Perches679655d2009-04-07 20:44:32 -07008436F: drivers/pcmcia/pxa2xx*
Joe Perches9df92e62012-01-10 15:09:06 -08008437F: drivers/spi/spi-pxa2xx*
Joe Perchesfaf2e1d2014-08-08 14:26:18 -07008438F: drivers/usb/gadget/udc/pxa2*
Joe Perches679655d2009-04-07 20:44:32 -07008439F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01008440F: sound/arm/pxa*
Joe Perches14430812013-09-11 14:23:50 -07008441F: sound/soc/pxa/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008442
Ezequiel Garciaec64d3b2013-12-04 15:28:46 -08008443PXA3xx NAND FLASH DRIVER
8444M: Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
8445L: linux-mtd@lists.infradead.org
8446S: Maintained
Joe Perches9a67f092014-08-08 14:25:10 -07008447F: drivers/mtd/nand/pxa3xx_nand.c
Ezequiel Garciaec64d3b2013-12-04 15:28:46 -08008448
Haojian Zhuang3f640c62011-12-09 09:58:41 +08008449MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07008450M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08008451M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08008452L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08008453T: git git://github.com/hzhuang1/linux.git
8454T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08008455S: Maintained
Haojian Zhuang3f640c62011-12-09 09:58:41 +08008456F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08008457
Pierre Ossman272f1332007-05-14 21:25:26 +02008458PXA MMCI DRIVER
8459S: Orphan
8460
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08008461PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008462M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08008463L: rtc-linux@googlegroups.com
8464S: Maintained
8465
Tadeusz Strukcea40012014-06-05 13:44:39 -07008466QAT DRIVER
Joe Perches49e7d9d2015-04-15 16:17:31 -07008467M: Tadeusz Struk <tadeusz.struk@intel.com>
8468L: qat-linux@intel.com
8469S: Supported
8470F: drivers/crypto/qat/
Tadeusz Strukcea40012014-06-05 13:44:39 -07008471
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07008472QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04008473M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07008474L: linux-rdma@vger.kernel.org
8475S: Supported
8476F: drivers/infiniband/hw/qib/
8477
Jes Sorensen5e9772b2010-06-30 15:37:38 +02008478QLOGIC QLA1280 SCSI DRIVER
8479M: Michael Reed <mdr@sgi.com>
8480L: linux-scsi@vger.kernel.org
8481S: Maintained
8482F: drivers/scsi/qla1280.[ch]
8483
Linus Torvalds1da177e2005-04-16 15:20:36 -07008484QLOGIC QLA2XXX FC-SCSI DRIVER
Saurav Kashyap2c804eb2013-10-30 03:38:28 -04008485M: qla2xxx-upstream@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07008486L: linux-scsi@vger.kernel.org
8487S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008488F: Documentation/scsi/LICENSE.qla2xxx
8489F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008490
Ravi Anand883c98f2010-04-28 11:45:49 +05308491QLOGIC QLA4XXX iSCSI DRIVER
Nilesh Javali1018b8b2015-01-07 00:49:23 -05008492M: QLogic-Storage-Upstream@qlogic.com
Ravi Anand883c98f2010-04-28 11:45:49 +05308493L: linux-scsi@vger.kernel.org
8494S: Supported
Vikas Chaudharybacfb812013-07-11 02:09:43 -04008495F: Documentation/scsi/LICENSE.qla4xxx
Ravi Anand883c98f2010-04-28 11:45:49 +05308496F: drivers/scsi/qla4xxx/
8497
Ron Mercer5a4faa82006-07-25 00:40:21 -07008498QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00008499M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008500M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa82006-07-25 00:40:21 -07008501M: linux-driver@qlogic.com
8502L: netdev@vger.kernel.org
8503S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008504F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07008505F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa82006-07-25 00:40:21 -07008506
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00008507QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Shahed Shaikh9f35a3c2014-08-27 12:43:21 -04008508M: Dept-GELinuxNICDev@qlogic.com
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00008509L: netdev@vger.kernel.org
8510S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07008511F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00008512
Ron Mercerc4e84bd2008-09-18 11:56:28 -04008513QLOGIC QLGE 10Gb ETHERNET DRIVER
Harish Patilc9b1a5b2014-09-18 17:27:25 -04008514M: Harish Patil <harish.patil@qlogic.com>
8515M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
8516M: Dept-GELinuxNICDev@qlogic.com
Joe Perches4cbfbe22009-07-29 15:04:21 -07008517M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04008518L: netdev@vger.kernel.org
8519S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07008520F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04008521
Linus Torvalds1da177e2005-04-16 15:20:36 -07008522QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008523M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008524W: http://www.alarsen.net/linux/qnx4fs/
8525S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07008526F: fs/qnx4/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008527F: include/uapi/linux/qnx4_fs.h
8528F: include/uapi/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008529
Antti Palosaari91952bc2012-10-01 12:28:46 -03008530QT1010 MEDIA DRIVER
8531M: Antti Palosaari <crope@iki.fi>
8532L: linux-media@vger.kernel.org
8533W: http://linuxtv.org/
8534W: http://palosaari.fi/linux/
8535Q: http://patchwork.linuxtv.org/project/linux-media/list/
8536T: git git://linuxtv.org/anttip/media_tree.git
8537S: Maintained
8538F: drivers/media/tuners/qt1010*
8539
Sujith Manoharan966fb5e2013-11-06 10:43:27 +05308540QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
8541M: QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
8542L: linux-wireless@vger.kernel.org
8543L: ath9k-devel@lists.ath9k.org
8544W: http://wireless.kernel.org/en/users/Drivers/ath9k
8545S: Supported
8546F: drivers/net/wireless/ath/ath9k/
8547
Kalle Valo2ea0ffc2013-07-22 12:22:19 +03008548QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
8549M: Kalle Valo <kvalo@qca.qualcomm.com>
8550L: ath10k@lists.infradead.org
8551W: http://wireless.kernel.org/en/users/Drivers/ath10k
8552T: git git://github.com/kvalo/ath.git
8553S: Supported
8554F: drivers/net/wireless/ath/ath10k/
8555
Richard Kuo4f4567c2011-10-31 18:56:38 -05008556QUALCOMM HEXAGON ARCHITECTURE
8557M: Richard Kuo <rkuo@codeaurora.org>
8558L: linux-hexagon@vger.kernel.org
8559S: Supported
8560F: arch/hexagon/
8561
Eugene Krasnikov8e84c252013-10-08 21:25:58 +01008562QUALCOMM WCN36XX WIRELESS DRIVER
8563M: Eugene Krasnikov <k.eugene.e@gmail.com>
8564L: wcn36xx@lists.infradead.org
8565W: http://wireless.kernel.org/en/users/Drivers/wcn36xx
8566T: git git://github.com/KrasnikovEugene/wcn36xx.git
8567S: Supported
8568F: drivers/net/wireless/ath/wcn36xx/
8569
Yehuda Sadeh602adf42010-08-12 16:11:25 -07008570RADOS BLOCK DEVICE (RBD)
Sage Weil0f5417c2015-02-19 10:10:40 -08008571M: Ilya Dryomov <idryomov@gmail.com>
8572M: Sage Weil <sage@redhat.com>
Alex Elder527a88b2013-12-26 08:37:43 -06008573M: Alex Elder <elder@kernel.org>
Sage Weil398ecff52015-07-09 11:46:14 -04008574L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07008575W: http://ceph.com/
8576T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil6e67b7a2015-07-09 11:47:37 -04008577T: git git://github.com/ceph/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07008578S: Supported
Sage Weil398ecff52015-07-09 11:46:14 -04008579F: Documentation/ABI/testing/sysfs-bus-rbd
Yehuda Sadeh602adf42010-08-12 16:11:25 -07008580F: drivers/block/rbd.c
8581F: drivers/block/rbd_types.h
8582
Linus Torvalds1da177e2005-04-16 15:20:36 -07008583RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008584M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008585L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008586S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09008587F: drivers/video/fbdev/aty/radeon*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008588F: include/uapi/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008589
Hans de Goedec6c9b342012-11-04 17:03:58 -03008590RADIOSHARK RADIO DRIVER
8591M: Hans de Goede <hdegoede@redhat.com>
8592L: linux-media@vger.kernel.org
8593T: git git://linuxtv.org/media_tree.git
8594S: Maintained
8595F: drivers/media/radio/radio-shark.c
8596
8597RADIOSHARK2 RADIO DRIVER
8598M: Hans de Goede <hdegoede@redhat.com>
8599L: linux-media@vger.kernel.org
8600T: git git://linuxtv.org/media_tree.git
8601S: Maintained
8602F: drivers/media/radio/radio-shark2.c
8603F: drivers/media/radio/radio-tea5777.c
8604
Linus Torvalds1da177e2005-04-16 15:20:36 -07008605RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008606M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008607L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008608S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09008609F: drivers/video/fbdev/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008610
Randy Dunlape7839f22008-10-12 16:11:45 -07008611RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07008612P: rt2x00 project
Stanislaw Gruszkab1824272014-09-28 14:03:06 +02008613M: Stanislaw Gruszka <sgruszka@redhat.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01008614M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07008615L: linux-wireless@vger.kernel.org
Ivo van Doorn95ea3622007-09-25 17:57:13 -07008616S: Maintained
8617F: drivers/net/wireless/rt2x00/
8618
Nick Piggin9db55792008-02-08 04:19:49 -08008619RAMDISK RAM BLOCK DEVICE DRIVER
Ross Zwislerea7618e2015-03-17 12:56:30 -06008620M: Jens Axboe <axboe@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08008621S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008622F: Documentation/blockdev/ramdisk.txt
8623F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08008624
Matt Mackall9e95ce22005-04-16 15:25:56 -07008625RANDOM NUMBER DRIVER
Christoph Hellwig0624bca2014-04-25 01:12:01 -07008626M: "Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07008627S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008628F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07008629
Matt Porter394b7012005-11-07 01:00:15 -08008630RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008631M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08008632M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08008633S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008634F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08008635
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008636RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008637L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04008638S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07008639F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008640
8641RCUTORTURE MODULE
Josh Triplette0198b22014-07-30 16:08:42 -07008642M: Josh Triplett <josh@joshtriplett.org>
Joe Perches8b58be82009-07-29 15:04:30 -07008643M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +01008644L: linux-kernel@vger.kernel.org
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08008645S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07008646T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07008647F: Documentation/RCU/torture.txt
Joe Perches34e2d562014-07-03 15:08:00 -07008648F: kernel/rcu/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008649
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -07008650RCUTORTURE TEST FRAMEWORK
8651M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyab0afd62014-06-03 08:17:06 -07008652M: Josh Triplett <josh@joshtriplett.org>
Paul E. McKenney4632a192014-05-30 15:37:24 -07008653R: Steven Rostedt <rostedt@goodmis.org>
8654R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Lai Jiangshan96a39bc2015-07-01 15:26:27 +08008655R: Lai Jiangshan <jiangshanlai@gmail.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +01008656L: linux-kernel@vger.kernel.org
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -07008657S: Supported
8658T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8659F: tools/testing/selftests/rcutorture
8660
Florian Fainellic1f766b2008-02-06 22:39:44 +01008661RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07008662M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01008663S: Maintained
8664
Florian Fainellidb17f392007-12-19 11:30:30 +01008665RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008666M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f392007-12-19 11:30:30 +01008667L: netdev@vger.kernel.org
8668S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07008669F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01008670
Andy Grovera09ed662009-02-24 15:30:41 +00008671RDS - RELIABLE DATAGRAM SOCKETS
Venkat Venkatsubra8a85ac42014-01-30 13:28:47 -08008672M: Chien Yen <chien.yen@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00008673L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00008674S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008675F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00008676
Josh Triplett595182b2006-10-04 02:17:21 -07008677READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07008678M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyab0afd62014-06-03 08:17:06 -07008679M: Josh Triplett <josh@joshtriplett.org>
Paul E. McKenney4632a192014-05-30 15:37:24 -07008680R: Steven Rostedt <rostedt@goodmis.org>
8681R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Lai Jiangshan96a39bc2015-07-01 15:26:27 +08008682R: Lai Jiangshan <jiangshanlai@gmail.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +01008683L: linux-kernel@vger.kernel.org
Paul E. McKenney9fab97872012-05-07 09:36:34 -07008684W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07008685S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07008686T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08008687F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07008688X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08008689F: include/linux/rcu*
Paul E. McKenney4102ada2013-10-08 20:23:47 -07008690X: include/linux/srcu.h
8691F: kernel/rcu/
Joe Perches34e2d562014-07-03 15:08:00 -07008692X: kernel/torture.c
Josh Triplett595182b2006-10-04 02:17:21 -07008693
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08008694REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008695M: Alessandro Zummo <a.zummo@towertech.it>
Alexandre Belloni7c6f84f2015-04-16 12:45:43 -07008696M: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Alessandro Zummo76465492006-12-10 02:19:06 -08008697L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08008698Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alexandre Belloni4733f392015-05-26 11:13:04 +02008699T: git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08008700S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008701F: Documentation/rtc.txt
8702F: drivers/rtc/
8703F: include/linux/rtc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008704F: include/uapi/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08008705
Mark Brown0e400c52014-07-31 12:38:31 +01008706REALTEK AUDIO CODECS
8707M: Bard Liao <bardliao@realtek.com>
8708M: Oder Chiou <oder_chiou@realtek.com>
8709S: Maintained
8710F: sound/soc/codecs/rt*
8711F: include/sound/rt*.h
8712
Linus Torvalds1da177e2005-04-16 15:20:36 -07008713REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07008714L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008715S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008716F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008717
Mark Brownb83a3132011-05-11 19:59:58 +02008718REGISTER MAP ABSTRACTION
Mark Brownb02e48f2013-04-12 11:39:57 +01008719M: Mark Brown <broonie@kernel.org>
Mark Browndd060bc2014-08-16 12:30:58 +01008720L: linux-kernel@vger.kernel.org
Mark Brownb83a3132011-05-11 19:59:58 +02008721T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
8722S: Supported
8723F: drivers/base/regmap/
8724F: include/linux/regmap.h
8725
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02008726REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
8727M: Ohad Ben-Cohen <ohad@wizery.com>
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03008728T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02008729S: Maintained
8730F: drivers/remoteproc/
8731F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07008732F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02008733
Ohad Ben-Cohend8115db2013-04-16 20:34:49 +03008734REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
8735M: Ohad Ben-Cohen <ohad@wizery.com>
8736T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
8737S: Maintained
8738F: drivers/rpmsg/
8739F: Documentation/rpmsg.txt
8740F: include/linux/rpmsg.h
8741
Philipp Zabel1b0fe6b2014-05-27 15:58:09 +02008742RESET CONTROLLER FRAMEWORK
8743M: Philipp Zabel <p.zabel@pengutronix.de>
8744S: Maintained
8745F: drivers/reset/
8746F: Documentation/devicetree/bindings/reset/
Philipp Zabelb2f6dd72015-02-13 12:14:40 +01008747F: include/dt-bindings/reset/
Philipp Zabel1b0fe6b2014-05-27 15:58:09 +02008748F: include/linux/reset.h
8749F: include/linux/reset-controller.h
8750
Ivo van Doorne08976452008-04-12 19:23:55 +02008751RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07008752M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02008753L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02008754W: http://wireless.kernel.org/
8755T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
8756T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02008757S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08008758F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07008759F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02008760
Thomas Graf933685c2015-01-13 01:01:24 +01008761RHASHTABLE
8762M: Thomas Graf <tgraf@suug.ch>
8763L: netdev@vger.kernel.org
8764S: Maintained
8765F: lib/rhashtable.c
8766F: include/linux/rhashtable.h
8767
Maxim Levitsky67e054e2010-02-22 20:39:42 +02008768RICOH SMARTMEDIA/XD DRIVER
8769M: Maxim Levitsky <maximlevitsky@gmail.com>
8770S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07008771F: drivers/mtd/nand/r852.c
8772F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02008773
Maxim Levitsky92634122011-03-25 01:56:59 -07008774RICOH R5C592 MEMORYSTICK DRIVER
8775M: Maxim Levitsky <maximlevitsky@gmail.com>
8776S: Maintained
8777F: drivers/memstick/host/r592.*
8778
Stefan Achatz27f1d2f2013-09-05 06:36:01 +02008779ROCCAT DRIVERS
8780M: Stefan Achatz <erazor_de@users.sourceforge.net>
8781W: http://sourceforge.net/projects/roccat/
8782S: Maintained
8783F: drivers/hid/hid-roccat*
8784F: include/linux/hid-roccat*
8785F: Documentation/ABI/*/sysfs-driver-hid-roccat*
8786
Jiri Pirko4b8ac962014-11-28 14:34:26 +01008787ROCKER DRIVER
8788M: Jiri Pirko <jiri@resnulli.us>
8789M: Scott Feldman <sfeldma@gmail.com>
8790L: netdev@vger.kernel.org
8791S: Supported
8792F: drivers/net/ethernet/rocker/
8793
Linus Torvalds1da177e2005-04-16 15:20:36 -07008794ROCKETPORT DRIVER
8795P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008796W: http://www.comtrol.com
8797S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008798F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07008799F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008800
Kevin Cernekee7645c2f2014-10-21 15:23:06 -07008801ROCKETPORT EXPRESS/INFINITY DRIVER
8802M: Kevin Cernekee <cernekee@gmail.com>
8803L: linux-serial@vger.kernel.org
8804S: Odd Fixes
8805F: drivers/tty/serial/rp2.*
8806
Linus Torvalds1da177e2005-04-16 15:20:36 -07008807ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07008808M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008809L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02008810W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008811S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008812F: include/net/rose.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008813F: include/uapi/linux/rose.h
Joe Perches679655d2009-04-07 20:44:32 -07008814F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008815
Antti Palosaari91952bc2012-10-01 12:28:46 -03008816RTL2830 MEDIA DRIVER
8817M: Antti Palosaari <crope@iki.fi>
8818L: linux-media@vger.kernel.org
8819W: http://linuxtv.org/
8820W: http://palosaari.fi/linux/
8821Q: http://patchwork.linuxtv.org/project/linux-media/list/
8822T: git git://linuxtv.org/anttip/media_tree.git
8823S: Maintained
8824F: drivers/media/dvb-frontends/rtl2830*
8825
Antti Palosaari27a0aac2013-04-09 20:30:43 -03008826RTL2832 MEDIA DRIVER
8827M: Antti Palosaari <crope@iki.fi>
8828L: linux-media@vger.kernel.org
8829W: http://linuxtv.org/
8830W: http://palosaari.fi/linux/
8831Q: http://patchwork.linuxtv.org/project/linux-media/list/
8832T: git git://linuxtv.org/anttip/media_tree.git
8833S: Maintained
8834F: drivers/media/dvb-frontends/rtl2832*
8835
Antti Palosaariba6e6f62014-02-03 00:00:32 -03008836RTL2832_SDR MEDIA DRIVER
8837M: Antti Palosaari <crope@iki.fi>
8838L: linux-media@vger.kernel.org
8839W: http://linuxtv.org/
8840W: http://palosaari.fi/linux/
8841Q: http://patchwork.linuxtv.org/project/linux-media/list/
8842T: git git://linuxtv.org/anttip/media_tree.git
8843S: Maintained
Antti Palosaarib4bb1c22014-07-14 21:19:29 -03008844F: drivers/media/dvb-frontends/rtl2832_sdr*
Antti Palosaariba6e6f62014-02-03 00:00:32 -03008845
Larry Finger59840482008-11-12 17:13:09 -06008846RTL8180 WIRELESS DRIVER
Michael Wu605bebe2007-05-14 01:41:02 -04008847L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02008848W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07008849T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
John W. Linville7be6ff62014-12-04 16:52:41 -05008850S: Orphan
John W. Linville3cfeb0c2010-12-20 15:16:53 -05008851F: drivers/net/wireless/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04008852
Larry Finger59840482008-11-12 17:13:09 -06008853RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03008854M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008855M: Hin-Tak Leung <htl10@users.sourceforge.net>
8856M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07008857L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02008858W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07008859T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07008860S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05008861F: drivers/net/wireless/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06008862
Larry Finger3cf0c8a2010-12-16 09:13:21 -06008863RTL8192CE WIRELESS DRIVER
8864M: Larry Finger <Larry.Finger@lwfinger.net>
8865M: Chaoming Li <chaoming_li@realsil.com.cn>
8866L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02008867W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06008868T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8869S: Maintained
8870F: drivers/net/wireless/rtlwifi/
Larry Fingerf0b3e4b2010-12-17 16:04:11 -06008871F: drivers/net/wireless/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02008872
8873S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008874M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008875L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08008876S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09008877F: drivers/video/fbdev/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08008878
Linus Torvalds1da177e2005-04-16 15:20:36 -07008879S390
Joe Perches8b58be82009-07-29 15:04:30 -07008880M: Martin Schwidefsky <schwidefsky@de.ibm.com>
8881M: Heiko Carstens <heiko.carstens@de.ibm.com>
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01008882L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08008883W: http://www.ibm.com/developerworks/linux/linux390/
8884S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008885F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01008886F: drivers/s390/
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02008887F: Documentation/s390/
8888F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08008889
Sebastian Ott322986c2014-02-17 15:16:30 +01008890S390 COMMON I/O LAYER
8891M: Sebastian Ott <sebott@linux.vnet.ibm.com>
8892M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
8893L: linux-s390@vger.kernel.org
8894W: http://www.ibm.com/developerworks/linux/linux390/
8895S: Supported
8896F: drivers/s390/cio/
8897
8898S390 DASD DRIVER
8899M: Stefan Weinhuber <wein@de.ibm.com>
8900M: Stefan Haberland <stefan.haberland@de.ibm.com>
8901L: linux-s390@vger.kernel.org
8902W: http://www.ibm.com/developerworks/linux/linux390/
8903S: Supported
8904F: drivers/s390/block/dasd*
8905F: block/partitions/ibm.c
8906
Heiko Carstens5238da42006-02-11 17:56:01 -08008907S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008908M: Ursula Braun <ursula.braun@de.ibm.com>
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01008909L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08008910W: http://www.ibm.com/developerworks/linux/linux390/
8911S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008912F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08008913
Sebastian Ott322986c2014-02-17 15:16:30 +01008914S390 PCI SUBSYSTEM
8915M: Sebastian Ott <sebott@linux.vnet.ibm.com>
8916M: Gerald Schaefer <gerald.schaefer@de.ibm.com>
8917L: linux-s390@vger.kernel.org
8918W: http://www.ibm.com/developerworks/linux/linux390/
8919S: Supported
8920F: arch/s390/pci/
8921F: drivers/pci/hotplug/s390_pci_hpc.c
8922
Felix Beckfeed9b62009-03-26 15:24:23 +01008923S390 ZCRYPT DRIVER
Ingo Tuchscherer5c8d0982013-01-14 10:07:05 +01008924M: Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01008925L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01008926W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01008927S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07008928F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01008929
Heiko Carstens5238da42006-02-11 17:56:01 -08008930S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01008931M: Steffen Maier <maier@linux.vnet.ibm.com>
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01008932L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08008933W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008934S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008935F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008936
Ursula Braundd96df22007-09-19 13:09:02 +02008937S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07008938M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02008939L: linux-s390@vger.kernel.org
8940W: http://www.ibm.com/developerworks/linux/linux390/
8941S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008942F: drivers/s390/net/*iucv*
8943F: include/net/iucv/
8944F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02008945
Ben Dooks4dde7f72008-06-30 22:40:38 +01008946S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07008947M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07008948L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01008949S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008950F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01008951
Hans Verkuil1f15a222012-11-23 07:45:29 -03008952SAA6588 RDS RECEIVER DRIVER
8953M: Hans Verkuil <hverkuil@xs4all.nl>
8954L: linux-media@vger.kernel.org
8955T: git git://linuxtv.org/media_tree.git
8956W: http://linuxtv.org
8957S: Odd Fixes
8958F: drivers/media/i2c/saa6588*
8959
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02008960SAA7134 VIDEO4LINUX DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02008961M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02008962L: linux-media@vger.kernel.org
8963W: http://linuxtv.org
8964T: git git://linuxtv.org/media_tree.git
8965S: Odd fixes
Cesar Eduardo Barrose42bf502013-03-02 21:53:47 -03008966F: Documentation/video4linux/*.saa7134
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02008967F: drivers/media/pci/saa7134/
8968
Linus Torvalds1da177e2005-04-16 15:20:36 -07008969SAA7146 VIDEO4LINUX-2 DRIVER
Hans Verkuil566b8152012-11-23 09:58:12 -03008970M: Hans Verkuil <hverkuil@xs4all.nl>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008971L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008972T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008973S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008974F: drivers/media/common/saa7146/
8975F: drivers/media/pci/saa7146/
8976F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008977
Corentin Chary92304a42011-12-05 12:38:35 -05008978SAMSUNG LAPTOP DRIVER
Corentin Chary5909c652012-12-17 16:00:05 -08008979M: Corentin Chary <corentin.chary@gmail.com>
Corentin Chary92304a42011-12-05 12:38:35 -05008980L: platform-driver-x86@vger.kernel.org
8981S: Maintained
8982F: drivers/platform/x86/samsung-laptop.c
8983
Mark Brown4a109cc2010-09-24 10:50:46 +01008984SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09008985M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01008986L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8987S: Supported
Joe Perches14430812013-09-11 14:23:50 -07008988F: sound/soc/samsung/
Mark Brown4a109cc2010-09-24 10:50:46 +01008989
Jingoo Han0d89a282011-12-19 11:09:35 +09008990SAMSUNG FRAMEBUFFER DRIVER
Jingoo Hanb7701752015-05-14 15:17:07 -07008991M: Jingoo Han <jingoohan1@gmail.com>
Jingoo Han0d89a282011-12-19 11:09:35 +09008992L: linux-fbdev@vger.kernel.org
8993S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09008994F: drivers/video/fbdev/s3c-fb.c
Jingoo Han0d89a282011-12-19 11:09:35 +09008995
Krzysztof Kozlowskib40f0632015-05-06 14:19:36 +09008996SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09008997M: Sangbeom Kim <sbkim73@samsung.com>
Krzysztof Kozlowskib40f0632015-05-06 14:19:36 +09008998M: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09008999L: linux-kernel@vger.kernel.org
Krzysztof Kozlowskib40f0632015-05-06 14:19:36 +09009000L: linux-samsung-soc@vger.kernel.org
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09009001S: Supported
9002F: drivers/mfd/sec*.c
9003F: drivers/regulator/s2m*.c
9004F: drivers/regulator/s5m*.c
Krzysztof Kozlowskib40f0632015-05-06 14:19:36 +09009005F: drivers/clk/clk-s2mps11.c
9006F: drivers/rtc/rtc-s5m.c
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09009007F: include/linux/mfd/samsung/
Krzysztof Kozlowskib40f0632015-05-06 14:19:36 +09009008F: Documentation/devicetree/bindings/regulator/s5m8767-regulator.txt
9009F: Documentation/devicetree/bindings/mfd/s2mp*.txt
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09009010
Sylwester Nawrocki038f5c42013-05-28 18:26:20 -03009011SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
9012M: Kyungmin Park <kyungmin.park@samsung.com>
9013M: Sylwester Nawrocki <s.nawrocki@samsung.com>
9014L: linux-media@vger.kernel.org
9015Q: https://patchwork.linuxtv.org/project/linux-media/list/
9016S: Supported
9017F: drivers/media/platform/exynos4-is/
Sylwester Nawrocki038f5c42013-05-28 18:26:20 -03009018
Sylwester Nawrocki6fd86ab2012-11-15 18:05:15 -03009019SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
9020M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
9021L: linux-media@vger.kernel.org
9022L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9023S: Maintained
9024F: drivers/media/platform/s3c-camif/
9025F: include/media/s3c_camif.h
9026
Andrzej Hajdab84ef242013-01-31 07:03:05 -03009027SAMSUNG S5C73M3 CAMERA DRIVER
9028M: Kyungmin Park <kyungmin.park@samsung.com>
9029M: Andrzej Hajda <a.hajda@samsung.com>
9030L: linux-media@vger.kernel.org
9031S: Supported
9032F: drivers/media/i2c/s5c73m3/*
9033
Andrzej Hajda7d459932013-12-05 08:38:39 -03009034SAMSUNG S5K5BAF CAMERA DRIVER
9035M: Kyungmin Park <kyungmin.park@samsung.com>
9036M: Andrzej Hajda <a.hajda@samsung.com>
9037L: linux-media@vger.kernel.org
9038S: Supported
9039F: drivers/media/i2c/s5k5baf.c
9040
Robert Baldygac04c6742015-08-20 17:26:02 +02009041SAMSUNG S3FWRN5 NFC DRIVER
9042M: Robert Baldyga <r.baldyga@samsung.com>
9043L: linux-nfc@lists.01.org (moderated for non-subscribers)
9044S: Supported
9045F: drivers/nfc/s3fwrn5
9046
Tomasz Figa310e39c2013-11-09 03:17:34 +01009047SAMSUNG SOC CLOCK DRIVERS
Tomasz Figafea685e2014-08-26 16:30:53 +02009048M: Sylwester Nawrocki <s.nawrocki@samsung.com>
9049M: Tomasz Figa <tomasz.figa@gmail.com>
Tomasz Figa310e39c2013-11-09 03:17:34 +01009050S: Supported
9051L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9052F: drivers/clk/samsung/
9053
Byungho An66890ed2014-03-25 12:11:07 -07009054SAMSUNG SXGBE DRIVERS
9055M: Byungho An <bh74.an@samsung.com>
9056M: Girish K S <ks.giri@samsung.com>
Byungho An66890ed2014-03-25 12:11:07 -07009057M: Vipul Pandya <vipul.pandya@samsung.com>
9058S: Supported
9059L: netdev@vger.kernel.org
9060F: drivers/net/ethernet/samsung/sxgbe/
9061
Lukasz Majewski93c537a2015-02-24 16:31:28 +01009062SAMSUNG THERMAL DRIVER
9063M: Lukasz Majewski <l.majewski@samsung.com>
9064L: linux-pm@vger.kernel.org
9065L: linux-samsung-soc@vger.kernel.org
9066S: Supported
9067T: https://github.com/lmajewski/linux-samsung-thermal.git
9068F: drivers/thermal/samsung/
9069
Kamil Debskie296cd32014-08-21 11:33:37 +02009070SAMSUNG USB2 PHY DRIVER
9071M: Kamil Debski <k.debski@samsung.com>
9072L: linux-kernel@vger.kernel.org
9073S: Supported
9074F: Documentation/devicetree/bindings/phy/samsung-phy.txt
9075F: Documentation/phy/samsung-usb2.txt
9076F: drivers/phy/phy-exynos4210-usb2.c
9077F: drivers/phy/phy-exynos4x12-usb2.c
9078F: drivers/phy/phy-exynos5250-usb2.c
9079F: drivers/phy/phy-s5pv210-usb2.c
9080F: drivers/phy/phy-samsung-usb2.c
9081F: drivers/phy/phy-samsung-usb2.h
9082
Alan Coxca749e22011-03-18 13:56:14 +00009083SERIAL DRIVERS
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08009084M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Alan Coxca749e22011-03-18 13:56:14 +00009085L: linux-serial@vger.kernel.org
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08009086S: Maintained
Joe Perches14430812013-09-11 14:23:50 -07009087F: drivers/tty/serial/
Alan Coxca749e22011-03-18 13:56:14 +00009088
Viresh Kumaraecb7b62011-05-24 14:04:09 +05309089SYNOPSYS DESIGNWARE DMAC DRIVER
Viresh Kumarda899472015-07-17 16:23:50 -07009090M: Viresh Kumar <vireshk@kernel.org>
Viresh Kumar337ae47c2013-07-19 09:13:58 +05309091M: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05309092S: Maintained
Andy Shevchenko1fb200d2015-01-19 18:23:06 +02009093F: include/linux/dma/dw.h
Andy Shevchenko3d598f42014-08-19 20:29:12 +03009094F: include/linux/platform_data/dma-dw.h
Andy Shevchenko61a76492013-06-05 15:26:44 +03009095F: drivers/dma/dw/
Viresh Kumaraecb7b62011-05-24 14:04:09 +05309096
Lars Persson058999c2015-07-28 12:01:50 +02009097SYNOPSYS DESIGNWARE ETHERNET QOS 4.10a driver
9098M: Lars Persson <lars.persson@axis.com>
9099L: netdev@vger.kernel.org
9100S: Supported
9101F: Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt
9102F: drivers/net/ethernet/synopsys/dwc_eth_qos.c
9103
Seungwon Jeonf9e37132013-01-17 21:33:23 +09009104SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
9105M: Seungwon Jeon <tgih.jun@samsung.com>
9106M: Jaehoon Chung <jh80.chung@samsung.com>
9107L: linux-mmc@vger.kernel.org
9108S: Maintained
9109F: include/linux/mmc/dw_mmc.h
9110F: drivers/mmc/host/dw_mmc*
9111
Andreas Noever1db121d2014-07-10 18:58:04 +02009112THUNDERBOLT DRIVER
9113M: Andreas Noever <andreas.noever@gmail.com>
9114S: Maintained
9115F: drivers/thunderbolt/
9116
John Stultz9222d242013-07-16 16:45:31 +02009117TIMEKEEPING, CLOCKSOURCE CORE, NTP
John Stultz50363732012-12-13 13:08:47 -05009118M: John Stultz <john.stultz@linaro.org>
Thomas Gleixner88606e82010-12-14 21:37:13 +01009119M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar981c3a42014-01-21 10:59:20 +01009120L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01009121T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01009122S: Supported
9123F: include/linux/clocksource.h
9124F: include/linux/time.h
9125F: include/linux/timex.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009126F: include/uapi/linux/time.h
9127F: include/uapi/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01009128F: kernel/time/clocksource.c
9129F: kernel/time/time*.c
9130F: kernel/time/ntp.c
John Stultz7fe5f1c2015-03-11 17:40:15 -07009131F: tools/testing/selftests/timers/
Thomas Gleixner88606e82010-12-14 21:37:13 +01009132
Linus Torvalds1da177e2005-04-16 15:20:36 -07009133SC1200 WDT DRIVER
Jean Delvareb3006452013-11-12 15:08:56 -08009134M: Zwane Mwaikambo <zwanem@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009135S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009136F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07009137
9138SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01009139M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07009140M: Peter Zijlstra <peterz@infradead.org>
Ingo Molnar981c3a42014-01-21 10:59:20 +01009141L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01009142T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07009143S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09009144F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07009145F: include/linux/sched.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009146F: include/uapi/linux/sched.h
Peter Zijlstrac2eb5052013-10-02 11:49:47 +02009147F: include/linux/wait.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009148
Chen Liqin6bcf6732009-06-13 15:24:33 +08009149SCORE ARCHITECTURE
Lennox Wued386652013-09-26 01:41:22 +08009150M: Chen Liqin <liqin.linux@gmail.com>
Joe Perchesa2681a72009-10-26 16:49:43 -07009151M: Lennox Wu <lennox.wu@gmail.com>
Lennox Wued386652013-09-26 01:41:22 +08009152W: http://www.sunplus.com
Chen Liqin6bcf6732009-06-13 15:24:33 +08009153S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07009154F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08009155
Linus Torvalds1da177e2005-04-16 15:20:36 -07009156SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009157M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009158L: linux-scsi@vger.kernel.org
9159W: http://www.kernel.dk
9160S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009161F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009162
Roland Dreierfb50a832010-10-07 09:54:53 -07009163SCSI RDMA PROTOCOL (SRP) INITIATOR
Bart Van Assche3453bddb2015-02-06 15:27:56 +01009164M: Bart Van Assche <bart.vanassche@sandisk.com>
Roland Dreierfb50a832010-10-07 09:54:53 -07009165L: linux-rdma@vger.kernel.org
9166S: Supported
9167W: http://www.openfabrics.org
9168Q: http://patchwork.kernel.org/project/linux-rdma/list/
9169T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
9170F: drivers/infiniband/ulp/srp/
9171F: include/scsi/srp.h
9172
Linus Torvalds1da177e2005-04-16 15:20:36 -07009173SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009174M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009175L: linux-scsi@vger.kernel.org
Douglas Gilbert59ab3c92013-10-31 09:10:46 -04009176W: http://sg.danny.cz/sg
Linus Torvalds1da177e2005-04-16 15:20:36 -07009177S: Maintained
Douglas Gilbert59ab3c92013-10-31 09:10:46 -04009178F: Documentation/scsi/scsi-generic.txt
Joe Perches679655d2009-04-07 20:44:32 -07009179F: drivers/scsi/sg.c
9180F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009181
9182SCSI SUBSYSTEM
James Bottomley0351b8f2015-04-01 09:09:36 +00009183M: "James E.J. Bottomley" <JBottomley@odin.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009184L: linux-scsi@vger.kernel.org
James Bottomley0351b8f2015-04-01 09:09:36 +00009185T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07009186S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009187F: drivers/scsi/
9188F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009189
9190SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009191M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009192L: linux-scsi@vger.kernel.org
9193S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009194F: Documentation/scsi/st.txt
Jean Delvaref7269cf2013-07-03 15:05:08 -07009195F: drivers/scsi/st.*
9196F: drivers/scsi/st_*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009197
9198SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00009199M: Vlad Yasevich <vyasevich@gmail.com>
Neil Horman02c38d02012-10-24 09:26:51 +00009200M: Neil Horman <nhorman@tuxdriver.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07009201L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07009202W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00009203S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009204F: Documentation/networking/sctp.txt
9205F: include/linux/sctp.h
Daniel Borkmann4d58c022013-07-23 14:51:48 +02009206F: include/uapi/linux/sctp.h
Joe Perches679655d2009-04-07 20:44:32 -07009207F: include/net/sctp/
9208F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009209
9210SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07009211M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07009212S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07009213F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07009214F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07009215F: drivers/watchdog/scx200_wdt.c
9216F: drivers/i2c/busses/scx200*
9217F: drivers/mtd/maps/scx200_docflash.c
9218F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07009219
9220SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009221M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07009222S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009223F: drivers/char/scx200_gpio.c
9224F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07009225
9226SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009227M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07009228S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009229F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07009230
Sascha Sommer6a369132008-07-15 14:21:29 +02009231SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009232M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02009233L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
9234S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009235F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02009236
Randy Dunlape7839f22008-10-12 16:11:45 -07009237SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Joe Perches7a241d62009-10-26 16:49:42 -07009238L: linux-mmc@vger.kernel.org
Ulf Hanssona1cb1d12015-03-13 13:39:03 +01009239S: Orphan
Joe Perches7a241d62009-10-26 16:49:42 -07009240F: drivers/mmc/host/sdhci.*
Joe Perchesd4a45782012-01-10 15:08:54 -08009241F: drivers/mmc/host/sdhci-pltfm.[ch]
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009242
Kees Cookc04f9d62014-07-18 11:28:33 -07009243SECURE COMPUTING
9244M: Kees Cook <keescook@chromium.org>
Kees Cooka0cfd752014-08-12 15:41:17 -07009245R: Andy Lutomirski <luto@amacapital.net>
9246R: Will Drewry <wad@chromium.org>
Kees Cookc04f9d62014-07-18 11:28:33 -07009247T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
9248S: Supported
9249F: kernel/seccomp.c
9250F: include/uapi/linux/seccomp.h
9251F: include/linux/seccomp.h
Kees Cookc99ee512015-06-16 10:54:14 -07009252F: tools/testing/selftests/seccomp/*
Kees Cookc04f9d62014-07-18 11:28:33 -07009253K: \bsecure_computing
9254K: \bTIF_SECCOMP\b
9255
Ben Dooks0d1bb412009-06-14 13:52:37 +01009256SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009257M: Ben Dooks <ben-linux@fluff.org>
Ulf Hanssondc524882015-03-20 10:15:29 +01009258M: Jaehoon Chung <jh80.chung@samsung.com>
Joe Perches7a241d62009-10-26 16:49:42 -07009259L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01009260S: Maintained
Ulf Hanssondc524882015-03-20 10:15:29 +01009261F: drivers/mmc/host/sdhci-s3c*
Ben Dooks0d1bb412009-06-14 13:52:37 +01009262
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07009263SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Viresh Kumarda899472015-07-17 16:23:50 -07009264M: Viresh Kumar <vireshk@kernel.org>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07009265L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07009266L: linux-mmc@vger.kernel.org
9267S: Maintained
9268F: drivers/mmc/host/sdhci-spear.c
9269
James Morris8711cca2008-12-04 03:19:45 +11009270SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11009271M: James Morris <james.l.morris@oracle.com>
Joe Perches9c3646d2015-06-25 15:02:00 -07009272M: "Serge E. Hallyn" <serge@hallyn.com>
James Morris8711cca2008-12-04 03:19:45 +11009273L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11009274T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10009275W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11009276S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07009277F: security/
James Morris8711cca2008-12-04 03:19:45 +11009278
Linus Torvalds1da177e2005-04-16 15:20:36 -07009279SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07009280M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009281S: Supported
9282
9283SELINUX SECURITY MODULE
Paul Moore5a5f2ac2013-09-18 13:14:04 -04009284M: Paul Moore <paul@paul-moore.com>
Paul Mooree0238b42014-02-06 07:51:54 -05009285M: Stephen Smalley <sds@tycho.nsa.gov>
9286M: Eric Paris <eparis@parisplace.org>
9287L: selinux@tycho.nsa.gov (moderated for non-subscribers)
Stephen Smalleyf0589252008-09-11 09:20:26 -04009288W: http://selinuxproject.org
Paul Moore5a5f2ac2013-09-18 13:14:04 -04009289T: git git://git.infradead.org/users/pcmoore/selinux
Linus Torvalds1da177e2005-04-16 15:20:36 -07009290S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009291F: include/linux/selinux*
9292F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04009293F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009294
John Johansenc1c124e2010-07-29 14:48:09 -07009295APPARMOR SECURITY MODULE
9296M: John Johansen <john.johansen@canonical.com>
9297L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
9298W: apparmor.wiki.kernel.org
9299T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
9300S: Supported
9301F: security/apparmor/
9302
Kees Cook730daa12015-07-23 18:02:48 -07009303YAMA SECURITY MODULE
9304M: Kees Cook <keescook@chromium.org>
9305T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
9306S: Supported
9307F: security/yama/
9308
Jiri Slabycef2cf02007-05-08 00:31:45 -07009309SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07009310M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07009311S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009312F: drivers/misc/phantom.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009313F: include/uapi/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07009314
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05309315SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Minh Tran4627de92015-05-14 23:16:17 -07009316M: Jayamohan Kallickal <jayamohan.kallickal@avagotech.com>
9317M: Minh Tran <minh.tran@avagotech.com>
9318M: John Soni Jose <sony.john-n@avagotech.com>
Joe Perches3387f652009-11-11 14:26:11 -08009319L: linux-scsi@vger.kernel.org
Minh Tran4627de92015-05-14 23:16:17 -07009320W: http://www.avagotech.com
Joe Perches3387f652009-11-11 14:26:11 -08009321S: Supported
9322F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05309323
Sathya Perla6938f852015-05-12 02:13:50 -04009324Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER
9325M: Sathya Perla <sathya.perla@avagotech.com>
9326M: Ajit Khaparde <ajit.khaparde@avagotech.com>
9327M: Padmanabh Ratnakar <padmanabh.ratnakar@avagotech.com>
9328M: Sriharsha Basavapatna <sriharsha.basavapatna@avagotech.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07009329L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08009330W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07009331S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07009332F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07009333
Selvin Xavierd2928a82015-03-15 00:09:41 +05309334EMULEX ONECONNECT ROCE DRIVER
Laurent Navet2b8e7332015-06-30 14:59:33 -07009335M: Selvin Xavier <selvin.xavier@avagotech.com>
9336M: Devesh Sharma <devesh.sharma@avagotech.com>
9337M: Mitesh Ahuja <mitesh.ahuja@avagotech.com>
Selvin Xavierd2928a82015-03-15 00:09:41 +05309338L: linux-rdma@vger.kernel.org
9339W: http://www.emulex.com
9340S: Supported
9341F: drivers/infiniband/hw/ocrdma/
9342
Ben Hutchings8ceee662008-04-27 12:55:59 +01009343SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00009344M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Shradha Shah8533ccf2014-01-23 13:19:55 +00009345M: Shradha Shah <sshah@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +00009346L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01009347S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07009348F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01009349
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009350SGI GRU DRIVER
Bjorn Helgaascc883af2013-01-29 15:48:37 -07009351M: Dimitri Sivanich <sivanich@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009352S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009353F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009354
9355SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009356M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009357L: linux-ia64@vger.kernel.org
9358S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009359F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08009360F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07009361F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009362
Jack Steiner75312612008-08-15 00:40:42 -07009363SGI XP/XPC/XPNET DRIVER
Robin Holte1803832013-08-16 18:01:42 -05009364M: Cliff Whickman <cpw@sgi.com>
9365M: Robin Holt <robinmholt@gmail.com>
Jack Steiner75312612008-08-15 00:40:42 -07009366S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009367F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07009368
Antti Palosaari46eacf32014-04-15 06:21:03 -03009369SI2157 MEDIA DRIVER
9370M: Antti Palosaari <crope@iki.fi>
9371L: linux-media@vger.kernel.org
9372W: http://linuxtv.org/
9373W: http://palosaari.fi/linux/
9374Q: http://patchwork.linuxtv.org/project/linux-media/list/
9375T: git git://linuxtv.org/anttip/media_tree.git
9376S: Maintained
9377F: drivers/media/tuners/si2157*
9378
Antti Palosaari75e2d5b2014-04-15 06:17:53 -03009379SI2168 MEDIA DRIVER
9380M: Antti Palosaari <crope@iki.fi>
9381L: linux-media@vger.kernel.org
9382W: http://linuxtv.org/
9383W: http://palosaari.fi/linux/
9384Q: http://patchwork.linuxtv.org/project/linux-media/list/
9385T: git git://linuxtv.org/anttip/media_tree.git
9386S: Maintained
9387F: drivers/media/dvb-frontends/si2168*
9388
Hans Verkuil49cc6292012-11-30 07:13:29 -03009389SI470X FM RADIO RECEIVER I2C DRIVER
9390M: Hans Verkuil <hverkuil@xs4all.nl>
9391L: linux-media@vger.kernel.org
9392T: git git://linuxtv.org/media_tree.git
9393W: http://linuxtv.org
9394S: Odd Fixes
9395F: drivers/media/radio/si470x/radio-si470x-i2c.c
9396
9397SI470X FM RADIO RECEIVER USB DRIVER
9398M: Hans Verkuil <hverkuil@xs4all.nl>
9399L: linux-media@vger.kernel.org
9400T: git git://linuxtv.org/media_tree.git
9401W: http://linuxtv.org
9402S: Maintained
9403F: drivers/media/radio/si470x/radio-si470x-common.c
9404F: drivers/media/radio/si470x/radio-si470x.h
9405F: drivers/media/radio/si470x/radio-si470x-usb.c
9406
Eduardo Valentinc937ca02013-02-27 10:37:39 -03009407SI4713 FM RADIO TRANSMITTER I2C DRIVER
9408M: Eduardo Valentin <edubezval@gmail.com>
9409L: linux-media@vger.kernel.org
9410T: git git://linuxtv.org/media_tree.git
9411W: http://linuxtv.org
9412S: Odd Fixes
Dinesh Ram99995de2013-10-15 12:24:43 -03009413F: drivers/media/radio/si4713/si4713.?
Eduardo Valentinc937ca02013-02-27 10:37:39 -03009414
9415SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
9416M: Eduardo Valentin <edubezval@gmail.com>
9417L: linux-media@vger.kernel.org
9418T: git git://linuxtv.org/media_tree.git
9419W: http://linuxtv.org
9420S: Odd Fixes
Dinesh Ram99995de2013-10-15 12:24:43 -03009421F: drivers/media/radio/si4713/radio-platform-si4713.c
9422
9423SI4713 FM RADIO TRANSMITTER USB DRIVER
9424M: Hans Verkuil <hverkuil@xs4all.nl>
9425L: linux-media@vger.kernel.org
9426T: git git://linuxtv.org/media_tree.git
9427W: http://linuxtv.org
9428S: Maintained
9429F: drivers/media/radio/si4713/radio-usb-si4713.c
Eduardo Valentinc937ca02013-02-27 10:37:39 -03009430
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03009431SIANO DVB DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02009432M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03009433L: linux-media@vger.kernel.org
9434W: http://linuxtv.org
9435T: git git://linuxtv.org/media_tree.git
9436S: Odd fixes
9437F: drivers/media/common/siano/
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03009438F: drivers/media/usb/siano/
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03009439F: drivers/media/usb/siano/
Joe Perches14430812013-09-11 14:23:50 -07009440F: drivers/media/mmc/siano/
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03009441
Hans de Goede6f15b602014-11-14 13:26:46 +01009442SIMPLEFB FB DRIVER
9443M: Hans de Goede <hdegoede@redhat.com>
9444L: linux-fbdev@vger.kernel.org
9445S: Maintained
9446F: Documentation/devicetree/bindings/video/simple-framebuffer.txt
9447F: drivers/video/fbdev/simplefb.c
9448F: include/linux/platform_data/simplefb.h
9449
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03009450SH_VEU V4L2 MEM2MEM DRIVER
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03009451L: linux-media@vger.kernel.org
Guennadi Liakhovetskibb60fcb2013-11-24 17:44:08 -03009452S: Orphan
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03009453F: drivers/media/platform/sh_veu.c
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03009454
9455SH_VOU V4L2 OUTPUT DRIVER
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03009456L: linux-media@vger.kernel.org
Guennadi Liakhovetskibb60fcb2013-11-24 17:44:08 -03009457S: Orphan
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03009458F: drivers/media/platform/sh_vou.c
9459F: include/media/sh_vou.h
9460
Len Brown6349d992009-08-14 15:07:14 -04009461SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07009462M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04009463L: sfi-devel@simplefirmware.org
9464W: http://simplefirmware.org/
9465T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009466S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07009467F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04009468F: drivers/sfi/
9469F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009470
Linus Torvalds1da177e2005-04-16 15:20:36 -07009471SIMTEC EB110ATX (Chalice CATS)
9472P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08009473P: Vincent Sanders <vince@simtec.co.uk>
9474M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009475W: http://www.simtec.co.uk/products/EB110ATX/
9476S: Supported
9477
9478SIMTEC EB2410ITX (BAST)
9479P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08009480P: Vincent Sanders <vince@simtec.co.uk>
9481M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009482W: http://www.simtec.co.uk/products/EB2410ITX/
9483S: Supported
Joe Perches15dba382013-09-11 14:23:36 -07009484F: arch/arm/mach-s3c24xx/mach-bast.c
9485F: arch/arm/mach-s3c24xx/bast-ide.c
9486F: arch/arm/mach-s3c24xx/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07009487
Kevin Hilman4c5adde2009-06-19 12:02:33 -07009488TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08009489M: Sekhar Nori <nsekhar@ti.com>
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08009490M: Kevin Hilman <khilman@deeprootsystems.com>
Sekhar Noric9f46a82012-01-27 21:12:20 +05309491T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -08009492Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07009493S: Supported
Joe Perches14430812013-09-11 14:23:50 -07009494F: arch/arm/mach-davinci/
Jean Delvare046d0a32012-01-12 20:32:05 +01009495F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -07009496
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03009497TI DAVINCI SERIES MEDIA DRIVER
Joe Perchese43cdb52015-06-25 15:02:03 -07009498M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03009499L: linux-media@vger.kernel.org
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03009500W: http://linuxtv.org/
9501Q: http://patchwork.linuxtv.org/project/linux-media/list/
9502T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
Lad, Prabhakar9ce5eca2013-04-15 01:32:44 -03009503S: Maintained
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03009504F: drivers/media/platform/davinci/
9505F: include/media/davinci/
9506
Benoit Parrot417d2e52014-12-09 16:43:44 -03009507TI AM437X VPFE DRIVER
Joe Perchese43cdb52015-06-25 15:02:03 -07009508M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
Benoit Parrot417d2e52014-12-09 16:43:44 -03009509L: linux-media@vger.kernel.org
9510W: http://linuxtv.org/
9511Q: http://patchwork.linuxtv.org/project/linux-media/list/
9512T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9513S: Maintained
9514F: drivers/media/platform/am437x/
9515
Benoit Parrotc4c02832015-03-20 18:03:52 -03009516OV2659 OMNIVISION SENSOR DRIVER
Joe Perchese43cdb52015-06-25 15:02:03 -07009517M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
Benoit Parrotc4c02832015-03-20 18:03:52 -03009518L: linux-media@vger.kernel.org
9519W: http://linuxtv.org/
9520Q: http://patchwork.linuxtv.org/project/linux-media/list/
9521T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9522S: Maintained
9523F: drivers/media/i2c/ov2659.c
9524F: include/media/ov2659.h
9525
Sudip Mukherjee3a6779f2015-08-07 18:31:15 +05309526SILICON MOTION SM712 FRAME BUFFER DRIVER
9527M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
9528M: Teddy Wang <teddy.wang@siliconmotion.com>
9529M: Sudip Mukherjee <sudip@vectorindia.org>
9530L: linux-fbdev@vger.kernel.org
9531S: Maintained
9532F: drivers/video/fbdev/sm712*
9533F: Documentation/fb/sm712fb.txt
9534
Francois Romieu92aab3c2005-07-30 13:11:18 +02009535SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009536M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02009537L: netdev@vger.kernel.org
9538S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07009539F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02009540
Linus Torvalds1da177e2005-04-16 15:20:36 -07009541SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009542M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009543W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07009544L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07009545S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07009546F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009547
9548SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009549M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009550W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03009551S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009552F: Documentation/fb/sisfb.txt
Jingoo Han8a61f012014-07-01 15:36:01 +09009553F: drivers/video/fbdev/sis/
Joe Perches679655d2009-04-07 20:44:32 -07009554F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009555
9556SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009557M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009558W: http://www.winischhofer.at/linuxsisusbvga.shtml
9559S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009560F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009561
Christoph Lameter415ad262007-07-26 10:40:56 -07009562SLAB ALLOCATOR
Christoph Lameter16e943b2014-06-23 13:22:03 -07009563M: Christoph Lameter <cl@linux.com>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02009564M: Pekka Enberg <penberg@kernel.org>
Christoph Lameter16e943b2014-06-23 13:22:03 -07009565M: David Rientjes <rientjes@google.com>
9566M: Joonsoo Kim <iamjoonsoo.kim@lge.com>
9567M: Andrew Morton <akpm@linux-foundation.org>
Christoph Lameter415ad262007-07-26 10:40:56 -07009568L: linux-mm@kvack.org
9569S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009570F: include/linux/sl?b*.h
Christoph Lameter16e943b2014-06-23 13:22:03 -07009571F: mm/sl?b*
Christoph Lameter415ad262007-07-26 10:40:56 -07009572
Paul E. McKenney9fab97872012-05-07 09:36:34 -07009573SLEEPABLE READ-COPY UPDATE (SRCU)
Lai Jiangshan96a39bc2015-07-01 15:26:27 +08009574M: Lai Jiangshan <jiangshanlai@gmail.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -07009575M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyab0afd62014-06-03 08:17:06 -07009576M: Josh Triplett <josh@joshtriplett.org>
Paul E. McKenney4632a192014-05-30 15:37:24 -07009577R: Steven Rostedt <rostedt@goodmis.org>
9578R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +01009579L: linux-kernel@vger.kernel.org
Paul E. McKenney9fab97872012-05-07 09:36:34 -07009580W: http://www.rdrop.com/users/paulmck/RCU/
9581S: Supported
9582T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenney4102ada2013-10-08 20:23:47 -07009583F: include/linux/srcu.h
9584F: kernel/rcu/srcu.c
Paul E. McKenney9fab97872012-05-07 09:36:34 -07009585
Casey Schaufler66372842012-05-23 18:34:52 -07009586SMACK SECURITY MODULE
9587M: Casey Schaufler <casey@schaufler-ca.com>
9588L: linux-security-module@vger.kernel.org
9589W: http://schaufler-ca.com
9590T: git git://git.gitorious.org/smack-next/kernel.git
9591S: Maintained
9592F: Documentation/security/Smack.txt
9593F: security/smack/
9594
Kevin Hilman20651e02014-09-24 16:30:00 -07009595DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
Kevin Hilman68ace3e2013-08-06 16:57:14 -07009596M: Kevin Hilman <khilman@kernel.org>
9597M: Nishanth Menon <nm@ti.com>
9598S: Maintained
Kevin Hilman20651e02014-09-24 16:30:00 -07009599F: drivers/power/avs/
Kevin Hilman68ace3e2013-08-06 16:57:14 -07009600F: include/linux/power/smartreflex.h
9601L: linux-pm@vger.kernel.org
9602
Linus Torvalds1da177e2005-04-16 15:20:36 -07009603SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04009604M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04009605S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -07009606F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009607
Sakari Ailuse8e31622012-11-12 18:14:39 -03009608SMIA AND SMIA++ IMAGE SENSOR DRIVER
9609M: Sakari Ailus <sakari.ailus@iki.fi>
9610L: linux-media@vger.kernel.org
9611S: Maintained
Joe Perches14430812013-09-11 14:23:50 -07009612F: drivers/media/i2c/smiapp/
Sakari Ailuse8e31622012-11-12 18:14:39 -03009613F: include/media/smiapp.h
9614F: drivers/media/i2c/smiapp-pll.c
9615F: drivers/media/i2c/smiapp-pll.h
Sakari Ailusfd2bfdc2014-11-16 12:08:44 -03009616F: include/uapi/linux/smiapp.h
Sakari Ailusa2cec3c2014-11-06 18:16:13 -03009617F: Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
Sakari Ailuse8e31622012-11-12 18:14:39 -03009618
Guenter Roeck920fa1f2010-08-09 17:21:06 -07009619SMM665 HARDWARE MONITOR DRIVER
9620M: Guenter Roeck <linux@roeck-us.net>
9621L: lm-sensors@lm-sensors.org
9622S: Maintained
9623F: Documentation/hwmon/smm665
9624F: drivers/hwmon/smm665.c
9625
Steve Glendinning9df73052010-08-14 21:08:54 +02009626SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01009627M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning9df73052010-08-14 21:08:54 +02009628L: lm-sensors@lm-sensors.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01009629S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +02009630F: Documentation/hwmon/emc2103
9631F: drivers/hwmon/emc2103.c
9632
Hans de Goedea98d5062011-03-21 17:59:36 +01009633SMSC SCH5627 HARDWARE MONITOR DRIVER
9634M: Hans de Goede <hdegoede@redhat.com>
9635L: lm-sensors@lm-sensors.org
9636S: Supported
9637F: Documentation/hwmon/sch5627
9638F: drivers/hwmon/sch5627.c
9639
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04009640SMSC47B397 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07009641M: Jean Delvare <jdelvare@suse.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04009642L: lm-sensors@lm-sensors.org
9643S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009644F: Documentation/hwmon/smsc47b397
9645F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04009646
Steve Glendinningfd9abb32008-11-05 00:35:37 +00009647SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01009648M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00009649L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01009650S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009651F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -07009652F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00009653
Steve Glendinning2cb37722008-12-11 20:54:30 -08009654SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01009655M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -08009656L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01009657S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -07009658F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08009659
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01009660SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01009661M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01009662L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01009663S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09009664F: drivers/video/fbdev/smscufx.c
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01009665
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03009666SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07009667M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03009668L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02009669T: git git://linuxtv.org/media_tree.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02009670S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03009671F: include/media/soc*
9672F: drivers/media/i2c/soc_camera/
9673F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03009674
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009675SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07009676M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009677S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009678F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009679
Joe Perchese3994db2014-07-30 00:38:42 -03009680SOFTLOGIC 6x10 MPEG CODEC
Andrey Utkin9661975d2014-11-17 13:59:23 -03009681M: Bluecherry Maintainers <maintainers@bluecherrydvr.com>
9682M: Andrey Utkin <andrey.utkin@corp.bluecherry.net>
9683M: Andrey Utkin <andrey.krieger.utkin@gmail.com>
Ismael Luceno1f141f62015-01-20 11:43:50 -03009684M: Ismael Luceno <ismael@iodev.co.uk>
Joe Perchese3994db2014-07-30 00:38:42 -03009685L: linux-media@vger.kernel.org
9686S: Supported
9687F: drivers/media/pci/solo6x10/
9688
Linus Torvalds1da177e2005-04-16 15:20:36 -07009689SOFTWARE RAID (Multiple Disks) SUPPORT
Jiri Slabyd8130622015-07-17 16:23:20 -07009690M: Neil Brown <neilb@suse.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009691L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08009692S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009693F: drivers/md/
9694F: include/linux/raid/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009695F: include/uapi/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009696
Linus Torvalds1da177e2005-04-16 15:20:36 -07009697SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009698M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07009699L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07009700S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07009701F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009702
Michael Buesch61e115a2007-09-18 15:12:50 -04009703SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +02009704M: Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04009705L: netdev@vger.kernel.org
9706S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009707F: drivers/ssb/
9708F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04009709
Linus Torvalds1da177e2005-04-16 15:20:36 -07009710SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009711M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd0944852010-02-11 10:40:13 -05009712L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01009713W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07009714S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009715F: Documentation/laptops/sony-laptop.txt
9716F: drivers/char/sonypi.c
9717F: drivers/platform/x86/sony-laptop.c
9718F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009719
Alex Dubovbaf85322008-02-09 10:20:54 -08009720SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07009721M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08009722W: http://tifmxx.berlios.de/
9723S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009724F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08009725
Maxim Levitsky0ab30492013-09-11 14:26:02 -07009726SONY MEMORYSTICK STANDARD SUPPORT
9727M: Maxim Levitsky <maximlevitsky@gmail.com>
9728S: Maintained
9729F: drivers/memstick/core/ms_block.*
9730
Linus Torvalds1da177e2005-04-16 15:20:36 -07009731SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07009732M: Jaroslav Kysela <perex@perex.cz>
Jiri Slabyd8130622015-07-17 16:23:20 -07009733M: Takashi Iwai <tiwai@suse.com>
Joe Perches93711662009-06-16 15:34:07 -07009734L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07009735W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +02009736T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -07009737T: git git://git.alsa-project.org/alsa-kernel.git
Takashi Iwaiff4a8f32014-05-13 14:55:51 +02009738Q: http://patchwork.kernel.org/project/alsa-devel/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009739S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07009740F: Documentation/sound/
9741F: include/sound/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009742F: include/uapi/sound/
Joe Perches679655d2009-04-07 20:44:32 -07009743F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009744
Mark Brown33bbe142013-08-09 18:10:50 +01009745SOUND - COMPRESSED AUDIO
9746M: Vinod Koul <vinod.koul@intel.com>
9747L: alsa-devel@alsa-project.org (moderated for non-subscribers)
9748T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
9749S: Supported
Vinod Koulf672f312013-08-12 11:15:27 +05309750F: Documentation/sound/alsa/compress_offload.txt
Mark Brown33bbe142013-08-09 18:10:50 +01009751F: include/sound/compress_driver.h
Vinod Koulf672f312013-08-12 11:15:27 +05309752F: include/uapi/sound/compress_*
Mark Brown33bbe142013-08-09 18:10:50 +01009753F: sound/core/compress_offload.c
9754F: sound/soc/soc-compress.c
9755
Mark Brownbd903bd2008-11-19 19:16:05 +00009756SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood6b9cf5c2013-01-15 15:13:27 +00009757M: Liam Girdwood <lgirdwood@gmail.com>
Mark Brownb02e48f2013-04-12 11:39:57 +01009758M: Mark Brown <broonie@kernel.org>
Mark Brown86f14df2011-11-02 21:36:32 +00009759T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -07009760L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01009761W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02009762S: Supported
Mark Brown2820f612013-08-11 19:35:11 +01009763F: Documentation/sound/alsa/soc/
Joe Perches679655d2009-04-07 20:44:32 -07009764F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01009765F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02009766
Mark Brownd7f87612013-10-19 14:33:54 +01009767SOUND - DMAENGINE HELPERS
9768M: Lars-Peter Clausen <lars@metafoo.de>
9769S: Supported
9770F: include/sound/dmaengine_pcm.h
9771F: sound/core/pcm_dmaengine.c
9772F: sound/soc/soc-generic-dmaengine-pcm.c
9773
Olli Salonen990a6a92014-08-22 13:50:42 -03009774SP2 MEDIA DRIVER
9775M: Olli Salonen <olli.salonen@iki.fi>
9776L: linux-media@vger.kernel.org
9777W: http://linuxtv.org/
9778Q: http://patchwork.linuxtv.org/project/linux-media/list/
9779S: Maintained
9780F: drivers/media/dvb-frontends/sp2*
9781
Sam Ravnborg473321f2009-01-04 15:47:49 -08009782SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07009783M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009784L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08009785Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -07009786T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
9787T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07009788S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009789F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07009790F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009791
David S. Miller6404fcc2010-03-16 01:00:17 -07009792SPARC SERIAL DRIVERS
9793M: "David S. Miller" <davem@davemloft.net>
9794L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07009795T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
9796T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -07009797S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -05009798F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08009799F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08009800F: drivers/tty/serial/sunhv.c
9801F: drivers/tty/serial/sunsab.c
9802F: drivers/tty/serial/sunsab.h
9803F: drivers/tty/serial/sunsu.c
9804F: drivers/tty/serial/sunzilog.c
9805F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -07009806
Christopher Li389325b2012-04-05 14:25:14 -07009807SPARSE CHECKER
9808M: "Christopher Li" <sparse@chrisli.org>
9809L: linux-sparse@vger.kernel.org
9810W: https://sparse.wiki.kernel.org/
9811T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
9812T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
9813S: Maintained
9814F: include/linux/compiler.h
9815
viresh kumarfc0c1952010-04-01 12:31:21 +01009816SPEAR PLATFORM SUPPORT
Viresh Kumarda899472015-07-17 16:23:50 -07009817M: Viresh Kumar <vireshk@kernel.org>
Viresh Kumar9cc23682014-04-18 15:07:16 -07009818M: Shiraz Hashim <shiraz.linux.kernel@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07009819L: spear-devel@list.st.com
9820L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01009821W: http://www.st.com/spear
9822S: Maintained
Joe Perches281e1922013-09-11 14:23:37 -07009823F: arch/arm/mach-spear/
viresh kumarfc0c1952010-04-01 12:31:21 +01009824
9825SPEAR CLOCK FRAMEWORK SUPPORT
Viresh Kumarda899472015-07-17 16:23:50 -07009826M: Viresh Kumar <vireshk@kernel.org>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07009827L: spear-devel@list.st.com
9828L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01009829W: http://www.st.com/spear
9830S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +05309831F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +01009832
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009833SPI SUBSYSTEM
Mark Brownb02e48f2013-04-12 11:39:57 +01009834M: Mark Brown <broonie@kernel.org>
Mark Browndfbe4032013-05-17 13:12:52 +01009835L: linux-spi@vger.kernel.org
Mark Browne7e4e132013-04-18 18:18:47 +01009836T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
Joe Perches8a6e2532010-03-05 13:43:11 -08009837Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009838S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009839F: Documentation/spi/
9840F: drivers/spi/
9841F: include/linux/spi/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009842F: include/uapi/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009843
Jim Lewis2752e402006-09-29 02:01:19 -07009844SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07009845M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
Jim Lewis2752e402006-09-29 02:01:19 -07009846L: netdev@vger.kernel.org
9847S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009848F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -07009849F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07009850
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009851SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07009852M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10009853L: linuxppc-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009854W: http://www.ibm.com/developerworks/power/cell/
9855S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009856F: Documentation/filesystems/spufs.txt
9857F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009858
Phillip Lougherfc555842009-01-05 08:46:29 +00009859SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +01009860M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00009861L: squashfs-devel@lists.sourceforge.net (subscribers-only)
9862W: http://squashfs.org.uk
9863S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009864F: Documentation/filesystems/squashfs.txt
9865F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00009866
Linus Torvalds1da177e2005-04-16 15:20:36 -07009867SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07009868M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009869S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009870F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07009871
Linus Torvalds26e9a392008-10-17 09:50:12 -07009872STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -08009873M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -08009874L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -08009875S: Supported
Greg Kroah-Hartman7b175c42013-06-18 12:58:12 -07009876F: Documentation/stable_kernel_rules.txt
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009877
Linus Torvalds26e9a392008-10-17 09:50:12 -07009878STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08009879M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -07009880T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07009881L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -08009882S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009883F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07009884
Joe Perchesebd3d012011-07-05 09:42:02 -07009885STAGING - COMEDI
9886M: Ian Abbott <abbotti@mev.co.uk>
Lidza Louina81b884c2013-07-24 11:29:33 -04009887M: H Hartley Sweeten <hsweeten@visionengravers.com>
Joe Perchesebd3d012011-07-05 09:42:02 -07009888S: Odd Fixes
9889F: drivers/staging/comedi/
9890
Joe Perchesa0138162011-07-05 15:21:34 -07009891STAGING - FLARION FT1000 DRIVERS
9892M: Marek Belisko <marek.belisko@gmail.com>
9893S: Odd Fixes
9894F: drivers/staging/ft1000/
9895
Joe Perches6c1bb422011-07-05 09:42:07 -07009896STAGING - INDUSTRIAL IO
Sachin Kamat030a13d2013-09-11 11:00:00 +01009897M: Jonathan Cameron <jic23@kernel.org>
Joe Perchesa0138162011-07-05 15:21:34 -07009898L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -07009899S: Odd Fixes
9900F: drivers/staging/iio/
9901
Joe Perchesa0138162011-07-05 15:21:34 -07009902STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
9903M: Jarod Wilson <jarod@wilsonet.com>
9904W: http://www.lirc.org/
9905S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08009906F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -07009907
Oleg Drokinf5e5de12014-08-15 12:48:14 -04009908STAGING - LUSTRE PARALLEL FILESYSTEM
9909M: Oleg Drokin <oleg.drokin@intel.com>
9910M: Andreas Dilger <andreas.dilger@intel.com>
Andreas Dilgerd98229f2015-08-24 11:11:49 -04009911L: lustre-devel@lists.lustre.org (moderated for non-subscribers)
9912W: http://wiki.lustre.org/
Oleg Drokinf5e5de12014-08-15 12:48:14 -04009913S: Maintained
9914F: drivers/staging/lustre
9915
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02009916STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
Julian Andres Klodeb8125382011-09-27 19:01:05 +02009917M: Julian Andres Klode <jak@jak-linux.org>
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02009918M: Marc Dietrich <marvin24@gmx.de>
9919L: ac100@lists.launchpad.net (moderated for non-subscribers)
Stephen Warren5d96bf42013-02-27 17:02:54 -08009920L: linux-tegra@vger.kernel.org
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02009921S: Maintained
9922F: drivers/staging/nvec/
9923
Joe Perchesa0138162011-07-05 15:21:34 -07009924STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
Jens Frederich3140b452013-08-04 20:57:43 +02009925M: Jens Frederich <jfrederich@gmail.com>
9926M: Daniel Drake <dsd@laptop.org>
Joe Perchesa0138162011-07-05 15:21:34 -07009927M: Jon Nettleton <jon.nettleton@gmail.com>
9928W: http://wiki.laptop.org/go/DCON
Jens Frederich3140b452013-08-04 20:57:43 +02009929S: Maintained
Joe Perchesa0138162011-07-05 15:21:34 -07009930F: drivers/staging/olpc_dcon/
9931
9932STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
Joe Perches29e70172011-07-05 09:42:08 -07009933M: Willy Tarreau <willy@meta-x.org>
9934S: Odd Fixes
9935F: drivers/staging/panel/
9936
Joe Perchesa0138162011-07-05 15:21:34 -07009937STAGING - REALTEK RTL8712U DRIVERS
9938M: Larry Finger <Larry.Finger@lwfinger.net>
9939M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
9940S: Odd Fixes
9941F: drivers/staging/rtl8712/
9942
Jes Sorensen7591ba82014-04-26 18:54:48 +02009943STAGING - REALTEK RTL8723U WIRELESS DRIVER
9944M: Larry Finger <Larry.Finger@lwfinger.net>
9945M: Jes Sorensen <Jes.Sorensen@redhat.com>
9946L: linux-wireless@vger.kernel.org
9947S: Maintained
9948F: drivers/staging/rtl8723au/
9949
Sudip Mukherjee980ac4d2015-03-03 16:21:07 +05309950STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
9951M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
9952M: Teddy Wang <teddy.wang@siliconmotion.com>
9953M: Sudip Mukherjee <sudip@vectorindia.org>
9954L: linux-fbdev@vger.kernel.org
9955S: Maintained
9956F: drivers/staging/sm750fb/
9957
Joe Perches510fa4082014-02-10 16:37:56 -08009958STAGING - SLICOSS
9959M: Lior Dotan <liodot@gmail.com>
9960M: Christopher Harrer <charrer@alacritech.com>
9961S: Odd Fixes
9962F: drivers/staging/slicoss/
9963
Joe Perchesa0138162011-07-05 15:21:34 -07009964STAGING - SPEAKUP CONSOLE SPEECH DRIVER
9965M: William Hubbs <w.d.hubbs@gmail.com>
9966M: Chris Brannon <chris@the-brannons.com>
William Hubbsd33bce32013-05-12 13:49:54 -05009967M: Kirk Reiser <kirk@reisers.ca>
Joe Perchesa0138162011-07-05 15:21:34 -07009968M: Samuel Thibault <samuel.thibault@ens-lyon.org>
Samuel Thibaulte6a152e2014-07-17 23:34:58 +02009969L: speakup@linux-speakup.org
Joe Perchesa0138162011-07-05 15:21:34 -07009970W: http://www.linux-speakup.org/
9971S: Odd Fixes
9972F: drivers/staging/speakup/
9973
Joe Perchesb3e871c2011-07-05 09:42:10 -07009974STAGING - VIA VT665X DRIVERS
9975M: Forest Bond <forest@alittletooquiet.net>
9976S: Odd Fixes
9977F: drivers/staging/vt665?/
9978
Johnny Kima30baec2015-05-11 14:30:57 +09009979STAGING - WILC1000 WIFI DRIVER
9980M: Johnny Kim <johnny.kim@atmel.com>
9981M: Rachel Kim <rachel.kim@atmel.com>
9982M: Dean Lee <dean.lee@atmel.com>
9983M: Chris Park <chris.park@atmel.com>
9984L: linux-wireless@vger.kernel.org
9985S: Supported
9986F: drivers/staging/wilc1000/
9987
Joe Perches709bcb02011-07-05 09:42:13 -07009988STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +02009989M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -07009990S: Odd Fixes
9991F: drivers/staging/xgifb/
9992
Mike Marciniszyn77241052015-07-30 15:17:43 -04009993HFI1 DRIVER
9994M: Mike Marciniszyn <infinipath@intel.com>
9995L: linux-rdma@vger.kernel.org
9996S: Supported
9997F: drivers/staging/rdma/hfi1
9998
Linus Torvalds1da177e2005-04-16 15:20:36 -07009999STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010000M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -070010001S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -070010002F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010003
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010004SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -070010005M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010006W: http://sammy.net/sun3/
10007S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010008F: arch/m68k/kernel/*sun3*
10009F: arch/m68k/sun3*/
10010F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -070010011F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010012
Hans de Goedeaf6a5af2014-12-18 09:24:50 -080010013SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
10014M: Hans de Goede <hdegoede@redhat.com>
10015L: linux-input@vger.kernel.org
10016S: Maintained
10017F: Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
10018F: drivers/input/keyboard/sun4i-lradc-keys.c
10019
Denis Kirjanov2bc9ff02013-08-17 09:08:49 +040010020SUNDANCE NETWORK DRIVER
10021M: Denis Kirjanov <kda@linux-powerpc.org>
10022L: netdev@vger.kernel.org
10023S: Maintained
10024F: drivers/net/ethernet/dlink/sundance.c
10025
Paul Mundt2cbb12a2007-11-19 13:08:37 +090010026SUPERH
Paul Mundt2cbb12a2007-11-19 13:08:37 +090010027L: linux-sh@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -080010028Q: http://patchwork.kernel.org/project/linux-sh/list/
Geert Uytterhoevendcaa57d2014-04-03 14:48:47 -070010029S: Orphan
Paul Mundt066069e2009-04-14 06:32:08 +090010030F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -070010031F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +090010032F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010033
Randy Dunlap4480f15b2008-10-12 16:11:58 -070010034SUSPEND TO RAM
Rafael J. Wysocki7fb06082014-03-20 03:34:47 +010010035M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Joe Perches8b58be82009-07-29 15:04:30 -070010036M: Len Brown <len.brown@intel.com>
10037M: Pavel Machek <pavel@ucw.cz>
WANG Congbf1c1382011-10-08 20:57:50 +020010038L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010039S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010040F: Documentation/power/
10041F: arch/x86/kernel/acpi/
10042F: drivers/base/power/
10043F: kernel/power/
10044F: include/linux/suspend.h
10045F: include/linux/freezer.h
10046F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070010047
10048SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -070010049M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010050L: linux-video@atrey.karlin.mff.cuni.cz
10051S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010052F: Documentation/svga.txt
10053F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010054
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -070010055SWIOTLB SUBSYSTEM
10056M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10057L: linux-kernel@vger.kernel.org
10058S: Supported
10059F: lib/swiotlb.c
10060F: arch/*/kernel/pci-swiotlb.c
10061F: include/linux/swiotlb.h
10062
Jiri Pirko007f7902014-11-28 14:34:17 +010010063SWITCHDEV
10064M: Jiri Pirko <jiri@resnulli.us>
10065L: netdev@vger.kernel.org
10066S: Supported
10067F: net/switchdev/
10068F: include/net/switchdev.h
10069
Vineet Guptadb8e35d2013-01-18 15:12:25 +053010070SYNOPSYS ARC ARCHITECTURE
10071M: Vineet Gupta <vgupta@synopsys.com>
Vineet Guptadb8e35d2013-01-18 15:12:25 +053010072S: Supported
10073F: arch/arc/
Vineet Gupta9b288292014-11-18 17:36:11 +053010074F: Documentation/devicetree/bindings/arc/*
Joe Perchesc6a0fe42013-09-11 14:23:45 -070010075F: drivers/tty/serial/arc_uart.c
Baruch Siachb7182d12015-08-11 12:08:32 +030010076T: git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
Vineet Guptadb8e35d2013-01-18 15:12:25 +053010077
Alexey Brodkin556cc1c2014-01-27 14:51:34 +010010078SYNOPSYS ARC SDP platform support
10079M: Alexey Brodkin <abrodkin@synopsys.com>
10080S: Supported
10081F: arch/arc/plat-axs10x
10082F: arch/arc/boot/dts/ax*
10083F: Documentation/devicetree/bindings/arc/axs10*
10084
Lee Jones6c284c92015-05-12 14:13:58 +010010085SYSTEM CONFIGURATION (SYSCON)
10086M: Lee Jones <lee.jones@linaro.org>
10087M: Arnd Bergmann <arnd@arndb.de>
10088T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
10089S: Supported
10090F: drivers/mfd/syscon.c
10091
Linus Torvalds1da177e2005-04-16 15:20:36 -070010092SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070010093M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010094S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010095F: Documentation/filesystems/sysv-fs.txt
10096F: fs/sysv/
10097F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070010098
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -070010099TARGET SUBSYSTEM
Joe Perches9c3646d2015-06-25 15:02:00 -070010100M: "Nicholas A. Bellinger" <nab@linux-iscsi.org>
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -070010101L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +000010102L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -070010103W: http://www.linux-iscsi.org
Joe Perchescf015e92014-02-25 15:01:47 -080010104W: http://groups.google.com/group/linux-iscsi-target-dev
Nicholas Bellinger452cf322013-05-11 16:27:56 -070010105T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -070010106S: Supported
10107F: drivers/target/
10108F: include/target/
10109F: Documentation/target/
10110
Alan Cox4e688522008-04-30 00:52:11 -070010111TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -070010112M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -070010113S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010114F: Documentation/accounting/taskstats*
10115F: include/linux/taskstats*
10116F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -070010117
Stephen Hemminger781b456a2006-07-10 20:25:29 -070010118TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +000010119M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-07-10 20:25:29 -070010120L: netdev@vger.kernel.org
10121S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010122F: include/net/pkt_cls.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010123F: include/uapi/linux/pkt_cls.h
Joe Perches679655d2009-04-07 20:44:32 -070010124F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -070010125
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -070010126TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -070010127M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
10128M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -070010129W: http://tcp-lp-mod.sourceforge.net/
10130S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010131F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -070010132
Antti Palosaari91952bc2012-10-01 12:28:46 -030010133TDA10071 MEDIA DRIVER
10134M: Antti Palosaari <crope@iki.fi>
10135L: linux-media@vger.kernel.org
10136W: http://linuxtv.org/
10137W: http://palosaari.fi/linux/
10138Q: http://patchwork.linuxtv.org/project/linux-media/list/
10139T: git git://linuxtv.org/anttip/media_tree.git
10140S: Maintained
10141F: drivers/media/dvb-frontends/tda10071*
10142
10143TDA18212 MEDIA DRIVER
10144M: Antti Palosaari <crope@iki.fi>
10145L: linux-media@vger.kernel.org
10146W: http://linuxtv.org/
10147W: http://palosaari.fi/linux/
10148Q: http://patchwork.linuxtv.org/project/linux-media/list/
10149T: git git://linuxtv.org/anttip/media_tree.git
10150S: Maintained
10151F: drivers/media/tuners/tda18212*
10152
10153TDA18218 MEDIA DRIVER
10154M: Antti Palosaari <crope@iki.fi>
10155L: linux-media@vger.kernel.org
10156W: http://linuxtv.org/
10157W: http://palosaari.fi/linux/
10158Q: http://patchwork.linuxtv.org/project/linux-media/list/
10159T: git git://linuxtv.org/anttip/media_tree.git
10160S: Maintained
10161F: drivers/media/tuners/tda18218*
10162
Michael Krufky3b2f6ab2012-10-02 00:55:32 -030010163TDA18271 MEDIA DRIVER
10164M: Michael Krufky <mkrufky@linuxtv.org>
10165L: linux-media@vger.kernel.org
10166W: http://linuxtv.org/
10167W: http://github.com/mkrufky
10168Q: http://patchwork.linuxtv.org/project/linux-media/list/
10169T: git git://linuxtv.org/mkrufky/tuners.git
10170S: Maintained
10171F: drivers/media/tuners/tda18271*
10172
Michael Krufkye48307a2012-10-02 00:56:33 -030010173TDA827x MEDIA DRIVER
10174M: Michael Krufky <mkrufky@linuxtv.org>
10175L: linux-media@vger.kernel.org
10176W: http://linuxtv.org/
10177W: http://github.com/mkrufky
10178Q: http://patchwork.linuxtv.org/project/linux-media/list/
10179T: git git://linuxtv.org/mkrufky/tuners.git
10180S: Maintained
10181F: drivers/media/tuners/tda8290.*
10182
Michael Krufky66cf9212012-10-02 00:56:28 -030010183TDA8290 MEDIA DRIVER
10184M: Michael Krufky <mkrufky@linuxtv.org>
10185L: linux-media@vger.kernel.org
10186W: http://linuxtv.org/
10187W: http://github.com/mkrufky
10188Q: http://patchwork.linuxtv.org/project/linux-media/list/
10189T: git git://linuxtv.org/mkrufky/tuners.git
10190S: Maintained
10191F: drivers/media/tuners/tda8290.*
10192
Hans Verkuil4b9fba32012-11-23 10:02:05 -030010193TDA9840 MEDIA DRIVER
10194M: Hans Verkuil <hverkuil@xs4all.nl>
10195L: linux-media@vger.kernel.org
10196T: git git://linuxtv.org/media_tree.git
10197W: http://linuxtv.org
10198S: Maintained
10199F: drivers/media/i2c/tda9840*
10200
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -020010201TEA5761 TUNER DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -020010202M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -020010203L: linux-media@vger.kernel.org
10204W: http://linuxtv.org
10205T: git git://linuxtv.org/media_tree.git
10206S: Odd fixes
10207F: drivers/media/tuners/tea5761.*
10208
10209TEA5767 TUNER DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -020010210M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -020010211L: linux-media@vger.kernel.org
10212W: http://linuxtv.org
10213T: git git://linuxtv.org/media_tree.git
10214S: Maintained
10215F: drivers/media/tuners/tea5767.*
10216
Hans Verkuil4b9fba32012-11-23 10:02:05 -030010217TEA6415C MEDIA DRIVER
10218M: Hans Verkuil <hverkuil@xs4all.nl>
10219L: linux-media@vger.kernel.org
10220T: git git://linuxtv.org/media_tree.git
10221W: http://linuxtv.org
10222S: Maintained
10223F: drivers/media/i2c/tea6415c*
10224
10225TEA6420 MEDIA DRIVER
10226M: Hans Verkuil <hverkuil@xs4all.nl>
10227L: linux-media@vger.kernel.org
10228T: git git://linuxtv.org/media_tree.git
10229W: http://linuxtv.org
10230S: Maintained
10231F: drivers/media/i2c/tea6420*
10232
Jiri Pirko3d249d42011-11-11 22:16:48 +000010233TEAM DRIVER
Jiri Pirkodca9ab92013-02-15 23:55:05 +000010234M: Jiri Pirko <jiri@resnulli.us>
Jiri Pirko3d249d42011-11-11 22:16:48 +000010235L: netdev@vger.kernel.org
10236S: Supported
10237F: drivers/net/team/
10238F: include/linux/if_team.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010239F: include/uapi/linux/if_team.h
Jiri Pirko3d249d42011-11-11 22:16:48 +000010240
Vivien Didelot7d029122013-01-04 16:18:14 -050010241TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
Joe Perches9c3646d2015-06-25 15:02:00 -070010242M: "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
Vivien Didelot7d029122013-01-04 16:18:14 -050010243S: Maintained
10244F: arch/x86/platform/ts5500/
10245
Sean Young40ad4a32012-11-19 10:32:53 -030010246TECHNOTREND USB IR RECEIVER
10247M: Sean Young <sean@mess.org>
10248L: linux-media@vger.kernel.org
10249S: Maintained
10250F: drivers/media/rc/ttusbir.c
10251
Stephen Warrenadabdb02013-09-13 13:00:57 -060010252TEGRA ARCHITECTURE SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -070010253M: Stephen Warren <swarren@wwwdotorg.org>
Stephen Warrenadabdb02013-09-13 13:00:57 -060010254M: Thierry Reding <thierry.reding@gmail.com>
Stephen Warren554077c2014-10-03 09:50:32 -060010255M: Alexandre Courbot <gnurou@gmail.com>
Erik Gilling84b94142010-06-09 15:35:53 -070010256L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -070010257Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
Andreas Färberb779b882014-07-28 12:06:26 -060010258T: git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
Erik Gilling84b94142010-06-09 15:35:53 -070010259S: Supported
Stephen Warrenbbbe96e2013-04-29 16:17:23 -070010260N: [^a-z]tegra
Erik Gilling84b94142010-06-09 15:35:53 -070010261
Stephen Warrenadabdb02013-09-13 13:00:57 -060010262TEGRA CLOCK DRIVER
10263M: Peter De Schrijver <pdeschrijver@nvidia.com>
10264M: Prashant Gaikwad <pgaikwad@nvidia.com>
10265S: Supported
10266F: drivers/clk/tegra/
10267
10268TEGRA DMA DRIVER
10269M: Laxman Dewangan <ldewangan@nvidia.com>
10270S: Supported
10271F: drivers/dma/tegra20-apb-dma.c
10272
Stephen Warrenadabdb02013-09-13 13:00:57 -060010273TEGRA I2C DRIVER
10274M: Laxman Dewangan <ldewangan@nvidia.com>
10275S: Supported
10276F: drivers/i2c/busses/i2c-tegra.c
10277
10278TEGRA IOMMU DRIVERS
10279M: Hiroshi Doyu <hdoyu@nvidia.com>
10280S: Supported
10281F: drivers/iommu/tegra*
10282
10283TEGRA KBC DRIVER
10284M: Rakesh Iyer <riyer@nvidia.com>
10285M: Laxman Dewangan <ldewangan@nvidia.com>
10286S: Supported
10287F: drivers/input/keyboard/tegra-kbc.c
10288
Stephen Warrenadabdb02013-09-13 13:00:57 -060010289TEGRA PWM DRIVER
10290M: Thierry Reding <thierry.reding@gmail.com>
10291S: Supported
10292F: drivers/pwm/pwm-tegra.c
10293
10294TEGRA SERIAL DRIVER
10295M: Laxman Dewangan <ldewangan@nvidia.com>
10296S: Supported
10297F: drivers/tty/serial/serial-tegra.c
10298
10299TEGRA SPI DRIVER
10300M: Laxman Dewangan <ldewangan@nvidia.com>
10301S: Supported
10302F: drivers/spi/spi-tegra*
10303
Andy Gospodarek1a348cc2007-09-17 18:50:36 -070010304TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010305M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -070010306L: netdev@vger.kernel.org
10307S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -070010308F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -070010309
Alan Cox4e688522008-04-30 00:52:11 -070010310Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -070010311M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -070010312S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010313F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -070010314
Randy Dunlap4480f15b2008-10-12 16:11:58 -070010315TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -070010316M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -070010317M: Max Filippov <jcmvbkbc@gmail.com>
10318L: linux-xtensa@linux-xtensa.org
Alan Cox4e688522008-04-30 00:52:11 -070010319S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010320F: arch/xtensa/
Max Filippov3dc99852014-04-03 14:48:48 -070010321F: drivers/irqchip/irq-xtensa-*
Alan Cox4e688522008-04-30 00:52:11 -070010322
Hans Verkuil5313ba62013-12-13 09:00:38 -030010323THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
10324M: Hans Verkuil <hverkuil@xs4all.nl>
10325L: linux-media@vger.kernel.org
10326T: git git://linuxtv.org/media_tree.git
10327W: http://linuxtv.org
10328S: Maintained
10329F: drivers/media/radio/radio-raremono.c
10330
Zhang Ruid3fb6952012-11-15 08:58:27 +080010331THERMAL
Joe Perchesb75f0052014-03-03 15:38:37 -080010332M: Zhang Rui <rui.zhang@intel.com>
Lee Jonesf14d1c22014-05-30 11:03:28 +010010333M: Eduardo Valentin <edubezval@gmail.com>
Joe Perchesb75f0052014-03-03 15:38:37 -080010334L: linux-pm@vger.kernel.org
10335T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
10336T: git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
10337Q: https://patchwork.kernel.org/project/linux-pm/list/
10338S: Supported
10339F: drivers/thermal/
10340F: include/linux/thermal.h
Florian Fainelliaf6c9f12014-11-19 18:11:00 -080010341F: include/uapi/linux/thermal.h
Joe Perchesb75f0052014-03-03 15:38:37 -080010342F: include/linux/cpu_cooling.h
10343F: Documentation/devicetree/bindings/thermal/
Zhang Ruid3fb6952012-11-15 08:58:27 +080010344
Viresh Kumar64e05d82015-08-27 07:32:11 +053010345THERMAL/CPU_COOLING
10346M: Amit Daniel Kachhap <amit.kachhap@gmail.com>
10347M: Viresh Kumar <viresh.kumar@linaro.org>
10348M: Javi Merino <javi.merino@arm.com>
10349L: linux-pm@vger.kernel.org
10350S: Supported
10351F: Documentation/thermal/cpu-cooling-api.txt
10352F: drivers/thermal/cpu_cooling.c
10353F: include/linux/cpu_cooling.h
10354
Vivien Didelot30ba2fb2013-01-22 12:01:21 -050010355THINGM BLINK(1) USB RGB LED DRIVER
10356M: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
10357S: Maintained
10358F: drivers/hid/hid-thingm.c
10359
Alan Cox4e688522008-04-30 00:52:11 -070010360THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010361M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -070010362L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -050010363L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -070010364W: http://ibm-acpi.sourceforge.net
10365W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -070010366T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -070010367S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010368F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -070010369
Eduardo Valentin1b46f2a2013-03-15 09:00:34 -040010370TI BANDGAP AND THERMAL DRIVER
Lee Jonesf14d1c22014-05-30 11:03:28 +010010371M: Eduardo Valentin <edubezval@gmail.com>
Eduardo Valentin1b46f2a2013-03-15 09:00:34 -040010372L: linux-pm@vger.kernel.org
Nishanth Menon531ff132015-01-03 13:13:30 -060010373L: linux-omap@vger.kernel.org
Eduardo Valentin5a723e82015-01-05 17:48:13 -040010374S: Maintained
Eduardo Valentin794b2e22013-05-15 15:46:01 +000010375F: drivers/thermal/ti-soc-thermal/
Eduardo Valentin1b46f2a2013-03-15 09:00:34 -040010376
Max Filippov0c7665c2015-01-12 10:20:46 +030010377TI CDCE706 CLOCK DRIVER
10378M: Max Filippov <jcmvbkbc@gmail.com>
10379S: Maintained
10380F: drivers/clk/clk-cdce706.c
10381
Tero Kristo49b6a5e2014-07-02 17:03:50 +030010382TI CLOCK DRIVER
10383M: Tero Kristo <t-kristo@ti.com>
10384L: linux-omap@vger.kernel.org
10385S: Maintained
10386F: drivers/clk/ti/
10387F: include/linux/clk/ti.h
10388
Alex Dubov4020f2d2006-10-04 02:15:37 -070010389TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010390M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020010391S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010392F: drivers/misc/tifm*
10393F: drivers/mmc/host/tifm_sd.c
10394F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -070010395
Santosh Shilimkare0c52402014-07-10 11:30:08 -040010396TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
Santosh Shilimkar97215802014-10-13 14:16:28 -040010397M: Santosh Shilimkar <ssantosh@kernel.org>
Santosh Shilimkare0c52402014-07-10 11:30:08 -040010398L: linux-kernel@vger.kernel.org
10399L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10400S: Maintained
10401F: drivers/soc/ti/*
10402T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
10403
10404
M R Swami Reddy152ad442012-04-02 20:02:31 +053010405TI LM49xxx FAMILY ASoC CODEC DRIVERS
10406M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +053010407M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +053010408L: alsa-devel@alsa-project.org (moderated for non-subscribers)
10409S: Maintained
10410F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +053010411F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +053010412
Kim, Milo0edd8072012-12-17 16:01:17 -080010413TI LP855x BACKLIGHT DRIVER
10414M: Milo Kim <milo.kim@ti.com>
10415S: Maintained
10416F: Documentation/backlight/lp855x-driver.txt
10417F: drivers/video/backlight/lp855x_bl.c
10418F: include/linux/platform_data/lp855x.h
10419
Kim, Milofaf13f62012-12-10 05:27:03 +000010420TI LP8727 CHARGER DRIVER
10421M: Milo Kim <milo.kim@ti.com>
10422S: Maintained
10423F: drivers/power/lp8727_charger.c
10424F: include/linux/platform_data/lp8727.h
10425
Kim, Milo22f12292012-12-10 05:27:55 +000010426TI LP8788 MFD DRIVER
10427M: Milo Kim <milo.kim@ti.com>
10428S: Maintained
10429F: drivers/iio/adc/lp8788_adc.c
10430F: drivers/leds/leds-lp8788.c
10431F: drivers/mfd/lp8788*.c
10432F: drivers/power/lp8788-charger.c
10433F: drivers/regulator/lp8788-*.c
10434F: include/linux/mfd/lp8788*.h
10435
Karicheri, Muralidharan84640e22015-01-15 19:12:50 -050010436TI NETCP ETHERNET DRIVER
10437M: Wingman Kwok <w-kwok2@ti.com>
10438M: Murali Karicheri <m-karicheri2@ti.com>
10439L: netdev@vger.kernel.org
10440S: Maintained
10441F: drivers/net/ethernet/ti/netcp*
10442
Kevin Cernekee217e0ca2015-05-03 17:00:19 -070010443TI TAS571X FAMILY ASoC CODEC DRIVER
10444M: Kevin Cernekee <cernekee@chromium.org>
10445L: alsa-devel@alsa-project.org (moderated for non-subscribers)
10446S: Odd Fixes
10447F: sound/soc/codecs/tas571x*
10448
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +030010449TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +030010450M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +030010451L: alsa-devel@alsa-project.org (moderated for non-subscribers)
10452S: Maintained
10453F: sound/soc/codecs/twl4030*
10454
Luciano Coelho90921012011-11-20 21:40:41 +020010455TI WILINK WIRELESS DRIVERS
Luciano Coelho90921012011-11-20 21:40:41 +020010456L: linux-wireless@vger.kernel.org
10457W: http://wireless.kernel.org/en/users/Drivers/wl12xx
10458W: http://wireless.kernel.org/en/users/Drivers/wl1251
10459T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
Luciano Coelho22d072f2013-12-09 22:28:32 +020010460S: Orphan
Luciano Coelho90921012011-11-20 21:40:41 +020010461F: drivers/net/wireless/ti/
10462F: include/linux/wl12xx.h
10463
Per Lidene86eaa32006-01-12 16:45:18 +010010464TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -070010465M: Jon Maloy <jon.maloy@ericsson.com>
Jon Paul Maloy115403d2015-03-09 14:44:13 -040010466M: Ying Xue <ying.xue@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -050010467L: netdev@vger.kernel.org (core kernel code)
10468L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +010010469W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +010010470S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010471F: include/uapi/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -070010472F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +010010473
Chris Metcalf867e3592010-05-28 23:09:12 -040010474TILE ARCHITECTURE
Chris Metcalfc47b15c2014-11-13 09:41:58 -050010475M: Chris Metcalf <cmetcalf@ezchip.com>
Chris Metcalf740e1432015-02-13 13:16:49 -050010476W: http://www.ezchip.com/scm/
Chris Metcalf867e3592010-05-28 23:09:12 -040010477S: Supported
10478F: arch/tile/
Chris Metcalf6b940602013-08-07 10:45:01 -040010479F: drivers/char/tile-srom.c
Chris Metcalf5c770752011-03-01 13:01:49 -050010480F: drivers/edac/tile_edac.c
Chris Metcalf6b940602013-08-07 10:45:01 -040010481F: drivers/net/ethernet/tile/
10482F: drivers/rtc/rtc-tile.c
10483F: drivers/tty/hvc/hvc_tile.c
Chris Metcalfb5c6c1a2013-08-12 14:11:44 -040010484F: drivers/tty/serial/tilegx.c
Chris Metcalf6b940602013-08-07 10:45:01 -040010485F: drivers/usb/host/*-tilegx.c
10486F: include/linux/usb/tilegx.h
Chris Metcalf867e3592010-05-28 23:09:12 -040010487
Linus Torvalds1da177e2005-04-16 15:20:36 -070010488TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010489M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +080010490L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010491W: http://sourceforge.net/projects/tlan/
10492S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010493F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -070010494F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010495
Kentaro Takedad74db3b2009-02-05 17:18:18 +090010496TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -070010497M: Kentaro Takeda <takedakn@nttdata.co.jp>
10498M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +090010499L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
10500L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +090010501L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
10502L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
10503W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +090010504T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +090010505S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010506F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +090010507
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -030010508TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -030010509M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd0944852010-02-11 10:40:13 -050010510L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -030010511S: Maintained
10512F: drivers/platform/x86/topstar-laptop.c
10513
Linus Torvalds1da177e2005-04-16 15:20:36 -070010514TOSHIBA ACPI EXTRAS DRIVER
Azael Avalos0a63ca12015-03-06 18:14:42 -070010515M: Azael Avalos <coproscefalo@gmail.com>
Matthew Garrettd0944852010-02-11 10:40:13 -050010516L: platform-driver-x86@vger.kernel.org
Azael Avalos0a63ca12015-03-06 18:14:42 -070010517S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010518F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070010519
Azael Avalos0a63ca12015-03-06 18:14:42 -070010520TOSHIBA BLUETOOTH DRIVER
10521M: Azael Avalos <coproscefalo@gmail.com>
10522L: platform-driver-x86@vger.kernel.org
10523S: Maintained
10524F: drivers/platform/x86/toshiba_bluetooth.c
10525
10526TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
10527M: Azael Avalos <coproscefalo@gmail.com>
10528L: platform-driver-x86@vger.kernel.org
10529S: Maintained
10530F: drivers/platform/x86/toshiba_haps.c
10531
Linus Torvalds1da177e2005-04-16 15:20:36 -070010532TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010533M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010534W: http://www.buzzard.org.uk/toshiba/
10535S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010536F: drivers/char/toshiba.c
10537F: include/linux/toshiba.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010538F: include/uapi/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070010539
Mats Randgaardd32d9862015-07-09 05:45:47 -030010540TOSHIBA TC358743 DRIVER
10541M: Mats Randgaard <matrandg@cisco.com>
10542L: linux-media@vger.kernel.org
10543S: Maintained
10544F: drivers/media/i2c/tc358743*
10545F: include/media/tc358743.h
10546
Pierre Ossmand719f902009-03-24 21:06:09 +010010547TMIO MMC DRIVER
Ben Hutchingsc4b13fb2015-04-27 00:01:53 +010010548M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +020010549L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +010010550S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +020010551F: drivers/mmc/host/tmio_mmc*
10552F: drivers/mmc/host/sh_mobile_sdhi.c
10553F: include/linux/mmc/tmio.h
10554F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +010010555
Guenter Roeck917cc4e2013-05-19 20:44:27 -070010556TMP401 HARDWARE MONITOR DRIVER
10557M: Guenter Roeck <linux@roeck-us.net>
10558L: lm-sensors@lm-sensors.org
10559S: Maintained
10560F: Documentation/hwmon/tmp401
10561F: drivers/hwmon/tmp401.c
10562
Hugh Dickins98f32602009-05-21 20:33:58 +010010563TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -070010564M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +010010565L: linux-mm@kvack.org
10566S: Maintained
10567F: include/linux/shmem_fs.h
10568F: mm/shmem.c
10569
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -020010570TM6000 VIDEO4LINUX DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -020010571M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -020010572L: linux-media@vger.kernel.org
10573W: http://linuxtv.org
10574T: git git://linuxtv.org/media_tree.git
10575S: Odd fixes
10576F: drivers/media/usb/tm6000/
10577
Hans Verkuilc65fde12014-08-10 05:16:39 -030010578TW68 VIDEO4LINUX DRIVER
10579M: Hans Verkuil <hverkuil@xs4all.nl>
10580L: linux-media@vger.kernel.org
10581T: git git://linuxtv.org/media_tree.git
10582W: http://linuxtv.org
10583S: Odd Fixes
10584F: drivers/media/pci/tw68/
10585
Alan Cox4e688522008-04-30 00:52:11 -070010586TPM DEVICE DRIVER
Peter Huewe901486b2013-10-22 19:28:30 +020010587M: Peter Huewe <peterhuewe@gmx.de>
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -030010588M: Marcel Selhorst <tpmdd@selhorst.net>
Peter Huewece93b4b2015-03-15 01:05:31 +010010589R: Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
Peter Huewe383dec12013-10-30 20:54:45 +010010590W: http://tpmdd.sourceforge.net
Rajiv Andrade63a10df2008-10-15 22:04:36 -070010591L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Peter Huewef78c81b2015-01-17 15:17:51 +010010592Q: git git://github.com/PeterHuewe/linux-tpmdd.git
10593T: https://github.com/PeterHuewe/linux-tpmdd
Alan Cox4e688522008-04-30 00:52:11 -070010594S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010595F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -070010596
Ashley Lai1a0f1b22014-12-04 21:01:51 -060010597TPM IBM_VTPM DEVICE DRIVER
10598M: Ashley Lai <ashleydlai@gmail.com>
10599W: http://tpmdd.sourceforge.net
10600L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
10601S: Maintained
10602F: drivers/char/tpm/tpm_ibmvtpm*
10603
Joe Perchesd6f005a2009-10-26 16:49:40 -070010604TRACING
10605M: Steven Rostedt <rostedt@goodmis.org>
Joe Perchesd6f005a2009-10-26 16:49:40 -070010606M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +010010607T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -070010608S: Maintained
10609F: Documentation/trace/ftrace.txt
10610F: arch/*/*/*/ftrace.h
10611F: arch/*/kernel/ftrace.c
10612F: include/*/ftrace.h
10613F: include/linux/trace*.h
10614F: include/trace/
10615F: kernel/trace/
Masami Hiramatsu6e68e6c2014-09-22 23:42:50 +000010616F: tools/testing/selftests/ftrace/
Joe Perchesd6f005a2009-10-26 16:49:40 -070010617
Linus Torvalds1da177e2005-04-16 15:20:36 -070010618TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -070010619M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -070010620T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070010621S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +020010622K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -070010623
Alan Cox4e688522008-04-30 00:52:11 -070010624TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -080010625M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jiri Slabyd8130622015-07-17 16:23:20 -070010626M: Jiri Slaby <jslaby@suse.com>
Greg KH879a5a02012-01-31 20:02:00 -080010627S: Supported
Joe Perches08deed12012-03-23 15:01:57 -070010628T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Baruch Siach84e1eb82015-06-04 10:56:58 +030010629F: Documentation/serial/
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -020010630F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -080010631F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +010010632F: include/linux/serial_core.h
10633F: include/linux/serial.h
10634F: include/linux/tty.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010635F: include/uapi/linux/serial_core.h
10636F: include/uapi/linux/serial.h
10637F: include/uapi/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -070010638
Antti Palosaari91952bc2012-10-01 12:28:46 -030010639TUA9001 MEDIA DRIVER
10640M: Antti Palosaari <crope@iki.fi>
10641L: linux-media@vger.kernel.org
10642W: http://linuxtv.org/
10643W: http://palosaari.fi/linux/
10644Q: http://patchwork.linuxtv.org/project/linux-media/list/
10645T: git git://linuxtv.org/anttip/media_tree.git
10646S: Maintained
10647F: drivers/media/tuners/tua9001*
10648
Grant Grundler740db6d2008-02-17 11:53:49 -070010649TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -070010650M: Grant Grundler <grundler@parisc-linux.org>
Grant Grundler740db6d2008-02-17 11:53:49 -070010651L: netdev@vger.kernel.org
10652S: Maintained
Joe Perches0f04e2a2012-01-10 15:08:56 -080010653F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010654
10655TUN/TAP driver
Jiri Slabyba57b6f2012-11-30 07:05:40 +000010656M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010657W: http://vtun.sourceforge.net/tun
10658S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010659F: Documentation/networking/tuntap.txt
10660F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010661
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -080010662TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070010663M: "Maciej W. Rozycki" <macro@linux-mips.org>
Ralf Baechlec4063392014-04-03 13:29:06 +020010664M: Ralf Baechle <ralf@linux-mips.org>
10665L: linux-mips@linux-mips.org
10666Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -080010667S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010668F: drivers/tc/
10669F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -080010670
Linus Torvalds1da177e2005-04-16 15:20:36 -070010671U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010672M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010673L: linux-scsi@vger.kernel.org
10674S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010675F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070010676
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010677UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +030010678M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +030010679M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010680L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +030010681T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010682W: http://www.linux-mtd.infradead.org/doc/ubifs.html
10683S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010684F: Documentation/filesystems/ubifs.txt
10685F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010686
Greg Ungerere1632fa2015-06-19 10:40:03 +100010687UCLINUX (M68KNOMMU AND COLDFIRE)
Joe Perches8b58be82009-07-29 15:04:30 -070010688M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +010010689W: http://www.uclinux.org/
Greg Ungerere1632fa2015-06-19 10:40:03 +100010690L: linux-m68k@lists.linux-m68k.org
Alan Coxcc2020e2008-05-19 14:21:51 +010010691L: uclinux-dev@uclinux.org (subscribers-only)
Greg Ungerere1632fa2015-06-19 10:40:03 +100010692T: git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
Alan Coxcc2020e2008-05-19 14:21:51 +010010693S: Maintained
Greg Ungerere1632fa2015-06-19 10:40:03 +100010694F: arch/m68k/coldfire/
10695F: arch/m68k/68*/
Joe Perches61bc02b2011-04-14 15:22:04 -070010696F: arch/m68k/*/*_no.*
10697F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +010010698
Linus Torvalds1da177e2005-04-16 15:20:36 -070010699UDF FILESYSTEM
Jiri Slabyd8130622015-07-17 16:23:20 -070010700M: Jan Kara <jack@suse.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010701S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010702F: Documentation/filesystems/udf.txt
10703F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010704
Alan Coxcc2020e2008-05-19 14:21:51 +010010705UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070010706M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +010010707S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010708F: Documentation/filesystems/ufs.txt
10709F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +010010710
David Herrmann0a09d3a2012-06-10 15:16:28 +020010711UHID USERSPACE HID IO DRIVER:
10712M: David Herrmann <dh.herrmann@googlemail.com>
10713L: linux-input@vger.kernel.org
10714S: Maintained
10715F: drivers/hid/uhid.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010716F: include/uapi/linux/uhid.h
David Herrmann0a09d3a2012-06-10 15:16:28 +020010717
David Vrabel18332a82008-09-17 16:34:44 +010010718ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +010010719L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +010010720S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +000010721F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -070010722F: include/linux/uwb.h
10723F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +010010724
GuanXuetaob31d8272011-01-16 00:35:49 +080010725UNICORE32 ARCHITECTURE:
10726M: Guan Xuetao <gxt@mprc.pku.edu.cn>
10727W: http://mprc.pku.edu.cn/~guanxuetao/linux
10728S: Maintained
Guan Xuetaoceebf4d2014-05-27 07:53:10 +080010729T: git git://github.com/gxt/linux.git
GuanXuetaob31d8272011-01-16 00:35:49 +080010730F: arch/unicore32/
10731
Tony Finchd8379ab2009-11-27 15:50:30 +000010732UNIFDEF
10733M: Tony Finch <dot@dotat.at>
10734W: http://dotat.at/prog/unifdef
10735S: Maintained
10736F: scripts/unifdef.c
10737
Linus Torvalds1da177e2005-04-16 15:20:36 -070010738UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010739M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010740W: http://www.kernel.dk
10741S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010742F: Documentation/cdrom/
10743F: drivers/cdrom/cdrom.c
10744F: include/linux/cdrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010745F: include/uapi/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070010746
Benjamin Romer56df0122014-03-07 13:02:21 -060010747UNISYS S-PAR DRIVERS
Joe Perches49e7d9d2015-04-15 16:17:31 -070010748M: Benjamin Romer <benjamin.romer@unisys.com>
10749M: David Kershner <david.kershner@unisys.com>
10750L: sparmaintainer@unisys.com (Unisys internal)
10751S: Supported
10752F: drivers/staging/unisys/
Benjamin Romer56df0122014-03-07 13:02:21 -060010753
Vinayak Holikatti9941fa62012-04-20 14:11:50 +053010754UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
10755M: Vinayak Holikatti <vinholikatti@gmail.com>
Vinayak Holikatti9941fa62012-04-20 14:11:50 +053010756L: linux-scsi@vger.kernel.org
10757S: Supported
10758F: Documentation/scsi/ufs.txt
10759F: drivers/scsi/ufs/
10760
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010761UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +030010762M: Artem Bityutskiy <dedekind1@gmail.com>
Richard Weinberger346be9b2015-01-28 12:28:24 +010010763M: Richard Weinberger <richard@nod.at>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010764W: http://www.linux-mtd.infradead.org/
10765L: linux-mtd@lists.infradead.org
Artem Bityutskiyb6b44e02014-01-02 16:43:51 +020010766T: git git://git.infradead.org/ubifs-2.6.git
Richard Weinberger346be9b2015-01-28 12:28:24 +010010767S: Supported
Joe Perches80811492009-04-08 20:20:27 -070010768F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -070010769F: include/linux/mtd/ubi.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010770F: include/uapi/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010771
Linus Torvalds1da177e2005-04-16 15:20:36 -070010772USB ACM DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +020010773M: Oliver Neukum <oliver@neukum.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -070010774L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070010775S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010776F: Documentation/usb/acm.txt
10777F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010778
Pontus Fuchsb7d572e2012-10-23 20:33:57 +020010779USB AR5523 WIRELESS DRIVER
10780M: Pontus Fuchs <pontus.fuchs@gmail.com>
10781L: linux-wireless@vger.kernel.org
10782S: Maintained
10783F: drivers/net/wireless/ath/ar5523/
10784
Matthew Wilcox115bb1f2010-10-07 13:05:23 +020010785USB ATTACHED SCSI
Hans de Goedef50a4962013-10-28 10:48:04 +000010786M: Hans de Goede <hdegoede@redhat.com>
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +010010787M: Gerd Hoffmann <kraxel@redhat.com>
Matthew Wilcox115bb1f2010-10-07 13:05:23 +020010788L: linux-usb@vger.kernel.org
10789L: linux-scsi@vger.kernel.org
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +010010790S: Maintained
Matthew Wilcox115bb1f2010-10-07 13:05:23 +020010791F: drivers/usb/storage/uas.c
10792
Linus Torvalds1da177e2005-04-16 15:20:36 -070010793USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +020010794M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +020010795L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070010796S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010797F: drivers/net/usb/cdc_*.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010798F: include/uapi/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070010799
Keith Packard66e3e592015-03-19 20:36:49 -070010800USB CHAOSKEY DRIVER
10801M: Keith Packard <keithp@keithp.com>
10802L: linux-usb@vger.kernel.org
10803S: Maintained
10804F: drivers/usb/misc/chaoskey.c
10805
Peter Korsgaardb02b3712008-04-27 08:59:44 +020010806USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010807M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +020010808L: linux-usb@vger.kernel.org
10809S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010810F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +020010811
Peter Korsgaardd0374f42007-02-16 17:03:54 +010010812USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010813M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +020010814L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +010010815W: http://www.linux-usb.org/usbnet
10816S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010817F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +010010818
Alan Coxcc2020e2008-05-19 14:21:51 +010010819USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010820M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +010010821L: rio500-users@lists.sourceforge.net
10822W: http://rio500.sourceforge.net
10823S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010824F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +010010825
Linus Torvalds1da177e2005-04-16 15:20:36 -070010826USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -040010827M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +020010828L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -040010829S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010830F: Documentation/usb/ehci.txt
10831F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010832
David Brownell69ae9e32006-11-14 02:03:31 -080010833USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f662011-06-08 19:16:28 +030010834M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020010835L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -080010836W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +030010837T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
10838S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010839F: drivers/usb/gadget/
10840F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -080010841
Jiri Kosina2dea64b2007-07-11 12:12:11 +020010842USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Jiri Kosinae5f64502015-08-09 09:11:34 +020010843M: Jiri Kosina <jikos@kernel.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +020010844L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -070010845T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070010846S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -070010847F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -070010848F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010849
Olav Kongas959eea22005-11-03 17:38:14 +020010850USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010851M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +020010852L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +020010853S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010854F: drivers/usb/host/isp116x*
10855F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +020010856
Linus Torvalds1da177e2005-04-16 15:20:36 -070010857USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010858M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +020010859L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -080010860L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -070010861S: Maintained
10862W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -070010863F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010864
Clemens Ladischaf399172011-01-10 16:32:54 +010010865USB MIDI DRIVER
10866M: Clemens Ladisch <clemens@ladisch.de>
10867L: alsa-devel@alsa-project.org (moderated for non-subscribers)
10868T: git git://git.alsa-project.org/alsa-kernel.git
10869S: Maintained
10870F: sound/usb/midi.*
10871
Joe Perches444ce9d2013-08-01 21:03:32 -070010872USB NETWORKING DRIVERS
10873L: linux-usb@vger.kernel.org
10874S: Odd Fixes
10875F: drivers/net/usb/
10876
Linus Torvalds1da177e2005-04-16 15:20:36 -070010877USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -040010878M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +020010879L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -040010880S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010881F: Documentation/usb/ohci.txt
10882F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010883
Peter Chen963ffa32015-02-15 12:22:59 +080010884USB OTG FSM (Finite State Machine)
10885M: Peter Chen <Peter.Chen@freescale.com>
Peter Chen83738562015-03-23 19:57:36 +080010886T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
Peter Chen963ffa32015-02-15 12:22:59 +080010887L: linux-usb@vger.kernel.org
10888S: Maintained
10889F: drivers/usb/common/usb-otg-fsm.c
10890
Valentina Manea563da3a2014-08-20 07:31:02 +030010891USB OVER IP DRIVER
10892M: Valentina Manea <valentina.manea.m@gmail.com>
10893M: Shuah Khan <shuah.kh@samsung.com>
10894L: linux-usb@vger.kernel.org
10895S: Maintained
10896F: drivers/usb/usbip/
10897F: tools/usb/usbip/
10898
Linus Torvalds1da177e2005-04-16 15:20:36 -070010899USB PEGASUS DRIVER
Petko Manolova16b9452013-04-29 16:17:25 -070010900M: Petko Manolov <petkan@nucleusys.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020010901L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +020010902L: netdev@vger.kernel.org
Petko Manolov052e3122013-11-15 11:51:54 +020010903T: git git://github.com/petkan/pegasus.git
10904W: https://github.com/petkan/pegasus
Linus Torvalds1da177e2005-04-16 15:20:36 -070010905S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010906F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010907
Felipe Balbid3ad5582012-05-21 16:24:49 +030010908USB PHY LAYER
10909M: Felipe Balbi <balbi@ti.com>
10910L: linux-usb@vger.kernel.org
10911T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
10912S: Maintained
10913F: drivers/usb/phy/
Felipe Balbid3ad5582012-05-21 16:24:49 +030010914
Pete Zaitcev73e4fb32007-06-21 15:18:35 -070010915USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -070010916M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020010917L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -070010918S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010919F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070010920
10921USB RTL8150 DRIVER
Petko Manolova16b9452013-04-29 16:17:25 -070010922M: Petko Manolov <petkan@nucleusys.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020010923L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +020010924L: netdev@vger.kernel.org
Petko Manolov052e3122013-11-15 11:51:54 +020010925T: git git://github.com/petkan/rtl8150.git
10926W: https://github.com/petkan/rtl8150
Linus Torvalds1da177e2005-04-16 15:20:36 -070010927S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010928F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070010929
Greg KHf896b792013-10-30 11:07:31 -070010930USB SERIAL SUBSYSTEM
Johan Hovold66085692014-06-23 12:33:15 +020010931M: Johan Hovold <johan@kernel.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +020010932L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -070010933S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010934F: Documentation/usb/usb-serial.txt
Greg KHf896b792013-10-30 11:07:31 -070010935F: drivers/usb/serial/
Joe Perches679655d2009-04-07 20:44:32 -070010936F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070010937
Steve Glendinningb3f0db12012-08-15 21:53:38 +000010938USB SMSC75XX ETHERNET DRIVER
10939M: Steve Glendinning <steve.glendinning@shawell.net>
10940L: netdev@vger.kernel.org
10941S: Maintained
10942F: drivers/net/usb/smsc75xx.*
10943
Steve Glendinning2f7ca802008-10-02 05:27:57 +000010944USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +010010945M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +000010946L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +010010947S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010948F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +000010949
Linus Torvalds1da177e2005-04-16 15:20:36 -070010950USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -080010951M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +020010952L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070010953W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -070010954T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070010955S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010956F: Documentation/usb/
Joe Perches679655d2009-04-07 20:44:32 -070010957F: drivers/usb/
10958F: include/linux/usb.h
10959F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010960
10961USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010962M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +020010963L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070010964S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010965F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010966
David Brownell69ae9e32006-11-14 02:03:31 -080010967USB "USBNET" DRIVER FRAMEWORK
Jiri Slabyd8130622015-07-17 16:23:20 -070010968M: Oliver Neukum <oneukum@suse.com>
Peter Korsgaard043600a2007-06-27 21:18:18 +020010969L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -080010970W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -070010971S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010972F: drivers/net/usb/usbnet.c
10973F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070010974
Laurent Pinchartc0efd232008-06-30 15:04:50 -030010975USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -070010976M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -030010977L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -030010978L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -020010979T: git git://linuxtv.org/media_tree.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -030010980W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -030010981S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -030010982F: drivers/media/usb/uvc/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -020010983F: include/uapi/linux/uvcvideo.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070010984
Hans Verkuilb60b9c42012-11-23 07:54:42 -030010985USB VISION DRIVER
10986M: Hans Verkuil <hverkuil@xs4all.nl>
10987L: linux-media@vger.kernel.org
10988T: git git://linuxtv.org/media_tree.git
10989W: http://linuxtv.org
10990S: Odd Fixes
10991F: drivers/media/usb/usbvision/
10992
Laurent Pinchart8282da42012-10-04 02:32:42 +020010993USB WEBCAM GADGET
10994M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10995L: linux-usb@vger.kernel.org
10996S: Maintained
Andrzej Pietrasiewicz3a83c162014-09-09 02:02:09 +030010997F: drivers/usb/gadget/function/*uvc*
Joe Perchesfaf2e1d2014-08-08 14:26:18 -070010998F: drivers/usb/gadget/legacy/webcam.c
Laurent Pinchart8282da42012-10-04 02:32:42 +020010999
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +020011000USB WIRELESS RNDIS DRIVER (rndis_wlan)
Jussi Kivilinnae6146c52013-03-07 22:33:38 +020011001M: Jussi Kivilinna <jussi.kivilinna@iki.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +020011002L: linux-wireless@vger.kernel.org
11003S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011004F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +020011005
Sarah Sharpeb6bab12009-04-29 19:07:13 -070011006USB XHCI DRIVER
Sarah Sharp03d85052014-03-20 16:20:56 -070011007M: Mathias Nyman <mathias.nyman@intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -070011008L: linux-usb@vger.kernel.org
11009S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -080011010F: drivers/usb/host/xhci*
11011F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -070011012
Linus Torvalds1da177e2005-04-16 15:20:36 -070011013USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -040011014L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070011015W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -040011016S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -070011017F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011018
Antoine Jacquetb7eee612007-04-27 12:30:59 -030011019USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011020M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011021L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -030011022L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -020011023T: git git://linuxtv.org/media_tree.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -030011024W: http://royale.zerezo.com/zr364xx/
11025S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011026F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -030011027F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -030011028
Heikki Krogerus289fcff2015-05-13 15:26:42 +030011029ULPI BUS
11030M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
11031L: linux-usb@vger.kernel.org
11032S: Maintained
11033F: drivers/usb/common/ulpi.c
11034F: include/linux/ulpi/
11035
Randy Dunlape7839f22008-10-12 16:11:45 -070011036USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -070011037M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +010011038M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011039L: user-mode-linux-devel@lists.sourceforge.net
11040L: user-mode-linux-user@lists.sourceforge.net
11041W: http://user-mode-linux.sourceforge.net
11042S: Maintained
Rob Landley61516582011-05-06 09:27:36 -070011043F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -070011044F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +020011045F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -070011046F: fs/hostfs/
11047F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -030011048
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +010011049USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -070011050M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -080011051M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +010011052S: Maintained
Mandeep Sandhu3d3fecb2015-01-10 19:15:45 -080011053T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Joe Perches679655d2009-04-07 20:44:32 -070011054F: Documentation/DocBook/uio-howto.tmpl
11055F: drivers/uio/
11056F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +010011057
Karel Zak256cccb2012-06-01 10:13:09 +020011058UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -070011059M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +020011060L: util-linux@vger.kernel.org
11061W: http://en.wikipedia.org/wiki/Util-linux
11062T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -070011063S: Maintained
11064
Michal Januszewskic1fd1c02008-10-15 22:03:48 -070011065UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011066M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +010011067L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -070011068W: http://dev.gentoo.org/~spock/projects/uvesafb/
11069S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011070F: Documentation/fb/uvesafb.txt
Jingoo Han8a61f012014-07-01 15:36:01 +090011071F: drivers/video/fbdev/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -070011072
Randy Dunlap4480f15b2008-10-12 16:11:58 -070011073VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070011074M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011075S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011076F: Documentation/filesystems/vfat.txt
11077F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011078
Alex Williamsoncba33452012-07-31 08:16:22 -060011079VFIO DRIVER
11080M: Alex Williamson <alex.williamson@redhat.com>
11081L: kvm@vger.kernel.org
11082S: Maintained
11083F: Documentation/vfio.txt
11084F: drivers/vfio/
11085F: include/linux/vfio.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011086F: include/uapi/linux/vfio.h
Alex Williamsoncba33452012-07-31 08:16:22 -060011087
Alex Williamsona714ea52015-06-18 11:59:22 -060011088VFIO PLATFORM DRIVER
11089M: Baptiste Reynal <b.reynal@virtualopensystems.com>
11090L: kvm@vger.kernel.org
11091S: Maintained
11092F: drivers/vfio/platform/
11093
Pawel Osciak9e6f3432011-06-15 15:08:32 -070011094VIDEOBUF2 FRAMEWORK
11095M: Pawel Osciak <pawel@osciak.com>
11096M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -030011097M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -070011098L: linux-media@vger.kernel.org
11099S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -030011100F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -070011101F: include/media/videobuf2-*
11102
Amit Shah9a824462010-03-23 18:23:09 +053011103VIRTIO CONSOLE DRIVER
11104M: Amit Shah <amit.shah@redhat.com>
11105L: virtualization@lists.linux-foundation.org
11106S: Maintained
11107F: drivers/char/virtio_console.c
11108F: include/linux/virtio_console.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011109F: include/uapi/linux/virtio_console.h
Amit Shah9a824462010-03-23 18:23:09 +053011110
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +103011111VIRTIO CORE, NET AND BLOCK DRIVERS
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +103011112M: "Michael S. Tsirkin" <mst@redhat.com>
11113L: virtualization@lists.linux-foundation.org
11114S: Maintained
11115F: drivers/virtio/
Michael S. Tsirkinc893c8d2013-07-08 11:31:13 +093011116F: tools/virtio/
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +103011117F: drivers/net/virtio_net.c
11118F: drivers/block/virtio_blk.c
11119F: include/linux/virtio_*.h
Amos Kong916cdab2013-04-02 16:42:02 +103011120F: include/uapi/linux/virtio_*.h
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +103011121
Cornelia Huckf2dbda32015-07-01 17:15:37 +020011122VIRTIO DRIVERS FOR S390
11123M: Christian Borntraeger <borntraeger@de.ibm.com>
11124M: Cornelia Huck <cornelia.huck@de.ibm.com>
11125L: linux-s390@vger.kernel.org
11126L: virtualization@lists.linux-foundation.org
11127L: kvm@vger.kernel.org
11128S: Supported
Cornelia Huck1b568d92015-07-07 11:41:01 +020011129F: drivers/s390/virtio/
Cornelia Huckf2dbda32015-07-01 17:15:37 +020011130
Gerd Hoffmann4ad6ee92015-06-02 10:49:03 +020011131VIRTIO GPU DRIVER
11132M: David Airlie <airlied@linux.ie>
11133M: Gerd Hoffmann <kraxel@redhat.com>
11134L: dri-devel@lists.freedesktop.org
11135L: virtualization@lists.linux-foundation.org
11136S: Maintained
11137F: drivers/gpu/drm/virtio/
11138F: include/uapi/linux/virtio_gpu.h
11139
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000011140VIRTIO HOST (VHOST)
11141M: "Michael S. Tsirkin" <mst@redhat.com>
11142L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +000011143L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000011144L: netdev@vger.kernel.org
11145S: Maintained
11146F: drivers/vhost/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011147F: include/uapi/linux/vhost.h
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000011148
Gerd Hoffmann271c8652015-03-27 12:46:12 +103011149VIRTIO INPUT DRIVER
11150M: Gerd Hoffmann <kraxel@redhat.com>
11151S: Maintained
11152F: drivers/virtio/virtio_input.c
11153F: include/uapi/linux/virtio_input.h
11154
Linus Torvalds1da177e2005-04-16 15:20:36 -070011155VIA RHINE NETWORK DRIVER
Roger Luethi210347e2015-05-26 19:12:54 +020011156S: Orphan
Jeff Kirsherf2148a42011-05-20 20:43:09 -070011157F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070011158
Harald Weltef0bf7f62009-06-17 20:22:39 +020011159VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -080011160M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -070011161M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +020011162S: Maintained
11163F: drivers/mmc/host/via-sdmmc.c
11164
Joseph Chan69e4a7c2008-10-15 22:03:31 -070011165VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +000011166M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +010011167L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -070011168S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +000011169F: include/linux/via-core.h
11170F: include/linux/via-gpio.h
11171F: include/linux/via_i2c.h
Jingoo Han8a61f012014-07-01 15:36:01 +090011172F: drivers/video/fbdev/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -070011173
Francois Romieu01f20732007-01-26 00:57:17 -080011174VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011175M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -080011176L: netdev@vger.kernel.org
11177S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -070011178F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011179
Hans Verkuil77911fd2014-12-10 04:22:37 -030011180VIVID VIRTUAL VIDEO DRIVER
Hans Verkuil0b7bc1f2012-11-23 08:21:50 -030011181M: Hans Verkuil <hverkuil@xs4all.nl>
11182L: linux-media@vger.kernel.org
11183T: git git://linuxtv.org/media_tree.git
11184W: http://linuxtv.org
11185S: Maintained
Hans Verkuil77911fd2014-12-10 04:22:37 -030011186F: drivers/media/platform/vivid/*
Hans Verkuil0b7bc1f2012-11-23 08:21:50 -030011187
Patrick McHardybe7f8272007-10-23 20:26:36 -070011188VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -070011189M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -070011190L: netdev@vger.kernel.org
11191S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011192F: drivers/net/macvlan.c
11193F: include/linux/if_*vlan.h
11194F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -070011195
Florian Fainelli55e331c2009-06-16 15:33:53 -070011196VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -070011197M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -080011198L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -070011199S: Maintained
11200F: drivers/vlynq/vlynq.c
11201F: include/linux/vlynq.h
11202
Martyn Welch390beae2012-05-03 17:52:36 +010011203VME SUBSYSTEM
Martyn Welch74c600e2015-09-17 20:38:47 +010011204M: Martyn Welch <martyn@welchs.me.uk>
Manohar Vanga1bd289d2012-06-14 15:57:01 +020011205M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +010011206M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11207L: devel@driverdev.osuosl.org
11208S: Maintained
11209T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11210F: Documentation/vme_api.txt
11211F: drivers/staging/vme/
11212F: drivers/vme/
11213F: include/linux/vme*
11214
Alok Kataria4488e092013-09-04 14:23:41 +053011215VMWARE HYPERVISOR INTERFACE
11216M: Alok Kataria <akataria@vmware.com>
11217L: virtualization@lists.linux-foundation.org
11218S: Supported
11219F: arch/x86/kernel/cpu/vmware.c
11220
Dmitry Torokhov73b35d02014-06-20 10:14:58 -070011221VMWARE BALLOON DRIVER
11222M: Xavier Deguillard <xdeguillard@vmware.com>
11223M: Philip Moltmann <moltmann@vmware.com>
11224M: "VMware, Inc." <pv-drivers@vmware.com>
11225L: linux-kernel@vger.kernel.org
11226S: Maintained
11227F: drivers/misc/vmw_balloon.c
11228
Thomas Hellstrom8b8be512015-04-14 10:06:38 -070011229VMWARE VMMOUSE SUBDRIVER
11230M: "VMware Graphics" <linux-graphics-maintainer@vmware.com>
11231M: "VMware, Inc." <pv-drivers@vmware.com>
11232L: linux-input@vger.kernel.org
11233S: Maintained
11234F: drivers/input/mouse/vmmouse.c
11235F: drivers/input/mouse/vmmouse.h
11236
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -070011237VMWARE VMXNET3 ETHERNET DRIVER
Shrikrishna Khare04e1b732015-08-24 14:24:11 -070011238M: Shrikrishna Khare <skhare@vmware.com>
Joe Perches65c8bb52009-11-11 14:26:12 -080011239M: "VMware, Inc." <pv-drivers@vmware.com>
11240L: netdev@vger.kernel.org
11241S: Maintained
11242F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -070011243
Alok Kataria851b1642009-10-13 14:51:05 -070011244VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -080011245M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -070011246M: VMware PV-Drivers <pv-drivers@vmware.com>
11247L: linux-scsi@vger.kernel.org
11248S: Maintained
11249F: drivers/scsi/vmw_pvscsi.c
11250F: drivers/scsi/vmw_pvscsi.h
11251
Liam Girdwoode53e86c2008-07-10 15:48:00 +010011252VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Axel Lin88dd75a2013-03-25 16:49:51 +080011253M: Liam Girdwood <lgirdwood@gmail.com>
Mark Brownb02e48f2013-04-12 11:39:57 +010011254M: Mark Brown <broonie@kernel.org>
Mark Brown5cdeb2c2014-08-16 12:31:11 +010011255L: linux-kernel@vger.kernel.org
Liam Girdwood1dd68f02009-02-02 21:43:31 +000011256W: http://www.slimlogic.co.uk/?p=48
Sachin Kamat6febb5a2013-07-04 12:08:50 +053011257T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +010011258S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070011259F: drivers/regulator/
11260F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +010011261
David Ahern081958e2015-08-25 10:26:22 -070011262VRF
11263M: David Ahern <dsa@cumulusnetworks.com>
11264M: Shrijeet Mukherjee <shm@cumulusnetworks.com>
11265L: netdev@vger.kernel.org
11266S: Maintained
11267F: drivers/net/vrf.c
11268F: include/net/vrf.h
David Ahern562d8972015-09-15 10:50:14 -060011269F: Documentation/networking/vrf.txt
David Ahern081958e2015-08-25 10:26:22 -070011270
Juerg Haefligerab413192006-09-24 20:54:04 +020011271VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011272M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +020011273L: lm-sensors@lm-sensors.org
11274S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011275F: Documentation/hwmon/vt1211
11276F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +020011277
Roger Lucas1de9e372005-11-26 20:20:05 +010011278VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011279M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +010011280L: lm-sensors@lm-sensors.org
11281S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011282F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +010011283
Tony Olech88095e72011-05-14 16:48:13 -040011284VUB300 USB to SDIO/SD/MMC bridge chip
11285M: Tony Olech <tony.olech@elandigitalsystems.com>
11286L: linux-mmc@vger.kernel.org
11287L: linux-usb@vger.kernel.org
11288S: Supported
11289F: drivers/mmc/host/vub300.c
11290
Linus Torvalds1da177e2005-04-16 15:20:36 -070011291W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -070011292M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011293S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011294F: Documentation/w1/
11295F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011296
Charles Spirakis13927072006-07-05 18:05:15 +020011297W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011298M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +020011299L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -040011300S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011301F: Documentation/hwmon/w83791d
11302F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +020011303
Rudolf Marek61db0112006-12-12 18:18:30 +010011304W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011305M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +010011306L: lm-sensors@lm-sensors.org
11307S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011308F: Documentation/hwmon/w83793
11309F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +010011310
Jean Delvaree3760b42010-10-28 20:31:49 +020011311W83795 HARDWARE MONITORING DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -070011312M: Jean Delvare <jdelvare@suse.com>
Jean Delvaree3760b42010-10-28 20:31:49 +020011313L: lm-sensors@lm-sensors.org
11314S: Maintained
11315F: drivers/hwmon/w83795.c
11316
Linus Torvalds1da177e2005-04-16 15:20:36 -070011317W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011318M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011319S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011320F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011321
Hans de Goedeb4e05922014-07-20 13:35:44 -070011322WACOM PROTOCOL 4 SERIAL TABLETS
11323M: Julian Squires <julian@cipht.net>
11324M: Hans de Goede <hdegoede@redhat.com>
11325L: linux-input@vger.kernel.org
11326S: Maintained
11327F: drivers/input/tablet/wacom_serial4.c
11328
Wim Van Sebroeck35277612006-01-15 21:21:14 +010011329WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -070011330M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +000011331L: linux-watchdog@vger.kernel.org
11332W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +010011333T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +010011334S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011335F: Documentation/watchdog/
11336F: drivers/watchdog/
11337F: include/linux/watchdog.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011338F: include/uapi/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +010011339
Linus Torvalds1da177e2005-04-16 15:20:36 -070011340WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011341M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011342L: linux-scsi@vger.kernel.org
11343S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011344F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070011345
David Herrmannb22e00f2011-09-06 13:50:40 +020011346WIIMOTE HID DRIVER
11347M: David Herrmann <dh.herrmann@googlemail.com>
11348L: linux-input@vger.kernel.org
11349S: Maintained
11350F: drivers/hid/hid-wiimote*
11351
David Härdemane258b802009-09-21 17:04:53 -070011352WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -070011353M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -070011354S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -070011355F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -070011356
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -080011357WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -070011358M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -080011359M: linux-wimax@intel.com
Joe Perches49e7d9d2015-04-15 16:17:31 -070011360L: wimax@linuxwimax.org (subscribers-only)
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -080011361S: Supported
11362W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -070011363F: Documentation/wimax/README.wimax
Joe Perches315987d2010-08-09 17:20:50 -070011364F: include/linux/wimax/debug.h
11365F: include/net/wimax.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011366F: include/uapi/linux/wimax.h
Joe Perches315987d2010-08-09 17:20:50 -070011367F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -080011368
Dmitry Torokhov5fc146802005-11-20 00:50:06 -050011369WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011370M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -050011371S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011372F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -050011373
Linus Torvalds1da177e2005-04-16 15:20:36 -070011374WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011375M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -070011376L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -030011377W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -070011378S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011379F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011380
Mark Brownfebf1df2008-04-02 00:51:09 -040011381WM97XX TOUCHSCREEN DRIVERS
Mark Brownd9f1f482013-06-01 19:31:15 +010011382M: Mark Brown <broonie@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -070011383M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -040011384L: linux-input@vger.kernel.org
Richard Fitzgeraldf0e03db2015-09-22 15:30:33 +010011385W: https://github.com/CirrusLogic/linux-drivers/wiki
Mark Brownfebf1df2008-04-02 00:51:09 -040011386S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070011387F: drivers/input/touchscreen/*wm97*
11388F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -040011389
Mark Brown055bcbc2010-08-13 14:18:12 +010011390WOLFSON MICROELECTRONICS DRIVERS
Mark Brownfef95162012-04-04 12:06:24 +010011391L: patches@opensource.wolfsonmicro.com
Richard Fitzgeraldf0e03db2015-09-22 15:30:33 +010011392T: git https://github.com/CirrusLogic/linux-drivers.git
11393W: https://github.com/CirrusLogic/linux-drivers/wiki
Mark Brownb75ea162009-07-02 16:43:08 +010011394S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -080011395F: Documentation/hwmon/wm83??
Mark Brownaf1c5382011-10-14 21:09:43 +010011396F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +010011397F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +010011398F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +010011399F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +010011400F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +010011401F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -050011402F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +090011403F: drivers/input/misc/wm831x-on.c
11404F: drivers/input/touchscreen/wm831x-ts.c
11405F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +010011406F: drivers/mfd/arizona*
11407F: drivers/mfd/wm*.c
Mark Brownb75ea162009-07-02 16:43:08 +010011408F: drivers/power/wm83*.c
11409F: drivers/rtc/rtc-wm83*.c
11410F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +010011411F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +010011412F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +010011413F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +010011414F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +010011415F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -080011416F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +090011417F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +010011418F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +010011419F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +010011420F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +010011421
Tejun Heo3e6cd7a2010-12-10 17:20:23 +010011422WORKQUEUE
11423M: Tejun Heo <tj@kernel.org>
Lai Jiangshanbadb7f52015-07-01 15:38:04 +080011424R: Lai Jiangshan <jiangshanlai@gmail.com>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +010011425T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
11426S: Maintained
11427F: include/linux/workqueue.h
11428F: kernel/workqueue.c
11429F: Documentation/workqueue.txt
11430
Linus Torvalds1da177e2005-04-16 15:20:36 -070011431X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +000011432M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011433L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +000011434S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -070011435F: Documentation/networking/x25*
11436F: include/net/x25*
11437F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011438
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011439X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -070011440M: Thomas Gleixner <tglx@linutronix.de>
11441M: Ingo Molnar <mingo@redhat.com>
11442M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -080011443M: x86@kernel.org
Ingo Molnar981c3a42014-01-21 10:59:20 +010011444L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +010011445T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011446S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011447F: Documentation/x86/
11448F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011449
Matthew Garrettd0944852010-02-11 10:40:13 -050011450X86 PLATFORM DRIVERS
Darren Harte181ba12014-08-27 23:36:06 -070011451M: Darren Hart <dvhart@infradead.org>
Matthew Garrettd0944852010-02-11 10:40:13 -050011452L: platform-driver-x86@vger.kernel.org
Darren Harte181ba12014-08-27 23:36:06 -070011453T: git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
Matthew Garrettd0944852010-02-11 10:40:13 -050011454S: Maintained
Joe Perches14430812013-09-11 14:23:50 -070011455F: drivers/platform/x86/
Matthew Garrettd0944852010-02-11 10:40:13 -050011456
Ingo Molnarc1f5c542011-06-18 22:51:13 +020011457X86 MCE INFRASTRUCTURE
11458M: Tony Luck <tony.luck@intel.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +010011459M: Borislav Petkov <bp@alien8.de>
Ingo Molnarc1f5c542011-06-18 22:51:13 +020011460L: linux-edac@vger.kernel.org
11461S: Maintained
11462F: arch/x86/kernel/cpu/mcheck/*
11463
Andy Lutomirskif0905c52014-12-12 16:25:47 -080011464X86 VDSO
11465M: Andy Lutomirski <luto@amacapital.net>
11466L: linux-kernel@vger.kernel.org
11467T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
11468S: Maintained
Ingo Molnard603c8e2015-06-03 18:05:44 +020011469F: arch/x86/entry/vdso/
Andy Lutomirskif0905c52014-12-12 16:25:47 -080011470
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -020011471XC2028/3028 TUNER DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -020011472M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -020011473L: linux-media@vger.kernel.org
11474W: http://linuxtv.org
11475T: git git://linuxtv.org/media_tree.git
11476S: Maintained
11477F: drivers/media/tuners/tuner-xc2028.*
11478
Ian Campbellc4468082011-04-27 15:26:46 -070011479XEN HYPERVISOR INTERFACE
Ian Campbellc4468082011-04-27 15:26:46 -070011480M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Konrad Rzeszutek Wilk3eeef8f2013-08-05 14:01:49 -040011481M: Boris Ostrovsky <boris.ostrovsky@oracle.com>
11482M: David Vrabel <david.vrabel@citrix.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040011483L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
David Vrabelea70ba32014-01-17 11:51:51 +000011484T: git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
Ian Campbellc4468082011-04-27 15:26:46 -070011485S: Supported
11486F: arch/x86/xen/
11487F: drivers/*/xen-*front.c
11488F: drivers/xen/
11489F: arch/x86/include/asm/xen/
11490F: include/xen/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011491F: include/uapi/xen/
Ian Campbellc4468082011-04-27 15:26:46 -070011492
Stefano Stabellini77bfb472012-09-14 13:35:15 +000011493XEN HYPERVISOR ARM
11494M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040011495L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
Stefano Stabellini77bfb472012-09-14 13:35:15 +000011496S: Supported
11497F: arch/arm/xen/
11498F: arch/arm/include/asm/xen/
11499
Stefano Stabellinib475e832013-06-04 16:13:23 +000011500XEN HYPERVISOR ARM64
11501M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040011502L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
Stefano Stabellinib475e832013-06-04 16:13:23 +000011503S: Supported
11504F: arch/arm64/xen/
11505F: arch/arm64/include/asm/xen/
11506
Ian Campbell9b57e1a2011-04-03 23:12:23 +000011507XEN NETWORK BACKEND DRIVER
11508M: Ian Campbell <ian.campbell@citrix.com>
Wei Liu83860402013-09-26 12:41:53 +010011509M: Wei Liu <wei.liu2@citrix.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040011510L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
Ian Campbell9b57e1a2011-04-03 23:12:23 +000011511L: netdev@vger.kernel.org
11512S: Supported
11513F: drivers/net/xen-netback/*
11514
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -040011515XEN PCI SUBSYSTEM
11516M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040011517L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +020011518S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -040011519F: arch/x86/pci/*xen*
11520F: drivers/pci/*xen*
11521
Konrad Rzeszutek Wilka2c5ae62014-06-27 10:10:45 -040011522XEN BLOCK SUBSYSTEM
11523M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Roger Pau Monnebcadb692015-01-23 17:14:29 +010011524M: Roger Pau Monné <roger.pau@citrix.com>
Konrad Rzeszutek Wilka2c5ae62014-06-27 10:10:45 -040011525L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
11526S: Supported
11527F: drivers/block/xen-blkback/*
11528F: drivers/block/xen*
11529
Juergen Gross15d03602014-08-28 06:44:13 +020011530XEN PVSCSI DRIVERS
11531M: Juergen Gross <jgross@suse.com>
11532L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
11533L: linux-scsi@vger.kernel.org
11534S: Supported
11535F: drivers/scsi/xen-scsifront.c
11536F: drivers/xen/xen-scsiback.c
11537F: include/xen/interface/io/vscsiif.h
11538
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -040011539XEN SWIOTLB SUBSYSTEM
11540M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040011541L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -040011542S: Supported
11543F: arch/x86/xen/*swiotlb*
11544F: drivers/xen/*swiotlb*
11545
Linus Torvalds1da177e2005-04-16 15:20:36 -070011546XFS FILESYSTEM
11547P: Silicon Graphics Inc
Namjae Jeon809625c2013-12-08 23:33:50 +090011548M: Dave Chinner <david@fromorbit.com>
Ben Myers18caa672012-04-12 17:05:05 +000011549M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +100011550L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -070011551W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -070011552T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070011553S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070011554F: Documentation/filesystems/xfs.txt
11555F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011556
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +000011557XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +000011558M: Anirudha Sarangi <anirudh@xilinx.com>
11559M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +000011560S: Maintained
11561F: drivers/net/ethernet/xilinx/xilinx_axienet*
11562
Peter Korsgaard238b8722006-12-06 20:35:17 -080011563XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011564M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -080011565L: linux-serial@vger.kernel.org
11566S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -080011567F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -080011568
Laurent Pinchartdf330512013-05-15 11:36:19 -030011569XILINX VIDEO IP CORES
11570M: Hyun Kwon <hyun.kwon@xilinx.com>
11571M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11572L: linux-media@vger.kernel.org
11573T: git git://linuxtv.org/media_tree.git
11574S: Supported
11575F: Documentation/devicetree/bindings/media/xilinx/
11576F: drivers/media/platform/xilinx/
Laurent Pincharta5562f62013-05-15 11:36:56 -030011577F: include/uapi/linux/xilinx-v4l2-controls.h
Laurent Pinchartdf330512013-05-15 11:36:19 -030011578
Eli Billauer74316942014-09-09 09:38:01 +030011579XILLYBUS DRIVER
11580M: Eli Billauer <eli.billauer@gmail.com>
11581L: linux-kernel@vger.kernel.org
11582S: Supported
11583F: drivers/char/xillybus/
11584
Max Filippovf620e4b2014-03-12 21:55:26 +040011585XTENSA XTFPGA PLATFORM SUPPORT
11586M: Max Filippov <jcmvbkbc@gmail.com>
11587L: linux-xtensa@linux-xtensa.org
11588S: Maintained
11589F: drivers/spi/spi-xtensa-xtfpga.c
Max Filippov57b70682014-12-26 20:19:38 +030011590F: sound/soc/xtensa/xtfpga-i2s.c
Max Filippovf620e4b2014-03-12 21:55:26 +040011591
Linus Torvalds1da177e2005-04-16 15:20:36 -070011592YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -070011593M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011594L: linux-hams@vger.kernel.org
11595S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011596F: drivers/net/hamradio/yam*
11597F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011598
Henkaf64a5e2005-10-12 15:02:56 +020011599YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011600M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +020011601L: usbb2k-api-dev@nongnu.org
11602S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011603F: Documentation/input/yealink.txt
11604F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +020011605
Linus Torvalds1da177e2005-04-16 15:20:36 -070011606Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -070011607M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011608W: http://yaina.de/jreuter/
11609W: http://www.qsl.net/dl1bke/
11610L: linux-hams@vger.kernel.org
11611S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011612F: Documentation/networking/z8530drv.txt
11613F: drivers/net/hamradio/*scc.c
11614F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011615
Seth Jennings0cf31ec2013-07-08 16:00:05 -070011616ZBUD COMPRESSED PAGE ALLOCATOR
Seth Jennings0e3b7e52014-05-06 12:50:02 -070011617M: Seth Jennings <sjennings@variantweb.net>
Seth Jennings0cf31ec2013-07-08 16:00:05 -070011618L: linux-mm@kvack.org
11619S: Maintained
11620F: mm/zbud.c
11621F: include/linux/zbud.h
11622
Daniel Drake7c0c3af2006-07-16 13:55:17 +010011623ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011624M: Daniel Drake <dsd@gentoo.org>
11625M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +010011626W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -070011627L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +010011628L: zd1211-devs@lists.sourceforge.net (subscribers-only)
11629S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011630F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +010011631
Dan Streetman20263022015-06-30 14:59:57 -070011632ZPOOL COMPRESSED PAGE STORAGE API
11633M: Dan Streetman <ddstreet@ieee.org>
11634L: linux-mm@kvack.org
11635S: Maintained
11636F: mm/zpool.c
11637F: include/linux/zpool.h
11638
Linus Torvalds1da177e2005-04-16 15:20:36 -070011639ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -070011640L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -030011641L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070011642W: http://mjpeg.sourceforge.net/driver-zoran/
Joe Perchescea83212014-03-03 15:38:38 -080011643T: hg http://linuxtv.org/hg/v4l-dvb
Trent Piephof63145e2009-01-24 20:52:41 -030011644S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -030011645F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011646
Minchan Kim6920f2c2014-01-30 15:45:56 -080011647ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
11648M: Minchan Kim <minchan@kernel.org>
11649M: Nitin Gupta <ngupta@vflare.org>
Minchan Kim74f30372015-05-05 16:23:28 -070011650R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
Minchan Kim6920f2c2014-01-30 15:45:56 -080011651L: linux-kernel@vger.kernel.org
11652S: Maintained
11653F: drivers/block/zram/
11654F: Documentation/blockdev/zram.txt
11655
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -070011656ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011657M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -070011658S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -080011659F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -070011660
Minchan Kimeae70d02014-01-30 15:45:57 -080011661ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
11662M: Minchan Kim <minchan@kernel.org>
11663M: Nitin Gupta <ngupta@vflare.org>
11664L: linux-mm@kvack.org
11665S: Maintained
11666F: mm/zsmalloc.c
11667F: include/linux/zsmalloc.h
Minchan Kimd02be502015-04-15 16:15:46 -070011668F: Documentation/vm/zsmalloc.txt
Minchan Kimeae70d02014-01-30 15:45:57 -080011669
Seth Jennings0cf31ec2013-07-08 16:00:05 -070011670ZSWAP COMPRESSED SWAP CACHING
Seth Jennings0e3b7e52014-05-06 12:50:02 -070011671M: Seth Jennings <sjennings@variantweb.net>
Seth Jennings0cf31ec2013-07-08 16:00:05 -070011672L: linux-mm@kvack.org
11673S: Maintained
11674F: mm/zswap.c
11675
Linus Torvalds1da177e2005-04-16 15:20:36 -070011676THE REST
Joe Perches8b58be82009-07-29 15:04:30 -070011677M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -070011678L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -080011679Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -040011680T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070011681S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -070011682F: *
11683F: */