blob: 27b27c0a4a115d56fa9198a10494b3fd6c495e2f [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 Garrettd09448532010-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 Garrettd09448532010-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 Garrettd09448532010-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 Ripard5c6dcd72015-10-07 18:39:40 +0100897ARM/Allwinner sunXi SoC support
Maxime Ripard1b106692012-11-15 21:51:26 +0100898M: Maxime Ripard <maxime.ripard@free-electrons.com>
Maxime Ripard5c6dcd72015-10-07 18:39:40 +0100899M: Chen-Yu Tsai <wens@csie.org>
Maxime Ripard1b106692012-11-15 21:51:26 +0100900L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
901S: Maintained
Maxime Ripard5c6dcd72015-10-07 18:39:40 +0100902N: sun[x456789]i
Maxime Ripard60b0f382013-12-30 16:03:33 +0100903
904ARM/Allwinner SoC Clock Support
905M: Emilio López <emilio@elopez.com.ar>
906S: Maintained
907F: drivers/clk/sunxi/
Maxime Ripard1b106692012-11-15 21:51:26 +0100908
Carlo Caione7c1e3872014-09-12 20:18:31 +0200909ARM/Amlogic MesonX SoC support
910M: Carlo Caione <carlo@caione.org>
911L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
912S: Maintained
Beniamino Galvani12ddbad2014-11-18 17:22:34 -0300913F: drivers/media/rc/meson-ir.c
Carlo Caione7c1e3872014-09-12 20:18:31 +0200914N: meson[x68]
915
Tsahee Zidenbergeff506f2015-03-12 13:53:25 +0200916ARM/Annapurna Labs ALPINE ARCHITECTURE
917M: Tsahee Zidenberg <tsahee@annapurnalabs.com>
918S: Maintained
919F: arch/arm/mach-alpine/
920
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800921ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800922M: Nicolas Ferre <nicolas.ferre@atmel.com>
Nicolas Ferred68b35f2015-04-29 11:57:18 +0200923M: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800924M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700925L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800926W: http://www.linux4sam.org
927S: Supported
928F: arch/arm/mach-at91/
Alexandre Bellonif0a0a582014-11-07 21:58:21 +0100929F: include/soc/at91/
Mark Brown70e389c2013-10-16 12:04:07 +0100930F: arch/arm/boot/dts/at91*.dts
931F: arch/arm/boot/dts/at91*.dtsi
932F: arch/arm/boot/dts/sama*.dts
933F: arch/arm/boot/dts/sama*.dtsi
Alexandre Belloni5f58c972015-01-12 19:42:14 +0100934F: arch/arm/include/debug/at91.S
Andrew Victord4a89c72006-12-04 13:56:21 +0100935
Boris BREZILLON6e05dd42014-05-27 13:39:28 +0200936ARM/ATMEL AT91 Clock Support
937M: Boris Brezillon <boris.brezillon@free-electrons.com>
938S: Maintained
939F: drivers/clk/at91
940
Rob Herring986cf2e2011-06-22 11:28:53 -0500941ARM/CALXEDA HIGHBANK ARCHITECTURE
Rob Herring5d3ad8a2013-12-03 10:20:16 -0600942M: Rob Herring <robh@kernel.org>
Rob Herring986cf2e2011-06-22 11:28:53 -0500943L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
944S: Maintained
945F: arch/arm/mach-highbank/
946
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300947ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
Krzysztof Hałasa5529c2c2014-09-30 10:32:58 +0200948M: Krzysztof Halasa <khalasa@piap.pl>
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300949S: Maintained
950F: arch/arm/mach-cns3xxx/
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300951
Sunil Goutham4863dea2015-05-26 19:20:15 -0700952ARM/CAVIUM THUNDER NETWORK DRIVER
953M: Sunil Goutham <sgoutham@cavium.com>
954M: Robert Richter <rric@kernel.org>
955L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
956S: Supported
Aleksey Makarov322e5cc2015-08-30 12:29:09 +0300957F: drivers/net/ethernet/cavium/thunder/
Sunil Goutham4863dea2015-05-26 19:20:15 -0700958
Alexander Shiyan386ab512012-11-17 17:57:24 +0400959ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
960M: Alexander Shiyan <shc_work@mail.ru>
961L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
962S: Odd Fixes
Alexander Shiyanb8ba3872014-02-15 12:05:33 +0400963N: clps711x
Alexander Shiyan386ab512012-11-17 17:57:24 +0400964
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800965ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100966M: Hartley Sweeten <hsweeten@visionengravers.com>
Ryan Mallon1c5454e2011-06-15 14:45:36 +1000967M: Ryan Mallon <rmallon@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700968L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800969S: Maintained
Hartley Sweetend19d3662009-07-10 23:02:59 +0100970F: arch/arm/mach-ep93xx/
971F: arch/arm/mach-ep93xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800972
973ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700974M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700975L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800976S: Maintained
977
Russell Kingd4275352009-04-16 14:05:27 +0100978ARM/CLKDEV SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700979M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700980L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches37417042012-03-23 15:01:58 -0700981S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +0100982F: arch/arm/include/asm/clkdev.h
Joe Perches4fa26512011-03-22 16:34:31 -0700983F: drivers/clk/clkdev.c
Russell Kingd4275352009-04-16 14:05:27 +0100984
Mike Rapoportd48134e2008-08-20 09:03:26 +0100985ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700986M: Mike Rapoport <mike@compulab.co.il>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700987L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100988S: Maintained
989
Hubert Feurstein94150092009-10-07 08:36:07 +0100990ARM/CONTEC MICRO9 MACHINE SUPPORT
991M: Hubert Feurstein <hubert.feurstein@contec.at>
992S: Maintained
993F: arch/arm/mach-ep93xx/micro9.c
994
Pratik Patela06ae862014-11-03 11:07:35 -0700995ARM/CORESIGHT FRAMEWORK AND DRIVERS
996M: Mathieu Poirier <mathieu.poirier@linaro.org>
997L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
998S: Maintained
Mathieu Poirier01081f52015-03-30 14:13:41 -0600999F: drivers/hwtracing/coresight/*
Pratik Patela06ae862014-11-03 11:07:35 -07001000F: Documentation/trace/coresight.txt
1001F: Documentation/devicetree/bindings/arm/coresight.txt
Mathieu Poirier7a25ec82014-11-10 14:06:42 -07001002F: Documentation/ABI/testing/sysfs-bus-coresight-devices-*
Pratik Patela06ae862014-11-03 11:07:35 -07001003
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004ARM/CORGI MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001005M: Richard Purdie <rpurdie@rpsys.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006S: Maintained
1007
Paulius Zaleckas881a95f2009-03-26 10:06:27 +02001008ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
Hans Ulli Kroll162500b2010-05-13 06:43:59 +01001009M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001010L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Krollb60e23b2015-05-07 19:29:03 +02001011T: git git://github.com/ulli-kroll/linux.git
Hans Ulli Kroll162500b2010-05-13 06:43:59 +01001012S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +03001013F: arch/arm/mach-gemini/
Hans Ulli Kroll98a9bb52015-05-20 17:49:31 +02001014F: drivers/rtc/rtc-gemini.c
Paulius Zaleckas881a95f2009-03-26 10:06:27 +02001015
Barry Songa990cbd2011-07-12 21:44:10 +08001016ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
Barry Song5abf58b2013-09-29 22:45:10 +08001017M: Barry Song <baohua@kernel.org>
Barry Songa990cbd2011-07-12 21:44:10 +08001018L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Barry Song85529d12013-06-17 09:44:26 +08001019T: git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
Barry Songa990cbd2011-07-12 21:44:10 +08001020S: Maintained
1021F: arch/arm/mach-prima2/
Joe Perches4a9c44f2014-08-08 14:25:03 -07001022F: drivers/clk/sirf/
Barry Song05f30e82013-09-29 22:45:09 +08001023F: drivers/clocksource/timer-prima2.c
Barry Song5833ac92015-01-12 00:04:43 +08001024F: drivers/clocksource/timer-atlas7.c
Barry Songf8505ef2014-01-03 11:24:13 +08001025N: [^a-z]sirf
Barry Songa990cbd2011-07-12 21:44:10 +08001026
Baruch Siachc9d862c2015-04-28 13:59:43 +03001027ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1028M: Baruch Siach <baruch@tkos.co.il>
1029L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1030S: Maintained
Baruch Siachcde137a2015-07-06 14:41:46 +03001031F: arch/arm/boot/dts/cx92755*
Baruch Siachc9d862c2015-04-28 13:59:43 +03001032N: digicolor
1033
Russell Kingd4275352009-04-16 14:05:27 +01001034ARM/EBSA110 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001035M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001036L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001037W: http://www.arm.linux.org.uk/
1038S: Maintained
1039F: arch/arm/mach-ebsa110/
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07001040F: drivers/net/ethernet/amd/am79c961a.*
Russell Kingd4275352009-04-16 14:05:27 +01001041
Uwe Kleine-König4721f3c2013-12-20 21:21:59 +01001042ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1043M: Uwe Kleine-König <kernel@pengutronix.de>
1044L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1045S: Maintained
1046N: efm32
1047
Russell Kinga9da4f72008-07-12 21:42:04 +01001048ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
Joe Perches8b58be82009-07-29 15:04:30 -07001049M: Daniel Ribeiro <drwyrm@gmail.com>
1050M: Stefan Schmidt <stefan@openezx.org>
1051M: Harald Welte <laforge@openezx.org>
Paul Bolled66f18862011-04-06 22:34:00 +02001052L: openezx-devel@lists.openezx.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +01001053W: http://www.openezx.org/
1054S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +02001055T: topgit git://git.openezx.org/openezx.git
1056F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +01001057
Paulius Zaleckas6a915af2009-03-25 13:10:20 +02001058ARM/FARADAY FA526 PORT
Hans Ulli Kroll162500b2010-05-13 06:43:59 +01001059M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001060L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +01001061S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -07001062T: git git://git.berlios.de/gemini-board
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +03001063F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +02001064
Russell Kingd4275352009-04-16 14:05:27 +01001065ARM/FOOTBRIDGE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001066M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001067L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001068W: http://www.arm.linux.org.uk/
1069S: Maintained
1070F: arch/arm/include/asm/hardware/dec21285.h
1071F: arch/arm/mach-footbridge/
1072
Sascha Hauer86183a52008-07-24 23:50:35 +02001073ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
Shawn Guo7609ea22015-06-03 19:34:10 +08001074M: Shawn Guo <shawnguo@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07001075M: Sascha Hauer <kernel@pengutronix.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001076L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer86183a52008-07-24 23:50:35 +02001077S: Maintained
Shawn Guof1c12832014-03-11 22:57:53 +08001078T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
Shawn Guo2a82f952013-12-10 22:19:21 +08001079F: arch/arm/mach-imx/
Shawn Guoce515a62014-07-02 15:37:10 +08001080F: arch/arm/mach-mxs/
Shawn Guo2a82f952013-12-10 22:19:21 +08001081F: arch/arm/boot/dts/imx*
1082F: arch/arm/configs/imx*_defconfig
Shawn Guocf209682015-04-26 21:58:12 +08001083F: drivers/clk/imx/
1084F: include/soc/imx/
Shawn Guo8bcb9762011-10-07 22:24:18 +08001085
Stefan Agner142109d2015-03-02 00:09:02 +01001086ARM/FREESCALE VYBRID ARM ARCHITECTURE
Shawn Guo7609ea22015-06-03 19:34:10 +08001087M: Shawn Guo <shawnguo@kernel.org>
Stefan Agner142109d2015-03-02 00:09:02 +01001088M: Sascha Hauer <kernel@pengutronix.de>
1089R: Stefan Agner <stefan@agner.ch>
1090L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1091S: Maintained
1092T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1093F: arch/arm/mach-imx/*vf610*
1094F: arch/arm/boot/dts/vf*
1095
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001096ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001097M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001098L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001099S: Maintained
1100
Jaya Kumar90b8fc32008-03-15 05:11:07 +01001101ARM/GUMSTIX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001102M: Steve Sakoman <sakoman@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001103L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jaya Kumar90b8fc32008-03-15 05:11:07 +01001104S: Maintained
1105
Philipp Zabelef47d5f2009-05-28 07:07:47 +02001106ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001107M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel12a93f32012-02-26 12:40:19 +01001108M: Paul Parsons <lost.distance@yahoo.com>
1109L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Philipp Zabelef47d5f2009-05-28 07:07:47 +02001110S: Maintained
1111F: arch/arm/mach-pxa/hx4700.c
1112F: arch/arm/mach-pxa/include/mach/hx4700.h
Philipp Zabel12a93f32012-02-26 12:40:19 +01001113F: sound/soc/pxa/hx4700.c
Philipp Zabelef47d5f2009-05-28 07:07:47 +02001114
Wei Xu4dfad062014-07-07 10:41:53 +08001115ARM/HISILICON SOC SUPPORT
1116M: Wei Xu <xuwei5@hisilicon.com>
1117L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1118W: http://www.hisilicon.com
1119S: Supported
1120T: git git://github.com/hisilicon/linux-hisi.git
1121F: arch/arm/mach-hisi/
1122
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +01001123ARM/HP JORNADA 7XX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001124M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02001125W: www.jlime.com
1126S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07001127T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1128F: arch/arm/mach-sa1100/jornada720.c
1129F: arch/arm/mach-sa1100/include/mach/jornada720.h
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +01001130
Javier Martinez Canillas5e767ab2012-10-08 10:47:34 +02001131ARM/IGEP MACHINE SUPPORT
1132M: Enric Balletbo i Serra <eballetbo@gmail.com>
1133M: Javier Martinez Canillas <javier@dowhile0.org>
1134L: linux-omap@vger.kernel.org
1135L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1136S: Maintained
Javier Martinez Canillas06ff74f2013-10-18 17:37:53 +02001137F: arch/arm/boot/dts/omap3-igep*
Javier Martinez Canillas5e767ab2012-10-08 10:47:34 +02001138
Marek Vasut403d2972010-05-22 00:29:39 +02001139ARM/INCOME PXA270 SUPPORT
1140M: Marek Vasut <marek.vasut@gmail.com>
1141L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1142S: Maintained
Joe Perchesec154082010-10-26 14:22:59 -07001143F: arch/arm/mach-pxa/colibri-pxa270-income.c
Marek Vasut403d2972010-05-22 00:29:39 +02001144
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001145ARM/INTEL IOP32X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001146M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001147L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -07001148S: Maintained
Dan Williamse2bdb172007-01-02 18:32:37 +01001149
1150ARM/INTEL IOP33X ARM ARCHITECTURE
Joe Perchesefc03ec2009-09-21 17:04:27 -07001151L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williams08223d82014-08-19 06:07:56 -07001152S: Orphan
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001153
1154ARM/INTEL IOP13XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001155M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001156L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -07001157S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001158
1159ARM/INTEL IQ81342EX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001160M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001161L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -07001162S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001163
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001164ARM/INTEL IXDP2850 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001165M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001166L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001167S: Maintained
1168
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +02001169ARM/INTEL IXP4XX ARM ARCHITECTURE
1170M: Imre Kaloz <kaloz@openwrt.org>
Krzysztof Hałasa5529c2c2014-09-30 10:32:58 +02001171M: Krzysztof Halasa <khalasa@piap.pl>
Russell Kingbaea7b92009-09-24 21:22:33 +01001172L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +02001173S: Maintained
1174F: arch/arm/mach-ixp4xx/
1175
Joe Perches838553c2010-10-26 14:22:59 -07001176ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
Jonathan Cameron7f49a7f2009-10-15 16:39:30 +01001177M: Jonathan Cameron <jic23@cam.ac.uk>
1178L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1179S: Maintained
1180F: arch/arm/mach-pxa/stargate2.c
1181F: drivers/pcmcia/pxa2xx_stargate2.c
1182
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001183ARM/INTEL XSC3 (MANZANO) ARM CORE
Joe Perches8b58be82009-07-29 15:04:30 -07001184M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001185L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -07001186S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001187
1188ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001189M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001190L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001191S: Maintained
1192
Santosh Shilimkar1154f852013-08-05 14:11:14 -04001193ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
Santosh Shilimkar97215802014-10-13 14:16:28 -04001194M: Santosh Shilimkar <ssantosh@kernel.org>
Santosh Shilimkar1154f852013-08-05 14:11:14 -04001195L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1196S: Maintained
1197F: arch/arm/mach-keystone/
Santosh Shilimkar317929c2013-11-23 17:31:27 -05001198T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
Santosh Shilimkar1154f852013-08-05 14:11:14 -04001199
Santosh Shilimkarbc6aa562014-06-22 16:06:22 -04001200ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
Santosh Shilimkar97215802014-10-13 14:16:28 -04001201M: Santosh Shilimkar <ssantosh@kernel.org>
Santosh Shilimkarbc6aa562014-06-22 16:06:22 -04001202L: linux-kernel@vger.kernel.org
1203S: Maintained
1204F: drivers/clk/keystone/
1205
1206ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
Santosh Shilimkar97215802014-10-13 14:16:28 -04001207M: Santosh Shilimkar <ssantosh@kernel.org>
Santosh Shilimkarbc6aa562014-06-22 16:06:22 -04001208L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1209L: linux-kernel@vger.kernel.org
1210S: Maintained
1211F: drivers/clocksource/timer-keystone.c
1212
1213ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
Santosh Shilimkar97215802014-10-13 14:16:28 -04001214M: Santosh Shilimkar <ssantosh@kernel.org>
Santosh Shilimkarbc6aa562014-06-22 16:06:22 -04001215L: linux-kernel@vger.kernel.org
1216S: Maintained
1217F: drivers/power/reset/keystone-reset.c
1218
1219ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
Santosh Shilimkar97215802014-10-13 14:16:28 -04001220M: Santosh Shilimkar <ssantosh@kernel.org>
Santosh Shilimkarbc6aa562014-06-22 16:06:22 -04001221L: linux-kernel@vger.kernel.org
1222S: Maintained
1223F: drivers/memory/*emif*
1224
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001225ARM/LOGICPD PXA270 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001226M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001227L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001228S: Maintained
1229
Joachim Eastwood31438752015-05-19 20:59:21 +02001230ARM/LPC18XX ARCHITECTURE
1231M: Joachim Eastwood <manabian@gmail.com>
1232L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1233S: Maintained
1234N: lpc18xx
1235
Philipp Zabel3b8861712008-07-09 21:27:15 +01001236ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001237M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +01001238S: Maintained
1239
Gregory CLEMENT31c17ac2015-05-15 14:25:43 +02001240ARM/Marvell Kirkwood and Armada 370, 375, 38x, XP SOC support
Thomas Petazzoni75f41272012-06-01 18:50:52 +02001241M: Jason Cooper <jason@lakedaemon.net>
1242M: Andrew Lunn <andrew@lunn.ch>
1243M: Gregory Clement <gregory.clement@free-electrons.com>
Jason Cooperdcb71502013-10-14 18:32:21 +00001244M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Thomas Petazzoni75f41272012-06-01 18:50:52 +02001245L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1246S: Maintained
1247F: arch/arm/mach-mvebu/
Joe Perches59ec9672015-03-25 15:55:17 -07001248F: drivers/rtc/rtc-armada38x.c
Gregory CLEMENT31c17ac2015-05-15 14:25:43 +02001249F: arch/arm/boot/dts/armada*
1250F: arch/arm/boot/dts/kirkwood*
1251
Thomas Petazzoni75f41272012-06-01 18:50:52 +02001252
Sebastian Hesselbarth40f49782013-10-08 12:52:30 +02001253ARM/Marvell Berlin SoC support
1254M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1255L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1256S: Maintained
1257F: arch/arm/mach-berlin/
Gregory CLEMENT31c17ac2015-05-15 14:25:43 +02001258F: arch/arm/boot/dts/berlin*
1259
Sebastian Hesselbarth40f49782013-10-08 12:52:30 +02001260
Andrew Lunn4cfab57e2014-07-16 22:32:51 +02001261ARM/Marvell Dove/MV78xx0/Orion SOC support
Nicolas Pitre4f1312b2012-04-30 13:44:48 -04001262M: Jason Cooper <jason@lakedaemon.net>
1263M: Andrew Lunn <andrew@lunn.ch>
Jason Cooperdcb71502013-10-14 18:32:21 +00001264M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Gregory CLEMENTbfda4032015-03-13 14:41:45 +01001265M: Gregory Clement <gregory.clement@free-electrons.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001266L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Pitre4f1312b2012-04-30 13:44:48 -04001267S: Maintained
1268F: arch/arm/mach-dove/
Nicolas Pitre54a246f2009-08-11 23:28:51 -04001269F: arch/arm/mach-mv78xx0/
1270F: arch/arm/mach-orion5x/
1271F: arch/arm/plat-orion/
Gregory CLEMENT31c17ac2015-05-15 14:25:43 +02001272F: arch/arm/boot/dts/dove*
1273F: arch/arm/boot/dts/orion5x*
1274
Nicolas Pitre54a246f2009-08-11 23:28:51 -04001275
Alexander Clouterd69ac132011-04-14 15:22:02 -07001276ARM/Orion SoC/Technologic Systems TS-78xx platform support
1277M: Alexander Clouter <alex@digriz.org.uk>
1278L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1279W: http://www.digriz.org.uk/ts78xx/kernel
1280S: Maintained
1281F: arch/arm/mach-orion5x/ts78xx-*
1282
Eddie Huang607b8fc2015-05-06 15:23:42 +08001283ARM/Mediatek RTC DRIVER
1284M: Eddie Huang <eddie.huang@mediatek.com>
1285L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1286L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1287S: Maintained
1288F: drivers/rtc/rtc-mt6397.c
1289
Matthias Bruggere54951c2014-09-26 11:45:55 +02001290ARM/Mediatek SoC support
1291M: Matthias Brugger <matthias.bgg@gmail.com>
1292L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Matthias Brugger17b199d2015-04-16 12:49:21 -07001293L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
Matthias Bruggere54951c2014-09-26 11:45:55 +02001294S: Maintained
1295F: arch/arm/boot/dts/mt6*
1296F: arch/arm/boot/dts/mt8*
1297F: arch/arm/mach-mediatek/
1298N: mtk
1299K: mediatek
1300
Arnd Bergmannadcb0792012-09-07 12:21:56 +00001301ARM/MICREL KS8695 ARCHITECTURE
1302M: Greg Ungerer <gerg@uclinux.org>
1303L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches14430812013-09-11 14:23:50 -07001304F: arch/arm/mach-ks8695/
Arnd Bergmannadcb0792012-09-07 12:21:56 +00001305S: Odd Fixes
1306
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +02001307ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001308M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001309L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +02001310F: arch/arm/mach-pxa/mioa701.c
1311S: Maintained
1312
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +01001313ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001314M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +01001315S: Maintained
1316
Alessandro Rubinie0ee9852009-12-02 14:01:03 +01001317ARM/NOMADIK ARCHITECTURE
Joe Perches28b8e8d2010-03-23 13:35:20 -07001318M: Alessandro Rubini <rubini@unipv.it>
Linus Walleije4651a92012-08-06 09:52:52 +02001319M: Linus Walleij <linus.walleij@linaro.org>
Joe Perches28b8e8d2010-03-23 13:35:20 -07001320L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1321S: Maintained
1322F: arch/arm/mach-nomadik/
Joe Perchesecc265f2014-08-08 14:26:20 -07001323F: drivers/pinctrl/nomadik/
Linus Walleij87572882010-12-22 09:18:29 +01001324F: drivers/i2c/busses/i2c-nomadik.c
Linus Walleije4651a92012-08-06 09:52:52 +02001325T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
Alessandro Rubinie0ee9852009-12-02 14:01:03 +01001326
Andy Green9d762952009-05-19 06:41:42 -03001327ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001328M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -03001329L: openmoko-kernel@lists.openmoko.org (subscribers-only)
1330W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
1331S: Supported
1332
Dirk Opfer8459c152005-11-06 14:27:52 +00001333ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001334M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1335M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +00001336S: Maintained
1337
Marek Vasut5d783a22009-07-16 13:26:48 +02001338ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
Joe Perches933d35f2009-10-01 15:43:59 -07001339M: Marek Vasut <marek.vasut@gmail.com>
Marek Vasut75280782009-08-22 00:49:53 +02001340L: linux-arm-kernel@lists.infradead.org
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001341W: http://hackndev.com
1342S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001343F: arch/arm/mach-pxa/include/mach/palmtx.h
1344F: arch/arm/mach-pxa/palmtx.c
1345F: arch/arm/mach-pxa/include/mach/palmt5.h
1346F: arch/arm/mach-pxa/palmt5.c
1347F: arch/arm/mach-pxa/include/mach/palmld.h
1348F: arch/arm/mach-pxa/palmld.c
1349F: arch/arm/mach-pxa/include/mach/palmte2.h
1350F: arch/arm/mach-pxa/palmte2.c
1351F: arch/arm/mach-pxa/include/mach/palmtc.h
1352F: arch/arm/mach-pxa/palmtc.c
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001353
Joe Perchesb57fe922009-12-14 18:00:52 -08001354ARM/PALM TREO SUPPORT
Jiri Slabyd8130622015-07-17 16:23:20 -07001355M: Tomas Cech <sleep_walker@suse.com>
Marek Vasut75280782009-08-22 00:49:53 +02001356L: linux-arm-kernel@lists.infradead.org
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001357W: http://hackndev.com
1358S: Maintained
Joe Perchesb57fe922009-12-14 18:00:52 -08001359F: arch/arm/mach-pxa/include/mach/palmtreo.h
1360F: arch/arm/mach-pxa/palmtreo.c
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001361
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001362ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001363M: Sergey Lapin <slapin@ossfans.org>
Marek Vasut75280782009-08-22 00:49:53 +02001364L: linux-arm-kernel@lists.infradead.org
Joe Perches7d2c86b2009-04-07 20:59:01 -07001365W: http://hackndev.com
1366S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001367F: arch/arm/mach-pxa/include/mach/palmz72.h
1368F: arch/arm/mach-pxa/palmz72.c
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001369
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001371M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1373S: Maintained
1374
1375ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001376M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001377L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378W: http://www.arm.linux.org.uk/
1379S: Maintained
1380
Kumar Gala8fc1b0f2014-01-21 17:14:10 -06001381ARM/QUALCOMM SUPPORT
1382M: Kumar Gala <galak@codeaurora.org>
Andy Grossf5d3af92015-01-21 22:39:24 -06001383M: Andy Gross <agross@codeaurora.org>
Kumar Gala8fc1b0f2014-01-21 17:14:10 -06001384M: David Brown <davidb@codeaurora.org>
1385L: linux-arm-msm@vger.kernel.org
Andy Grossf5d3af92015-01-21 22:39:24 -06001386L: linux-soc@vger.kernel.org
Kumar Gala8fc1b0f2014-01-21 17:14:10 -06001387S: Maintained
1388F: arch/arm/mach-qcom/
Andy Grossf5d3af92015-01-21 22:39:24 -06001389F: drivers/soc/qcom/
Stephen Boydc0c89fa2015-03-13 11:09:34 -07001390F: drivers/tty/serial/msm_serial.h
1391F: drivers/tty/serial/msm_serial.c
1392F: drivers/*/pm8???-*
1393F: drivers/mfd/ssbi.c
Kumar Gala916f7432015-02-26 15:49:09 -06001394F: drivers/firmware/qcom_scm.c
Kumar Gala8fc1b0f2014-01-21 17:14:10 -06001395T: git git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git
1396
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001397ARM/RADISYS ENP2611 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001398M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001399L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001400S: Maintained
1401
Russell Kingd4275352009-04-16 14:05:27 +01001402ARM/RISCPC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001403M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001404L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001405W: http://www.arm.linux.org.uk/
1406S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01001407F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1408F: arch/arm/include/asm/hardware/ioc.h
1409F: arch/arm/include/asm/hardware/iomd.h
1410F: arch/arm/include/asm/hardware/memc.h
1411F: arch/arm/mach-rpc/
Jeff Kirsher1a6422f2011-11-04 12:58:41 +00001412F: drivers/net/ethernet/8390/etherh.c
Jeff Kirsher9e13fbf2011-07-15 03:18:21 -07001413F: drivers/net/ethernet/i825xx/ether1*
1414F: drivers/net/ethernet/seeq/ether3*
Russell Kingd4275352009-04-16 14:05:27 +01001415F: drivers/scsi/arm/
1416
Heiko Stuebner08ddbb02013-10-14 23:19:58 +02001417ARM/Rockchip SoC support
1418M: Heiko Stuebner <heiko@sntech.de>
1419L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Heiko Stuebner00250b5292014-08-20 12:31:03 +02001420L: linux-rockchip@lists.infradead.org
Heiko Stuebner08ddbb02013-10-14 23:19:58 +02001421S: Maintained
Heiko Stübner541555e2014-08-27 00:05:50 +02001422F: arch/arm/boot/dts/rk3*
Heiko Stuebner08ddbb02013-10-14 23:19:58 +02001423F: arch/arm/mach-rockchip/
Heiko Stübner541555e2014-08-27 00:05:50 +02001424F: drivers/clk/rockchip/
1425F: drivers/i2c/busses/i2c-rk3x.c
Heiko Stuebner08ddbb02013-10-14 23:19:58 +02001426F: drivers/*/*rockchip*
Heiko Stübner541555e2014-08-27 00:05:50 +02001427F: drivers/*/*/*rockchip*
1428F: sound/soc/rockchip/
Heiko Stuebnerb4331b42015-03-14 19:32:06 +01001429N: rockchip
Heiko Stuebner08ddbb02013-10-14 23:19:58 +02001430
Kukjin Kim5bfb9372014-11-14 16:54:57 +09001431ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1432M: Kukjin Kim <kgene@kernel.org>
Krzysztof Kozlowskie8f98452015-05-14 21:15:20 +09001433M: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001434L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Mark Brown7a549d72011-12-02 13:52:12 +09001435L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +01001436S: Maintained
Mark Brown6f0589c2013-10-08 07:18:21 +09001437F: arch/arm/boot/dts/s3c*
1438F: arch/arm/boot/dts/exynos*
Krzysztof Kozlowskid97236e2015-06-06 19:02:19 +09001439F: arch/arm64/boot/dts/exynos/
Kukjin Kim482ce512010-06-29 15:05:26 -07001440F: arch/arm/plat-samsung/
Heiko Stuebner769bbb62011-12-02 13:51:56 +09001441F: arch/arm/mach-s3c24*/
1442F: arch/arm/mach-s3c64xx/
Kukjin Kim5bfb9372014-11-14 16:54:57 +09001443F: arch/arm/mach-s5p*/
1444F: arch/arm/mach-exynos*/
Ben Dookseb2ffca2011-02-01 15:52:36 -08001445F: drivers/*/*s3c2410*
1446F: drivers/*/*/*s3c2410*
Mark Brown40c76662011-12-02 13:54:25 +09001447F: drivers/spi/spi-s3c*
1448F: sound/soc/samsung/*
Doug Anderson33d43cd2013-06-18 07:02:23 +09001449N: exynos
Kukjin Kimf556cb072010-09-30 15:15:35 -07001450
Kyungmin Park10ffa962011-03-04 17:36:26 -08001451ARM/SAMSUNG MOBILE MACHINE SUPPORT
1452M: Kyungmin Park <kyungmin.park@samsung.com>
1453L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1454S: Maintained
Christian Kujau004bbd32014-10-13 15:51:17 -07001455F: arch/arm/mach-s5pv210/
Kyungmin Park10ffa962011-03-04 17:36:26 -08001456
Kamil Debski3ce4ccb2012-11-28 06:14:22 -03001457ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1458M: Kyungmin Park <kyungmin.park@samsung.com>
1459M: Kamil Debski <k.debski@samsung.com>
1460L: linux-arm-kernel@lists.infradead.org
1461L: linux-media@vger.kernel.org
1462S: Maintained
1463F: drivers/media/platform/s5p-g2d/
1464
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001465ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1466M: Kyungmin Park <kyungmin.park@samsung.com>
1467M: Kamil Debski <k.debski@samsung.com>
Joe Perches63059022012-06-07 14:21:10 -07001468M: Jeongtae Park <jtp.park@samsung.com>
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001469L: linux-arm-kernel@lists.infradead.org
1470L: linux-media@vger.kernel.org
1471S: Maintained
Cesar Eduardo Barros934455d2013-01-04 15:35:17 -08001472F: arch/arm/plat-samsung/s5p-dev-mfc.c
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001473F: drivers/media/platform/s5p-mfc/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001474
1475ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1476M: Kyungmin Park <kyungmin.park@samsung.com>
1477M: Tomasz Stanislawski <t.stanislaws@samsung.com>
1478L: linux-arm-kernel@lists.infradead.org
1479L: linux-media@vger.kernel.org
1480S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001481F: drivers/media/platform/s5p-tv/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001482
Paul Mundtd48d38e2010-02-08 12:50:24 +09001483ARM/SHMOBILE ARM ARCHITECTURE
Simon Horman5e212592012-11-27 11:41:49 +09001484M: Simon Horman <horms@verge.net.au>
Paul Mundtd48d38e2010-02-08 12:50:24 +09001485M: Magnus Damm <magnus.damm@gmail.com>
1486L: linux-sh@vger.kernel.org
Paul Mundtd48d38e2010-02-08 12:50:24 +09001487W: http://oss.renesas.com
Paul Mundtbbff48f2010-04-07 17:17:22 +09001488Q: http://patchwork.kernel.org/project/linux-sh/list/
Simon Horman5e212592012-11-27 11:41:49 +09001489T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
Paul Mundtd48d38e2010-02-08 12:50:24 +09001490S: Supported
Simon Horman0b514fd2014-05-15 08:48:21 +09001491F: arch/arm/boot/dts/emev2*
1492F: arch/arm/boot/dts/r7s*
1493F: arch/arm/boot/dts/r8a*
1494F: arch/arm/boot/dts/sh*
Simon Horman0b514fd2014-05-15 08:48:21 +09001495F: arch/arm/configs/bockw_defconfig
Simon Horman0b514fd2014-05-15 08:48:21 +09001496F: arch/arm/configs/marzen_defconfig
1497F: arch/arm/configs/shmobile_defconfig
Geert Uytterhoeven7a2071c2014-11-14 16:49:47 +01001498F: arch/arm/include/debug/renesas-scif.S
Paul Mundtd48d38e2010-02-08 12:50:24 +09001499F: arch/arm/mach-shmobile/
1500F: drivers/sh/
1501
Dinh Nguyen66314222012-07-18 16:07:18 -06001502ARM/SOCFPGA ARCHITECTURE
Dinh Nguyenba2b7d02014-08-06 16:31:27 -05001503M: Dinh Nguyen <dinguyen@opensource.altera.com>
Dinh Nguyen66314222012-07-18 16:07:18 -06001504S: Maintained
1505F: arch/arm/mach-socfpga/
Dinh Nguyenefadb752015-04-20 14:13:12 -05001506F: arch/arm/boot/dts/socfpga*
1507F: arch/arm/configs/socfpga_defconfig
Dinh Nguyenba2b7d02014-08-06 16:31:27 -05001508W: http://www.rocketboards.org
Dinh Nguyenefadb752015-04-20 14:13:12 -05001509T: git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
Dinh Nguyen66314222012-07-18 16:07:18 -06001510
1511ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
Dinh Nguyenba2b7d02014-08-06 16:31:27 -05001512M: Dinh Nguyen <dinguyen@opensource.altera.com>
Dinh Nguyen66314222012-07-18 16:07:18 -06001513S: Maintained
1514F: drivers/clk/socfpga/
1515
Thor Thayer71bcada2014-09-03 10:27:54 -05001516ARM/SOCFPGA EDAC SUPPORT
1517M: Thor Thayer <tthayer@opensource.altera.com>
1518S: Maintained
1519F: drivers/edac/altera_edac.
1520
Srinivas Kandagatla65ebcc12013-06-25 12:15:10 +01001521ARM/STI ARCHITECTURE
Srinivas Kandagatlaa92177e2014-03-03 11:28:59 +00001522M: Srinivas Kandagatla <srinivas.kandagatla@gmail.com>
1523M: Maxime Coquelin <maxime.coquelin@st.com>
1524M: Patrice Chotard <patrice.chotard@st.com>
Srinivas Kandagatla65ebcc12013-06-25 12:15:10 +01001525L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1526L: kernel@stlinux.com
1527W: http://www.stlinux.com
1528S: Maintained
1529F: arch/arm/mach-sti/
Srinivas Kandagatlaa92177e2014-03-03 11:28:59 +00001530F: arch/arm/boot/dts/sti*
1531F: drivers/clocksource/arm_global_timer.c
Lee Jones82805d12015-05-12 13:58:17 +01001532F: drivers/clocksource/clksrc_st_lpc.c
Srinivas Kandagatlaa92177e2014-03-03 11:28:59 +00001533F: drivers/i2c/busses/i2c-st.c
Greg Kroah-Hartman346e2e42014-09-25 13:11:52 +02001534F: drivers/media/rc/st_rc.c
Peter Griffin95d66b12015-07-30 14:09:01 -03001535F: drivers/media/platform/sti/c8sectpfe/
Peter Griffinf53b2bf2014-06-04 17:30:24 +01001536F: drivers/mmc/host/sdhci-st.c
Peter Griffine95cf392015-04-01 07:42:41 +01001537F: drivers/phy/phy-miphy28lp.c
1538F: drivers/phy/phy-miphy365x.c
Peter Griffin6da969a2014-09-11 18:02:46 +01001539F: drivers/phy/phy-stih407-usb.c
Peter Griffin26389c72014-09-08 11:33:02 +01001540F: drivers/phy/phy-stih41x-usb.c
Greg Kroah-Hartman346e2e42014-09-25 13:11:52 +02001541F: drivers/pinctrl/pinctrl-st.c
1542F: drivers/reset/sti/
Lee Jonesdb4112e2015-04-09 15:47:34 +01001543F: drivers/rtc/rtc-st-lpc.c
Greg Kroah-Hartman346e2e42014-09-25 13:11:52 +02001544F: drivers/tty/serial/st-asc.c
Peter Griffineb11ada2014-09-05 16:36:32 +01001545F: drivers/usb/dwc3/dwc3-st.c
Peter Griffin62f6f082014-09-08 13:04:48 +01001546F: drivers/usb/host/ehci-st.c
1547F: drivers/usb/host/ohci-st.c
Lee Jonesdb4112e2015-04-09 15:47:34 +01001548F: drivers/watchdog/st_lpc_wdt.c
Peter Griffindaac6f82014-11-19 08:44:54 +00001549F: drivers/ata/ahci_st.c
Srinivas Kandagatla65ebcc12013-06-25 12:15:10 +01001550
Maxime Coquelinee6e7872015-05-09 09:53:58 +02001551ARM/STM32 ARCHITECTURE
1552M: Maxime Coquelin <mcoquelin.stm32@gmail.com>
1553L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1554S: Maintained
1555T: git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git
1556N: stm32
1557F: drivers/clocksource/armv7m_systick.c
1558
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001559ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001560M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001561L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001562S: Maintained
1563
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001564ARM/TETON BGA MACHINE SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07001565M: "Mark F. Brown" <mark.brown314@gmail.com>
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001566L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1567S: Maintained
1568
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001569ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001570M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001571L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001572S: Maintained
1573
wanzongshun98ad6e32009-02-13 06:04:32 +01001574ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001575M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001576L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -07001577W: http://www.mcuos.com
1578S: Maintained
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001579F: arch/arm/mach-w90x900/
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001580F: drivers/input/keyboard/w90p910_keypad.c
1581F: drivers/input/touchscreen/w90p910_ts.c
1582F: drivers/watchdog/nuc900_wdt.c
Jeff Kirsher679ec0e2011-07-17 00:20:45 -07001583F: drivers/net/ethernet/nuvoton/w90p910_ether.c
Joe Perches53516842010-08-09 17:20:37 -07001584F: drivers/mtd/nand/nuc900_nand.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001585F: drivers/rtc/rtc-nuc900.c
Joe Perches9df92e62012-01-10 15:09:06 -08001586F: drivers/spi/spi-nuc900.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001587F: drivers/usb/host/ehci-w90x900.c
Jingoo Han8a61f012014-07-01 15:36:01 +09001588F: drivers/video/fbdev/nuc900fb.c
wanzongshun98ad6e32009-02-13 06:04:32 +01001589
Linus Walleij54274d72010-04-04 10:58:03 +01001590ARM/U300 MACHINE SUPPORT
Linus Walleije4651a92012-08-06 09:52:52 +02001591M: Linus Walleij <linus.walleij@linaro.org>
Linus Walleij54274d72010-04-04 10:58:03 +01001592L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1593S: Supported
1594F: arch/arm/mach-u300/
Linus Walleij9affbd22014-01-21 15:04:14 +01001595F: drivers/clocksource/timer-u300.c
Linus Walleij54274d72010-04-04 10:58:03 +01001596F: drivers/i2c/busses/i2c-stu300.c
1597F: drivers/rtc/rtc-coh901331.c
1598F: drivers/watchdog/coh901327_wdt.c
1599F: drivers/dma/coh901318*
Linus Walleij87572882010-12-22 09:18:29 +01001600F: drivers/mfd/ab3100*
1601F: drivers/rtc/rtc-ab3100.c
1602F: drivers/rtc/rtc-coh901331.c
1603T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Linus Walleij54274d72010-04-04 10:58:03 +01001604
Masahiro Yamada3d00d042015-05-08 13:07:14 +09001605ARM/UNIPHIER ARCHITECTURE
1606M: Masahiro Yamada <yamada.masahiro@socionext.com>
1607L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1608S: Maintained
Masahiro Yamadaa3ff83d2015-07-25 16:23:24 +09001609F: arch/arm/boot/dts/uniphier*
Masahiro Yamada3d00d042015-05-08 13:07:14 +09001610F: arch/arm/mach-uniphier/
Masahiro Yamadaa3ff83d2015-07-25 16:23:24 +09001611F: drivers/pinctrl/uniphier/
1612F: drivers/tty/serial/8250/8250_uniphier.c
Masahiro Yamada3d00d042015-05-08 13:07:14 +09001613N: uniphier
1614
Linus Walleij87572882010-12-22 09:18:29 +01001615ARM/Ux500 ARM ARCHITECTURE
Linus Walleije4651a92012-08-06 09:52:52 +02001616M: Linus Walleij <linus.walleij@linaro.org>
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001617L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1618S: Maintained
1619F: arch/arm/mach-ux500/
Linus Walleije4651a92012-08-06 09:52:52 +02001620F: drivers/clocksource/clksrc-dbx500-prcmu.c
Linus Walleij87572882010-12-22 09:18:29 +01001621F: drivers/dma/ste_dma40*
Linus Walleije4651a92012-08-06 09:52:52 +02001622F: drivers/hwspinlock/u8500_hsem.c
Linus Walleij87572882010-12-22 09:18:29 +01001623F: drivers/mfd/abx500*
1624F: drivers/mfd/ab8500*
Linus Walleije4651a92012-08-06 09:52:52 +02001625F: drivers/mfd/dbx500*
1626F: drivers/mfd/db8500*
Joe Perchesecc265f2014-08-08 14:26:20 -07001627F: drivers/pinctrl/nomadik/pinctrl-ab*
1628F: drivers/pinctrl/nomadik/pinctrl-nomadik*
Linus Walleij87572882010-12-22 09:18:29 +01001629F: drivers/rtc/rtc-ab8500.c
Linus Walleije4651a92012-08-06 09:52:52 +02001630F: drivers/rtc/rtc-pl031.c
Linus Walleij87572882010-12-22 09:18:29 +01001631T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001632
Ulf Hanssone93fde22013-11-12 11:41:12 +01001633ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1634M: Ulf Hansson <ulf.hansson@linaro.org>
1635L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1636T: git git://git.linaro.org/people/ulfh/clk.git
1637S: Maintained
1638F: drivers/clk/ux500/
1639F: include/linux/platform_data/clk-ux500.h
1640
Pawel Moll740d93b2014-11-26 12:13:05 +00001641ARM/VERSATILE EXPRESS PLATFORM
1642M: Liviu Dudau <liviu.dudau@arm.com>
1643M: Sudeep Holla <sudeep.holla@arm.com>
1644M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
1645L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1646S: Maintained
1647F: arch/arm/boot/dts/vexpress*
Kristina Martsenko9ccd6082015-07-01 13:36:03 +01001648F: arch/arm64/boot/dts/arm/vexpress*
Pawel Moll740d93b2014-11-26 12:13:05 +00001649F: arch/arm/mach-vexpress/
1650F: */*/vexpress*
Pawel Moll7e8f4032014-12-01 14:16:33 +00001651F: */*/*/vexpress*
Pawel Moll740d93b2014-11-26 12:13:05 +00001652F: drivers/clk/versatile/clk-vexpress-osc.c
1653F: drivers/clocksource/versatile.c
1654
Russell Kingd4275352009-04-16 14:05:27 +01001655ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001656M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001657L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001658W: http://www.arm.linux.org.uk/
1659S: Maintained
1660F: arch/arm/vfp/
1661
Marek Vasute66b6d82010-03-26 06:51:32 +01001662ARM/VOIPAC PXA270 SUPPORT
1663M: Marek Vasut <marek.vasut@gmail.com>
1664L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1665S: Maintained
1666F: arch/arm/mach-pxa/vpac270.c
Joe Perchese0cca112010-08-09 17:20:38 -07001667F: arch/arm/mach-pxa/include/mach/vpac270.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001668
Tony Prisk04529fe2012-07-24 04:19:37 +12001669ARM/VT8500 ARM ARCHITECTURE
1670M: Tony Prisk <linux@prisktech.co.nz>
1671L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1672S: Maintained
1673F: arch/arm/mach-vt8500/
Tony Prisk41fd91b2013-02-08 18:18:03 +13001674F: drivers/clocksource/vt8500_timer.c
Tony Prisk560746e2013-06-15 09:52:16 +12001675F: drivers/i2c/busses/i2c-wmt.c
Tony Prisk41fd91b2013-02-08 18:18:03 +13001676F: drivers/mmc/host/wmt-sdmmc.c
1677F: drivers/pwm/pwm-vt8500.c
1678F: drivers/rtc/rtc-vt8500.c
1679F: drivers/tty/serial/vt8500_serial.c
Joe Perches4f311022013-09-11 14:23:46 -07001680F: drivers/usb/host/ehci-platform.c
Tony Prisk41fd91b2013-02-08 18:18:03 +13001681F: drivers/usb/host/uhci-platform.c
Jingoo Han8a61f012014-07-01 15:36:01 +09001682F: drivers/video/fbdev/vt8500lcdfb.*
1683F: drivers/video/fbdev/wm8505fb*
1684F: drivers/video/fbdev/wmt_ge_rops.*
Tony Prisk04529fe2012-07-24 04:19:37 +12001685
Marek Vasute66b6d82010-03-26 06:51:32 +01001686ARM/ZIPIT Z2 SUPPORT
1687M: Marek Vasut <marek.vasut@gmail.com>
1688L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1689S: Maintained
1690F: arch/arm/mach-pxa/z2.c
Joe Perches6ab2a852010-08-09 17:20:38 -07001691F: arch/arm/mach-pxa/include/mach/z2.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001692
Jun Nie5ecc4b52015-04-28 17:18:06 +08001693ARM/ZTE ARCHITECTURE
1694M: Jun Nie <jun.nie@linaro.org>
1695L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1696S: Maintained
1697F: arch/arm/mach-zx/
1698F: drivers/clk/zte/
1699F: Documentation/devicetree/bindings/arm/zte.txt
1700F: Documentation/devicetree/bindings/clock/zx296702-clk.txt
1701
Michal Simek51f29d42013-01-21 17:41:46 +01001702ARM/ZYNQ ARCHITECTURE
1703M: Michal Simek <michal.simek@xilinx.com>
Soren Brinkmannf0fd9ad2014-10-23 09:29:22 -07001704R: Sören Brinkmann <soren.brinkmann@xilinx.com>
Michal Simek51f29d42013-01-21 17:41:46 +01001705L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1706W: http://wiki.xilinx.com
Soren Brinkmannd6448b72015-06-26 09:04:32 -07001707T: git https://github.com/Xilinx/linux-xlnx.git
Michal Simek51f29d42013-01-21 17:41:46 +01001708S: Supported
1709F: arch/arm/mach-zynq/
Michal Simekbd2a3372013-06-04 07:17:39 +00001710F: drivers/cpuidle/cpuidle-zynq.c
Michal Simekfb9d4952014-10-13 15:51:15 -07001711F: drivers/block/xsysace.c
Michal Simekc2fd4e32014-01-02 12:58:50 -08001712N: zynq
1713N: xilinx
1714F: drivers/clocksource/cadence_ttc_timer.c
Soren Brinkmanndf8eb562014-04-04 14:27:55 -07001715F: drivers/i2c/busses/i2c-cadence.c
Soren Brinkmanne3ec3a32013-12-02 10:02:36 -08001716F: drivers/mmc/host/sdhci-of-arasan.c
Punnaiah Choudary Kalluriae9b56e32015-01-06 23:13:47 +05301717F: drivers/edac/synopsys_edac.c
Michal Simek51f29d42013-01-21 17:41:46 +01001718
Will Deacon48ec83b2015-05-27 17:25:59 +01001719ARM SMMU DRIVERS
Will Deaconb8f98792013-06-24 18:31:26 +01001720M: Will Deacon <will.deacon@arm.com>
1721L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1722S: Maintained
1723F: drivers/iommu/arm-smmu.c
Will Deacon48ec83b2015-05-27 17:25:59 +01001724F: drivers/iommu/arm-smmu-v3.c
Will Deacone1d3c0f2014-11-14 17:18:23 +00001725F: drivers/iommu/io-pgtable-arm.c
Will Deaconb8f98792013-06-24 18:31:26 +01001726
Catalin Marinas38074222012-03-05 11:49:34 +00001727ARM64 PORT (AARCH64 ARCHITECTURE)
1728M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasd19766e2012-12-11 13:58:05 +00001729M: Will Deacon <will.deacon@arm.com>
Catalin Marinas38074222012-03-05 11:49:34 +00001730L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1731S: Maintained
1732F: arch/arm64/
Catalin Marinasd19766e2012-12-11 13:58:05 +00001733F: Documentation/arm64/
Catalin Marinas38074222012-03-05 11:49:34 +00001734
Laurent Pinchart9d7005f92012-12-10 20:38:24 -03001735AS3645A LED FLASH CONTROLLER DRIVER
1736M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1737L: linux-media@vger.kernel.org
1738T: git git://linuxtv.org/media_tree.git
1739S: Maintained
1740F: drivers/media/i2c/as3645a.c
1741F: include/media/as3645a.h
1742
George Josephd58de032010-03-05 22:17:25 +01001743ASC7621 HARDWARE MONITOR DRIVER
1744M: George Joseph <george.joseph@fairview5.com>
1745L: lm-sensors@lm-sensors.org
1746S: Maintained
1747F: Documentation/hwmon/asc7621
1748F: drivers/hwmon/asc7621.c
1749
Corentin Charyb229ece2011-02-26 10:20:40 +01001750ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
Corentin Chary5909c652012-12-17 16:00:05 -08001751M: Corentin Chary <corentin.chary@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd09448532010-02-11 10:40:13 -05001753L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001754W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755S: Maintained
Corentin Charyb229ece2011-02-26 10:20:40 +01001756F: drivers/platform/x86/asus*.c
1757F: drivers/platform/x86/eeepc*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758
Andrew Morton953a6472008-11-06 12:53:28 -08001759ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williams08223d82014-08-19 06:07:56 -07001760R: Dan Williams <dan.j.williams@intel.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001761W: http://sourceforge.net/projects/xscaleiop
Dan Williams08223d82014-08-19 06:07:56 -07001762S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07001763F: Documentation/crypto/async-tx-api.txt
1764F: crypto/async_tx/
1765F: drivers/dma/
1766F: include/linux/dmaengine.h
1767F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001768
Wolfram Sanga1867d32009-09-18 22:45:51 +02001769AT24 EEPROM DRIVER
Wolfram Sang14d77c42013-02-08 20:54:40 +01001770M: Wolfram Sang <wsa@the-dreams.de>
Wolfram Sanga1867d32009-09-18 22:45:51 +02001771L: linux-i2c@vger.kernel.org
1772S: Maintained
1773F: drivers/misc/eeprom/at24.c
Vivien Didelot25f73ed2013-09-27 15:06:28 -04001774F: include/linux/platform_data/at24.h
Wolfram Sanga1867d32009-09-18 22:45:51 +02001775
Randy Dunlape7839f22008-10-12 16:11:45 -07001776ATA OVER ETHERNET (AOE) DRIVER
Ed Cashinfb903812015-03-25 15:55:06 -07001777M: "Ed L. Cashin" <ed.cashin@acm.org>
1778W: http://www.openaoe.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001780F: Documentation/aoe/
1781F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782
Joe Perches9a10a872010-12-01 09:37:55 -08001783ATHEROS ATH GENERIC UTILITIES
Luis R. Rodriguezf726ee62013-12-14 20:11:39 +01001784M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
Joe Perches9a10a872010-12-01 09:37:55 -08001785L: linux-wireless@vger.kernel.org
1786S: Supported
1787F: drivers/net/wireless/ath/*
1788
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001789ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001790M: Jiri Slaby <jirislaby@gmail.com>
1791M: Nick Kossifidis <mickflemm@gmail.com>
Luis R. Rodriguezf726ee62013-12-14 20:11:39 +01001792M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001793L: linux-wireless@vger.kernel.org
Joe Perches72c706b2009-09-07 11:34:30 -07001794W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001795S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001796F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001797
Kalle Valo12e62d62011-09-13 10:21:25 +03001798ATHEROS ATH6KL WIRELESS DRIVER
1799M: Kalle Valo <kvalo@qca.qualcomm.com>
1800L: linux-wireless@vger.kernel.org
1801W: http://wireless.kernel.org/en/users/Drivers/ath6kl
Kalle Valo58cfb682013-07-22 12:26:12 +03001802T: git git://github.com/kvalo/ath.git
Kalle Valo12e62d62011-09-13 10:21:25 +03001803S: Supported
1804F: drivers/net/wireless/ath/ath6kl/
1805
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001806WILOCITY WIL6210 WIRELESS DRIVER
1807M: Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
1808L: linux-wireless@vger.kernel.org
1809L: wil6210@qca.qualcomm.com
1810S: Supported
1811W: http://wireless.kernel.org/en/users/Drivers/wil6210
1812F: drivers/net/wireless/ath/wil6210/
Vladimir Kondratievdba4b742014-10-01 15:05:25 +03001813F: include/uapi/linux/wil6210_uapi.h
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001814
Christian Lamparter1d7e1e62010-09-06 01:10:25 +02001815CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1816M: Christian Lamparter <chunkeey@googlemail.com>
1817L: linux-wireless@vger.kernel.org
1818W: http://wireless.kernel.org/en/users/Drivers/carl9170
1819S: Maintained
1820F: drivers/net/wireless/ath/carl9170/
1821
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001822ATK0110 HWMON DRIVER
1823M: Luca Tettamanti <kronos.it@gmail.com>
1824L: lm-sensors@lm-sensors.org
1825S: Maintained
1826F: drivers/hwmon/asus_atk0110.c
1827
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001828ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001829M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001830S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001831F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001832
Chris Snook7ae115b2008-09-09 03:26:57 -04001833ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001834M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +00001835M: Chris Snook <chris.snook@gmail.com>
Chris Snooke443e382010-09-16 22:00:28 -07001836L: netdev@vger.kernel.org
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001837W: http://sourceforge.net/projects/atl1
1838W: http://atl1.sourceforge.net
1839S: Maintained
Jeff Kirsher2b133ad2011-05-20 06:55:16 -07001840F: drivers/net/ethernet/atheros/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001841
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842ATM
chas williams - CONTRACTOR366c1bd2015-03-11 16:18:01 -04001843M: Chas Williams <3chas3@gmail.com>
Joe Perches476604d2009-10-26 16:49:41 -07001844L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001845L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846W: http://linux-atm.sourceforge.net
1847S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001848F: drivers/atm/
1849F: include/linux/atm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001850F: include/uapi/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001852ATMEL AT91 / AT32 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001853M: Ludovic Desroches <ludovic.desroches@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001854S: Maintained
1855F: drivers/mmc/host/atmel-mci.c
1856F: drivers/mmc/host/atmel-mci-regs.h
1857
Haavard Skinnemoena1cfac482008-02-08 04:21:00 -08001858ATMEL AT91 / AT32 SERIAL DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001859M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoena1cfac482008-02-08 04:21:00 -08001860S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001861F: drivers/tty/serial/atmel_serial.c
Haavard Skinnemoena1cfac482008-02-08 04:21:00 -08001862
Bo Shendfae90e2014-09-28 09:57:19 +08001863ATMEL Audio ALSA driver
Nicolas Ferre3a820022015-03-31 15:34:51 +02001864M: Nicolas Ferre <nicolas.ferre@atmel.com>
Bo Shendfae90e2014-09-28 09:57:19 +08001865L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1866S: Supported
1867F: sound/soc/atmel
1868
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001869ATMEL DMA DRIVER
1870M: Nicolas Ferre <nicolas.ferre@atmel.com>
1871L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1872S: Supported
1873F: drivers/dma/at_hdmac.c
1874F: drivers/dma/at_hdmac_regs.h
Cesar Eduardo Barros6f0d65a2013-01-04 15:35:20 -08001875F: include/linux/platform_data/dma-atmel.h
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001876
Ludovic Desroches6bd0f432014-10-22 17:22:20 +02001877ATMEL XDMA DRIVER
1878M: Ludovic Desroches <ludovic.desroches@atmel.com>
1879L: linux-arm-kernel@lists.infradead.org
1880L: dmaengine@vger.kernel.org
1881S: Supported
1882F: drivers/dma/at_xdmac.c
1883
Ludovic Desroches888f2802013-03-15 05:32:57 +00001884ATMEL I2C DRIVER
1885M: Ludovic Desroches <ludovic.desroches@atmel.com>
1886L: linux-i2c@vger.kernel.org
1887S: Supported
1888F: drivers/i2c/busses/i2c-at91.c
1889
Josh Wu15515542012-03-23 17:56:29 +08001890ATMEL ISI DRIVER
1891M: Josh Wu <josh.wu@atmel.com>
1892L: linux-media@vger.kernel.org
1893S: Supported
Cesar Eduardo Barrosf2294c2d2013-01-04 15:35:21 -08001894F: drivers/media/platform/soc_camera/atmel-isi.c
Josh Wu15515542012-03-23 17:56:29 +08001895F: include/media/atmel-isi.h
1896
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001897ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001898M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01001899L: linux-fbdev@vger.kernel.org
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001900S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09001901F: drivers/video/fbdev/atmel_lcdfb.c
Joe Perches679655d2009-04-07 20:44:32 -07001902F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001903
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001904ATMEL MACB ETHERNET DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001905M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001906S: Supported
Jeff Kirsher9f2f381f2011-06-18 01:52:36 -07001907F: drivers/net/ethernet/cadence/
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001908
Josh Wu5cbac982014-10-13 15:51:24 -07001909ATMEL NAND DRIVER
1910M: Josh Wu <josh.wu@atmel.com>
1911L: linux-mtd@lists.infradead.org
1912S: Supported
1913F: drivers/mtd/nand/atmel_nand*
1914
ludovic.desroches@atmel.com05c441e2015-07-29 16:22:48 +02001915ATMEL SDMMC DRIVER
1916M: Ludovic Desroches <ludovic.desroches@atmel.com>
1917L: linux-mmc@vger.kernel.org
1918S: Supported
1919F: drivers/mmc/host/sdhci-of-at91.c
1920
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001921ATMEL SPI DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001922M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001923S: Supported
Joe Perches9df92e62012-01-10 15:09:06 -08001924F: drivers/spi/spi-atmel.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001925
Bo Shen0ef09012014-09-28 09:57:18 +08001926ATMEL SSC DRIVER
Nicolas Ferre03515f32015-03-19 10:49:42 +01001927M: Nicolas Ferre <nicolas.ferre@atmel.com>
Bo Shen0ef09012014-09-28 09:57:18 +08001928L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1929S: Supported
1930F: drivers/misc/atmel-ssc.c
1931F: include/linux/atmel-ssc.h
1932
Nicolas Ferree9cb1c52012-03-26 15:59:32 +02001933ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1934M: Nicolas Ferre <nicolas.ferre@atmel.com>
1935L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1936S: Supported
1937F: drivers/misc/atmel_tclib.c
1938F: drivers/clocksource/tcb_clksrc.c
1939
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001940ATMEL USBA UDC DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001941M: Nicolas Ferre <nicolas.ferre@atmel.com>
1942L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001943S: Supported
Joe Perchesfaf2e1d2014-08-08 14:26:18 -07001944F: drivers/usb/gadget/udc/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001945
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001947M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07001948L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949W: http://www.thekelleys.org.uk/atmel
1950W: http://atmelwlandriver.sourceforge.net/
1951S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001952F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953
Nick Dyera14c0f82015-08-04 16:22:54 -07001954ATMEL MAXTOUCH DRIVER
1955M: Nick Dyer <nick.dyer@itdev.co.uk>
1956T: git git://github.com/atmel-maxtouch/linux.git
1957S: Supported
1958F: Documentation/devicetree/bindings/input/atmel,maxtouch.txt
1959F: drivers/input/touchscreen/atmel_mxt_ts.c
1960F: include/linux/platform_data/atmel_mxt_ts.h
1961
Bradley Grove26780d92013-08-23 10:35:45 -04001962ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
Joe Perchesb75f0052014-03-03 15:38:37 -08001963M: Bradley Grove <linuxdrivers@attotech.com>
1964L: linux-scsi@vger.kernel.org
1965W: http://www.attotech.com
1966S: Supported
1967F: drivers/scsi/esas2r
Bradley Grove26780d92013-08-23 10:35:45 -04001968
Stefan Schmidtbc6e17b2015-05-29 10:51:28 +02001969ATUSB IEEE 802.15.4 RADIO DRIVER
1970M: Stefan Schmidt <stefan@osg.samsung.com>
1971L: linux-wpan@vger.kernel.org
1972S: Maintained
1973F: drivers/net/ieee802154/atusb.c
1974F: drivers/net/ieee802154/atusb.h
1975F: drivers/net/ieee802154/at86rf230.h
1976
Chris Wrighta92b7b82005-07-07 18:12:23 -07001977AUDIT SUBSYSTEM
Paul Moore915f3892014-10-20 11:59:43 -04001978M: Paul Moore <paul@paul-moore.com>
Joe Perches8b58be82009-07-29 15:04:30 -07001979M: Eric Paris <eparis@redhat.com>
Paul Moore915f3892014-10-20 11:59:43 -04001980L: linux-audit@redhat.com (moderated for non-subscribers)
David Woodhousead3f9a22005-07-13 15:28:29 +01001981W: http://people.redhat.com/sgrubb/audit/
Paul Moore915f3892014-10-20 11:59:43 -04001982T: git git://git.infradead.org/users/pcmoore/audit
Chris Wrighta92b7b82005-07-07 18:12:23 -07001983S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001984F: include/linux/audit.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001985F: include/uapi/linux/audit.h
Joe Perches679655d2009-04-07 20:44:32 -07001986F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001987
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001988AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001989M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001990W: http://miguelojeda.es/auxdisplay.htm
1991W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001992S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001993F: drivers/auxdisplay/
1994F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001995
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001996AVR32 ARCHITECTURE
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001997M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1998M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001999W: http://www.atmel.com/products/AVR32/
Matthias Brugger249d9d92013-02-04 14:28:47 -08002000W: http://mirror.egtvedt.no/avr32linux.org/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07002001W: http://avrfreaks.net/
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02002002S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002003F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07002004
2005AVR32/AT32AP MACHINE SUPPORT
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02002006M: Haavard Skinnemoen <hskinnemoen@gmail.com>
2007M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
2008S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002009F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07002010
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07002012M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002014W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002016F: include/uapi/linux/ax25.h
Joe Perches679655d2009-04-07 20:44:32 -07002017F: include/net/ax25.h
2018F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019
Mauro Carvalho Chehabd5269392012-11-02 12:00:30 -02002020AZ6007 DVB DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02002021M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehabd5269392012-11-02 12:00:30 -02002022L: linux-media@vger.kernel.org
2023W: http://linuxtv.org
2024T: git git://linuxtv.org/media_tree.git
2025S: Maintained
2026F: drivers/media/usb/dvb-usb-v2/az6007.c
2027
Hans Verkuil67773762012-11-23 07:09:23 -03002028AZTECH FM RADIO RECEIVER DRIVER
2029M: Hans Verkuil <hverkuil@xs4all.nl>
2030L: linux-media@vger.kernel.org
2031T: git git://linuxtv.org/media_tree.git
2032W: http://linuxtv.org
2033S: Maintained
2034F: drivers/media/radio/radio-aztech*
2035
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002036B43 WIRELESS DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002037L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01002038L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02002039W: http://wireless.kernel.org/en/users/Drivers/b43
Joe Perches8a72ed62015-04-15 16:17:39 -07002040S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07002041F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002042
2043B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002044M: Larry Finger <Larry.Finger@lwfinger.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002045L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01002046L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02002047W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002048S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002049F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002050
Richard Purdie300abeb2007-02-07 22:21:07 +00002051BACKLIGHT CLASS/SUBSYSTEM
Jingoo Hanb7701752015-05-14 15:17:07 -07002052M: Jingoo Han <jingoohan1@gmail.com>
Jingoo Han70d14fc2014-04-03 14:48:46 -07002053M: Lee Jones <lee.jones@linaro.org>
Richard Purdie300abeb2007-02-07 22:21:07 +00002054S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002055F: drivers/video/backlight/
2056F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00002057
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002058BATMAN ADVANCED
Antonio Quartulli207df492013-09-21 13:46:56 +02002059M: Marek Lindner <mareklindner@neomailbox.ch>
Simon Wunderlichc679ff82013-10-10 23:59:10 +02002060M: Simon Wunderlich <sw@simonwunderlich.de>
Antonio Quartulli207df492013-09-21 13:46:56 +02002061M: Antonio Quartulli <antonio@meshcoding.com>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002062L: b.a.t.m.a.n@lists.open-mesh.org
2063W: http://www.open-mesh.org/
2064S: Maintained
2065F: net/batman-adv/
2066
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002067BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002068M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002069L: linux-hams@vger.kernel.org
2070W: http://www.baycom.org/~tom/ham/ham.html
2071S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002072F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002073
Kent Overstreetcafe5632013-03-23 16:11:31 -07002074BCACHE (BLOCK LAYER CACHE)
Joe Perchesd1aa1ab2015-06-30 14:59:54 -07002075M: Kent Overstreet <kent.overstreet@gmail.com>
Kent Overstreetcafe5632013-03-23 16:11:31 -07002076L: linux-bcache@vger.kernel.org
2077W: http://bcache.evilpiepirate.org
Joe Perchesd1aa1ab2015-06-30 14:59:54 -07002078S: Maintained
Kent Overstreetcafe5632013-03-23 16:11:31 -07002079F: drivers/md/bcache/
2080
Hans Verkuil04bd8442015-06-08 09:26:20 -03002081BDISP ST MEDIA DRIVER
2082M: Fabien Dessenne <fabien.dessenne@st.com>
2083L: linux-media@vger.kernel.org
2084T: git git://linuxtv.org/media_tree.git
2085W: http://linuxtv.org
2086S: Supported
2087F: drivers/media/platform/sti/bdisp
2088
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002089BEFS FILE SYSTEM
Joe Perches55817d32010-08-09 17:20:52 -07002090S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002091F: Documentation/filesystems/befs.txt
2092F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002093
Dariusz Marcinkiewicz564ee362014-08-15 17:50:47 +02002094BECKHOFF CX5020 ETHERCAT MASTER DRIVER
Joe Perches49e7d9d2015-04-15 16:17:31 -07002095M: Dariusz Marcinkiewicz <reksio@newterm.pl>
2096L: netdev@vger.kernel.org
2097S: Maintained
2098F: drivers/net/ethernet/ec_bhf.c
Dariusz Marcinkiewicz564ee362014-08-15 17:50:47 +02002099
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002100BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002101M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002102S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002103F: Documentation/filesystems/bfs.txt
2104F: fs/bfs/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002105F: include/uapi/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002106
Bryan Wu1394f032007-05-06 14:50:22 -07002107BLACKFIN ARCHITECTURE
Sonic Zhanga4edbc12014-01-29 14:05:55 -08002108M: Steven Miao <realmz6@gmail.com>
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002109L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Michael Opdenacker14431762014-03-10 15:49:49 -07002110T: git git://git.code.sf.net/p/adi-linux/code
Bryan Wue3b2d3f2007-06-11 15:31:30 +08002111W: http://blackfin.uclinux.org
2112S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002113F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07002114
Bryan Wue190d6b2007-07-17 14:43:44 +08002115BLACKFIN EMAC DRIVER
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002116L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Bryan Wue190d6b2007-07-17 14:43:44 +08002117W: http://blackfin.uclinux.org
2118S: Supported
Jeff Kirsher7b35f032011-06-18 00:01:26 -07002119F: drivers/net/ethernet/adi/
Bryan Wue190d6b2007-07-17 14:43:44 +08002120
Mike Frysinger566da5b2007-06-11 15:31:30 +08002121BLACKFIN RTC DRIVER
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002122L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Mike Frysinger566da5b2007-06-11 15:31:30 +08002123W: http://blackfin.uclinux.org
2124S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002125F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08002126
Mike Frysinger936ed492010-03-10 15:20:38 -08002127BLACKFIN SDH DRIVER
Sonic Zhang109ec8c2012-08-08 12:16:08 +08002128M: Sonic Zhang <sonic.zhang@analog.com>
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002129L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Mike Frysinger936ed492010-03-10 15:20:38 -08002130W: http://blackfin.uclinux.org
2131S: Supported
2132F: drivers/mmc/host/bfin_sdh.c
2133
Bryan Wu1394f032007-05-06 14:50:22 -07002134BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002135M: Sonic Zhang <sonic.zhang@analog.com>
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002136L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Bryan Wue3b2d3f2007-06-11 15:31:30 +08002137W: http://blackfin.uclinux.org
2138S: Supported
Joe Perches84602412012-01-10 15:09:04 -08002139F: drivers/tty/serial/bfin_uart.c
Bryan Wu1394f032007-05-06 14:50:22 -07002140
Bryan Wu1e6d3202007-07-15 02:50:02 +08002141BLACKFIN WATCHDOG DRIVER
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002142L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Bryan Wu1e6d3202007-07-15 02:50:02 +08002143W: http://blackfin.uclinux.org
2144S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002145F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08002146
Bryan Wud24ecfc2007-05-01 23:26:32 +02002147BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002148M: Sonic Zhang <sonic.zhang@analog.com>
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002149L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Bryan Wud24ecfc2007-05-01 23:26:32 +02002150W: http://blackfin.uclinux.org/
2151S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002152F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02002153
Scott Jiang1e204372013-01-18 17:09:47 -03002154BLACKFIN MEDIA DRIVER
2155M: Scott Jiang <scott.jiang.linux@gmail.com>
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002156L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Scott Jiang1e204372013-01-18 17:09:47 -03002157W: http://blackfin.uclinux.org/
2158S: Supported
2159F: drivers/media/platform/blackfin/
2160F: drivers/media/i2c/adv7183*
2161F: drivers/media/i2c/vs6624*
2162
Jan-Simon Möllerb54cf352012-07-20 16:49:06 +08002163BLINKM RGB LED DRIVER
2164M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
2165S: Maintained
2166F: drivers/leds/leds-blinkm.c
2167
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07002169M: Jens Axboe <axboe@kernel.dk>
Joe Perches08deed12012-03-23 15:01:57 -07002170T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002172F: block/
Steven Rostedtae11f7e2015-06-09 17:30:11 -04002173F: kernel/trace/blktrace.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174
Joern Engel2b54aae2008-02-06 01:38:02 -08002175BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002176M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08002177L: linux-mtd@lists.infradead.org
2178S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002179F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08002180
Marcel Holtmann63fbd242008-08-18 13:23:53 +02002181BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002182M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07002183M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07002184M: Johan Hedberg <johan.hedberg@gmail.com>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02002185L: linux-bluetooth@vger.kernel.org
2186W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02002187T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2188T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Marcel Holtmann63fbd242008-08-18 13:23:53 +02002189S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002190F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02002191
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002193M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07002194M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07002195M: Johan Hedberg <johan.hedberg@gmail.com>
Pavel Machek781c2842008-03-20 15:41:02 -07002196L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02002197W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02002198T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2199T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002201F: net/bluetooth/
2202F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204BONDING DRIVER
Jay Vosburgh79b30752014-03-27 10:33:44 -07002205M: Jay Vosburgh <j.vosburgh@gmail.com>
Veaceslav Falico898602a2014-03-27 18:43:50 +01002206M: Veaceslav Falico <vfalico@gmail.com>
Andy Gospodarek31639b92015-02-25 17:00:16 -05002207M: Andy Gospodarek <gospo@cumulusnetworks.com>
Simon Hormana6c36ee2010-11-21 09:58:04 -08002208L: netdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01002209W: http://sourceforge.net/projects/bonding/
2210S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002211F: drivers/net/bonding/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002212F: include/uapi/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213
Alexei Starovoitovb5f4df32014-07-22 23:01:59 -07002214BPF (Safe dynamic programs and tools)
2215M: Alexei Starovoitov <ast@kernel.org>
2216L: netdev@vger.kernel.org
2217L: linux-kernel@vger.kernel.org
2218S: Supported
2219F: kernel/bpf/
2220
Gary Zambrano39105892006-06-22 17:26:20 -07002221BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002222M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07002223L: netdev@vger.kernel.org
2224S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07002225F: drivers/net/ethernet/broadcom/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07002226
Florian Fainelli32ec90d2014-02-13 16:08:51 -08002227BROADCOM GENET ETHERNET DRIVER
2228M: Florian Fainelli <f.fainelli@gmail.com>
2229L: netdev@vger.kernel.org
2230S: Supported
2231F: drivers/net/ethernet/broadcom/genet/
2232
Michael Chan948c51e2006-06-04 02:51:39 -07002233BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Jitendra Kalsariaf1d1bae2014-06-23 15:10:35 -04002234M: Sony Chacko <sony.chacko@qlogic.com>
2235M: Dept-HSGLinuxNICDev@qlogic.com
Michael Chan948c51e2006-06-04 02:51:39 -07002236L: netdev@vger.kernel.org
2237S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07002238F: drivers/net/ethernet/broadcom/bnx2.*
2239F: drivers/net/ethernet/broadcom/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07002240
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08002241BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Ariel Elior08f6dd82014-05-27 13:11:36 +03002242M: Ariel Elior <ariel.elior@qlogic.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08002243L: netdev@vger.kernel.org
2244S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07002245F: drivers/net/ethernet/broadcom/bnx2x/
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08002246
Matt Porter90f4c592014-05-06 12:09:45 -04002247BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
Florian Fainellif18cf052014-09-19 11:17:12 -07002248M: Florian Fainelli <f.fainelli@gmail.com>
Florian Fainellid3cc2e82015-04-10 11:49:44 -07002249M: Ray Jui <rjui@broadcom.com>
2250M: Scott Branden <sbranden@broadcom.com>
Christian Daudt497a0452013-09-24 15:27:47 -07002251L: bcm-kernel-feedback-list@broadcom.com
Matt Porter90f4c592014-05-06 12:09:45 -04002252T: git git://github.com/broadcom/mach-bcm
Christian Daudtaf4b8e32013-09-11 14:23:49 -07002253S: Maintained
2254F: arch/arm/mach-bcm/
2255F: arch/arm/boot/dts/bcm113*
Matt Porter90f4c592014-05-06 12:09:45 -04002256F: arch/arm/boot/dts/bcm216*
Christian Daudtaf4b8e32013-09-11 14:23:49 -07002257F: arch/arm/boot/dts/bcm281*
2258F: arch/arm/configs/bcm_defconfig
Joe Perchese4ef47f2014-08-08 14:25:08 -07002259F: drivers/mmc/host/sdhci-bcm-kona.c
Christian Daudtaf4b8e32013-09-11 14:23:49 -07002260F: drivers/clocksource/bcm_kona_timer.c
2261
Scott Branden9209bec2014-10-16 21:57:16 -06002262BROADCOM BCM2835 ARM ARCHITECTURE
Stephen Warrenf680f252012-09-15 00:18:54 -06002263M: Stephen Warren <swarren@wwwdotorg.org>
Stephen Warren8bcdd922014-11-04 20:27:17 -07002264M: Lee Jones <lee@kernel.org>
Eric Anholt10b9e882015-07-22 12:55:36 -07002265M: Eric Anholt <eric@anholt.net>
Stephen Warrenf680f252012-09-15 00:18:54 -06002266L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
Eric Anholt82481122015-07-22 12:55:37 -07002267L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Stephen Warren8bcdd922014-11-04 20:27:17 -07002268T: git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git
Stephen Warrenf680f252012-09-15 00:18:54 -06002269S: Maintained
Scott Branden9209bec2014-10-16 21:57:16 -06002270N: bcm2835
Stephen Warrenf680f252012-09-15 00:18:54 -06002271
Kevin Cernekeea2f67342014-10-20 21:28:06 -07002272BROADCOM BCM33XX MIPS ARCHITECTURE
2273M: Kevin Cernekee <cernekee@gmail.com>
2274L: linux-mips@linux-mips.org
2275S: Maintained
2276F: arch/mips/bcm3384/*
2277F: arch/mips/include/asm/mach-bcm3384/*
2278F: arch/mips/kernel/*bmips*
2279
Rafał Miłecki5564f092015-05-29 07:39:26 +02002280BROADCOM BCM47XX MIPS ARCHITECTURE
2281M: Hauke Mehrtens <hauke@hauke-m.de>
2282M: Rafał Miłecki <zajec5@gmail.com>
2283L: linux-mips@linux-mips.org
2284S: Maintained
2285F: arch/mips/bcm47xx/*
2286F: arch/mips/include/asm/mach-bcm47xx/*
2287
Scott Branden9209bec2014-10-16 21:57:16 -06002288BROADCOM BCM5301X ARM ARCHITECTURE
Hauke Mehrtens5b293eb2014-02-04 00:01:43 +01002289M: Hauke Mehrtens <hauke@hauke-m.de>
2290L: linux-arm-kernel@lists.infradead.org
2291S: Maintained
2292F: arch/arm/mach-bcm/bcm_5301x.c
2293F: arch/arm/boot/dts/bcm5301x.dtsi
2294F: arch/arm/boot/dts/bcm470*
2295
Florian Fainellie076e962014-03-04 18:14:58 -08002296BROADCOM BCM63XX ARM ARCHITECTURE
2297M: Florian Fainelli <f.fainelli@gmail.com>
2298L: linux-arm-kernel@lists.infradead.org
Florian Fainellieb6725d2015-01-29 15:21:56 -08002299T: git git://github.com/broadcom/arm-bcm63xx.git
Florian Fainellie076e962014-03-04 18:14:58 -08002300S: Maintained
2301F: arch/arm/mach-bcm/bcm63xx.c
2302F: arch/arm/include/debug/bcm63xx.S
2303
Kevin Cernekee7110e2272014-10-20 21:28:07 -07002304BROADCOM BCM63XX/BCM33XX UDC DRIVER
2305M: Kevin Cernekee <cernekee@gmail.com>
2306L: linux-usb@vger.kernel.org
2307S: Maintained
2308F: drivers/usb/gadget/udc/bcm63xx_udc.*
2309
Brian Norris2df94fd2014-07-14 18:06:03 -07002310BROADCOM BCM7XXX ARM ARCHITECTURE
Brian Norris2df94fd2014-07-14 18:06:03 -07002311M: Brian Norris <computersforpeace@gmail.com>
Florian Fainelli3b4b6fe2014-11-14 12:53:43 -08002312M: Gregory Fong <gregory.0xf0@gmail.com>
2313M: Florian Fainelli <f.fainelli@gmail.com>
Brian Norris2df94fd2014-07-14 18:06:03 -07002314L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Florian Fainellieb6725d2015-01-29 15:21:56 -08002315T: git git://github.com/broadcom/stblinux.git
Brian Norris2df94fd2014-07-14 18:06:03 -07002316S: Maintained
2317F: arch/arm/mach-bcm/*brcmstb*
2318F: arch/arm/boot/dts/bcm7*.dts*
Florian Fainellie36661e2014-11-14 12:53:44 -08002319F: drivers/bus/brcmstb_gisb.c
Brian Norris5009a282015-03-18 18:09:05 -07002320N: brcmstb
Brian Norris2df94fd2014-07-14 18:06:03 -07002321
Kevin Cernekee70371ce2014-11-15 16:17:45 -08002322BROADCOM BMIPS MIPS ARCHITECTURE
2323M: Kevin Cernekee <cernekee@gmail.com>
2324M: Florian Fainelli <f.fainelli@gmail.com>
2325L: linux-mips@linux-mips.org
Florian Fainellieb6725d2015-01-29 15:21:56 -08002326T: git git://github.com/broadcom/stblinux.git
Kevin Cernekee70371ce2014-11-15 16:17:45 -08002327S: Maintained
2328F: arch/mips/bmips/*
2329F: arch/mips/include/asm/mach-bmips/*
2330F: arch/mips/kernel/*bmips*
Joe Perches338808d2015-06-30 14:59:42 -07002331F: arch/mips/boot/dts/brcm/bcm*.dts*
Kevin Cernekee70371ce2014-11-15 16:17:45 -08002332F: drivers/irqchip/irq-bcm7*
2333F: drivers/irqchip/irq-brcmstb*
2334
Michael Chan948c51e2006-06-04 02:51:39 -07002335BROADCOM TG3 GIGABIT ETHERNET DRIVER
Prashant Sreedharan23629472014-06-27 16:21:50 -07002336M: Prashant Sreedharan <prashant@broadcom.com>
Joe Perches8b58be82009-07-29 15:04:30 -07002337M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07002338L: netdev@vger.kernel.org
2339S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07002340F: drivers/net/ethernet/broadcom/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07002341
Henry Ptasinskia9533e72010-09-08 21:04:42 -07002342BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2343M: Brett Rudley <brudley@broadcom.com>
Henry Ptasinski818c07b2010-12-08 13:09:49 -08002344M: Arend van Spriel <arend@broadcom.com>
Roland Vossen85d63682011-06-01 13:44:56 +02002345M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
Arend van Spriel006a8f12012-11-28 21:44:04 +01002346M: Hante Meuleman <meuleman@broadcom.com>
Henry Ptasinskia9533e72010-09-08 21:04:42 -07002347L: linux-wireless@vger.kernel.org
Arend van Spriel56151712012-06-14 14:16:27 +02002348L: brcm80211-dev-list@broadcom.com
Henry Ptasinskia9533e72010-09-08 21:04:42 -07002349S: Supported
Joe Perchesf62ebdd2011-12-09 00:12:52 -08002350F: drivers/net/wireless/brcm80211/
Henry Ptasinskia9533e72010-09-08 21:04:42 -07002351
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07002352BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
Vikas Chaudhary3b7f0402014-07-03 08:18:29 -04002353M: QLogic-Storage-Upstream@qlogic.com
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07002354L: linux-scsi@vger.kernel.org
2355S: Supported
2356F: drivers/scsi/bnx2fc/
2357
Eddie Wai6a6b5ad02013-07-11 17:15:56 -07002358BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
Vikas Chaudhary3b7f0402014-07-03 08:18:29 -04002359M: QLogic-Storage-Upstream@qlogic.com
Eddie Wai6a6b5ad02013-07-11 17:15:56 -07002360L: linux-scsi@vger.kernel.org
2361S: Supported
2362F: drivers/scsi/bnx2i/
2363
Scott Branden36c02372014-09-12 16:50:56 -07002364BROADCOM CYGNUS/IPROC ARM ARCHITECTURE
2365M: Ray Jui <rjui@broadcom.com>
2366M: Scott Branden <sbranden@broadcom.com>
2367L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2368L: bcm-kernel-feedback-list@broadcom.com
Florian Fainellieb6725d2015-01-29 15:21:56 -08002369T: git git://github.com/broadcom/cygnus-linux.git
Scott Branden36c02372014-09-12 16:50:56 -07002370S: Maintained
2371N: iproc
2372N: cygnus
2373N: bcm9113*
2374N: bcm9583*
2375N: bcm583*
2376N: bcm113*
2377
Gregory Fong3b0213d2015-05-28 19:14:05 -07002378BROADCOM BRCMSTB GPIO DRIVER
2379M: Gregory Fong <gregory.0xf0@gmail.com>
2380L: bcm-kernel-feedback-list@broadcom.com>
2381S: Supported
2382F: drivers/gpio/gpio-brcmstb.c
2383F: Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2384
Markus Mayer7b7f5882014-02-12 15:42:27 -08002385BROADCOM KONA GPIO DRIVER
Markus Mayer5e163902014-07-29 11:10:07 -07002386M: Ray Jui <rjui@broadcom.com>
Markus Mayer7b7f5882014-02-12 15:42:27 -08002387L: bcm-kernel-feedback-list@broadcom.com
2388S: Supported
2389F: drivers/gpio/gpio-bcm-kona.c
Joe Perches1db12cd2015-06-30 14:59:45 -07002390F: Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
Markus Mayer7b7f5882014-02-12 15:42:27 -08002391
Rafał Miłeckif6e734a2015-06-10 23:05:08 +02002392BROADCOM NVRAM DRIVER
2393M: Rafał Miłecki <zajec5@gmail.com>
2394L: linux-mips@linux-mips.org
2395S: Maintained
2396F: drivers/firmware/broadcom/*
2397
Brian Norris02787da2015-05-12 17:16:50 -07002398BROADCOM STB NAND FLASH DRIVER
2399M: Brian Norris <computersforpeace@gmail.com>
2400L: linux-mtd@lists.infradead.org
2401S: Maintained
2402F: drivers/mtd/nand/brcmnand/
2403
Rafał Miłeckic9678d82012-01-13 22:55:05 +01002404BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2405M: Rafał Miłecki <zajec5@gmail.com>
2406L: linux-wireless@vger.kernel.org
2407S: Maintained
2408F: drivers/bcma/
2409F: include/linux/bcma/
2410
Florian Fainellib8302202014-04-24 18:09:00 -07002411BROADCOM SYSTEMPORT ETHERNET DRIVER
2412M: Florian Fainelli <f.fainelli@gmail.com>
2413L: netdev@vger.kernel.org
2414S: Supported
2415F: drivers/net/ethernet/broadcom/bcmsysport.*
2416
Jing Huang7725ccf2009-09-23 17:46:15 -07002417BROCADE BFA FC SCSI DRIVER
Anil Gurumurthyaa803372014-02-26 06:08:42 -05002418M: Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2419M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
Joe Perches455518e2009-11-11 14:26:10 -08002420L: linux-scsi@vger.kernel.org
2421S: Supported
2422F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07002423
Rasesh Mody8b230ed2010-08-23 20:24:12 -07002424BROCADE BNA 10 GIGABIT ETHERNET DRIVER
Rasesh Mody439e9572014-10-01 17:20:41 -04002425M: Rasesh Mody <rasesh.mody@qlogic.com>
Rasesh Mody8b230ed2010-08-23 20:24:12 -07002426L: netdev@vger.kernel.org
2427S: Supported
Jeff Kirsherf844a0e2011-05-13 01:00:03 -07002428F: drivers/net/ethernet/brocade/bna/
Rasesh Mody8b230ed2010-08-23 20:24:12 -07002429
Jens Axboe5cdf7f72007-07-17 08:58:06 +02002430BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07002431M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02002432L: linux-scsi@vger.kernel.org
2433S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002434F: block/bsg.c
2435F: include/linux/bsg.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002436F: include/uapi/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02002437
Clemens Ladischaf399172011-01-10 16:32:54 +01002438BT87X AUDIO DRIVER
2439M: Clemens Ladisch <clemens@ladisch.de>
2440L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2441T: git git://git.alsa-project.org/alsa-kernel.git
2442S: Maintained
2443F: Documentation/sound/alsa/Bt87x.txt
2444F: sound/pci/bt87x.c
2445
Michael Bueschff1d5c22008-07-25 01:46:10 -07002446BT8XXGPIO DRIVER
Michael Büscheb032b92011-07-04 20:50:05 +02002447M: Michael Buesch <m@bues.ch>
Michael Bueschff1d5c22008-07-25 01:46:10 -07002448W: http://bu3sch.de/btgpio.php
2449S: Maintained
Joe Perches72dbb702012-01-10 15:08:46 -08002450F: drivers/gpio/gpio-bt8xx.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07002451
Joe Percheseb1eb042009-01-21 10:49:16 -05002452BTRFS FILE SYSTEM
Chris Masonc0778e22013-12-03 20:16:03 -05002453M: Chris Mason <clm@fb.com>
2454M: Josef Bacik <jbacik@fb.com>
Jiri Slabyd8130622015-07-17 16:23:20 -07002455M: David Sterba <dsterba@suse.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05002456L: linux-btrfs@vger.kernel.org
2457W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08002458Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Liu Bo9c106402012-06-14 02:23:25 -06002459T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
Joe Percheseb1eb042009-01-21 10:49:16 -05002460S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002461F: Documentation/filesystems/btrfs.txt
2462F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05002463
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02002465M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002466L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07002467W: http://linuxtv.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02002468T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehabf96236e2012-11-02 11:14:18 -02002469S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07002470F: Documentation/video4linux/bttv/
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002471F: drivers/media/pci/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472
Khalid Aziz1f349232013-06-25 09:57:27 -06002473BUSLOGIC SCSI DRIVER
2474M: Khalid Aziz <khalid@gonehiking.org>
2475L: linux-scsi@vger.kernel.org
2476S: Maintained
2477F: drivers/scsi/BusLogic.*
2478F: drivers/scsi/FlashPoint.*
2479
Clemens Ladischaf399172011-01-10 16:32:54 +01002480C-MEDIA CMI8788 DRIVER
2481M: Clemens Ladisch <clemens@ladisch.de>
2482L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2483T: git git://git.alsa-project.org/alsa-kernel.git
2484S: Maintained
2485F: sound/pci/oxygen/
2486
Mark Salter21413552011-10-04 11:21:42 -04002487C6X ARCHITECTURE
2488M: Mark Salter <msalter@redhat.com>
2489M: Aurelien Jacquiot <a-jacquiot@ti.com>
2490L: linux-c6x-dev@linux-c6x.org
2491W: http://www.linux-c6x.org/wiki/index.php/Main_Page
2492S: Maintained
2493F: arch/c6x/
2494
David Howellsa5432f52009-04-20 15:46:45 +01002495CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07002496M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01002497L: linux-cachefs@redhat.com
2498S: Supported
2499F: Documentation/filesystems/caching/cachefiles.txt
2500F: fs/cachefiles/
2501
Hans Verkuilc815ca32012-11-23 07:05:54 -03002502CADET FM/AM RADIO RECEIVER DRIVER
2503M: Hans Verkuil <hverkuil@xs4all.nl>
2504L: linux-media@vger.kernel.org
2505T: git git://linuxtv.org/media_tree.git
2506W: http://linuxtv.org
2507S: Maintained
2508F: drivers/media/radio/radio-cadet*
2509
Jonathan Corbet77d51402007-03-22 19:44:17 -03002510CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002511M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002512L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02002513T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03002514S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002515F: Documentation/video4linux/cafe_ccic
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002516F: drivers/media/platform/marvell-ccic/
Jonathan Corbet77d51402007-03-22 19:44:17 -03002517
Joe Perches201b6ba2010-09-07 20:33:24 +00002518CAIF NETWORK LAYER
sjur.brandeland@stericsson.com5c574f52013-04-22 23:57:00 +00002519M: Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
Joe Perches201b6ba2010-09-07 20:33:24 +00002520L: netdev@vger.kernel.org
2521S: Supported
2522F: Documentation/networking/caif/
2523F: drivers/net/caif/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002524F: include/uapi/linux/caif/
Joe Perches201b6ba2010-09-07 20:33:24 +00002525F: include/net/caif/
2526F: net/caif/
2527
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02002528CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07002529M: Muli Ben-Yehuda <muli@il.ibm.com>
2530M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02002531L: discuss@x86-64.org
2532S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002533F: arch/x86/kernel/pci-calgary_64.c
2534F: arch/x86/kernel/tce_64.c
2535F: arch/x86/include/asm/calgary.h
2536F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02002537
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002538CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00002539M: Oliver Hartkopp <socketcan@hartkopp.net>
Marc Kleine-Buddef7214cf2015-03-06 09:00:38 +01002540M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00002541L: linux-can@vger.kernel.org
Marc Kleine-Budde84b0d712015-03-06 08:58:33 +01002542W: https://github.com/linux-can
Marc Kleine-Budde870482a2015-01-15 16:56:26 +01002543T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2544T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002545S: Maintained
John Whitmoref35f6c82013-12-06 12:49:08 +00002546F: Documentation/networking/can.txt
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00002547F: net/can/
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00002548F: include/linux/can/core.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002549F: include/uapi/linux/can.h
2550F: include/uapi/linux/can/bcm.h
2551F: include/uapi/linux/can/raw.h
2552F: include/uapi/linux/can/gw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002553
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00002554CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002555M: Wolfgang Grandegger <wg@grandegger.com>
Oliver Hartkoppec782132012-01-03 08:40:28 +00002556M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00002557L: linux-can@vger.kernel.org
Marc Kleine-Budde84b0d712015-03-06 08:58:33 +01002558W: https://github.com/linux-can
Marc Kleine-Budde870482a2015-01-15 16:56:26 +01002559T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2560T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00002561S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00002562F: drivers/net/can/
2563F: include/linux/can/dev.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00002564F: include/linux/can/platform/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002565F: include/uapi/linux/can/error.h
2566F: include/uapi/linux/can/netlink.h
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00002567
James Morris95d16c72012-03-16 12:05:48 +11002568CAPABILITIES
2569M: Serge Hallyn <serge.hallyn@canonical.com>
2570L: linux-security-module@vger.kernel.org
Joe Perches63059022012-06-07 14:21:10 -07002571S: Supported
James Morris95d16c72012-03-16 12:05:48 +11002572F: include/linux/capability.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002573F: include/uapi/linux/capability.h
Joe Perches63059022012-06-07 14:21:10 -07002574F: security/commoncap.c
James Morris38a94112012-04-09 11:03:36 +10002575F: kernel/capability.c
James Morris95d16c72012-03-16 12:05:48 +11002576
Kevin Tsaib84894c2015-01-15 17:41:04 -08002577CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
2578M: Kevin Tsai <ktsai@capellamicro.com>
2579S: Maintained
2580F: drivers/iio/light/cm*
2581F: Documentation/devicetree/bindings/i2c/trivial-devices.txt
2582
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002583CAVIUM LIQUIDIO NETWORK DRIVER
2584M: Derek Chickles <derek.chickles@caviumnetworks.com>
2585M: Satanand Burla <satananda.burla@caviumnetworks.com>
2586M: Felix Manlunas <felix.manlunas@caviumnetworks.com>
2587M: Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
2588L: netdev@vger.kernel.org
2589W: http://www.cavium.com
2590S: Supported
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002591F: drivers/net/ethernet/cavium/liquidio/
2592
Varka Bhadramef0bbac2014-10-29 16:15:22 +05302593CC2520 IEEE-802.15.4 RADIO DRIVER
2594M: Varka Bhadram <varkabhadram@gmail.com>
2595L: linux-wpan@vger.kernel.org
2596S: Maintained
2597F: drivers/net/ieee802154/cc2520.c
2598F: include/linux/spi/cc2520.h
2599F: Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
2600
Arnd Bergmannb8154542008-05-16 11:10:59 +02002601CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07002602M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002603L: linuxppc-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02002604W: http://www.ibm.com/developerworks/power/cell/
2605S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002606F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07002607F: arch/powerpc/include/asm/spu*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002608F: arch/powerpc/include/uapi/asm/spu*.h
Joe Perches679655d2009-04-07 20:44:32 -07002609F: arch/powerpc/oprofile/*cell*
2610F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02002611
Sage Weil398ecff52015-07-09 11:46:14 -04002612CEPH COMMON CODE (LIBCEPH)
2613M: Ilya Dryomov <idryomov@gmail.com>
Joe Perchese43cdb52015-06-25 15:02:03 -07002614M: "Yan, Zheng" <zyan@redhat.com>
Sage Weil0f5417c2015-02-19 10:10:40 -08002615M: Sage Weil <sage@redhat.com>
Sage Weil82593f82010-03-29 09:53:23 -07002616L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07002617W: http://ceph.com/
Sage Weilfb99f882009-12-03 15:04:08 -08002618T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil6e67b7a2015-07-09 11:47:37 -04002619T: git git://github.com/ceph/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07002620S: Supported
Joe Perches14430812013-09-11 14:23:50 -07002621F: net/ceph/
2622F: include/linux/ceph/
2623F: include/linux/crush/
Sage Weil9030aaf2009-10-06 11:31:15 -07002624
Sage Weil398ecff52015-07-09 11:46:14 -04002625CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
2626M: "Yan, Zheng" <zyan@redhat.com>
2627M: Sage Weil <sage@redhat.com>
2628M: Ilya Dryomov <idryomov@gmail.com>
2629L: ceph-devel@vger.kernel.org
2630W: http://ceph.com/
2631T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil6e67b7a2015-07-09 11:47:37 -04002632T: git git://github.com/ceph/ceph-client.git
Sage Weil398ecff52015-07-09 11:46:14 -04002633S: Supported
2634F: Documentation/filesystems/ceph.txt
2635F: fs/ceph/
2636
David Howellscfc411e2015-08-14 15:20:41 +01002637CERTIFICATE HANDLING:
2638M: David Howells <dhowells@redhat.com>
2639M: David Woodhouse <dwmw2@infradead.org>
2640L: keyrings@linux-nfs.org
2641S: Maintained
2642F: Documentation/module-signing.txt
2643F: certs/
2644F: scripts/extract-cert.c
2645
David Vrabel18332a82008-09-17 16:34:44 +01002646CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01002647L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01002648S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002649F: Documentation/usb/WUSB-Design-overview.txt
2650F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00002651F: drivers/usb/host/hwa-hc.c
2652F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07002653F: drivers/usb/wusbcore/
2654F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01002655
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002656CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002657M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07002658W: http://miguelojeda.es/auxdisplay.htm
2659W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002660S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002661F: drivers/auxdisplay/cfag12864b.c
2662F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002663
2664CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002665M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07002666W: http://miguelojeda.es/auxdisplay.htm
2667W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002668S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002669F: drivers/auxdisplay/cfag12864bfb.c
2670F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002671
Johannes Berg704232c2007-04-23 12:20:05 -07002672CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07002673M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07002674L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02002675W: http://wireless.kernel.org/
2676T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2677T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Johannes Berg704232c2007-04-23 12:20:05 -07002678S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002679F: include/uapi/linux/nl80211.h
Joe Perches679655d2009-04-07 20:44:32 -07002680F: include/net/cfg80211.h
2681F: net/wireless/*
2682X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07002683
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002684CHAR and MISC DRIVERS
2685M: Arnd Bergmann <arnd@arndb.de>
Greg KH879a5a02012-01-31 20:02:00 -08002686M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002687T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Greg KH879a5a02012-01-31 20:02:00 -08002688S: Supported
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002689F: drivers/char/*
2690F: drivers/misc/*
Robert P. J. Day471322a2014-05-16 04:41:09 -04002691F: include/linux/miscdevice.h
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002692
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002693CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07002694M: Andy Whitcroft <apw@canonical.com>
Joe Perches10d83f02013-02-21 16:44:15 -08002695M: Joe Perches <joe@perches.com>
2696S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002697F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002698
Harry Weif8407f262011-02-25 14:44:15 -08002699CHINESE DOCUMENTATION
2700M: Harry Wei <harryxiyou@gmail.com>
Joe Perches97401532012-12-17 16:00:00 -08002701L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
Harry Weif8407f262011-02-25 14:44:15 -08002702L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
2703S: Maintained
2704F: Documentation/zh_CN/
2705
Alexander Shishkin2721ea22012-05-11 17:25:59 +03002706CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
Greg Kroah-Hartmaneee52f92013-12-02 15:43:48 -08002707M: Peter Chen <Peter.Chen@freescale.com>
Peter Chen83738562015-03-23 19:57:36 +08002708T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
Alexander Shishkin2721ea22012-05-11 17:25:59 +03002709L: linux-usb@vger.kernel.org
2710S: Maintained
2711F: drivers/usb/chipidea/
2712
Hans de Goedea93ad652015-03-21 20:40:45 -07002713CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
2714M: Hans de Goede <hdegoede@redhat.com>
2715L: linux-input@vger.kernel.org
2716S: Maintained
2717F: Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
2718F: drivers/input/touchscreen/chipone_icn8318.c
2719
Olof Johanssonab043102013-11-07 14:25:45 -08002720CHROME HARDWARE PLATFORM SUPPORT
2721M: Olof Johansson <olof@lixom.net>
2722S: Maintained
2723F: drivers/platform/chrome/
2724
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00002725CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri2360d2e2011-02-04 16:17:26 +00002726M: Christian Benvenuti <benve@cisco.com>
govindarajulu.v001e1c12013-09-04 11:17:18 +05302727M: Sujith Sankar <ssujith@cisco.com>
Govindarajulu Varadarajanc327e8f2014-05-20 03:14:32 +05302728M: Govindarajulu Varadarajan <_govind@gmx.com>
Neel Patel5c6652f2012-02-03 08:25:25 +00002729M: Neel Patel <neepatel@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08002730S: Supported
Jeff Kirshera6a55802011-05-13 22:20:35 -07002731F: drivers/net/ethernet/cisco/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08002732
Upinder Malhie3cf00d2013-09-10 03:38:16 +00002733CISCO VIC LOW LATENCY NIC DRIVER
Joe Perchesb75f0052014-03-03 15:38:37 -08002734M: Upinder Malhi <umalhi@cisco.com>
2735S: Supported
2736F: drivers/infiniband/hw/usnic
Upinder Malhie3cf00d2013-09-10 03:38:16 +00002737
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002738CIRRUS LOGIC EP93XX ETHERNET DRIVER
H Hartley Sweeten55879122011-06-09 15:00:21 -07002739M: Hartley Sweeten <hsweeten@visionengravers.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002740L: netdev@vger.kernel.org
2741S: Maintained
Jeff Kirsher57d0b7a2011-07-16 23:50:52 -07002742F: drivers/net/ethernet/cirrus/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002743
Mark Brown3d4cfdc2014-02-04 20:28:12 +00002744CIRRUS LOGIC AUDIO CODEC DRIVERS
2745M: Brian Austin <brian.austin@cirrus.com>
2746M: Paul Handrigan <Paul.Handrigan@cirrus.com>
2747L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2748S: Maintained
2749F: sound/soc/codecs/cs*
2750
Konrad Rzeszutek Wilk94574d92012-03-19 11:47:18 -04002751CLEANCACHE API
2752M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2753L: linux-kernel@vger.kernel.org
2754S: Maintained
2755F: mm/cleancache.c
2756F: include/linux/cleancache.h
2757
Russell Kingd4275352009-04-16 14:05:27 +01002758CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07002759M: Russell King <linux@arm.linux.org.uk>
Paul Walmsleyaa571b12015-03-25 18:32:59 +00002760L: linux-clk@vger.kernel.org
Joe Perches37417042012-03-23 15:01:58 -07002761S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01002762F: include/linux/clk.h
2763
John Stultz9222d242013-07-16 16:45:31 +02002764CLOCKSOURCE, CLOCKEVENT DRIVERS
2765M: Daniel Lezcano <daniel.lezcano@linaro.org>
2766M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar981c3a42014-01-21 10:59:20 +01002767L: linux-kernel@vger.kernel.org
John Stultz9222d242013-07-16 16:45:31 +02002768T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
2769S: Supported
2770F: drivers/clocksource
2771
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002772CISCO FCOE HBA DRIVER
Hiral Patel8fc89a72012-12-10 01:21:29 -08002773M: Hiral Patel <hiralpat@cisco.com>
2774M: Suma Ramars <sramars@cisco.com>
Abhijeet Joglekard7e01dc2011-06-13 21:21:17 -07002775M: Brian Uchino <buchino@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002776L: linux-scsi@vger.kernel.org
2777S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07002778F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002779
Narsimhulu Musinic8806b62015-05-29 01:04:01 -07002780CISCO SCSI HBA DRIVER
2781M: Narsimhulu Musini <nmusini@cisco.com>
2782M: Sesidhar Baddela <sebaddel@cisco.com>
2783L: linux-scsi@vger.kernel.org
2784S: Supported
2785F: drivers/scsi/snic/
2786
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002787CMPC ACPI DRIVER
2788M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2789M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd09448532010-02-11 10:40:13 -05002790L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002791S: Supported
2792F: drivers/platform/x86/classmate-laptop.c
2793
Hans Verkuil85756a02015-05-12 08:52:21 -03002794COBALT MEDIA DRIVER
2795M: Hans Verkuil <hans.verkuil@cisco.com>
2796L: linux-media@vger.kernel.org
2797T: git git://linuxtv.org/media_tree.git
2798W: http://linuxtv.org
2799S: Supported
2800F: drivers/media/pci/cobalt/
2801
Nicolas Palix74425ee2010-06-06 17:15:01 +02002802COCCINELLE/Semantic Patches (SmPL)
Nicolas Palix26de9c22012-09-20 22:52:42 +02002803M: Julia Lawall <Julia.Lawall@lip6.fr>
Nicolas Palix74425ee2010-06-06 17:15:01 +02002804M: Gilles Muller <Gilles.Muller@lip6.fr>
Nicolas Palix26de9c22012-09-20 22:52:42 +02002805M: Nicolas Palix <nicolas.palix@imag.fr>
Jiri Slabyd8130622015-07-17 16:23:20 -07002806M: Michal Marek <mmarek@suse.com>
Nicolas Palix26de9c22012-09-20 22:52:42 +02002807L: cocci@systeme.lip6.fr (moderated for non-subscribers)
Nicolas Palixc00b5112013-06-06 23:39:53 +02002808T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
Nicolas Palix74425ee2010-06-06 17:15:01 +02002809W: http://coccinelle.lip6.fr/
2810S: Supported
Nicolas Palix4b92b2a2013-06-20 13:10:55 +02002811F: Documentation/coccinelle.txt
Nicolas Palix74425ee2010-06-06 17:15:01 +02002812F: scripts/coccinelle/
2813F: scripts/coccicheck
2814
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002816M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817M: coda@cs.cmu.edu
2818L: codalist@coda.cs.cmu.edu
2819W: http://www.coda.cs.cmu.edu/
2820S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002821F: Documentation/filesystems/coda.txt
2822F: fs/coda/
2823F: include/linux/coda*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002824F: include/uapi/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825
Philipp Zabel0b142612014-11-04 07:26:35 -03002826CODA V4L2 MEM2MEM DRIVER
2827M: Philipp Zabel <p.zabel@pengutronix.de>
2828L: linux-media@vger.kernel.org
2829S: Maintained
2830F: Documentation/devicetree/bindings/media/coda.txt
2831F: drivers/media/platform/coda/
2832
Mike Turquette7704add2012-05-02 18:37:45 -07002833COMMON CLK FRAMEWORK
Michael Turquettea85fa002015-06-17 13:41:04 -07002834M: Michael Turquette <mturquette@baylibre.com>
Michael Turquettef9561652014-11-12 16:43:47 -08002835M: Stephen Boyd <sboyd@codeaurora.org>
Paul Walmsleyaa571b12015-03-25 18:32:59 +00002836L: linux-clk@vger.kernel.org
Michael Turquettebaeb0d92014-11-13 17:18:20 -08002837T: git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
Mike Turquette7704add2012-05-02 18:37:45 -07002838S: Maintained
Stephen Warren60bea3b2013-06-05 09:50:30 -06002839F: drivers/clk/
2840X: drivers/clk/clkdev.c
Mike Turquette7704add2012-05-02 18:37:45 -07002841F: include/linux/clk-pr*
Stephen Warren60bea3b2013-06-05 09:50:30 -06002842F: include/linux/clk/
Mike Turquette7704add2012-05-02 18:37:45 -07002843
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002844COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07002845M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04002846L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08002847L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002848W: http://linux-cifs.samba.org/
Kevin Cernekeebb1d5dd2014-11-10 13:09:24 -08002849T: git git://git.samba.org/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002850S: Supported
Joe Perchesec421a72014-08-08 14:24:59 -07002851F: Documentation/filesystems/cifs/
Joe Perches679655d2009-04-07 20:44:32 -07002852F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002853
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002855M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002856L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002857S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002858F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859
2860COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002861M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002862L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002863S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002864F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865
2866COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002867M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002868L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002869S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002870F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002872COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002873M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05002874L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002875S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002876F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002877
Simon Arlott949be0f2007-03-06 02:47:46 -08002878CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002879M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02002880L: accessrunner-general@lists.sourceforge.net
2881W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08002882S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002883F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08002884
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002885CONFIGFS
Joel Beckerd6351db2011-01-07 18:10:32 -08002886M: Joel Becker <jlbec@evilplan.org>
2887T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002888S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002889F: fs/configfs/
2890F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002891
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002892CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07002893M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002894L: netdev@vger.kernel.org
2895S: Maintained
2896F: drivers/connector/
2897
Tejun Heoa3e33542014-05-13 15:49:58 -04002898CONTROL GROUP (CGROUP)
Paul Menage860ca0e2011-11-18 14:22:09 -08002899M: Tejun Heo <tj@kernel.org>
Li Zefanad50c152012-03-29 08:53:30 -07002900M: Li Zefan <lizefan@huawei.com>
Tejun Heo4d205672015-06-12 17:15:23 -05002901M: Johannes Weiner <hannes@cmpxchg.org>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08002902L: cgroups@vger.kernel.org
Paul Menage860ca0e2011-11-18 14:22:09 -08002903T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002904S: Maintained
Tejun Heoa3e33542014-05-13 15:49:58 -04002905F: Documentation/cgroups/
Joe Perches679655d2009-04-07 20:44:32 -07002906F: include/linux/cgroup*
2907F: kernel/cgroup*
Tejun Heoa3e33542014-05-13 15:49:58 -04002908
2909CONTROL GROUP - CPUSET
2910M: Li Zefan <lizefan@huawei.com>
2911L: cgroups@vger.kernel.org
2912W: http://www.bullopensource.org/cpuset/
2913W: http://oss.sgi.com/projects/cpusets/
2914T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2915S: Maintained
2916F: Documentation/cgroups/cpusets.txt
2917F: include/linux/cpuset.h
2918F: kernel/cpuset.c
2919
2920CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
2921M: Johannes Weiner <hannes@cmpxchg.org>
Michal Hockofbd7dc72015-07-17 16:23:26 -07002922M: Michal Hocko <mhocko@kernel.org>
Tejun Heoa3e33542014-05-13 15:49:58 -04002923L: cgroups@vger.kernel.org
2924L: linux-mm@kvack.org
2925S: Maintained
2926F: mm/memcontrol.c
Johannes Weiner5d1ea482014-12-10 15:44:55 -08002927F: mm/swap_cgroup.c
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002928
Rudolf Marekbebe4672007-05-08 17:22:02 +02002929CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02002930M: Fenghua Yu <fenghua.yu@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02002931L: lm-sensors@lm-sensors.org
2932S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002933F: Documentation/hwmon/coretemp
2934F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02002935
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002937M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938W: http://www.fi.muni.cz/~kas/cosa/
2939S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002940F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941
Florian Fainelli4371ee32009-06-01 02:43:17 -07002942CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002943M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07002944L: netdev@vger.kernel.org
2945S: Maintained
Jeff Kirsherb544dba2011-06-14 12:56:50 -07002946F: drivers/net/ethernet/ti/cpmac.c
Florian Fainelli4371ee32009-06-01 02:43:17 -07002947
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948CPU FREQUENCY DRIVERS
Joe Perches9c3646d2015-06-25 15:02:00 -07002949M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
viresh kumar45c009a2013-04-26 12:53:16 +00002950M: Viresh Kumar <viresh.kumar@linaro.org>
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002951L: linux-pm@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952S: Maintained
Viresh Kumar27209d92013-05-29 12:23:14 +05302953T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2954T: git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
Joe Perches679655d2009-04-07 20:44:32 -07002955F: drivers/cpufreq/
2956F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957
Viresh Kumar8a67f0e2013-04-01 12:57:49 +00002958CPU FREQUENCY DRIVERS - ARM BIG LITTLE
2959M: Viresh Kumar <viresh.kumar@linaro.org>
Sudeep Holla171d0ba2014-02-11 11:42:32 +00002960M: Sudeep Holla <sudeep.holla@arm.com>
Viresh Kumar8a67f0e2013-04-01 12:57:49 +00002961L: linux-pm@vger.kernel.org
2962W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php
2963S: Maintained
2964F: drivers/cpufreq/arm_big_little.h
2965F: drivers/cpufreq/arm_big_little.c
2966F: drivers/cpufreq/arm_big_little_dt.c
2967
Lorenzo Pieralisi14d2c342013-06-12 17:40:01 +02002968CPUIDLE DRIVER - ARM BIG LITTLE
Joe Perchesb75f0052014-03-03 15:38:37 -08002969M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2970M: Daniel Lezcano <daniel.lezcano@linaro.org>
2971L: linux-pm@vger.kernel.org
2972L: linux-arm-kernel@lists.infradead.org
Joe Perchescea83212014-03-03 15:38:38 -08002973T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
Joe Perchesb75f0052014-03-03 15:38:37 -08002974S: Maintained
2975F: drivers/cpuidle/cpuidle-big_little.c
Lorenzo Pieralisi14d2c342013-06-12 17:40:01 +02002976
Bartlomiej Zolnierkiewicz0c570c12014-12-02 16:41:35 +01002977CPUIDLE DRIVER - ARM EXYNOS
2978M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
2979M: Daniel Lezcano <daniel.lezcano@linaro.org>
2980M: Kukjin Kim <kgene@kernel.org>
2981L: linux-pm@vger.kernel.org
2982L: linux-samsung-soc@vger.kernel.org
2983S: Supported
2984F: drivers/cpuidle/cpuidle-exynos.c
2985F: arch/arm/mach-exynos/pm.c
2986
Daniel Lezcanoa8e39c32013-04-26 11:05:44 +00002987CPUIDLE DRIVERS
Joe Perches9c3646d2015-06-25 15:02:00 -07002988M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Daniel Lezcanoa8e39c32013-04-26 11:05:44 +00002989M: Daniel Lezcano <daniel.lezcano@linaro.org>
2990L: linux-pm@vger.kernel.org
2991S: Maintained
Joe Perchescea83212014-03-03 15:38:38 -08002992T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
Daniel Lezcanoa8e39c32013-04-26 11:05:44 +00002993F: drivers/cpuidle/*
2994F: include/linux/cpuidle.h
2995
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002997M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002999F: arch/x86/kernel/cpuid.c
3000F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02003002CPU POWER MONITORING SUBSYSTEM
Jiri Slabyd8130622015-07-17 16:23:20 -07003003M: Thomas Renninger <trenn@suse.com>
Thomas Renninger103f1792014-07-22 16:06:01 +02003004L: linux-pm@vger.kernel.org
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02003005S: Maintained
Joe Perches14430812013-09-11 14:23:50 -07003006F: tools/power/cpupower/
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02003007
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01003009W: http://sourceforge.net/projects/cramfs/
Michael Opdenacker54886a72013-11-12 15:08:35 -08003010S: Orphan / Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07003011F: Documentation/filesystems/cramfs.txt
3012F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013
3014CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003015M: Mikael Starvik <starvik@axis.com>
3016M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02003017L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018W: http://developer.axis.com
3019S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003020F: arch/cris/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003021F: drivers/tty/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022
3023CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07003024M: Herbert Xu <herbert@gondor.apana.org.au>
3025M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003027T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003029F: Documentation/crypto/
Stephan Mueller2ca87a12015-03-06 21:36:21 +01003030F: Documentation/DocBook/crypto-API.tmpl
Joe Perches679655d2009-04-07 20:44:32 -07003031F: arch/*/crypto/
3032F: crypto/
3033F: drivers/crypto/
3034F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035
Neil Horman5b07bd52009-02-05 16:03:04 +11003036CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003037M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11003038L: linux-crypto@vger.kernel.org
3039S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07003040F: crypto/ansi_cprng.c
3041F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11003042
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01003043CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07003044M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01003045S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003046F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01003047
Solomon Peachya910e4a2013-05-24 20:04:38 -04003048CW1200 WLAN driver
Joe Perchesb75f0052014-03-03 15:38:37 -08003049M: Solomon Peachy <pizza@shaftnet.org>
3050S: Maintained
3051F: drivers/net/wireless/cw1200/
Solomon Peachya910e4a2013-05-24 20:04:38 -04003052
Hans Verkuil6d8425b12008-05-05 18:25:22 -03003053CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03003054M: Andy Walls <awalls@md.metrocast.net>
Joe Perches7b212ed2014-12-10 15:51:24 -08003055L: ivtv-devel@ivtvdriver.org (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003056L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003057T: git git://linuxtv.org/media_tree.git
Hans Verkuil6d8425b12008-05-05 18:25:22 -03003058W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07003059W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b12008-05-05 18:25:22 -03003060S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003061F: Documentation/video4linux/cx18.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03003062F: drivers/media/pci/cx18/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02003063F: include/uapi/linux/ivtv*
Hans Verkuil6d8425b12008-05-05 18:25:22 -03003064
Hans Verkuil3f101d92012-11-23 07:00:02 -03003065CX2341X MPEG ENCODER HELPER MODULE
3066M: Hans Verkuil <hverkuil@xs4all.nl>
3067L: linux-media@vger.kernel.org
3068T: git git://linuxtv.org/media_tree.git
3069W: http://linuxtv.org
3070S: Maintained
Cesar Eduardo Barrosc368360b2013-03-02 21:53:42 -03003071F: drivers/media/common/cx2341x*
Hans Verkuil3f101d92012-11-23 07:00:02 -03003072F: include/media/cx2341x*
3073
Patrick Boettcherb8fe6e22015-04-28 02:53:13 -03003074CX24120 MEDIA DRIVER
3075M: Jemma Denson <jdenson@gmail.com>
3076M: Patrick Boettcher <patrick.boettcher@posteo.de>
3077L: linux-media@vger.kernel.org
3078W: http://linuxtv.org/
3079Q: http://patchwork.linuxtv.org/project/linux-media/list/
3080S: Maintained
3081F: drivers/media/dvb-frontends/cx24120*
3082
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02003083CX88 VIDEO4LINUX DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02003084M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02003085L: linux-media@vger.kernel.org
3086W: http://linuxtv.org
3087T: git git://linuxtv.org/media_tree.git
3088S: Odd fixes
3089F: Documentation/video4linux/cx88/
3090F: drivers/media/pci/cx88/
Knut Petersen9fa68ea2005-09-09 13:04:56 -07003091
Antti Palosaari91952bc2012-10-01 12:28:46 -03003092CXD2820R MEDIA DRIVER
3093M: Antti Palosaari <crope@iki.fi>
3094L: linux-media@vger.kernel.org
3095W: http://linuxtv.org/
3096W: http://palosaari.fi/linux/
3097Q: http://patchwork.linuxtv.org/project/linux-media/list/
3098T: git git://linuxtv.org/anttip/media_tree.git
3099S: Maintained
3100F: drivers/media/dvb-frontends/cxd2820r*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07003101
Steve Wisee5ec3782008-05-20 14:06:33 -07003102CXGB3 ETHERNET DRIVER (CXGB3)
Divy Le Raycdc99232013-11-11 15:01:39 -08003103M: Santosh Raspatur <santosh@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07003104L: netdev@vger.kernel.org
3105W: http://www.chelsio.com
3106S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07003107F: drivers/net/ethernet/chelsio/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07003108
Anish Bhattd8ae3c32014-11-04 15:19:22 -08003109CXGB3 ISCSI DRIVER (CXGB3I)
Joe Perches49e7d9d2015-04-15 16:17:31 -07003110M: Karen Xie <kxie@chelsio.com>
3111L: linux-scsi@vger.kernel.org
3112W: http://www.chelsio.com
3113S: Supported
3114F: drivers/scsi/cxgbi/cxgb3i
Anish Bhattd8ae3c32014-11-04 15:19:22 -08003115
Steve Wisee5ec3782008-05-20 14:06:33 -07003116CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07003117M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003118L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07003119W: http://www.openfabrics.org
3120S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003121F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07003122
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003123CXGB4 ETHERNET DRIVER (CXGB4)
Dimitris Michailidis56f16c72014-06-13 14:11:14 -07003124M: Hariprasad S <hariprasad@chelsio.com>
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003125L: netdev@vger.kernel.org
3126W: http://www.chelsio.com
3127S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07003128F: drivers/net/ethernet/chelsio/cxgb4/
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003129
Anish Bhattd8ae3c32014-11-04 15:19:22 -08003130CXGB4 ISCSI DRIVER (CXGB4I)
Joe Perches49e7d9d2015-04-15 16:17:31 -07003131M: Karen Xie <kxie@chelsio.com>
3132L: linux-scsi@vger.kernel.org
3133W: http://www.chelsio.com
3134S: Supported
3135F: drivers/scsi/cxgbi/cxgb4i
Anish Bhattd8ae3c32014-11-04 15:19:22 -08003136
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003137CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3138M: Steve Wise <swise@chelsio.com>
3139L: linux-rdma@vger.kernel.org
3140W: http://www.openfabrics.org
3141S: Supported
3142F: drivers/infiniband/hw/cxgb4/
3143
Casey Leedom5c20a5c2010-07-19 17:55:33 -07003144CXGB4VF ETHERNET DRIVER (CXGB4VF)
3145M: Casey Leedom <leedom@chelsio.com>
3146L: netdev@vger.kernel.org
3147W: http://www.chelsio.com
3148S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07003149F: drivers/net/ethernet/chelsio/cxgb4vf/
Casey Leedom5c20a5c2010-07-19 17:55:33 -07003150
Ian Munsiea9282d02014-10-08 19:55:05 +11003151CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3152M: Ian Munsie <imunsie@au1.ibm.com>
3153M: Michael Neuling <mikey@neuling.org>
3154L: linuxppc-dev@lists.ozlabs.org
3155S: Supported
3156F: drivers/misc/cxl/
Michael Neulingec249dd2015-05-27 16:07:16 +10003157F: include/misc/cxl*
Ian Munsiea9282d02014-10-08 19:55:05 +11003158F: include/uapi/misc/cxl.h
3159F: Documentation/powerpc/cxl.txt
3160F: Documentation/powerpc/cxl.txt
3161F: Documentation/ABI/testing/sysfs-class-cxl
3162
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08003163STMMAC ETHERNET DRIVER
3164M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
3165L: netdev@vger.kernel.org
3166W: http://www.stlinux.com
3167S: Supported
Jeff Kirsher7ac66532011-05-16 00:05:19 -07003168F: drivers/net/ethernet/stmicro/stmmac/
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08003169
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003171M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07003172L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173W: http://www.arm.linux.org.uk/
3174S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09003175F: drivers/video/fbdev/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07003176
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08003179S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07003180F: drivers/tty/cyclades.c
Joe Perches679655d2009-04-07 20:44:32 -07003181F: include/linux/cyclades.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003182F: include/uapi/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183
3184CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07003185W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08003186S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003187F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188
Antti Palosaari402f6ae2013-04-09 21:30:41 -03003189CYPRESS_FIRMWARE MEDIA DRIVER
3190M: Antti Palosaari <crope@iki.fi>
3191L: linux-media@vger.kernel.org
3192W: http://linuxtv.org/
3193W: http://palosaari.fi/linux/
3194Q: http://patchwork.linuxtv.org/project/linux-media/list/
3195T: git git://linuxtv.org/anttip/media_tree.git
3196S: Maintained
3197F: drivers/media/common/cypress_firmware*
3198
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08003199CYTTSP TOUCHSCREEN DRIVER
Javier Martinez Canillasbe9a6f42013-08-29 08:43:58 -07003200M: Ferruh Yigit <fery@cypress.com>
Joe Perches63059022012-06-07 14:21:10 -07003201L: linux-input@vger.kernel.org
Javier Martinez Canillasbe9a6f42013-08-29 08:43:58 -07003202S: Supported
Joe Perches63059022012-06-07 14:21:10 -07003203F: drivers/input/touchscreen/cyttsp*
3204F: include/linux/input/cyttsp.h
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08003205
Joshua Kinardaaaf5fb2015-02-16 16:00:26 -08003206DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3207M: Joshua Kinard <kumba@gentoo.org>
3208S: Maintained
3209F: drivers/rtc/rtc-ds1685.c
3210F: include/linux/rtc/ds1685.h
3211
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07003213M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214W: http://yaina.de/jreuter/
3215W: http://www.qsl.net/dl1bke/
3216L: linux-hams@vger.kernel.org
3217S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003218F: net/ax25/af_ax25.c
3219F: net/ax25/ax25_dev.c
3220F: net/ax25/ax25_ds_*
3221F: net/ax25/ax25_in.c
3222F: net/ax25/ax25_out.c
3223F: net/ax25/ax25_timer.c
3224F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003225
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003226DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003227L: netdev@vger.kernel.org
Joe Perches5ff77422011-05-24 17:13:22 -07003228S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003229F: Documentation/networking/dmfe.txt
Joe Perches0f04e2a2012-01-10 15:08:56 -08003230F: drivers/net/ethernet/dec/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003231
3232DC390/AM53C974 SCSI driver
Jiri Slabyd8130622015-07-17 16:23:20 -07003233M: Hannes Reinecke <hare@suse.com>
Hannes Reinecke71bd8492014-11-24 15:37:30 +01003234L: linux-scsi@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003235S: Maintained
Hannes Reinecke71bd8492014-11-24 15:37:30 +01003236F: drivers/scsi/am53c974.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003237
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238DC395x SCSI driver
Oliver Neukum61eee9a2012-08-01 14:32:55 +02003239M: Oliver Neukum <oliver@neukum.org>
Joe Perches8b58be82009-07-29 15:04:30 -07003240M: Ali Akcaagac <aliakc@web.de>
3241M: Jamie Lenehan <lenehan@twibble.org>
Randy Dunlapf5df58812006-07-14 00:24:29 -07003242L: dc395x@twibble.org
Joe Perchescf015e92014-02-25 15:01:47 -08003243W: http://twibble.org/dist/dc395x/
3244W: http://lists.twibble.org/mailman/listinfo/dc395x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003246F: Documentation/scsi/dc395x.txt
3247F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07003249DCCP PROTOCOL
Arnaldo Carvalho de Meloa89d0302011-02-26 16:28:54 +00003250M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07003251L: dccp@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00003252W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07003253S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003254F: include/linux/dccp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003255F: include/uapi/linux/dccp.h
Joe Perches679655d2009-04-07 20:44:32 -07003256F: include/linux/tfrc.h
3257F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07003258
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260W: http://linux-decnet.sourceforge.net
3261L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00003262S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003263F: Documentation/networking/decnet.txt
3264F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265
Maciej W. Rozyckiebff05b2014-04-06 23:04:00 +01003266DECSTATION PLATFORM SUPPORT
3267M: "Maciej W. Rozycki" <macro@linux-mips.org>
3268L: linux-mips@linux-mips.org
3269W: http://www.linux-mips.org/wiki/DECstation
3270S: Maintained
3271F: arch/mips/dec/
3272F: arch/mips/include/asm/dec/
3273F: arch/mips/include/asm/mach-dec/
3274
Linus Torvalds1da177e2005-04-16 15:20:36 -07003275DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003276M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277S: Maintained
Jeff Kirsher33f810b2011-07-31 00:06:29 -07003278F: drivers/net/fddi/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279
Matthew Garrettad8f07c2009-01-07 18:08:56 -08003280DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003281M: Matthew Garrett <mjg59@srcf.ucam.org>
Pali Rohárcdbff612015-03-29 15:38:50 +02003282M: Pali Rohár <pali.rohar@gmail.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05003283L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08003284S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003285F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08003286
Pali Rohár817a5cd2015-06-06 10:23:28 +02003287DELL LAPTOP RBTN DRIVER
3288M: Pali Rohár <pali.rohar@gmail.com>
3289S: Maintained
3290F: drivers/platform/x86/dell-rbtn.*
3291
Pali Rohárcdbff612015-03-29 15:38:50 +02003292DELL LAPTOP FREEFALL DRIVER
3293M: Pali Rohár <pali.rohar@gmail.com>
3294S: Maintained
3295F: drivers/platform/x86/dell-smo8800.c
3296
Linus Torvalds1da177e2005-04-16 15:20:36 -07003297DELL LAPTOP SMM DRIVER
Pali Rohára5afba12015-05-14 13:16:36 +02003298M: Pali Rohár <pali.rohar@gmail.com>
Guenter Roeckef3522f2014-12-21 20:54:37 +01003299S: Maintained
Pali Rohára5afba12015-05-14 13:16:36 +02003300F: drivers/hwmon/dell-smm-hwmon.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003301F: include/uapi/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302
Doug Warzecha90563ec2005-09-06 15:17:15 -07003303DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07003304M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07003305S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003306F: Documentation/dcdbas.txt
3307F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07003308
Matthew Garrett0b3f6102009-01-09 20:17:11 +00003309DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003310M: Matthew Garrett <mjg59@srcf.ucam.org>
Pali Rohárcdbff612015-03-29 15:38:50 +02003311M: Pali Rohár <pali.rohar@gmail.com>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00003312S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07003313F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00003314
Paul Zimmerman5efc75e2013-03-11 17:48:03 -07003315DESIGNWARE USB2 DRD IP DRIVER
Paul Zimmerman16272ae2015-01-15 20:14:10 +00003316M: John Youn <johnyoun@synopsys.com>
Paul Zimmerman5efc75e2013-03-11 17:48:03 -07003317L: linux-usb@vger.kernel.org
Paul Zimmerman18f340f2014-09-19 14:49:36 -07003318T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Paul Zimmerman5efc75e2013-03-11 17:48:03 -07003319S: Maintained
Paul Zimmerman197ba5f2014-01-13 13:50:09 -08003320F: drivers/usb/dwc2/
Paul Zimmerman5efc75e2013-03-11 17:48:03 -07003321
Felipe Balbi94ab23d2011-08-19 18:10:59 +03003322DESIGNWARE USB3 DRD IP DRIVER
3323M: Felipe Balbi <balbi@ti.com>
3324L: linux-usb@vger.kernel.org
3325L: linux-omap@vger.kernel.org
3326T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3327S: Maintained
3328F: drivers/usb/dwc3/
3329
Johannes Berg833c9542014-09-12 09:01:56 +02003330DEVICE COREDUMP (DEV_COREDUMP)
3331M: Johannes Berg <johannes@sipsolutions.net>
3332L: linux-kernel@vger.kernel.org
3333S: Maintained
3334F: drivers/base/devcoredump.c
3335F: include/linux/devcoredump.h
3336
Kyungmin Park89d07762012-01-10 15:09:09 -08003337DEVICE FREQUENCY (DEVFREQ)
3338M: MyungJoo Ham <myungjoo.ham@samsung.com>
3339M: Kyungmin Park <kyungmin.park@samsung.com>
MyungJoo Ham88476d32013-03-14 17:28:24 +09003340L: linux-pm@vger.kernel.org
Kyungmin Park89d07762012-01-10 15:09:09 -08003341S: Maintained
3342F: drivers/devfreq/
3343
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07003345M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347S: Maintained
3348
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003349DEVICE-MAPPER (LVM)
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01003350M: Alasdair Kergon <agk@redhat.com>
Alasdair G Kergon8504eed2013-07-10 23:41:19 +01003351M: Mike Snitzer <snitzer@redhat.com>
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01003352M: dm-devel@redhat.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003353L: dm-devel@redhat.com
3354W: http://sources.redhat.com/dm
Joe Perches8a6e2532010-03-05 13:43:11 -08003355Q: http://patchwork.kernel.org/project/dm-devel/list/
Mike Snitzer41d35d22013-11-04 19:42:38 -05003356T: git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01003357T: quilt http://people.redhat.com/agk/patches/linux/editing/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003358S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003359F: Documentation/device-mapper/
3360F: drivers/md/dm*
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01003361F: drivers/md/persistent-data/
Joe Perches679655d2009-04-07 20:44:32 -07003362F: include/linux/device-mapper.h
3363F: include/linux/dm-*.h
Alasdair G Kergon8504eed2013-07-10 23:41:19 +01003364F: include/uapi/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003365
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003366DIALOG SEMICONDUCTOR DRIVERS
3367M: Support Opensource <support.opensource@diasemi.com>
3368W: http://www.dialog-semiconductor.com/products
3369S: Supported
3370F: Documentation/hwmon/da90??
3371F: drivers/gpio/gpio-da90??.c
3372F: drivers/hwmon/da90??-hwmon.c
Adam Thomson7be72c22015-02-18 14:08:37 +00003373F: drivers/iio/adc/da91??-*.c
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003374F: drivers/input/misc/da90??_onkey.c
3375F: drivers/input/touchscreen/da9052_tsi.c
3376F: drivers/leds/leds-da90??.c
3377F: drivers/mfd/da903x.c
3378F: drivers/mfd/da90??-*.c
Adam Thomson7be72c22015-02-18 14:08:37 +00003379F: drivers/mfd/da91??-*.c
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003380F: drivers/power/da9052-battery.c
Adam Thomson7be72c22015-02-18 14:08:37 +00003381F: drivers/power/da91??-*.c
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003382F: drivers/regulator/da903x.c
3383F: drivers/regulator/da9???-regulator.[ch]
3384F: drivers/rtc/rtc-da90??.c
3385F: drivers/video/backlight/da90??_bl.c
3386F: drivers/watchdog/da90??_wdt.c
3387F: include/linux/mfd/da903x.h
3388F: include/linux/mfd/da9052/
3389F: include/linux/mfd/da9055/
3390F: include/linux/mfd/da9063/
Adam Thomson7be72c22015-02-18 14:08:37 +00003391F: include/linux/mfd/da9150/
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003392F: include/sound/da[79]*.h
3393F: sound/soc/codecs/da[79]*.[ch]
3394
Lidza Louina599aa692013-09-23 16:13:15 -04003395DIGI NEO AND CLASSIC PCI PRODUCTS
3396M: Lidza Louina <lidza.louina@gmail.com>
Mark Hounschell542f3d52014-04-25 14:32:15 -04003397M: Mark Hounschell <markh@compro.net>
Lidza Louina599aa692013-09-23 16:13:15 -04003398L: driverdev-devel@linuxdriverproject.org
3399S: Maintained
3400F: drivers/staging/dgnc/
3401
3402DIGI EPCA PCI PRODUCTS
3403M: Lidza Louina <lidza.louina@gmail.com>
Daeseok Youn6d825f72014-07-12 01:25:42 +09003404M: Daeseok Youn <daeseok.youn@gmail.com>
Lidza Louina599aa692013-09-23 16:13:15 -04003405L: driverdev-devel@linuxdriverproject.org
3406S: Maintained
3407F: drivers/staging/dgap/
3408
Guenter Roeck335d7c52011-01-26 11:45:49 -08003409DIOLAN U2C-12 I2C DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07003410M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck335d7c52011-01-26 11:45:49 -08003411L: linux-i2c@vger.kernel.org
3412S: Maintained
3413F: drivers/i2c/busses/i2c-diolan-u2c.c
3414
Matthew Wilcoxd475c632015-02-16 15:58:56 -08003415DIRECT ACCESS (DAX)
3416M: Matthew Wilcox <willy@linux.intel.com>
3417L: linux-fsdevel@vger.kernel.org
3418S: Supported
3419F: fs/dax.c
3420
Randy Dunlape7839f22008-10-12 16:11:45 -07003421DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07003422M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04003423S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003424F: Documentation/filesystems/dnotify.txt
3425F: fs/notify/dnotify/
3426F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427
3428DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07003429M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
3431W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
3432W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
3433S: Maintained
3434
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003435DISKQUOTA
Jiri Slabyd8130622015-07-17 16:23:20 -07003436M: Jan Kara <jack@suse.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003438F: Documentation/filesystems/quota.txt
3439F: fs/quota/
3440F: include/linux/quota*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003441F: include/uapi/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003442
Bernie Thompson702686a2012-03-01 13:52:13 -08003443DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
3444M: Bernie Thompson <bernie@plugable.com>
3445L: linux-fbdev@vger.kernel.org
3446S: Maintained
3447W: http://plugable.com/category/projects/udlfb/
Jingoo Han8a61f012014-07-01 15:36:01 +09003448F: drivers/video/fbdev/udlfb.c
Bernie Thompson702686a2012-03-01 13:52:13 -08003449F: include/video/udlfb.h
3450F: Documentation/fb/udlfb.txt
3451
Randy Dunlape7839f22008-10-12 16:11:45 -07003452DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07003453M: Christine Caulfield <ccaulfie@redhat.com>
3454M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04003455L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003456W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07003457T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003458S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003459F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003460
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05303461DMA BUFFER SHARING FRAMEWORK
3462M: Sumit Semwal <sumit.semwal@linaro.org>
3463S: Maintained
3464L: linux-media@vger.kernel.org
3465L: dri-devel@lists.freedesktop.org
Randy Dunlap8ada6d22014-10-13 15:51:19 -07003466L: linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
Maarten Lankhorst35fac7e2014-07-01 12:57:08 +02003467F: drivers/dma-buf/
Joe Perchese46d12c2014-08-08 14:26:16 -07003468F: include/linux/dma-buf*
3469F: include/linux/reservation.h
3470F: include/linux/*fence.h
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05303471F: Documentation/dma-buf-sharing.txt
3472T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
3473
Dan Williamsb3e5f262007-08-07 10:26:35 -07003474DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Dan Williams4abed0a2011-02-14 00:42:08 -08003475M: Vinod Koul <vinod.koul@intel.com>
Vinod Koul17b59562013-10-22 12:58:56 +05303476L: dmaengine@vger.kernel.org
3477Q: https://patchwork.kernel.org/project/linux-dmaengine/list/
Dan Williams08223d82014-08-19 06:07:56 -07003478S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003479F: drivers/dma/
Vinod Koul0ce3c062014-12-22 20:57:13 +05303480F: include/linux/dmaengine.h
Vinod Koul979a281e2014-11-06 11:21:17 +05303481F: Documentation/dmaengine/
3482T: git git://git.infradead.org/users/vkoul/slave-dma.git
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003483
Juerg Haefligerb8250372007-06-09 10:11:16 -04003484DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003485M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04003486L: lm-sensors@lm-sensors.org
3487S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003488F: Documentation/hwmon/dme1737
3489F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04003490
Jean Delvare1f31e1b2015-03-25 15:55:31 -07003491DMI/SMBIOS SUPPORT
Jiri Slabyd8130622015-07-17 16:23:20 -07003492M: Jean Delvare <jdelvare@suse.com>
Jean Delvare1f31e1b2015-03-25 15:55:31 -07003493S: Maintained
Jean Delvared4aeef932015-06-25 09:06:56 +02003494T: quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
Ivan Khoronzhukd7f96f972015-06-25 09:06:56 +02003495F: Documentation/ABI/testing/sysfs-firmware-dmi-tables
Jean Delvare1f31e1b2015-03-25 15:55:31 -07003496F: drivers/firmware/dmi-id.c
3497F: drivers/firmware/dmi_scan.c
3498F: include/linux/dmi.h
3499
Joe Perches7d2c86b2009-04-07 20:59:01 -07003500DOCUMENTATION
Jonathan Corbetad3118b2014-10-17 08:59:26 -04003501M: Jonathan Corbet <corbet@lwn.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02003502L: linux-doc@vger.kernel.org
3503S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003504F: Documentation/
Randy Dunlap97be0782014-06-27 18:28:56 -07003505X: Documentation/ABI/
3506X: Documentation/devicetree/
Jonathan Corbet933a46b2015-03-26 10:25:17 -06003507X: Documentation/acpi
3508X: Documentation/power
3509X: Documentation/spi
Jonathan Corbet6c121172015-07-24 15:08:14 +02003510X: Documentation/DocBook/media
Jonathan Corbete71e2c62014-12-29 16:17:36 -07003511T: git git://git.lwn.net/linux-2.6.git docs-next
Randy Dunlapabbaeff2008-07-04 09:59:57 -07003512
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003514M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515L: blinux-list@redhat.com
3516S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003517F: drivers/char/dtlk.c
3518F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003520DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003521M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003522L: linux-scsi@vger.kernel.org
3523W: http://www.adaptec.com/
3524S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003525F: drivers/scsi/dpt*
3526F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003527
Philipp Reisnerb411b362009-09-25 16:07:19 -07003528DRBD DRIVER
Joe Perches28b8e8d2010-03-23 13:35:20 -07003529P: Philipp Reisner
3530P: Lars Ellenberg
3531M: drbd-dev@lists.linbit.com
3532L: drbd-user@lists.linbit.com
3533W: http://www.drbd.org
3534T: git git://git.drbd.org/linux-2.6-drbd.git drbd
3535T: git git://git.drbd.org/drbd-8.3.git
3536S: Supported
3537F: drivers/block/drbd/
3538F: lib/lru_cache.c
3539F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07003540
Wolfram Sangdc7dfcd2015-04-23 17:20:54 +02003541DRIVER CORE, KOBJECTS, DEBUGFS, KERNFS AND SYSFS
Greg KH879a5a02012-01-31 20:02:00 -08003542M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perches08deed12012-03-23 15:01:57 -07003543T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003545F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07003546F: drivers/base/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07003547F: fs/debugfs/
Wolfram Sangdc7dfcd2015-04-23 17:20:54 +02003548F: fs/kernfs/
3549F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07003550F: include/linux/debugfs.h
Wolfram Sangdc7dfcd2015-04-23 17:20:54 +02003551F: include/linux/kobj*
Joe Perches679655d2009-04-07 20:44:32 -07003552F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553
3554DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003555M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04003556L: dri-devel@lists.freedesktop.org
Alex Deucherb0447882014-02-18 10:03:44 -05003557T: git git://people.freedesktop.org/~airlied/linux
Linus Torvalds1da177e2005-04-16 15:20:36 -07003558S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003559F: drivers/gpu/drm/
Daniel Vetter433e3b32014-05-26 23:44:42 +02003560F: drivers/gpu/vga/
Joe Perches850e9412010-08-09 17:20:45 -07003561F: include/drm/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003562F: include/uapi/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563
Alex Deucher566f5932014-02-18 10:03:43 -05003564RADEON DRM DRIVERS
3565M: Alex Deucher <alexander.deucher@amd.com>
3566M: Christian König <christian.koenig@amd.com>
3567L: dri-devel@lists.freedesktop.org
3568T: git git://people.freedesktop.org/~agd5f/linux
3569S: Supported
3570F: drivers/gpu/drm/radeon/
Alex Deucher566f5932014-02-18 10:03:43 -05003571F: include/uapi/drm/radeon*
3572
Thierry Reding03e255b2014-04-04 08:59:18 +02003573DRM PANEL DRIVERS
3574M: Thierry Reding <thierry.reding@gmail.com>
3575L: dri-devel@lists.freedesktop.org
3576T: git git://anongit.freedesktop.org/tegra/linux.git
3577S: Maintained
3578F: drivers/gpu/drm/drm_panel.c
3579F: drivers/gpu/drm/panel/
3580F: include/drm/drm_panel.h
3581F: Documentation/devicetree/bindings/panel/
3582
Chris Wilson8daf7472010-09-28 14:07:26 +01003583INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
Daniel Vettercbce7102014-08-28 12:17:42 +02003584M: Daniel Vetter <daniel.vetter@intel.com>
Daniel Vetter47f95642014-01-07 09:24:31 +01003585M: Jani Nikula <jani.nikula@linux.intel.com>
Daniel Vetter362132d2013-03-13 22:28:46 +01003586L: intel-gfx@lists.freedesktop.org
Chris Wilson8daf7472010-09-28 14:07:26 +01003587L: dri-devel@lists.freedesktop.org
Daniel Vetter47f95642014-01-07 09:24:31 +01003588Q: http://patchwork.freedesktop.org/project/intel-gfx/
Daniel Vetter89258a92014-02-04 19:57:38 +01003589T: git git://anongit.freedesktop.org/drm-intel
Chris Wilson8daf7472010-09-28 14:07:26 +01003590S: Supported
Joe Perches14430812013-09-11 14:23:50 -07003591F: drivers/gpu/drm/i915/
Chris Wilson8daf7472010-09-28 14:07:26 +01003592F: include/drm/i915*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003593F: include/uapi/drm/i915*
Chris Wilson8daf7472010-09-28 14:07:26 +01003594
Boris BREZILLON99763bb2015-10-13 11:55:42 +02003595DRM DRIVERS FOR ATMEL HLCDC
3596M: Boris Brezillon <boris.brezillon@free-electrons.com>
3597L: dri-devel@lists.freedesktop.org
3598S: Supported
3599F: drivers/gpu/drm/atmel-hlcdc/
3600F: Documentation/devicetree/bindings/drm/atmel/
3601
Kyungmin Park398a6d42011-11-02 11:33:16 +09003602DRM DRIVERS FOR EXYNOS
3603M: Inki Dae <inki.dae@samsung.com>
Inki Daef1501302012-01-17 14:08:55 +09003604M: Joonyoung Shim <jy0922.shim@samsung.com>
3605M: Seung-Woo Kim <sw0312.kim@samsung.com>
3606M: Kyungmin Park <kyungmin.park@samsung.com>
Kyungmin Park398a6d42011-11-02 11:33:16 +09003607L: dri-devel@lists.freedesktop.org
Inki Dae25a58032012-10-30 16:08:05 +09003608T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
Kyungmin Park398a6d42011-11-02 11:33:16 +09003609S: Supported
Joe Perches14430812013-09-11 14:23:50 -07003610F: drivers/gpu/drm/exynos/
Kyungmin Park398a6d42011-11-02 11:33:16 +09003611F: include/drm/exynos*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003612F: include/uapi/drm/exynos*
Kyungmin Park398a6d42011-11-02 11:33:16 +09003613
Jianwei Wangb55a1b92015-08-19 22:26:33 -04003614DRM DRIVERS FOR FREESCALE DCU
3615M: Jianwei Wang <jianwei.wang.chn@gmail.com>
3616M: Alison Wang <alison.wang@freescale.com>
3617L: dri-devel@lists.freedesktop.org
3618S: Supported
3619F: drivers/gpu/drm/fsl-dcu/
3620F: Documentation/devicetree/bindings/video/fsl,dcu.txt
3621F: Documentation/devicetree/bindings/panel/nec,nl4827hc19_05b.txt
3622
Philipp Zabel0a3d7752014-11-24 16:33:35 +01003623DRM DRIVERS FOR FREESCALE IMX
3624M: Philipp Zabel <p.zabel@pengutronix.de>
3625L: dri-devel@lists.freedesktop.org
3626S: Maintained
3627F: drivers/gpu/drm/imx/
3628F: Documentation/devicetree/bindings/drm/imx/
3629
Patrik Jakobssonba2199a2015-10-12 23:14:44 +02003630DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
3631M: Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
3632L: dri-devel@lists.freedesktop.org
3633T: git git://github.com/patjak/drm-gma500
3634S: Maintained
3635F: drivers/gpu/drm/gma500
3636F: include/drm/gma500*
3637
Thierry Redingbd3b49f2012-11-28 20:45:28 +01003638DRM DRIVERS FOR NVIDIA TEGRA
Thierry Redinga5ad7a62013-05-19 14:19:21 +02003639M: Thierry Reding <thierry.reding@gmail.com>
3640M: Terje Bergström <tbergstrom@nvidia.com>
Thierry Redingbd3b49f2012-11-28 20:45:28 +01003641L: dri-devel@lists.freedesktop.org
3642L: linux-tegra@vger.kernel.org
Thierry Redinga5ad7a62013-05-19 14:19:21 +02003643T: git git://anongit.freedesktop.org/tegra/linux.git
Stephen Warrenadabdb02013-09-13 13:00:57 -06003644S: Supported
Thierry Redingdee82682013-10-09 10:32:49 +02003645F: drivers/gpu/drm/tegra/
Thierry Redinga5ad7a62013-05-19 14:19:21 +02003646F: drivers/gpu/host1x/
Thierry Redinge1e90642013-09-24 13:59:01 +02003647F: include/linux/host1x.h
Thierry Redinga5ad7a62013-05-19 14:19:21 +02003648F: include/uapi/drm/tegra_drm.h
Thierry Redingbd3b49f2012-11-28 20:45:28 +01003649F: Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt
3650
Laurent Pincharta284e9d2014-08-19 23:04:31 +02003651DRM DRIVERS FOR RENESAS
3652M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
3653L: dri-devel@lists.freedesktop.org
3654L: linux-sh@vger.kernel.org
3655T: git git://people.freedesktop.org/~airlied/linux
3656S: Supported
3657F: drivers/gpu/drm/rcar-du/
3658F: drivers/gpu/drm/shmobile/
Laurent Pincharta284e9d2014-08-19 23:04:31 +02003659F: include/linux/platform_data/shmob_drm.h
3660
Heiko Stuebner625e0342015-04-20 00:59:50 +02003661DRM DRIVERS FOR ROCKCHIP
3662M: Mark Yao <mark.yao@rock-chips.com>
3663L: dri-devel@lists.freedesktop.org
3664S: Maintained
3665F: drivers/gpu/drm/rockchip/
3666F: Documentation/devicetree/bindings/video/rockchip*
3667
Benjamin Gaignard7f11c472015-08-14 15:35:24 -07003668DRM DRIVERS FOR STI
3669M: Benjamin Gaignard <benjamin.gaignard@linaro.org>
3670M: Vincent Abriou <vincent.abriou@st.com>
3671L: dri-devel@lists.freedesktop.org
3672T: git http://git.linaro.org/people/benjamin.gaignard/kernel.git
3673S: Maintained
3674F: drivers/gpu/drm/sti
3675F: Documentation/devicetree/bindings/gpu/st,stih4xx.txt
3676
Alexey Klimov598df1a2012-11-28 17:16:32 -03003677DSBR100 USB FM RADIO DRIVER
3678M: Alexey Klimov <klimov.linux@gmail.com>
3679L: linux-media@vger.kernel.org
3680T: git git://linuxtv.org/media_tree.git
3681S: Maintained
3682F: drivers/media/radio/dsbr100.c
3683
Linus Torvalds1da177e2005-04-16 15:20:36 -07003684DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003685M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08003686L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003687S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003688F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003689
Hans Verkuilcc11b142015-04-25 12:36:18 -03003690DT3155 MEDIA DRIVER
3691M: Hans Verkuil <hverkuil@xs4all.nl>
3692L: linux-media@vger.kernel.org
3693T: git git://linuxtv.org/media_tree.git
3694W: http://linuxtv.org
3695S: Odd Fixes
3696F: drivers/media/pci/dt3155/
3697
Antti Palosaari91952bc2012-10-01 12:28:46 -03003698DVB_USB_AF9015 MEDIA DRIVER
3699M: Antti Palosaari <crope@iki.fi>
3700L: linux-media@vger.kernel.org
3701W: http://linuxtv.org/
3702W: http://palosaari.fi/linux/
3703Q: http://patchwork.linuxtv.org/project/linux-media/list/
3704T: git git://linuxtv.org/anttip/media_tree.git
3705S: Maintained
3706F: drivers/media/usb/dvb-usb-v2/af9015*
3707
3708DVB_USB_AF9035 MEDIA DRIVER
3709M: Antti Palosaari <crope@iki.fi>
3710L: linux-media@vger.kernel.org
3711W: http://linuxtv.org/
3712W: http://palosaari.fi/linux/
3713Q: http://patchwork.linuxtv.org/project/linux-media/list/
3714T: git git://linuxtv.org/anttip/media_tree.git
3715S: Maintained
3716F: drivers/media/usb/dvb-usb-v2/af9035*
3717
3718DVB_USB_ANYSEE MEDIA DRIVER
3719M: Antti Palosaari <crope@iki.fi>
3720L: linux-media@vger.kernel.org
3721W: http://linuxtv.org/
3722W: http://palosaari.fi/linux/
3723Q: http://patchwork.linuxtv.org/project/linux-media/list/
3724T: git git://linuxtv.org/anttip/media_tree.git
3725S: Maintained
3726F: drivers/media/usb/dvb-usb-v2/anysee*
3727
3728DVB_USB_AU6610 MEDIA DRIVER
3729M: Antti Palosaari <crope@iki.fi>
3730L: linux-media@vger.kernel.org
3731W: http://linuxtv.org/
3732W: http://palosaari.fi/linux/
3733Q: http://patchwork.linuxtv.org/project/linux-media/list/
3734T: git git://linuxtv.org/anttip/media_tree.git
3735S: Maintained
3736F: drivers/media/usb/dvb-usb-v2/au6610*
3737
3738DVB_USB_CE6230 MEDIA DRIVER
3739M: Antti Palosaari <crope@iki.fi>
3740L: linux-media@vger.kernel.org
3741W: http://linuxtv.org/
3742W: http://palosaari.fi/linux/
3743Q: http://patchwork.linuxtv.org/project/linux-media/list/
3744T: git git://linuxtv.org/anttip/media_tree.git
3745S: Maintained
3746F: drivers/media/usb/dvb-usb-v2/ce6230*
3747
Michael Krufkyd099dea2012-10-02 00:56:20 -03003748DVB_USB_CXUSB MEDIA DRIVER
3749M: Michael Krufky <mkrufky@linuxtv.org>
3750L: linux-media@vger.kernel.org
3751W: http://linuxtv.org/
3752W: http://github.com/mkrufky
3753Q: http://patchwork.linuxtv.org/project/linux-media/list/
3754T: git git://linuxtv.org/media_tree.git
3755S: Maintained
Cesar Eduardo Barros9819da62013-01-04 15:35:25 -08003756F: drivers/media/usb/dvb-usb/cxusb*
Michael Krufkyd099dea2012-10-02 00:56:20 -03003757
Antti Palosaari91952bc2012-10-01 12:28:46 -03003758DVB_USB_EC168 MEDIA DRIVER
3759M: Antti Palosaari <crope@iki.fi>
3760L: linux-media@vger.kernel.org
3761W: http://linuxtv.org/
3762W: http://palosaari.fi/linux/
3763Q: http://patchwork.linuxtv.org/project/linux-media/list/
3764T: git git://linuxtv.org/anttip/media_tree.git
3765S: Maintained
3766F: drivers/media/usb/dvb-usb-v2/ec168*
3767
Antti Palosaari55609832013-04-09 20:30:42 -03003768DVB_USB_GL861 MEDIA DRIVER
3769M: Antti Palosaari <crope@iki.fi>
3770L: linux-media@vger.kernel.org
3771W: http://linuxtv.org/
3772Q: http://patchwork.linuxtv.org/project/linux-media/list/
3773T: git git://linuxtv.org/anttip/media_tree.git
3774S: Maintained
3775F: drivers/media/usb/dvb-usb-v2/gl861*
3776
Michael Krufky8856f5f2012-10-02 00:55:50 -03003777DVB_USB_MXL111SF MEDIA DRIVER
3778M: Michael Krufky <mkrufky@linuxtv.org>
3779L: linux-media@vger.kernel.org
3780W: http://linuxtv.org/
3781W: http://github.com/mkrufky
3782Q: http://patchwork.linuxtv.org/project/linux-media/list/
3783T: git git://linuxtv.org/mkrufky/mxl111sf.git
3784S: Maintained
3785F: drivers/media/usb/dvb-usb-v2/mxl111sf*
3786
Antti Palosaari91952bc2012-10-01 12:28:46 -03003787DVB_USB_RTL28XXU MEDIA DRIVER
3788M: Antti Palosaari <crope@iki.fi>
3789L: linux-media@vger.kernel.org
3790W: http://linuxtv.org/
3791W: http://palosaari.fi/linux/
3792Q: http://patchwork.linuxtv.org/project/linux-media/list/
3793T: git git://linuxtv.org/anttip/media_tree.git
3794S: Maintained
3795F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
3796
3797DVB_USB_V2 MEDIA DRIVER
3798M: Antti Palosaari <crope@iki.fi>
3799L: linux-media@vger.kernel.org
3800W: http://linuxtv.org/
3801W: http://palosaari.fi/linux/
3802Q: http://patchwork.linuxtv.org/project/linux-media/list/
3803T: git git://linuxtv.org/anttip/media_tree.git
3804S: Maintained
3805F: drivers/media/usb/dvb-usb-v2/dvb_usb*
3806F: drivers/media/usb/dvb-usb-v2/usb_urb.c
3807
Jason Baronac0ac382011-08-11 14:36:43 -04003808DYNAMIC DEBUG
Joe Perches5c4a97d2013-07-31 13:53:32 -07003809M: Jason Baron <jbaron@akamai.com>
Jason Baronac0ac382011-08-11 14:36:43 -04003810S: Maintained
3811F: lib/dynamic_debug.c
3812F: include/linux/dynamic_debug.h
3813
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08003814DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003815M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08003816S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003817F: drivers/tty/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08003818
Moritz Fischerf17effb2015-01-10 14:10:59 -08003819E3X0 POWER BUTTON DRIVER
3820M: Moritz Fischer <moritz.fischer@ettus.com>
3821L: usrp-users@lists.ettus.com
3822W: http://www.ettus.com
3823S: Supported
3824F: drivers/input/misc/e3x0-button.c
3825F: Documentation/devicetree/bindings/input/e3x0-button.txt
3826
Antti Palosaari91952bc2012-10-01 12:28:46 -03003827E4000 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/tuners/e4000*
3836
Linus Torvalds1da177e2005-04-16 15:20:36 -07003837EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003838M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003839L: linux-scsi@vger.kernel.org
3840S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003841F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003842
Antti Palosaari91952bc2012-10-01 12:28:46 -03003843EC100 MEDIA DRIVER
3844M: Antti Palosaari <crope@iki.fi>
3845L: linux-media@vger.kernel.org
3846W: http://linuxtv.org/
3847W: http://palosaari.fi/linux/
3848Q: http://patchwork.linuxtv.org/project/linux-media/list/
3849T: git git://linuxtv.org/anttip/media_tree.git
3850S: Maintained
3851F: drivers/media/dvb-frontends/ec100*
3852
Michael Halcrow237fead2006-10-04 02:16:22 -07003853ECRYPT FILE SYSTEM
Tyler Hicks0de9adf2011-11-05 09:04:47 -04003854M: Tyler Hicks <tyhicks@canonical.com>
Tyler Hicksa058bfb2011-05-27 11:47:59 -05003855L: ecryptfs@vger.kernel.org
Dustin Kirkland24a923e2013-05-31 10:41:43 -05003856W: http://ecryptfs.org
Michael Halcrow6dc75162008-12-15 13:54:17 -08003857W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07003858S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003859F: Documentation/filesystems/ecryptfs.txt
3860F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07003861
Alan Coxda9bb1d2006-01-18 17:44:13 -08003862EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07003863M: Doug Thompson <dougthompson@xmission.com>
Borislav Petkovaa15aa02014-03-03 15:38:17 -08003864M: Borislav Petkov <bp@alien8.de>
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02003865M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003866L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08003867W: bluesmoke.sourceforge.net
Borislav Petkov7a859512015-02-06 17:46:07 +01003868T: git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git#for-next
3869T: git://git.kernel.org/pub/linux/kernel/git/mchehab/linux-edac.git#linux_next
Doug Thompson8c2a6a42006-06-30 01:56:09 -07003870S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003871F: Documentation/edac.txt
Chris Metcalf91445c72012-03-31 09:46:03 -04003872F: drivers/edac/
Joe Perches679655d2009-04-07 20:44:32 -07003873F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08003874
Borislav Petkovc476c232009-05-20 20:31:58 +02003875EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07003876M: Doug Thompson <dougthompson@xmission.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01003877M: Borislav Petkov <bp@alien8.de>
Chris Metcalf91445c72012-03-31 09:46:03 -04003878L: linux-edac@vger.kernel.org
Borislav Petkovc476c232009-05-20 20:31:58 +02003879W: bluesmoke.sourceforge.net
Borislav Petkov487ba8e2012-10-29 18:40:10 +01003880S: Maintained
Borislav Petkovc476c232009-05-20 20:31:58 +02003881F: drivers/edac/amd64_edac*
3882
Robert Richter836dae52013-10-18 09:24:52 +02003883EDAC-CALXEDA
3884M: Doug Thompson <dougthompson@xmission.com>
3885M: Robert Richter <rric@kernel.org>
3886L: linux-edac@vger.kernel.org
3887W: bluesmoke.sourceforge.net
3888S: Maintained
3889F: drivers/edac/highbank*
3890
Ralf Baechlef65aad42012-10-17 00:39:09 +02003891EDAC-CAVIUM
3892M: Ralf Baechle <ralf@linux-mips.org>
3893M: David Daney <david.daney@cavium.com>
3894L: linux-edac@vger.kernel.org
3895L: linux-mips@linux-mips.org
3896W: bluesmoke.sourceforge.net
3897S: Supported
3898F: drivers/edac/octeon_edac*
3899
Dave Peterson0e438e32006-03-26 01:38:55 -08003900EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07003901M: Mark Gross <mark.gross@intel.com>
3902M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003903L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08003904W: bluesmoke.sourceforge.net
3905S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003906F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08003907
3908EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07003909M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003910L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08003911W: bluesmoke.sourceforge.net
3912S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003913F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08003914
Mauro Carvalho Chehab77c5f5d2013-02-15 06:11:57 -03003915EDAC-GHES
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02003916M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab77c5f5d2013-02-15 06:11:57 -03003917L: linux-edac@vger.kernel.org
3918W: bluesmoke.sourceforge.net
3919S: Maintained
Joe Perches2caa67a2013-09-11 14:23:40 -07003920F: drivers/edac/ghes_edac.c
Mauro Carvalho Chehab77c5f5d2013-02-15 06:11:57 -03003921
Douglas Thompson6bc78402007-07-19 01:50:12 -07003922EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07003923M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003924L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07003925W: bluesmoke.sourceforge.net
3926S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003927F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07003928
3929EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07003930M: Jason Uhlenkott <juhlenko@akamai.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003931L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07003932W: bluesmoke.sourceforge.net
3933S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003934F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07003935
3936EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07003937M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003938L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07003939W: bluesmoke.sourceforge.net
3940S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003941F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07003942
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08003943EDAC-I5400
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02003944M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03003945L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08003946W: bluesmoke.sourceforge.net
3947S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003948F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08003949
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03003950EDAC-I7300
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02003951M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03003952L: linux-edac@vger.kernel.org
3953W: bluesmoke.sourceforge.net
3954S: Maintained
3955F: drivers/edac/i7300_edac.c
3956
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03003957EDAC-I7CORE
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02003958M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03003959L: linux-edac@vger.kernel.org
3960W: bluesmoke.sourceforge.net
3961S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03003962F: drivers/edac/i7core_edac.c
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03003963
Douglas Thompsonba9a5912007-07-19 01:50:32 -07003964EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07003965M: Ranganathan Desikan <ravi@jetztechnologies.com>
Arvind R25527882011-01-21 23:13:37 +05303966M: "Arvind R." <arvino55@gmail.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003967L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07003968W: bluesmoke.sourceforge.net
3969S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003970F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07003971
Jason Baron791b4702014-07-09 21:13:11 +00003972EDAC-IE31200
3973M: Jason Baron <jbaron@akamai.com>
3974L: linux-edac@vger.kernel.org
3975W: bluesmoke.sourceforge.net
3976S: Maintained
3977F: drivers/edac/ie31200_edac.c
3978
Johannes Thumshirnccdfb972013-11-17 19:25:12 +01003979EDAC-MPC85XX
Johannes Thumshirn30c74692015-05-07 10:21:24 +02003980M: Johannes Thumshirn <morbidrsa@gmail.com>
Johannes Thumshirnccdfb972013-11-17 19:25:12 +01003981L: linux-edac@vger.kernel.org
3982W: bluesmoke.sourceforge.net
3983S: Maintained
3984F: drivers/edac/mpc85xx_edac.[ch]
3985
Douglas Thompsonba9a5912007-07-19 01:50:32 -07003986EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07003987M: Egor Martovetsky <egor@pasemi.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003988L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07003989W: bluesmoke.sourceforge.net
3990S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003991F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07003992
Dave Peterson0e438e32006-03-26 01:38:55 -08003993EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07003994M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003995L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08003996W: bluesmoke.sourceforge.net
3997S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003998F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08003999
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02004000EDAC-SBRIDGE
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02004001M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02004002L: linux-edac@vger.kernel.org
4003W: bluesmoke.sourceforge.net
4004S: Maintained
4005F: drivers/edac/sb_edac.c
4006
Loc Ho995e1de2015-05-22 17:32:57 -06004007EDAC-XGENE
4008APPLIED MICRO (APM) X-GENE SOC EDAC
4009M: Loc Ho <lho@apm.com>
4010S: Supported
4011F: drivers/edac/xgene_edac.c
4012F: Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
4013
Clemens Ladischaf399172011-01-10 16:32:54 +01004014EDIROL UA-101/UA-1000 DRIVER
4015M: Clemens Ladisch <clemens@ladisch.de>
4016L: alsa-devel@alsa-project.org (moderated for non-subscribers)
4017T: git git://git.alsa-project.org/alsa-kernel.git
4018S: Maintained
4019F: sound/usb/misc/ua101.c
4020
Matt Fleming1f7df952012-10-03 10:04:02 +01004021EXTENSIBLE FIRMWARE INTERFACE (EFI)
Matt Fleming825fcfc2015-10-10 17:22:16 +01004022M: Matt Fleming <matt@codeblueprint.co.uk>
Matt Fleming1f7df952012-10-03 10:04:02 +01004023L: linux-efi@vger.kernel.org
Matt Fleming78bef242012-10-08 11:33:05 +01004024T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
Matt Fleming1f7df952012-10-03 10:04:02 +01004025S: Maintained
Joe Perchesfb2efb52014-08-08 14:25:01 -07004026F: Documentation/efi-stub.txt
Matt Fleming1f7df952012-10-03 10:04:02 +01004027F: arch/ia64/kernel/efi.c
4028F: arch/x86/boot/compressed/eboot.[ch]
4029F: arch/x86/include/asm/efi.h
4030F: arch/x86/platform/efi/*
Tom Gundersena9499fa2013-02-08 15:37:06 +00004031F: drivers/firmware/efi/*
Matt Fleming1f7df952012-10-03 10:04:02 +01004032F: include/linux/efi*.h
4033
Matt Flemingd68772b2013-02-08 16:27:24 +00004034EFI VARIABLE FILESYSTEM
4035M: Matthew Garrett <matthew.garrett@nebula.com>
4036M: Jeremy Kerr <jk@ozlabs.org>
Matt Fleming825fcfc2015-10-10 17:22:16 +01004037M: Matt Fleming <matt@codeblueprint.co.uk>
Matt Flemingd68772b2013-02-08 16:27:24 +00004038T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4039L: linux-efi@vger.kernel.org
4040S: Maintained
4041F: fs/efivarfs/
4042
Peter Jones85a00d92010-09-22 13:05:04 -07004043EFIFB FRAMEBUFFER DRIVER
4044L: linux-fbdev@vger.kernel.org
4045M: Peter Jones <pjones@redhat.com>
4046S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09004047F: drivers/video/fbdev/efifb.c
Peter Jones85a00d92010-09-22 13:05:04 -07004048
Josh Triplett0bee8d22006-07-30 03:03:58 -07004049EFS FILESYSTEM
4050W: http://aeschi.ch.eu.org/efs/
4051S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004052F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07004053
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004054EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004055M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
4056M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004057L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07004058S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004059F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07004060
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07004061EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
Thadeu Lima de Souza Cascardo34b19012011-10-13 09:56:19 +00004062M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07004063L: netdev@vger.kernel.org
4064S: Maintained
Jeff Kirsher9aa32832011-05-13 14:29:12 -07004065F: drivers/net/ethernet/ibm/ehea/
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07004066
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02004067EM28XX VIDEO4LINUX DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02004068M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02004069L: linux-media@vger.kernel.org
4070W: http://linuxtv.org
4071T: git git://linuxtv.org/media_tree.git
4072S: Maintained
4073F: drivers/media/usb/em28xx/
4074
David Woodhouse3e3a7d62008-05-01 04:34:46 -07004075EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07004076M: Paul Gortmaker <paul.gortmaker@windriver.com>
4077M: Matt Mackall <mpm@selenic.com>
4078M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07004079L: linux-embedded@vger.kernel.org
4080S: Maintained
4081
James Smart32505872015-05-15 13:10:58 -04004082EMULEX/AVAGO LPFC FC/FCOE SCSI DRIVER
4083M: James Smart <james.smart@avagotech.com>
4084M: Dick Kennedy <dick.kennedy@avagotech.com>
Jim Cromiece00f852006-11-30 04:49:44 +01004085L: linux-scsi@vger.kernel.org
James Smart32505872015-05-15 13:10:58 -04004086W: http://www.avagotech.com
Jim Cromiece00f852006-11-30 04:49:44 +01004087S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004088F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04004089
Michał Mirosław5f5bac82009-05-22 20:33:59 +02004090ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004091M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02004092S: Maintained
4093F: drivers/misc/cb710/
4094F: drivers/mmc/host/cb710-mmc.*
4095F: include/linux/cb710.h
4096
Maxim Levitsky931e39a2010-07-31 11:59:26 -03004097ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
4098M: Maxim Levitsky <maximlevitsky@gmail.com>
4099S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07004100F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03004101
Gavin Shanec207dc2013-06-28 21:12:14 +08004102ENHANCED ERROR HANDLING (EEH)
4103M: Gavin Shan <shangw@linux.vnet.ibm.com>
4104L: linuxppc-dev@lists.ozlabs.org
4105S: Supported
4106F: Documentation/powerpc/eeh-pci-error-recovery.txt
4107F: arch/powerpc/kernel/eeh*.c
4108
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07004109EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004110M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07004111S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07004112T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Jingoo Han8a61f012014-07-01 15:36:01 +09004113F: drivers/video/fbdev/s1d13xxxfb.c
Joe Perches679655d2009-04-07 20:44:32 -07004114F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07004115
Mark Einon38df6492014-09-30 22:29:46 +01004116ET131X NETWORK DRIVER
4117M: Mark Einon <mark.einon@gmail.com>
4118S: Odd Fixes
4119F: drivers/net/ethernet/agere/
4120
Linus Torvalds1da177e2005-04-16 15:20:36 -07004121ETHERNET BRIDGE
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08004122M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07004123L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08004124L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00004125W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07004126S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004127F: include/linux/netfilter_bridge/
4128F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004129
Florian Fainelli22f08ad2014-02-18 09:47:49 -08004130ETHERNET PHY LIBRARY
4131M: Florian Fainelli <f.fainelli@gmail.com>
4132L: netdev@vger.kernel.org
4133S: Maintained
4134F: include/linux/phy.h
4135F: include/linux/phy_fixed.h
4136F: drivers/net/phy/
4137F: Documentation/networking/phy.txt
4138F: drivers/of/of_mdio.c
4139F: drivers/of/of_net.c
4140
Linus Torvalds1da177e2005-04-16 15:20:36 -07004141EXT2 FILE SYSTEM
Jiri Slabyd8130622015-07-17 16:23:20 -07004142M: Jan Kara <jack@suse.com>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004143L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004144S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004145F: Documentation/filesystems/ext2.txt
4146F: fs/ext2/
4147F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004148
Erik Mouw72be2cc2006-12-06 20:40:49 -08004149EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004150M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02004151M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004152L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04004153W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004154Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004155S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004156F: Documentation/filesystems/ext4.txt
4157F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004158
Mimi Zoharc5532b02011-08-17 18:52:24 -04004159Extended Verification Module (EVM)
Mimi Zohar74dd7442014-02-27 08:44:45 -05004160M: Mimi Zohar <zohar@linux.vnet.ibm.com>
4161L: linux-ima-devel@lists.sourceforge.net
4162L: linux-security-module@vger.kernel.org
Mimi Zoharc5532b02011-08-17 18:52:24 -04004163S: Supported
4164F: security/integrity/evm/
4165
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09004166EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
4167M: MyungJoo Ham <myungjoo.ham@samsung.com>
4168M: Chanwoo Choi <cw00.choi@samsung.com>
4169L: linux-kernel@vger.kernel.org
Chanwoo Choi81df63a2013-09-28 15:04:37 +09004170T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09004171S: Maintained
4172F: drivers/extcon/
4173F: Documentation/extcon/
4174
Jingoo Hane2a75c42014-04-10 20:24:03 +09004175EXYNOS DP DRIVER
Jingoo Hanb7701752015-05-14 15:17:07 -07004176M: Jingoo Han <jingoohan1@gmail.com>
Jingoo Hane2a75c42014-04-10 20:24:03 +09004177L: dri-devel@lists.freedesktop.org
4178S: Maintained
4179F: drivers/gpu/drm/exynos/exynos_dp*
4180
Donghwa Lee33ad3912012-03-06 11:44:58 +09004181EXYNOS MIPI DISPLAY DRIVERS
4182M: Inki Dae <inki.dae@samsung.com>
4183M: Donghwa Lee <dh09.lee@samsung.com>
4184M: Kyungmin Park <kyungmin.park@samsung.com>
4185L: linux-fbdev@vger.kernel.org
4186S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09004187F: drivers/video/fbdev/exynos/exynos_mipi*
Donghwa Lee33ad3912012-03-06 11:44:58 +09004188F: include/video/exynos_mipi*
4189
Jean Delvaree53004e2006-01-09 23:26:14 +01004190F71805F HARDWARE MONITORING DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07004191M: Jean Delvare <jdelvare@suse.com>
Jean Delvaree53004e2006-01-09 23:26:14 +01004192L: lm-sensors@lm-sensors.org
4193S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004194F: Documentation/hwmon/f71805f
4195F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01004196
Michael Büscheea977e2012-04-02 12:14:32 -03004197FC0011 TUNER DRIVER
4198M: Michael Buesch <m@bues.ch>
4199L: linux-media@vger.kernel.org
4200S: Maintained
Mauro Carvalho Chehabccae7af2012-06-14 16:35:59 -03004201F: drivers/media/tuners/fc0011.h
4202F: drivers/media/tuners/fc0011.c
Michael Büscheea977e2012-04-02 12:14:32 -03004203
Antti Palosaari91952bc2012-10-01 12:28:46 -03004204FC2580 MEDIA DRIVER
4205M: Antti Palosaari <crope@iki.fi>
4206L: linux-media@vger.kernel.org
4207W: http://linuxtv.org/
4208W: http://palosaari.fi/linux/
4209Q: http://patchwork.linuxtv.org/project/linux-media/list/
4210T: git git://linuxtv.org/anttip/media_tree.git
4211S: Maintained
4212F: drivers/media/tuners/fc2580*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004213
Eric Paris88b2dbd2010-08-18 12:25:50 -04004214FANOTIFY
4215M: Eric Paris <eparis@redhat.com>
4216S: Maintained
4217F: fs/notify/fanotify/
4218F: include/linux/fanotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004219F: include/uapi/linux/fanotify.h
Eric Paris88b2dbd2010-08-18 12:25:50 -04004220
Linus Torvalds1da177e2005-04-16 15:20:36 -07004221FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004222M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004223W: http://www.farsite.co.uk/
4224S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004225F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004226
Akinobu Mitac5408b82007-04-23 14:41:20 -07004227FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004228M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07004229S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004230F: Documentation/fault-injection/
4231F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07004232
Noralf Trønnes053e5142015-01-23 19:29:07 +01004233FBTFT Framebuffer drivers
4234M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4235M: Noralf Trønnes <noralf@tronnes.org>
4236S: Maintained
4237F: drivers/staging/fbtft/
4238
Robert Lovecae727d2010-02-16 12:16:00 -08004239FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
Robert Love3bd746c2014-05-28 14:19:01 -07004240M: Vasu Dev <vasu.dev@intel.com>
Neil Hormanf4aaea62013-05-03 19:38:10 +00004241L: fcoe-devel@open-fcoe.org
Robert Lovecae727d2010-02-16 12:16:00 -08004242W: www.Open-FCoE.org
4243S: Supported
4244F: drivers/scsi/libfc/
4245F: drivers/scsi/fcoe/
4246F: include/scsi/fc/
4247F: include/scsi/libfc.h
4248F: include/scsi/libfcoe.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004249F: include/uapi/scsi/fc/
Robert Lovecae727d2010-02-16 12:16:00 -08004250
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004251FILE LOCKING (flock() and fcntl()/lockf())
Jeff Layton8c836fa2014-04-30 13:28:17 -04004252M: Jeff Layton <jlayton@poochiereds.net>
Joe Perches9c3646d2015-06-25 15:02:00 -07004253M: "J. Bruce Fields" <bfields@fieldses.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004254L: linux-fsdevel@vger.kernel.org
4255S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004256F: include/linux/fcntl.h
4257F: include/linux/fs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004258F: include/uapi/linux/fcntl.h
4259F: include/uapi/linux/fs.h
Joe Perches679655d2009-04-07 20:44:32 -07004260F: fs/fcntl.c
4261F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004262
4263FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07004264M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004265L: linux-fsdevel@vger.kernel.org
4266S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004267F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004268
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004269FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02004270M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004271L: lm-sensors@lm-sensors.org
4272S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07004273F: drivers/hwmon/f75375s.c
4274F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004275
Clemens Ladischa331b0c2011-05-25 09:48:48 +02004276FIREWIRE AUDIO DRIVERS
4277M: Clemens Ladisch <clemens@ladisch.de>
4278L: alsa-devel@alsa-project.org (moderated for non-subscribers)
4279T: git git://git.alsa-project.org/alsa-kernel.git
4280S: Maintained
4281F: sound/firewire/
4282
Stefan Richtereb86ec52012-11-03 09:25:20 +01004283FIREWIRE MEDIA DRIVERS (firedtv)
4284M: Stefan Richter <stefanr@s5r6.in-berlin.de>
4285L: linux-media@vger.kernel.org
4286L: linux1394-devel@lists.sourceforge.net
4287T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
4288S: Maintained
4289F: drivers/media/firewire/
4290
Chris Boota511ce32012-04-14 17:50:35 -07004291FIREWIRE SBP-2 TARGET
4292M: Chris Boot <bootc@bootc.net>
4293L: linux-scsi@vger.kernel.org
4294L: target-devel@vger.kernel.org
4295L: linux1394-devel@lists.sourceforge.net
4296T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
4297S: Maintained
4298F: drivers/target/sbp/
4299
Joe Perches7d2c86b2009-04-07 20:59:01 -07004300FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004301M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004302L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01004303W: http://ieee1394.wiki.kernel.org/
Stefan Richter2ca526b2011-12-20 21:23:28 +01004304T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004305S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004306F: drivers/firewire/
Stefan Richter8f06ce32012-12-17 16:00:07 -08004307F: include/linux/firewire.h
4308F: include/uapi/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02004309F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004310
4311FIRMWARE LOADER (request_firmware)
Ming Lei39e68082012-08-20 19:04:17 +08004312M: Ming Lei <ming.lei@canonical.com>
4313L: linux-kernel@vger.kernel.org
4314S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004315F: Documentation/firmware_class/
4316F: drivers/base/firmware*.c
4317F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004318
Philip J Kelleherf730e3d2013-06-18 14:43:58 -05004319FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
Philip J Kelleher9bb3c442013-02-27 09:24:59 -06004320M: Joshua Morris <josh.h.morris@us.ibm.com>
4321M: Philip Kelleher <pjk1939@linux.vnet.ibm.com>
4322S: Maintained
4323F: drivers/block/rsxx/
4324
Jiri Kosina8206f662012-05-18 13:52:29 +02004325FLOPPY DRIVER
Jiri Kosinae5f64502015-08-09 09:11:34 +02004326M: Jiri Kosina <jikos@kernel.org>
Jiri Kosina8206f662012-05-18 13:52:29 +02004327T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
4328S: Odd fixes
4329F: drivers/block/floppy.c
4330
Alessandro Rubini9c9f32e2013-06-12 09:13:25 +02004331FMC SUBSYSTEM
4332M: Alessandro Rubini <rubini@gnudd.com>
4333W: http://www.ohwr.org/projects/fmc-bus
4334S: Supported
4335F: drivers/fmc/
4336F: include/linux/fmc*.h
4337F: include/linux/ipmi-fru.h
4338K: fmc_d.*register
4339
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004340FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07004341M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07004342W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004343S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004344F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004345
4346FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004347L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00004348S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004349F: drivers/net/wan/dlci.c
4350F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004351
Linus Torvalds1da177e2005-04-16 15:20:36 -07004352FRAMEBUFFER LAYER
Jean-Christophe PLAGNIOL-VILLARD5489e942013-05-30 22:23:44 +02004353M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
4354M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004355L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004356W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09004357Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Jean-Christophe PLAGNIOL-VILLARD5489e942013-05-30 22:23:44 +02004358T: git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
Paul Mundt56be1412011-03-23 08:29:07 +09004359S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004360F: Documentation/fb/
Paul Mundtd958c622011-03-23 08:22:41 +09004361F: Documentation/devicetree/bindings/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09004362F: drivers/video/
4363F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07004364F: include/linux/fb.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004365F: include/uapi/video/
4366F: include/uapi/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004367
Timur Tabia57c1882012-10-16 17:33:42 -05004368FREESCALE DIU FRAMEBUFFER DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004369M: Timur Tabi <timur@tabi.org>
Timur Tabia57c1882012-10-16 17:33:42 -05004370L: linux-fbdev@vger.kernel.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004371S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09004372F: drivers/video/fbdev/fsl-diu-fb.*
Timur Tabia57c1882012-10-16 17:33:42 -05004373
Zhang Wei173acc72008-03-01 07:42:48 -07004374FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004375M: Li Yang <leoli@freescale.com>
4376M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004377L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07004378S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004379F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07004380
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02004381FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004382M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004383L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01004384L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02004385S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004386F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02004387
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01004388FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004389M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004390L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07004391L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01004392S: Maintained
Cesar Eduardo Barrosbad985a2013-01-04 15:35:28 -08004393F: include/linux/platform_data/video-imxfb.h
Jingoo Han8a61f012014-07-01 15:36:01 +09004394F: drivers/video/fbdev/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01004395
Han Xu4d8e2ce2015-01-16 03:29:17 +08004396FREESCALE QUAD SPI DRIVER
4397M: Han Xu <han.xu@freescale.com>
4398L: linux-mtd@lists.infradead.org
4399S: Maintained
4400F: drivers/mtd/spi-nor/fsl-quadspi.c
4401
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03004402FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004403M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
4404M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004405L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03004406L: netdev@vger.kernel.org
4407S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07004408F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07004409F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03004410
Timur Tabid9e9d822008-04-24 08:45:26 +10004411FREESCALE QUICC ENGINE LIBRARY
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004412L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004413S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004414F: arch/powerpc/sysdev/qe_lib/
4415F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10004416
Joe Perchesb55ef9292009-10-26 16:49:46 -07004417FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004418M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07004419L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004420L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07004421S: Maintained
Joe Perchesfaf2e1d2014-08-08 14:26:18 -07004422F: drivers/usb/gadget/udc/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07004423
Li Yangbeaf53b2007-05-25 13:54:02 +08004424FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004425M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08004426L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004427L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08004428S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07004429F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08004430
Claudiu Manoilabb1ed72015-10-23 11:42:01 +03004431FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
4432M: Claudiu Manoil <claudiu.manoil@freescale.com>
4433L: netdev@vger.kernel.org
4434S: Maintained
4435F: drivers/net/ethernet/freescale/gianfar*
4436X: drivers/net/ethernet/freescale/gianfar_ptp.c
4437F: Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
4438
Timur Tabid9e9d822008-04-24 08:45:26 +10004439FREESCALE QUICC ENGINE UCC UART DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004440M: Timur Tabi <timur@tabi.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004441L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004442S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004443F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10004444
4445FREESCALE SOC SOUND DRIVERS
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004446M: Timur Tabi <timur@tabi.org>
Mark Browndc859502014-08-07 10:47:24 +01004447M: Nicolin Chen <nicoleotsuka@gmail.com>
Xiubo Lib4b98292014-12-12 16:54:14 -08004448M: Xiubo Li <Xiubo.Lee@gmail.com>
Joe Perches93711662009-06-16 15:34:07 -07004449L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004450L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004451S: Maintained
Joe Perches69aefce2009-04-09 10:39:22 -07004452F: sound/soc/fsl/fsl*
Mark Browndc859502014-08-07 10:47:24 +01004453F: sound/soc/fsl/imx*
Joe Perches69aefce2009-04-09 10:39:22 -07004454F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10004455
J. German Rivera31c88962015-03-05 19:29:09 -06004456FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER
Joe Perches9c3646d2015-06-25 15:02:00 -07004457M: "J. German Rivera" <German.Rivera@freescale.com>
J. German Rivera31c88962015-03-05 19:29:09 -06004458L: linux-kernel@vger.kernel.org
4459S: Maintained
4460F: drivers/staging/fsl-mc/
4461
Linus Torvalds1da177e2005-04-16 15:20:36 -07004462FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004463M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004464W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
4465S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004466F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004467
Pavel Machek71038f52009-01-15 13:51:02 -08004468FREEZER
Rafael J. Wysocki49db1902013-10-09 01:47:53 +02004469M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Rafael J. Wysocki7fb06082014-03-20 03:34:47 +01004470M: Pavel Machek <pavel@ucw.cz>
WANG Congbf1c1382011-10-08 20:57:50 +02004471L: linux-pm@vger.kernel.org
Pavel Machek71038f52009-01-15 13:51:02 -08004472S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004473F: Documentation/power/freezing-of-tasks.txt
4474F: include/linux/freezer.h
4475F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08004476
Konrad Rzeszutek Wilk839a1f72012-04-16 17:06:35 -04004477FRONTSWAP API
4478M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4479L: linux-kernel@vger.kernel.org
4480S: Maintained
4481F: mm/frontswap.c
4482F: include/linux/frontswap.h
4483
David Howellsa5432f52009-04-20 15:46:45 +01004484FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07004485M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01004486L: linux-cachefs@redhat.com
4487S: Supported
4488F: Documentation/filesystems/caching/
4489F: fs/fscache/
4490F: include/linux/fscache*.h
4491
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09004492F2FS FILE SYSTEM
Jaegeuk Kim9b29d482014-05-30 08:20:08 +09004493M: Jaegeuk Kim <jaegeuk@kernel.org>
Jaegeuk Kimf6238a72014-05-31 01:00:49 +09004494M: Changman Lee <cm224.lee@samsung.com>
Chao Yu7b2a2462015-08-12 17:47:08 +08004495R: Chao Yu <chao2.yu@samsung.com>
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09004496L: linux-f2fs-devel@lists.sourceforge.net
4497W: http://en.wikipedia.org/wiki/F2FS
4498T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
4499S: Maintained
4500F: Documentation/filesystems/f2fs.txt
Jaegeuk Kim3bac3802014-01-09 21:00:06 +09004501F: Documentation/ABI/testing/sysfs-fs-f2fs
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09004502F: fs/f2fs/
4503F: include/linux/f2fs_fs.h
Chao Yu62d43ee2015-07-06 20:29:46 +08004504F: include/trace/events/f2fs.h
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09004505
David Howells5ab7ffe2007-04-10 15:10:45 +01004506FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07004507M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004508S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004509F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004510
Jonathan Woithe20b93732008-06-11 10:14:56 +09304511FUJITSU LAPTOP EXTRAS
Jonathan Woithe409a3e92012-03-27 13:01:01 +10304512M: Jonathan Woithe <jwoithe@just42.net>
Matthew Garrettd09448532010-02-11 10:40:13 -05004513L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09304514S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004515F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09304516
Heungjun Kim4da621b2011-11-11 08:05:33 -03004517FUJITSU M-5MO LS CAMERA ISP DRIVER
4518M: Kyungmin Park <kyungmin.park@samsung.com>
4519M: Heungjun Kim <riverful.kim@samsung.com>
4520L: linux-media@vger.kernel.org
4521S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004522F: drivers/media/i2c/m5mols/
Heungjun Kim4da621b2011-11-11 08:05:33 -03004523F: include/media/m5mols.h
4524
Robert Gerlach2d24c492012-01-18 14:26:22 +01004525FUJITSU TABLET EXTRAS
4526M: Robert Gerlach <khnz@gmx.de>
4527L: platform-driver-x86@vger.kernel.org
4528S: Maintained
4529F: drivers/platform/x86/fujitsu-tablet.c
4530
Miklos Szeredi04578f12005-09-09 13:10:22 -07004531FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07004532M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07004533L: fuse-devel@lists.sourceforge.net
4534W: http://fuse.sourceforge.net/
Miklos Szeredi0a30f612015-07-01 17:10:36 +02004535T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
Miklos Szeredi04578f12005-09-09 13:10:22 -07004536S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004537F: fs/fuse/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004538F: include/uapi/linux/fuse.h
Miklos Szeredi0a30f612015-07-01 17:10:36 +02004539F: Documentation/filesystems/fuse.txt
Miklos Szeredi04578f12005-09-09 13:10:22 -07004540
Linus Torvalds1da177e2005-04-16 15:20:36 -07004541FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07004542M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004543L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02004544S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07004545F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004546
Peter Oberparleiterd8e21622013-10-16 13:46:49 -07004547GCOV BASED KERNEL PROFILING
4548M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
4549S: Maintained
4550F: kernel/gcov/
4551F: Documentation/gcov.txt
4552
Linus Torvalds1da177e2005-04-16 15:20:36 -07004553GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004554M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004555L: linux-scsi@vger.kernel.org
4556W: http://www.icp-vortex.com/
4557S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004558F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004559
Jan Kiszka158daf12015-02-17 13:47:49 -08004560GDB KERNEL DEBUGGING HELPER SCRIPTS
4561M: Jan Kiszka <jan.kiszka@siemens.com>
4562S: Supported
4563F: scripts/gdb/
4564
Hans Verkuil3169a1c2012-11-23 07:11:58 -03004565GEMTEK FM RADIO RECEIVER DRIVER
4566M: Hans Verkuil <hverkuil@xs4all.nl>
4567L: linux-media@vger.kernel.org
4568T: git git://linuxtv.org/media_tree.git
4569W: http://linuxtv.org
4570S: Maintained
4571F: drivers/media/radio/radio-gemtek*
4572
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02004573GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07004574M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02004575S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004576F: drivers/i2c/busses/i2c-gpio.c
4577F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02004578
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01004579GENERIC GPIO I2C MULTIPLEXER DRIVER
4580M: Peter Korsgaard <peter.korsgaard@barco.com>
4581L: linux-i2c@vger.kernel.org
4582S: Supported
Jean Delvaree7065e22012-04-28 15:32:06 +02004583F: drivers/i2c/muxes/i2c-mux-gpio.c
4584F: include/linux/i2c-mux-gpio.h
4585F: Documentation/i2c/muxes/i2c-mux-gpio
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01004586
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004587GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004588M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004589W: http://www.kernel.org/pub/linux/utils/net/hdlc/
4590S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004591F: drivers/net/wan/c101.c
4592F: drivers/net/wan/hd6457*
4593F: drivers/net/wan/hdlc*
4594F: drivers/net/wan/n2.c
4595F: drivers/net/wan/pc300too.c
4596F: drivers/net/wan/pci200syn.c
4597F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004598
Arnd Bergmann1527aab2009-06-14 22:46:16 +02004599GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07004600M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02004601L: linux-arch@vger.kernel.org
4602T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
4603S: Maintained
Joe Perches14430812013-09-11 14:23:50 -07004604F: include/asm-generic/
4605F: include/uapi/asm-generic/
Arnd Bergmann1527aab2009-06-14 22:46:16 +02004606
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +05304607GENERIC PHY FRAMEWORK
4608M: Kishon Vijay Abraham I <kishon@ti.com>
4609L: linux-kernel@vger.kernel.org
4610T: git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
4611S: Supported
4612F: drivers/phy/
4613F: include/linux/phy/
4614
Kevin Hilmaneea97ae2015-03-12 10:33:46 -07004615GENERIC PM DOMAINS
4616M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
4617M: Kevin Hilman <khilman@kernel.org>
4618M: Ulf Hansson <ulf.hansson@linaro.org>
4619L: linux-pm@vger.kernel.org
4620S: Supported
4621F: drivers/base/power/domain*.c
4622F: include/linux/pm_domain.h
4623
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03004624GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07004625M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03004626L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03004627S: Supported
4628F: drivers/uio/uio_pci_generic.c
4629
Joe Perchesf8f1ec72014-06-04 16:05:31 -07004630GET_MAINTAINER SCRIPT
4631M: Joe Perches <joe@perches.com>
4632S: Maintained
4633F: scripts/get_maintainer.pl
4634
Steven Whitehouse5be7b502006-04-28 11:27:32 -04004635GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004636M: Steven Whitehouse <swhiteho@redhat.com>
Bob Peterson28666d62015-02-13 11:23:11 -06004637M: Bob Peterson <rpeterso@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04004638L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04004639W: http://sources.redhat.com/cluster/
Bob Peterson28666d62015-02-13 11:23:11 -06004640T: git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04004641S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004642F: Documentation/filesystems/gfs2*.txt
4643F: fs/gfs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004644F: include/uapi/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04004645
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08004646GIGASET ISDN DRIVERS
Tilman Schmidt6b096fd2015-05-02 19:23:22 +02004647M: Paul Bolle <pebolle@tiscali.nl>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08004648L: gigaset307x-common@lists.sourceforge.net
4649W: http://gigaset307x.sourceforge.net/
Tilman Schmidt6b096fd2015-05-02 19:23:22 +02004650S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004651F: Documentation/isdn/README.gigaset
4652F: drivers/isdn/gigaset/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004653F: include/uapi/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08004654
Joe Perches7eea35f2014-07-30 05:09:23 -03004655GO7007 MPEG CODEC
4656M: Hans Verkuil <hans.verkuil@cisco.com>
4657L: linux-media@vger.kernel.org
4658S: Maintained
4659F: drivers/media/usb/go7007/
4660
Bastien Noceraca96ea82014-10-31 09:26:16 -07004661GOODIX TOUCHSCREEN
4662M: Bastien Nocera <hadess@hadess.net>
4663L: linux-input@vger.kernel.org
4664S: Maintained
4665F: drivers/input/touchscreen/goodix.c
4666
Grant Likelya0dc00b2011-02-12 01:48:14 -07004667GPIO SUBSYSTEM
Linus Walleije4651a92012-08-06 09:52:52 +02004668M: Linus Walleij <linus.walleij@linaro.org>
Linus Walleijf2fa75c2013-12-10 09:43:09 +01004669M: Alexandre Courbot <gnurou@gmail.com>
Alexandre Courbotd15b7172013-05-26 11:50:54 +09004670L: linux-gpio@vger.kernel.org
Linus Walleijf2fa75c2013-12-10 09:43:09 +01004671T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
4672S: Maintained
4673F: Documentation/gpio/
Grant Likelya0dc00b2011-02-12 01:48:14 -07004674F: drivers/gpio/
Alexandre Courbotbdc6e952014-08-04 13:06:58 +09004675F: include/linux/gpio/
4676F: include/linux/gpio.h
Yang Bai9b692342012-10-04 17:12:35 -07004677F: include/asm-generic/gpio.h
Grant Likelya0dc00b2011-02-12 01:48:14 -07004678
Harry Wei71a6d0a2011-05-11 15:13:33 -07004679GRE DEMULTIPLEXER DRIVER
4680M: Dmitry Kozlov <xeb@mail.ru>
4681L: netdev@vger.kernel.org
4682S: Maintained
Joe Perches11c26772013-09-11 14:23:48 -07004683F: net/ipv4/gre_demux.c
4684F: net/ipv4/gre_offload.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07004685F: include/net/gre.h
4686
Kristoffer Glembod4c41132010-02-15 03:33:44 +00004687GRETH 10/100/1G Ethernet MAC device driver
4688M: Kristoffer Glembo <kristoffer@gaisler.com>
4689L: netdev@vger.kernel.org
4690S: Maintained
Joe Perchesa31a96a2012-01-10 15:08:58 -08004691F: drivers/net/ethernet/aeroflex/
Kristoffer Glembod4c41132010-02-15 03:33:44 +00004692
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004693GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004694M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004695L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004696T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004697S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004698F: drivers/media/usb/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004699
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03004700GSPCA GL860 SUBDRIVER
4701M: Olivier Lorin <o.lorin@laposte.net>
4702L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004703T: git git://linuxtv.org/media_tree.git
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03004704S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004705F: drivers/media/usb/gspca/gl860/
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03004706
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004707GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004708M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004709L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004710T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004711S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004712F: drivers/media/usb/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004713
4714GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004715M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004716L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004717T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004718S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004719F: drivers/media/usb/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004720
Brian Johnson261982f2009-07-19 15:58:56 -03004721GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03004722M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03004723L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004724T: git git://linuxtv.org/media_tree.git
Brian Johnson261982f2009-07-19 15:58:56 -03004725S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004726F: drivers/media/usb/gspca/sn9c20x.c
Brian Johnson261982f2009-07-19 15:58:56 -03004727
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004728GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004729M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004730L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004731T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004732S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004733F: drivers/media/usb/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004734
4735GSPCA USB WEBCAM DRIVER
Jean-Francois Moinefc3f9062012-05-24 07:29:41 -03004736M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004737L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004738T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004739S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004740F: drivers/media/usb/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004741
Davidlohr Bueso584ec972013-12-18 17:08:55 -08004742GUID PARTITION TABLE (GPT)
Andrew Morton4f973c62015-06-25 15:02:05 -07004743M: Davidlohr Bueso <dave@stgolabs.net>
Davidlohr Bueso584ec972013-12-18 17:08:55 -08004744L: linux-efi@vger.kernel.org
4745S: Maintained
4746F: block/partitions/efi.*
4747
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03004748STK1160 USB VIDEO CAPTURE DRIVER
Ezequiel Garcia3259aa52015-03-10 11:43:20 -03004749M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03004750L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004751T: git git://linuxtv.org/media_tree.git
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03004752S: Maintained
4753F: drivers/media/usb/stk1160/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004754
Yoshinori Sato4e456b82015-03-11 01:41:38 +09004755H8/300 ARCHITECTURE
4756M: Yoshinori Sato <ysato@users.sourceforge.jp>
Geert Uytterhoevenb992c762015-07-17 16:23:55 -07004757L: uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
Yoshinori Sato4e456b82015-03-11 01:41:38 +09004758W: http://uclinux-h8.sourceforge.jp
4759T: git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
4760S: Maintained
4761F: arch/h8300/
4762F: drivers/clocksource/h8300_*.c
4763F: drivers/clk/h8300/
4764F: drivers/irqchip/irq-renesas-h8*.c
4765
Harry Wei71a6d0a2011-05-11 15:13:33 -07004766HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
4767M: Frank Seidel <frank@f-seidel.de>
4768L: platform-driver-x86@vger.kernel.org
4769W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
4770S: Maintained
4771F: drivers/platform/x86/hdaps.c
4772
Hans Verkuil48fc9e22013-04-11 03:36:49 -03004773HDPVR USB VIDEO ENCODER DRIVER
4774M: Hans Verkuil <hverkuil@xs4all.nl>
4775L: linux-media@vger.kernel.org
4776T: git git://linuxtv.org/media_tree.git
4777W: http://linuxtv.org
4778S: Odd Fixes
Joe Perches14430812013-09-11 14:23:50 -07004779F: drivers/media/usb/hdpvr/
Hans Verkuil48fc9e22013-04-11 03:36:49 -03004780
Harry Wei71a6d0a2011-05-11 15:13:33 -07004781HWPOISON MEMORY FAILURE HANDLING
Andi Kleenf9625c42014-06-04 16:05:32 -07004782M: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
Harry Wei71a6d0a2011-05-11 15:13:33 -07004783L: linux-mm@kvack.org
Harry Wei71a6d0a2011-05-11 15:13:33 -07004784S: Maintained
4785F: mm/memory-failure.c
4786F: mm/hwpoison-inject.c
4787
4788HYPERVISOR VIRTUAL CONSOLE DRIVER
4789L: linuxppc-dev@lists.ozlabs.org
4790S: Odd Fixes
4791F: drivers/tty/hvc/
4792
Antti Palosaarie5ab1472014-09-10 04:20:15 -03004793HACKRF MEDIA DRIVER
4794M: Antti Palosaari <crope@iki.fi>
4795L: linux-media@vger.kernel.org
4796W: http://linuxtv.org/
4797W: http://palosaari.fi/linux/
4798Q: http://patchwork.linuxtv.org/project/linux-media/list/
4799T: git git://linuxtv.org/anttip/media_tree.git
4800S: Maintained
4801F: drivers/media/usb/hackrf/
4802
Michael Buesch844dd052006-06-26 00:24:59 -07004803HARDWARE MONITORING
Jiri Slabyd8130622015-07-17 16:23:20 -07004804M: Jean Delvare <jdelvare@suse.com>
Guenter Roeckca462082012-06-01 23:28:23 -07004805M: Guenter Roeck <linux@roeck-us.net>
Robert Love860e1d62005-08-31 23:57:59 -04004806L: lm-sensors@lm-sensors.org
4807W: http://www.lm-sensors.org/
Jean Delvarea94ef4e2015-04-27 16:37:39 +02004808T: quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07004809T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02004810S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01004811F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07004812F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01004813F: include/linux/hwmon*.h
Robert Love860e1d62005-08-31 23:57:59 -04004814
4815HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07004816M: Matt Mackall <mpm@selenic.com>
4817M: Herbert Xu <herbert@gondor.apana.org.au>
Michael S. Tsirkin3eda71672015-01-16 09:16:00 +02004818L: linux-crypto@vger.kernel.org
Joe Perchesc0d07872009-09-23 15:57:17 -07004819S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07004820F: Documentation/hw_random.txt
4821F: drivers/char/hw_random/
4822F: include/linux/hw_random.h
Robert Love860e1d62005-08-31 23:57:59 -04004823
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03004824HARDWARE SPINLOCK CORE
4825M: Ohad Ben-Cohen <ohad@wizery.com>
4826S: Maintained
4827F: Documentation/hwspinlock.txt
4828F: drivers/hwspinlock/hwspinlock_*
4829F: include/linux/hwspinlock.h
4830
Linus Torvalds1da177e2005-04-16 15:20:36 -07004831HARMONY SOUND DRIVER
Kyle McMartinac6aecb2007-12-03 22:04:34 +00004832L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004833S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004834F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004835
Antti Palosaari91952bc2012-10-01 12:28:46 -03004836HD29L2 MEDIA DRIVER
4837M: Antti Palosaari <crope@iki.fi>
4838L: linux-media@vger.kernel.org
4839W: http://linuxtv.org/
4840W: http://palosaari.fi/linux/
4841Q: http://patchwork.linuxtv.org/project/linux-media/list/
4842T: git git://linuxtv.org/anttip/media_tree.git
4843S: Maintained
4844F: drivers/media/dvb-frontends/hd29l2*
4845
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004846HEWLETT-PACKARD SMART2 RAID DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004847L: iss_storagedev@hp.com
Michael Opdenackeraf9f1b32014-10-13 15:51:28 -07004848S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004849F: Documentation/blockdev/cpqarray.txt
4850F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004851
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05004852HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Don Brace693373d2014-10-15 22:32:41 +00004853M: Don Brace <don.brace@pmcs.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05004854L: iss_storagedev@hp.com
Don Brace693373d2014-10-15 22:32:41 +00004855L: storagedev@pmcs.com
4856L: linux-scsi@vger.kernel.org
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05004857S: Supported
4858F: Documentation/scsi/hpsa.txt
4859F: drivers/scsi/hpsa*.[ch]
4860F: include/linux/cciss*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004861F: include/uapi/linux/cciss*.h
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05004862
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004863HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Don Brace693373d2014-10-15 22:32:41 +00004864M: Don Brace <don.brace@pmcs.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004865L: iss_storagedev@hp.com
Don Brace693373d2014-10-15 22:32:41 +00004866L: storagedev@pmcs.com
4867L: linux-scsi@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004868S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004869F: Documentation/blockdev/cciss.txt
4870F: drivers/block/cciss*
4871F: include/linux/cciss_ioctl.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004872F: include/uapi/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004873
Linus Torvalds1da177e2005-04-16 15:20:36 -07004874HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02004875L: linux-fsdevel@vger.kernel.org
4876S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004877F: Documentation/filesystems/hfs.txt
4878F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004879
Geert Uytterhoevenef575f42014-01-23 15:54:21 -08004880HFSPLUS FILESYSTEM
4881L: linux-fsdevel@vger.kernel.org
4882S: Orphan
4883F: Documentation/filesystems/hfsplus.txt
4884F: fs/hfsplus/
4885
Linus Torvalds1da177e2005-04-16 15:20:36 -07004886HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004887M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004888L: linux-nvidia@lists.surfsouth.com
4889W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
4890S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09004891F: drivers/video/fbdev/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004892
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004893HIBERNATION (aka Software Suspend, aka swsusp)
Rafael J. Wysocki49db1902013-10-09 01:47:53 +02004894M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Rafael J. Wysocki7fb06082014-03-20 03:34:47 +01004895M: Pavel Machek <pavel@ucw.cz>
WANG Congbf1c1382011-10-08 20:57:50 +02004896L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004897S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004898F: arch/x86/power/
4899F: drivers/base/power/
4900F: kernel/power/
4901F: include/linux/suspend.h
4902F: include/linux/freezer.h
4903F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07004904F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004905
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01004906HID CORE LAYER
Jiri Kosinae5f64502015-08-09 09:11:34 +02004907M: Jiri Kosina <jikos@kernel.org>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04004908L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004909T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01004910S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004911F: drivers/hid/
4912F: include/linux/hid*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004913F: include/uapi/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01004914
Srinivas Pandruvada30ee72f2015-05-15 11:35:38 -07004915HID SENSOR HUB DRIVERS
Jiri Kosinae5f64502015-08-09 09:11:34 +02004916M: Jiri Kosina <jikos@kernel.org>
Srinivas Pandruvada30ee72f2015-05-15 11:35:38 -07004917M: Jonathan Cameron <jic23@kernel.org>
4918M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
4919L: linux-input@vger.kernel.org
4920L: linux-iio@vger.kernel.org
4921S: Maintained
4922F: Documentation/hid/hid-sensor*
4923F: drivers/hid/hid-sensor-*
4924F: drivers/iio/*/hid-*
4925F: include/linux/hid-sensor-*
4926
Ingo Molnar38bed542007-02-22 09:09:34 +01004927HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07004928M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar981c3a42014-01-21 10:59:20 +01004929L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004930T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Ingo Molnar38bed542007-02-22 09:09:34 +01004931S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004932F: Documentation/timers/
Thomas Gleixner5cee9642014-06-22 12:06:40 +02004933F: kernel/time/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01004934F: kernel/time/clockevents.c
4935F: kernel/time/tick*.*
4936F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07004937F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07004938F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01004939
Linus Torvalds1da177e2005-04-16 15:20:36 -07004940HIGH-SPEED SCC DRIVER FOR AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -07004941L: linux-hams@vger.kernel.org
Uwe Kleine-König8b64f2a2012-05-29 15:07:11 -07004942S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004943F: drivers/net/hamradio/dmascc.c
4944F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004945
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08004946HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004947M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08004948W: http://www.highpoint-tech.com
4949S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004950F: Documentation/scsi/hptiop.txt
4951F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08004952
Linus Torvalds1da177e2005-04-16 15:20:36 -07004953HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07004954M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004955L: linux-hippi@sunsite.dk
4956S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004957F: include/linux/hippidevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004958F: include/uapi/linux/if_hippi.h
Joe Perches679655d2009-04-07 20:44:32 -07004959F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07004960F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004961
Jouni Malinenff1d2762005-05-12 22:54:16 -04004962HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004963M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07004964L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07004965L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04004966W: http://hostap.epitest.fi/
4967S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004968F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04004969
Carlos Corbachodd8cd772008-02-05 02:17:15 +00004970HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd09448532010-02-11 10:40:13 -05004971L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01004972S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004973F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00004974
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004975HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07004976M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004977S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07004978F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004979
Joe Perches7d2c86b2009-04-07 20:59:01 -07004980HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07004981M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08004982S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004983F: Documentation/timers/hpet.txt
4984F: drivers/char/hpet.c
4985F: include/linux/hpet.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004986F: include/uapi/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08004987
Jiri Kosinae07b5d72010-03-18 10:59:57 +01004988HPET: x86
Joe Perches9e06f632014-04-03 14:48:53 -07004989S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004990F: arch/x86/kernel/hpet.c
4991F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08004992
Linus Torvalds1da177e2005-04-16 15:20:36 -07004993HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004994M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004995W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
4996S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004997F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004998
Sebastian Reichel3441cde2013-11-27 10:17:22 +01004999HSI SUBSYSTEM
Sebastian Reichel56459ea2014-03-28 19:57:59 +01005000M: Sebastian Reichel <sre@kernel.org>
5001T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
Sebastian Reichel3441cde2013-11-27 10:17:22 +01005002S: Maintained
5003F: Documentation/ABI/testing/sysfs-bus-hsi
Sebastian Reichel56459ea2014-03-28 19:57:59 +01005004F: Documentation/hsi.txt
Sebastian Reichel3441cde2013-11-27 10:17:22 +01005005F: drivers/hsi/
5006F: include/linux/hsi/
5007F: include/uapi/linux/hsi/
5008
Joe Perches7d2c86b2009-04-07 20:59:01 -07005009HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005010M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00005011W: http://www.pharscape.org
5012S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005013F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00005014
Arvid Brodin19990e22013-11-29 23:36:00 +01005015HSR NETWORK PROTOCOL
5016M: Arvid Brodin <arvid.brodin@alten.se>
5017L: netdev@vger.kernel.org
5018S: Maintained
5019F: net/hsr/
5020
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04005021HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005022M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04005023L: linux-input@vger.kernel.org
5024S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005025F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04005026
Linus Torvalds1da177e2005-04-16 15:20:36 -07005027HUGETLB FILESYSTEM
Nadia Yvette Chambers6d49e352012-12-06 10:39:54 +01005028M: Nadia Yvette Chambers <nyc@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005029S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005030F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005031
K. Y. Srinivasan05183182011-12-01 14:31:30 -08005032Hyper-V CORE AND DRIVERS
Joe Perches9c3646d2015-06-25 15:02:00 -07005033M: "K. Y. Srinivasan" <kys@microsoft.com>
K. Y. Srinivasan05183182011-12-01 14:31:30 -08005034M: Haiyang Zhang <haiyangz@microsoft.com>
5035L: devel@linuxdriverproject.org
5036S: Maintained
Haiyang Zhanga4162742013-05-09 14:34:55 -07005037F: arch/x86/include/asm/mshyperv.h
5038F: arch/x86/include/uapi/asm/hyperv.h
5039F: arch/x86/kernel/cpu/mshyperv.c
K. Y. Srinivasan05183182011-12-01 14:31:30 -08005040F: drivers/hid/hid-hyperv.c
Haiyang Zhanga4162742013-05-09 14:34:55 -07005041F: drivers/hv/
Haiyang Zhangf92ca802013-11-21 14:32:10 -08005042F: drivers/input/serio/hyperv-keyboard.c
K. Y. Srinivasan05183182011-12-01 14:31:30 -08005043F: drivers/net/hyperv/
Haiyang Zhanga4162742013-05-09 14:34:55 -07005044F: drivers/scsi/storvsc_drv.c
Jingoo Han8a61f012014-07-01 15:36:01 +09005045F: drivers/video/fbdev/hyperv_fb.c
Haiyang Zhanga4162742013-05-09 14:34:55 -07005046F: include/linux/hyperv.h
5047F: tools/hv/
Dexuan Cui54bf7252015-08-05 00:52:45 -07005048F: Documentation/ABI/stable/sysfs-bus-vmbus
K. Y. Srinivasan05183182011-12-01 14:31:30 -08005049
Jean Delvared85c8a6a2012-11-13 22:27:19 +01005050I2C OVER PARALLEL PORT
Jiri Slabyd8130622015-07-17 16:23:20 -07005051M: Jean Delvare <jdelvare@suse.com>
Jean Delvared85c8a6a2012-11-13 22:27:19 +01005052L: linux-i2c@vger.kernel.org
5053S: Maintained
5054F: Documentation/i2c/busses/i2c-parport
5055F: Documentation/i2c/busses/i2c-parport-light
5056F: drivers/i2c/busses/i2c-parport.c
5057F: drivers/i2c/busses/i2c-parport-light.c
5058
5059I2C/SMBUS CONTROLLER DRIVERS FOR PC
Jiri Slabyd8130622015-07-17 16:23:20 -07005060M: Jean Delvare <jdelvare@suse.com>
Jean Delvared85c8a6a2012-11-13 22:27:19 +01005061L: linux-i2c@vger.kernel.org
5062S: Maintained
5063F: Documentation/i2c/busses/i2c-ali1535
5064F: Documentation/i2c/busses/i2c-ali1563
5065F: Documentation/i2c/busses/i2c-ali15x3
5066F: Documentation/i2c/busses/i2c-amd756
5067F: Documentation/i2c/busses/i2c-amd8111
5068F: Documentation/i2c/busses/i2c-i801
5069F: Documentation/i2c/busses/i2c-nforce2
5070F: Documentation/i2c/busses/i2c-piix4
5071F: Documentation/i2c/busses/i2c-sis5595
5072F: Documentation/i2c/busses/i2c-sis630
5073F: Documentation/i2c/busses/i2c-sis96x
5074F: Documentation/i2c/busses/i2c-via
5075F: Documentation/i2c/busses/i2c-viapro
5076F: drivers/i2c/busses/i2c-ali1535.c
5077F: drivers/i2c/busses/i2c-ali1563.c
5078F: drivers/i2c/busses/i2c-ali15x3.c
5079F: drivers/i2c/busses/i2c-amd756.c
5080F: drivers/i2c/busses/i2c-amd756-s4882.c
5081F: drivers/i2c/busses/i2c-amd8111.c
5082F: drivers/i2c/busses/i2c-i801.c
5083F: drivers/i2c/busses/i2c-isch.c
5084F: drivers/i2c/busses/i2c-nforce2.c
5085F: drivers/i2c/busses/i2c-nforce2-s4985.c
5086F: drivers/i2c/busses/i2c-piix4.c
5087F: drivers/i2c/busses/i2c-sis5595.c
5088F: drivers/i2c/busses/i2c-sis630.c
5089F: drivers/i2c/busses/i2c-sis96x.c
5090F: drivers/i2c/busses/i2c-via.c
5091F: drivers/i2c/busses/i2c-viapro.c
5092
Neil Hormancb7f07a2013-02-10 11:59:03 -05005093I2C/SMBUS ISMT DRIVER
5094M: Seth Heasley <seth.heasley@intel.com>
5095M: Neil Horman <nhorman@tuxdriver.com>
5096L: linux-i2c@vger.kernel.org
5097F: drivers/i2c/busses/i2c-ismt.c
5098F: Documentation/i2c/busses/i2c-ismt
5099
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005100I2C/SMBUS STUB DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07005101M: Jean Delvare <jdelvare@suse.com>
Jean Delvare846557d2008-10-30 15:55:47 +01005102L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005103S: Maintained
Cesar Eduardo Barros8547a5b2012-12-16 21:11:54 +01005104F: drivers/i2c/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005105
Jean Delvare5b543962005-08-15 19:51:02 +02005106I2C SUBSYSTEM
Wolfram Sang14d77c42013-02-08 20:54:40 +01005107M: Wolfram Sang <wsa@the-dreams.de>
Jean Delvare846557d2008-10-30 15:55:47 +01005108L: linux-i2c@vger.kernel.org
Wolfram Sang9d4ea272014-04-02 20:25:59 +02005109W: https://i2c.wiki.kernel.org/
5110Q: https://patchwork.ozlabs.org/project/linux-i2c/list/
Wolfram Sang14d77c42013-02-08 20:54:40 +01005111T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005112S: Maintained
Wolfram Sang40ed1b42014-12-08 10:53:13 +01005113F: Documentation/devicetree/bindings/i2c/
Joe Perches679655d2009-04-07 20:44:32 -07005114F: Documentation/i2c/
5115F: drivers/i2c/
5116F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01005117F: include/linux/i2c-*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005118F: include/uapi/linux/i2c.h
5119F: include/uapi/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005120
Wolfram Sang4560d672014-08-19 10:08:35 -05005121I2C ACPI SUPPORT
5122M: Mika Westerberg <mika.westerberg@linux.intel.com>
5123L: linux-i2c@vger.kernel.org
5124L: linux-acpi@vger.kernel.org
5125S: Maintained
Wolfram Sang4560d672014-08-19 10:08:35 -05005126
Jean Delvared85c8a6a2012-11-13 22:27:19 +01005127I2C-TAOS-EVM DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07005128M: Jean Delvare <jdelvare@suse.com>
Jean Delvared85c8a6a2012-11-13 22:27:19 +01005129L: linux-i2c@vger.kernel.org
5130S: Maintained
5131F: Documentation/i2c/busses/i2c-taos-evm
5132F: drivers/i2c/busses/i2c-taos-evm.c
5133
Till Harbaume8c76ee2007-05-01 23:26:35 +02005134I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005135M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01005136L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07005137W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02005138S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005139F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02005140
Linus Torvalds1da177e2005-04-16 15:20:36 -07005141i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07005142M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005143S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005144F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005145
5146i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07005147M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07005148T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005149S: Maintained
5150
Linus Torvalds1da177e2005-04-16 15:20:36 -07005151IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07005152M: Tony Luck <tony.luck@intel.com>
5153M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005154L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07005155T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005156S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005157F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005158
Leonidas Da Silva Barbosa4cd38752015-08-08 18:29:27 -03005159IBM Power VMX Cryptographic instructions
5160M: Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
Paulo Flabiano Smorigo5cd01fe2015-08-10 16:14:17 -03005161M: Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
Leonidas Da Silva Barbosa4cd38752015-08-08 18:29:27 -03005162L: linux-crypto@vger.kernel.org
5163S: Supported
5164F: drivers/crypto/vmx/Makefile
5165F: drivers/crypto/vmx/Kconfig
5166F: drivers/crypto/vmx/vmx.c
5167F: drivers/crypto/vmx/aes*
5168F: drivers/crypto/vmx/ghash*
5169F: drivers/crypto/vmx/ppc-xlate.pl
5170
Kent Yoder956c2032012-09-07 04:17:01 +08005171IBM Power in-Nest Crypto Acceleration
Leonidas Da Silva Barbosa4cd38752015-08-08 18:29:27 -03005172M: Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
Paulo Flabiano Smorigo5cd01fe2015-08-10 16:14:17 -03005173M: Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
Kent Yoder956c2032012-09-07 04:17:01 +08005174L: linux-crypto@vger.kernel.org
5175S: Supported
Dan Streetman28bceea2015-06-18 12:28:32 -04005176F: drivers/crypto/nx/Makefile
5177F: drivers/crypto/nx/Kconfig
5178F: drivers/crypto/nx/nx-aes*
5179F: drivers/crypto/nx/nx-sha*
5180F: drivers/crypto/nx/nx.*
5181F: drivers/crypto/nx/nx_csbcpb.h
5182F: drivers/crypto/nx/nx_debugfs.h
Kent Yoder956c2032012-09-07 04:17:01 +08005183
Seth Jennings0e16aaf2012-07-19 09:42:40 -05005184IBM Power 842 compression accelerator
Dan Streetman41656aa2015-07-29 19:50:46 -04005185M: Dan Streetman <ddstreet@ieee.org>
Seth Jennings0e16aaf2012-07-19 09:42:40 -05005186S: Supported
Dan Streetman28bceea2015-06-18 12:28:32 -04005187F: drivers/crypto/nx/Makefile
5188F: drivers/crypto/nx/Kconfig
Dan Streetman7011a122015-05-07 13:49:17 -04005189F: drivers/crypto/nx/nx-842*
Dan Streetman2da572c2015-05-07 13:49:14 -04005190F: include/linux/sw842.h
Dan Streetman2062c5b2015-05-07 13:49:15 -04005191F: crypto/842.c
Dan Streetman2da572c2015-05-07 13:49:14 -04005192F: lib/842/
Seth Jennings0e16aaf2012-07-19 09:42:40 -05005193
Linus Torvalds1da177e2005-04-16 15:20:36 -07005194IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07005195M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005196S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005197F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005198
Santiago Leon9d348af2010-09-03 18:29:53 +00005199IBM Power Virtual Ethernet Device Driver
Thomas Falconeddd63a2015-01-09 14:29:40 -06005200M: Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
Santiago Leon9d348af2010-09-03 18:29:53 +00005201L: netdev@vger.kernel.org
5202S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07005203F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00005204
Nathan Fontenote6babec2014-04-09 13:32:06 -05005205IBM Power Virtual SCSI Device Drivers
Tyrel Datwylerbcbde522015-01-12 16:31:34 -08005206M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
Robert Jennings4b7652c2012-07-31 12:34:36 -05005207L: linux-scsi@vger.kernel.org
5208S: Supported
Nathan Fontenote6babec2014-04-09 13:32:06 -05005209F: drivers/scsi/ibmvscsi/ibmvscsi*
5210F: drivers/scsi/ibmvscsi/viosrp.h
5211
5212IBM Power Virtual FC Device Drivers
Tyrel Datwyler44b4dad2015-01-12 16:31:35 -08005213M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
Nathan Fontenote6babec2014-04-09 13:32:06 -05005214L: linux-scsi@vger.kernel.org
5215S: Supported
5216F: drivers/scsi/ibmvscsi/ibmvfc*
Robert Jennings4b7652c2012-07-31 12:34:36 -05005217
Linus Torvalds1da177e2005-04-16 15:20:36 -07005218IBM ServeRAID RAID DRIVER
Michael Opdenackerf9213e72014-08-08 14:23:50 -07005219S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005220F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005221
Peter Tyser6ed9f9c2012-04-18 09:48:24 -05005222ICH LPC AND GPIO DRIVER
5223M: Peter Tyser <ptyser@xes-inc.com>
5224S: Maintained
5225F: drivers/mfd/lpc_ich.c
5226F: drivers/gpio/gpio-ich.c
5227
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01005228IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005229M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005230L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005231Q: http://patchwork.ozlabs.org/project/linux-ide/list/
Joe Perches08deed12012-03-23 15:01:57 -07005232T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005233S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005234F: Documentation/ide/
5235F: drivers/ide/
5236F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005237
Ike Panhc6cb8c132011-08-25 22:28:45 +08005238IDEAPAD LAPTOP EXTRAS DRIVER
5239M: Ike Panhc <ike.pan@canonical.com>
5240L: platform-driver-x86@vger.kernel.org
5241W: http://launchpad.net/ideapad-laptop
5242S: Maintained
5243F: drivers/platform/x86/ideapad-laptop.c
5244
Andrey Moiseev1ea4c162013-08-25 22:51:15 -07005245IDEAPAD LAPTOP SLIDEBAR DRIVER
5246M: Andrey Moiseev <o2g.org.ru@gmail.com>
5247L: linux-input@vger.kernel.org
5248W: https://github.com/o2genum/ideapad-slidebar
5249S: Maintained
5250F: drivers/input/misc/ideapad_slidebar.c
5251
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02005252IDE/ATAPI DRIVERS
Borislav Petkov487ba8e2012-10-29 18:40:10 +01005253M: Borislav Petkov <bp@alien8.de>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01005254L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01005255S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005256F: Documentation/cdrom/ide-cd
5257F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005258
Andy Henroid27471fd2008-10-09 11:45:22 -07005259IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07005260M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02005261L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07005262S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005263F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07005264
Sergey Lapin02cf2282009-06-08 12:18:50 +00005265IEEE 802.15.4 SUBSYSTEM
Alexander Aringb6e195f2014-07-03 23:13:19 +02005266M: Alexander Aring <alex.aring@gmail.com>
Varka Bhadramebef9c12014-08-08 17:32:45 +05305267L: linux-wpan@vger.kernel.org
5268W: https://github.com/linux-wpan
5269T: git git://github.com/linux-wpan/linux-wpan-next.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00005270S: Maintained
5271F: net/ieee802154/
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00005272F: net/mac802154/
Cesar Eduardo Barros251741b2013-01-04 15:35:30 -08005273F: drivers/net/ieee802154/
Alexander Aring580947d2014-10-25 09:41:05 +02005274F: include/linux/nl802154.h
5275F: include/linux/ieee802154.h
5276F: include/net/nl802154.h
5277F: include/net/mac802154.h
5278F: include/net/af_ieee802154.h
5279F: include/net/cfg802154.h
5280F: include/net/ieee802154_netdev.h
Varka Bhadramebef9c12014-08-08 17:32:45 +05305281F: Documentation/networking/ieee802154.txt
Sergey Lapin02cf2282009-06-08 12:18:50 +00005282
Sean Youngb1c97192014-10-23 17:58:22 -03005283IGORPLUG-USB IR RECEIVER
5284M: Sean Young <sean@mess.org>
5285L: linux-media@vger.kernel.org
5286S: Maintained
5287F: drivers/media/rc/igorplugusb.c
5288
Sean Young40ad4a32012-11-19 10:32:53 -03005289IGUANAWORKS USB IR TRANSCEIVER
5290M: Sean Young <sean@mess.org>
5291L: linux-media@vger.kernel.org
5292S: Maintained
5293F: drivers/media/rc/iguanair.c
5294
Ameya Palande9545f862012-01-10 09:00:58 -08005295IIO SUBSYSTEM AND DRIVERS
Sachin Kamat030a13d2013-09-11 11:00:00 +01005296M: Jonathan Cameron <jic23@kernel.org>
Lars-Peter Clausenf0d61162014-08-18 09:29:00 +01005297R: Hartmut Knaack <knaack.h@gmx.de>
5298R: Lars-Peter Clausen <lars@metafoo.de>
5299R: Peter Meerwald <pmeerw@pmeerw.net>
Ameya Palande9545f862012-01-10 09:00:58 -08005300L: linux-iio@vger.kernel.org
5301S: Maintained
Lars-Peter Clausen03e7c252012-04-26 13:46:42 +02005302F: drivers/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08005303F: drivers/staging/iio/
Daniel Baluta8fe671f2014-11-13 15:19:47 -08005304F: include/linux/iio/
Roberta Dobrescu817020c2015-02-26 10:49:25 +02005305F: tools/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08005306
Stanislaw Gruszka65519262011-01-08 15:19:40 +01005307IKANOS/ADI EAGLE ADSL USB DRIVER
5308M: Matthieu Castet <castet.matthieu@free.fr>
5309M: Stanislaw Gruszka <stf_xl@wp.pl>
5310S: Maintained
5311F: drivers/usb/atm/ueagle-atm.c
5312
Guenter Roecke89ab512013-03-08 08:13:09 -08005313INA209 HARDWARE MONITOR DRIVER
5314M: Guenter Roeck <linux@roeck-us.net>
5315L: lm-sensors@lm-sensors.org
5316S: Maintained
5317F: Documentation/hwmon/ina209
5318F: Documentation/devicetree/bindings/i2c/ina209.txt
5319F: drivers/hwmon/ina209.c
5320
5321INA2XX HARDWARE MONITOR DRIVER
5322M: Guenter Roeck <linux@roeck-us.net>
5323L: lm-sensors@lm-sensors.org
5324S: Maintained
5325F: Documentation/hwmon/ina2xx
5326F: drivers/hwmon/ina2xx.c
5327F: include/linux/platform_data/ina2xx.h
5328
Samuel Iglesias Gonsalvez14dc1242012-11-16 16:19:59 +01005329INDUSTRY PACK SUBSYSTEM (IPACK)
5330M: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
5331M: Jens Taprogge <jens.taprogge@taprogge.org>
5332M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5333L: industrypack-devel@lists.sourceforge.net
5334W: http://industrypack.sourceforge.net
5335S: Maintained
5336F: drivers/ipack/
5337
Zubair Lutfullah Kakakhel8adc53f2015-03-18 16:16:37 +00005338INGENIC JZ4780 DMA Driver
5339M: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
5340S: Maintained
5341F: drivers/dma/dma-jz4780.c
5342
Mimi Zoharaa7168f2009-02-04 09:07:03 -05005343INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Mimi Zohar74dd7442014-02-27 08:44:45 -05005344M: Mimi Zohar <zohar@linux.vnet.ibm.com>
Dmitry Kasatkinbfd33c42015-01-15 14:18:18 +02005345M: Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
Mimi Zohar74dd7442014-02-27 08:44:45 -05005346L: linux-ima-devel@lists.sourceforge.net
5347L: linux-ima-user@lists.sourceforge.net
5348L: linux-security-module@vger.kernel.org
Mimi Zoharaa7168f2009-02-04 09:07:03 -05005349S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005350F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05005351
James Hogan9a4ea5a2014-11-17 09:17:49 -03005352IMGTEC IR DECODER DRIVER
5353M: James Hogan <james.hogan@imgtec.com>
5354S: Maintained
5355F: drivers/media/rc/img-ir/
5356
Linus Torvalds1da177e2005-04-16 15:20:36 -07005357IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005358L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09005359S: Orphan
Jingoo Han8a61f012014-07-01 15:36:01 +09005360F: drivers/video/fbdev/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005361
5362INFINIBAND SUBSYSTEM
Doug Ledfordb6b2bbe2015-05-05 12:57:09 -04005363M: Doug Ledford <dledford@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005364M: Sean Hefty <sean.hefty@intel.com>
5365M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07005366L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07005367W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08005368Q: http://patchwork.kernel.org/project/linux-rdma/list/
Doug Ledford2936ae02015-05-11 21:03:36 -04005369T: git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005370S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005371F: Documentation/infiniband/
5372F: drivers/infiniband/
Doug Ledford2dfcad32015-08-27 14:18:57 -04005373F: drivers/staging/rdma/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005374F: include/uapi/linux/if_infiniband.h
Yann Droneaud954138d2015-05-04 14:31:03 +02005375F: include/uapi/rdma/
5376F: include/rdma/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005377
Robert Lovec9f04f52005-07-15 12:21:07 -04005378INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07005379M: John McCutchan <john@johnmccutchan.com>
5380M: Robert Love <rlove@rlove.org>
5381M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04005382S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005383F: Documentation/filesystems/inotify.txt
5384F: fs/notify/inotify/
5385F: include/linux/inotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005386F: include/uapi/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04005387
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005388INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005389M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005390L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005391Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07005392T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005393S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005394F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07005395F: include/linux/input.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005396F: include/uapi/linux/input.h
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07005397F: include/linux/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005398
Henrik Rydberg3267a872010-06-24 19:10:40 -07005399INPUT MULTITOUCH (MT) PROTOCOL
Henrik Rydberg75dd1122015-01-08 14:32:21 -08005400M: Henrik Rydberg <rydberg@bitmath.org>
Henrik Rydberg3267a872010-06-24 19:10:40 -07005401L: linux-input@vger.kernel.org
Henrik Rydberg75dd1122015-01-08 14:32:21 -08005402S: Odd fixes
Henrik Rydberg3267a872010-06-24 19:10:40 -07005403F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01005404F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07005405K: \b(ABS|SYN)_MT_
5406
Jie Yang97fa99a2015-02-02 16:55:27 +08005407INTEL ASoC BDW/HSW DRIVERS
5408M: Jie Yang <yang.jie@linux.intel.com>
Jim Davise5747e42015-06-25 15:01:58 -07005409L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Jie Yang97fa99a2015-02-02 16:55:27 +08005410S: Supported
Joe Perchese8e12252015-06-30 14:59:39 -07005411F: sound/soc/intel/common/sst-dsp*
5412F: sound/soc/intel/common/sst-firmware.c
5413F: sound/soc/intel/boards/broadwell.c
5414F: sound/soc/intel/haswell/
Jie Yang97fa99a2015-02-02 16:55:27 +08005415
Dave Jiang4ac13e12011-07-29 17:16:55 -07005416INTEL C600 SERIES SAS CONTROLLER DRIVER
5417M: Intel SCU Linux support <intel-linux-scu@intel.com>
Lukasz Doraufdc58132014-04-07 15:39:58 -07005418M: Artur Paszkiewicz <artur.paszkiewicz@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07005419L: linux-scsi@vger.kernel.org
Dave Jiang71068912012-09-25 15:24:56 -07005420T: git git://git.code.sf.net/p/intel-sas/isci
5421S: Supported
Dave Jiang4ac13e12011-07-29 17:16:55 -07005422F: drivers/scsi/isci/
Dave Jiang4ac13e12011-07-29 17:16:55 -07005423
Len Brown26717172010-03-08 14:07:30 -05005424INTEL IDLE DRIVER
5425M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02005426L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005427T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05005428S: Supported
5429F: drivers/idle/intel_idle.c
5430
Kristen Carlson Accardi7c1ac182014-12-15 15:58:24 -08005431INTEL PSTATE DRIVER
5432M: Kristen Carlson Accardi <kristen@linux.intel.com>
5433L: linux-pm@vger.kernel.org
5434S: Supported
5435F: drivers/cpufreq/intel_pstate.c
5436
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005437INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08005438M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005439L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005440S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005441F: Documentation/fb/intelfb.txt
Jingoo Han8a61f012014-07-01 15:36:01 +09005442F: drivers/video/fbdev/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005443
Linus Torvalds1da177e2005-04-16 15:20:36 -07005444INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005445M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005446L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005447S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09005448F: drivers/video/fbdev/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005449
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05305450INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005451M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05005452L: platform-driver-x86@vger.kernel.org
Rafael J. Wysocki5ca92bd2013-10-10 23:03:44 +02005453W: https://01.org/linux-acpi
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05305454S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005455F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05305456
Linus Torvalds1da177e2005-04-16 15:20:36 -07005457INTEL IA32 MICROCODE UPDATE SUPPORT
Borislav Petkovca68a522015-03-29 15:54:13 +02005458M: Borislav Petkov <bp@alien8.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005459S: Maintained
Joe Perches73d425f2014-08-08 14:24:57 -07005460F: arch/x86/kernel/cpu/microcode/core*
5461F: arch/x86/kernel/cpu/microcode/intel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005462
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07005463INTEL I/OAT DMA DRIVER
Dave Jiang18ebd562013-10-22 15:29:20 -07005464M: Dave Jiang <dave.jiang@intel.com>
Dan Williams08223d82014-08-19 06:07:56 -07005465R: Dan Williams <dan.j.williams@intel.com>
Dave Jiang18ebd562013-10-22 15:29:20 -07005466L: dmaengine@vger.kernel.org
5467Q: https://patchwork.kernel.org/project/linux-dmaengine/list/
5468S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005469F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07005470
David Woodhouse6c8909b2008-10-18 16:12:17 +01005471INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07005472M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01005473L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07005474T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01005475S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07005476F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07005477F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01005478
Dan Williamsb3e5f262007-08-07 10:26:35 -07005479INTEL IOP-ADMA DMA DRIVER
Dan Williams08223d82014-08-19 06:07:56 -07005480R: Dan Williams <dan.j.williams@intel.com>
Dan Williams1dd83722012-08-15 19:20:02 -07005481S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07005482F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07005483
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01005484INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Krzysztof Hałasa5529c2c2014-09-30 10:32:58 +02005485M: Krzysztof Halasa <khalasa@piap.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01005486S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005487F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
5488F: arch/arm/mach-ixp4xx/include/mach/npe.h
5489F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
5490F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07005491F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07005492F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01005493
Michael Buesch844dd052006-06-26 00:24:59 -07005494INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005495M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07005496S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005497F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07005498
Jeff Kirsher2f302322015-03-25 17:01:03 -07005499INTEL ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005500M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Jeff Kirsher2f302322015-03-25 17:01:03 -07005501R: Jesse Brandeburg <jesse.brandeburg@intel.com>
5502R: Shannon Nelson <shannon.nelson@intel.com>
5503R: Carolyn Wyborny <carolyn.wyborny@intel.com>
5504R: Don Skidmore <donald.c.skidmore@intel.com>
5505R: Matthew Vick <matthew.vick@intel.com>
5506R: John Ronciak <john.ronciak@intel.com>
5507R: Mitch Williams <mitch.a.williams@intel.com>
5508L: intel-wired-lan@lists.osuosl.org
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00005509W: http://www.intel.com/support/feedback.htm
Auke Kokd94e6fe2008-03-03 14:37:47 -08005510W: http://e1000.sourceforge.net/
Jeff Kirsher2f302322015-03-25 17:01:03 -07005511Q: http://patchwork.ozlabs.org/project/intel-wired-lan/list/
5512T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
5513T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005514S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00005515F: Documentation/networking/e100.txt
5516F: Documentation/networking/e1000.txt
5517F: Documentation/networking/e1000e.txt
5518F: Documentation/networking/igb.txt
5519F: Documentation/networking/igbvf.txt
5520F: Documentation/networking/ixgb.txt
5521F: Documentation/networking/ixgbe.txt
5522F: Documentation/networking/ixgbevf.txt
Jesse Brandeburg1bff6522013-09-11 08:40:23 +00005523F: Documentation/networking/i40e.txt
Greg Rose105bf2f2013-12-21 06:13:16 +00005524F: Documentation/networking/i40evf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07005525F: drivers/net/ethernet/intel/
Joe Perchesbc90d292014-02-25 13:35:53 -08005526F: drivers/net/ethernet/intel/*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005527
Linus Walleij0963d59b2013-10-19 15:39:17 +02005528INTEL-MID GPIO DRIVER
5529M: David Cohen <david.a.cohen@linux.intel.com>
5530L: linux-gpio@vger.kernel.org
5531S: Maintained
5532F: drivers/gpio/gpio-intel-mid.c
5533
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04005534INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
5535M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07005536L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04005537S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005538F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07005539F: Documentation/networking/README.ipw2200
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04005540F: drivers/net/wireless/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06005541
Shane Wang4bd96a72010-03-10 14:36:10 +08005542INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
Gang Weie9b7d7c2012-09-17 14:08:59 -07005543M: Richard L Maliszewski <richard.l.maliszewski@intel.com>
5544M: Gang Wei <gang.wei@intel.com>
Shane Wang4bd96a72010-03-10 14:36:10 +08005545M: Shane Wang <shane.wang@intel.com>
5546L: tboot-devel@lists.sourceforge.net
5547W: http://tboot.sourceforge.net
Gang Weie9b7d7c2012-09-17 14:08:59 -07005548T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
Shane Wang4bd96a72010-03-10 14:36:10 +08005549S: Supported
5550F: Documentation/intel_txt.txt
5551F: include/linux/tboot.h
5552F: arch/x86/kernel/tboot.c
5553
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08005554INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07005555M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08005556M: linux-wimax@intel.com
Joe Perches49e7d9d2015-04-15 16:17:31 -07005557L: wimax@linuxwimax.org (subscribers-only)
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08005558S: Supported
5559W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07005560F: Documentation/wimax/README.i2400m
5561F: drivers/net/wimax/i2400m/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005562F: include/uapi/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08005563
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01005564INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
5565M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08005566L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01005567S: Supported
Wey-Yi Guyefa31442011-02-22 16:43:05 -08005568F: drivers/net/wireless/iwlegacy/
5569
Zhu Yib481de92007-09-25 17:54:57 -07005570INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07005571M: Johannes Berg <johannes.berg@intel.com>
Johannes Berg6161b022013-07-23 14:03:39 +02005572M: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
Johannes Berg7b9aebf2015-09-08 17:03:20 +02005573M: Intel Linux Wireless <linuxwifi@intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07005574L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07005575W: http://intellinuxwireless.org
Wey-Yi Guyb62ff712011-09-22 15:14:49 -07005576T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07005577S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005578F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07005579
Tomas Winklerde8fe022012-05-09 16:39:02 +03005580INTEL MANAGEMENT ENGINE (mei)
5581M: Tomas Winkler <tomas.winkler@intel.com>
5582L: linux-kernel@vger.kernel.org
5583S: Supported
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005584F: include/uapi/linux/mei.h
Tomas Winkler5069288b2015-06-13 22:11:33 +03005585F: include/linux/mei_cl_bus.h
Tomas Winklerde8fe022012-05-09 16:39:02 +03005586F: drivers/misc/mei/*
Cesar Eduardo Barrose07950a12013-01-04 15:35:36 -08005587F: Documentation/misc-devices/mei/*
Tomas Winklerde8fe022012-05-09 16:39:02 +03005588
qipeng.zha0a8b8352015-06-27 00:32:15 +08005589INTEL PMC IPC DRIVER
5590M: Zha Qipeng<qipeng.zha@intel.com>
5591L: platform-driver-x86@vger.kernel.org
5592S: Maintained
5593F: drivers/platform/x86/intel_pmc_ipc.c
5594F: arch/x86/include/asm/intel_pmc_ipc.h
5595
Ralf Baechlecb109a02007-08-30 23:56:30 -07005596IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005597M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005598L: linux-mips@linux-mips.org
5599S: Maintained
Jeff Kirsher8862bf12011-05-20 07:50:27 -07005600F: drivers/net/ethernet/sgi/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005601
Ralf Baechlecb109a02007-08-30 23:56:30 -07005602IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005603M: Pat Gefre <pfg@sgi.com>
Ralf Baechled39e0722010-10-19 18:32:41 +01005604L: linux-serial@vger.kernel.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07005605S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08005606F: drivers/tty/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07005607
Stephen Warren0b6e8562013-09-13 13:10:27 -06005608IOMMU DRIVERS
5609M: Joerg Roedel <joro@8bytes.org>
5610L: iommu@lists.linux-foundation.org
5611T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
5612S: Maintained
5613F: drivers/iommu/
5614
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005615IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07005616M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005617S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005618F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005619
Francois Romieu1202d6f2007-09-17 17:13:55 -07005620IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005621M: Francois Romieu <romieu@fr.zoreil.com>
5622M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07005623L: netdev@vger.kernel.org
5624S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07005625F: drivers/net/ethernet/icplus/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07005626
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005627IPATH DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04005628M: Mike Marciniszyn <infinipath@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07005629L: linux-rdma@vger.kernel.org
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07005630S: Maintained
Dennis Dalessandro6f9b3892015-07-30 09:25:42 -04005631F: drivers/staging/rdma/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08005632
Corey Minyard4409ebe2006-04-20 02:43:12 -07005633IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005634M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08005635L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07005636W: http://openipmi.sourceforge.net/
5637S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005638F: Documentation/IPMI.txt
5639F: drivers/char/ipmi/
5640F: include/linux/ipmi*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005641F: include/uapi/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07005642
Kenneth Westfield2d800892015-03-03 16:21:50 -08005643QCOM AUDIO (ASoC) DRIVERS
5644M: Patrick Lai <plai@codeaurora.org>
5645M: Banajit Goswami <bgoswami@codeaurora.org>
5646L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5647S: Supported
5648F: sound/soc/qcom/
5649
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005650IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005651M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005652L: linux-scsi@vger.kernel.org
5653W: http://www.adaptec.com/
5654S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005655F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005656
5657IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07005658M: Wensong Zhang <wensong@linux-vs.org>
5659M: Simon Horman <horms@verge.net.au>
5660M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005661L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005662L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005663S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005664F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07005665F: include/net/ip_vs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005666F: include/uapi/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07005667F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005668
Randy Dunlape7839f22008-10-12 16:11:45 -07005669IPWIRELESS DRIVER
Jiri Kosinae5f64502015-08-09 09:11:34 +02005670M: Jiri Kosina <jikos@kernel.org>
Jiri Slabyd8130622015-07-17 16:23:20 -07005671M: David Sterba <dsterba@suse.com>
Jiri Kosina92094aa2011-11-13 21:41:00 +01005672S: Odd Fixes
Greg Kroah-Hartman282361a2011-02-22 16:23:22 -08005673F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01005674
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005675IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005676M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005677L: netdev@vger.kernel.org
5678S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005679F: include/net/ipx.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005680F: include/uapi/linux/ipx.h
Joe Perches679655d2009-04-07 20:44:32 -07005681F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005682
Linus Torvalds1da177e2005-04-16 15:20:36 -07005683IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005684M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07005685L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01005686L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005687W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07005688S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02005689T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07005690F: Documentation/networking/irda.txt
5691F: drivers/net/irda/
5692F: include/net/irda/
5693F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005694
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02005695IRQ SUBSYSTEM
5696M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar981c3a42014-01-21 10:59:20 +01005697L: linux-kernel@vger.kernel.org
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02005698S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005699T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02005700F: kernel/irq/
Jason Cooper2ed9fd22014-05-13 18:47:01 +00005701
5702IRQCHIP DRIVERS
5703M: Thomas Gleixner <tglx@linutronix.de>
5704M: Jason Cooper <jason@lakedaemon.net>
Thomas Gleixner54d9ffc2015-07-30 12:38:06 +02005705M: Marc Zyngier <marc.zyngier@arm.com>
Jason Cooper2ed9fd22014-05-13 18:47:01 +00005706L: linux-kernel@vger.kernel.org
5707S: Maintained
5708T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5709T: git git://git.infradead.org/users/jcooper/linux.git irqchip/core
Geert Uytterhoeven5b5a9062014-08-28 09:56:47 +02005710F: Documentation/devicetree/bindings/interrupt-controller/
Thomas Petazzoniedd96902012-10-28 10:05:40 +01005711F: drivers/irqchip/
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02005712
Grant Likely7ab3a832012-02-14 14:06:47 -07005713IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
Thomas Gleixnerb09dec22015-07-30 12:40:55 +02005714M: Jiang Liu <jiang.liu@linux.intel.com>
5715M: Marc Zyngier <marc.zyngier@arm.com>
Grant Likely7ab3a832012-02-14 14:06:47 -07005716S: Maintained
Thomas Gleixnerb09dec22015-07-30 12:40:55 +02005717T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Grant Likely7ab3a832012-02-14 14:06:47 -07005718F: Documentation/IRQ-domain.txt
5719F: include/linux/irqdomain.h
5720F: kernel/irq/irqdomain.c
Thomas Gleixnerb09dec22015-07-30 12:40:55 +02005721F: kernel/irq/msi.c
Grant Likely7ab3a832012-02-14 14:06:47 -07005722
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005723ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07005724M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005725S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005726F: Documentation/isapnp.txt
5727F: drivers/pnp/isapnp/
5728F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005729
Hans Verkuild39b84202012-11-23 07:07:02 -03005730ISA RADIO MODULE
5731M: Hans Verkuil <hverkuil@xs4all.nl>
5732L: linux-media@vger.kernel.org
5733T: git git://linuxtv.org/media_tree.git
5734W: http://linuxtv.org
5735S: Maintained
5736F: drivers/media/radio/radio-isa*
5737
Harry Wei71a6d0a2011-05-11 15:13:33 -07005738iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
5739M: Peter Jones <pjones@redhat.com>
5740M: Konrad Rzeszutek Wilk <konrad@kernel.org>
5741S: Maintained
5742F: drivers/firmware/iscsi_ibft*
5743
Mike Christie14816b1e2007-11-28 16:22:06 -08005744ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07005745M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b1e2007-11-28 16:22:06 -08005746L: open-iscsi@googlegroups.com
5747W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07005748T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08005749S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005750F: drivers/scsi/*iscsi*
5751F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08005752
Or Gerlitz1e65eb42013-05-08 12:21:19 +00005753ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
5754M: Or Gerlitz <ogerlitz@mellanox.com>
Or Gerlitzb261aea2014-10-01 14:02:17 +03005755M: Sagi Grimberg <sagig@mellanox.com>
Or Gerlitz1e65eb42013-05-08 12:21:19 +00005756M: Roi Dayan <roid@mellanox.com>
5757L: linux-rdma@vger.kernel.org
5758S: Supported
5759W: http://www.openfabrics.org
5760W: www.open-iscsi.org
5761Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches14430812013-09-11 14:23:50 -07005762F: drivers/infiniband/ulp/iser/
Or Gerlitz1e65eb42013-05-08 12:21:19 +00005763
Sagi Grimberg2b70e5f2015-01-07 12:54:44 +02005764ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
5765M: Sagi Grimberg <sagig@mellanox.com>
5766T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
5767L: linux-rdma@vger.kernel.org
5768L: target-devel@vger.kernel.org
5769S: Supported
5770W: http://www.linux-iscsi.org
5771F: drivers/infiniband/ulp/isert
5772
Linus Torvalds1da177e2005-04-16 15:20:36 -07005773ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005774M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07005775L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07005776L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005777W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07005778T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005779S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005780F: Documentation/isdn/
5781F: drivers/isdn/
5782F: include/linux/isdn.h
5783F: include/linux/isdn/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005784F: include/uapi/linux/isdn.h
5785F: include/uapi/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005786
5787ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07005788M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07005789L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005790W: http://www.melware.de
5791S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005792F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005793
Jean Delvared6248702010-03-05 22:17:20 +01005794IT87 HARDWARE MONITORING DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07005795M: Jean Delvare <jdelvare@suse.com>
Jean Delvared6248702010-03-05 22:17:20 +01005796L: lm-sensors@lm-sensors.org
5797S: Maintained
5798F: Documentation/hwmon/it87
5799F: drivers/hwmon/it87.c
5800
Malcolm Priestley68620bd2012-11-04 19:16:31 +01005801IT913X MEDIA DRIVER
Antti Palosaarid7104bf2013-03-09 22:58:13 -03005802M: Antti Palosaari <crope@iki.fi>
5803L: linux-media@vger.kernel.org
5804W: http://linuxtv.org/
5805W: http://palosaari.fi/linux/
5806Q: http://patchwork.linuxtv.org/project/linux-media/list/
5807T: git git://linuxtv.org/anttip/media_tree.git
5808S: Maintained
Antti Palosaari249c6972014-09-01 19:44:59 -03005809F: drivers/media/tuners/it913x*
Antti Palosaarid7104bf2013-03-09 22:58:13 -03005810
Hans Verkuil91821ff2007-12-02 09:35:33 -03005811IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03005812M: Andy Walls <awalls@md.metrocast.net>
Joe Perches7b212ed2014-12-10 15:51:24 -08005813L: ivtv-devel@ivtvdriver.org (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005814L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005815T: git git://linuxtv.org/media_tree.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03005816W: http://www.ivtvdriver.org
5817S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005818F: Documentation/video4linux/*.ivtv
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005819F: drivers/media/pci/ivtv/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005820F: include/uapi/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03005821
Malcolm Priestley68620bd2012-11-04 19:16:31 +01005822IX2505V MEDIA DRIVER
5823M: Malcolm Priestley <tvboxspy@gmail.com>
5824L: linux-media@vger.kernel.org
5825W: http://linuxtv.org/
5826Q: http://patchwork.linuxtv.org/project/linux-media/list/
5827S: Maintained
5828F: drivers/media/dvb-frontends/ix2505v*
5829
Guenter Roeck4453d732010-08-09 17:21:08 -07005830JC42.4 TEMPERATURE SENSOR DRIVER
5831M: Guenter Roeck <linux@roeck-us.net>
5832L: lm-sensors@lm-sensors.org
5833S: Maintained
5834F: drivers/hwmon/jc42.c
5835F: Documentation/hwmon/jc42
5836
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005837JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06005838M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005839L: jfs-discussion@lists.sourceforge.net
5840W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07005841T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05005842S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005843F: Documentation/filesystems/jfs.txt
5844F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005845
Guo-Fu Tseng95252232008-09-16 01:00:11 +08005846JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005847M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08005848L: netdev@vger.kernel.org
5849S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07005850F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08005851
Linus Torvalds1da177e2005-04-16 15:20:36 -07005852JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07005853M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04005854L: linux-mtd@lists.infradead.org
5855W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07005856S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005857F: fs/jffs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005858F: include/uapi/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005859
Theodore Ts'od183e112011-05-26 09:53:09 -04005860JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
5861M: "Theodore Ts'o" <tytso@mit.edu>
Jan Karac290ea02015-06-18 16:52:29 +02005862M: Jan Kara <jack@suse.com>
Theodore Ts'od183e112011-05-26 09:53:09 -04005863L: linux-ext4@vger.kernel.org
5864S: Maintained
5865F: fs/jbd2/
5866F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07005867
Mikhail Ulyanov207dab52015-07-22 08:23:05 -03005868JPU V4L2 MEM2MEM DRIVER FOR RENESAS
5869M: Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
5870L: linux-media@vger.kernel.org
5871S: Maintained
5872F: drivers/media/platform/rcar_jpu.c
5873
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03005874JSM Neo PCI based serial card
Thadeu Lima de Souza Cascardo9d141cb2013-05-22 15:15:24 -03005875M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03005876L: linux-serial@vger.kernel.org
5877S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08005878F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03005879
Clemens Ladischaf399172011-01-10 16:32:54 +01005880K10TEMP HARDWARE MONITORING DRIVER
5881M: Clemens Ladisch <clemens@ladisch.de>
5882L: lm-sensors@lm-sensors.org
5883S: Maintained
5884F: Documentation/hwmon/k10temp
5885F: drivers/hwmon/k10temp.c
5886
Rudolf Marek4660cb32006-10-08 22:01:26 +02005887K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005888M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02005889L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005890S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005891F: Documentation/hwmon/k8temp
5892F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005893
5894KCONFIG
Michal Marek5eb1f992013-10-30 12:02:27 +01005895M: "Yann E. MORIN" <yann.morin.1998@free.fr>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02005896L: linux-kbuild@vger.kernel.org
Joe Perchescea83212014-03-03 15:38:38 -08005897T: git git://gitorious.org/linux-kconfig/linux-kconfig
Michal Marek5eb1f992013-10-30 12:02:27 +01005898S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005899F: Documentation/kbuild/kconfig-language.txt
5900F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005901
Vivek Goyalea6c2082006-05-20 14:59:55 -07005902KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07005903M: Vivek Goyal <vgoyal@redhat.com>
5904M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07005905L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07005906W: http://lse.sourceforge.net/kdump/
5907S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005908F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07005909
Hans Verkuilf41bf022012-11-23 07:04:36 -03005910KEENE FM RADIO TRANSMITTER DRIVER
5911M: Hans Verkuil <hverkuil@xs4all.nl>
5912L: linux-media@vger.kernel.org
5913T: git git://linuxtv.org/media_tree.git
5914W: http://linuxtv.org
5915S: Maintained
5916F: drivers/media/radio/radio-keene*
5917
Linus Torvalds1da177e2005-04-16 15:20:36 -07005918KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07005919M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08005920L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005921S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005922F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005923
Michal Marek70fb7ba2010-01-29 14:22:43 +01005924KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Jiri Slabyd8130622015-07-17 16:23:20 -07005925M: Michal Marek <mmarek@suse.com>
Joe Perches08deed12012-03-23 15:01:57 -07005926T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
5927T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02005928L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08005929S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005930F: Documentation/kbuild/
5931F: Makefile
5932F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01005933F: scripts/basic/
5934F: scripts/mk*
5935F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005936
5937KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07005938L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07005939W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07005940S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07005941
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04005942KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005943M: "J. Bruce Fields" <bfields@fieldses.org>
J. Bruce Fields883985f62015-08-24 16:44:40 -04005944M: Jeff Layton <jlayton@poochiereds.net>
Neil Brown16141c02007-12-11 16:16:12 -08005945L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005946W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08005947S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005948F: fs/nfsd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005949F: include/uapi/linux/nfsd/
Joe Perches679655d2009-04-07 20:44:32 -07005950F: fs/lockd/
5951F: fs/nfs_common/
5952F: net/sunrpc/
5953F: include/linux/lockd/
5954F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005955F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005956
Shuah Khan13b122b2014-10-13 15:51:21 -07005957KERNEL SELFTEST FRAMEWORK
5958M: Shuah Khan <shuahkh@osg.samsung.com>
5959L: linux-api@vger.kernel.org
5960T: git git://git.kernel.org/pub/scm/shuah/linux-kselftest
5961S: Maintained
5962F: tools/testing/selftests
5963
Avi Kivity426d62e2006-12-13 00:34:03 -08005964KERNEL VIRTUAL MACHINE (KVM)
Gleb Natapov0a00a772013-11-27 16:35:22 +02005965M: Gleb Natapov <gleb@kernel.org>
Paolo Bonzinic93a64f2013-05-15 19:02:24 +02005966M: Paolo Bonzini <pbonzini@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03005967L: kvm@vger.kernel.org
Ramkumar Ramachandrae3e58472013-10-31 16:16:34 +05305968W: http://www.linux-kvm.org
Ramkumar Ramachandraa94b40a2013-10-31 16:29:23 +05305969T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
Avi Kivity426d62e2006-12-13 00:34:03 -08005970S: Supported
Paolo Bonzinic93a64f2013-05-15 19:02:24 +02005971F: Documentation/*/kvm*.txt
5972F: Documentation/virtual/kvm/
Joe Perches679655d2009-04-07 20:44:32 -07005973F: arch/*/kvm/
Christian Borntraeger1662e862015-03-12 14:59:26 +01005974F: arch/x86/kernel/kvm.c
5975F: arch/x86/kernel/kvmclock.c
Joe Perches679655d2009-04-07 20:44:32 -07005976F: arch/*/include/asm/kvm*
5977F: include/linux/kvm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005978F: include/uapi/linux/kvm*
Joe Perches679655d2009-04-07 20:44:32 -07005979F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08005980
Joerg Roedelad8003d2008-09-10 20:01:07 +02005981KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joerg Roedel7de609c2012-10-29 19:08:21 +01005982M: Joerg Roedel <joro@8bytes.org>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07005983L: kvm@vger.kernel.org
Dirk Müller038161d2015-10-01 13:46:01 +02005984W: http://www.linux-kvm.org/
Joerg Roedel7de609c2012-10-29 19:08:21 +01005985S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005986F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07005987F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07005988
Hollis Blanchard513014b2008-04-16 23:28:08 -05005989KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Jiri Slabyd8130622015-07-17 16:23:20 -07005990M: Alexander Graf <agraf@suse.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03005991L: kvm-ppc@vger.kernel.org
Dirk Müller038161d2015-10-01 13:46:01 +02005992W: http://www.linux-kvm.org/
Michael Ellerman6a7f9722012-10-15 19:01:05 +00005993T: git git://github.com/agraf/linux-2.6.git
Hollis Blanchard513014b2008-04-16 23:28:08 -05005994S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005995F: arch/powerpc/include/asm/kvm*
5996F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05005997
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01005998KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07005999M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02006000M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01006001L: linux-s390@vger.kernel.org
6002W: http://www.ibm.com/developerworks/linux/linux390/
6003S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006004F: Documentation/s390/kvm.txt
6005F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07006006F: arch/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01006007
Christoffer Dalla7494742013-01-20 18:42:26 -05006008KERNEL VIRTUAL MACHINE (KVM) FOR ARM
Christoffer Dall0f4ca792013-06-21 13:54:36 -07006009M: Christoffer Dall <christoffer.dall@linaro.org>
Marc Zyngier5c8818b2014-04-26 03:43:01 -07006010M: Marc Zyngier <marc.zyngier@arm.com>
6011L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Christoffer Dalla7494742013-01-20 18:42:26 -05006012L: kvmarm@lists.cs.columbia.edu
6013W: http://systems.cs.columbia.edu/projects/kvm-arm
Christoffer Dall0f4ca792013-06-21 13:54:36 -07006014S: Supported
Christoffer Dalla7494742013-01-20 18:42:26 -05006015F: arch/arm/include/uapi/asm/kvm*
6016F: arch/arm/include/asm/kvm*
6017F: arch/arm/kvm/
Marc Zyngier5c8818b2014-04-26 03:43:01 -07006018F: virt/kvm/arm/
6019F: include/kvm/arm_*
Christoffer Dalla7494742013-01-20 18:42:26 -05006020
Marc Zyngier6394a3e2013-04-02 17:49:40 +01006021KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
Marc Zyngier5c8818b2014-04-26 03:43:01 -07006022M: Christoffer Dall <christoffer.dall@linaro.org>
Marc Zyngier6394a3e2013-04-02 17:49:40 +01006023M: Marc Zyngier <marc.zyngier@arm.com>
6024L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6025L: kvmarm@lists.cs.columbia.edu
6026S: Maintained
6027F: arch/arm64/include/uapi/asm/kvm*
6028F: arch/arm64/include/asm/kvm*
6029F: arch/arm64/kvm/
6030
Eric W. Biedermandc009d92005-06-25 14:57:52 -07006031KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07006032M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07006033W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07006034L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07006035S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006036F: include/linux/kexec.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006037F: include/uapi/linux/kexec.h
Joe Perches679655d2009-04-07 20:44:32 -07006038F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07006039
David Howellse9714612010-03-29 23:42:09 +01006040KEYS/KEYRINGS:
6041M: David Howells <dhowells@redhat.com>
David Howellsaa62eff2015-08-11 13:29:48 +01006042L: keyrings@vger.kernel.org
David Howellse9714612010-03-29 23:42:09 +01006043S: Maintained
Randy Dunlapd410fa4e2011-05-19 15:59:38 -07006044F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01006045F: include/linux/key.h
6046F: include/linux/key-type.h
6047F: include/keys/
6048F: security/keys/
6049
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006050KEYS-TRUSTED
Mimi Zohar74dd7442014-02-27 08:44:45 -05006051M: David Safford <safford@us.ibm.com>
6052M: Mimi Zohar <zohar@linux.vnet.ibm.com>
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006053L: linux-security-module@vger.kernel.org
David Howellsaa62eff2015-08-11 13:29:48 +01006054L: keyrings@vger.kernel.org
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006055S: Supported
Randy Dunlapd410fa4e2011-05-19 15:59:38 -07006056F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006057F: include/keys/trusted-type.h
6058F: security/keys/trusted.c
6059F: security/keys/trusted.h
6060
6061KEYS-ENCRYPTED
Mimi Zohar74dd7442014-02-27 08:44:45 -05006062M: Mimi Zohar <zohar@linux.vnet.ibm.com>
6063M: David Safford <safford@us.ibm.com>
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006064L: linux-security-module@vger.kernel.org
David Howellsaa62eff2015-08-11 13:29:48 +01006065L: keyrings@vger.kernel.org
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006066S: Supported
Randy Dunlapd410fa4e2011-05-19 15:59:38 -07006067F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006068F: include/keys/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08006069F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006070
Jason Wessel5b778da2010-05-20 21:04:28 -05006071KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07006072M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05006073W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05006074L: kgdb-bugreport@lists.sourceforge.net
6075S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006076F: Documentation/DocBook/kgdb.tmpl
6077F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006078F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05006079F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07006080F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05006081F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05006082
Pekka Enberg456db8c2008-04-28 22:47:29 +03006083KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07006084M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02006085M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03006086S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08006087F: Documentation/kmemcheck.txt
6088F: arch/x86/include/asm/kmemcheck.h
6089F: arch/x86/mm/kmemcheck/
6090F: include/linux/kmemcheck.h
6091F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03006092
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01006093KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07006094M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01006095S: Maintained
6096F: Documentation/kmemleak.txt
6097F: include/linux/kmemleak.h
6098F: mm/kmemleak.c
6099F: mm/kmemleak-test.c
6100
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07006101KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07006102M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
6103M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
6104M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07006105M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07006106S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006107F: Documentation/kprobes.txt
6108F: include/linux/kprobes.h
6109F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07006110
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08006111KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006112M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07006113W: http://miguelojeda.es/auxdisplay.htm
6114W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08006115S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006116F: Documentation/auxdisplay/ks0108
6117F: drivers/auxdisplay/ks0108.c
6118F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08006119
David Ahern1b69c6d2015-09-29 20:07:11 -07006120L3MDEV
6121M: David Ahern <dsa@cumulusnetworks.com>
6122L: netdev@vger.kernel.org
6123S: Maintained
6124F: net/l3mdev
6125F: include/net/l3mdev.h
6126
Linus Torvalds1da177e2005-04-16 15:20:36 -07006127LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07006128L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07006129S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006130F: Documentation/networking/lapb-module.txt
6131F: include/*/lapb.h
6132F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006133
6134LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07006135M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006136L: linux-scsi@vger.kernel.org
6137S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006138F: Documentation/scsi/53c700.txt
6139F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006140
Richard Purdie263de9b2006-05-15 09:44:16 -07006141LED SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006142M: Richard Purdie <rpurdie@rpsys.net>
Andrew Morton48b945a2015-05-05 16:23:30 -07006143M: Jacek Anaszewski <j.anaszewski@samsung.com>
Bryan Wuaa69cb82012-05-31 19:51:37 +08006144L: linux-leds@vger.kernel.org
Jacek Anaszewskib8926ba2015-08-20 08:59:35 +02006145T: git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07006146S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006147F: drivers/leds/
6148F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07006149
Jean Delvareb0461a42011-06-15 15:08:46 -07006150LEGACY EEPROM DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07006151M: Jean Delvare <jdelvare@suse.com>
Jean Delvareb0461a42011-06-15 15:08:46 -07006152S: Maintained
6153F: Documentation/misc-devices/eeprom
6154F: drivers/misc/eeprom/eeprom.c
6155
Linus Torvalds1da177e2005-04-16 15:20:36 -07006156LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07006157M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006158L: legousb-devel@lists.sourceforge.net
6159W: http://legousb.sourceforge.net/
6160S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006161F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006162
Michael Krufky055616a2012-10-02 00:56:06 -03006163LG2160 MEDIA DRIVER
6164M: Michael Krufky <mkrufky@linuxtv.org>
6165L: linux-media@vger.kernel.org
6166W: http://linuxtv.org/
6167W: http://github.com/mkrufky
6168Q: http://patchwork.linuxtv.org/project/linux-media/list/
6169T: git git://linuxtv.org/mkrufky/tuners.git
6170S: Maintained
6171F: drivers/media/dvb-frontends/lg2160.*
6172
Michael Krufky6f0e7722012-10-02 00:56:00 -03006173LGDT3305 MEDIA DRIVER
6174M: Michael Krufky <mkrufky@linuxtv.org>
6175L: linux-media@vger.kernel.org
6176W: http://linuxtv.org/
6177W: http://github.com/mkrufky
6178Q: http://patchwork.linuxtv.org/project/linux-media/list/
6179T: git git://linuxtv.org/mkrufky/tuners.git
6180S: Maintained
6181F: drivers/media/dvb-frontends/lgdt3305.*
6182
Rusty Russell568a17f2007-10-25 14:12:24 +10006183LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07006184M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006185L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10006186W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06006187S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08006188F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07006189F: arch/x86/lguest/
6190F: drivers/lguest/
6191F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08006192F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10006193
Tejun Heo32ac7cb2015-01-06 18:36:44 -05006194LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
6195M: Tejun Heo <tj@kernel.org>
6196L: linux-ide@vger.kernel.org
6197T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6198S: Maintained
6199F: drivers/ata/
6200F: include/linux/ata.h
6201F: include/linux/libata.h
6202
6203LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
Viresh Kumarda899472015-07-17 16:23:50 -07006204M: Viresh Kumar <vireshk@kernel.org>
Tejun Heo32ac7cb2015-01-06 18:36:44 -05006205L: linux-ide@vger.kernel.org
6206T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6207S: Maintained
6208F: include/linux/pata_arasan_cf_data.h
6209F: drivers/ata/pata_arasan_cf.c
6210
Bartlomiej Zolnierkiewiczc7fa0562014-12-02 17:29:08 +01006211LIBATA PATA DRIVERS
6212M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6213M: Tejun Heo <tj@kernel.org>
6214L: linux-ide@vger.kernel.org
6215T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6216S: Maintained
6217F: drivers/ata/pata_*.c
6218F: drivers/ata/ata_generic.c
6219
Tejun Heo32ac7cb2015-01-06 18:36:44 -05006220LIBATA SATA AHCI PLATFORM devices support
6221M: Hans de Goede <hdegoede@redhat.com>
6222M: Tejun Heo <tj@kernel.org>
6223L: linux-ide@vger.kernel.org
6224T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6225S: Maintained
6226F: drivers/ata/ahci_platform.c
6227F: drivers/ata/libahci_platform.c
6228F: include/linux/ahci_platform.h
6229
6230LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
6231M: Mikael Pettersson <mikpelinux@gmail.com>
6232L: linux-ide@vger.kernel.org
6233T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6234S: Maintained
6235F: drivers/ata/sata_promise.*
6236
Sasha Levin1acd4372013-06-13 18:41:24 -04006237LIBLOCKDEP
6238M: Sasha Levin <sasha.levin@oracle.com>
6239S: Maintained
6240F: tools/lib/lockdep/
6241
Dan Williamsbc301962015-06-25 04:48:19 -04006242LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
6243M: Dan Williams <dan.j.williams@intel.com>
6244L: linux-nvdimm@lists.01.org
6245Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
6246S: Supported
6247F: drivers/nvdimm/*
6248F: include/linux/nd.h
6249F: include/linux/libnvdimm.h
6250F: include/uapi/linux/ndctl.h
6251
6252LIBNVDIMM BLK: MMIO-APERTURE DRIVER
6253M: Ross Zwisler <ross.zwisler@linux.intel.com>
6254L: linux-nvdimm@lists.01.org
6255Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
6256S: Supported
6257F: drivers/nvdimm/blk.c
6258F: drivers/nvdimm/region_devs.c
6259F: drivers/acpi/nfit*
6260
6261LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
6262M: Vishal Verma <vishal.l.verma@intel.com>
6263L: linux-nvdimm@lists.01.org
6264Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
6265S: Supported
6266F: drivers/nvdimm/btt*
6267
6268LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
6269M: Ross Zwisler <ross.zwisler@linux.intel.com>
6270L: linux-nvdimm@lists.01.org
6271Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
6272S: Supported
6273F: drivers/nvdimm/pmem.c
Ross Zwislerb864bc12015-07-10 11:06:10 -06006274F: include/linux/pmem.h
Ross Zwisler40603522015-08-18 13:55:36 -06006275F: arch/*/include/asm/pmem.h
Dan Williamsbc301962015-06-25 04:48:19 -04006276
Linus Torvalds1da177e2005-04-16 15:20:36 -07006277LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07006278M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006279W: http://www.ibm.com/linux/ltc/projects/ppc
6280S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00006281F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006282
Paul Mackerras852bb9f2008-07-04 21:04:42 +10006283LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07006284M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
6285M: Paul Mackerras <paulus@samba.org>
Benjamin Herrenschmidtea668932014-07-28 13:54:37 +10006286M: Michael Ellerman <mpe@ellerman.id.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006287W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006288L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08006289Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Michael Ellerman99580842015-07-07 19:16:23 +10006290T: git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006291S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00006292F: Documentation/powerpc/
6293F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006294
6295LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07006296M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006297W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006298L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006299S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00006300F: arch/powerpc/platforms/powermac/
6301F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006302
Grant Likely77a76362008-07-12 12:11:43 -06006303LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00006304M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006305L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschincba5b1c2014-10-02 16:16:59 -07006306T: git git://git.denx.de/linux-denx-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006307S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00006308F: arch/powerpc/platforms/512x/
6309F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006310
6311LINUX FOR POWERPC EMBEDDED PPC4XX
Joe Perches49e7d9d2015-04-15 16:17:31 -07006312M: Alistair Popple <alistair@popple.id.au>
Joe Perches8b58be82009-07-29 15:04:30 -07006313M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006314W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006315L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006316S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00006317F: arch/powerpc/platforms/40x/
6318F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006319
Grant Likely260c02a2007-10-02 12:15:34 +10006320LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006321L: linuxppc-dev@lists.ozlabs.org
Grant Likelycdeb8992013-07-22 01:38:32 +01006322S: Orphan
Joe Perches11c34c72009-12-04 07:16:59 +00006323F: arch/powerpc/*/*virtex*
6324F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006325
Tom Rinie93adf12005-07-26 12:49:53 -07006326LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07006327M: Vitaly Bordug <vitb@kernel.crashing.org>
Tom Rinie93adf12005-07-26 12:49:53 -07006328W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006329L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07006330S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07006331F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07006332
Linus Torvalds1da177e2005-04-16 15:20:36 -07006333LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Scott Wooda1e0fb42014-05-05 20:46:43 -05006334M: Scott Wood <scottwood@freescale.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006335M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01006336W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006337L: linuxppc-dev@lists.ozlabs.org
Scott Wooda1e0fb42014-05-05 20:46:43 -05006338T: git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
Jim Cromiece00f852006-11-30 04:49:44 +01006339S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00006340F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03006341F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006342
Olof Johanssonab06ff32006-09-06 14:44:54 -05006343LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07006344M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006345L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00006346S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00006347F: arch/powerpc/platforms/pasemi/
6348F: drivers/*/*pasemi*
6349F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05006350
Linus Torvalds1da177e2005-04-16 15:20:36 -07006351LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07006352M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08006353L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006354S: Supported
6355
Harry Weia23ce6d2011-02-11 16:52:20 +01006356LIS3LV02D ACCELEROMETER DRIVER
6357M: Eric Piel <eric.piel@tremplin-utc.net>
6358S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01006359F: Documentation/misc-devices/lis3lv02d
6360F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07006361F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01006362
Seth Jenningsb700e7f2014-12-16 11:58:19 -06006363LIVE PATCHING
6364M: Josh Poimboeuf <jpoimboe@redhat.com>
6365M: Seth Jennings <sjenning@redhat.com>
Jiri Kosinae5f64502015-08-09 09:11:34 +02006366M: Jiri Kosina <jikos@kernel.org>
Jiri Slabyd8130622015-07-17 16:23:20 -07006367M: Vojtech Pavlik <vojtech@suse.com>
Seth Jenningsb700e7f2014-12-16 11:58:19 -06006368S: Maintained
6369F: kernel/livepatch/
6370F: include/linux/livepatch.h
6371F: arch/x86/include/asm/livepatch.h
6372F: arch/x86/kernel/livepatch.c
6373F: Documentation/ABI/testing/sysfs-kernel-livepatch
Seth Jennings13d1cf72014-12-16 11:58:20 -06006374F: samples/livepatch/
Seth Jenningsb700e7f2014-12-16 11:58:19 -06006375L: live-patching@vger.kernel.org
Jiri Kosina74d50da2014-12-22 13:40:20 +01006376T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
Seth Jenningsb700e7f2014-12-16 11:58:19 -06006377
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006378LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07006379M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006380S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006381F: include/linux/llc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006382F: include/uapi/linux/llc.h
Joe Perches679655d2009-04-07 20:44:32 -07006383F: include/net/llc*
6384F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006385
Adrien Demarez4e233cb2009-12-09 20:35:50 +01006386LM73 HARDWARE MONITOR DRIVER
6387M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
6388L: lm-sensors@lm-sensors.org
6389S: Maintained
6390F: drivers/hwmon/lm73.c
6391
Jean Delvare156e2d12011-07-25 21:46:11 +02006392LM78 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07006393M: Jean Delvare <jdelvare@suse.com>
Jean Delvare156e2d12011-07-25 21:46:11 +02006394L: lm-sensors@lm-sensors.org
6395S: Maintained
6396F: Documentation/hwmon/lm78
6397F: drivers/hwmon/lm78.c
6398
Linus Torvalds1da177e2005-04-16 15:20:36 -07006399LM83 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07006400M: Jean Delvare <jdelvare@suse.com>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02006401L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006402S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006403F: Documentation/hwmon/lm83
6404F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006405
6406LM90 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07006407M: Jean Delvare <jdelvare@suse.com>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02006408L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006409S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006410F: Documentation/hwmon/lm90
Wei Niaae7bce2013-11-15 10:40:39 +01006411F: Documentation/devicetree/bindings/hwmon/lm90.txt
Joe Perches679655d2009-04-07 20:44:32 -07006412F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006413
Guenter Roeck917cc4e2013-05-19 20:44:27 -07006414LM95234 HARDWARE MONITOR DRIVER
6415M: Guenter Roeck <linux@roeck-us.net>
6416L: lm-sensors@lm-sensors.org
6417S: Maintained
6418F: Documentation/hwmon/lm95234
6419F: drivers/hwmon/lm95234.c
6420
Malcolm Priestley68620bd2012-11-04 19:16:31 +01006421LME2510 MEDIA DRIVER
6422M: Malcolm Priestley <tvboxspy@gmail.com>
6423L: linux-media@vger.kernel.org
6424W: http://linuxtv.org/
6425Q: http://patchwork.linuxtv.org/project/linux-media/list/
6426S: Maintained
6427F: drivers/media/usb/dvb-usb-v2/lmedm04*
6428
Peter Zijlstra512e67f2007-10-11 22:11:11 +02006429LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07006430M: Peter Zijlstra <peterz@infradead.org>
6431M: Ingo Molnar <mingo@redhat.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +01006432L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006433T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02006434S: Maintained
Davidlohr Bueso214e0ae2014-07-30 13:41:55 -07006435F: Documentation/locking/lockdep*.txt
6436F: Documentation/locking/lockstat.txt
Joe Perches679655d2009-04-07 20:44:32 -07006437F: include/linux/lockdep.h
Joe Perches7486d6d2013-11-14 14:59:45 -08006438F: kernel/locking/
Peter Zijlstra512e67f2007-10-11 22:11:11 +02006439
Anton Altaparmakovdde33342007-05-21 09:37:42 +01006440LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07006441M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01006442L: linux-ntfs-dev@lists.sourceforge.net
6443W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006444S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006445F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08006446F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006447
Joern Engelef6ada32009-11-20 22:17:12 +01006448LogFS
6449M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05306450M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01006451L: logfs@logfs.org
6452W: logfs.org
6453S: Maintained
6454F: fs/logfs/
6455
Roland Stiggeb62d7942013-04-02 19:37:11 +02006456LPC32XX MACHINE SUPPORT
6457M: Roland Stigge <stigge@antcom.de>
6458L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6459S: Maintained
6460F: arch/arm/mach-lpc32xx/
6461
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07006462LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
Reddy, Sreekanth3a980502014-06-13 20:48:04 +05306463M: Nagalakshmi Nandigama <nagalakshmi.nandigama@avagotech.com>
6464M: Praveen Krishnamoorthy <praveen.krishnamoorthy@avagotech.com>
6465M: Sreekanth Reddy <sreekanth.reddy@avagotech.com>
6466M: Abhijit Mahajan <abhijit.mahajan@avagotech.com>
6467L: MPT-FusionLinux.pdl@avagotech.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07006468L: linux-scsi@vger.kernel.org
6469W: http://www.lsilogic.com/support
6470S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006471F: drivers/message/fusion/
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05306472F: drivers/scsi/mpt2sas/
6473F: drivers/scsi/mpt3sas/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07006474
Linus Torvalds1da177e2005-04-16 15:20:36 -07006475LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07006476M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006477L: linux-scsi@vger.kernel.org
6478S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006479F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006480
Guenter Roecke5f5c992010-06-25 11:59:54 -07006481LTC4261 HARDWARE MONITOR DRIVER
6482M: Guenter Roeck <linux@roeck-us.net>
6483L: lm-sensors@lm-sensors.org
6484S: Maintained
6485F: Documentation/hwmon/ltc4261
6486F: drivers/hwmon/ltc4261.c
6487
Mike Frysinger81365c32008-10-29 14:01:12 -07006488LTP (Linux Test Project)
Joe Perches28b8e8d2010-03-23 13:35:20 -07006489M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07006490M: Cyril Hrubis <chrubis@suse.cz>
Cyril Hrubis05261092015-09-17 16:01:57 -07006491M: Wanlong Gao <wanlong.gao@gmail.com>
Cyril Hrubisf2eb7f62014-05-09 15:36:58 -07006492M: Jan Stancek <jstancek@redhat.com>
6493M: Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
6494M: Alexey Kodanev <alexey.kodanev@oracle.com>
Cyril Hrubis05261092015-09-17 16:01:57 -07006495L: ltp@lists.linux.it (subscribers-only)
Cyril Hrubisf2eb7f62014-05-09 15:36:58 -07006496W: http://linux-test-project.github.io/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07006497T: git git://github.com/linux-test-project/ltp.git
Mike Frysinger81365c32008-10-29 14:01:12 -07006498S: Maintained
6499
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07006500M32R ARCHITECTURE
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07006501W: http://www.linux-m32r.org/
Michael Opdenackerb4174862014-10-13 15:51:26 -07006502S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006503F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07006504
Linus Torvalds1da177e2005-04-16 15:20:36 -07006505M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07006506M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006507L: linux-m68k@lists.linux-m68k.org
6508W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07006509T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006510S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006511F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07006512F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006513
6514M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07006515M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006516W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01006517L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006518S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07006519F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006520
6521M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07006522M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006523W: http://www.tazenda.demon.co.uk/phil/linux-hp
6524S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006525F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006526
Antti Palosaari74425542013-11-06 14:03:32 -03006527M88DS3103 MEDIA DRIVER
6528M: Antti Palosaari <crope@iki.fi>
6529L: linux-media@vger.kernel.org
6530W: http://linuxtv.org/
6531W: http://palosaari.fi/linux/
6532Q: http://patchwork.linuxtv.org/project/linux-media/list/
6533T: git git://linuxtv.org/anttip/media_tree.git
6534S: Maintained
6535F: drivers/media/dvb-frontends/m88ds3103*
6536
Malcolm Priestley68620bd2012-11-04 19:16:31 +01006537M88RS2000 MEDIA DRIVER
6538M: Malcolm Priestley <tvboxspy@gmail.com>
6539L: linux-media@vger.kernel.org
6540W: http://linuxtv.org/
6541Q: http://patchwork.linuxtv.org/project/linux-media/list/
6542S: Maintained
6543F: drivers/media/dvb-frontends/m88rs2000*
6544
Alexey Klimov07a092f2012-11-12 02:57:32 -03006545MA901 MASTERKIT USB FM RADIO DRIVER
Joe Perchesb75f0052014-03-03 15:38:37 -08006546M: Alexey Klimov <klimov.linux@gmail.com>
6547L: linux-media@vger.kernel.org
6548T: git git://linuxtv.org/media_tree.git
6549S: Maintained
6550F: drivers/media/radio/radio-ma901.c
Alexey Klimov07a092f2012-11-12 02:57:32 -03006551
Jiri Benc64a327a2007-05-05 11:47:08 -07006552MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07006553M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07006554L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006555W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02006556T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6557T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07006558S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006559F: Documentation/networking/mac80211-injection.txt
6560F: include/net/mac80211.h
6561F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07006562
Patrick McHardyb863ceb2007-07-14 18:55:06 -07006563MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006564M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07006565L: netdev@vger.kernel.org
6566S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006567F: drivers/net/macvlan.c
6568F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07006569
Jassi Brar2b6d83e2014-06-12 22:31:19 +05306570MAILBOX API
6571M: Jassi Brar <jassisinghbrar@gmail.com>
6572L: linux-kernel@vger.kernel.org
6573S: Maintained
6574F: drivers/mailbox/
6575F: include/linux/mailbox_client.h
6576F: include/linux/mailbox_controller.h
6577
Michael Kerriskfaf16682005-07-31 22:34:47 -07006578MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07006579M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006580W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07006581L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07006582S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07006583
Russell King8427def2014-02-28 22:40:53 +00006584MARVELL ARMADA DRM SUPPORT
6585M: Russell King <rmk+kernel@arm.linux.org.uk>
6586S: Maintained
6587F: drivers/gpu/drm/armada/
6588
Guenter Roeck3ad50cc2014-10-29 10:44:56 -07006589MARVELL 88E6352 DSA support
6590M: Guenter Roeck <linux@roeck-us.net>
6591S: Maintained
6592F: drivers/net/dsa/mv88e6352.c
6593
stephen hemminger44c14c12012-04-02 12:59:47 +00006594MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
6595M: Mirko Lindner <mlindner@marvell.com>
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08006596M: Stephen Hemminger <stephen@networkplumber.org>
stephen hemminger44c14c12012-04-02 12:59:47 +00006597L: netdev@vger.kernel.org
6598S: Maintained
6599F: drivers/net/ethernet/marvell/sk*
6600
Stefano Brivio74cda162007-11-19 20:27:46 +01006601MARVELL LIBERTAS WIRELESS DRIVER
Stefano Brivio74cda162007-11-19 20:27:46 +01006602L: libertas-dev@lists.infradead.org
Dan Williams8ac3e992013-03-26 14:40:51 -05006603S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006604F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01006605
Dale Farnsworthb60d6972006-01-16 16:45:45 -07006606MARVELL MV643XX ETHERNET DRIVER
Sebastian Hesselbarth4e3faf82013-10-04 12:56:39 +02006607M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07006608L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00006609S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07006610F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07006611F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006612
Thomas Petazzoni370b8ed2012-09-04 15:06:42 +02006613MARVELL MVNETA ETHERNET DRIVER
6614M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
6615L: netdev@vger.kernel.org
6616S: Maintained
6617F: drivers/net/ethernet/marvell/mvneta.*
6618
Bing Zhaofcad5842011-07-13 13:11:58 -07006619MARVELL MWIFIEX WIRELESS DRIVER
Bing Zhaob9d31702014-07-30 13:57:16 -07006620M: Amitkumar Karwar <akarwar@marvell.com>
Avinash Patil550795f2015-06-24 16:52:21 +05306621M: Nishant Sarmukadam <nishants@marvell.com>
Bing Zhaofcad5842011-07-13 13:11:58 -07006622L: linux-wireless@vger.kernel.org
6623S: Maintained
6624F: drivers/net/wireless/mwifiex/
6625
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02006626MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01006627M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02006628L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02006629S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02006630F: drivers/net/wireless/mwl8k.c
6631
Pierre Ossman2a695672009-03-16 19:52:26 +01006632MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04006633M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04006634S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07006635F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01006636
Linus Torvalds1da177e2005-04-16 15:20:36 -07006637MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006638L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07006639S: Orphan
Jingoo Han8a61f012014-07-01 15:36:01 +09006640F: drivers/video/fbdev/matrox/matroxfb_*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006641F: include/uapi/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006642
Guenter Roeckca462082012-06-01 23:28:23 -07006643MAX16065 HARDWARE MONITOR DRIVER
6644M: Guenter Roeck <linux@roeck-us.net>
6645L: lm-sensors@lm-sensors.org
6646S: Maintained
6647F: Documentation/hwmon/max16065
6648F: drivers/hwmon/max16065.c
6649
Guenter Roeck1f61cab2015-06-08 11:15:23 -07006650MAX20751 HARDWARE MONITOR DRIVER
6651M: Guenter Roeck <linux@roeck-us.net>
6652L: lm-sensors@lm-sensors.org
6653S: Maintained
6654F: Documentation/hwmon/max20751
6655F: drivers/hwmon/max20751.c
6656
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02006657MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07006658M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02006659L: lm-sensors@lm-sensors.org
6660S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006661F: Documentation/hwmon/max6650
6662F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02006663
Guenter Roecke89ab512013-03-08 08:13:09 -08006664MAX6697 HARDWARE MONITOR DRIVER
6665M: Guenter Roeck <linux@roeck-us.net>
6666L: lm-sensors@lm-sensors.org
6667S: Maintained
6668F: Documentation/hwmon/max6697
6669F: Documentation/devicetree/bindings/i2c/max6697.txt
6670F: drivers/hwmon/max6697.c
6671F: include/linux/platform_data/max6697.h
6672
Krzysztof Kozlowskif8f847b2015-01-20 11:00:56 +01006673MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
6674M: Krzysztof Kozlowski <k.kozlowski@samsung.com>
6675L: linux-pm@vger.kernel.org
6676S: Supported
6677F: drivers/power/max14577_charger.c
6678F: drivers/power/max77693_charger.c
6679
Javier Martinez Canillas38114052015-07-17 10:17:58 +02006680MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS
6681M: Javier Martinez Canillas <javier@osg.samsung.com>
6682L: linux-kernel@vger.kernel.org
6683S: Supported
6684F: drivers/*/*max77802.c
6685F: Documentation/devicetree/bindings/*/*max77802.txt
6686F: include/dt-bindings/*/*max77802.h
6687
Krzysztof Kozlowskibefeb592015-02-16 16:00:23 -08006688MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
6689M: Chanwoo Choi <cw00.choi@samsung.com>
6690M: Krzysztof Kozlowski <k.kozlowski@samsung.com>
6691L: linux-kernel@vger.kernel.org
6692S: Supported
6693F: drivers/*/max14577.c
6694F: drivers/*/max77686.c
6695F: drivers/*/max77693.c
6696F: drivers/extcon/extcon-max14577.c
6697F: drivers/extcon/extcon-max77693.c
6698F: drivers/rtc/rtc-max77686.c
6699F: drivers/clk/clk-max77686.c
6700F: Documentation/devicetree/bindings/mfd/max14577.txt
Javier Martinez Canillas377452f2015-07-17 10:17:57 +02006701F: Documentation/devicetree/bindings/*/max77686.txt
Krzysztof Kozlowskibefeb592015-02-16 16:00:23 -08006702F: Documentation/devicetree/bindings/mfd/max77693.txt
6703F: Documentation/devicetree/bindings/clock/maxim,max77686.txt
6704F: include/linux/mfd/max14577*.h
6705F: include/linux/mfd/max77686*.h
6706F: include/linux/mfd/max77693*.h
6707
Hans Verkuil9be3c9a2012-11-23 07:12:43 -03006708MAXIRADIO FM RADIO RECEIVER DRIVER
6709M: Hans Verkuil <hverkuil@xs4all.nl>
6710L: linux-media@vger.kernel.org
6711T: git git://linuxtv.org/media_tree.git
6712W: http://linuxtv.org
6713S: Maintained
6714F: drivers/media/radio/radio-maxiradio*
6715
Laurent Pinchart6f32a8c2015-03-04 09:12:20 -03006716MEDIA DRIVERS FOR RENESAS - VSP1
6717M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6718L: linux-media@vger.kernel.org
6719L: linux-sh@vger.kernel.org
6720T: git git://linuxtv.org/media_tree.git
6721S: Supported
6722F: Documentation/devicetree/bindings/media/renesas,vsp1.txt
6723F: drivers/media/platform/vsp1/
6724
Kozlov Sergeydacf9ce2015-07-28 11:33:01 -03006725MEDIA DRIVERS FOR ASCOT2E
6726M: Sergey Kozlov <serjk@netup.ru>
6727L: linux-media@vger.kernel.org
6728W: http://linuxtv.org
6729W: http://netup.tv/
6730T: git git://linuxtv.org/media_tree.git
6731S: Supported
6732F: drivers/media/dvb-frontends/ascot2e*
6733
Kozlov Sergeya6dc60ff2015-07-28 11:33:03 -03006734MEDIA DRIVERS FOR CXD2841ER
6735M: Sergey Kozlov <serjk@netup.ru>
6736L: linux-media@vger.kernel.org
6737W: http://linuxtv.org/
6738W: http://netup.tv/
6739T: git git://linuxtv.org/media_tree.git
6740S: Supported
6741F: drivers/media/dvb-frontends/cxd2841er*
6742
Kozlov Sergeya5d32b32015-07-28 11:33:00 -03006743MEDIA DRIVERS FOR HORUS3A
6744M: Sergey Kozlov <serjk@netup.ru>
6745L: linux-media@vger.kernel.org
6746W: http://linuxtv.org/
6747W: http://netup.tv/
6748T: git git://linuxtv.org/media_tree.git
6749S: Supported
6750F: drivers/media/dvb-frontends/horus3a*
6751
Kozlov Sergeye0252732015-07-28 11:33:02 -03006752MEDIA DRIVERS FOR LNBH25
6753M: Sergey Kozlov <serjk@netup.ru>
6754L: linux-media@vger.kernel.org
6755W: http://linuxtv.org/
6756W: http://netup.tv/
6757T: git git://linuxtv.org/media_tree.git
6758S: Supported
6759F: drivers/media/dvb-frontends/lnbh25*
6760
Kozlov Sergey52b1eaf2015-07-28 11:33:04 -03006761MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
6762M: Sergey Kozlov <serjk@netup.ru>
6763L: linux-media@vger.kernel.org
6764W: http://linuxtv.org/
6765W: http://netup.tv/
6766T: git git://linuxtv.org/media_tree.git
6767S: Supported
6768F: drivers/media/pci/netup_unidvb/*
6769
Joe Perches127c49a2009-04-08 08:34:04 -07006770MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02006771M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Joe Perches127c49a2009-04-08 08:34:04 -07006772P: LinuxTV.org Project
6773L: linux-media@vger.kernel.org
6774W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08006775Q: http://patchwork.kernel.org/project/linux-media/list/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006776T: git git://linuxtv.org/media_tree.git
Joe Perches127c49a2009-04-08 08:34:04 -07006777S: Maintained
6778F: Documentation/dvb/
6779F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02006780F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07006781F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02006782F: drivers/staging/media/
Joe Perches127c49a2009-04-08 08:34:04 -07006783F: include/media/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02006784F: include/uapi/linux/dvb/
6785F: include/uapi/linux/videodev2.h
6786F: include/uapi/linux/media.h
6787F: include/uapi/linux/v4l2-*
6788F: include/uapi/linux/meye.h
6789F: include/uapi/linux/ivtv*
6790F: include/uapi/linux/uvcvideo.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07006791
Jakub Kicinskic869f772015-05-26 11:16:00 +02006792MEDIATEK MT7601U WIRELESS LAN DRIVER
6793M: Jakub Kicinski <kubakici@wp.pl>
6794L: linux-wireless@vger.kernel.org
6795S: Maintained
6796F: drivers/net/wireless/mediatek/mt7601u/
6797
Sumit.Saxena@avagotech.come3990652014-11-17 15:24:03 +05306798MEGARAID SCSI/SAS DRIVERS
6799M: Kashyap Desai <kashyap.desai@avagotech.com>
6800M: Sumit Saxena <sumit.saxena@avagotech.com>
6801M: Uday Lingala <uday.lingala@avagotech.com>
6802L: megaraidlinux.pdl@avagotech.com
Jean Delvarebaaea1d2008-09-20 12:34:33 +02006803L: linux-scsi@vger.kernel.org
Sumit.Saxena@avagotech.come3990652014-11-17 15:24:03 +05306804W: http://www.lsi.com
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07006805S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006806F: Documentation/scsi/megaraid.txt
6807F: drivers/scsi/megaraid.*
6808F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07006809
Amir Vadai2c46c9d2012-12-02 03:49:21 +00006810MELLANOX ETHERNET DRIVER (mlx4_en)
6811M: Amir Vadai <amirv@mellanox.com>
Joe Perchesb75f0052014-03-03 15:38:37 -08006812L: netdev@vger.kernel.org
Amir Vadai2c46c9d2012-12-02 03:49:21 +00006813S: Supported
6814W: http://www.mellanox.com
6815Q: http://patchwork.ozlabs.org/project/netdev/list/
6816F: drivers/net/ethernet/mellanox/mlx4/en_*
6817
Jiri Pirko93c1edb2015-07-29 23:33:46 +02006818MELLANOX ETHERNET SWITCH DRIVERS
6819M: Jiri Pirko <jiri@mellanox.com>
6820M: Ido Schimmel <idosch@mellanox.com>
6821L: netdev@vger.kernel.org
6822S: Supported
6823W: http://www.mellanox.com
6824Q: http://patchwork.ozlabs.org/project/netdev/list/
6825F: drivers/net/ethernet/mellanox/mlxsw/
6826
Mathieu Desnoyers5b25b132015-09-11 13:07:39 -07006827MEMBARRIER SUPPORT
6828M: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
6829M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
6830L: linux-kernel@vger.kernel.org
6831S: Supported
6832F: kernel/membarrier.c
6833F: include/uapi/linux/membarrier.h
6834
Steven Rostedt70ea91f2006-07-30 03:03:53 -07006835MEMORY MANAGEMENT
6836L: linux-mm@kvack.org
Steven Rostedt70ea91f2006-07-30 03:03:53 -07006837W: http://www.linux-mm.org
6838S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006839F: include/linux/mm.h
Cody P Schafer551450b2013-02-21 16:43:13 -08006840F: include/linux/gfp.h
6841F: include/linux/mmzone.h
6842F: include/linux/memory_hotplug.h
6843F: include/linux/vmalloc.h
Joe Perches679655d2009-04-07 20:44:32 -07006844F: mm/
Steven Rostedt70ea91f2006-07-30 03:03:53 -07006845
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04006846MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07006847M: David Woodhouse <dwmw2@infradead.org>
Brian Norris242c3252013-12-04 15:28:45 -08006848M: Brian Norris <computersforpeace@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006849L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08006850W: http://www.linux-mtd.infradead.org/
6851Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
Brian Norris242c3252013-12-04 15:28:45 -08006852T: git git://git.infradead.org/linux-mtd.git
Brian Norrisab95eac2014-09-15 21:56:17 -07006853T: git git://git.infradead.org/l2-mtd.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006854S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006855F: drivers/mtd/
6856F: include/linux/mtd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006857F: include/uapi/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006858
Johannes Thumshirn26c57ef2013-06-18 17:19:45 +02006859MEN A21 WATCHDOG DRIVER
Johannes Thumshirn30c74692015-05-07 10:21:24 +02006860M: Johannes Thumshirn <morbidrsa@gmail.com>
Johannes Thumshirn26c57ef2013-06-18 17:19:45 +02006861L: linux-watchdog@vger.kernel.org
Johannes Thumshirn30c74692015-05-07 10:21:24 +02006862S: Maintained
Johannes Thumshirn26c57ef2013-06-18 17:19:45 +02006863F: drivers/watchdog/mena21_wdt.c
6864
Johannes Thumshirn3764e822014-02-26 17:29:05 +01006865MEN CHAMELEON BUS (mcb)
Johannes Thumshirn30c74692015-05-07 10:21:24 +02006866M: Johannes Thumshirn <morbidrsa@gmail.com>
6867S: Maintained
Johannes Thumshirn3764e822014-02-26 17:29:05 +01006868F: drivers/mcb/
6869F: include/linux/mcb.h
Johannes Thumshirnb9f2f452015-07-17 12:23:01 +02006870F: Documentation/men-chameleon-bus.txt
Johannes Thumshirn3764e822014-02-26 17:29:05 +01006871
Andreas Werner48b490d2014-09-15 09:36:30 +02006872MEN F21BMC (Board Management Controller)
6873M: Andreas Werner <andreas.werner@men.de>
6874S: Supported
6875F: drivers/mfd/menf21bmc.c
6876F: drivers/watchdog/menf21bmc_wdt.c
6877F: drivers/leds/leds-menf21bmc.c
6878F: drivers/hwmon/menf21bmc_hwmon.c
6879F: Documentation/hwmon/menf21bmc
6880
James Hogan12285942012-10-10 12:59:49 +01006881METAG ARCHITECTURE
6882M: James Hogan <james.hogan@imgtec.com>
James Hogand668d9e2013-07-22 09:51:38 +01006883L: linux-metag@vger.kernel.org
James Hogan12285942012-10-10 12:59:49 +01006884S: Supported
6885F: arch/metag/
6886F: Documentation/metag/
6887F: Documentation/devicetree/bindings/metag/
James Hogana2c5d4e2012-10-09 10:54:39 +01006888F: drivers/clocksource/metag_generic.c
James Hogan5698c502012-10-09 10:54:47 +01006889F: drivers/irqchip/irq-metag.c
6890F: drivers/irqchip/irq-metag-ext.c
James Hoganae85ac72012-09-21 17:38:15 +01006891F: drivers/tty/metag_da.c
James Hogan12285942012-10-10 12:59:49 +01006892
Michal Simekc6375b02009-03-27 14:25:52 +01006893MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07006894M: Michal Simek <monstr@monstr.eu>
Michal Simekc6375b02009-03-27 14:25:52 +01006895W: http://www.monstr.eu/fdt/
6896T: git git://git.monstr.eu/linux-2.6-microblaze.git
6897S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02006898F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006899
Chen Yu2508a452015-08-18 23:30:25 +08006900MICROSOFT SURFACE PRO 3 BUTTON DRIVER
6901M: Chen Yu <yu.c.chen@intel.com>
6902L: platform-driver-x86@vger.kernel.org
6903S: Supported
6904F: drivers/platform/x86/surfacepro3_button.c
6905
Linus Torvalds1da177e2005-04-16 15:20:36 -07006906MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02006907M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006908S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006909F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006910
6911MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07006912M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006913L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01006914W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00006915T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01006916Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00006917S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006918F: Documentation/mips/
6919F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006920
Hans Verkuil08b76202012-11-23 07:15:42 -03006921MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
6922M: Hans Verkuil <hverkuil@xs4all.nl>
6923L: linux-media@vger.kernel.org
6924T: git git://linuxtv.org/media_tree.git
6925W: http://linuxtv.org
6926S: Odd Fixes
6927F: drivers/media/radio/radio-miropcm20*
6928
Eli Cohene126ba92013-07-07 17:25:49 +03006929Mellanox MLX5 core VPI driver
6930M: Eli Cohen <eli@mellanox.com>
6931L: netdev@vger.kernel.org
6932L: linux-rdma@vger.kernel.org
6933W: http://www.mellanox.com
6934Q: http://patchwork.ozlabs.org/project/netdev/list/
6935Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perchescea83212014-03-03 15:38:38 -08006936T: git git://openfabrics.org/~eli/connect-ib.git
Eli Cohene126ba92013-07-07 17:25:49 +03006937S: Supported
6938F: drivers/net/ethernet/mellanox/mlx5/core/
6939F: include/linux/mlx5/
6940
6941Mellanox MLX5 IB driver
Joe Perchesb75f0052014-03-03 15:38:37 -08006942M: Eli Cohen <eli@mellanox.com>
6943L: linux-rdma@vger.kernel.org
6944W: http://www.mellanox.com
6945Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perchescea83212014-03-03 15:38:38 -08006946T: git git://openfabrics.org/~eli/connect-ib.git
Joe Perchesb75f0052014-03-03 15:38:37 -08006947S: Supported
6948F: include/linux/mlx5/
6949F: drivers/infiniband/hw/mlx5/
Eli Cohene126ba92013-07-07 17:25:49 +03006950
Antti Palosaari0ce277e2014-11-12 00:35:42 -03006951MN88472 MEDIA DRIVER
6952M: Antti Palosaari <crope@iki.fi>
6953L: linux-media@vger.kernel.org
6954W: http://linuxtv.org/
6955W: http://palosaari.fi/linux/
6956Q: http://patchwork.linuxtv.org/project/linux-media/list/
6957T: git git://linuxtv.org/anttip/media_tree.git
6958S: Maintained
6959F: drivers/staging/media/mn88472/
6960F: drivers/media/dvb-frontends/mn88472.h
6961
Antti Palosaari4f4d2382014-11-12 00:53:57 -03006962MN88473 MEDIA DRIVER
6963M: Antti Palosaari <crope@iki.fi>
6964L: linux-media@vger.kernel.org
6965W: http://linuxtv.org/
6966W: http://palosaari.fi/linux/
6967Q: http://patchwork.linuxtv.org/project/linux-media/list/
6968T: git git://linuxtv.org/anttip/media_tree.git
6969S: Maintained
6970F: drivers/staging/media/mn88473/
6971F: drivers/media/dvb-frontends/mn88473.h
6972
Linus Torvalds1da177e2005-04-16 15:20:36 -07006973MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006974M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006975S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006976F: include/linux/module.h
6977F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006978
6979MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07006980W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08006981S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006982F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006983F: drivers/media/pci/meye/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02006984F: include/uapi/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006985
Jiri Slabyb9705b62008-04-30 00:53:48 -07006986MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07006987M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08006988S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006989F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07006990F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08006991
Alexey Klimov889b2f82012-11-16 17:43:59 -03006992MR800 AVERMEDIA USB FM RADIO DRIVER
6993M: Alexey Klimov <klimov.linux@gmail.com>
6994L: linux-media@vger.kernel.org
6995T: git git://linuxtv.org/media_tree.git
6996S: Maintained
6997F: drivers/media/radio/radio-mr800.c
6998
Alan Ottd7155692014-08-16 17:09:03 -04006999MRF24J40 IEEE 802.15.4 RADIO DRIVER
7000M: Alan Ott <alan@signal11.us>
7001L: linux-wpan@vger.kernel.org
7002S: Maintained
7003F: drivers/net/ieee802154/mrf24j40.c
Alexander Aring2e6fd642015-09-21 11:24:26 +02007004F: Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
Alan Ottd7155692014-08-16 17:09:03 -04007005
Lennart Poettering8c4c7312006-10-06 01:27:02 -04007006MSI LAPTOP SUPPORT
Lee, Chun-Yi182ae552012-12-14 16:14:24 +08007007M: "Lee, Chun-Yi" <jlee@suse.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05007008L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04007009S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007010F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04007011
Anisse Astier0f1006b2009-12-17 11:28:49 +01007012MSI WMI SUPPORT
Matthew Garrettd09448532010-02-11 10:40:13 -05007013L: platform-driver-x86@vger.kernel.org
Anisse Astier5ee70412015-06-14 22:32:23 +02007014S: Orphan
Anisse Astier0f1006b2009-12-17 11:28:49 +01007015F: drivers/platform/x86/msi-wmi.c
7016
Antti Palosaari19a628a2014-02-02 23:51:30 -03007017MSI001 MEDIA DRIVER
7018M: Antti Palosaari <crope@iki.fi>
7019L: linux-media@vger.kernel.org
7020W: http://linuxtv.org/
7021W: http://palosaari.fi/linux/
7022Q: http://patchwork.linuxtv.org/project/linux-media/list/
7023T: git git://linuxtv.org/anttip/media_tree.git
7024S: Maintained
Antti Palosaari0185e192014-07-12 08:58:32 -03007025F: drivers/media/tuners/msi001*
Antti Palosaari19a628a2014-02-02 23:51:30 -03007026
Antti Palosaari75705892014-07-13 21:35:47 -03007027MSI2500 MEDIA DRIVER
Antti Palosaari2c572132014-02-02 23:55:12 -03007028M: Antti Palosaari <crope@iki.fi>
7029L: linux-media@vger.kernel.org
7030W: http://linuxtv.org/
7031W: http://palosaari.fi/linux/
7032Q: http://patchwork.linuxtv.org/project/linux-media/list/
7033T: git git://linuxtv.org/anttip/media_tree.git
7034S: Maintained
Antti Palosaari75705892014-07-13 21:35:47 -03007035F: drivers/media/usb/msi2500/
Antti Palosaari2c572132014-02-02 23:55:12 -03007036
Robert Jarzmik159eeea2015-06-25 19:14:18 +02007037MSYSTEMS DISKONCHIP G3 MTD DRIVER
7038M: Robert Jarzmik <robert.jarzmik@free.fr>
7039L: linux-mtd@lists.infradead.org
7040S: Maintained
7041F: drivers/mtd/devices/docg3*
7042
Laurent Pinchart62a37dc2013-08-09 08:46:11 -03007043MT9M032 APTINA SENSOR DRIVER
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007044M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7045L: linux-media@vger.kernel.org
7046T: git git://linuxtv.org/media_tree.git
7047S: Maintained
7048F: drivers/media/i2c/mt9m032.c
7049F: include/media/mt9m032.h
7050
Laurent Pinchart62a37dc2013-08-09 08:46:11 -03007051MT9P031 APTINA CAMERA SENSOR
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007052M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7053L: linux-media@vger.kernel.org
7054T: git git://linuxtv.org/media_tree.git
7055S: Maintained
7056F: drivers/media/i2c/mt9p031.c
7057F: include/media/mt9p031.h
7058
Laurent Pinchart62a37dc2013-08-09 08:46:11 -03007059MT9T001 APTINA CAMERA SENSOR
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007060M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7061L: linux-media@vger.kernel.org
7062T: git git://linuxtv.org/media_tree.git
7063S: Maintained
7064F: drivers/media/i2c/mt9t001.c
7065F: include/media/mt9t001.h
7066
Laurent Pinchart62a37dc2013-08-09 08:46:11 -03007067MT9V032 APTINA CAMERA SENSOR
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007068M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7069L: linux-media@vger.kernel.org
7070T: git git://linuxtv.org/media_tree.git
7071S: Maintained
Laurent Pinchartf2272e12014-01-01 14:40:35 -03007072F: Documentation/devicetree/bindings/media/i2c/mt9v032.txt
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007073F: drivers/media/i2c/mt9v032.c
7074F: include/media/mt9v032.h
7075
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07007076MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07007077M: Samuel Ortiz <sameo@linux.intel.com>
Samuel Ortizf7d32102013-05-17 00:53:42 +02007078M: Lee Jones <lee.jones@linaro.org>
Lee Jones7caa7992014-07-22 13:24:38 +01007079T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07007080S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007081F: drivers/mfd/
Mark Brown55b59402013-06-28 15:14:11 +01007082F: include/linux/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07007083
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02007084MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Ulf Hanssone18eaf82014-02-19 00:01:05 +01007085M: Ulf Hansson <ulf.hansson@linaro.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07007086L: linux-mmc@vger.kernel.org
Ulf Hansson708dce32014-05-14 14:32:53 +02007087T: git git://git.linaro.org/people/ulf.hansson/mmc.git
Chris Ball245feaa2010-09-10 12:05:24 -04007088S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007089F: drivers/mmc/
7090F: include/linux/mmc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007091F: include/uapi/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01007092
David Brownell15a05802007-08-08 09:12:54 -07007093MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06007094S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007095F: drivers/mmc/host/mmc_spi.c
7096F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07007097
Linus Torvalds1da177e2005-04-16 15:20:36 -07007098MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007099M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007100S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007101F: Documentation/sound/oss/MultiSound
7102F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007103
Jiri Slabyd7354102006-12-08 02:38:35 -08007104MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02007105S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07007106F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07007107F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08007108
Felipe Balbi550a7372008-07-24 12:27:36 +03007109MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03007110M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007111L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03007112T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02007113S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007114F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03007115
Michael Krufkyea0af5f2012-10-02 00:55:41 -03007116MXL5007T MEDIA DRIVER
7117M: Michael Krufky <mkrufky@linuxtv.org>
7118L: linux-media@vger.kernel.org
7119W: http://linuxtv.org/
7120W: http://github.com/mkrufky
7121Q: http://patchwork.linuxtv.org/project/linux-media/list/
7122T: git git://linuxtv.org/mkrufky/tuners.git
7123S: Maintained
7124F: drivers/media/tuners/mxl5007t.*
7125
Brice Goglin2d3cf582008-05-17 12:45:36 +02007126MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Hyong-Youb Kim205057a2013-08-12 02:20:02 -07007127M: Hyong-Youb Kim <hykim@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02007128L: netdev@vger.kernel.org
Hyong-Youb Kim205057a2013-08-12 02:20:02 -07007129W: https://www.myricom.com/support/downloads/myri10ge.html
Brice Goglin2d3cf582008-05-17 12:45:36 +02007130S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07007131F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02007132
Linus Torvalds1da177e2005-04-16 15:20:36 -07007133NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04007134S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07007135F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007136
Daniel Mack23dc05a2011-05-18 11:28:38 +02007137NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
7138M: Daniel Mack <zonque@gmail.com>
7139S: Maintained
Jim Davise5747e42015-06-25 15:01:58 -07007140L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Daniel Mack23dc05a2011-05-18 11:28:38 +02007141W: http://www.native-instruments.com
7142F: sound/usb/caiaq/
7143
Linus Torvalds1da177e2005-04-16 15:20:36 -07007144NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07007145M: Petr Vandrovec <petr@vandrovec.name>
7146S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07007147F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007148
Finn Thaina79b0322014-05-05 15:35:30 +10007149NCR 5380 SCSI DRIVERS
7150M: Finn Thain <fthain@telegraphics.com.au>
7151M: Michael Schmitz <schmitzmic@gmail.com>
7152L: linux-scsi@vger.kernel.org
7153S: Maintained
7154F: Documentation/scsi/g_NCR5380.txt
7155F: drivers/scsi/NCR5380.*
7156F: drivers/scsi/arm/cumana_1.c
7157F: drivers/scsi/arm/oak.c
7158F: drivers/scsi/atari_NCR5380.c
7159F: drivers/scsi/atari_scsi.*
7160F: drivers/scsi/dmx3191d.c
7161F: drivers/scsi/dtc.*
7162F: drivers/scsi/g_NCR5380.*
7163F: drivers/scsi/g_NCR5380_mmio.c
7164F: drivers/scsi/mac_scsi.*
7165F: drivers/scsi/pas16.*
Finn Thaina79b0322014-05-05 15:35:30 +10007166F: drivers/scsi/sun3_scsi.*
7167F: drivers/scsi/sun3_scsi_vme.c
7168F: drivers/scsi/t128.*
7169
Linus Torvalds1da177e2005-04-16 15:20:36 -07007170NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07007171M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007172L: linux-scsi@vger.kernel.org
7173S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007174F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007175
Guenter Roeck4aa3eb42013-04-03 14:12:11 -07007176NCT6775 HARDWARE MONITOR DRIVER
7177M: Guenter Roeck <linux@roeck-us.net>
7178L: lm-sensors@lm-sensors.org
7179S: Maintained
7180F: Documentation/hwmon/nct6775
7181F: drivers/hwmon/nct6775.c
7182
Glenn Streiff3c2d7742008-02-04 20:20:45 -08007183NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07007184M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07007185L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00007186W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08007187S: Supported
7188F: drivers/infiniband/hw/nes/
7189
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07007190NETEM NETWORK EMULATOR
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08007191M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07007192L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07007193S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007194F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07007195
Jon Masonb2f5a052010-07-15 08:47:27 +00007196NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00007197M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07007198L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07007199S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007200F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00007201F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07007202F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07007203
Pablo Neira Ayusodb9cf3a2014-06-16 13:01:52 +02007204NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01007205M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07007206M: Patrick McHardy <kaber@trash.net>
Pablo Neira Ayuso42010ed2013-05-06 12:22:57 +02007207M: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
Patrick McHardy1a03b812007-09-18 13:19:26 -07007208L: netfilter-devel@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07007209L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007210W: http://www.netfilter.org/
7211W: http://www.iptables.org/
Pablo Neira Ayuso42010ed2013-05-06 12:22:57 +02007212Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/
7213T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
7214T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007215S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007216F: include/linux/netfilter*
7217F: include/linux/netfilter/
7218F: include/net/netfilter/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007219F: include/uapi/linux/netfilter*
7220F: include/uapi/linux/netfilter/
Joe Perches679655d2009-04-07 20:44:32 -07007221F: net/*/netfilter.c
7222F: net/*/netfilter/
7223F: net/netfilter/
Pablo Neira Ayuso91c269a2015-07-06 20:55:35 +02007224F: net/bridge/br_netfilter*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007225
Paul Moore4cc67732006-09-25 15:57:13 -07007226NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00007227M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07007228W: http://netlabel.sf.net
7229L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00007230S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07007231F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07007232F: include/net/netlabel.h
7233F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07007234
Linus Torvalds1da177e2005-04-16 15:20:36 -07007235NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07007236M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007237L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02007238W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007239S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007240F: include/net/netrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007241F: include/uapi/linux/netrom.h
Joe Perches679655d2009-04-07 20:44:32 -07007242F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007243
Pavel Machek5ddb88c2006-09-29 02:01:29 -07007244NETWORK BLOCK DEVICE (NBD)
Markus Pargmann4ca58292015-01-28 19:35:38 +01007245M: Markus Pargmann <mpa@pengutronix.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007246S: Maintained
Wouter Verhelst5e4b2692013-02-27 17:05:27 -08007247L: nbd-general@lists.sourceforge.net
Markus Pargmann4ca58292015-01-28 19:35:38 +01007248T: git git://git.pengutronix.de/git/mpa/linux-nbd.git
Joe Perches679655d2009-04-07 20:44:32 -07007249F: Documentation/blockdev/nbd.txt
7250F: drivers/block/nbd.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007251F: include/uapi/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007252
Neil Horman6e436502009-10-05 03:56:55 +00007253NETWORK DROP MONITOR
7254M: Neil Horman <nhorman@tuxdriver.com>
7255L: netdev@vger.kernel.org
7256S: Maintained
7257W: https://fedorahosted.org/dropwatch/
7258F: net/core/drop_monitor.c
7259
Linus Torvalds1da177e2005-04-16 15:20:36 -07007260NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07007261M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07007262L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00007263W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00007264Q: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00007265T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7266T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007267S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007268F: net/
7269F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00007270F: include/linux/in.h
7271F: include/linux/net.h
7272F: include/linux/netdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007273F: include/uapi/linux/in.h
7274F: include/uapi/linux/net.h
7275F: include/uapi/linux/netdevice.h
Nicolas Dichtel0c7aecd2015-01-15 15:11:15 +01007276F: include/uapi/linux/net_namespace.h
Tobias Klauser7e814a62014-03-11 12:06:24 +01007277F: tools/net/
Daniel Borkmannf4e53f92014-03-13 10:18:53 +01007278F: tools/testing/selftests/net/
Sasha Levin335a67d2014-03-27 02:01:34 -04007279F: lib/random32.c
Daniel Borkmanna101ccd2014-06-10 12:31:10 +02007280F: lib/test_bpf.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007281
7282NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07007283M: "David S. Miller" <davem@davemloft.net>
7284M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07007285M: James Morris <jmorris@namei.org>
7286M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
7287M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07007288L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007289T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007290S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007291F: net/ipv4/
7292F: net/ipv6/
7293F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00007294F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007295
David S. Miller73b76562012-10-16 14:08:40 -04007296NETWORKING [IPSEC]
7297M: Steffen Klassert <steffen.klassert@secunet.com>
7298M: Herbert Xu <herbert@gondor.apana.org.au>
7299M: "David S. Miller" <davem@davemloft.net>
7300L: netdev@vger.kernel.org
Steffen Klassertd1fc5022013-12-13 12:56:05 +01007301T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
7302T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
David S. Miller73b76562012-10-16 14:08:40 -04007303S: Maintained
Fan Du5826bdd2014-01-18 09:55:28 +08007304F: net/core/flow.c
David S. Miller73b76562012-10-16 14:08:40 -04007305F: net/xfrm/
7306F: net/key/
7307F: net/ipv4/xfrm*
Steffen Klassertd1fc5022013-12-13 12:56:05 +01007308F: net/ipv4/esp4.c
7309F: net/ipv4/ah4.c
7310F: net/ipv4/ipcomp.c
7311F: net/ipv4/ip_vti.c
David S. Miller73b76562012-10-16 14:08:40 -04007312F: net/ipv6/xfrm*
Steffen Klassertd1fc5022013-12-13 12:56:05 +01007313F: net/ipv6/esp6.c
7314F: net/ipv6/ah6.c
7315F: net/ipv6/ipcomp6.c
7316F: net/ipv6/ip6_vti.c
David S. Miller73b76562012-10-16 14:08:40 -04007317F: include/uapi/linux/xfrm.h
7318F: include/net/xfrm.h
7319
James Morris10e2ff12007-08-25 14:41:28 -07007320NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00007321M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07007322L: netdev@vger.kernel.org
7323S: Maintained
7324
John W. Linville29f8f632006-01-18 14:52:48 -08007325NETWORKING [WIRELESS]
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08007326L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007327Q: http://patchwork.kernel.org/project/linux-wireless/list/
John W. Linville29f8f632006-01-18 14:52:48 -08007328
Joe Perches788873a2009-04-16 09:38:45 +00007329NETWORKING DRIVERS
7330L: netdev@vger.kernel.org
7331W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00007332Q: http://patchwork.ozlabs.org/project/netdev/list/
Joe Perches08deed12012-03-23 15:01:57 -07007333T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7334T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00007335S: Odd Fixes
7336F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00007337F: include/linux/if_*
Jean Delvare0b63bf12012-10-18 22:11:38 +02007338F: include/linux/netdevice.h
Jean Delvare0b63bf12012-10-18 22:11:38 +02007339F: include/linux/etherdevice.h
7340F: include/linux/fcdevice.h
7341F: include/linux/fddidevice.h
7342F: include/linux/hippidevice.h
7343F: include/linux/inetdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007344F: include/uapi/linux/if_*
7345F: include/uapi/linux/netdevice.h
Joe Perches788873a2009-04-16 09:38:45 +00007346
John W. Linville0e324cf2014-12-17 12:07:05 -05007347NETWORKING DRIVERS (WIRELESS)
7348M: Kalle Valo <kvalo@codeaurora.org>
7349L: linux-wireless@vger.kernel.org
7350Q: http://patchwork.kernel.org/project/linux-wireless/list/
7351T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git/
7352S: Maintained
7353F: drivers/net/wireless/
7354
Amit S. Kale3d396eb2006-10-21 15:33:03 -04007355NETXEN (1/10) GbE SUPPORT
Manish Chopra86223152013-03-28 23:54:08 +00007356M: Manish Chopra <manish.chopra@qlogic.com>
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07007357M: Sony Chacko <sony.chacko@qlogic.com>
7358M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04007359L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00007360W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04007361S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07007362F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04007363
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03007364NFC SUBSYSTEM
7365M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
7366M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
7367M: Samuel Ortiz <sameo@linux.intel.com>
7368L: linux-wireless@vger.kernel.org
Dan Carpenter1eb3b212014-08-11 13:14:25 +03007369L: linux-nfc@lists.01.org (subscribers-only)
Samuel Ortiz0293ba22013-06-24 14:39:35 +02007370S: Supported
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03007371F: net/nfc/
Ilan Elias55eb94f2011-09-18 11:19:34 +03007372F: include/net/nfc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007373F: include/uapi/linux/nfc.h
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03007374F: drivers/nfc/
Marcel Holtmann08eaa1e2012-10-24 11:45:38 -07007375F: include/linux/platform_data/pn544.h
Mark A. Greer7ebb88e2014-03-10 11:56:25 -07007376F: Documentation/devicetree/bindings/net/nfc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007377
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04007378NFS, SUNRPC, AND LOCKD CLIENTS
Trond Myklebustcd7b9962013-12-04 12:29:49 -05007379M: Trond Myklebust <trond.myklebust@primarydata.com>
Trond Myklebust0e3b1372015-02-03 17:13:58 -05007380M: Anna Schumaker <anna.schumaker@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05007381L: linux-nfs@vger.kernel.org
7382W: http://client.linux-nfs.org
Trond Myklebustcd7b9962013-12-04 12:29:49 -05007383T: git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007384S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007385F: fs/lockd/
7386F: fs/nfs/
7387F: fs/nfs_common/
7388F: net/sunrpc/
7389F: include/linux/lockd/
7390F: include/linux/nfs*
7391F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007392F: include/uapi/linux/nfs*
7393F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007394
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07007395NILFS2 FILESYSTEM
Ryusuke Konishie2126932014-04-03 14:50:25 -07007396M: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09007397L: linux-nilfs@vger.kernel.org
Ryusuke Konishif9472262014-04-03 14:50:32 -07007398W: http://nilfs.sourceforge.net/
Ryusuke Konishie2126932014-04-03 14:50:25 -07007399T: git git://github.com/konis/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07007400S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007401F: Documentation/filesystems/nilfs2.txt
7402F: fs/nilfs2/
7403F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07007404
Linus Torvalds1da177e2005-04-16 15:20:36 -07007405NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007406M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007407W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7408S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007409F: Documentation/scsi/NinjaSCSI.txt
7410F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007411
7412NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007413M: GOTO Masanori <gotom@debian.or.jp>
7414M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007415W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7416S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007417F: Documentation/scsi/NinjaSCSI.txt
7418F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007419
Ley Foon Tan383b8fb2014-11-06 15:20:14 +08007420NIOS2 ARCHITECTURE
7421M: Ley Foon Tan <lftan@altera.com>
7422L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
Ley Foon Tan0094dc42015-09-08 01:50:05 +08007423T: git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
Ley Foon Tan383b8fb2014-11-06 15:20:14 +08007424S: Maintained
7425F: arch/nios2/
7426
Pali Rohár2a6afdd2015-03-29 15:35:54 +02007427NOKIA N900 POWER SUPPLY DRIVERS
7428M: Pali Rohár <pali.rohar@gmail.com>
7429S: Maintained
7430F: include/linux/power/bq2415x_charger.h
7431F: include/linux/power/bq27x00_battery.h
7432F: include/linux/power/isp1704_charger.h
7433F: drivers/power/bq2415x_charger.c
7434F: drivers/power/bq27x00_battery.c
7435F: drivers/power/isp1704_charger.c
7436F: drivers/power/rx51_battery.c
7437
Allen Hubbea1bd3ba2015-04-09 10:33:20 -04007438NTB DRIVER CORE
Jon Mason9ef6bf62014-06-19 10:44:24 -07007439M: Jon Mason <jdmason@kudzu.us>
7440M: Dave Jiang <dave.jiang@intel.com>
Allen Hubbea1bd3ba2015-04-09 10:33:20 -04007441M: Allen Hubbe <Allen.Hubbe@emc.com>
Jon Mason5e9fd732015-07-04 14:48:33 -04007442L: linux-ntb@googlegroups.com
Jon Masonfce8a7b2012-11-16 19:27:12 -07007443S: Supported
Jon Mason29844112013-07-30 16:29:48 -07007444W: https://github.com/jonmason/ntb/wiki
7445T: git git://github.com/jonmason/ntb.git
Jon Masonfce8a7b2012-11-16 19:27:12 -07007446F: drivers/ntb/
Jon Mason548c2372012-11-16 19:27:13 -07007447F: drivers/net/ntb_netdev.c
Jon Masonfce8a7b2012-11-16 19:27:12 -07007448F: include/linux/ntb.h
Allen Hubbea1bd3ba2015-04-09 10:33:20 -04007449F: include/linux/ntb_transport.h
Jon Masonfce8a7b2012-11-16 19:27:12 -07007450
Allen Hubbee26a5842015-04-09 10:33:20 -04007451NTB INTEL DRIVER
7452M: Jon Mason <jdmason@kudzu.us>
7453M: Dave Jiang <dave.jiang@intel.com>
Jon Mason5e9fd732015-07-04 14:48:33 -04007454L: linux-ntb@googlegroups.com
Allen Hubbee26a5842015-04-09 10:33:20 -04007455S: Supported
7456W: https://github.com/jonmason/ntb/wiki
7457T: git git://github.com/jonmason/ntb.git
7458F: drivers/ntb/hw/intel/
Joe Perches679655d2009-04-07 20:44:32 -07007459
7460NTFS FILESYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07007461M: Anton Altaparmakov <anton@tuxera.com>
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08007462L: linux-ntfs-dev@lists.sourceforge.net
Joe Perches8b58be82009-07-29 15:04:30 -07007463W: http://www.tuxera.com/
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01007464T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Jim Cromiece00f852006-11-30 04:49:44 +01007465S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007466F: Documentation/filesystems/ntfs.txt
7467F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007468
Tony Lindgrenf5525782009-05-28 13:23:53 -07007469NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches0e24bdd2009-10-26 16:49:40 -07007470M: Antonino Daplas <adaplas@gmail.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007471L: linux-fbdev@vger.kernel.org
7472S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09007473F: drivers/video/fbdev/riva/
7474F: drivers/video/fbdev/nvidia/
Tony Lindgrenf5525782009-05-28 13:23:53 -07007475
Matthew Wilcox79461682012-11-10 08:54:53 -05007476NVM EXPRESS DRIVER
7477M: Matthew Wilcox <willy@linux.intel.com>
7478L: linux-nvme@lists.infradead.org
7479T: git git://git.infradead.org/users/willy/linux-nvme.git
7480S: Supported
Dan Carpenter5be37bf2013-05-13 18:00:42 +03007481F: drivers/block/nvme*
Matthew Wilcox79461682012-11-10 08:54:53 -05007482F: include/linux/nvme.h
7483
Srinivas Kandagatlaaee4b9b2015-07-27 12:17:24 +01007484NVMEM FRAMEWORK
7485M: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
7486M: Maxime Ripard <maxime.ripard@free-electrons.com>
7487S: Maintained
7488F: drivers/nvmem/
7489F: Documentation/devicetree/bindings/nvmem/
7490F: include/linux/nvmem-consumer.h
7491F: include/linux/nvmem-provider.h
7492
Clément Perrochauddece4582015-03-09 11:12:04 +01007493NXP-NCI NFC DRIVER
7494M: Clément Perrochaud <clement.perrochaud@effinnov.com>
7495R: Charles Gorand <charles.gorand@effinnov.com>
7496L: linux-nfc@lists.01.org (moderated for non-subscribers)
7497S: Supported
7498F: drivers/nfc/nxp-nci
7499
Russell Kingf50d7142014-03-03 12:18:14 +00007500NXP TDA998X DRM DRIVER
7501M: Russell King <rmk+kernel@arm.linux.org.uk>
7502S: Supported
7503F: drivers/gpu/drm/i2c/tda998x_drv.c
7504F: include/drm/i2c/tda998x.h
7505
Peter Rosinfbace432014-11-08 14:40:17 +01007506NXP TFA9879 DRIVER
7507M: Peter Rosin <peda@axentia.se>
7508L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7509S: Maintained
7510F: sound/soc/codecs/tfa9879*
7511
Tony Lindgrenf5525782009-05-28 13:23:53 -07007512OMAP SUPPORT
7513M: Tony Lindgren <tony@atomide.com>
7514L: linux-omap@vger.kernel.org
7515W: http://www.muru.com/linux/omap/
7516W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08007517Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02007518T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07007519S: Maintained
Felipe Contreras4e04d5a2009-09-21 17:04:25 -07007520F: arch/arm/*omap*/
Felipe Balbi026da812015-01-19 16:13:53 -06007521F: arch/arm/configs/omap1_defconfig
7522F: arch/arm/configs/omap2plus_defconfig
Jean Delvare046d0a32012-01-12 20:32:05 +01007523F: drivers/i2c/busses/i2c-omap.c
Felipe Balbidc68cd12014-11-06 08:37:19 -06007524F: drivers/irqchip/irq-omap-intc.c
7525F: drivers/mfd/*omap*.c
7526F: drivers/mfd/menelaus.c
7527F: drivers/mfd/palmas.c
7528F: drivers/mfd/tps65217.c
7529F: drivers/mfd/tps65218.c
7530F: drivers/mfd/tps65910.c
7531F: drivers/mfd/twl-core.[ch]
7532F: drivers/mfd/twl4030*.c
7533F: drivers/mfd/twl6030*.c
7534F: drivers/mfd/twl6040*.c
7535F: drivers/regulator/palmas-regulator*.c
7536F: drivers/regulator/pbias-regulator.c
7537F: drivers/regulator/tps65217-regulator.c
7538F: drivers/regulator/tps65218-regulator.c
7539F: drivers/regulator/tps65910-regulator.c
7540F: drivers/regulator/twl-regulator.c
Jean Delvare046d0a32012-01-12 20:32:05 +01007541F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07007542
Tony Lindgren50f29fb2012-12-16 11:29:59 -08007543OMAP DEVICE TREE SUPPORT
Benoit Coussoncdb55ab2013-08-09 23:19:15 +02007544M: Benoît Cousson <bcousson@baylibre.com>
Tony Lindgren50f29fb2012-12-16 11:29:59 -08007545M: Tony Lindgren <tony@atomide.com>
7546L: linux-omap@vger.kernel.org
Grant Likelyd0fb18c2013-07-19 20:10:12 -07007547L: devicetree@vger.kernel.org
Tony Lindgren50f29fb2012-12-16 11:29:59 -08007548S: Maintained
7549F: arch/arm/boot/dts/*omap*
7550F: arch/arm/boot/dts/*am3*
Nishanth Menon05eb20f2014-10-21 09:24:22 -05007551F: arch/arm/boot/dts/*am4*
7552F: arch/arm/boot/dts/*am5*
7553F: arch/arm/boot/dts/*dra7*
Tony Lindgren50f29fb2012-12-16 11:29:59 -08007554
Tony Lindgrenf5525782009-05-28 13:23:53 -07007555OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007556M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007557L: linux-omap@vger.kernel.org
7558S: Maintained
7559F: arch/arm/*omap*/*clock*
7560
7561OMAP POWER MANAGEMENT SUPPORT
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08007562M: Kevin Hilman <khilman@deeprootsystems.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007563L: linux-omap@vger.kernel.org
7564S: Maintained
7565F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07007566F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07007567
Joe Perchesd21db562013-09-11 14:23:35 -07007568OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
Paul Walmsley692ab1f2011-03-09 18:44:28 -07007569M: Rajendra Nayak <rnayak@ti.com>
7570M: Paul Walmsley <paul@pwsan.com>
7571L: linux-omap@vger.kernel.org
7572S: Maintained
Joe Perchesd21db562013-09-11 14:23:35 -07007573F: arch/arm/mach-omap2/prm*
Paul Walmsley692ab1f2011-03-09 18:44:28 -07007574
Tony Lindgrenf5525782009-05-28 13:23:53 -07007575OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03007576M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03007577M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Jim Davise5747e42015-06-25 15:01:58 -07007578L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Tony Lindgrenf5525782009-05-28 13:23:53 -07007579L: linux-omap@vger.kernel.org
7580S: Maintained
7581F: sound/soc/omap/
7582
Tony Lindgren18640192014-11-20 09:13:42 -08007583OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
7584M: Roger Quadros <rogerq@ti.com>
7585M: Tony Lindgren <tony@atomide.com>
7586L: linux-omap@vger.kernel.org
7587S: Maintained
7588F: drivers/memory/omap-gpmc.c
7589F: arch/arm/mach-omap2/*gpmc*
7590
Tony Lindgrenf5525782009-05-28 13:23:53 -07007591OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02007592M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01007593L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07007594L: linux-omap@vger.kernel.org
7595S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09007596F: drivers/video/fbdev/omap/
Tony Lindgrenf5525782009-05-28 13:23:53 -07007597
Tomi Valkeinen676eec02010-01-07 13:18:04 +02007598OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02007599M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03007600L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02007601L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03007602S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09007603F: drivers/video/fbdev/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03007604F: Documentation/arm/OMAP/DSS
7605
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03007606OMAP HARDWARE SPINLOCK SUPPORT
7607M: Ohad Ben-Cohen <ohad@wizery.com>
7608L: linux-omap@vger.kernel.org
7609S: Maintained
7610F: drivers/hwspinlock/omap_hwspinlock.c
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03007611
Tony Lindgrenf5525782009-05-28 13:23:53 -07007612OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007613M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007614L: linux-omap@vger.kernel.org
7615S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07007616F: drivers/mmc/host/omap.c
7617
7618OMAP HS MMC SUPPORT
Venkatraman S0a4585c2012-08-17 23:59:53 +05307619L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07007620L: linux-omap@vger.kernel.org
Balaji T Kdfa5d192014-09-17 22:50:11 +05307621S: Orphan
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07007622F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07007623
7624OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007625M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007626S: Maintained
7627F: drivers/char/hw_random/omap-rng.c
7628
Paul Walmsleyf400c822010-12-06 19:08:54 -07007629OMAP HWMOD SUPPORT
Benoit Coussoncdb55ab2013-08-09 23:19:15 +02007630M: Benoît Cousson <bcousson@baylibre.com>
Paul Walmsleyf400c822010-12-06 19:08:54 -07007631M: Paul Walmsley <paul@pwsan.com>
7632L: linux-omap@vger.kernel.org
7633S: Maintained
Zhang Yanfei8fc8b122013-01-11 14:32:03 -08007634F: arch/arm/mach-omap2/omap_hwmod.*
Paul Walmsleyf400c822010-12-06 19:08:54 -07007635
Paul Walmsley8633fb32015-01-19 23:49:50 -07007636OMAP HWMOD DATA
7637M: Paul Walmsley <paul@pwsan.com>
7638L: linux-omap@vger.kernel.org
7639S: Maintained
7640F: arch/arm/mach-omap2/omap_hwmod*data*
7641
Paul Walmsleyf400c822010-12-06 19:08:54 -07007642OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
Benoit Coussoncdb55ab2013-08-09 23:19:15 +02007643M: Benoît Cousson <bcousson@baylibre.com>
Paul Walmsleyf400c822010-12-06 19:08:54 -07007644L: linux-omap@vger.kernel.org
7645S: Maintained
7646F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
7647
Laurent Pinchart0db83ce2014-06-06 12:08:59 -03007648OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03007649M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7650L: linux-media@vger.kernel.org
7651S: Maintained
Sakari Ailus7eec52d2015-03-19 01:50:22 +02007652F: Documentation/devicetree/bindings/media/ti,omap3isp.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007653F: drivers/media/platform/omap3isp/
Laurent Pinchart0db83ce2014-06-06 12:08:59 -03007654F: drivers/staging/media/omap4iss/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03007655
Tony Lindgrenf5525782009-05-28 13:23:53 -07007656OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03007657M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007658L: linux-usb@vger.kernel.org
7659L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03007660T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07007661S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07007662F: drivers/usb/*/*omap*
7663F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07007664
Kevin Hilman6d994712012-07-16 10:05:07 -07007665OMAP GPIO DRIVER
Javier Martinez Canillasa1415a82014-04-06 16:58:17 +02007666M: Javier Martinez Canillas <javier@dowhile0.org>
Santosh Shilimkar97215802014-10-13 14:16:28 -04007667M: Santosh Shilimkar <ssantosh@kernel.org>
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08007668M: Kevin Hilman <khilman@deeprootsystems.com>
Kevin Hilman6d994712012-07-16 10:05:07 -07007669L: linux-omap@vger.kernel.org
7670S: Maintained
7671F: drivers/gpio/gpio-omap.c
7672
Mark Jacksonc351e292013-10-04 09:15:01 +01007673OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
7674M: Mark Jackson <mpfj@newflow.co.uk>
7675L: linux-omap@vger.kernel.org
7676S: Maintained
7677F: arch/arm/boot/dts/am335x-nano.dts
7678
Bob Copeland0ad122d2008-07-25 19:45:18 -07007679OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007680M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07007681L: linux-karma-devel@lists.sourceforge.net
7682S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007683F: Documentation/filesystems/omfs.txt
7684F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07007685
Harald Weltec1986ee2005-11-13 16:06:29 -08007686OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007687M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08007688S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007689F: drivers/char/pcmcia/cm4000_cs.c
7690F: include/linux/cm4000_cs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007691F: include/uapi/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08007692
Harald Welte77c44ab2005-11-13 16:06:26 -08007693OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007694M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08007695S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007696F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08007697
Jonathan Corbet77d51402007-03-22 19:44:17 -03007698OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007699M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007700L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02007701T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03007702S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007703F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03007704
Thomas Gleixner431bca72007-05-02 09:31:35 +02007705ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007706M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02007707L: linux-mtd@lists.infradead.org
7708S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007709F: drivers/mtd/onenand/
7710F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02007711
Linus Torvalds1da177e2005-04-16 15:20:36 -07007712ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007713M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007714L: osst-users@lists.sourceforge.net
7715L: linux-scsi@vger.kernel.org
7716S: Maintained
Jean Delvaref7269cf2013-07-03 15:05:08 -07007717F: Documentation/scsi/osst.txt
7718F: drivers/scsi/osst.*
7719F: drivers/scsi/osst_*.h
7720F: drivers/scsi/st.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007721
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007722OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007723M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01007724L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007725S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007726F: Documentation/i2c/busses/i2c-ocores
7727F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007728
Grant Likely860c44c2009-10-26 16:49:49 -07007729OPEN FIRMWARE AND FLATTENED DEVICE TREE
Rob Herring5d3ad8a2013-12-03 10:20:16 -06007730M: Rob Herring <robh+dt@kernel.org>
Grant Likelyc8fb70a2015-08-23 13:34:08 -07007731M: Frank Rowand <frowand.list@gmail.com>
7732M: Grant Likely <grant.likely@linaro.org>
Grant Likelyd0fb18c2013-07-19 20:10:12 -07007733L: devicetree@vger.kernel.org
Rob Herringa7fefe92014-12-26 14:05:54 -06007734W: http://www.devicetree.org/
7735T: git git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux.git
Grant Likely860c44c2009-10-26 16:49:49 -07007736S: Maintained
Grant Likelyf8828202013-07-19 18:57:39 -07007737F: drivers/of/
Grant Likely860c44c2009-10-26 16:49:49 -07007738F: include/linux/of*.h
Grant Likelyf8828202013-07-19 18:57:39 -07007739F: scripts/dtc/
Grant Likely860c44c2009-10-26 16:49:49 -07007740
Grant Likelyf8828202013-07-19 18:57:39 -07007741OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
Rob Herring5d3ad8a2013-12-03 10:20:16 -06007742M: Rob Herring <robh+dt@kernel.org>
Grant Likelyf8828202013-07-19 18:57:39 -07007743M: Pawel Moll <pawel.moll@arm.com>
7744M: Mark Rutland <mark.rutland@arm.com>
Ian Campbellde809632013-08-30 09:50:42 +01007745M: Ian Campbell <ijc+devicetree@hellion.org.uk>
Kumar Galabdbff6b2013-08-08 10:51:15 -05007746M: Kumar Gala <galak@codeaurora.org>
Grant Likelyf8828202013-07-19 18:57:39 -07007747L: devicetree@vger.kernel.org
7748S: Maintained
7749F: Documentation/devicetree/
7750F: arch/*/boot/dts/
7751F: include/dt-bindings/
7752
Pantelis Antoniou2bb65f52015-03-17 22:30:57 +02007753OPEN FIRMWARE AND DEVICE TREE OVERLAYS
7754M: Pantelis Antoniou <pantelis.antoniou@konsulko.com>
7755L: devicetree@vger.kernel.org
7756S: Maintained
7757F: Documentation/devicetree/dynamic-resolution-notes.txt
7758F: Documentation/devicetree/overlay-notes.txt
7759F: drivers/of/overlay.c
7760F: drivers/of/resolver.c
7761
Jonas Bonn19f9d392011-06-04 22:00:38 +03007762OPENRISC ARCHITECTURE
7763M: Jonas Bonn <jonas@southpole.se>
7764W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02007765L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03007766S: Maintained
7767T: git git://openrisc.net/~jonas/linux
Joe Perches14430812013-09-11 14:23:50 -07007768F: arch/openrisc/
Jonas Bonn19f9d392011-06-04 22:00:38 +03007769
Jesse Grossccb13522011-10-25 19:26:31 -07007770OPENVSWITCH
Jesse Gross4f337ed2014-05-16 15:57:59 -07007771M: Pravin Shelar <pshelar@nicira.com>
Pravin B Shelarb422da72015-01-02 11:18:21 -08007772L: netdev@vger.kernel.org
Jesse Grossccb13522011-10-25 19:26:31 -07007773L: dev@openvswitch.org
7774W: http://openvswitch.org
Jesse Grossccb13522011-10-25 19:26:31 -07007775S: Maintained
7776F: net/openvswitch/
Pravin B Shelarb422da72015-01-02 11:18:21 -08007777F: include/uapi/linux/openvswitch.h
Jesse Grossccb13522011-10-25 19:26:31 -07007778
Clemens Ladischaf399172011-01-10 16:32:54 +01007779OPL4 DRIVER
7780M: Clemens Ladisch <clemens@ladisch.de>
7781L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7782T: git git://git.alsa-project.org/alsa-kernel.git
7783S: Maintained
7784F: sound/drivers/opl4/
7785
Linus Torvalds1da177e2005-04-16 15:20:36 -07007786OPROFILE
Robert Richter4cf7e712012-10-29 18:53:25 +01007787M: Robert Richter <rric@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007788L: oprofile-list@lists.sf.net
7789S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02007790F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07007791F: arch/*/oprofile/
7792F: drivers/oprofile/
7793F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007794
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007795ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07007796M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08007797M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007798L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
Mark Fasheh01945fa2015-02-27 15:51:40 -08007799W: http://ocfs2.wiki.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007800S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007801F: Documentation/filesystems/ocfs2.txt
7802F: Documentation/filesystems/dlmfs.txt
7803F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007804
Linus Torvalds1da177e2005-04-16 15:20:36 -07007805ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07007806L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02007807W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07007808W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01007809S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007810F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007811
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03007812OSD LIBRARY and FILESYSTEM
Boaz Harroshfadc0752014-10-19 19:19:57 +03007813M: Boaz Harrosh <ooo@electrozaur.com>
Benny Halevyf1f66302014-02-10 11:57:29 +02007814M: Benny Halevy <bhalevy@primarydata.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02007815L: osd-dev@open-osd.org
7816W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07007817T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02007818S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03007819F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07007820F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03007821F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02007822
Miklos Szeredief94b182014-11-20 16:39:59 +01007823OVERLAY FILESYSTEM
Neil Brown7c37fbd2014-10-24 00:14:39 +02007824M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi1d113732014-11-20 16:40:01 +01007825L: linux-unionfs@vger.kernel.org
7826T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
Neil Brown7c37fbd2014-10-24 00:14:39 +02007827S: Supported
Miklos Szeredi1d113732014-11-20 16:40:01 +01007828F: fs/overlayfs/
Neil Brown7c37fbd2014-10-24 00:14:39 +02007829F: Documentation/filesystems/overlayfs.txt
7830
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007831P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02007832M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007833L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02007834W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007835S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007836F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007837
Olof Johanssonf5cd7872007-01-31 21:43:54 -06007838PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007839M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06007840L: netdev@vger.kernel.org
7841S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07007842F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06007843
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01007844PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007845M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01007846L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01007847S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007848F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01007849
Steffen Klassert48fc2672010-08-13 10:10:46 -04007850PADATA PARALLEL EXECUTION MECHANISM
7851M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04007852L: linux-crypto@vger.kernel.org
7853S: Maintained
7854F: kernel/padata.c
7855F: include/linux/padata.h
7856F: Documentation/padata.txt
7857
Harald Welte709ee532008-09-23 17:46:57 +02007858PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007859M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd09448532010-02-11 10:40:13 -05007860L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02007861S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007862F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02007863
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01007864PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07007865M: David Howells <dhowells@redhat.com>
7866M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01007867L: linux-am33-list@redhat.com (moderated for non-subscribers)
7868W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
7869S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007870F: Documentation/mn10300/
7871F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01007872
Sudip Mukherjee64dfff02015-05-20 20:57:02 +05307873PARALLEL PORT SUBSYSTEM
7874M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
7875M: Sudip Mukherjee <sudip@vectorindia.org>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07007876L: linux-parport@lists.infradead.org (subscribers-only)
Sudip Mukherjee64dfff02015-05-20 20:57:02 +05307877S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007878F: drivers/parport/
7879F: include/linux/parport*.h
7880F: drivers/char/ppdev.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007881F: include/uapi/linux/ppdev.h
Sudip Mukherjee64dfff02015-05-20 20:57:02 +05307882F: Documentation/parport*.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07007883
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007884PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08007885M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07007886M: Chris Wright <chrisw@sous-sol.org>
7887M: Alok Kataria <akataria@vmware.com>
7888M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00007889L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007890S: Supported
Luis R. Rodrigueza2e19992015-02-13 17:13:40 +10307891F: Documentation/virtual/paravirt_ops.txt
Joe Perches679655d2009-04-07 20:44:32 -07007892F: arch/*/kernel/paravirt*
7893F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007894
Linus Torvalds1da177e2005-04-16 15:20:36 -07007895PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07007896M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07007897L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007898S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007899F: Documentation/blockdev/paride.txt
7900F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007901
7902PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00007903M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05007904M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00007905L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007906W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08007907Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07007908T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Helge Dellerfbb46caa2013-05-16 21:00:16 +00007909T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007910S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007911F: arch/parisc/
Helge Deller2b6bac92013-05-30 13:48:07 +00007912F: Documentation/parisc/
Joe Perches679655d2009-04-07 20:44:32 -07007913F: drivers/parisc/
Helge Deller2b6bac92013-05-30 13:48:07 +00007914F: drivers/char/agp/parisc-agp.c
7915F: drivers/input/serio/gscps2.c
7916F: drivers/parport/parport_gsc.*
7917F: drivers/tty/serial/8250/8250_gsc.c
Jingoo Han8a61f012014-07-01 15:36:01 +09007918F: drivers/video/fbdev/sti*
Helge Deller2b6bac92013-05-30 13:48:07 +00007919F: drivers/video/console/sti*
7920F: drivers/video/logo/logo_parisc*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007921
Jim Cromie1662d322006-10-06 00:43:59 -07007922PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007923M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07007924L: lm-sensors@lm-sensors.org
7925S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007926F: Documentation/hwmon/pc87360
7927F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07007928
7929PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007930M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07007931S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007932F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07007933
Jean Delvare1ad107f2010-08-14 21:09:00 +02007934PC87427 HARDWARE MONITORING DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07007935M: Jean Delvare <jdelvare@suse.com>
Jean Delvare1ad107f2010-08-14 21:09:00 +02007936L: lm-sensors@lm-sensors.org
7937S: Maintained
7938F: Documentation/hwmon/pc87427
7939F: drivers/hwmon/pc87427.c
7940
Riku Voipiob26e0ed2009-03-03 21:37:17 +02007941PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007942M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02007943S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07007944F: drivers/leds/leds-pca9532.c
7945F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02007946
Guenter Roeck5ce914a2010-10-24 18:16:59 +02007947PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07007948M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02007949L: linux-i2c@vger.kernel.org
7950S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02007951F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02007952
Khalid Aziz3971dae2012-04-12 12:49:13 -07007953PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07007954M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07007955S: Maintained
7956F: drivers/firmware/pcdp.*
7957
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06007958PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07007959M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07007960L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06007961S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007962F: Documentation/PCI/pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06007963
Linus Torvalds1da177e2005-04-16 15:20:36 -07007964PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07007965M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07007966L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06007967Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06007968T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007969S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007970F: Documentation/PCI/
7971F: drivers/pci/
7972F: include/linux/pci*
Bjorn Helgaas6b49ee42013-10-09 14:39:08 -06007973F: arch/x86/pci/
Bjorn Helgaascad01f92014-04-05 15:07:00 -06007974F: arch/x86/kernel/quirks.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007975
Rob Herringb7e78172015-01-28 10:16:18 -06007976PCI DRIVER FOR ARM VERSATILE PLATFORM
7977M: Rob Herring <robh@kernel.org>
7978L: linux-pci@vger.kernel.org
7979L: linux-arm-kernel@lists.infradead.org
7980S: Maintained
7981F: Documentation/devicetree/bindings/pci/versatile.txt
7982F: drivers/pci/host/pci-versatile.c
7983
Tanmay Inamdar5f6b6cc2014-10-01 13:01:35 -06007984PCI DRIVER FOR APPLIEDMICRO XGENE
7985M: Tanmay Inamdar <tinamdar@apm.com>
7986L: linux-pci@vger.kernel.org
7987L: linux-arm-kernel@lists.infradead.org
7988S: Maintained
7989F: Documentation/devicetree/bindings/pci/xgene-pci.txt
7990F: drivers/pci/host/pci-xgene.c
7991
Minghuan Lian62d0ff832014-11-05 16:45:11 +08007992PCI DRIVER FOR FREESCALE LAYERSCAPE
7993M: Minghuan Lian <minghuan.Lian@freescale.com>
7994M: Mingkai Hu <mingkai.hu@freescale.com>
7995M: Roy Zang <tie-fei.zang@freescale.com>
7996L: linuxppc-dev@lists.ozlabs.org
7997L: linux-pci@vger.kernel.org
7998L: linux-arm-kernel@lists.infradead.org
7999S: Maintained
8000F: drivers/pci/host/*layerscape*
8001
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008002PCI DRIVER FOR IMX6
Lucas Stachf175aa22015-01-19 11:17:31 +01008003M: Richard Zhu <Richard.Zhu@freescale.com>
Lucas Stach1ba55f52014-07-31 20:16:04 +02008004M: Lucas Stach <l.stach@pengutronix.de>
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008005L: linux-pci@vger.kernel.org
8006L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8007S: Maintained
8008F: drivers/pci/host/*imx6*
8009
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -06008010PCI DRIVER FOR TI KEYSTONE
8011M: Murali Karicheri <m-karicheri2@ti.com>
8012L: linux-pci@vger.kernel.org
8013L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8014S: Maintained
8015F: drivers/pci/host/*keystone*
8016
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008017PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
8018M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8019M: Jason Cooper <jason@lakedaemon.net>
8020L: linux-pci@vger.kernel.org
8021L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8022S: Maintained
8023F: drivers/pci/host/*mvebu*
8024
Thierry Reding0447cfd2013-08-09 16:49:32 +02008025PCI DRIVER FOR NVIDIA TEGRA
8026M: Thierry Reding <thierry.reding@gmail.com>
8027L: linux-tegra@vger.kernel.org
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008028L: linux-pci@vger.kernel.org
Thierry Reding0447cfd2013-08-09 16:49:32 +02008029S: Supported
8030F: Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
8031F: drivers/pci/host/pci-tegra.c
8032
Kishon Vijay Abraham I47ff3de2014-07-22 15:23:45 -06008033PCI DRIVER FOR TI DRA7XX
8034M: Kishon Vijay Abraham I <kishon@ti.com>
8035L: linux-omap@vger.kernel.org
8036L: linux-pci@vger.kernel.org
8037S: Supported
8038F: Documentation/devicetree/bindings/pci/ti-pci.txt
8039F: drivers/pci/host/pci-dra7xx.c
8040
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008041PCI DRIVER FOR RENESAS R-CAR
8042M: Simon Horman <horms@verge.net.au>
8043L: linux-pci@vger.kernel.org
8044L: linux-sh@vger.kernel.org
8045S: Maintained
8046F: drivers/pci/host/*rcar*
8047
Jingoo Han4af82252013-09-12 20:29:24 +09008048PCI DRIVER FOR SAMSUNG EXYNOS
Jingoo Hanb7701752015-05-14 15:17:07 -07008049M: Jingoo Han <jingoohan1@gmail.com>
Jingoo Han4af82252013-09-12 20:29:24 +09008050L: linux-pci@vger.kernel.org
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008051L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8052L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Jingoo Han4af82252013-09-12 20:29:24 +09008053S: Maintained
8054F: drivers/pci/host/pci-exynos.c
8055
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008056PCI DRIVER FOR SYNOPSIS DESIGNWARE
Jingoo Hanb7701752015-05-14 15:17:07 -07008057M: Jingoo Han <jingoohan1@gmail.com>
Pratyush Anand110baab2015-04-30 09:46:07 +05308058M: Pratyush Anand <pratyush.anand@gmail.com>
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008059L: linux-pci@vger.kernel.org
8060S: Maintained
8061F: drivers/pci/host/*designware*
8062
Will Deaconcf288552014-05-01 12:04:28 +01008063PCI DRIVER FOR GENERIC OF HOSTS
8064M: Will Deacon <will.deacon@arm.com>
8065L: linux-pci@vger.kernel.org
8066L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8067S: Maintained
8068F: Documentation/devicetree/bindings/pci/host-generic-pci.txt
8069F: drivers/pci/host/pci-host-generic.c
8070
Pratyush Anand51b66a62014-02-11 11:39:26 +05308071PCIE DRIVER FOR ST SPEAR13XX
Pratyush Anand110baab2015-04-30 09:46:07 +05308072M: Pratyush Anand <pratyush.anand@gmail.com>
Pratyush Anand51b66a62014-02-11 11:39:26 +05308073L: linux-pci@vger.kernel.org
Pratyush Anand110baab2015-04-30 09:46:07 +05308074S: Maintained
Pratyush Anand51b66a62014-02-11 11:39:26 +05308075F: drivers/pci/host/*spear*
8076
Duc Dangdcd19de2015-06-05 15:56:34 -05008077PCI MSI DRIVER FOR APPLIEDMICRO XGENE
8078M: Duc Dang <dhdang@apm.com>
8079L: linux-pci@vger.kernel.org
8080L: linux-arm-kernel@lists.infradead.org
8081S: Maintained
8082F: Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
8083F: drivers/pci/host/pci-xgene-msi.c
8084
Linus Torvalds1da177e2005-04-16 15:20:36 -07008085PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07008086P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07008087L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08008088W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07008089T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07008090S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008091F: Documentation/pcmcia/
8092F: drivers/pcmcia/
8093F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008094
8095PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08008096M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07008097L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008098S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07008099F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008100
Steffen Klassert48fc2672010-08-13 10:10:46 -04008101PCRYPT PARALLEL CRYPTO ENGINE
8102M: Steffen Klassert <steffen.klassert@secunet.com>
8103L: linux-crypto@vger.kernel.org
8104S: Maintained
8105F: crypto/pcrypt.c
8106F: include/crypto/pcrypt.h
8107
Tejun Heoe72df0b2010-12-10 17:02:49 +01008108PER-CPU MEMORY ALLOCATOR
8109M: Tejun Heo <tj@kernel.org>
8110M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01008111T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
8112S: Maintained
8113F: include/linux/percpu*.h
8114F: mm/percpu*.c
8115F: arch/*/include/asm/percpu.h
8116
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07008117PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07008118M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07008119S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008120F: include/linux/delayacct.h
8121F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07008122
Ingo Molnar57c0c152009-09-21 12:20:38 +02008123PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008124M: Peter Zijlstra <a.p.zijlstra@chello.nl>
Ingo Molnardd9b2382012-03-19 21:03:46 +01008125M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melof80c5392014-03-27 17:36:14 -03008126M: Arnaldo Carvalho de Melo <acme@kernel.org>
Ingo Molnar981c3a42014-01-21 10:59:20 +01008127L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008128T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10008129S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09008130F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02008131F: include/linux/perf_event.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008132F: include/uapi/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01008133F: arch/*/kernel/perf_event*.c
8134F: arch/*/kernel/*/perf_event*.c
8135F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02008136F: arch/*/include/asm/perf_event.h
Vincent Legolla0032362009-10-13 14:48:14 +02008137F: arch/*/kernel/perf_callchain.c
8138F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10008139
Jim Cromiedd49d0f2006-03-24 18:08:17 +01008140PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07008141M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01008142L: linux-abi-devel@lists.sourceforge.net
8143S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008144F: include/linux/personality.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008145F: include/uapi/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01008146
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00008147PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00008148M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00008149S: Supported
8150F: Documentation/networking/phonet.txt
8151F: include/linux/phonet.h
8152F: include/net/phonet/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008153F: include/uapi/linux/phonet.h
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00008154F: net/phonet/
8155
Linus Torvalds1da177e2005-04-16 15:20:36 -07008156PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008157M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008158L: linux-mtd@lists.infradead.org
8159S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008160F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008161
Bruno Prémontefdbb102012-07-30 21:39:03 +02008162PICOLCD HID DRIVER
8163M: Bruno Prémont <bonbons@linux-vserver.org>
8164L: linux-input@vger.kernel.org
8165S: Maintained
8166F: drivers/hid/hid-picolcd*
8167
Jamie Ilesa53bfa02011-12-12 20:28:42 +00008168PICOXCELL SUPPORT
8169M: Jamie Iles <jamie@jamieiles.com>
8170L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8171T: git git://github.com/jamieiles/linux-2.6-ji.git
8172S: Supported
Joe Perchesb8733982014-08-08 14:25:12 -07008173F: arch/arm/boot/dts/picoxcell*
Joe Perches14430812013-09-11 14:23:50 -07008174F: arch/arm/mach-picoxcell/
Joe Perchesb8733982014-08-08 14:25:12 -07008175F: drivers/crypto/picoxcell*
Jamie Ilesa53bfa02011-12-12 20:28:42 +00008176
Linus Walleij2744e8a2011-05-02 20:50:54 +02008177PIN CONTROL SUBSYSTEM
8178M: Linus Walleij <linus.walleij@linaro.org>
David Cohenc11f0422014-10-16 19:06:59 -07008179L: linux-gpio@vger.kernel.org
Linus Walleijdbe752a2015-01-19 11:27:19 +01008180T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
Linus Walleij2744e8a2011-05-02 20:50:54 +02008181S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07008182F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02008183F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02008184
Jean-Christophe PLAGNIOL-VILLARD2201bbb2012-10-27 19:53:12 +02008185PIN CONTROLLER - ATMEL AT91
8186M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
8187L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8188S: Maintained
Alexandre Bellonic654b6b2014-10-17 11:49:40 +02008189F: drivers/pinctrl/pinctrl-at91.*
Jean-Christophe PLAGNIOL-VILLARD2201bbb2012-10-27 19:53:12 +02008190
Mika Westerbergcbd1b652014-10-24 15:16:53 +03008191PIN CONTROLLER - INTEL
8192M: Mika Westerberg <mika.westerberg@linux.intel.com>
8193M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
8194S: Maintained
8195F: drivers/pinctrl/intel/
Viresh Kumardeda8282012-03-28 22:27:07 +05308196
Laurent Pinchart9963b532014-07-02 16:33:31 +02008197PIN CONTROLLER - RENESAS
8198M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8199L: linux-sh@vger.kernel.org
8200S: Maintained
8201F: drivers/pinctrl/sh-pfc/
8202
Doug Andersonb75e60d2013-06-16 15:17:46 -07008203PIN CONTROLLER - SAMSUNG
Tomasz Figafea685e2014-08-26 16:30:53 +02008204M: Tomasz Figa <tomasz.figa@gmail.com>
Doug Andersonb75e60d2013-06-16 15:17:46 -07008205L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8206L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8207S: Maintained
Sachin Kamat9b5b33f2014-07-11 14:29:50 +05308208F: drivers/pinctrl/samsung/
Doug Andersonb75e60d2013-06-16 15:17:46 -07008209
Viresh Kumardeda8282012-03-28 22:27:07 +05308210PIN CONTROLLER - ST SPEAR
Viresh Kumarda899472015-07-17 16:23:50 -07008211M: Viresh Kumar <vireshk@kernel.org>
Viresh Kumardeda8282012-03-28 22:27:07 +05308212L: spear-devel@list.st.com
8213L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8214W: http://www.st.com/spear
8215S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02008216F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05308217
Peter Osterlund249a6772005-09-27 21:45:30 -07008218PKTCDVD DRIVER
Jiri Kosinae5f64502015-08-09 09:11:34 +02008219M: Jiri Kosina <jikos@kernel.org>
Peter Osterlund249a6772005-09-27 21:45:30 -07008220S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008221F: drivers/block/pktcdvd.c
8222F: include/linux/pktcdvd.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008223F: include/uapi/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07008224
GuanXuetaob31d8272011-01-16 00:35:49 +08008225PKUNITY SOC DRIVERS
8226M: Guan Xuetao <gxt@mprc.pku.edu.cn>
8227W: http://mprc.pku.edu.cn/~guanxuetao/linux
8228S: Maintained
Guan Xuetaoceebf4d2014-05-27 07:53:10 +08008229T: git git://github.com/gxt/linux.git
GuanXuetaob31d8272011-01-16 00:35:49 +08008230F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08008231F: drivers/i2c/busses/i2c-puv3.c
Jingoo Han8a61f012014-07-01 15:36:01 +09008232F: drivers/video/fbdev/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08008233F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08008234
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07008235PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07008236M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07008237L: lm-sensors@lm-sensors.org
8238W: http://www.lm-sensors.org/
8239W: http://www.roeck-us.net/linux/drivers/
8240T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8241S: Maintained
8242F: Documentation/hwmon/pmbus
8243F: drivers/hwmon/pmbus/
8244F: include/linux/i2c/pmbus.h
8245
Anil Ravindranath89a36812009-08-25 17:35:18 -07008246PMC SIERRA MaxRAID DRIVER
Anil Ravindranath89a36812009-08-25 17:35:18 -07008247L: linux-scsi@vger.kernel.org
8248W: http://www.pmc-sierra.com/
Joe Perches3cdea4d712015-09-09 15:36:14 -07008249S: Orphan
Anil Ravindranath89a36812009-08-25 17:35:18 -07008250F: drivers/scsi/pmcraid.*
8251
jack wangdbf9bfe2009-10-14 16:19:21 +08008252PMC SIERRA PM8001 DRIVER
Jack Wangd32477e2015-07-29 12:02:50 +02008253M: Jack Wang <jinpu.wang@profitbricks.com>
jack wangdbf9bfe2009-10-14 16:19:21 +08008254M: lindar_liu@usish.com
Suresh Thiagarajanf5a7b522014-07-30 17:37:43 +05308255L: pmchba@pmcs.com
jack wangdbf9bfe2009-10-14 16:19:21 +08008256L: linux-scsi@vger.kernel.org
8257S: Supported
8258F: drivers/scsi/pm8001/
8259
Linus Torvalds1da177e2005-04-16 15:20:36 -07008260POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07008261M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar981c3a42014-01-21 10:59:20 +01008262L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008263T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner5cee9642014-06-22 12:06:40 +02008264S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008265F: fs/timerfd.c
8266F: include/linux/timer*
Thomas Gleixner5cee9642014-06-22 12:06:40 +02008267F: kernel/time/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008268
Anton Vorontsov3be86142007-07-15 04:43:36 +04008269POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Sebastian Reichelad8464a2014-07-16 20:14:30 +02008270M: Sebastian Reichel <sre@kernel.org>
Dmitry Eremin-Solenikov57318932014-01-21 03:33:09 +04008271M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008272M: David Woodhouse <dwmw2@infradead.org>
Sebastian Reichelad8464a2014-07-16 20:14:30 +02008273L: linux-pm@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07008274T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04008275S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008276F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07008277F: drivers/power/
Sebastian Reichel26305022015-07-24 23:11:28 +02008278X: drivers/power/avs/
Anton Vorontsov3be86142007-07-15 04:43:36 +04008279
Mark Rutland514f1612015-07-31 15:46:20 +01008280POWER STATE COORDINATION INTERFACE (PSCI)
8281M: Mark Rutland <mark.rutland@arm.com>
8282M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
8283L: linux-arm-kernel@lists.infradead.org
8284S: Maintained
8285F: drivers/firmware/psci.c
8286F: include/linux/psci.h
8287F: include/uapi/linux/psci.h
8288
Linus Torvalds1da177e2005-04-16 15:20:36 -07008289PNP SUPPORT
Joe Perches9c3646d2015-06-25 15:02:00 -07008290M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008291S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008292F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008293
Vitaly Wool999445d2007-01-04 13:07:03 +01008294PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008295M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01008296L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01008297S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008298F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01008299
Linus Torvalds1da177e2005-04-16 15:20:36 -07008300PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07008301M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008302L: linux-ppp@vger.kernel.org
8303S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07008304F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008305
8306PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07008307M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008308S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008309F: net/atm/pppoatm.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008310F: include/uapi/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008311
8312PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07008313M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008314S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07008315F: drivers/net/ppp/pppoe.c
8316F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008317
James Chapmana6d23702007-06-27 15:53:17 -07008318PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07008319M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07008320S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07008321F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07008322F: include/linux/if_pppol2tp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008323F: include/uapi/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07008324
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07008325PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07008326M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07008327W: http://wiki.enneenne.com/index.php/LinuxPPS_support
8328L: linuxpps@ml.enneenne.com (subscribers-only)
8329S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07008330F: Documentation/pps/
8331F: drivers/pps/
8332F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07008333
Harry Wei71a6d0a2011-05-11 15:13:33 -07008334PPTP DRIVER
8335M: Dmitry Kozlov <xeb@mail.ru>
8336L: netdev@vger.kernel.org
8337S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07008338F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07008339W: http://sourceforge.net/projects/accel-pptp
8340
Linus Torvalds1da177e2005-04-16 15:20:36 -07008341PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07008342M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008343L: kpreempt-tech@lists.sourceforge.net
8344W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
8345S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008346F: Documentation/preempt-locking.txt
8347F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008348
8349PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008350M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07008351L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04008352W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04008353S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07008354F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008355
Masakazu Mokuno02c18892007-07-05 20:11:16 +09008356PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00008357M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09008358L: netdev@vger.kernel.org
Michael Ellermana14ab6b2015-05-01 13:20:25 +10008359L: linuxppc-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00008360S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07008361F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09008362
Geoff Levandf58a9d12006-11-23 00:46:51 +01008363PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00008364M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10008365L: linuxppc-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00008366S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008367F: arch/powerpc/boot/ps3*
8368F: arch/powerpc/include/asm/lv1call.h
8369F: arch/powerpc/include/asm/ps3*.h
8370F: arch/powerpc/platforms/ps3/
8371F: drivers/*/ps3*
8372F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00008373F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07008374F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00008375F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01008376
Jim Pariscffb4add2009-01-06 11:32:10 +00008377PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008378M: Jim Paris <jim@jtan.com>
Geoff Levand3715a5d2015-06-10 18:00:18 +00008379M: Geoff Levand <geoff@infradead.org>
Michael Ellermana14ab6b2015-05-01 13:20:25 +10008380L: linuxppc-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00008381S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07008382F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00008383
Anton Vorontsov8defe592012-08-03 18:07:20 -07008384PSTORE FILESYSTEM
Anton Vorontsov9d5e2a02013-06-09 09:41:23 -07008385M: Anton Vorontsov <anton@enomsg.org>
Anton Vorontsov8defe592012-08-03 18:07:20 -07008386M: Colin Cross <ccross@android.com>
8387M: Kees Cook <keescook@chromium.org>
8388M: Tony Luck <tony.luck@intel.com>
8389S: Maintained
8390T: git git://git.infradead.org/users/cbou/linux-pstore.git
8391F: fs/pstore/
8392F: include/linux/pstore*
Matt Fleming04851772013-02-08 15:48:51 +00008393F: drivers/firmware/efi/efi-pstore.c
Anton Vorontsov8defe592012-08-03 18:07:20 -07008394F: drivers/acpi/apei/erst.c
8395
Richard Cochran7fbc4152012-03-10 01:55:53 +00008396PTP HARDWARE CLOCK SUPPORT
8397M: Richard Cochran <richardcochran@gmail.com>
Jiri Bence7333e32013-03-26 04:01:12 +00008398L: netdev@vger.kernel.org
Richard Cochran7fbc4152012-03-10 01:55:53 +00008399S: Maintained
8400W: http://linuxptp.sourceforge.net/
8401F: Documentation/ABI/testing/sysfs-ptp
8402F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07008403F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00008404F: drivers/net/phy/dp83640*
8405F: drivers/ptp/*
8406F: include/linux/ptp_cl*
8407
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07008408PTRACE SUPPORT
Richard Weinbergere846ee52014-08-08 14:23:46 -07008409M: Roland McGrath <roland@hack.frob.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008410M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07008411S: Maintained
8412F: include/asm-generic/syscall.h
8413F: include/linux/ptrace.h
8414F: include/linux/regset.h
8415F: include/linux/tracehook.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008416F: include/uapi/linux/ptrace.h
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07008417F: kernel/ptrace.c
8418
Michael Krufky83202042006-07-03 00:24:18 -07008419PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008420M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03008421L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008422L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07008423W: http://www.isely.net/pvrusb2/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008424T: git git://linuxtv.org/media_tree.git
Michael Krufky83202042006-07-03 00:24:18 -07008425S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008426F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008427F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07008428
Hans de Goede39532e62012-11-04 17:05:59 -03008429PWC WEBCAM DRIVER
8430M: Hans de Goede <hdegoede@redhat.com>
8431L: linux-media@vger.kernel.org
8432T: git git://linuxtv.org/media_tree.git
8433S: Maintained
8434F: drivers/media/usb/pwc/*
8435
Kamil Debski93c090b2014-08-20 11:29:23 +02008436PWM FAN DRIVER
8437M: Kamil Debski <k.debski@samsung.com>
8438L: lm-sensors@lm-sensors.org
8439S: Supported
8440F: Documentation/devicetree/bindings/hwmon/pwm-fan.txt
8441F: Documentation/hwmon/pwm-fan
8442F: drivers/hwmon/pwm-fan.c
8443
Thierry Reding200efed2012-03-27 13:16:18 +02008444PWM SUBSYSTEM
Thierry Redingaa3495f2013-05-06 12:50:36 +02008445M: Thierry Reding <thierry.reding@gmail.com>
8446L: linux-pwm@vger.kernel.org
Sascha Hauer0c2498f2011-01-28 09:40:40 +01008447S: Maintained
Thierry Reding006e8542013-11-01 11:15:05 +01008448T: git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
Thierry Reding200efed2012-03-27 13:16:18 +02008449F: Documentation/pwm.txt
8450F: Documentation/devicetree/bindings/pwm/
8451F: include/linux/pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01008452F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07008453F: drivers/video/backlight/pwm_bl.c
8454F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01008455
Eric Miao30ec2612008-06-12 15:21:41 -07008456PXA2xx/PXA3xx SUPPORT
Robert Jarzmik8da5e302014-09-24 23:08:00 +02008457M: Daniel Mack <daniel@zonque.org>
Haojian Zhuanga323f662012-03-14 18:33:07 +08008458M: Haojian Zhuang <haojian.zhuang@gmail.com>
Robert Jarzmik8da5e302014-09-24 23:08:00 +02008459M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -07008460L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08008461T: git git://github.com/hzhuang1/linux.git
Robert Jarzmik8da5e302014-09-24 23:08:00 +02008462T: git git://github.com/rjarzmik/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008463S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008464F: arch/arm/mach-pxa/
Robert Jarzmik820439f2015-05-25 23:29:19 +02008465F: drivers/dma/pxa*
Joe Perches679655d2009-04-07 20:44:32 -07008466F: drivers/pcmcia/pxa2xx*
Joe Perches9df92e62012-01-10 15:09:06 -08008467F: drivers/spi/spi-pxa2xx*
Joe Perchesfaf2e1d2014-08-08 14:26:18 -07008468F: drivers/usb/gadget/udc/pxa2*
Joe Perches679655d2009-04-07 20:44:32 -07008469F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01008470F: sound/arm/pxa*
Joe Perches14430812013-09-11 14:23:50 -07008471F: sound/soc/pxa/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008472
Ezequiel Garciaec64d3b2013-12-04 15:28:46 -08008473PXA3xx NAND FLASH DRIVER
8474M: Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
8475L: linux-mtd@lists.infradead.org
8476S: Maintained
Joe Perches9a67f092014-08-08 14:25:10 -07008477F: drivers/mtd/nand/pxa3xx_nand.c
Ezequiel Garciaec64d3b2013-12-04 15:28:46 -08008478
Haojian Zhuang3f640c62011-12-09 09:58:41 +08008479MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07008480M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08008481M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08008482L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08008483T: git git://github.com/hzhuang1/linux.git
8484T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08008485S: Maintained
Haojian Zhuang3f640c62011-12-09 09:58:41 +08008486F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08008487
Pierre Ossman272f1332007-05-14 21:25:26 +02008488PXA MMCI DRIVER
8489S: Orphan
8490
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08008491PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008492M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08008493L: rtc-linux@googlegroups.com
8494S: Maintained
8495
Tadeusz Strukcea40012014-06-05 13:44:39 -07008496QAT DRIVER
Joe Perches49e7d9d2015-04-15 16:17:31 -07008497M: Tadeusz Struk <tadeusz.struk@intel.com>
8498L: qat-linux@intel.com
8499S: Supported
8500F: drivers/crypto/qat/
Tadeusz Strukcea40012014-06-05 13:44:39 -07008501
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07008502QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04008503M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07008504L: linux-rdma@vger.kernel.org
8505S: Supported
8506F: drivers/infiniband/hw/qib/
8507
Jes Sorensen5e9772b2010-06-30 15:37:38 +02008508QLOGIC QLA1280 SCSI DRIVER
8509M: Michael Reed <mdr@sgi.com>
8510L: linux-scsi@vger.kernel.org
8511S: Maintained
8512F: drivers/scsi/qla1280.[ch]
8513
Linus Torvalds1da177e2005-04-16 15:20:36 -07008514QLOGIC QLA2XXX FC-SCSI DRIVER
Saurav Kashyap2c804eb2013-10-30 03:38:28 -04008515M: qla2xxx-upstream@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07008516L: linux-scsi@vger.kernel.org
8517S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008518F: Documentation/scsi/LICENSE.qla2xxx
8519F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008520
Ravi Anand883c98f2010-04-28 11:45:49 +05308521QLOGIC QLA4XXX iSCSI DRIVER
Nilesh Javali1018b8b2015-01-07 00:49:23 -05008522M: QLogic-Storage-Upstream@qlogic.com
Ravi Anand883c98f2010-04-28 11:45:49 +05308523L: linux-scsi@vger.kernel.org
8524S: Supported
Vikas Chaudharybacfb812013-07-11 02:09:43 -04008525F: Documentation/scsi/LICENSE.qla4xxx
Ravi Anand883c98f2010-04-28 11:45:49 +05308526F: drivers/scsi/qla4xxx/
8527
Ron Mercer5a4faa872006-07-25 00:40:21 -07008528QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00008529M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008530M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa872006-07-25 00:40:21 -07008531M: linux-driver@qlogic.com
8532L: netdev@vger.kernel.org
8533S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008534F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07008535F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07008536
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00008537QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Shahed Shaikh9f35a3c2014-08-27 12:43:21 -04008538M: Dept-GELinuxNICDev@qlogic.com
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00008539L: netdev@vger.kernel.org
8540S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07008541F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00008542
Ron Mercerc4e84bd2008-09-18 11:56:28 -04008543QLOGIC QLGE 10Gb ETHERNET DRIVER
Harish Patilc9b1a5b2014-09-18 17:27:25 -04008544M: Harish Patil <harish.patil@qlogic.com>
8545M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
8546M: Dept-GELinuxNICDev@qlogic.com
Joe Perches4cbfbe22009-07-29 15:04:21 -07008547M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04008548L: netdev@vger.kernel.org
8549S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07008550F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04008551
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02008552QLOGIC QL4xxx ETHERNET DRIVER
8553M: Yuval Mintz <Yuval.Mintz@qlogic.com>
8554M: Ariel Elior <Ariel.Elior@qlogic.com>
8555M: everest-linux-l2@qlogic.com
8556L: netdev@vger.kernel.org
8557S: Supported
8558F: drivers/net/ethernet/qlogic/qed/
8559F: include/linux/qed/
8560F: drivers/net/ethernet/qlogic/qede/
8561
Linus Torvalds1da177e2005-04-16 15:20:36 -07008562QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008563M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008564W: http://www.alarsen.net/linux/qnx4fs/
8565S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07008566F: fs/qnx4/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008567F: include/uapi/linux/qnx4_fs.h
8568F: include/uapi/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008569
Antti Palosaari91952bc2012-10-01 12:28:46 -03008570QT1010 MEDIA DRIVER
8571M: Antti Palosaari <crope@iki.fi>
8572L: linux-media@vger.kernel.org
8573W: http://linuxtv.org/
8574W: http://palosaari.fi/linux/
8575Q: http://patchwork.linuxtv.org/project/linux-media/list/
8576T: git git://linuxtv.org/anttip/media_tree.git
8577S: Maintained
8578F: drivers/media/tuners/qt1010*
8579
Sujith Manoharan966fb5e2013-11-06 10:43:27 +05308580QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
8581M: QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
8582L: linux-wireless@vger.kernel.org
8583L: ath9k-devel@lists.ath9k.org
8584W: http://wireless.kernel.org/en/users/Drivers/ath9k
8585S: Supported
8586F: drivers/net/wireless/ath/ath9k/
8587
Kalle Valo2ea0ffc2013-07-22 12:22:19 +03008588QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
8589M: Kalle Valo <kvalo@qca.qualcomm.com>
8590L: ath10k@lists.infradead.org
8591W: http://wireless.kernel.org/en/users/Drivers/ath10k
8592T: git git://github.com/kvalo/ath.git
8593S: Supported
8594F: drivers/net/wireless/ath/ath10k/
8595
Richard Kuo4f4567c2011-10-31 18:56:38 -05008596QUALCOMM HEXAGON ARCHITECTURE
8597M: Richard Kuo <rkuo@codeaurora.org>
8598L: linux-hexagon@vger.kernel.org
8599S: Supported
8600F: arch/hexagon/
8601
Eugene Krasnikov8e84c252013-10-08 21:25:58 +01008602QUALCOMM WCN36XX WIRELESS DRIVER
8603M: Eugene Krasnikov <k.eugene.e@gmail.com>
8604L: wcn36xx@lists.infradead.org
8605W: http://wireless.kernel.org/en/users/Drivers/wcn36xx
8606T: git git://github.com/KrasnikovEugene/wcn36xx.git
8607S: Supported
8608F: drivers/net/wireless/ath/wcn36xx/
8609
Yehuda Sadeh602adf42010-08-12 16:11:25 -07008610RADOS BLOCK DEVICE (RBD)
Sage Weil0f5417c2015-02-19 10:10:40 -08008611M: Ilya Dryomov <idryomov@gmail.com>
8612M: Sage Weil <sage@redhat.com>
Alex Elder527a88b2013-12-26 08:37:43 -06008613M: Alex Elder <elder@kernel.org>
Sage Weil398ecff52015-07-09 11:46:14 -04008614L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07008615W: http://ceph.com/
8616T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil6e67b7a2015-07-09 11:47:37 -04008617T: git git://github.com/ceph/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07008618S: Supported
Sage Weil398ecff52015-07-09 11:46:14 -04008619F: Documentation/ABI/testing/sysfs-bus-rbd
Yehuda Sadeh602adf42010-08-12 16:11:25 -07008620F: drivers/block/rbd.c
8621F: drivers/block/rbd_types.h
8622
Linus Torvalds1da177e2005-04-16 15:20:36 -07008623RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008624M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008625L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008626S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09008627F: drivers/video/fbdev/aty/radeon*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008628F: include/uapi/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008629
Hans de Goedec6c9b342012-11-04 17:03:58 -03008630RADIOSHARK RADIO DRIVER
8631M: Hans de Goede <hdegoede@redhat.com>
8632L: linux-media@vger.kernel.org
8633T: git git://linuxtv.org/media_tree.git
8634S: Maintained
8635F: drivers/media/radio/radio-shark.c
8636
8637RADIOSHARK2 RADIO DRIVER
8638M: Hans de Goede <hdegoede@redhat.com>
8639L: linux-media@vger.kernel.org
8640T: git git://linuxtv.org/media_tree.git
8641S: Maintained
8642F: drivers/media/radio/radio-shark2.c
8643F: drivers/media/radio/radio-tea5777.c
8644
Linus Torvalds1da177e2005-04-16 15:20:36 -07008645RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008646M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008647L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008648S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09008649F: drivers/video/fbdev/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008650
Randy Dunlape7839f22008-10-12 16:11:45 -07008651RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07008652P: rt2x00 project
Stanislaw Gruszkab1824272014-09-28 14:03:06 +02008653M: Stanislaw Gruszka <sgruszka@redhat.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01008654M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07008655L: linux-wireless@vger.kernel.org
Ivo van Doorn95ea3622007-09-25 17:57:13 -07008656S: Maintained
8657F: drivers/net/wireless/rt2x00/
8658
Nick Piggin9db55792008-02-08 04:19:49 -08008659RAMDISK RAM BLOCK DEVICE DRIVER
Ross Zwislerea7618e2015-03-17 12:56:30 -06008660M: Jens Axboe <axboe@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08008661S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008662F: Documentation/blockdev/ramdisk.txt
8663F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08008664
Matt Mackall9e95ce22005-04-16 15:25:56 -07008665RANDOM NUMBER DRIVER
Christoph Hellwig0624bca2014-04-25 01:12:01 -07008666M: "Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07008667S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008668F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07008669
Matt Porter394b7012005-11-07 01:00:15 -08008670RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008671M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08008672M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08008673S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008674F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08008675
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008676RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008677L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04008678S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07008679F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008680
8681RCUTORTURE MODULE
Josh Triplette0198b22014-07-30 16:08:42 -07008682M: Josh Triplett <josh@joshtriplett.org>
Joe Perches8b58be82009-07-29 15:04:30 -07008683M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +01008684L: linux-kernel@vger.kernel.org
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08008685S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07008686T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07008687F: Documentation/RCU/torture.txt
Joe Perches34e2d562014-07-03 15:08:00 -07008688F: kernel/rcu/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008689
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -07008690RCUTORTURE TEST FRAMEWORK
8691M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyab0afd62014-06-03 08:17:06 -07008692M: Josh Triplett <josh@joshtriplett.org>
Paul E. McKenney4632a192014-05-30 15:37:24 -07008693R: Steven Rostedt <rostedt@goodmis.org>
8694R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Lai Jiangshan96a39bc2015-07-01 15:26:27 +08008695R: Lai Jiangshan <jiangshanlai@gmail.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +01008696L: linux-kernel@vger.kernel.org
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -07008697S: Supported
8698T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8699F: tools/testing/selftests/rcutorture
8700
Florian Fainellic1f766b2008-02-06 22:39:44 +01008701RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07008702M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01008703S: Maintained
8704
Florian Fainellidb17f392007-12-19 11:30:30 +01008705RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008706M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f392007-12-19 11:30:30 +01008707L: netdev@vger.kernel.org
8708S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07008709F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01008710
Andy Grovera09ed662009-02-24 15:30:41 +00008711RDS - RELIABLE DATAGRAM SOCKETS
Venkat Venkatsubra8a85ac42014-01-30 13:28:47 -08008712M: Chien Yen <chien.yen@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00008713L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00008714S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008715F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00008716
Josh Triplett595182b2006-10-04 02:17:21 -07008717READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07008718M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyab0afd62014-06-03 08:17:06 -07008719M: Josh Triplett <josh@joshtriplett.org>
Paul E. McKenney4632a192014-05-30 15:37:24 -07008720R: Steven Rostedt <rostedt@goodmis.org>
8721R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Lai Jiangshan96a39bc2015-07-01 15:26:27 +08008722R: Lai Jiangshan <jiangshanlai@gmail.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +01008723L: linux-kernel@vger.kernel.org
Paul E. McKenney9fab97872012-05-07 09:36:34 -07008724W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07008725S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07008726T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08008727F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07008728X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08008729F: include/linux/rcu*
Paul E. McKenney4102ada2013-10-08 20:23:47 -07008730X: include/linux/srcu.h
8731F: kernel/rcu/
Joe Perches34e2d562014-07-03 15:08:00 -07008732X: kernel/torture.c
Josh Triplett595182b2006-10-04 02:17:21 -07008733
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08008734REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008735M: Alessandro Zummo <a.zummo@towertech.it>
Alexandre Belloni7c6f84f2015-04-16 12:45:43 -07008736M: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Alessandro Zummo76465492006-12-10 02:19:06 -08008737L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08008738Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alexandre Belloni4733f392015-05-26 11:13:04 +02008739T: git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08008740S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008741F: Documentation/rtc.txt
8742F: drivers/rtc/
8743F: include/linux/rtc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008744F: include/uapi/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08008745
Mark Brown0e400c52014-07-31 12:38:31 +01008746REALTEK AUDIO CODECS
8747M: Bard Liao <bardliao@realtek.com>
8748M: Oder Chiou <oder_chiou@realtek.com>
8749S: Maintained
8750F: sound/soc/codecs/rt*
8751F: include/sound/rt*.h
8752
Linus Torvalds1da177e2005-04-16 15:20:36 -07008753REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07008754L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008755S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008756F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008757
Mark Brownb83a3132011-05-11 19:59:58 +02008758REGISTER MAP ABSTRACTION
Mark Brownb02e48f2013-04-12 11:39:57 +01008759M: Mark Brown <broonie@kernel.org>
Mark Browndd060bc2014-08-16 12:30:58 +01008760L: linux-kernel@vger.kernel.org
Mark Brownb83a3132011-05-11 19:59:58 +02008761T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
8762S: Supported
8763F: drivers/base/regmap/
8764F: include/linux/regmap.h
8765
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02008766REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
8767M: Ohad Ben-Cohen <ohad@wizery.com>
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03008768T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02008769S: Maintained
8770F: drivers/remoteproc/
8771F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07008772F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02008773
Ohad Ben-Cohend8115db2013-04-16 20:34:49 +03008774REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
8775M: Ohad Ben-Cohen <ohad@wizery.com>
8776T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
8777S: Maintained
8778F: drivers/rpmsg/
8779F: Documentation/rpmsg.txt
8780F: include/linux/rpmsg.h
8781
Philipp Zabel1b0fe6b2014-05-27 15:58:09 +02008782RESET CONTROLLER FRAMEWORK
8783M: Philipp Zabel <p.zabel@pengutronix.de>
8784S: Maintained
8785F: drivers/reset/
8786F: Documentation/devicetree/bindings/reset/
Philipp Zabelb2f6dd72015-02-13 12:14:40 +01008787F: include/dt-bindings/reset/
Philipp Zabel1b0fe6b2014-05-27 15:58:09 +02008788F: include/linux/reset.h
8789F: include/linux/reset-controller.h
8790
Ivo van Doorne08976452008-04-12 19:23:55 +02008791RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07008792M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02008793L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02008794W: http://wireless.kernel.org/
8795T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
8796T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02008797S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08008798F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07008799F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02008800
Thomas Graf933685c2015-01-13 01:01:24 +01008801RHASHTABLE
8802M: Thomas Graf <tgraf@suug.ch>
8803L: netdev@vger.kernel.org
8804S: Maintained
8805F: lib/rhashtable.c
8806F: include/linux/rhashtable.h
8807
Maxim Levitsky67e054e2010-02-22 20:39:42 +02008808RICOH SMARTMEDIA/XD DRIVER
8809M: Maxim Levitsky <maximlevitsky@gmail.com>
8810S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07008811F: drivers/mtd/nand/r852.c
8812F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02008813
Maxim Levitsky92634122011-03-25 01:56:59 -07008814RICOH R5C592 MEMORYSTICK DRIVER
8815M: Maxim Levitsky <maximlevitsky@gmail.com>
8816S: Maintained
8817F: drivers/memstick/host/r592.*
8818
Stefan Achatz27f1d2f2013-09-05 06:36:01 +02008819ROCCAT DRIVERS
8820M: Stefan Achatz <erazor_de@users.sourceforge.net>
8821W: http://sourceforge.net/projects/roccat/
8822S: Maintained
8823F: drivers/hid/hid-roccat*
8824F: include/linux/hid-roccat*
8825F: Documentation/ABI/*/sysfs-driver-hid-roccat*
8826
Jiri Pirko4b8ac962014-11-28 14:34:26 +01008827ROCKER DRIVER
8828M: Jiri Pirko <jiri@resnulli.us>
8829M: Scott Feldman <sfeldma@gmail.com>
8830L: netdev@vger.kernel.org
8831S: Supported
8832F: drivers/net/ethernet/rocker/
8833
Linus Torvalds1da177e2005-04-16 15:20:36 -07008834ROCKETPORT DRIVER
8835P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008836W: http://www.comtrol.com
8837S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008838F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07008839F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008840
Kevin Cernekee7645c2f2014-10-21 15:23:06 -07008841ROCKETPORT EXPRESS/INFINITY DRIVER
8842M: Kevin Cernekee <cernekee@gmail.com>
8843L: linux-serial@vger.kernel.org
8844S: Odd Fixes
8845F: drivers/tty/serial/rp2.*
8846
Linus Torvalds1da177e2005-04-16 15:20:36 -07008847ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07008848M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008849L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02008850W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008851S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008852F: include/net/rose.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008853F: include/uapi/linux/rose.h
Joe Perches679655d2009-04-07 20:44:32 -07008854F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008855
Antti Palosaari91952bc2012-10-01 12:28:46 -03008856RTL2830 MEDIA DRIVER
8857M: Antti Palosaari <crope@iki.fi>
8858L: linux-media@vger.kernel.org
8859W: http://linuxtv.org/
8860W: http://palosaari.fi/linux/
8861Q: http://patchwork.linuxtv.org/project/linux-media/list/
8862T: git git://linuxtv.org/anttip/media_tree.git
8863S: Maintained
8864F: drivers/media/dvb-frontends/rtl2830*
8865
Antti Palosaari27a0aac2013-04-09 20:30:43 -03008866RTL2832 MEDIA DRIVER
8867M: Antti Palosaari <crope@iki.fi>
8868L: linux-media@vger.kernel.org
8869W: http://linuxtv.org/
8870W: http://palosaari.fi/linux/
8871Q: http://patchwork.linuxtv.org/project/linux-media/list/
8872T: git git://linuxtv.org/anttip/media_tree.git
8873S: Maintained
8874F: drivers/media/dvb-frontends/rtl2832*
8875
Antti Palosaariba6e6f62014-02-03 00:00:32 -03008876RTL2832_SDR MEDIA DRIVER
8877M: Antti Palosaari <crope@iki.fi>
8878L: linux-media@vger.kernel.org
8879W: http://linuxtv.org/
8880W: http://palosaari.fi/linux/
8881Q: http://patchwork.linuxtv.org/project/linux-media/list/
8882T: git git://linuxtv.org/anttip/media_tree.git
8883S: Maintained
Antti Palosaarib4bb1c22014-07-14 21:19:29 -03008884F: drivers/media/dvb-frontends/rtl2832_sdr*
Antti Palosaariba6e6f62014-02-03 00:00:32 -03008885
Larry Finger59840482008-11-12 17:13:09 -06008886RTL8180 WIRELESS DRIVER
Michael Wu605bebe2007-05-14 01:41:02 -04008887L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02008888W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07008889T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
John W. Linville7be6ff62014-12-04 16:52:41 -05008890S: Orphan
John W. Linville3cfeb0c2010-12-20 15:16:53 -05008891F: drivers/net/wireless/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04008892
Larry Finger59840482008-11-12 17:13:09 -06008893RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03008894M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008895M: Hin-Tak Leung <htl10@users.sourceforge.net>
8896M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07008897L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02008898W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07008899T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07008900S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05008901F: drivers/net/wireless/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06008902
Larry Finger3cf0c8a2010-12-16 09:13:21 -06008903RTL8192CE WIRELESS DRIVER
8904M: Larry Finger <Larry.Finger@lwfinger.net>
8905M: Chaoming Li <chaoming_li@realsil.com.cn>
8906L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02008907W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06008908T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8909S: Maintained
8910F: drivers/net/wireless/rtlwifi/
Larry Fingerf0b3e4b2010-12-17 16:04:11 -06008911F: drivers/net/wireless/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02008912
Jes Sorensen26f1fad2015-10-14 20:44:51 -04008913RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
8914M: Jes Sorensen <Jes.Sorensen@redhat.com>
8915L: linux-wireless@vger.kernel.org
8916T: git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8723au-mac80211
8917S: Maintained
8918F: drivers/net/wireless/realtek/rtl8xxxu/
8919
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08008920S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008921M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008922L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08008923S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09008924F: drivers/video/fbdev/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08008925
Linus Torvalds1da177e2005-04-16 15:20:36 -07008926S390
Joe Perches8b58be82009-07-29 15:04:30 -07008927M: Martin Schwidefsky <schwidefsky@de.ibm.com>
8928M: Heiko Carstens <heiko.carstens@de.ibm.com>
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01008929L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08008930W: http://www.ibm.com/developerworks/linux/linux390/
8931S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008932F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01008933F: drivers/s390/
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02008934F: Documentation/s390/
8935F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08008936
Sebastian Ott322986c2014-02-17 15:16:30 +01008937S390 COMMON I/O LAYER
8938M: Sebastian Ott <sebott@linux.vnet.ibm.com>
8939M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
8940L: linux-s390@vger.kernel.org
8941W: http://www.ibm.com/developerworks/linux/linux390/
8942S: Supported
8943F: drivers/s390/cio/
8944
8945S390 DASD DRIVER
8946M: Stefan Weinhuber <wein@de.ibm.com>
8947M: Stefan Haberland <stefan.haberland@de.ibm.com>
8948L: linux-s390@vger.kernel.org
8949W: http://www.ibm.com/developerworks/linux/linux390/
8950S: Supported
8951F: drivers/s390/block/dasd*
8952F: block/partitions/ibm.c
8953
Heiko Carstens5238da42006-02-11 17:56:01 -08008954S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008955M: Ursula Braun <ursula.braun@de.ibm.com>
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01008956L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08008957W: http://www.ibm.com/developerworks/linux/linux390/
8958S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008959F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08008960
Sebastian Ott322986c2014-02-17 15:16:30 +01008961S390 PCI SUBSYSTEM
8962M: Sebastian Ott <sebott@linux.vnet.ibm.com>
8963M: Gerald Schaefer <gerald.schaefer@de.ibm.com>
8964L: linux-s390@vger.kernel.org
8965W: http://www.ibm.com/developerworks/linux/linux390/
8966S: Supported
8967F: arch/s390/pci/
8968F: drivers/pci/hotplug/s390_pci_hpc.c
8969
Felix Beckfeed9b62009-03-26 15:24:23 +01008970S390 ZCRYPT DRIVER
Ingo Tuchscherer5c8d0982013-01-14 10:07:05 +01008971M: Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01008972L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01008973W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01008974S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07008975F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01008976
Heiko Carstens5238da42006-02-11 17:56:01 -08008977S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01008978M: Steffen Maier <maier@linux.vnet.ibm.com>
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01008979L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08008980W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008981S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008982F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008983
Ursula Braundd96df22007-09-19 13:09:02 +02008984S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07008985M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02008986L: linux-s390@vger.kernel.org
8987W: http://www.ibm.com/developerworks/linux/linux390/
8988S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008989F: drivers/s390/net/*iucv*
8990F: include/net/iucv/
8991F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02008992
Ben Dooks4dde7f72008-06-30 22:40:38 +01008993S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07008994M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07008995L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01008996S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008997F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01008998
Hans Verkuil1f15a222012-11-23 07:45:29 -03008999SAA6588 RDS RECEIVER DRIVER
9000M: Hans Verkuil <hverkuil@xs4all.nl>
9001L: linux-media@vger.kernel.org
9002T: git git://linuxtv.org/media_tree.git
9003W: http://linuxtv.org
9004S: Odd Fixes
9005F: drivers/media/i2c/saa6588*
9006
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02009007SAA7134 VIDEO4LINUX DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02009008M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02009009L: linux-media@vger.kernel.org
9010W: http://linuxtv.org
9011T: git git://linuxtv.org/media_tree.git
9012S: Odd fixes
Cesar Eduardo Barrose42bf502013-03-02 21:53:47 -03009013F: Documentation/video4linux/*.saa7134
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02009014F: drivers/media/pci/saa7134/
9015
Linus Torvalds1da177e2005-04-16 15:20:36 -07009016SAA7146 VIDEO4LINUX-2 DRIVER
Hans Verkuil566b8152012-11-23 09:58:12 -03009017M: Hans Verkuil <hverkuil@xs4all.nl>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03009018L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02009019T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07009020S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03009021F: drivers/media/common/saa7146/
9022F: drivers/media/pci/saa7146/
9023F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009024
Corentin Chary92304a42011-12-05 12:38:35 -05009025SAMSUNG LAPTOP DRIVER
Corentin Chary5909c652012-12-17 16:00:05 -08009026M: Corentin Chary <corentin.chary@gmail.com>
Corentin Chary92304a42011-12-05 12:38:35 -05009027L: platform-driver-x86@vger.kernel.org
9028S: Maintained
9029F: drivers/platform/x86/samsung-laptop.c
9030
Mark Brown4a109cc2010-09-24 10:50:46 +01009031SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09009032M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01009033L: alsa-devel@alsa-project.org (moderated for non-subscribers)
9034S: Supported
Joe Perches14430812013-09-11 14:23:50 -07009035F: sound/soc/samsung/
Mark Brown4a109cc2010-09-24 10:50:46 +01009036
Jingoo Han0d89a282011-12-19 11:09:35 +09009037SAMSUNG FRAMEBUFFER DRIVER
Jingoo Hanb7701752015-05-14 15:17:07 -07009038M: Jingoo Han <jingoohan1@gmail.com>
Jingoo Han0d89a282011-12-19 11:09:35 +09009039L: linux-fbdev@vger.kernel.org
9040S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09009041F: drivers/video/fbdev/s3c-fb.c
Jingoo Han0d89a282011-12-19 11:09:35 +09009042
Krzysztof Kozlowskib40f0632015-05-06 14:19:36 +09009043SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09009044M: Sangbeom Kim <sbkim73@samsung.com>
Krzysztof Kozlowskib40f0632015-05-06 14:19:36 +09009045M: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09009046L: linux-kernel@vger.kernel.org
Krzysztof Kozlowskib40f0632015-05-06 14:19:36 +09009047L: linux-samsung-soc@vger.kernel.org
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09009048S: Supported
9049F: drivers/mfd/sec*.c
9050F: drivers/regulator/s2m*.c
9051F: drivers/regulator/s5m*.c
Krzysztof Kozlowskib40f0632015-05-06 14:19:36 +09009052F: drivers/clk/clk-s2mps11.c
9053F: drivers/rtc/rtc-s5m.c
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09009054F: include/linux/mfd/samsung/
Krzysztof Kozlowskib40f0632015-05-06 14:19:36 +09009055F: Documentation/devicetree/bindings/regulator/s5m8767-regulator.txt
9056F: Documentation/devicetree/bindings/mfd/s2mp*.txt
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09009057
Sylwester Nawrocki038f5c42013-05-28 18:26:20 -03009058SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
9059M: Kyungmin Park <kyungmin.park@samsung.com>
9060M: Sylwester Nawrocki <s.nawrocki@samsung.com>
9061L: linux-media@vger.kernel.org
9062Q: https://patchwork.linuxtv.org/project/linux-media/list/
9063S: Supported
9064F: drivers/media/platform/exynos4-is/
Sylwester Nawrocki038f5c42013-05-28 18:26:20 -03009065
Sylwester Nawrocki6fd86ab2012-11-15 18:05:15 -03009066SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
9067M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
9068L: linux-media@vger.kernel.org
9069L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9070S: Maintained
9071F: drivers/media/platform/s3c-camif/
9072F: include/media/s3c_camif.h
9073
Andrzej Hajdab84ef242013-01-31 07:03:05 -03009074SAMSUNG S5C73M3 CAMERA DRIVER
9075M: Kyungmin Park <kyungmin.park@samsung.com>
9076M: Andrzej Hajda <a.hajda@samsung.com>
9077L: linux-media@vger.kernel.org
9078S: Supported
9079F: drivers/media/i2c/s5c73m3/*
9080
Andrzej Hajda7d4599372013-12-05 08:38:39 -03009081SAMSUNG S5K5BAF CAMERA DRIVER
9082M: Kyungmin Park <kyungmin.park@samsung.com>
9083M: Andrzej Hajda <a.hajda@samsung.com>
9084L: linux-media@vger.kernel.org
9085S: Supported
9086F: drivers/media/i2c/s5k5baf.c
9087
Robert Baldygac04c6742015-08-20 17:26:02 +02009088SAMSUNG S3FWRN5 NFC DRIVER
9089M: Robert Baldyga <r.baldyga@samsung.com>
9090L: linux-nfc@lists.01.org (moderated for non-subscribers)
9091S: Supported
9092F: drivers/nfc/s3fwrn5
9093
Tomasz Figa310e39c2013-11-09 03:17:34 +01009094SAMSUNG SOC CLOCK DRIVERS
Tomasz Figafea685e2014-08-26 16:30:53 +02009095M: Sylwester Nawrocki <s.nawrocki@samsung.com>
9096M: Tomasz Figa <tomasz.figa@gmail.com>
Tomasz Figa310e39c2013-11-09 03:17:34 +01009097S: Supported
9098L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9099F: drivers/clk/samsung/
9100
Byungho An66890ed2014-03-25 12:11:07 -07009101SAMSUNG SXGBE DRIVERS
9102M: Byungho An <bh74.an@samsung.com>
9103M: Girish K S <ks.giri@samsung.com>
Byungho An66890ed2014-03-25 12:11:07 -07009104M: Vipul Pandya <vipul.pandya@samsung.com>
9105S: Supported
9106L: netdev@vger.kernel.org
9107F: drivers/net/ethernet/samsung/sxgbe/
9108
Lukasz Majewski93c537a2015-02-24 16:31:28 +01009109SAMSUNG THERMAL DRIVER
9110M: Lukasz Majewski <l.majewski@samsung.com>
9111L: linux-pm@vger.kernel.org
9112L: linux-samsung-soc@vger.kernel.org
9113S: Supported
9114T: https://github.com/lmajewski/linux-samsung-thermal.git
9115F: drivers/thermal/samsung/
9116
Kamil Debskie296cd32014-08-21 11:33:37 +02009117SAMSUNG USB2 PHY DRIVER
9118M: Kamil Debski <k.debski@samsung.com>
9119L: linux-kernel@vger.kernel.org
9120S: Supported
9121F: Documentation/devicetree/bindings/phy/samsung-phy.txt
9122F: Documentation/phy/samsung-usb2.txt
9123F: drivers/phy/phy-exynos4210-usb2.c
9124F: drivers/phy/phy-exynos4x12-usb2.c
9125F: drivers/phy/phy-exynos5250-usb2.c
9126F: drivers/phy/phy-s5pv210-usb2.c
9127F: drivers/phy/phy-samsung-usb2.c
9128F: drivers/phy/phy-samsung-usb2.h
9129
Alan Coxca749e22011-03-18 13:56:14 +00009130SERIAL DRIVERS
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08009131M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Alan Coxca749e22011-03-18 13:56:14 +00009132L: linux-serial@vger.kernel.org
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08009133S: Maintained
Joe Perches14430812013-09-11 14:23:50 -07009134F: drivers/tty/serial/
Alan Coxca749e22011-03-18 13:56:14 +00009135
Viresh Kumaraecb7b62011-05-24 14:04:09 +05309136SYNOPSYS DESIGNWARE DMAC DRIVER
Viresh Kumarda899472015-07-17 16:23:50 -07009137M: Viresh Kumar <vireshk@kernel.org>
Viresh Kumar337ae472013-07-19 09:13:58 +05309138M: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05309139S: Maintained
Andy Shevchenko1fb200d2015-01-19 18:23:06 +02009140F: include/linux/dma/dw.h
Andy Shevchenko3d598f42014-08-19 20:29:12 +03009141F: include/linux/platform_data/dma-dw.h
Andy Shevchenko61a76492013-06-05 15:26:44 +03009142F: drivers/dma/dw/
Viresh Kumaraecb7b62011-05-24 14:04:09 +05309143
Lars Persson058999c2015-07-28 12:01:50 +02009144SYNOPSYS DESIGNWARE ETHERNET QOS 4.10a driver
9145M: Lars Persson <lars.persson@axis.com>
9146L: netdev@vger.kernel.org
9147S: Supported
9148F: Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt
9149F: drivers/net/ethernet/synopsys/dwc_eth_qos.c
9150
Wolfram Sangfc531d92015-10-15 15:50:15 +02009151SYNOPSYS DESIGNWARE I2C DRIVER
9152M: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9153M: Jarkko Nikula <jarkko.nikula@linux.intel.com>
9154M: Mika Westerberg <mika.westerberg@linux.intel.com>
9155L: linux-i2c@vger.kernel.org
9156S: Maintained
9157F: drivers/i2c/busses/i2c-designware-*
9158F: include/linux/platform_data/i2c-designware.h
9159
Seungwon Jeonf9e37132013-01-17 21:33:23 +09009160SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
9161M: Seungwon Jeon <tgih.jun@samsung.com>
9162M: Jaehoon Chung <jh80.chung@samsung.com>
9163L: linux-mmc@vger.kernel.org
9164S: Maintained
9165F: include/linux/mmc/dw_mmc.h
9166F: drivers/mmc/host/dw_mmc*
9167
Andreas Noever1db121d2014-07-10 18:58:04 +02009168THUNDERBOLT DRIVER
9169M: Andreas Noever <andreas.noever@gmail.com>
9170S: Maintained
9171F: drivers/thunderbolt/
9172
John Stultz9222d242013-07-16 16:45:31 +02009173TIMEKEEPING, CLOCKSOURCE CORE, NTP
John Stultz50363732012-12-13 13:08:47 -05009174M: John Stultz <john.stultz@linaro.org>
Thomas Gleixner88606e82010-12-14 21:37:13 +01009175M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar981c3a42014-01-21 10:59:20 +01009176L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01009177T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01009178S: Supported
9179F: include/linux/clocksource.h
9180F: include/linux/time.h
9181F: include/linux/timex.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009182F: include/uapi/linux/time.h
9183F: include/uapi/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01009184F: kernel/time/clocksource.c
9185F: kernel/time/time*.c
9186F: kernel/time/ntp.c
John Stultz7fe5f1c2015-03-11 17:40:15 -07009187F: tools/testing/selftests/timers/
Thomas Gleixner88606e82010-12-14 21:37:13 +01009188
Linus Torvalds1da177e2005-04-16 15:20:36 -07009189SC1200 WDT DRIVER
Jean Delvareb3006452013-11-12 15:08:56 -08009190M: Zwane Mwaikambo <zwanem@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009191S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009192F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07009193
9194SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01009195M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07009196M: Peter Zijlstra <peterz@infradead.org>
Ingo Molnar981c3a42014-01-21 10:59:20 +01009197L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01009198T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07009199S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09009200F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07009201F: include/linux/sched.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009202F: include/uapi/linux/sched.h
Peter Zijlstrac2eb5052013-10-02 11:49:47 +02009203F: include/linux/wait.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009204
Chen Liqin6bcf6732009-06-13 15:24:33 +08009205SCORE ARCHITECTURE
Lennox Wued386652013-09-26 01:41:22 +08009206M: Chen Liqin <liqin.linux@gmail.com>
Joe Perchesa2681a72009-10-26 16:49:43 -07009207M: Lennox Wu <lennox.wu@gmail.com>
Lennox Wued386652013-09-26 01:41:22 +08009208W: http://www.sunplus.com
Chen Liqin6bcf6732009-06-13 15:24:33 +08009209S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07009210F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08009211
Linus Torvalds1da177e2005-04-16 15:20:36 -07009212SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009213M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009214L: linux-scsi@vger.kernel.org
9215W: http://www.kernel.dk
9216S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009217F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009218
Roland Dreierfb50a832010-10-07 09:54:53 -07009219SCSI RDMA PROTOCOL (SRP) INITIATOR
Bart Van Assche3453bddb2015-02-06 15:27:56 +01009220M: Bart Van Assche <bart.vanassche@sandisk.com>
Roland Dreierfb50a832010-10-07 09:54:53 -07009221L: linux-rdma@vger.kernel.org
9222S: Supported
9223W: http://www.openfabrics.org
9224Q: http://patchwork.kernel.org/project/linux-rdma/list/
9225T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
9226F: drivers/infiniband/ulp/srp/
9227F: include/scsi/srp.h
9228
Linus Torvalds1da177e2005-04-16 15:20:36 -07009229SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009230M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009231L: linux-scsi@vger.kernel.org
Douglas Gilbert59ab3c92013-10-31 09:10:46 -04009232W: http://sg.danny.cz/sg
Linus Torvalds1da177e2005-04-16 15:20:36 -07009233S: Maintained
Douglas Gilbert59ab3c92013-10-31 09:10:46 -04009234F: Documentation/scsi/scsi-generic.txt
Joe Perches679655d2009-04-07 20:44:32 -07009235F: drivers/scsi/sg.c
9236F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009237
9238SCSI SUBSYSTEM
James Bottomley0351b8f2015-04-01 09:09:36 +00009239M: "James E.J. Bottomley" <JBottomley@odin.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009240L: linux-scsi@vger.kernel.org
James Bottomley0351b8f2015-04-01 09:09:36 +00009241T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07009242S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009243F: drivers/scsi/
9244F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009245
9246SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009247M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009248L: linux-scsi@vger.kernel.org
9249S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009250F: Documentation/scsi/st.txt
Jean Delvaref7269cf2013-07-03 15:05:08 -07009251F: drivers/scsi/st.*
9252F: drivers/scsi/st_*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009253
9254SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00009255M: Vlad Yasevich <vyasevich@gmail.com>
Neil Horman02c38d02012-10-24 09:26:51 +00009256M: Neil Horman <nhorman@tuxdriver.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07009257L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07009258W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00009259S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009260F: Documentation/networking/sctp.txt
9261F: include/linux/sctp.h
Daniel Borkmann4d58c022013-07-23 14:51:48 +02009262F: include/uapi/linux/sctp.h
Joe Perches679655d2009-04-07 20:44:32 -07009263F: include/net/sctp/
9264F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009265
9266SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07009267M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07009268S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07009269F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07009270F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07009271F: drivers/watchdog/scx200_wdt.c
9272F: drivers/i2c/busses/scx200*
9273F: drivers/mtd/maps/scx200_docflash.c
9274F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07009275
9276SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009277M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07009278S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009279F: drivers/char/scx200_gpio.c
9280F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07009281
9282SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009283M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07009284S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009285F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07009286
Sascha Sommer6a369132008-07-15 14:21:29 +02009287SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009288M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02009289L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
9290S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009291F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02009292
Randy Dunlape7839f22008-10-12 16:11:45 -07009293SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Joe Perches7a241d62009-10-26 16:49:42 -07009294L: linux-mmc@vger.kernel.org
Ulf Hanssona1cb1d12015-03-13 13:39:03 +01009295S: Orphan
Joe Perches7a241d62009-10-26 16:49:42 -07009296F: drivers/mmc/host/sdhci.*
Joe Perchesd4a45782012-01-10 15:08:54 -08009297F: drivers/mmc/host/sdhci-pltfm.[ch]
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009298
Kees Cookc04f9d62014-07-18 11:28:33 -07009299SECURE COMPUTING
9300M: Kees Cook <keescook@chromium.org>
Kees Cooka0cfd752014-08-12 15:41:17 -07009301R: Andy Lutomirski <luto@amacapital.net>
9302R: Will Drewry <wad@chromium.org>
Kees Cookc04f9d62014-07-18 11:28:33 -07009303T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
9304S: Supported
9305F: kernel/seccomp.c
9306F: include/uapi/linux/seccomp.h
9307F: include/linux/seccomp.h
Kees Cookc99ee512015-06-16 10:54:14 -07009308F: tools/testing/selftests/seccomp/*
Kees Cookc04f9d62014-07-18 11:28:33 -07009309K: \bsecure_computing
9310K: \bTIF_SECCOMP\b
9311
Ben Dooks0d1bb412009-06-14 13:52:37 +01009312SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009313M: Ben Dooks <ben-linux@fluff.org>
Ulf Hanssondc524882015-03-20 10:15:29 +01009314M: Jaehoon Chung <jh80.chung@samsung.com>
Joe Perches7a241d62009-10-26 16:49:42 -07009315L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01009316S: Maintained
Ulf Hanssondc524882015-03-20 10:15:29 +01009317F: drivers/mmc/host/sdhci-s3c*
Ben Dooks0d1bb412009-06-14 13:52:37 +01009318
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07009319SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Viresh Kumarda899472015-07-17 16:23:50 -07009320M: Viresh Kumar <vireshk@kernel.org>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07009321L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07009322L: linux-mmc@vger.kernel.org
9323S: Maintained
9324F: drivers/mmc/host/sdhci-spear.c
9325
James Morris8711cca2008-12-04 03:19:45 +11009326SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11009327M: James Morris <james.l.morris@oracle.com>
Joe Perches9c3646d2015-06-25 15:02:00 -07009328M: "Serge E. Hallyn" <serge@hallyn.com>
James Morris8711cca2008-12-04 03:19:45 +11009329L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11009330T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10009331W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11009332S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07009333F: security/
James Morris8711cca2008-12-04 03:19:45 +11009334
Linus Torvalds1da177e2005-04-16 15:20:36 -07009335SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07009336M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009337S: Supported
9338
9339SELINUX SECURITY MODULE
Paul Moore5a5f2ac2013-09-18 13:14:04 -04009340M: Paul Moore <paul@paul-moore.com>
Paul Mooree0238b42014-02-06 07:51:54 -05009341M: Stephen Smalley <sds@tycho.nsa.gov>
9342M: Eric Paris <eparis@parisplace.org>
9343L: selinux@tycho.nsa.gov (moderated for non-subscribers)
Stephen Smalleyf0589252008-09-11 09:20:26 -04009344W: http://selinuxproject.org
Paul Moore5a5f2ac2013-09-18 13:14:04 -04009345T: git git://git.infradead.org/users/pcmoore/selinux
Linus Torvalds1da177e2005-04-16 15:20:36 -07009346S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009347F: include/linux/selinux*
9348F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04009349F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009350
John Johansenc1c124e2010-07-29 14:48:09 -07009351APPARMOR SECURITY MODULE
9352M: John Johansen <john.johansen@canonical.com>
9353L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
9354W: apparmor.wiki.kernel.org
9355T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
9356S: Supported
9357F: security/apparmor/
9358
Kees Cook730daa12015-07-23 18:02:48 -07009359YAMA SECURITY MODULE
9360M: Kees Cook <keescook@chromium.org>
9361T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
9362S: Supported
9363F: security/yama/
9364
Jiri Slabycef2cf02007-05-08 00:31:45 -07009365SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07009366M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07009367S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009368F: drivers/misc/phantom.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009369F: include/uapi/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07009370
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05309371SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Minh Tran4627de92015-05-14 23:16:17 -07009372M: Jayamohan Kallickal <jayamohan.kallickal@avagotech.com>
9373M: Minh Tran <minh.tran@avagotech.com>
9374M: John Soni Jose <sony.john-n@avagotech.com>
Joe Perches3387f652009-11-11 14:26:11 -08009375L: linux-scsi@vger.kernel.org
Minh Tran4627de92015-05-14 23:16:17 -07009376W: http://www.avagotech.com
Joe Perches3387f652009-11-11 14:26:11 -08009377S: Supported
9378F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05309379
Sathya Perla6938f852015-05-12 02:13:50 -04009380Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER
9381M: Sathya Perla <sathya.perla@avagotech.com>
9382M: Ajit Khaparde <ajit.khaparde@avagotech.com>
9383M: Padmanabh Ratnakar <padmanabh.ratnakar@avagotech.com>
9384M: Sriharsha Basavapatna <sriharsha.basavapatna@avagotech.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07009385L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08009386W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07009387S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07009388F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07009389
Selvin Xavierd2928a82015-03-15 00:09:41 +05309390EMULEX ONECONNECT ROCE DRIVER
Laurent Navet2b8e7332015-06-30 14:59:33 -07009391M: Selvin Xavier <selvin.xavier@avagotech.com>
9392M: Devesh Sharma <devesh.sharma@avagotech.com>
9393M: Mitesh Ahuja <mitesh.ahuja@avagotech.com>
Selvin Xavierd2928a82015-03-15 00:09:41 +05309394L: linux-rdma@vger.kernel.org
9395W: http://www.emulex.com
9396S: Supported
9397F: drivers/infiniband/hw/ocrdma/
9398
Ben Hutchings8ceee662008-04-27 12:55:59 +01009399SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00009400M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Shradha Shah8533ccf2014-01-23 13:19:55 +00009401M: Shradha Shah <sshah@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +00009402L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01009403S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07009404F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01009405
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009406SGI GRU DRIVER
Bjorn Helgaascc883af2013-01-29 15:48:37 -07009407M: Dimitri Sivanich <sivanich@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009408S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009409F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009410
9411SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009412M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009413L: linux-ia64@vger.kernel.org
9414S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009415F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08009416F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07009417F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009418
Jack Steiner75312612008-08-15 00:40:42 -07009419SGI XP/XPC/XPNET DRIVER
Robin Holte1803832013-08-16 18:01:42 -05009420M: Cliff Whickman <cpw@sgi.com>
9421M: Robin Holt <robinmholt@gmail.com>
Jack Steiner75312612008-08-15 00:40:42 -07009422S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009423F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07009424
Antti Palosaari46eacf32014-04-15 06:21:03 -03009425SI2157 MEDIA DRIVER
9426M: Antti Palosaari <crope@iki.fi>
9427L: linux-media@vger.kernel.org
9428W: http://linuxtv.org/
9429W: http://palosaari.fi/linux/
9430Q: http://patchwork.linuxtv.org/project/linux-media/list/
9431T: git git://linuxtv.org/anttip/media_tree.git
9432S: Maintained
9433F: drivers/media/tuners/si2157*
9434
Antti Palosaari75e2d5b2014-04-15 06:17:53 -03009435SI2168 MEDIA DRIVER
9436M: Antti Palosaari <crope@iki.fi>
9437L: linux-media@vger.kernel.org
9438W: http://linuxtv.org/
9439W: http://palosaari.fi/linux/
9440Q: http://patchwork.linuxtv.org/project/linux-media/list/
9441T: git git://linuxtv.org/anttip/media_tree.git
9442S: Maintained
9443F: drivers/media/dvb-frontends/si2168*
9444
Hans Verkuil49cc6292012-11-30 07:13:29 -03009445SI470X FM RADIO RECEIVER I2C DRIVER
9446M: Hans Verkuil <hverkuil@xs4all.nl>
9447L: linux-media@vger.kernel.org
9448T: git git://linuxtv.org/media_tree.git
9449W: http://linuxtv.org
9450S: Odd Fixes
9451F: drivers/media/radio/si470x/radio-si470x-i2c.c
9452
9453SI470X FM RADIO RECEIVER USB DRIVER
9454M: Hans Verkuil <hverkuil@xs4all.nl>
9455L: linux-media@vger.kernel.org
9456T: git git://linuxtv.org/media_tree.git
9457W: http://linuxtv.org
9458S: Maintained
9459F: drivers/media/radio/si470x/radio-si470x-common.c
9460F: drivers/media/radio/si470x/radio-si470x.h
9461F: drivers/media/radio/si470x/radio-si470x-usb.c
9462
Eduardo Valentinc937ca02013-02-27 10:37:39 -03009463SI4713 FM RADIO TRANSMITTER I2C DRIVER
9464M: Eduardo Valentin <edubezval@gmail.com>
9465L: linux-media@vger.kernel.org
9466T: git git://linuxtv.org/media_tree.git
9467W: http://linuxtv.org
9468S: Odd Fixes
Dinesh Ram99995de2013-10-15 12:24:43 -03009469F: drivers/media/radio/si4713/si4713.?
Eduardo Valentinc937ca02013-02-27 10:37:39 -03009470
9471SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
9472M: Eduardo Valentin <edubezval@gmail.com>
9473L: linux-media@vger.kernel.org
9474T: git git://linuxtv.org/media_tree.git
9475W: http://linuxtv.org
9476S: Odd Fixes
Dinesh Ram99995de2013-10-15 12:24:43 -03009477F: drivers/media/radio/si4713/radio-platform-si4713.c
9478
9479SI4713 FM RADIO TRANSMITTER USB DRIVER
9480M: Hans Verkuil <hverkuil@xs4all.nl>
9481L: linux-media@vger.kernel.org
9482T: git git://linuxtv.org/media_tree.git
9483W: http://linuxtv.org
9484S: Maintained
9485F: drivers/media/radio/si4713/radio-usb-si4713.c
Eduardo Valentinc937ca02013-02-27 10:37:39 -03009486
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03009487SIANO DVB DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02009488M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03009489L: linux-media@vger.kernel.org
9490W: http://linuxtv.org
9491T: git git://linuxtv.org/media_tree.git
9492S: Odd fixes
9493F: drivers/media/common/siano/
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03009494F: drivers/media/usb/siano/
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03009495F: drivers/media/usb/siano/
Joe Perches14430812013-09-11 14:23:50 -07009496F: drivers/media/mmc/siano/
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03009497
Hans de Goede6f15b602014-11-14 13:26:46 +01009498SIMPLEFB FB DRIVER
9499M: Hans de Goede <hdegoede@redhat.com>
9500L: linux-fbdev@vger.kernel.org
9501S: Maintained
9502F: Documentation/devicetree/bindings/video/simple-framebuffer.txt
9503F: drivers/video/fbdev/simplefb.c
9504F: include/linux/platform_data/simplefb.h
9505
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03009506SH_VEU V4L2 MEM2MEM DRIVER
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03009507L: linux-media@vger.kernel.org
Guennadi Liakhovetskibb60fcb2013-11-24 17:44:08 -03009508S: Orphan
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03009509F: drivers/media/platform/sh_veu.c
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03009510
9511SH_VOU V4L2 OUTPUT DRIVER
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03009512L: linux-media@vger.kernel.org
Guennadi Liakhovetskibb60fcb2013-11-24 17:44:08 -03009513S: Orphan
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03009514F: drivers/media/platform/sh_vou.c
9515F: include/media/sh_vou.h
9516
Len Brown6349d992009-08-14 15:07:14 -04009517SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07009518M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04009519L: sfi-devel@simplefirmware.org
9520W: http://simplefirmware.org/
9521T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009522S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07009523F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04009524F: drivers/sfi/
9525F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009526
Linus Torvalds1da177e2005-04-16 15:20:36 -07009527SIMTEC EB110ATX (Chalice CATS)
9528P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08009529P: Vincent Sanders <vince@simtec.co.uk>
9530M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009531W: http://www.simtec.co.uk/products/EB110ATX/
9532S: Supported
9533
9534SIMTEC EB2410ITX (BAST)
9535P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08009536P: Vincent Sanders <vince@simtec.co.uk>
9537M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009538W: http://www.simtec.co.uk/products/EB2410ITX/
9539S: Supported
Joe Perches15dba382013-09-11 14:23:36 -07009540F: arch/arm/mach-s3c24xx/mach-bast.c
9541F: arch/arm/mach-s3c24xx/bast-ide.c
9542F: arch/arm/mach-s3c24xx/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07009543
Kevin Hilman4c5adde2009-06-19 12:02:33 -07009544TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08009545M: Sekhar Nori <nsekhar@ti.com>
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08009546M: Kevin Hilman <khilman@deeprootsystems.com>
Sekhar Noric9f46a82012-01-27 21:12:20 +05309547T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -08009548Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07009549S: Supported
Joe Perches14430812013-09-11 14:23:50 -07009550F: arch/arm/mach-davinci/
Jean Delvare046d0a32012-01-12 20:32:05 +01009551F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -07009552
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03009553TI DAVINCI SERIES MEDIA DRIVER
Joe Perchese43cdb52015-06-25 15:02:03 -07009554M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03009555L: linux-media@vger.kernel.org
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03009556W: http://linuxtv.org/
9557Q: http://patchwork.linuxtv.org/project/linux-media/list/
9558T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
Lad, Prabhakar9ce5eca2013-04-15 01:32:44 -03009559S: Maintained
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03009560F: drivers/media/platform/davinci/
9561F: include/media/davinci/
9562
Benoit Parrot417d2e52014-12-09 16:43:44 -03009563TI AM437X VPFE DRIVER
Joe Perchese43cdb52015-06-25 15:02:03 -07009564M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
Benoit Parrot417d2e52014-12-09 16:43:44 -03009565L: linux-media@vger.kernel.org
9566W: http://linuxtv.org/
9567Q: http://patchwork.linuxtv.org/project/linux-media/list/
9568T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9569S: Maintained
9570F: drivers/media/platform/am437x/
9571
Benoit Parrotc4c02832015-03-20 18:03:52 -03009572OV2659 OMNIVISION SENSOR DRIVER
Joe Perchese43cdb52015-06-25 15:02:03 -07009573M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
Benoit Parrotc4c02832015-03-20 18:03:52 -03009574L: linux-media@vger.kernel.org
9575W: http://linuxtv.org/
9576Q: http://patchwork.linuxtv.org/project/linux-media/list/
9577T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9578S: Maintained
9579F: drivers/media/i2c/ov2659.c
9580F: include/media/ov2659.h
9581
Sudip Mukherjee3a6779f2015-08-07 18:31:15 +05309582SILICON MOTION SM712 FRAME BUFFER DRIVER
9583M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
9584M: Teddy Wang <teddy.wang@siliconmotion.com>
9585M: Sudip Mukherjee <sudip@vectorindia.org>
9586L: linux-fbdev@vger.kernel.org
9587S: Maintained
9588F: drivers/video/fbdev/sm712*
9589F: Documentation/fb/sm712fb.txt
9590
Francois Romieu92aab3c2005-07-30 13:11:18 +02009591SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009592M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02009593L: netdev@vger.kernel.org
9594S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07009595F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02009596
Linus Torvalds1da177e2005-04-16 15:20:36 -07009597SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009598M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009599W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07009600L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07009601S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07009602F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009603
9604SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009605M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009606W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03009607S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009608F: Documentation/fb/sisfb.txt
Jingoo Han8a61f012014-07-01 15:36:01 +09009609F: drivers/video/fbdev/sis/
Joe Perches679655d2009-04-07 20:44:32 -07009610F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009611
9612SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009613M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009614W: http://www.winischhofer.at/linuxsisusbvga.shtml
9615S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009616F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009617
Christoph Lameter415ad262007-07-26 10:40:56 -07009618SLAB ALLOCATOR
Christoph Lameter16e943b2014-06-23 13:22:03 -07009619M: Christoph Lameter <cl@linux.com>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02009620M: Pekka Enberg <penberg@kernel.org>
Christoph Lameter16e943b2014-06-23 13:22:03 -07009621M: David Rientjes <rientjes@google.com>
9622M: Joonsoo Kim <iamjoonsoo.kim@lge.com>
9623M: Andrew Morton <akpm@linux-foundation.org>
Christoph Lameter415ad262007-07-26 10:40:56 -07009624L: linux-mm@kvack.org
9625S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009626F: include/linux/sl?b*.h
Christoph Lameter16e943b2014-06-23 13:22:03 -07009627F: mm/sl?b*
Christoph Lameter415ad262007-07-26 10:40:56 -07009628
Paul E. McKenney9fab97872012-05-07 09:36:34 -07009629SLEEPABLE READ-COPY UPDATE (SRCU)
Lai Jiangshan96a39bc2015-07-01 15:26:27 +08009630M: Lai Jiangshan <jiangshanlai@gmail.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -07009631M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyab0afd62014-06-03 08:17:06 -07009632M: Josh Triplett <josh@joshtriplett.org>
Paul E. McKenney4632a192014-05-30 15:37:24 -07009633R: Steven Rostedt <rostedt@goodmis.org>
9634R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +01009635L: linux-kernel@vger.kernel.org
Paul E. McKenney9fab97872012-05-07 09:36:34 -07009636W: http://www.rdrop.com/users/paulmck/RCU/
9637S: Supported
9638T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenney4102ada2013-10-08 20:23:47 -07009639F: include/linux/srcu.h
9640F: kernel/rcu/srcu.c
Paul E. McKenney9fab97872012-05-07 09:36:34 -07009641
Casey Schaufler66372842012-05-23 18:34:52 -07009642SMACK SECURITY MODULE
9643M: Casey Schaufler <casey@schaufler-ca.com>
9644L: linux-security-module@vger.kernel.org
9645W: http://schaufler-ca.com
9646T: git git://git.gitorious.org/smack-next/kernel.git
9647S: Maintained
9648F: Documentation/security/Smack.txt
9649F: security/smack/
9650
Kevin Hilman20651e02014-09-24 16:30:00 -07009651DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
Kevin Hilman68ace3e2013-08-06 16:57:14 -07009652M: Kevin Hilman <khilman@kernel.org>
9653M: Nishanth Menon <nm@ti.com>
9654S: Maintained
Kevin Hilman20651e02014-09-24 16:30:00 -07009655F: drivers/power/avs/
Kevin Hilman68ace3e2013-08-06 16:57:14 -07009656F: include/linux/power/smartreflex.h
9657L: linux-pm@vger.kernel.org
9658
Linus Torvalds1da177e2005-04-16 15:20:36 -07009659SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04009660M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04009661S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -07009662F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009663
Sakari Ailuse8e31622012-11-12 18:14:39 -03009664SMIA AND SMIA++ IMAGE SENSOR DRIVER
9665M: Sakari Ailus <sakari.ailus@iki.fi>
9666L: linux-media@vger.kernel.org
9667S: Maintained
Joe Perches14430812013-09-11 14:23:50 -07009668F: drivers/media/i2c/smiapp/
Sakari Ailuse8e31622012-11-12 18:14:39 -03009669F: include/media/smiapp.h
9670F: drivers/media/i2c/smiapp-pll.c
9671F: drivers/media/i2c/smiapp-pll.h
Sakari Ailusfd2bfdc2014-11-16 12:08:44 -03009672F: include/uapi/linux/smiapp.h
Sakari Ailusa2cec3c2014-11-06 18:16:13 -03009673F: Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
Sakari Ailuse8e31622012-11-12 18:14:39 -03009674
Guenter Roeck920fa1f2010-08-09 17:21:06 -07009675SMM665 HARDWARE MONITOR DRIVER
9676M: Guenter Roeck <linux@roeck-us.net>
9677L: lm-sensors@lm-sensors.org
9678S: Maintained
9679F: Documentation/hwmon/smm665
9680F: drivers/hwmon/smm665.c
9681
Steve Glendinning9df73052010-08-14 21:08:54 +02009682SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01009683M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning9df73052010-08-14 21:08:54 +02009684L: lm-sensors@lm-sensors.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01009685S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +02009686F: Documentation/hwmon/emc2103
9687F: drivers/hwmon/emc2103.c
9688
Hans de Goedea98d5062011-03-21 17:59:36 +01009689SMSC SCH5627 HARDWARE MONITOR DRIVER
9690M: Hans de Goede <hdegoede@redhat.com>
9691L: lm-sensors@lm-sensors.org
9692S: Supported
9693F: Documentation/hwmon/sch5627
9694F: drivers/hwmon/sch5627.c
9695
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04009696SMSC47B397 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07009697M: Jean Delvare <jdelvare@suse.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04009698L: lm-sensors@lm-sensors.org
9699S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009700F: Documentation/hwmon/smsc47b397
9701F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04009702
Steve Glendinningfd9abb32008-11-05 00:35:37 +00009703SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01009704M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00009705L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01009706S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009707F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -07009708F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00009709
Steve Glendinning2cb37722008-12-11 20:54:30 -08009710SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01009711M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -08009712L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01009713S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -07009714F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08009715
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01009716SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01009717M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01009718L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01009719S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09009720F: drivers/video/fbdev/smscufx.c
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01009721
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03009722SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07009723M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03009724L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02009725T: git git://linuxtv.org/media_tree.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02009726S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03009727F: include/media/soc*
9728F: drivers/media/i2c/soc_camera/
9729F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03009730
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009731SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07009732M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009733S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009734F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009735
Joe Perchese3994db2014-07-30 00:38:42 -03009736SOFTLOGIC 6x10 MPEG CODEC
Andrey Utkin9661975d2014-11-17 13:59:23 -03009737M: Bluecherry Maintainers <maintainers@bluecherrydvr.com>
9738M: Andrey Utkin <andrey.utkin@corp.bluecherry.net>
9739M: Andrey Utkin <andrey.krieger.utkin@gmail.com>
Ismael Luceno1f141f62015-01-20 11:43:50 -03009740M: Ismael Luceno <ismael@iodev.co.uk>
Joe Perchese3994db2014-07-30 00:38:42 -03009741L: linux-media@vger.kernel.org
9742S: Supported
9743F: drivers/media/pci/solo6x10/
9744
Linus Torvalds1da177e2005-04-16 15:20:36 -07009745SOFTWARE RAID (Multiple Disks) SUPPORT
Jiri Slabyd8130622015-07-17 16:23:20 -07009746M: Neil Brown <neilb@suse.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009747L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08009748S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009749F: drivers/md/
9750F: include/linux/raid/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009751F: include/uapi/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009752
Linus Torvalds1da177e2005-04-16 15:20:36 -07009753SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009754M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07009755L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07009756S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07009757F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009758
Michael Buesch61e115a2007-09-18 15:12:50 -04009759SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +02009760M: Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04009761L: netdev@vger.kernel.org
9762S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009763F: drivers/ssb/
9764F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04009765
Linus Torvalds1da177e2005-04-16 15:20:36 -07009766SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009767M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd09448532010-02-11 10:40:13 -05009768L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01009769W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07009770S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009771F: Documentation/laptops/sony-laptop.txt
9772F: drivers/char/sonypi.c
9773F: drivers/platform/x86/sony-laptop.c
9774F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009775
Alex Dubovbaf85322008-02-09 10:20:54 -08009776SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07009777M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08009778W: http://tifmxx.berlios.de/
9779S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009780F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08009781
Maxim Levitsky0ab30492013-09-11 14:26:02 -07009782SONY MEMORYSTICK STANDARD SUPPORT
9783M: Maxim Levitsky <maximlevitsky@gmail.com>
9784S: Maintained
9785F: drivers/memstick/core/ms_block.*
9786
Linus Torvalds1da177e2005-04-16 15:20:36 -07009787SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07009788M: Jaroslav Kysela <perex@perex.cz>
Jiri Slabyd8130622015-07-17 16:23:20 -07009789M: Takashi Iwai <tiwai@suse.com>
Joe Perches93711662009-06-16 15:34:07 -07009790L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07009791W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +02009792T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -07009793T: git git://git.alsa-project.org/alsa-kernel.git
Takashi Iwaiff4a8f32014-05-13 14:55:51 +02009794Q: http://patchwork.kernel.org/project/alsa-devel/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009795S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07009796F: Documentation/sound/
9797F: include/sound/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009798F: include/uapi/sound/
Joe Perches679655d2009-04-07 20:44:32 -07009799F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009800
Mark Brown33bbe142013-08-09 18:10:50 +01009801SOUND - COMPRESSED AUDIO
9802M: Vinod Koul <vinod.koul@intel.com>
9803L: alsa-devel@alsa-project.org (moderated for non-subscribers)
9804T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
9805S: Supported
Vinod Koulf672f312013-08-12 11:15:27 +05309806F: Documentation/sound/alsa/compress_offload.txt
Mark Brown33bbe142013-08-09 18:10:50 +01009807F: include/sound/compress_driver.h
Vinod Koulf672f312013-08-12 11:15:27 +05309808F: include/uapi/sound/compress_*
Mark Brown33bbe142013-08-09 18:10:50 +01009809F: sound/core/compress_offload.c
9810F: sound/soc/soc-compress.c
9811
Mark Brownbd903bd2008-11-19 19:16:05 +00009812SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood6b9cf5c2013-01-15 15:13:27 +00009813M: Liam Girdwood <lgirdwood@gmail.com>
Mark Brownb02e48f2013-04-12 11:39:57 +01009814M: Mark Brown <broonie@kernel.org>
Mark Brown86f14df2011-11-02 21:36:32 +00009815T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -07009816L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01009817W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02009818S: Supported
Mark Brown2820f612013-08-11 19:35:11 +01009819F: Documentation/sound/alsa/soc/
Joe Perches679655d2009-04-07 20:44:32 -07009820F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01009821F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02009822
Mark Brownd7f87612013-10-19 14:33:54 +01009823SOUND - DMAENGINE HELPERS
9824M: Lars-Peter Clausen <lars@metafoo.de>
9825S: Supported
9826F: include/sound/dmaengine_pcm.h
9827F: sound/core/pcm_dmaengine.c
9828F: sound/soc/soc-generic-dmaengine-pcm.c
9829
Olli Salonen990a6a92014-08-22 13:50:42 -03009830SP2 MEDIA DRIVER
9831M: Olli Salonen <olli.salonen@iki.fi>
9832L: linux-media@vger.kernel.org
9833W: http://linuxtv.org/
9834Q: http://patchwork.linuxtv.org/project/linux-media/list/
9835S: Maintained
9836F: drivers/media/dvb-frontends/sp2*
9837
Sam Ravnborg473321f2009-01-04 15:47:49 -08009838SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07009839M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009840L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08009841Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -07009842T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
9843T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07009844S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009845F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07009846F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009847
David S. Miller6404fcc2010-03-16 01:00:17 -07009848SPARC SERIAL DRIVERS
9849M: "David S. Miller" <davem@davemloft.net>
9850L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07009851T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
9852T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -07009853S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -05009854F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08009855F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08009856F: drivers/tty/serial/sunhv.c
9857F: drivers/tty/serial/sunsab.c
9858F: drivers/tty/serial/sunsab.h
9859F: drivers/tty/serial/sunsu.c
9860F: drivers/tty/serial/sunzilog.c
9861F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -07009862
Christopher Li389325b2012-04-05 14:25:14 -07009863SPARSE CHECKER
9864M: "Christopher Li" <sparse@chrisli.org>
9865L: linux-sparse@vger.kernel.org
9866W: https://sparse.wiki.kernel.org/
9867T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
9868T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
9869S: Maintained
9870F: include/linux/compiler.h
9871
viresh kumarfc0c1952010-04-01 12:31:21 +01009872SPEAR PLATFORM SUPPORT
Viresh Kumarda899472015-07-17 16:23:50 -07009873M: Viresh Kumar <vireshk@kernel.org>
Viresh Kumar9cc23682014-04-18 15:07:16 -07009874M: Shiraz Hashim <shiraz.linux.kernel@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07009875L: spear-devel@list.st.com
9876L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01009877W: http://www.st.com/spear
9878S: Maintained
Joe Perches281e1922013-09-11 14:23:37 -07009879F: arch/arm/mach-spear/
viresh kumarfc0c1952010-04-01 12:31:21 +01009880
9881SPEAR CLOCK FRAMEWORK SUPPORT
Viresh Kumarda899472015-07-17 16:23:50 -07009882M: Viresh Kumar <vireshk@kernel.org>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07009883L: spear-devel@list.st.com
9884L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01009885W: http://www.st.com/spear
9886S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +05309887F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +01009888
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009889SPI SUBSYSTEM
Mark Brownb02e48f2013-04-12 11:39:57 +01009890M: Mark Brown <broonie@kernel.org>
Mark Browndfbe4032013-05-17 13:12:52 +01009891L: linux-spi@vger.kernel.org
Mark Browne7e4e132013-04-18 18:18:47 +01009892T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
Joe Perches8a6e2532010-03-05 13:43:11 -08009893Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009894S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009895F: Documentation/spi/
9896F: drivers/spi/
9897F: include/linux/spi/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009898F: include/uapi/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009899
Jim Lewis2752e4012006-09-29 02:01:19 -07009900SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07009901M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
Jim Lewis2752e4012006-09-29 02:01:19 -07009902L: netdev@vger.kernel.org
9903S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009904F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -07009905F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e4012006-09-29 02:01:19 -07009906
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009907SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07009908M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10009909L: linuxppc-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009910W: http://www.ibm.com/developerworks/power/cell/
9911S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009912F: Documentation/filesystems/spufs.txt
9913F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009914
Phillip Lougherfc555842009-01-05 08:46:29 +00009915SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +01009916M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00009917L: squashfs-devel@lists.sourceforge.net (subscribers-only)
9918W: http://squashfs.org.uk
9919S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009920F: Documentation/filesystems/squashfs.txt
9921F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00009922
Linus Torvalds1da177e2005-04-16 15:20:36 -07009923SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07009924M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009925S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009926F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07009927
Linus Torvalds26e9a392008-10-17 09:50:12 -07009928STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -08009929M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -08009930L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -08009931S: Supported
Greg Kroah-Hartman7b175c42013-06-18 12:58:12 -07009932F: Documentation/stable_kernel_rules.txt
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009933
Linus Torvalds26e9a392008-10-17 09:50:12 -07009934STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08009935M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -07009936T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07009937L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -08009938S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009939F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07009940
Joe Perchesebd3d012011-07-05 09:42:02 -07009941STAGING - COMEDI
9942M: Ian Abbott <abbotti@mev.co.uk>
Lidza Louina81b884c2013-07-24 11:29:33 -04009943M: H Hartley Sweeten <hsweeten@visionengravers.com>
Joe Perchesebd3d012011-07-05 09:42:02 -07009944S: Odd Fixes
9945F: drivers/staging/comedi/
9946
Joe Perchesa0138162011-07-05 15:21:34 -07009947STAGING - FLARION FT1000 DRIVERS
9948M: Marek Belisko <marek.belisko@gmail.com>
9949S: Odd Fixes
9950F: drivers/staging/ft1000/
9951
Joe Perches6c1bb422011-07-05 09:42:07 -07009952STAGING - INDUSTRIAL IO
Sachin Kamat030a13d2013-09-11 11:00:00 +01009953M: Jonathan Cameron <jic23@kernel.org>
Joe Perchesa0138162011-07-05 15:21:34 -07009954L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -07009955S: Odd Fixes
9956F: drivers/staging/iio/
9957
Joe Perchesa0138162011-07-05 15:21:34 -07009958STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
9959M: Jarod Wilson <jarod@wilsonet.com>
9960W: http://www.lirc.org/
9961S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08009962F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -07009963
Oleg Drokinf5e5de12014-08-15 12:48:14 -04009964STAGING - LUSTRE PARALLEL FILESYSTEM
9965M: Oleg Drokin <oleg.drokin@intel.com>
9966M: Andreas Dilger <andreas.dilger@intel.com>
Andreas Dilgerd98229f2015-08-24 11:11:49 -04009967L: lustre-devel@lists.lustre.org (moderated for non-subscribers)
9968W: http://wiki.lustre.org/
Oleg Drokinf5e5de12014-08-15 12:48:14 -04009969S: Maintained
9970F: drivers/staging/lustre
9971
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02009972STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
9973M: Marc Dietrich <marvin24@gmx.de>
9974L: ac100@lists.launchpad.net (moderated for non-subscribers)
Stephen Warren5d96bf42013-02-27 17:02:54 -08009975L: linux-tegra@vger.kernel.org
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02009976S: Maintained
9977F: drivers/staging/nvec/
9978
Joe Perchesa0138162011-07-05 15:21:34 -07009979STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
Jens Frederich3140b452013-08-04 20:57:43 +02009980M: Jens Frederich <jfrederich@gmail.com>
9981M: Daniel Drake <dsd@laptop.org>
Joe Perchesa0138162011-07-05 15:21:34 -07009982M: Jon Nettleton <jon.nettleton@gmail.com>
9983W: http://wiki.laptop.org/go/DCON
Jens Frederich3140b452013-08-04 20:57:43 +02009984S: Maintained
Joe Perchesa0138162011-07-05 15:21:34 -07009985F: drivers/staging/olpc_dcon/
9986
9987STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
Joe Perches29e70172011-07-05 09:42:08 -07009988M: Willy Tarreau <willy@meta-x.org>
9989S: Odd Fixes
9990F: drivers/staging/panel/
9991
Joe Perchesa0138162011-07-05 15:21:34 -07009992STAGING - REALTEK RTL8712U DRIVERS
9993M: Larry Finger <Larry.Finger@lwfinger.net>
9994M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
9995S: Odd Fixes
9996F: drivers/staging/rtl8712/
9997
Jes Sorensen7591ba82014-04-26 18:54:48 +02009998STAGING - REALTEK RTL8723U WIRELESS DRIVER
9999M: Larry Finger <Larry.Finger@lwfinger.net>
10000M: Jes Sorensen <Jes.Sorensen@redhat.com>
10001L: linux-wireless@vger.kernel.org
10002S: Maintained
10003F: drivers/staging/rtl8723au/
10004
Sudip Mukherjee980ac4d2015-03-03 16:21:07 +053010005STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
10006M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10007M: Teddy Wang <teddy.wang@siliconmotion.com>
10008M: Sudip Mukherjee <sudip@vectorindia.org>
10009L: linux-fbdev@vger.kernel.org
10010S: Maintained
10011F: drivers/staging/sm750fb/
10012
Joe Perches510fa4082014-02-10 16:37:56 -080010013STAGING - SLICOSS
10014M: Lior Dotan <liodot@gmail.com>
10015M: Christopher Harrer <charrer@alacritech.com>
10016S: Odd Fixes
10017F: drivers/staging/slicoss/
10018
Joe Perchesa0138162011-07-05 15:21:34 -070010019STAGING - SPEAKUP CONSOLE SPEECH DRIVER
10020M: William Hubbs <w.d.hubbs@gmail.com>
10021M: Chris Brannon <chris@the-brannons.com>
William Hubbsd33bce32013-05-12 13:49:54 -050010022M: Kirk Reiser <kirk@reisers.ca>
Joe Perchesa0138162011-07-05 15:21:34 -070010023M: Samuel Thibault <samuel.thibault@ens-lyon.org>
Samuel Thibaulte6a152e2014-07-17 23:34:58 +020010024L: speakup@linux-speakup.org
Joe Perchesa0138162011-07-05 15:21:34 -070010025W: http://www.linux-speakup.org/
10026S: Odd Fixes
10027F: drivers/staging/speakup/
10028
Joe Perchesb3e871c2011-07-05 09:42:10 -070010029STAGING - VIA VT665X DRIVERS
10030M: Forest Bond <forest@alittletooquiet.net>
10031S: Odd Fixes
10032F: drivers/staging/vt665?/
10033
Johnny Kima30baec2015-05-11 14:30:57 +090010034STAGING - WILC1000 WIFI DRIVER
10035M: Johnny Kim <johnny.kim@atmel.com>
10036M: Rachel Kim <rachel.kim@atmel.com>
10037M: Dean Lee <dean.lee@atmel.com>
10038M: Chris Park <chris.park@atmel.com>
10039L: linux-wireless@vger.kernel.org
10040S: Supported
10041F: drivers/staging/wilc1000/
10042
Joe Perches709bcb02011-07-05 09:42:13 -070010043STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +020010044M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -070010045S: Odd Fixes
10046F: drivers/staging/xgifb/
10047
Mike Marciniszyn77241052015-07-30 15:17:43 -040010048HFI1 DRIVER
10049M: Mike Marciniszyn <infinipath@intel.com>
10050L: linux-rdma@vger.kernel.org
10051S: Supported
10052F: drivers/staging/rdma/hfi1
10053
Linus Torvalds1da177e2005-04-16 15:20:36 -070010054STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010055M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -070010056S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -070010057F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010058
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010059SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -070010060M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010061W: http://sammy.net/sun3/
10062S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010063F: arch/m68k/kernel/*sun3*
10064F: arch/m68k/sun3*/
10065F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -070010066F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010067
Hans de Goedeaf6a5af2014-12-18 09:24:50 -080010068SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
10069M: Hans de Goede <hdegoede@redhat.com>
10070L: linux-input@vger.kernel.org
10071S: Maintained
10072F: Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
10073F: drivers/input/keyboard/sun4i-lradc-keys.c
10074
Denis Kirjanov2bc9ff02013-08-17 09:08:49 +040010075SUNDANCE NETWORK DRIVER
10076M: Denis Kirjanov <kda@linux-powerpc.org>
10077L: netdev@vger.kernel.org
10078S: Maintained
10079F: drivers/net/ethernet/dlink/sundance.c
10080
Paul Mundt2cbb12a2007-11-19 13:08:37 +090010081SUPERH
Paul Mundt2cbb12a2007-11-19 13:08:37 +090010082L: linux-sh@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -080010083Q: http://patchwork.kernel.org/project/linux-sh/list/
Geert Uytterhoevendcaa57d2014-04-03 14:48:47 -070010084S: Orphan
Paul Mundt066069e2009-04-14 06:32:08 +090010085F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -070010086F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +090010087F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010088
Randy Dunlap4480f15b2008-10-12 16:11:58 -070010089SUSPEND TO RAM
Rafael J. Wysocki7fb06082014-03-20 03:34:47 +010010090M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Joe Perches8b58be82009-07-29 15:04:30 -070010091M: Len Brown <len.brown@intel.com>
10092M: Pavel Machek <pavel@ucw.cz>
WANG Congbf1c1382011-10-08 20:57:50 +020010093L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010094S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010095F: Documentation/power/
10096F: arch/x86/kernel/acpi/
10097F: drivers/base/power/
10098F: kernel/power/
10099F: include/linux/suspend.h
10100F: include/linux/freezer.h
10101F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070010102
10103SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -070010104M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010105L: linux-video@atrey.karlin.mff.cuni.cz
10106S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010107F: Documentation/svga.txt
10108F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010109
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -070010110SWIOTLB SUBSYSTEM
10111M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10112L: linux-kernel@vger.kernel.org
10113S: Supported
10114F: lib/swiotlb.c
10115F: arch/*/kernel/pci-swiotlb.c
10116F: include/linux/swiotlb.h
10117
Jiri Pirko007f7902014-11-28 14:34:17 +010010118SWITCHDEV
10119M: Jiri Pirko <jiri@resnulli.us>
10120L: netdev@vger.kernel.org
10121S: Supported
10122F: net/switchdev/
10123F: include/net/switchdev.h
10124
Vineet Guptadb8e35d2013-01-18 15:12:25 +053010125SYNOPSYS ARC ARCHITECTURE
10126M: Vineet Gupta <vgupta@synopsys.com>
Vineet Guptadb8e35d2013-01-18 15:12:25 +053010127S: Supported
10128F: arch/arc/
Vineet Gupta9b288292014-11-18 17:36:11 +053010129F: Documentation/devicetree/bindings/arc/*
Joe Perchesc6a0fe42013-09-11 14:23:45 -070010130F: drivers/tty/serial/arc_uart.c
Baruch Siachb7182d12015-08-11 12:08:32 +030010131T: git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
Vineet Guptadb8e35d2013-01-18 15:12:25 +053010132
Alexey Brodkin556cc1c2014-01-27 14:51:34 +010010133SYNOPSYS ARC SDP platform support
10134M: Alexey Brodkin <abrodkin@synopsys.com>
10135S: Supported
10136F: arch/arc/plat-axs10x
10137F: arch/arc/boot/dts/ax*
10138F: Documentation/devicetree/bindings/arc/axs10*
10139
Lee Jones6c284c92015-05-12 14:13:58 +010010140SYSTEM CONFIGURATION (SYSCON)
10141M: Lee Jones <lee.jones@linaro.org>
10142M: Arnd Bergmann <arnd@arndb.de>
10143T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
10144S: Supported
10145F: drivers/mfd/syscon.c
10146
Linus Torvalds1da177e2005-04-16 15:20:36 -070010147SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070010148M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010149S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010150F: Documentation/filesystems/sysv-fs.txt
10151F: fs/sysv/
10152F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070010153
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -070010154TARGET SUBSYSTEM
Joe Perches9c3646d2015-06-25 15:02:00 -070010155M: "Nicholas A. Bellinger" <nab@linux-iscsi.org>
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -070010156L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +000010157L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -070010158W: http://www.linux-iscsi.org
Joe Perchescf015e92014-02-25 15:01:47 -080010159W: http://groups.google.com/group/linux-iscsi-target-dev
Nicholas Bellinger452cf322013-05-11 16:27:56 -070010160T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -070010161S: Supported
10162F: drivers/target/
10163F: include/target/
10164F: Documentation/target/
10165
Alan Cox4e688522008-04-30 00:52:11 -070010166TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -070010167M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -070010168S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010169F: Documentation/accounting/taskstats*
10170F: include/linux/taskstats*
10171F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -070010172
Stephen Hemminger781b456a2006-07-10 20:25:29 -070010173TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +000010174M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-07-10 20:25:29 -070010175L: netdev@vger.kernel.org
10176S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010177F: include/net/pkt_cls.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010178F: include/uapi/linux/pkt_cls.h
Joe Perches679655d2009-04-07 20:44:32 -070010179F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -070010180
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -070010181TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -070010182M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
10183M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -070010184W: http://tcp-lp-mod.sourceforge.net/
10185S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010186F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -070010187
Antti Palosaari91952bc2012-10-01 12:28:46 -030010188TDA10071 MEDIA DRIVER
10189M: Antti Palosaari <crope@iki.fi>
10190L: linux-media@vger.kernel.org
10191W: http://linuxtv.org/
10192W: http://palosaari.fi/linux/
10193Q: http://patchwork.linuxtv.org/project/linux-media/list/
10194T: git git://linuxtv.org/anttip/media_tree.git
10195S: Maintained
10196F: drivers/media/dvb-frontends/tda10071*
10197
10198TDA18212 MEDIA DRIVER
10199M: Antti Palosaari <crope@iki.fi>
10200L: linux-media@vger.kernel.org
10201W: http://linuxtv.org/
10202W: http://palosaari.fi/linux/
10203Q: http://patchwork.linuxtv.org/project/linux-media/list/
10204T: git git://linuxtv.org/anttip/media_tree.git
10205S: Maintained
10206F: drivers/media/tuners/tda18212*
10207
10208TDA18218 MEDIA DRIVER
10209M: Antti Palosaari <crope@iki.fi>
10210L: linux-media@vger.kernel.org
10211W: http://linuxtv.org/
10212W: http://palosaari.fi/linux/
10213Q: http://patchwork.linuxtv.org/project/linux-media/list/
10214T: git git://linuxtv.org/anttip/media_tree.git
10215S: Maintained
10216F: drivers/media/tuners/tda18218*
10217
Michael Krufky3b2f6ab2012-10-02 00:55:32 -030010218TDA18271 MEDIA DRIVER
10219M: Michael Krufky <mkrufky@linuxtv.org>
10220L: linux-media@vger.kernel.org
10221W: http://linuxtv.org/
10222W: http://github.com/mkrufky
10223Q: http://patchwork.linuxtv.org/project/linux-media/list/
10224T: git git://linuxtv.org/mkrufky/tuners.git
10225S: Maintained
10226F: drivers/media/tuners/tda18271*
10227
Michael Krufkye48307a2012-10-02 00:56:33 -030010228TDA827x MEDIA DRIVER
10229M: Michael Krufky <mkrufky@linuxtv.org>
10230L: linux-media@vger.kernel.org
10231W: http://linuxtv.org/
10232W: http://github.com/mkrufky
10233Q: http://patchwork.linuxtv.org/project/linux-media/list/
10234T: git git://linuxtv.org/mkrufky/tuners.git
10235S: Maintained
10236F: drivers/media/tuners/tda8290.*
10237
Michael Krufky66cf9212012-10-02 00:56:28 -030010238TDA8290 MEDIA DRIVER
10239M: Michael Krufky <mkrufky@linuxtv.org>
10240L: linux-media@vger.kernel.org
10241W: http://linuxtv.org/
10242W: http://github.com/mkrufky
10243Q: http://patchwork.linuxtv.org/project/linux-media/list/
10244T: git git://linuxtv.org/mkrufky/tuners.git
10245S: Maintained
10246F: drivers/media/tuners/tda8290.*
10247
Hans Verkuil4b9fba32012-11-23 10:02:05 -030010248TDA9840 MEDIA DRIVER
10249M: Hans Verkuil <hverkuil@xs4all.nl>
10250L: linux-media@vger.kernel.org
10251T: git git://linuxtv.org/media_tree.git
10252W: http://linuxtv.org
10253S: Maintained
10254F: drivers/media/i2c/tda9840*
10255
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -020010256TEA5761 TUNER DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -020010257M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -020010258L: linux-media@vger.kernel.org
10259W: http://linuxtv.org
10260T: git git://linuxtv.org/media_tree.git
10261S: Odd fixes
10262F: drivers/media/tuners/tea5761.*
10263
10264TEA5767 TUNER DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -020010265M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -020010266L: linux-media@vger.kernel.org
10267W: http://linuxtv.org
10268T: git git://linuxtv.org/media_tree.git
10269S: Maintained
10270F: drivers/media/tuners/tea5767.*
10271
Hans Verkuil4b9fba32012-11-23 10:02:05 -030010272TEA6415C MEDIA DRIVER
10273M: Hans Verkuil <hverkuil@xs4all.nl>
10274L: linux-media@vger.kernel.org
10275T: git git://linuxtv.org/media_tree.git
10276W: http://linuxtv.org
10277S: Maintained
10278F: drivers/media/i2c/tea6415c*
10279
10280TEA6420 MEDIA DRIVER
10281M: Hans Verkuil <hverkuil@xs4all.nl>
10282L: linux-media@vger.kernel.org
10283T: git git://linuxtv.org/media_tree.git
10284W: http://linuxtv.org
10285S: Maintained
10286F: drivers/media/i2c/tea6420*
10287
Jiri Pirko3d249d42011-11-11 22:16:48 +000010288TEAM DRIVER
Jiri Pirkodca9ab92013-02-15 23:55:05 +000010289M: Jiri Pirko <jiri@resnulli.us>
Jiri Pirko3d249d42011-11-11 22:16:48 +000010290L: netdev@vger.kernel.org
10291S: Supported
10292F: drivers/net/team/
10293F: include/linux/if_team.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010294F: include/uapi/linux/if_team.h
Jiri Pirko3d249d42011-11-11 22:16:48 +000010295
Vivien Didelot7d029122013-01-04 16:18:14 -050010296TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
Joe Perches9c3646d2015-06-25 15:02:00 -070010297M: "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
Vivien Didelot7d029122013-01-04 16:18:14 -050010298S: Maintained
10299F: arch/x86/platform/ts5500/
10300
Sean Young40ad4a32012-11-19 10:32:53 -030010301TECHNOTREND USB IR RECEIVER
10302M: Sean Young <sean@mess.org>
10303L: linux-media@vger.kernel.org
10304S: Maintained
10305F: drivers/media/rc/ttusbir.c
10306
Stephen Warrenadabdb02013-09-13 13:00:57 -060010307TEGRA ARCHITECTURE SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -070010308M: Stephen Warren <swarren@wwwdotorg.org>
Stephen Warrenadabdb02013-09-13 13:00:57 -060010309M: Thierry Reding <thierry.reding@gmail.com>
Stephen Warren554077c2014-10-03 09:50:32 -060010310M: Alexandre Courbot <gnurou@gmail.com>
Erik Gilling84b94142010-06-09 15:35:53 -070010311L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -070010312Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
Andreas Färberb779b882014-07-28 12:06:26 -060010313T: git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
Erik Gilling84b94142010-06-09 15:35:53 -070010314S: Supported
Stephen Warrenbbbe96e2013-04-29 16:17:23 -070010315N: [^a-z]tegra
Erik Gilling84b94142010-06-09 15:35:53 -070010316
Stephen Warrenadabdb02013-09-13 13:00:57 -060010317TEGRA CLOCK DRIVER
10318M: Peter De Schrijver <pdeschrijver@nvidia.com>
10319M: Prashant Gaikwad <pgaikwad@nvidia.com>
10320S: Supported
10321F: drivers/clk/tegra/
10322
10323TEGRA DMA DRIVER
10324M: Laxman Dewangan <ldewangan@nvidia.com>
10325S: Supported
10326F: drivers/dma/tegra20-apb-dma.c
10327
Stephen Warrenadabdb02013-09-13 13:00:57 -060010328TEGRA I2C DRIVER
10329M: Laxman Dewangan <ldewangan@nvidia.com>
10330S: Supported
10331F: drivers/i2c/busses/i2c-tegra.c
10332
10333TEGRA IOMMU DRIVERS
10334M: Hiroshi Doyu <hdoyu@nvidia.com>
10335S: Supported
10336F: drivers/iommu/tegra*
10337
10338TEGRA KBC DRIVER
10339M: Rakesh Iyer <riyer@nvidia.com>
10340M: Laxman Dewangan <ldewangan@nvidia.com>
10341S: Supported
10342F: drivers/input/keyboard/tegra-kbc.c
10343
Stephen Warrenadabdb02013-09-13 13:00:57 -060010344TEGRA PWM DRIVER
10345M: Thierry Reding <thierry.reding@gmail.com>
10346S: Supported
10347F: drivers/pwm/pwm-tegra.c
10348
10349TEGRA SERIAL DRIVER
10350M: Laxman Dewangan <ldewangan@nvidia.com>
10351S: Supported
10352F: drivers/tty/serial/serial-tegra.c
10353
10354TEGRA SPI DRIVER
10355M: Laxman Dewangan <ldewangan@nvidia.com>
10356S: Supported
10357F: drivers/spi/spi-tegra*
10358
Andy Gospodarek1a348cc2007-09-17 18:50:36 -070010359TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010360M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -070010361L: netdev@vger.kernel.org
10362S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -070010363F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -070010364
Alan Cox4e688522008-04-30 00:52:11 -070010365Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -070010366M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -070010367S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010368F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -070010369
Randy Dunlap4480f15b2008-10-12 16:11:58 -070010370TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -070010371M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -070010372M: Max Filippov <jcmvbkbc@gmail.com>
10373L: linux-xtensa@linux-xtensa.org
Alan Cox4e688522008-04-30 00:52:11 -070010374S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010375F: arch/xtensa/
Max Filippov3dc99852014-04-03 14:48:48 -070010376F: drivers/irqchip/irq-xtensa-*
Alan Cox4e688522008-04-30 00:52:11 -070010377
Hans Verkuil5313ba62013-12-13 09:00:38 -030010378THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
10379M: Hans Verkuil <hverkuil@xs4all.nl>
10380L: linux-media@vger.kernel.org
10381T: git git://linuxtv.org/media_tree.git
10382W: http://linuxtv.org
10383S: Maintained
10384F: drivers/media/radio/radio-raremono.c
10385
Zhang Ruid3fb6952012-11-15 08:58:27 +080010386THERMAL
Joe Perchesb75f0052014-03-03 15:38:37 -080010387M: Zhang Rui <rui.zhang@intel.com>
Lee Jonesf14d1c22014-05-30 11:03:28 +010010388M: Eduardo Valentin <edubezval@gmail.com>
Joe Perchesb75f0052014-03-03 15:38:37 -080010389L: linux-pm@vger.kernel.org
10390T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
10391T: git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
10392Q: https://patchwork.kernel.org/project/linux-pm/list/
10393S: Supported
10394F: drivers/thermal/
10395F: include/linux/thermal.h
Florian Fainelliaf6c9f12014-11-19 18:11:00 -080010396F: include/uapi/linux/thermal.h
Joe Perchesb75f0052014-03-03 15:38:37 -080010397F: include/linux/cpu_cooling.h
10398F: Documentation/devicetree/bindings/thermal/
Zhang Ruid3fb6952012-11-15 08:58:27 +080010399
Viresh Kumar64e05d82015-08-27 07:32:11 +053010400THERMAL/CPU_COOLING
10401M: Amit Daniel Kachhap <amit.kachhap@gmail.com>
10402M: Viresh Kumar <viresh.kumar@linaro.org>
10403M: Javi Merino <javi.merino@arm.com>
10404L: linux-pm@vger.kernel.org
10405S: Supported
10406F: Documentation/thermal/cpu-cooling-api.txt
10407F: drivers/thermal/cpu_cooling.c
10408F: include/linux/cpu_cooling.h
10409
Vivien Didelot30ba2fb2013-01-22 12:01:21 -050010410THINGM BLINK(1) USB RGB LED DRIVER
10411M: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
10412S: Maintained
10413F: drivers/hid/hid-thingm.c
10414
Alan Cox4e688522008-04-30 00:52:11 -070010415THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010416M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -070010417L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd09448532010-02-11 10:40:13 -050010418L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -070010419W: http://ibm-acpi.sourceforge.net
10420W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -070010421T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -070010422S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010423F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -070010424
Eduardo Valentin1b46f2a2013-03-15 09:00:34 -040010425TI BANDGAP AND THERMAL DRIVER
Lee Jonesf14d1c22014-05-30 11:03:28 +010010426M: Eduardo Valentin <edubezval@gmail.com>
Eduardo Valentin1b46f2a2013-03-15 09:00:34 -040010427L: linux-pm@vger.kernel.org
Nishanth Menon531ff132015-01-03 13:13:30 -060010428L: linux-omap@vger.kernel.org
Eduardo Valentin5a723e82015-01-05 17:48:13 -040010429S: Maintained
Eduardo Valentin794b2e22013-05-15 15:46:01 +000010430F: drivers/thermal/ti-soc-thermal/
Eduardo Valentin1b46f2a2013-03-15 09:00:34 -040010431
Max Filippov0c7665c2015-01-12 10:20:46 +030010432TI CDCE706 CLOCK DRIVER
10433M: Max Filippov <jcmvbkbc@gmail.com>
10434S: Maintained
10435F: drivers/clk/clk-cdce706.c
10436
Tero Kristo49b6a5e2014-07-02 17:03:50 +030010437TI CLOCK DRIVER
10438M: Tero Kristo <t-kristo@ti.com>
10439L: linux-omap@vger.kernel.org
10440S: Maintained
10441F: drivers/clk/ti/
10442F: include/linux/clk/ti.h
10443
Alex Dubov4020f2d2006-10-04 02:15:37 -070010444TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010445M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020010446S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010447F: drivers/misc/tifm*
10448F: drivers/mmc/host/tifm_sd.c
10449F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -070010450
Santosh Shilimkare0c52402014-07-10 11:30:08 -040010451TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
Santosh Shilimkar97215802014-10-13 14:16:28 -040010452M: Santosh Shilimkar <ssantosh@kernel.org>
Santosh Shilimkare0c52402014-07-10 11:30:08 -040010453L: linux-kernel@vger.kernel.org
10454L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10455S: Maintained
10456F: drivers/soc/ti/*
10457T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
10458
10459
M R Swami Reddy152ad442012-04-02 20:02:31 +053010460TI LM49xxx FAMILY ASoC CODEC DRIVERS
10461M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +053010462M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +053010463L: alsa-devel@alsa-project.org (moderated for non-subscribers)
10464S: Maintained
10465F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +053010466F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +053010467
Kim, Milo0edd8072012-12-17 16:01:17 -080010468TI LP855x BACKLIGHT DRIVER
10469M: Milo Kim <milo.kim@ti.com>
10470S: Maintained
10471F: Documentation/backlight/lp855x-driver.txt
10472F: drivers/video/backlight/lp855x_bl.c
10473F: include/linux/platform_data/lp855x.h
10474
Kim, Milofaf13f62012-12-10 05:27:03 +000010475TI LP8727 CHARGER DRIVER
10476M: Milo Kim <milo.kim@ti.com>
10477S: Maintained
10478F: drivers/power/lp8727_charger.c
10479F: include/linux/platform_data/lp8727.h
10480
Kim, Milo22f12292012-12-10 05:27:55 +000010481TI LP8788 MFD DRIVER
10482M: Milo Kim <milo.kim@ti.com>
10483S: Maintained
10484F: drivers/iio/adc/lp8788_adc.c
10485F: drivers/leds/leds-lp8788.c
10486F: drivers/mfd/lp8788*.c
10487F: drivers/power/lp8788-charger.c
10488F: drivers/regulator/lp8788-*.c
10489F: include/linux/mfd/lp8788*.h
10490
Karicheri, Muralidharan84640e22015-01-15 19:12:50 -050010491TI NETCP ETHERNET DRIVER
10492M: Wingman Kwok <w-kwok2@ti.com>
10493M: Murali Karicheri <m-karicheri2@ti.com>
10494L: netdev@vger.kernel.org
10495S: Maintained
10496F: drivers/net/ethernet/ti/netcp*
10497
Kevin Cernekee217e0ca2015-05-03 17:00:19 -070010498TI TAS571X FAMILY ASoC CODEC DRIVER
10499M: Kevin Cernekee <cernekee@chromium.org>
10500L: alsa-devel@alsa-project.org (moderated for non-subscribers)
10501S: Odd Fixes
10502F: sound/soc/codecs/tas571x*
10503
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +030010504TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +030010505M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +030010506L: alsa-devel@alsa-project.org (moderated for non-subscribers)
10507S: Maintained
10508F: sound/soc/codecs/twl4030*
10509
Luciano Coelho90921012011-11-20 21:40:41 +020010510TI WILINK WIRELESS DRIVERS
Luciano Coelho90921012011-11-20 21:40:41 +020010511L: linux-wireless@vger.kernel.org
10512W: http://wireless.kernel.org/en/users/Drivers/wl12xx
10513W: http://wireless.kernel.org/en/users/Drivers/wl1251
10514T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
Luciano Coelho22d072f2013-12-09 22:28:32 +020010515S: Orphan
Luciano Coelho90921012011-11-20 21:40:41 +020010516F: drivers/net/wireless/ti/
10517F: include/linux/wl12xx.h
10518
Per Lidene86eaa32006-01-12 16:45:18 +010010519TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -070010520M: Jon Maloy <jon.maloy@ericsson.com>
Jon Paul Maloy115403d2015-03-09 14:44:13 -040010521M: Ying Xue <ying.xue@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -050010522L: netdev@vger.kernel.org (core kernel code)
10523L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +010010524W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +010010525S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010526F: include/uapi/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -070010527F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +010010528
Chris Metcalf867e3592010-05-28 23:09:12 -040010529TILE ARCHITECTURE
Chris Metcalfc47b15c2014-11-13 09:41:58 -050010530M: Chris Metcalf <cmetcalf@ezchip.com>
Chris Metcalf740e1432015-02-13 13:16:49 -050010531W: http://www.ezchip.com/scm/
Chris Metcalf867e3592010-05-28 23:09:12 -040010532S: Supported
10533F: arch/tile/
Chris Metcalf6b940602013-08-07 10:45:01 -040010534F: drivers/char/tile-srom.c
Chris Metcalf5c770752011-03-01 13:01:49 -050010535F: drivers/edac/tile_edac.c
Chris Metcalf6b940602013-08-07 10:45:01 -040010536F: drivers/net/ethernet/tile/
10537F: drivers/rtc/rtc-tile.c
10538F: drivers/tty/hvc/hvc_tile.c
Chris Metcalfb5c6c1a2013-08-12 14:11:44 -040010539F: drivers/tty/serial/tilegx.c
Chris Metcalf6b940602013-08-07 10:45:01 -040010540F: drivers/usb/host/*-tilegx.c
10541F: include/linux/usb/tilegx.h
Chris Metcalf867e3592010-05-28 23:09:12 -040010542
Linus Torvalds1da177e2005-04-16 15:20:36 -070010543TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010544M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +080010545L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010546W: http://sourceforge.net/projects/tlan/
10547S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010548F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -070010549F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010550
Kentaro Takedad74db3b2009-02-05 17:18:18 +090010551TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -070010552M: Kentaro Takeda <takedakn@nttdata.co.jp>
10553M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +090010554L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
10555L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +090010556L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
10557L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
10558W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +090010559T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +090010560S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010561F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +090010562
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -030010563TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -030010564M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd09448532010-02-11 10:40:13 -050010565L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -030010566S: Maintained
10567F: drivers/platform/x86/topstar-laptop.c
10568
Linus Torvalds1da177e2005-04-16 15:20:36 -070010569TOSHIBA ACPI EXTRAS DRIVER
Azael Avalos0a63ca12015-03-06 18:14:42 -070010570M: Azael Avalos <coproscefalo@gmail.com>
Matthew Garrettd09448532010-02-11 10:40:13 -050010571L: platform-driver-x86@vger.kernel.org
Azael Avalos0a63ca12015-03-06 18:14:42 -070010572S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010573F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070010574
Azael Avalos0a63ca12015-03-06 18:14:42 -070010575TOSHIBA BLUETOOTH DRIVER
10576M: Azael Avalos <coproscefalo@gmail.com>
10577L: platform-driver-x86@vger.kernel.org
10578S: Maintained
10579F: drivers/platform/x86/toshiba_bluetooth.c
10580
10581TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
10582M: Azael Avalos <coproscefalo@gmail.com>
10583L: platform-driver-x86@vger.kernel.org
10584S: Maintained
10585F: drivers/platform/x86/toshiba_haps.c
10586
Linus Torvalds1da177e2005-04-16 15:20:36 -070010587TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010588M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010589W: http://www.buzzard.org.uk/toshiba/
10590S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010591F: drivers/char/toshiba.c
10592F: include/linux/toshiba.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010593F: include/uapi/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070010594
Mats Randgaardd32d9862015-07-09 05:45:47 -030010595TOSHIBA TC358743 DRIVER
10596M: Mats Randgaard <matrandg@cisco.com>
10597L: linux-media@vger.kernel.org
10598S: Maintained
10599F: drivers/media/i2c/tc358743*
10600F: include/media/tc358743.h
10601
Pierre Ossmand719f902009-03-24 21:06:09 +010010602TMIO MMC DRIVER
Ben Hutchingsc4b13fb2015-04-27 00:01:53 +010010603M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +020010604L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +010010605S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +020010606F: drivers/mmc/host/tmio_mmc*
10607F: drivers/mmc/host/sh_mobile_sdhi.c
10608F: include/linux/mmc/tmio.h
10609F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +010010610
Guenter Roeck917cc4e2013-05-19 20:44:27 -070010611TMP401 HARDWARE MONITOR DRIVER
10612M: Guenter Roeck <linux@roeck-us.net>
10613L: lm-sensors@lm-sensors.org
10614S: Maintained
10615F: Documentation/hwmon/tmp401
10616F: drivers/hwmon/tmp401.c
10617
Hugh Dickins98f32602009-05-21 20:33:58 +010010618TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -070010619M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +010010620L: linux-mm@kvack.org
10621S: Maintained
10622F: include/linux/shmem_fs.h
10623F: mm/shmem.c
10624
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -020010625TM6000 VIDEO4LINUX DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -020010626M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -020010627L: linux-media@vger.kernel.org
10628W: http://linuxtv.org
10629T: git git://linuxtv.org/media_tree.git
10630S: Odd fixes
10631F: drivers/media/usb/tm6000/
10632
Hans Verkuilc65fde12014-08-10 05:16:39 -030010633TW68 VIDEO4LINUX DRIVER
10634M: Hans Verkuil <hverkuil@xs4all.nl>
10635L: linux-media@vger.kernel.org
10636T: git git://linuxtv.org/media_tree.git
10637W: http://linuxtv.org
10638S: Odd Fixes
10639F: drivers/media/pci/tw68/
10640
Alan Cox4e688522008-04-30 00:52:11 -070010641TPM DEVICE DRIVER
Peter Huewe901486b2013-10-22 19:28:30 +020010642M: Peter Huewe <peterhuewe@gmx.de>
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -030010643M: Marcel Selhorst <tpmdd@selhorst.net>
Peter Huewece93b4b2015-03-15 01:05:31 +010010644R: Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
Peter Huewe383dec12013-10-30 20:54:45 +010010645W: http://tpmdd.sourceforge.net
Rajiv Andrade63a10df2008-10-15 22:04:36 -070010646L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Peter Huewef78c81b2015-01-17 15:17:51 +010010647Q: git git://github.com/PeterHuewe/linux-tpmdd.git
10648T: https://github.com/PeterHuewe/linux-tpmdd
Alan Cox4e688522008-04-30 00:52:11 -070010649S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010650F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -070010651
Ashley Lai1a0f1b22014-12-04 21:01:51 -060010652TPM IBM_VTPM DEVICE DRIVER
10653M: Ashley Lai <ashleydlai@gmail.com>
10654W: http://tpmdd.sourceforge.net
10655L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
10656S: Maintained
10657F: drivers/char/tpm/tpm_ibmvtpm*
10658
Joe Perchesd6f005a2009-10-26 16:49:40 -070010659TRACING
10660M: Steven Rostedt <rostedt@goodmis.org>
Joe Perchesd6f005a2009-10-26 16:49:40 -070010661M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +010010662T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -070010663S: Maintained
10664F: Documentation/trace/ftrace.txt
10665F: arch/*/*/*/ftrace.h
10666F: arch/*/kernel/ftrace.c
10667F: include/*/ftrace.h
10668F: include/linux/trace*.h
10669F: include/trace/
10670F: kernel/trace/
Masami Hiramatsu6e68e6c2014-09-22 23:42:50 +000010671F: tools/testing/selftests/ftrace/
Joe Perchesd6f005a2009-10-26 16:49:40 -070010672
Linus Torvalds1da177e2005-04-16 15:20:36 -070010673TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -070010674M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -070010675T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070010676S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +020010677K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -070010678
Alan Cox4e688522008-04-30 00:52:11 -070010679TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -080010680M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jiri Slabyd8130622015-07-17 16:23:20 -070010681M: Jiri Slaby <jslaby@suse.com>
Greg KH879a5a02012-01-31 20:02:00 -080010682S: Supported
Joe Perches08deed12012-03-23 15:01:57 -070010683T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Baruch Siach84e1eb82015-06-04 10:56:58 +030010684F: Documentation/serial/
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -020010685F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -080010686F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +010010687F: include/linux/serial_core.h
10688F: include/linux/serial.h
10689F: include/linux/tty.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010690F: include/uapi/linux/serial_core.h
10691F: include/uapi/linux/serial.h
10692F: include/uapi/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -070010693
Antti Palosaari91952bc2012-10-01 12:28:46 -030010694TUA9001 MEDIA DRIVER
10695M: Antti Palosaari <crope@iki.fi>
10696L: linux-media@vger.kernel.org
10697W: http://linuxtv.org/
10698W: http://palosaari.fi/linux/
10699Q: http://patchwork.linuxtv.org/project/linux-media/list/
10700T: git git://linuxtv.org/anttip/media_tree.git
10701S: Maintained
10702F: drivers/media/tuners/tua9001*
10703
Grant Grundler740db6d2008-02-17 11:53:49 -070010704TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -070010705M: Grant Grundler <grundler@parisc-linux.org>
Grant Grundler740db6d2008-02-17 11:53:49 -070010706L: netdev@vger.kernel.org
10707S: Maintained
Joe Perches0f04e2a2012-01-10 15:08:56 -080010708F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010709
10710TUN/TAP driver
Jiri Slabyba57b6f2012-11-30 07:05:40 +000010711M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010712W: http://vtun.sourceforge.net/tun
10713S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010714F: Documentation/networking/tuntap.txt
10715F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010716
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -080010717TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070010718M: "Maciej W. Rozycki" <macro@linux-mips.org>
Ralf Baechlec4063392014-04-03 13:29:06 +020010719M: Ralf Baechle <ralf@linux-mips.org>
10720L: linux-mips@linux-mips.org
10721Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -080010722S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010723F: drivers/tc/
10724F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -080010725
Linus Torvalds1da177e2005-04-16 15:20:36 -070010726U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010727M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010728L: linux-scsi@vger.kernel.org
10729S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010730F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070010731
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010732UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +030010733M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +030010734M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010735L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +030010736T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010737W: http://www.linux-mtd.infradead.org/doc/ubifs.html
10738S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010739F: Documentation/filesystems/ubifs.txt
10740F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010741
Greg Ungerere1632fa2015-06-19 10:40:03 +100010742UCLINUX (M68KNOMMU AND COLDFIRE)
Joe Perches8b58be82009-07-29 15:04:30 -070010743M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +010010744W: http://www.uclinux.org/
Greg Ungerere1632fa2015-06-19 10:40:03 +100010745L: linux-m68k@lists.linux-m68k.org
Alan Coxcc2020e2008-05-19 14:21:51 +010010746L: uclinux-dev@uclinux.org (subscribers-only)
Greg Ungerere1632fa2015-06-19 10:40:03 +100010747T: git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
Alan Coxcc2020e2008-05-19 14:21:51 +010010748S: Maintained
Greg Ungerere1632fa2015-06-19 10:40:03 +100010749F: arch/m68k/coldfire/
10750F: arch/m68k/68*/
Joe Perches61bc02b2011-04-14 15:22:04 -070010751F: arch/m68k/*/*_no.*
10752F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +010010753
Linus Torvalds1da177e2005-04-16 15:20:36 -070010754UDF FILESYSTEM
Jiri Slabyd8130622015-07-17 16:23:20 -070010755M: Jan Kara <jack@suse.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010756S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010757F: Documentation/filesystems/udf.txt
10758F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010759
Alan Coxcc2020e2008-05-19 14:21:51 +010010760UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070010761M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +010010762S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010763F: Documentation/filesystems/ufs.txt
10764F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +010010765
David Herrmann0a09d3a2012-06-10 15:16:28 +020010766UHID USERSPACE HID IO DRIVER:
10767M: David Herrmann <dh.herrmann@googlemail.com>
10768L: linux-input@vger.kernel.org
10769S: Maintained
10770F: drivers/hid/uhid.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010771F: include/uapi/linux/uhid.h
David Herrmann0a09d3a2012-06-10 15:16:28 +020010772
David Vrabel18332a82008-09-17 16:34:44 +010010773ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +010010774L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +010010775S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +000010776F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -070010777F: include/linux/uwb.h
10778F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +010010779
GuanXuetaob31d8272011-01-16 00:35:49 +080010780UNICORE32 ARCHITECTURE:
10781M: Guan Xuetao <gxt@mprc.pku.edu.cn>
10782W: http://mprc.pku.edu.cn/~guanxuetao/linux
10783S: Maintained
Guan Xuetaoceebf4d2014-05-27 07:53:10 +080010784T: git git://github.com/gxt/linux.git
GuanXuetaob31d8272011-01-16 00:35:49 +080010785F: arch/unicore32/
10786
Tony Finchd8379ab2009-11-27 15:50:30 +000010787UNIFDEF
10788M: Tony Finch <dot@dotat.at>
10789W: http://dotat.at/prog/unifdef
10790S: Maintained
10791F: scripts/unifdef.c
10792
Linus Torvalds1da177e2005-04-16 15:20:36 -070010793UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010794M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010795W: http://www.kernel.dk
10796S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010797F: Documentation/cdrom/
10798F: drivers/cdrom/cdrom.c
10799F: include/linux/cdrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010800F: include/uapi/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070010801
Benjamin Romer56df0122014-03-07 13:02:21 -060010802UNISYS S-PAR DRIVERS
Joe Perches49e7d9d2015-04-15 16:17:31 -070010803M: Benjamin Romer <benjamin.romer@unisys.com>
10804M: David Kershner <david.kershner@unisys.com>
10805L: sparmaintainer@unisys.com (Unisys internal)
10806S: Supported
10807F: drivers/staging/unisys/
Benjamin Romer56df0122014-03-07 13:02:21 -060010808
Vinayak Holikatti9941fa62012-04-20 14:11:50 +053010809UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
10810M: Vinayak Holikatti <vinholikatti@gmail.com>
Vinayak Holikatti9941fa62012-04-20 14:11:50 +053010811L: linux-scsi@vger.kernel.org
10812S: Supported
10813F: Documentation/scsi/ufs.txt
10814F: drivers/scsi/ufs/
10815
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010816UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +030010817M: Artem Bityutskiy <dedekind1@gmail.com>
Richard Weinberger346be9b2015-01-28 12:28:24 +010010818M: Richard Weinberger <richard@nod.at>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010819W: http://www.linux-mtd.infradead.org/
10820L: linux-mtd@lists.infradead.org
Artem Bityutskiyb6b44e02014-01-02 16:43:51 +020010821T: git git://git.infradead.org/ubifs-2.6.git
Richard Weinberger346be9b2015-01-28 12:28:24 +010010822S: Supported
Joe Perches80811492009-04-08 20:20:27 -070010823F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -070010824F: include/linux/mtd/ubi.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010825F: include/uapi/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010826
Linus Torvalds1da177e2005-04-16 15:20:36 -070010827USB ACM DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +020010828M: Oliver Neukum <oliver@neukum.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -070010829L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070010830S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010831F: Documentation/usb/acm.txt
10832F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010833
Pontus Fuchsb7d572e2012-10-23 20:33:57 +020010834USB AR5523 WIRELESS DRIVER
10835M: Pontus Fuchs <pontus.fuchs@gmail.com>
10836L: linux-wireless@vger.kernel.org
10837S: Maintained
10838F: drivers/net/wireless/ath/ar5523/
10839
Matthew Wilcox115bb1f2010-10-07 13:05:23 +020010840USB ATTACHED SCSI
Hans de Goedef50a4962013-10-28 10:48:04 +000010841M: Hans de Goede <hdegoede@redhat.com>
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +010010842M: Gerd Hoffmann <kraxel@redhat.com>
Matthew Wilcox115bb1f2010-10-07 13:05:23 +020010843L: linux-usb@vger.kernel.org
10844L: linux-scsi@vger.kernel.org
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +010010845S: Maintained
Matthew Wilcox115bb1f2010-10-07 13:05:23 +020010846F: drivers/usb/storage/uas.c
10847
Linus Torvalds1da177e2005-04-16 15:20:36 -070010848USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +020010849M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +020010850L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070010851S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010852F: drivers/net/usb/cdc_*.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010853F: include/uapi/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070010854
Keith Packard66e3e592015-03-19 20:36:49 -070010855USB CHAOSKEY DRIVER
10856M: Keith Packard <keithp@keithp.com>
10857L: linux-usb@vger.kernel.org
10858S: Maintained
10859F: drivers/usb/misc/chaoskey.c
10860
Peter Korsgaardb02b3712008-04-27 08:59:44 +020010861USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010862M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +020010863L: linux-usb@vger.kernel.org
10864S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010865F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +020010866
Peter Korsgaardd0374f42007-02-16 17:03:54 +010010867USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010868M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +020010869L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +010010870W: http://www.linux-usb.org/usbnet
10871S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010872F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +010010873
Alan Coxcc2020e2008-05-19 14:21:51 +010010874USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010875M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +010010876L: rio500-users@lists.sourceforge.net
10877W: http://rio500.sourceforge.net
10878S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010879F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +010010880
Linus Torvalds1da177e2005-04-16 15:20:36 -070010881USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -040010882M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +020010883L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -040010884S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010885F: Documentation/usb/ehci.txt
10886F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010887
David Brownell69ae9e32006-11-14 02:03:31 -080010888USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f665a2011-06-08 19:16:28 +030010889M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020010890L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -080010891W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f665a2011-06-08 19:16:28 +030010892T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
10893S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010894F: drivers/usb/gadget/
10895F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -080010896
Jiri Kosina2dea64b2007-07-11 12:12:11 +020010897USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Jiri Kosinae5f64502015-08-09 09:11:34 +020010898M: Jiri Kosina <jikos@kernel.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +020010899L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -070010900T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070010901S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -070010902F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -070010903F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010904
Olav Kongas959eea22005-11-03 17:38:14 +020010905USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010906M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +020010907L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +020010908S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010909F: drivers/usb/host/isp116x*
10910F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +020010911
Linus Torvalds1da177e2005-04-16 15:20:36 -070010912USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010913M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +020010914L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -080010915L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -070010916S: Maintained
10917W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -070010918F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010919
Clemens Ladischaf399172011-01-10 16:32:54 +010010920USB MIDI DRIVER
10921M: Clemens Ladisch <clemens@ladisch.de>
10922L: alsa-devel@alsa-project.org (moderated for non-subscribers)
10923T: git git://git.alsa-project.org/alsa-kernel.git
10924S: Maintained
10925F: sound/usb/midi.*
10926
Joe Perches444ce9d2013-08-01 21:03:32 -070010927USB NETWORKING DRIVERS
10928L: linux-usb@vger.kernel.org
10929S: Odd Fixes
10930F: drivers/net/usb/
10931
Linus Torvalds1da177e2005-04-16 15:20:36 -070010932USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -040010933M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +020010934L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -040010935S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010936F: Documentation/usb/ohci.txt
10937F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010938
Peter Chen963ffa32015-02-15 12:22:59 +080010939USB OTG FSM (Finite State Machine)
10940M: Peter Chen <Peter.Chen@freescale.com>
Peter Chen83738562015-03-23 19:57:36 +080010941T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
Peter Chen963ffa32015-02-15 12:22:59 +080010942L: linux-usb@vger.kernel.org
10943S: Maintained
10944F: drivers/usb/common/usb-otg-fsm.c
10945
Valentina Manea563da3a2014-08-20 07:31:02 +030010946USB OVER IP DRIVER
10947M: Valentina Manea <valentina.manea.m@gmail.com>
10948M: Shuah Khan <shuah.kh@samsung.com>
10949L: linux-usb@vger.kernel.org
10950S: Maintained
10951F: drivers/usb/usbip/
10952F: tools/usb/usbip/
10953
Linus Torvalds1da177e2005-04-16 15:20:36 -070010954USB PEGASUS DRIVER
Petko Manolova16b9452013-04-29 16:17:25 -070010955M: Petko Manolov <petkan@nucleusys.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020010956L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +020010957L: netdev@vger.kernel.org
Petko Manolov052e3122013-11-15 11:51:54 +020010958T: git git://github.com/petkan/pegasus.git
10959W: https://github.com/petkan/pegasus
Linus Torvalds1da177e2005-04-16 15:20:36 -070010960S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010961F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010962
Felipe Balbid3ad5582012-05-21 16:24:49 +030010963USB PHY LAYER
10964M: Felipe Balbi <balbi@ti.com>
10965L: linux-usb@vger.kernel.org
10966T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
10967S: Maintained
10968F: drivers/usb/phy/
Felipe Balbid3ad5582012-05-21 16:24:49 +030010969
Pete Zaitcev73e4fb32007-06-21 15:18:35 -070010970USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -070010971M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020010972L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -070010973S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010974F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070010975
10976USB RTL8150 DRIVER
Petko Manolova16b9452013-04-29 16:17:25 -070010977M: Petko Manolov <petkan@nucleusys.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020010978L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +020010979L: netdev@vger.kernel.org
Petko Manolov052e3122013-11-15 11:51:54 +020010980T: git git://github.com/petkan/rtl8150.git
10981W: https://github.com/petkan/rtl8150
Linus Torvalds1da177e2005-04-16 15:20:36 -070010982S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010983F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070010984
Greg KHf896b792013-10-30 11:07:31 -070010985USB SERIAL SUBSYSTEM
Johan Hovold66085692014-06-23 12:33:15 +020010986M: Johan Hovold <johan@kernel.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +020010987L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -070010988S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010989F: Documentation/usb/usb-serial.txt
Greg KHf896b792013-10-30 11:07:31 -070010990F: drivers/usb/serial/
Joe Perches679655d2009-04-07 20:44:32 -070010991F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070010992
Steve Glendinningb3f0db12012-08-15 21:53:38 +000010993USB SMSC75XX ETHERNET DRIVER
10994M: Steve Glendinning <steve.glendinning@shawell.net>
10995L: netdev@vger.kernel.org
10996S: Maintained
10997F: drivers/net/usb/smsc75xx.*
10998
Steve Glendinning2f7ca802008-10-02 05:27:57 +000010999USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +010011000M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +000011001L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +010011002S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011003F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +000011004
Linus Torvalds1da177e2005-04-16 15:20:36 -070011005USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -080011006M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011007L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070011008W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -070011009T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070011010S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070011011F: Documentation/usb/
Joe Perches679655d2009-04-07 20:44:32 -070011012F: drivers/usb/
11013F: include/linux/usb.h
11014F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011015
11016USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011017M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011018L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070011019S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011020F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011021
David Brownell69ae9e32006-11-14 02:03:31 -080011022USB "USBNET" DRIVER FRAMEWORK
Jiri Slabyd8130622015-07-17 16:23:20 -070011023M: Oliver Neukum <oneukum@suse.com>
Peter Korsgaard043600a2007-06-27 21:18:18 +020011024L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -080011025W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -070011026S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011027F: drivers/net/usb/usbnet.c
11028F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011029
Laurent Pinchartc0efd232008-06-30 15:04:50 -030011030USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -070011031M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -030011032L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -030011033L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -020011034T: git git://linuxtv.org/media_tree.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -030011035W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -030011036S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -030011037F: drivers/media/usb/uvc/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -020011038F: include/uapi/linux/uvcvideo.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011039
Hans Verkuilb60b9c42012-11-23 07:54:42 -030011040USB VISION DRIVER
11041M: Hans Verkuil <hverkuil@xs4all.nl>
11042L: linux-media@vger.kernel.org
11043T: git git://linuxtv.org/media_tree.git
11044W: http://linuxtv.org
11045S: Odd Fixes
11046F: drivers/media/usb/usbvision/
11047
Laurent Pinchart8282da42012-10-04 02:32:42 +020011048USB WEBCAM GADGET
11049M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11050L: linux-usb@vger.kernel.org
11051S: Maintained
Andrzej Pietrasiewicz3a83c162014-09-09 02:02:09 +030011052F: drivers/usb/gadget/function/*uvc*
Joe Perchesfaf2e1d2014-08-08 14:26:18 -070011053F: drivers/usb/gadget/legacy/webcam.c
Laurent Pinchart8282da42012-10-04 02:32:42 +020011054
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +020011055USB WIRELESS RNDIS DRIVER (rndis_wlan)
Jussi Kivilinnae6146c52013-03-07 22:33:38 +020011056M: Jussi Kivilinna <jussi.kivilinna@iki.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +020011057L: linux-wireless@vger.kernel.org
11058S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011059F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +020011060
Sarah Sharpeb6bab12009-04-29 19:07:13 -070011061USB XHCI DRIVER
Sarah Sharp03d85052014-03-20 16:20:56 -070011062M: Mathias Nyman <mathias.nyman@intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -070011063L: linux-usb@vger.kernel.org
11064S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -080011065F: drivers/usb/host/xhci*
11066F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -070011067
Linus Torvalds1da177e2005-04-16 15:20:36 -070011068USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -040011069L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070011070W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -040011071S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -070011072F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011073
Antoine Jacquetb7eee612007-04-27 12:30:59 -030011074USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011075M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011076L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -030011077L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -020011078T: git git://linuxtv.org/media_tree.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -030011079W: http://royale.zerezo.com/zr364xx/
11080S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011081F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -030011082F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -030011083
Heikki Krogerus289fcff2015-05-13 15:26:42 +030011084ULPI BUS
11085M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
11086L: linux-usb@vger.kernel.org
11087S: Maintained
11088F: drivers/usb/common/ulpi.c
11089F: include/linux/ulpi/
11090
Randy Dunlape7839f22008-10-12 16:11:45 -070011091USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -070011092M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +010011093M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011094L: user-mode-linux-devel@lists.sourceforge.net
11095L: user-mode-linux-user@lists.sourceforge.net
11096W: http://user-mode-linux.sourceforge.net
11097S: Maintained
Rob Landley61516582011-05-06 09:27:36 -070011098F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -070011099F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +020011100F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -070011101F: fs/hostfs/
11102F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -030011103
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +010011104USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -070011105M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -080011106M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +010011107S: Maintained
Mandeep Sandhu3d3fecb2015-01-10 19:15:45 -080011108T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Joe Perches679655d2009-04-07 20:44:32 -070011109F: Documentation/DocBook/uio-howto.tmpl
11110F: drivers/uio/
11111F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +010011112
Karel Zak256cccb2012-06-01 10:13:09 +020011113UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -070011114M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +020011115L: util-linux@vger.kernel.org
11116W: http://en.wikipedia.org/wiki/Util-linux
11117T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -070011118S: Maintained
11119
Michal Januszewskic1fd1c02008-10-15 22:03:48 -070011120UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011121M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +010011122L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -070011123W: http://dev.gentoo.org/~spock/projects/uvesafb/
11124S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011125F: Documentation/fb/uvesafb.txt
Jingoo Han8a61f012014-07-01 15:36:01 +090011126F: drivers/video/fbdev/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -070011127
Randy Dunlap4480f15b2008-10-12 16:11:58 -070011128VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070011129M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011130S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011131F: Documentation/filesystems/vfat.txt
11132F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011133
Alex Williamsoncba33452012-07-31 08:16:22 -060011134VFIO DRIVER
11135M: Alex Williamson <alex.williamson@redhat.com>
11136L: kvm@vger.kernel.org
11137S: Maintained
11138F: Documentation/vfio.txt
11139F: drivers/vfio/
11140F: include/linux/vfio.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011141F: include/uapi/linux/vfio.h
Alex Williamsoncba33452012-07-31 08:16:22 -060011142
Alex Williamsona714ea52015-06-18 11:59:22 -060011143VFIO PLATFORM DRIVER
11144M: Baptiste Reynal <b.reynal@virtualopensystems.com>
11145L: kvm@vger.kernel.org
11146S: Maintained
11147F: drivers/vfio/platform/
11148
Pawel Osciak9e6f3432011-06-15 15:08:32 -070011149VIDEOBUF2 FRAMEWORK
11150M: Pawel Osciak <pawel@osciak.com>
11151M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -030011152M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -070011153L: linux-media@vger.kernel.org
11154S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -030011155F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -070011156F: include/media/videobuf2-*
11157
Amit Shah9a824462010-03-23 18:23:09 +053011158VIRTIO CONSOLE DRIVER
11159M: Amit Shah <amit.shah@redhat.com>
11160L: virtualization@lists.linux-foundation.org
11161S: Maintained
11162F: drivers/char/virtio_console.c
11163F: include/linux/virtio_console.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011164F: include/uapi/linux/virtio_console.h
Amit Shah9a824462010-03-23 18:23:09 +053011165
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +103011166VIRTIO CORE, NET AND BLOCK DRIVERS
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +103011167M: "Michael S. Tsirkin" <mst@redhat.com>
11168L: virtualization@lists.linux-foundation.org
11169S: Maintained
11170F: drivers/virtio/
Michael S. Tsirkinc893c8d2013-07-08 11:31:13 +093011171F: tools/virtio/
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +103011172F: drivers/net/virtio_net.c
11173F: drivers/block/virtio_blk.c
11174F: include/linux/virtio_*.h
Amos Kong916cdab2013-04-02 16:42:02 +103011175F: include/uapi/linux/virtio_*.h
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +103011176
Cornelia Huckf2dbda32015-07-01 17:15:37 +020011177VIRTIO DRIVERS FOR S390
11178M: Christian Borntraeger <borntraeger@de.ibm.com>
11179M: Cornelia Huck <cornelia.huck@de.ibm.com>
11180L: linux-s390@vger.kernel.org
11181L: virtualization@lists.linux-foundation.org
11182L: kvm@vger.kernel.org
11183S: Supported
Cornelia Huck1b568d92015-07-07 11:41:01 +020011184F: drivers/s390/virtio/
Cornelia Huckf2dbda32015-07-01 17:15:37 +020011185
Gerd Hoffmann4ad6ee92015-06-02 10:49:03 +020011186VIRTIO GPU DRIVER
11187M: David Airlie <airlied@linux.ie>
11188M: Gerd Hoffmann <kraxel@redhat.com>
11189L: dri-devel@lists.freedesktop.org
11190L: virtualization@lists.linux-foundation.org
11191S: Maintained
11192F: drivers/gpu/drm/virtio/
11193F: include/uapi/linux/virtio_gpu.h
11194
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000011195VIRTIO HOST (VHOST)
11196M: "Michael S. Tsirkin" <mst@redhat.com>
11197L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +000011198L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000011199L: netdev@vger.kernel.org
11200S: Maintained
11201F: drivers/vhost/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011202F: include/uapi/linux/vhost.h
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000011203
Gerd Hoffmann271c8652015-03-27 12:46:12 +103011204VIRTIO INPUT DRIVER
11205M: Gerd Hoffmann <kraxel@redhat.com>
11206S: Maintained
11207F: drivers/virtio/virtio_input.c
11208F: include/uapi/linux/virtio_input.h
11209
Linus Torvalds1da177e2005-04-16 15:20:36 -070011210VIA RHINE NETWORK DRIVER
Roger Luethi210347e2015-05-26 19:12:54 +020011211S: Orphan
Jeff Kirsherf2148a42011-05-20 20:43:09 -070011212F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070011213
Harald Weltef0bf7f62009-06-17 20:22:39 +020011214VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -080011215M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -070011216M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +020011217S: Maintained
11218F: drivers/mmc/host/via-sdmmc.c
11219
Joseph Chan69e4a7c2008-10-15 22:03:31 -070011220VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +000011221M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +010011222L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -070011223S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +000011224F: include/linux/via-core.h
11225F: include/linux/via-gpio.h
11226F: include/linux/via_i2c.h
Jingoo Han8a61f012014-07-01 15:36:01 +090011227F: drivers/video/fbdev/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -070011228
Francois Romieu01f20732007-01-26 00:57:17 -080011229VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011230M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -080011231L: netdev@vger.kernel.org
11232S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -070011233F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011234
Hans Verkuil77911fd2014-12-10 04:22:37 -030011235VIVID VIRTUAL VIDEO DRIVER
Hans Verkuil0b7bc1f2012-11-23 08:21:50 -030011236M: Hans Verkuil <hverkuil@xs4all.nl>
11237L: linux-media@vger.kernel.org
11238T: git git://linuxtv.org/media_tree.git
11239W: http://linuxtv.org
11240S: Maintained
Hans Verkuil77911fd2014-12-10 04:22:37 -030011241F: drivers/media/platform/vivid/*
Hans Verkuil0b7bc1f2012-11-23 08:21:50 -030011242
Patrick McHardybe7f8272007-10-23 20:26:36 -070011243VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -070011244M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -070011245L: netdev@vger.kernel.org
11246S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011247F: drivers/net/macvlan.c
11248F: include/linux/if_*vlan.h
11249F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -070011250
Florian Fainelli55e331c2009-06-16 15:33:53 -070011251VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -070011252M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -080011253L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -070011254S: Maintained
11255F: drivers/vlynq/vlynq.c
11256F: include/linux/vlynq.h
11257
Martyn Welch390beae2012-05-03 17:52:36 +010011258VME SUBSYSTEM
Martyn Welch74c600e2015-09-17 20:38:47 +010011259M: Martyn Welch <martyn@welchs.me.uk>
Manohar Vanga1bd289d2012-06-14 15:57:01 +020011260M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +010011261M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11262L: devel@driverdev.osuosl.org
11263S: Maintained
11264T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11265F: Documentation/vme_api.txt
11266F: drivers/staging/vme/
11267F: drivers/vme/
11268F: include/linux/vme*
11269
Alok Kataria4488e092013-09-04 14:23:41 +053011270VMWARE HYPERVISOR INTERFACE
11271M: Alok Kataria <akataria@vmware.com>
11272L: virtualization@lists.linux-foundation.org
11273S: Supported
11274F: arch/x86/kernel/cpu/vmware.c
11275
Dmitry Torokhov73b35d02014-06-20 10:14:58 -070011276VMWARE BALLOON DRIVER
11277M: Xavier Deguillard <xdeguillard@vmware.com>
11278M: Philip Moltmann <moltmann@vmware.com>
11279M: "VMware, Inc." <pv-drivers@vmware.com>
11280L: linux-kernel@vger.kernel.org
11281S: Maintained
11282F: drivers/misc/vmw_balloon.c
11283
Thomas Hellstrom8b8be512015-04-14 10:06:38 -070011284VMWARE VMMOUSE SUBDRIVER
11285M: "VMware Graphics" <linux-graphics-maintainer@vmware.com>
11286M: "VMware, Inc." <pv-drivers@vmware.com>
11287L: linux-input@vger.kernel.org
11288S: Maintained
11289F: drivers/input/mouse/vmmouse.c
11290F: drivers/input/mouse/vmmouse.h
11291
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -070011292VMWARE VMXNET3 ETHERNET DRIVER
Shrikrishna Khare04e1b732015-08-24 14:24:11 -070011293M: Shrikrishna Khare <skhare@vmware.com>
Joe Perches65c8bb52009-11-11 14:26:12 -080011294M: "VMware, Inc." <pv-drivers@vmware.com>
11295L: netdev@vger.kernel.org
11296S: Maintained
11297F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -070011298
Alok Kataria851b1642009-10-13 14:51:05 -070011299VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -080011300M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -070011301M: VMware PV-Drivers <pv-drivers@vmware.com>
11302L: linux-scsi@vger.kernel.org
11303S: Maintained
11304F: drivers/scsi/vmw_pvscsi.c
11305F: drivers/scsi/vmw_pvscsi.h
11306
Liam Girdwoode53e86c2008-07-10 15:48:00 +010011307VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Axel Lin88dd75a2013-03-25 16:49:51 +080011308M: Liam Girdwood <lgirdwood@gmail.com>
Mark Brownb02e48f2013-04-12 11:39:57 +010011309M: Mark Brown <broonie@kernel.org>
Mark Brown5cdeb2c2014-08-16 12:31:11 +010011310L: linux-kernel@vger.kernel.org
Liam Girdwood1dd68f02009-02-02 21:43:31 +000011311W: http://www.slimlogic.co.uk/?p=48
Sachin Kamat6febb5a2013-07-04 12:08:50 +053011312T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +010011313S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070011314F: drivers/regulator/
11315F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +010011316
David Ahern081958e2015-08-25 10:26:22 -070011317VRF
11318M: David Ahern <dsa@cumulusnetworks.com>
11319M: Shrijeet Mukherjee <shm@cumulusnetworks.com>
11320L: netdev@vger.kernel.org
11321S: Maintained
11322F: drivers/net/vrf.c
David Ahern562d8972015-09-15 10:50:14 -060011323F: Documentation/networking/vrf.txt
David Ahern081958e2015-08-25 10:26:22 -070011324
Juerg Haefligerab413192006-09-24 20:54:04 +020011325VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011326M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +020011327L: lm-sensors@lm-sensors.org
11328S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011329F: Documentation/hwmon/vt1211
11330F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +020011331
Roger Lucas1de9e372005-11-26 20:20:05 +010011332VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011333M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +010011334L: lm-sensors@lm-sensors.org
11335S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011336F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +010011337
Tony Olech88095e72011-05-14 16:48:13 -040011338VUB300 USB to SDIO/SD/MMC bridge chip
11339M: Tony Olech <tony.olech@elandigitalsystems.com>
11340L: linux-mmc@vger.kernel.org
11341L: linux-usb@vger.kernel.org
11342S: Supported
11343F: drivers/mmc/host/vub300.c
11344
Linus Torvalds1da177e2005-04-16 15:20:36 -070011345W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -070011346M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011347S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011348F: Documentation/w1/
11349F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011350
Charles Spirakis13927072006-07-05 18:05:15 +020011351W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011352M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +020011353L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -040011354S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011355F: Documentation/hwmon/w83791d
11356F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +020011357
Rudolf Marek61db0112006-12-12 18:18:30 +010011358W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011359M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +010011360L: lm-sensors@lm-sensors.org
11361S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011362F: Documentation/hwmon/w83793
11363F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +010011364
Jean Delvaree3760b42010-10-28 20:31:49 +020011365W83795 HARDWARE MONITORING DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -070011366M: Jean Delvare <jdelvare@suse.com>
Jean Delvaree3760b42010-10-28 20:31:49 +020011367L: lm-sensors@lm-sensors.org
11368S: Maintained
11369F: drivers/hwmon/w83795.c
11370
Linus Torvalds1da177e2005-04-16 15:20:36 -070011371W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011372M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011373S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011374F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011375
Hans de Goedeb4e05922014-07-20 13:35:44 -070011376WACOM PROTOCOL 4 SERIAL TABLETS
11377M: Julian Squires <julian@cipht.net>
11378M: Hans de Goede <hdegoede@redhat.com>
11379L: linux-input@vger.kernel.org
11380S: Maintained
11381F: drivers/input/tablet/wacom_serial4.c
11382
Wim Van Sebroeck35277612006-01-15 21:21:14 +010011383WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -070011384M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +000011385L: linux-watchdog@vger.kernel.org
11386W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +010011387T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +010011388S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011389F: Documentation/watchdog/
11390F: drivers/watchdog/
11391F: include/linux/watchdog.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011392F: include/uapi/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +010011393
Linus Torvalds1da177e2005-04-16 15:20:36 -070011394WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011395M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011396L: linux-scsi@vger.kernel.org
11397S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011398F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070011399
David Herrmannb22e00f2011-09-06 13:50:40 +020011400WIIMOTE HID DRIVER
11401M: David Herrmann <dh.herrmann@googlemail.com>
11402L: linux-input@vger.kernel.org
11403S: Maintained
11404F: drivers/hid/hid-wiimote*
11405
David Härdemane258b802009-09-21 17:04:53 -070011406WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -070011407M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -070011408S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -070011409F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -070011410
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -080011411WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -070011412M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -080011413M: linux-wimax@intel.com
Joe Perches49e7d9d2015-04-15 16:17:31 -070011414L: wimax@linuxwimax.org (subscribers-only)
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -080011415S: Supported
11416W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -070011417F: Documentation/wimax/README.wimax
Joe Perches315987d2010-08-09 17:20:50 -070011418F: include/linux/wimax/debug.h
11419F: include/net/wimax.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011420F: include/uapi/linux/wimax.h
Joe Perches315987d2010-08-09 17:20:50 -070011421F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -080011422
Dmitry Torokhov5fc146802005-11-20 00:50:06 -050011423WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011424M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -050011425S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011426F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -050011427
Linus Torvalds1da177e2005-04-16 15:20:36 -070011428WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011429M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -070011430L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -030011431W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -070011432S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011433F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011434
Mark Brown055bcbc2010-08-13 14:18:12 +010011435WOLFSON MICROELECTRONICS DRIVERS
Mark Brownfef95162012-04-04 12:06:24 +010011436L: patches@opensource.wolfsonmicro.com
Richard Fitzgeraldf0e03db2015-09-22 15:30:33 +010011437T: git https://github.com/CirrusLogic/linux-drivers.git
11438W: https://github.com/CirrusLogic/linux-drivers/wiki
Mark Brownb75ea162009-07-02 16:43:08 +010011439S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -080011440F: Documentation/hwmon/wm83??
Mark Brownaf1c5382011-10-14 21:09:43 +010011441F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +010011442F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +010011443F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +010011444F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +010011445F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +010011446F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -050011447F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +090011448F: drivers/input/misc/wm831x-on.c
11449F: drivers/input/touchscreen/wm831x-ts.c
11450F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +010011451F: drivers/mfd/arizona*
11452F: drivers/mfd/wm*.c
Mark Brownb75ea162009-07-02 16:43:08 +010011453F: drivers/power/wm83*.c
11454F: drivers/rtc/rtc-wm83*.c
11455F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +010011456F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +010011457F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +010011458F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +010011459F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +010011460F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -080011461F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +090011462F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +010011463F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +010011464F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +010011465F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +010011466
Tejun Heo3e6cd7a2010-12-10 17:20:23 +010011467WORKQUEUE
11468M: Tejun Heo <tj@kernel.org>
Lai Jiangshanbadb7f52015-07-01 15:38:04 +080011469R: Lai Jiangshan <jiangshanlai@gmail.com>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +010011470T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
11471S: Maintained
11472F: include/linux/workqueue.h
11473F: kernel/workqueue.c
11474F: Documentation/workqueue.txt
11475
Linus Torvalds1da177e2005-04-16 15:20:36 -070011476X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +000011477M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011478L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +000011479S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -070011480F: Documentation/networking/x25*
11481F: include/net/x25*
11482F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011483
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011484X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -070011485M: Thomas Gleixner <tglx@linutronix.de>
11486M: Ingo Molnar <mingo@redhat.com>
11487M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -080011488M: x86@kernel.org
Ingo Molnar981c3a42014-01-21 10:59:20 +010011489L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +010011490T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011491S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011492F: Documentation/x86/
11493F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011494
Matthew Garrettd09448532010-02-11 10:40:13 -050011495X86 PLATFORM DRIVERS
Darren Harte181ba12014-08-27 23:36:06 -070011496M: Darren Hart <dvhart@infradead.org>
Matthew Garrettd09448532010-02-11 10:40:13 -050011497L: platform-driver-x86@vger.kernel.org
Darren Harte181ba12014-08-27 23:36:06 -070011498T: git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
Matthew Garrettd09448532010-02-11 10:40:13 -050011499S: Maintained
Joe Perches14430812013-09-11 14:23:50 -070011500F: drivers/platform/x86/
Matthew Garrettd09448532010-02-11 10:40:13 -050011501
Ingo Molnarc1f5c542011-06-18 22:51:13 +020011502X86 MCE INFRASTRUCTURE
11503M: Tony Luck <tony.luck@intel.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +010011504M: Borislav Petkov <bp@alien8.de>
Ingo Molnarc1f5c542011-06-18 22:51:13 +020011505L: linux-edac@vger.kernel.org
11506S: Maintained
11507F: arch/x86/kernel/cpu/mcheck/*
11508
Andy Lutomirskif0905c52014-12-12 16:25:47 -080011509X86 VDSO
11510M: Andy Lutomirski <luto@amacapital.net>
11511L: linux-kernel@vger.kernel.org
11512T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
11513S: Maintained
Ingo Molnard603c8e2015-06-03 18:05:44 +020011514F: arch/x86/entry/vdso/
Andy Lutomirskif0905c52014-12-12 16:25:47 -080011515
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -020011516XC2028/3028 TUNER DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -020011517M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -020011518L: linux-media@vger.kernel.org
11519W: http://linuxtv.org
11520T: git git://linuxtv.org/media_tree.git
11521S: Maintained
11522F: drivers/media/tuners/tuner-xc2028.*
11523
Ian Campbellc4468082011-04-27 15:26:46 -070011524XEN HYPERVISOR INTERFACE
Ian Campbellc4468082011-04-27 15:26:46 -070011525M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Konrad Rzeszutek Wilk3eeef8f2013-08-05 14:01:49 -040011526M: Boris Ostrovsky <boris.ostrovsky@oracle.com>
11527M: David Vrabel <david.vrabel@citrix.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040011528L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
David Vrabelea70ba32014-01-17 11:51:51 +000011529T: git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
Ian Campbellc4468082011-04-27 15:26:46 -070011530S: Supported
11531F: arch/x86/xen/
11532F: drivers/*/xen-*front.c
11533F: drivers/xen/
11534F: arch/x86/include/asm/xen/
11535F: include/xen/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011536F: include/uapi/xen/
Ian Campbellc4468082011-04-27 15:26:46 -070011537
Stefano Stabellini77bfb472012-09-14 13:35:15 +000011538XEN HYPERVISOR ARM
11539M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040011540L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
Stefano Stabellini77bfb472012-09-14 13:35:15 +000011541S: Supported
11542F: arch/arm/xen/
11543F: arch/arm/include/asm/xen/
11544
Stefano Stabellinib475e832013-06-04 16:13:23 +000011545XEN HYPERVISOR ARM64
11546M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040011547L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
Stefano Stabellinib475e832013-06-04 16:13:23 +000011548S: Supported
11549F: arch/arm64/xen/
11550F: arch/arm64/include/asm/xen/
11551
Ian Campbell9b57e1a2011-04-03 23:12:23 +000011552XEN NETWORK BACKEND DRIVER
11553M: Ian Campbell <ian.campbell@citrix.com>
Wei Liu83860402013-09-26 12:41:53 +010011554M: Wei Liu <wei.liu2@citrix.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040011555L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
Ian Campbell9b57e1a2011-04-03 23:12:23 +000011556L: netdev@vger.kernel.org
11557S: Supported
11558F: drivers/net/xen-netback/*
11559
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -040011560XEN PCI SUBSYSTEM
11561M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040011562L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +020011563S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -040011564F: arch/x86/pci/*xen*
11565F: drivers/pci/*xen*
11566
Konrad Rzeszutek Wilka2c5ae62014-06-27 10:10:45 -040011567XEN BLOCK SUBSYSTEM
11568M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Roger Pau Monnebcadb692015-01-23 17:14:29 +010011569M: Roger Pau Monné <roger.pau@citrix.com>
Konrad Rzeszutek Wilka2c5ae62014-06-27 10:10:45 -040011570L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
11571S: Supported
11572F: drivers/block/xen-blkback/*
11573F: drivers/block/xen*
11574
Juergen Gross15d03602014-08-28 06:44:13 +020011575XEN PVSCSI DRIVERS
11576M: Juergen Gross <jgross@suse.com>
11577L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
11578L: linux-scsi@vger.kernel.org
11579S: Supported
11580F: drivers/scsi/xen-scsifront.c
11581F: drivers/xen/xen-scsiback.c
11582F: include/xen/interface/io/vscsiif.h
11583
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -040011584XEN SWIOTLB SUBSYSTEM
11585M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040011586L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -040011587S: Supported
11588F: arch/x86/xen/*swiotlb*
11589F: drivers/xen/*swiotlb*
11590
Linus Torvalds1da177e2005-04-16 15:20:36 -070011591XFS FILESYSTEM
11592P: Silicon Graphics Inc
Namjae Jeon809625c2013-12-08 23:33:50 +090011593M: Dave Chinner <david@fromorbit.com>
Ben Myers18caa672012-04-12 17:05:05 +000011594M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +100011595L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -070011596W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -070011597T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070011598S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070011599F: Documentation/filesystems/xfs.txt
11600F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011601
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +000011602XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +000011603M: Anirudha Sarangi <anirudh@xilinx.com>
11604M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +000011605S: Maintained
11606F: drivers/net/ethernet/xilinx/xilinx_axienet*
11607
Peter Korsgaard238b8722006-12-06 20:35:17 -080011608XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011609M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -080011610L: linux-serial@vger.kernel.org
11611S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -080011612F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -080011613
Laurent Pinchartdf330512013-05-15 11:36:19 -030011614XILINX VIDEO IP CORES
11615M: Hyun Kwon <hyun.kwon@xilinx.com>
11616M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11617L: linux-media@vger.kernel.org
11618T: git git://linuxtv.org/media_tree.git
11619S: Supported
11620F: Documentation/devicetree/bindings/media/xilinx/
11621F: drivers/media/platform/xilinx/
Laurent Pincharta5562f62013-05-15 11:36:56 -030011622F: include/uapi/linux/xilinx-v4l2-controls.h
Laurent Pinchartdf330512013-05-15 11:36:19 -030011623
Eli Billauer74316942014-09-09 09:38:01 +030011624XILLYBUS DRIVER
11625M: Eli Billauer <eli.billauer@gmail.com>
11626L: linux-kernel@vger.kernel.org
11627S: Supported
11628F: drivers/char/xillybus/
11629
Max Filippovf620e4b2014-03-12 21:55:26 +040011630XTENSA XTFPGA PLATFORM SUPPORT
11631M: Max Filippov <jcmvbkbc@gmail.com>
11632L: linux-xtensa@linux-xtensa.org
11633S: Maintained
11634F: drivers/spi/spi-xtensa-xtfpga.c
Max Filippov57b70682014-12-26 20:19:38 +030011635F: sound/soc/xtensa/xtfpga-i2s.c
Max Filippovf620e4b2014-03-12 21:55:26 +040011636
Linus Torvalds1da177e2005-04-16 15:20:36 -070011637YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -070011638M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011639L: linux-hams@vger.kernel.org
11640S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011641F: drivers/net/hamradio/yam*
11642F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011643
Henkaf64a5e2005-10-12 15:02:56 +020011644YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011645M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +020011646L: usbb2k-api-dev@nongnu.org
11647S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011648F: Documentation/input/yealink.txt
11649F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +020011650
Linus Torvalds1da177e2005-04-16 15:20:36 -070011651Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -070011652M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011653W: http://yaina.de/jreuter/
11654W: http://www.qsl.net/dl1bke/
11655L: linux-hams@vger.kernel.org
11656S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011657F: Documentation/networking/z8530drv.txt
11658F: drivers/net/hamradio/*scc.c
11659F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011660
Seth Jennings0cf31ec2013-07-08 16:00:05 -070011661ZBUD COMPRESSED PAGE ALLOCATOR
Seth Jennings0e3b7e52014-05-06 12:50:02 -070011662M: Seth Jennings <sjennings@variantweb.net>
Seth Jennings0cf31ec2013-07-08 16:00:05 -070011663L: linux-mm@kvack.org
11664S: Maintained
11665F: mm/zbud.c
11666F: include/linux/zbud.h
11667
Daniel Drake7c0c3af2006-07-16 13:55:17 +010011668ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011669M: Daniel Drake <dsd@gentoo.org>
11670M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +010011671W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -070011672L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +010011673L: zd1211-devs@lists.sourceforge.net (subscribers-only)
11674S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011675F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +010011676
Dan Streetman20263022015-06-30 14:59:57 -070011677ZPOOL COMPRESSED PAGE STORAGE API
11678M: Dan Streetman <ddstreet@ieee.org>
11679L: linux-mm@kvack.org
11680S: Maintained
11681F: mm/zpool.c
11682F: include/linux/zpool.h
11683
Linus Torvalds1da177e2005-04-16 15:20:36 -070011684ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -070011685L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -030011686L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070011687W: http://mjpeg.sourceforge.net/driver-zoran/
Joe Perchescea83212014-03-03 15:38:38 -080011688T: hg http://linuxtv.org/hg/v4l-dvb
Trent Piephof63145e2009-01-24 20:52:41 -030011689S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -030011690F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011691
Minchan Kim6920f2c2014-01-30 15:45:56 -080011692ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
11693M: Minchan Kim <minchan@kernel.org>
11694M: Nitin Gupta <ngupta@vflare.org>
Minchan Kim74f30372015-05-05 16:23:28 -070011695R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
Minchan Kim6920f2c2014-01-30 15:45:56 -080011696L: linux-kernel@vger.kernel.org
11697S: Maintained
11698F: drivers/block/zram/
11699F: Documentation/blockdev/zram.txt
11700
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -070011701ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011702M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -070011703S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -080011704F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -070011705
Minchan Kimeae70d02014-01-30 15:45:57 -080011706ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
11707M: Minchan Kim <minchan@kernel.org>
11708M: Nitin Gupta <ngupta@vflare.org>
Sergey Senozhatsky41192a22015-10-22 13:32:13 -070011709R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
Minchan Kimeae70d02014-01-30 15:45:57 -080011710L: linux-mm@kvack.org
11711S: Maintained
11712F: mm/zsmalloc.c
11713F: include/linux/zsmalloc.h
Minchan Kimd02be502015-04-15 16:15:46 -070011714F: Documentation/vm/zsmalloc.txt
Minchan Kimeae70d02014-01-30 15:45:57 -080011715
Seth Jennings0cf31ec2013-07-08 16:00:05 -070011716ZSWAP COMPRESSED SWAP CACHING
Seth Jennings0e3b7e52014-05-06 12:50:02 -070011717M: Seth Jennings <sjennings@variantweb.net>
Seth Jennings0cf31ec2013-07-08 16:00:05 -070011718L: linux-mm@kvack.org
11719S: Maintained
11720F: mm/zswap.c
11721
Linus Torvalds1da177e2005-04-16 15:20:36 -070011722THE REST
Joe Perches8b58be82009-07-29 15:04:30 -070011723M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -070011724L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -080011725Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -040011726T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070011727S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -070011728F: *
11729F: */