blob: 8f10834124a94fa4134aeef157702e681a9a3e9d [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
William Breathitt Graye2558982015-10-28 17:24:16 -0400243ACCES 104-IDIO-16 GPIO DRIVER
244M: "William Breathitt Gray" <vilhelm.gray@gmail.com>
245L: linux-gpio@vger.kernel.org
246S: Maintained
247F: drivers/gpio/gpio-104-idio-16.c
248
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249ACENIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700250M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251L: linux-acenic@sunsite.dk
252S: Maintained
Jeff Kirsher531c4f82011-08-13 00:37:14 -0700253F: drivers/net/ethernet/alteon/acenic*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Peter Feuerere86435e2009-06-21 18:53:03 +0200255ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700256M: Peter Feuerer <peter@piie.net>
Matthew Garrettd0944852010-02-11 10:40:13 -0500257L: platform-driver-x86@vger.kernel.org
Joe Perches4fc26e32009-07-29 15:04:22 -0700258W: http://piie.net/?section=acerhdf
259S: Maintained
260F: drivers/platform/x86/acerhdf.c
Peter Feuerere86435e2009-06-21 18:53:03 +0200261
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000262ACER WMI LAPTOP EXTRAS
Lee, Chun-Yi182ae552012-12-14 16:14:24 +0800263M: "Lee, Chun-Yi" <jlee@suse.com>
Matthew Garrettd0944852010-02-11 10:40:13 -0500264L: platform-driver-x86@vger.kernel.org
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000265S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700266F: drivers/platform/x86/acer-wmi.c
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000267
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268ACPI
Joe Perches9c3646d2015-06-25 15:02:00 -0700269M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Rafael J. Wysocki7fb06082014-03-20 03:34:47 +0100270M: Len Brown <lenb@kernel.org>
Len Brown6968e502005-12-30 00:32:49 -0500271L: linux-acpi@vger.kernel.org
Rafael J. Wysocki360818b2013-10-09 01:48:26 +0200272W: https://01.org/linux-acpi
273Q: https://patchwork.kernel.org/project/linux-acpi/list/
274T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
Len Brown8b59a452007-01-08 19:03:28 -0500275S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700276F: drivers/acpi/
277F: drivers/pnp/pnpacpi/
278F: include/linux/acpi.h
Felipe Contreras43368e72009-09-21 17:04:24 -0700279F: include/acpi/
Yaowei Bai3a75ef02015-01-17 15:31:07 +0800280F: Documentation/acpi/
Lv Zheng89ca78a2013-06-20 08:02:44 +0800281F: Documentation/ABI/testing/sysfs-bus-acpi
Bjorn Helgaas15fd8302013-06-26 13:38:37 -0600282F: drivers/pci/*acpi*
283F: drivers/pci/*/*acpi*
284F: drivers/pci/*/*/*acpi*
Yaowei Bai3a75ef02015-01-17 15:31:07 +0800285F: tools/power/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500286
Rafael J. Wysocki37749292013-10-09 01:48:35 +0200287ACPI COMPONENT ARCHITECTURE (ACPICA)
288M: Robert Moore <robert.moore@intel.com>
289M: Lv Zheng <lv.zheng@intel.com>
Joe Perches9c3646d2015-06-25 15:02:00 -0700290M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
Rafael J. Wysocki37749292013-10-09 01:48:35 +0200291L: linux-acpi@vger.kernel.org
292L: devel@acpica.org
293W: https://acpica.org/
294W: https://github.com/acpica/acpica/
295Q: https://patchwork.kernel.org/project/linux-acpi/list/
296T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
297S: Supported
298F: drivers/acpi/acpica/
299F: include/acpi/
Lv Zheng2754c442014-01-15 12:04:24 +0800300F: tools/power/acpi/
Rafael J. Wysocki37749292013-10-09 01:48:35 +0200301
Len Brown8b59a452007-01-08 19:03:28 -0500302ACPI FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700303M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500304L: linux-acpi@vger.kernel.org
Rafael J. Wysocki5ca92bd2013-10-10 23:03:44 +0200305W: https://01.org/linux-acpi
Len Brown8b59a452007-01-08 19:03:28 -0500306S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700307F: drivers/acpi/fan.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Len Brown8b59a452007-01-08 19:03:28 -0500309ACPI THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700310M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500311L: linux-acpi@vger.kernel.org
Rafael J. Wysocki5ca92bd2013-10-10 23:03:44 +0200312W: https://01.org/linux-acpi
Len Brown8b59a452007-01-08 19:03:28 -0500313S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700314F: drivers/acpi/*thermal*
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700315
Len Brown359acec2007-02-10 01:59:24 -0500316ACPI VIDEO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700317M: Zhang Rui <rui.zhang@intel.com>
Len Brown359acec2007-02-10 01:59:24 -0500318L: linux-acpi@vger.kernel.org
Rafael J. Wysocki5ca92bd2013-10-10 23:03:44 +0200319W: https://01.org/linux-acpi
Len Brown359acec2007-02-10 01:59:24 -0500320S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700321F: drivers/acpi/video.c
Len Brown359acec2007-02-10 01:59:24 -0500322
Carlos Corbachobff431e2008-02-05 02:17:04 +0000323ACPI WMI DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -0500324L: platform-driver-x86@vger.kernel.org
Carlos Corbacho5b927252011-05-02 09:57:13 +0100325S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700326F: drivers/platform/x86/wmi.c
Carlos Corbachobff431e2008-02-05 02:17:04 +0000327
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100328AD1889 ALSA SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700329M: Thibaut Varene <T-Bone@parisc-linux.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200330W: http://wiki.parisc-linux.org/AD1889
331L: linux-parisc@vger.kernel.org
332S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700333F: sound/pci/ad1889.*
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100334
Michael Hennerich527a1a82010-10-28 11:31:28 +0000335AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
336M: Michael Hennerich <michael.hennerich@analog.com>
Joe Perchesa3f531a2011-03-22 16:34:28 -0700337W: http://wiki.analog.com/AD5254
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800338W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000339S: Supported
340F: drivers/misc/ad525x_dpot.c
341
342AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
343M: Michael Hennerich <michael.hennerich@analog.com>
Joe Perchesa3f531a2011-03-22 16:34:28 -0700344W: http://wiki.analog.com/AD5398
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800345W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000346S: Supported
347F: drivers/regulator/ad5398.c
348
349AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
350M: Michael Hennerich <michael.hennerich@analog.com>
Joe Perchesa3f531a2011-03-22 16:34:28 -0700351W: http://wiki.analog.com/AD7142
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800352W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000353S: Supported
354F: drivers/input/misc/ad714x.c
355
356AD7877 TOUCHSCREEN DRIVER
357M: Michael Hennerich <michael.hennerich@analog.com>
Joe Perchesa3f531a2011-03-22 16:34:28 -0700358W: http://wiki.analog.com/AD7877
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800359W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000360S: Supported
361F: drivers/input/touchscreen/ad7877.c
362
363AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
364M: Michael Hennerich <michael.hennerich@analog.com>
Joe Perchesa3f531a2011-03-22 16:34:28 -0700365W: http://wiki.analog.com/AD7879
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800366W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000367S: Supported
368F: drivers/input/touchscreen/ad7879.c
369
Jiri Kosina1330b0d2011-10-31 17:11:41 -0700370ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
Jiri Kosinae5f64502015-08-09 09:11:34 +0200371M: Jiri Kosina <jikos@kernel.org>
Jiri Kosina1330b0d2011-10-31 17:11:41 -0700372S: Maintained
373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374ADM1025 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -0700375M: Jean Delvare <jdelvare@suse.com>
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200376L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700378F: Documentation/hwmon/adm1025
379F: drivers/hwmon/adm1025.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
Corentin Labbecae2caa2007-02-14 21:15:04 +0100381ADM1029 HARDWARE MONITOR DRIVER
LABBE Corentinfce8ffa2014-05-08 16:07:45 +0200382M: Corentin Labbe <clabbe.montjoie@gmail.com>
Corentin Labbecae2caa2007-02-14 21:15:04 +0100383L: lm-sensors@lm-sensors.org
384S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700385F: drivers/hwmon/adm1029.c
Corentin Labbecae2caa2007-02-14 21:15:04 +0100386
Michael Wucc0b88c2007-08-31 01:15:25 -0400387ADM8211 WIRELESS DRIVER
Michael Wucc0b88c2007-08-31 01:15:25 -0400388L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +0200389W: http://wireless.kernel.org/
John W. Linvillee71bcbd2010-07-12 16:03:07 -0400390S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700391F: drivers/net/wireless/adm8211.*
Michael Wucc0b88c2007-08-31 01:15:25 -0400392
Sakari Ailuse8e31622012-11-12 18:14:39 -0300393ADP1653 FLASH CONTROLLER DRIVER
394M: Sakari Ailus <sakari.ailus@iki.fi>
395L: linux-media@vger.kernel.org
396S: Maintained
397F: drivers/media/i2c/adp1653.c
398F: include/media/adp1653.h
399
Michael Hennerich527a1a82010-10-28 11:31:28 +0000400ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
401M: Michael Hennerich <michael.hennerich@analog.com>
Joe Perchesa3f531a2011-03-22 16:34:28 -0700402W: http://wiki.analog.com/ADP5520
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800403W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000404S: Supported
405F: drivers/mfd/adp5520.c
406F: drivers/video/backlight/adp5520_bl.c
Joe Perches45b4e0d2011-03-22 16:34:27 -0700407F: drivers/leds/leds-adp5520.c
Joe Perches77278d52012-01-10 15:08:44 -0800408F: drivers/gpio/gpio-adp5520.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000409F: drivers/input/keyboard/adp5520-keys.c
410
411ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
412M: Michael Hennerich <michael.hennerich@analog.com>
Joe Perchesa3f531a2011-03-22 16:34:28 -0700413W: http://wiki.analog.com/ADP5588
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800414W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000415S: Supported
416F: drivers/input/keyboard/adp5588-keys.c
Joe Perches77278d52012-01-10 15:08:44 -0800417F: drivers/gpio/gpio-adp5588.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000418
419ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
420M: Michael Hennerich <michael.hennerich@analog.com>
Joe Perchesa3f531a2011-03-22 16:34:28 -0700421W: http://wiki.analog.com/ADP8860
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800422W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000423S: Supported
424F: drivers/video/backlight/adp8860_bl.c
425
Dirk Eibach8c22a8f2011-03-21 17:59:36 +0100426ADS1015 HARDWARE MONITOR DRIVER
427M: Dirk Eibach <eibach@gdsys.de>
428L: lm-sensors@lm-sensors.org
429S: Maintained
430F: Documentation/hwmon/ads1015
431F: drivers/hwmon/ads1015.c
432F: include/linux/i2c/ads1015.h
433
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434ADT746X FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700435M: Colin Leroy <colin@colino.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700437F: drivers/macintosh/therm_adt746x.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
Jean Delvareb058b852009-12-09 20:36:08 +0100439ADT7475 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -0700440M: Jean Delvare <jdelvare@suse.com>
Jean Delvareb058b852009-12-09 20:36:08 +0100441L: lm-sensors@lm-sensors.org
442S: Maintained
443F: Documentation/hwmon/adt7475
444F: drivers/hwmon/adt7475.c
445
Michael Hennerich527a1a82010-10-28 11:31:28 +0000446ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
447M: Michael Hennerich <michael.hennerich@analog.com>
Joe Perchesa3f531a2011-03-22 16:34:28 -0700448W: http://wiki.analog.com/ADXL345
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800449W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000450S: Supported
451F: drivers/input/misc/adxl34x.c
452
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400453ADVANSYS SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700454M: Matthew Wilcox <matthew@wil.cx>
Jiri Slabyd8130622015-07-17 16:23:20 -0700455M: Hannes Reinecke <hare@suse.com>
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400456L: linux-scsi@vger.kernel.org
457S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700458F: Documentation/scsi/advansys.txt
459F: drivers/scsi/advansys.c
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400460
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461AEDSP16 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700462M: Riccardo Facchetti <fizban@tin.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700464F: sound/oss/aedsp16.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
Antti Palosaari91952bc2012-10-01 12:28:46 -0300466AF9013 MEDIA DRIVER
467M: Antti Palosaari <crope@iki.fi>
468L: linux-media@vger.kernel.org
469W: http://linuxtv.org/
470W: http://palosaari.fi/linux/
471Q: http://patchwork.linuxtv.org/project/linux-media/list/
472T: git git://linuxtv.org/anttip/media_tree.git
473S: Maintained
474F: drivers/media/dvb-frontends/af9013*
475
476AF9033 MEDIA DRIVER
477M: Antti Palosaari <crope@iki.fi>
478L: linux-media@vger.kernel.org
479W: http://linuxtv.org/
480W: http://palosaari.fi/linux/
481Q: http://patchwork.linuxtv.org/project/linux-media/list/
482T: git git://linuxtv.org/anttip/media_tree.git
483S: Maintained
484F: drivers/media/dvb-frontends/af9033*
485
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486AFFS FILE SYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +0200487L: linux-fsdevel@vger.kernel.org
488S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700489F: Documentation/filesystems/affs.txt
490F: fs/affs/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700492AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
Joe Perches8b58be82009-07-29 15:04:30 -0700493M: David Howells <dhowells@redhat.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700494L: linux-afs@lists.infradead.org
495S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700496F: fs/afs/
497F: include/net/af_rxrpc.h
498F: net/rxrpc/af_rxrpc.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700499
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500AGPGART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700501M: David Airlie <airlied@linux.ie>
Dave Airlie878eaf62014-02-27 14:51:55 +1000502T: git git://people.freedesktop.org/~airlied/linux (part of drm maint)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700504F: drivers/char/agp/
505F: include/linux/agp*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -0800506F: include/uapi/linux/agp*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
508AHA152X SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700509M: "Juergen E. Fischer" <fischer@norbit.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510L: linux-scsi@vger.kernel.org
511S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700512F: drivers/scsi/aha152x*
513F: drivers/scsi/pcmcia/aha152x*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
Hannes Reinecke64624d42007-10-19 10:32:29 +0200515AIC7XXX / AIC79XX SCSI DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -0700516M: Hannes Reinecke <hare@suse.com>
Hannes Reinecke64624d42007-10-19 10:32:29 +0200517L: linux-scsi@vger.kernel.org
518S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700519F: drivers/scsi/aic7xxx/
Hannes Reinecke64624d42007-10-19 10:32:29 +0200520
Hans Verkuil450500a2012-11-23 07:11:33 -0300521AIMSLAB FM RADIO RECEIVER DRIVER
522M: Hans Verkuil <hverkuil@xs4all.nl>
523L: linux-media@vger.kernel.org
524T: git git://linuxtv.org/media_tree.git
525W: http://linuxtv.org
526S: Maintained
527F: drivers/media/radio/radio-aimslab*
528
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700529AIO
Joe Perches8b58be82009-07-29 15:04:30 -0700530M: Benjamin LaHaise <bcrl@kvack.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700531L: linux-aio@kvack.org
532S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700533F: fs/aio.c
534F: include/linux/*aio*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700535
Antti Palosaari469d4ec2014-07-17 21:57:14 -0300536AIRSPY MEDIA DRIVER
537M: Antti Palosaari <crope@iki.fi>
538L: linux-media@vger.kernel.org
539W: http://linuxtv.org/
540W: http://palosaari.fi/linux/
541Q: http://patchwork.linuxtv.org/project/linux-media/list/
542T: git git://linuxtv.org/anttip/media_tree.git
543S: Maintained
544F: drivers/media/usb/airspy/
545
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546ALCATEL SPEEDTOUCH USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700547M: Duncan Sands <duncan.sands@free.fr>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -0700548L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549W: http://www.linux-usb.org/SpeedTouch/
550S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700551F: drivers/usb/atm/speedtch.c
552F: drivers/usb/atm/usbatm.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
Pierre Ossman272f1332007-05-14 21:25:26 +0200554ALCHEMY AU1XX0 MMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700555M: Manuel Lauss <manuel.lauss@gmail.com>
Manuel Lauss08fcb722008-06-09 08:40:35 +0200556S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700557F: drivers/mmc/host/au1xmmc.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200558
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000559ALI1563 I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700560M: Rudolf Marek <r.marek@assembler.cz>
Jean Delvare846557d2008-10-30 15:55:47 +0100561L: linux-i2c@vger.kernel.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000562S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700563F: Documentation/i2c/busses/i2c-ali1563
564F: drivers/i2c/busses/i2c-ali1563.c
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000565
LABBE Corentinbc368792015-07-17 16:39:42 +0200566ALLWINNER SECURITY SYSTEM
567M: Corentin Labbe <clabbe.montjoie@gmail.com>
568L: linux-crypto@vger.kernel.org
569S: Maintained
570F: drivers/crypto/sunxi-ss/
571
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572ALPHA PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700573M: Richard Henderson <rth@twiddle.net>
Joe Perches8b58be82009-07-29 15:04:30 -0700574M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Matt Turnerabd4d602010-01-14 13:15:20 -0500575M: Matt Turner <mattst88@gmail.com>
Joe Perchesc89f4f92012-03-23 15:01:57 -0700576S: Odd Fixes
Cheng Renquana9406692009-03-31 15:23:35 -0700577L: linux-alpha@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -0700578F: arch/alpha/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Ley Foon Tanf62092f2015-02-04 16:32:18 +0800580ALTERA MAILBOX DRIVER
581M: Ley Foon Tan <lftan@altera.com>
582L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
583S: Maintained
584F: drivers/mailbox/mailbox-altera.c
585
Tien Hock Lohc5abbba2015-02-24 01:53:03 -0800586ALTERA PIO DRIVER
587M: Tien Hock Loh <thloh@altera.com>
588L: linux-gpio@vger.kernel.org
589S: Maintained
590F: drivers/gpio/gpio-altera.c
591
Vince Bridgers16b8b922014-03-17 17:52:40 -0500592ALTERA TRIPLE SPEED ETHERNET DRIVER
Vince Bridgersc53fed02014-10-09 10:08:42 -0500593M: Vince Bridgers <vbridger@opensource.altera.com>
Vince Bridgers16b8b922014-03-17 17:52:40 -0500594L: netdev@vger.kernel.org
595L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
596S: Maintained
597F: drivers/net/ethernet/altera/
598
Tobias Klauseradf92512011-02-09 10:58:29 +0100599ALTERA UART/JTAG UART SERIAL DRIVERS
600M: Tobias Klauser <tklauser@distanz.ch>
601L: linux-serial@vger.kernel.org
Tobias Klauser61bd0942014-02-25 15:01:49 -0800602L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
Tobias Klauseradf92512011-02-09 10:58:29 +0100603S: Maintained
604F: drivers/tty/serial/altera_uart.c
605F: drivers/tty/serial/altera_jtaguart.c
606F: include/linux/altera_uart.h
607F: include/linux/altera_jtaguart.h
608
Tom Lendackyf4875e12013-11-12 11:46:57 -0600609AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
610M: Tom Lendacky <thomas.lendacky@amd.com>
611L: linux-crypto@vger.kernel.org
612S: Supported
613F: drivers/crypto/ccp/
614F: include/linux/ccp.h
615
Andreas Herrmann512d1022011-05-25 20:43:31 +0200616AMD FAM15H PROCESSOR POWER MONITORING DRIVER
Andreas Herrmannd034fbf2012-10-29 18:50:47 +0100617M: Andreas Herrmann <herrmann.der.user@googlemail.com>
Andreas Herrmann512d1022011-05-25 20:43:31 +0200618L: lm-sensors@lm-sensors.org
619S: Maintained
620F: Documentation/hwmon/fam15h_power
621F: drivers/hwmon/fam15h_power.c
622
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700623AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
Jordan Crouse67d76712008-05-12 14:02:22 -0700624L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Greg Kroah-Hartmanb4731972015-09-25 20:45:27 -0700625S: Orphan
Joe Perchesfaf2e1d2014-08-08 14:26:18 -0700626F: drivers/usb/gadget/udc/amd5536udc.*
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700627
Jordan Crousef90b8112006-01-06 00:12:14 -0800628AMD GEODE PROCESSOR/CHIPSET SUPPORT
Andres Salomon69006092010-12-21 17:24:23 -0800629P: Andres Salomon <dilinger@queued.net>
Jordan Crouse67d76712008-05-12 14:02:22 -0700630L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Jordan Crousef90b8112006-01-06 00:12:14 -0800631W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
632S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700633F: drivers/char/hw_random/geode-rng.c
634F: drivers/crypto/geode*
Jingoo Han8a61f012014-07-01 15:36:01 +0900635F: drivers/video/fbdev/geode/
Joe Perches679655d2009-04-07 20:44:32 -0700636F: arch/x86/include/asm/geode.h
Jordan Crousef90b8112006-01-06 00:12:14 -0800637
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200638AMD IOMMU (AMD-VI)
Joerg Roedele4110562012-10-23 16:16:23 +0200639M: Joerg Roedel <joro@8bytes.org>
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200640L: iommu@lists.linux-foundation.org
Joerg Roedel525b2332012-03-15 11:56:44 +0100641T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
Joerg Roedele4110562012-10-23 16:16:23 +0200642S: Maintained
Joe Perchesb2c16392011-12-08 20:21:40 -0800643F: drivers/iommu/amd_iommu*.[ch]
644F: include/linux/amd-iommu.h
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200645
Oded Gabbay16423d62014-07-15 13:08:36 +0300646AMD KFD
Oded Gabbay1241e0b2015-05-10 12:37:28 +0300647M: Oded Gabbay <oded.gabbay@gmail.com>
Joe Perches49e7d9d2015-04-15 16:17:31 -0700648L: dri-devel@lists.freedesktop.org
649T: git git://people.freedesktop.org/~gabbayo/linux.git
650S: Supported
Oded Gabbay130e0372015-06-12 21:35:14 +0300651F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
652F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
Oded Gabbay32c22e92015-06-12 21:38:22 +0300653F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
Ben Gozff758a12014-10-07 14:43:07 +0300654F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
Joe Perches49e7d9d2015-04-15 16:17:31 -0700655F: drivers/gpu/drm/amd/amdkfd/
Oded Gabbay04df25d2015-01-05 18:15:45 +0200656F: drivers/gpu/drm/amd/include/cik_structs.h
657F: drivers/gpu/drm/amd/include/kgd_kfd_interface.h
Ben Gozff758a12014-10-07 14:43:07 +0300658F: drivers/gpu/drm/amd/include/vi_structs.h
Joe Perches49e7d9d2015-04-15 16:17:31 -0700659F: drivers/gpu/drm/radeon/radeon_kfd.c
660F: drivers/gpu/drm/radeon/radeon_kfd.h
661F: include/uapi/linux/kfd_ioctl.h
Oded Gabbay16423d62014-07-15 13:08:36 +0300662
Lendacky, Thomas45198c72014-06-05 09:15:24 -0500663AMD XGBE DRIVER
664M: Tom Lendacky <thomas.lendacky@amd.com>
665L: netdev@vger.kernel.org
666S: Supported
667F: drivers/net/ethernet/amd/xgbe/
Lendacky, Thomas45198c72014-06-05 09:15:24 -0500668
Stelian Pop284f42b2006-12-12 18:18:31 +0100669AMS (Apple Motion Sensor) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700670M: Michael Hanselmann <linux-kernel@hansmi.ch>
Stelian Pop284f42b2006-12-12 18:18:31 +0100671S: Supported
Jean Delvarebd5f47e2010-10-28 20:31:50 +0200672F: drivers/macintosh/ams/
Stelian Pop284f42b2006-12-12 18:18:31 +0100673
Tom Tuckerf94b5332006-09-22 15:22:48 -0700674AMSO1100 RNIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700675M: Tom Tucker <tom@opengridcomputing.com>
676M: Steve Wise <swise@opengridcomputing.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -0700677L: linux-rdma@vger.kernel.org
Tom Tuckerf94b5332006-09-22 15:22:48 -0700678S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700679F: drivers/infiniband/hw/amso1100/
Tom Tuckerf94b5332006-09-22 15:22:48 -0700680
Hans Verkuil531fca12012-11-23 06:53:24 -0300681ANALOG DEVICES INC AD9389B DRIVER
682M: Hans Verkuil <hans.verkuil@cisco.com>
683L: linux-media@vger.kernel.org
684S: Maintained
685F: drivers/media/i2c/ad9389b*
686
Lars-Peter Clausen614b4382015-01-23 12:52:34 -0300687ANALOG DEVICES INC ADV7180 DRIVER
688M: Lars-Peter Clausen <lars@metafoo.de>
689L: linux-media@vger.kernel.org
690W: http://ez.analog.com/community/linux-device-drivers
691S: Supported
692F: drivers/media/i2c/adv7180.c
693
Hans Verkuilc40ddfa2013-08-12 10:02:48 -0300694ANALOG DEVICES INC ADV7511 DRIVER
695M: Hans Verkuil <hans.verkuil@cisco.com>
696L: linux-media@vger.kernel.org
697S: Maintained
698F: drivers/media/i2c/adv7511*
699
Hans Verkuil531fca12012-11-23 06:53:24 -0300700ANALOG DEVICES INC ADV7604 DRIVER
701M: Hans Verkuil <hans.verkuil@cisco.com>
702L: linux-media@vger.kernel.org
703S: Maintained
704F: drivers/media/i2c/adv7604*
705
Hans Verkuilc40ddfa2013-08-12 10:02:48 -0300706ANALOG DEVICES INC ADV7842 DRIVER
707M: Hans Verkuil <hans.verkuil@cisco.com>
708L: linux-media@vger.kernel.org
709S: Maintained
710F: drivers/media/i2c/adv7842*
711
Michael Hennerich527a1a82010-10-28 11:31:28 +0000712ANALOG DEVICES INC ASOC CODEC DRIVERS
Lars-Peter Clausen535bd162011-10-17 20:33:05 +0200713M: Lars-Peter Clausen <lars@metafoo.de>
Michael Hennerich527a1a82010-10-28 11:31:28 +0000714L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perchesa3f531a2011-03-22 16:34:28 -0700715W: http://wiki.analog.com/
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800716W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000717S: Supported
Mark Brown39c9d192011-06-17 11:22:27 +0100718F: sound/soc/codecs/adau*
Lars-Peter Clausencc526882011-06-27 17:04:01 +0200719F: sound/soc/codecs/adav*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000720F: sound/soc/codecs/ad1*
Mark Brownae48f5e2013-08-07 18:01:08 +0100721F: sound/soc/codecs/ad7*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000722F: sound/soc/codecs/ssm*
Lars-Peter Clausen40216ce2011-11-28 09:44:17 +0100723F: sound/soc/codecs/sigmadsp.*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000724
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400725ANALOG DEVICES INC ASOC DRIVERS
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -0700726L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400727L: alsa-devel@alsa-project.org (moderated for non-subscribers)
728W: http://blackfin.uclinux.org/
729S: Supported
730F: sound/soc/blackfin/*
Rob Herring7d1f9012014-12-26 13:47:30 -0600731
Lars-Peter Clausen4ce72ab2014-08-18 09:08:00 +0100732ANALOG DEVICES INC IIO DRIVERS
733M: Lars-Peter Clausen <lars@metafoo.de>
734M: Michael Hennerich <Michael.Hennerich@analog.com>
735W: http://wiki.analog.com/
736W: http://ez.analog.com/community/linux-device-drivers
737S: Supported
738F: drivers/iio/*/ad*
739X: drivers/iio/*/adjd*
740F: drivers/staging/iio/*/ad*
741F: staging/iio/trigger/iio-trig-bfin-timer.c
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400742
Lars-Peter Clausen0e3b67b2015-08-20 17:39:13 +0200743ANALOG DEVICES INC DMA DRIVERS
744M: Lars-Peter Clausen <lars@metafoo.de>
745W: http://ez.analog.com/community/linux-device-drivers
746S: Supported
747F: drivers/dma/dma-axi-dmac.c
748
Greg KH41c9e952015-01-18 16:33:24 +0900749ANDROID DRIVERS
750M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Baruch Siach27682402015-03-18 21:29:10 +0200751M: Arve Hjønnevåg <arve@android.com>
Greg KH41c9e952015-01-18 16:33:24 +0900752M: Riley Andrews <riandrews@android.com>
Lee Campbell0e4a5662015-05-24 14:47:38 -0700753T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg KH41c9e952015-01-18 16:33:24 +0900754L: devel@driverdev.osuosl.org
755S: Supported
756F: drivers/android/
757F: drivers/staging/android/
758
Johannes Berg42269062006-07-25 16:15:50 +0200759AOA (Apple Onboard Audio) ALSA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700760M: Johannes Berg <johannes@sipsolutions.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +1000761L: linuxppc-dev@lists.ozlabs.org
Joe Perches93711662009-06-16 15:34:07 -0700762L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Johannes Berg42269062006-07-25 16:15:50 +0200763S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700764F: sound/aoa/
Johannes Berg42269062006-07-25 16:15:50 +0200765
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766APM DRIVER
Jiri Kosinae5f64502015-08-09 09:11:34 +0200767M: Jiri Kosina <jikos@kernel.org>
Jiri Kosina81024fc2011-05-04 13:41:31 +0200768S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -0700769F: arch/x86/kernel/apm_32.c
770F: include/linux/apm_bios.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -0800771F: include/uapi/linux/apm_bios.h
Jiri Kosina81024fc2011-05-04 13:41:31 +0200772F: drivers/char/apm-emulation.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700774APPLE BCM5974 MULTITOUCH DRIVER
Henrik Rydberg75dd1122015-01-08 14:32:21 -0800775M: Henrik Rydberg <rydberg@bitmath.org>
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700776L: linux-input@vger.kernel.org
Henrik Rydberg75dd1122015-01-08 14:32:21 -0800777S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -0700778F: drivers/input/mouse/bcm5974.c
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700779
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700780APPLE SMC DRIVER
Henrik Rydberg75dd1122015-01-08 14:32:21 -0800781M: Henrik Rydberg <rydberg@bitmath.org>
Henrik Rydbergd618540f2010-04-14 16:14:11 +0200782L: lm-sensors@lm-sensors.org
Henrik Rydberg75dd1122015-01-08 14:32:21 -0800783S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -0700784F: drivers/hwmon/applesmc.c
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700785
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786APPLETALK NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -0700787M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700789F: drivers/net/appletalk/
790F: net/appletalk/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
Iyappan Subramanian24299502014-08-07 15:14:25 -0700792APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
793M: Iyappan Subramanian <isubramanian@apm.com>
794M: Keyur Chudgar <kchudgar@apm.com>
Iyappan Subramanian24299502014-08-07 15:14:25 -0700795S: Supported
796F: drivers/net/ethernet/apm/xgene/
797F: Documentation/devicetree/bindings/net/apm-xgene-enet.txt
798
Laurent Pinchart62a37dc2013-08-09 08:46:11 -0300799APTINA CAMERA SENSOR PLL
800M: Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
801L: linux-media@vger.kernel.org
802S: Maintained
803F: drivers/media/i2c/aptina-pll.*
804
Jaya Kumar1154ea72005-06-21 17:17:04 -0700805ARC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700806M: Jaya Kumar <jayalk@intworks.biz>
Jaya Kumar1154ea72005-06-21 17:17:04 -0700807S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +0900808F: drivers/video/fbdev/arcfb.c
809F: drivers/video/fbdev/core/fb_defio.c
Jaya Kumar1154ea72005-06-21 17:17:04 -0700810
Michael Grzeschikc38f6ac2015-09-17 15:26:16 +0200811ARCNET NETWORK LAYER
812M: Michael Grzeschik <m.grzeschik@pengutronix.de>
813L: netdev@vger.kernel.org
814S: Maintained
815F: drivers/net/arcnet/
816F: include/uapi/linux/if_arcnet.h
817
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818ARM MFM AND FLOPPY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -0700819M: Ian Molton <spyro@f2s.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700821F: arch/arm/lib/floppydma.S
822F: arch/arm/include/asm/floppy.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
Will Deacon6f965212011-07-01 14:38:53 +0100824ARM PMU PROFILING AND DEBUGGING
825M: Will Deacon <will.deacon@arm.com>
Mark Rutland70e238d2015-10-02 10:55:08 +0100826R: Mark Rutland <mark.rutland@arm.com>
Will Deacon6f965212011-07-01 14:38:53 +0100827S: Maintained
Mark Rutlanddd06a842015-10-02 10:55:07 +0100828F: arch/arm*/kernel/perf_*
Will Deacon6f965212011-07-01 14:38:53 +0100829F: arch/arm/oprofile/common.c
Mark Rutlanddd06a842015-10-02 10:55:07 +0100830F: arch/arm*/kernel/hw_breakpoint.c
831F: arch/arm*/include/asm/hw_breakpoint.h
832F: arch/arm*/include/asm/perf_event.h
Mark Rutlandfa8ad782015-07-06 12:23:53 +0100833F: drivers/perf/arm_pmu.c
834F: include/linux/perf/arm_pmu.h
Will Deacon6f965212011-07-01 14:38:53 +0100835
Russell Kingd4275352009-04-16 14:05:27 +0100836ARM PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700837M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700838L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100839W: http://www.arm.linux.org.uk/
840S: Maintained
841F: arch/arm/
842
Stephen Boydd323c2432012-10-24 11:00:29 -0700843ARM SUB-ARCHITECTURES
844L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Zhang Yanfei56ca9d92013-01-11 14:32:04 -0800845S: Maintained
Stephen Boydd323c2432012-10-24 11:00:29 -0700846F: arch/arm/mach-*/
847F: arch/arm/plat-*/
848T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
849
Russell Kingcefbf4e2009-11-22 17:40:28 +0000850ARM PRIMECELL AACI PL041 DRIVER
851M: Russell King <linux@arm.linux.org.uk>
852S: Maintained
853F: sound/arm/aaci.*
854
855ARM PRIMECELL CLCD PL110 DRIVER
856M: Russell King <linux@arm.linux.org.uk>
857S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +0900858F: drivers/video/fbdev/amba-clcd.*
Russell Kingcefbf4e2009-11-22 17:40:28 +0000859
860ARM PRIMECELL KMI PL050 DRIVER
861M: Russell King <linux@arm.linux.org.uk>
862S: Maintained
863F: drivers/input/serio/ambakmi.*
864F: include/linux/amba/kmi.h
865
Russell King2761f5c2007-05-24 06:56:08 +0200866ARM PRIMECELL MMCI PL180/1 DRIVER
Russell King08a5c9a2013-02-11 15:28:51 +0000867M: Russell King <linux@arm.linux.org.uk>
868S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700869F: drivers/mmc/host/mmci.*
Russell King2f748aa2013-02-11 15:28:05 +0000870F: include/linux/amba/mmci.h
Russell King2761f5c2007-05-24 06:56:08 +0200871
Russell King1b4304e2013-02-11 15:26:27 +0000872ARM PRIMECELL UART PL010 AND PL011 DRIVERS
873M: Russell King <linux@arm.linux.org.uk>
874S: Maintained
875F: drivers/tty/serial/amba-pl01*.c
876F: include/linux/amba/serial.h
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800877
Russell Kingcefbf4e2009-11-22 17:40:28 +0000878ARM PRIMECELL BUS SUPPORT
879M: Russell King <linux@arm.linux.org.uk>
880S: Maintained
881F: drivers/amba/
882F: include/linux/amba/bus.h
883
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800884ARM/ADS SPHERE MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700885M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700886L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800887S: Maintained
888
Sergey Lapin9c784f92008-08-03 02:29:48 +0100889ARM/AFEB9260 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700890M: Sergey Lapin <slapin@ossfans.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700891L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sergey Lapin9c784f92008-08-03 02:29:48 +0100892S: Maintained
893
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800894ARM/AJECO 1ARM MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700895M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700896L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800897S: Maintained
898
Maxime Ripard5c6dcd72015-10-07 18:39:40 +0100899ARM/Allwinner sunXi SoC support
Maxime Ripard1b106692012-11-15 21:51:26 +0100900M: Maxime Ripard <maxime.ripard@free-electrons.com>
Maxime Ripard5c6dcd72015-10-07 18:39:40 +0100901M: Chen-Yu Tsai <wens@csie.org>
Maxime Ripard1b106692012-11-15 21:51:26 +0100902L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
903S: Maintained
Maxime Ripard5c6dcd72015-10-07 18:39:40 +0100904N: sun[x456789]i
Maxime Ripard60b0f382013-12-30 16:03:33 +0100905
906ARM/Allwinner SoC Clock Support
907M: Emilio López <emilio@elopez.com.ar>
908S: Maintained
909F: drivers/clk/sunxi/
Maxime Ripard1b106692012-11-15 21:51:26 +0100910
Carlo Caione7c1e3872014-09-12 20:18:31 +0200911ARM/Amlogic MesonX SoC support
912M: Carlo Caione <carlo@caione.org>
913L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
914S: Maintained
Beniamino Galvani12ddbad2014-11-18 17:22:34 -0300915F: drivers/media/rc/meson-ir.c
Carlo Caione7c1e3872014-09-12 20:18:31 +0200916N: meson[x68]
917
Tsahee Zidenbergeff506f2015-03-12 13:53:25 +0200918ARM/Annapurna Labs ALPINE ARCHITECTURE
919M: Tsahee Zidenberg <tsahee@annapurnalabs.com>
920S: Maintained
921F: arch/arm/mach-alpine/
922
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800923ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800924M: Nicolas Ferre <nicolas.ferre@atmel.com>
Nicolas Ferred68b35f2015-04-29 11:57:18 +0200925M: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800926M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700927L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800928W: http://www.linux4sam.org
929S: Supported
930F: arch/arm/mach-at91/
Alexandre Bellonif0a0a582014-11-07 21:58:21 +0100931F: include/soc/at91/
Mark Brown70e389c2013-10-16 12:04:07 +0100932F: arch/arm/boot/dts/at91*.dts
933F: arch/arm/boot/dts/at91*.dtsi
934F: arch/arm/boot/dts/sama*.dts
935F: arch/arm/boot/dts/sama*.dtsi
Alexandre Belloni5f58c972015-01-12 19:42:14 +0100936F: arch/arm/include/debug/at91.S
Andrew Victord4a89c72006-12-04 13:56:21 +0100937
Boris BREZILLON6e05dd42014-05-27 13:39:28 +0200938ARM/ATMEL AT91 Clock Support
939M: Boris Brezillon <boris.brezillon@free-electrons.com>
940S: Maintained
941F: drivers/clk/at91
942
Rob Herring986cf2e2011-06-22 11:28:53 -0500943ARM/CALXEDA HIGHBANK ARCHITECTURE
Rob Herring5d3ad8a2013-12-03 10:20:16 -0600944M: Rob Herring <robh@kernel.org>
Rob Herring986cf2e2011-06-22 11:28:53 -0500945L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
946S: Maintained
947F: arch/arm/mach-highbank/
948
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300949ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
Krzysztof Hałasa5529c2c2014-09-30 10:32:58 +0200950M: Krzysztof Halasa <khalasa@piap.pl>
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300951S: Maintained
952F: arch/arm/mach-cns3xxx/
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300953
Sunil Goutham4863dea2015-05-26 19:20:15 -0700954ARM/CAVIUM THUNDER NETWORK DRIVER
955M: Sunil Goutham <sgoutham@cavium.com>
956M: Robert Richter <rric@kernel.org>
957L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
958S: Supported
Aleksey Makarov322e5cc2015-08-30 12:29:09 +0300959F: drivers/net/ethernet/cavium/thunder/
Sunil Goutham4863dea2015-05-26 19:20:15 -0700960
Alexander Shiyan386ab512012-11-17 17:57:24 +0400961ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
962M: Alexander Shiyan <shc_work@mail.ru>
963L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
964S: Odd Fixes
Alexander Shiyanb8ba3872014-02-15 12:05:33 +0400965N: clps711x
Alexander Shiyan386ab512012-11-17 17:57:24 +0400966
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800967ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100968M: Hartley Sweeten <hsweeten@visionengravers.com>
Ryan Mallon1c5454e2011-06-15 14:45:36 +1000969M: Ryan Mallon <rmallon@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700970L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800971S: Maintained
Hartley Sweetend19d3662009-07-10 23:02:59 +0100972F: arch/arm/mach-ep93xx/
973F: arch/arm/mach-ep93xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800974
975ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700976M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700977L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800978S: Maintained
979
Russell Kingd4275352009-04-16 14:05:27 +0100980ARM/CLKDEV SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700981M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700982L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches37417042012-03-23 15:01:58 -0700983S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +0100984F: arch/arm/include/asm/clkdev.h
Joe Perches4fa26512011-03-22 16:34:31 -0700985F: drivers/clk/clkdev.c
Russell Kingd4275352009-04-16 14:05:27 +0100986
Mike Rapoportd48134e2008-08-20 09:03:26 +0100987ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700988M: Mike Rapoport <mike@compulab.co.il>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700989L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100990S: Maintained
991
Hubert Feurstein94150092009-10-07 08:36:07 +0100992ARM/CONTEC MICRO9 MACHINE SUPPORT
993M: Hubert Feurstein <hubert.feurstein@contec.at>
994S: Maintained
995F: arch/arm/mach-ep93xx/micro9.c
996
Pratik Patela06ae862014-11-03 11:07:35 -0700997ARM/CORESIGHT FRAMEWORK AND DRIVERS
998M: Mathieu Poirier <mathieu.poirier@linaro.org>
999L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1000S: Maintained
Mathieu Poirier01081f52015-03-30 14:13:41 -06001001F: drivers/hwtracing/coresight/*
Pratik Patela06ae862014-11-03 11:07:35 -07001002F: Documentation/trace/coresight.txt
1003F: Documentation/devicetree/bindings/arm/coresight.txt
Mathieu Poirier7a25ec82014-11-10 14:06:42 -07001004F: Documentation/ABI/testing/sysfs-bus-coresight-devices-*
Pratik Patela06ae862014-11-03 11:07:35 -07001005
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006ARM/CORGI MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001007M: Richard Purdie <rpurdie@rpsys.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008S: Maintained
1009
Paulius Zaleckas881a95f2009-03-26 10:06:27 +02001010ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
Hans Ulli Kroll162500b2010-05-13 06:43:59 +01001011M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001012L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Krollb60e23b2015-05-07 19:29:03 +02001013T: git git://github.com/ulli-kroll/linux.git
Hans Ulli Kroll162500b2010-05-13 06:43:59 +01001014S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +03001015F: arch/arm/mach-gemini/
Hans Ulli Kroll98a9bb52015-05-20 17:49:31 +02001016F: drivers/rtc/rtc-gemini.c
Paulius Zaleckas881a95f2009-03-26 10:06:27 +02001017
Barry Songa990cbd2011-07-12 21:44:10 +08001018ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
Barry Song5abf58b2013-09-29 22:45:10 +08001019M: Barry Song <baohua@kernel.org>
Barry Songa990cbd2011-07-12 21:44:10 +08001020L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Barry Song85529d12013-06-17 09:44:26 +08001021T: git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
Barry Songa990cbd2011-07-12 21:44:10 +08001022S: Maintained
1023F: arch/arm/mach-prima2/
Joe Perches4a9c44f2014-08-08 14:25:03 -07001024F: drivers/clk/sirf/
Barry Song05f30e82013-09-29 22:45:09 +08001025F: drivers/clocksource/timer-prima2.c
Barry Song5833ac92015-01-12 00:04:43 +08001026F: drivers/clocksource/timer-atlas7.c
Barry Songf8505ef2014-01-03 11:24:13 +08001027N: [^a-z]sirf
Barry Songa990cbd2011-07-12 21:44:10 +08001028
Baruch Siachc9d862c2015-04-28 13:59:43 +03001029ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1030M: Baruch Siach <baruch@tkos.co.il>
1031L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1032S: Maintained
Baruch Siachcde137a2015-07-06 14:41:46 +03001033F: arch/arm/boot/dts/cx92755*
Baruch Siachc9d862c2015-04-28 13:59:43 +03001034N: digicolor
1035
Russell Kingd4275352009-04-16 14:05:27 +01001036ARM/EBSA110 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001037M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001038L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001039W: http://www.arm.linux.org.uk/
1040S: Maintained
1041F: arch/arm/mach-ebsa110/
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07001042F: drivers/net/ethernet/amd/am79c961a.*
Russell Kingd4275352009-04-16 14:05:27 +01001043
Uwe Kleine-König4721f3c2013-12-20 21:21:59 +01001044ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1045M: Uwe Kleine-König <kernel@pengutronix.de>
1046L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1047S: Maintained
1048N: efm32
1049
Russell Kinga9da4f72008-07-12 21:42:04 +01001050ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
Joe Perches8b58be82009-07-29 15:04:30 -07001051M: Daniel Ribeiro <drwyrm@gmail.com>
1052M: Stefan Schmidt <stefan@openezx.org>
1053M: Harald Welte <laforge@openezx.org>
Paul Bolled66f18862011-04-06 22:34:00 +02001054L: openezx-devel@lists.openezx.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +01001055W: http://www.openezx.org/
1056S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +02001057T: topgit git://git.openezx.org/openezx.git
1058F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +01001059
Paulius Zaleckas6a915af2009-03-25 13:10:20 +02001060ARM/FARADAY FA526 PORT
Hans Ulli Kroll162500b2010-05-13 06:43:59 +01001061M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001062L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +01001063S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -07001064T: git git://git.berlios.de/gemini-board
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +03001065F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +02001066
Russell Kingd4275352009-04-16 14:05:27 +01001067ARM/FOOTBRIDGE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001068M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001069L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001070W: http://www.arm.linux.org.uk/
1071S: Maintained
1072F: arch/arm/include/asm/hardware/dec21285.h
1073F: arch/arm/mach-footbridge/
1074
Sascha Hauer86183a52008-07-24 23:50:35 +02001075ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
Shawn Guo7609ea22015-06-03 19:34:10 +08001076M: Shawn Guo <shawnguo@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07001077M: Sascha Hauer <kernel@pengutronix.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001078L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer86183a52008-07-24 23:50:35 +02001079S: Maintained
Shawn Guof1c12832014-03-11 22:57:53 +08001080T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
Shawn Guo2a82f952013-12-10 22:19:21 +08001081F: arch/arm/mach-imx/
Shawn Guoce515a62014-07-02 15:37:10 +08001082F: arch/arm/mach-mxs/
Shawn Guo2a82f952013-12-10 22:19:21 +08001083F: arch/arm/boot/dts/imx*
1084F: arch/arm/configs/imx*_defconfig
Shawn Guocf209682015-04-26 21:58:12 +08001085F: drivers/clk/imx/
1086F: include/soc/imx/
Shawn Guo8bcb9762011-10-07 22:24:18 +08001087
Stefan Agner142109d2015-03-02 00:09:02 +01001088ARM/FREESCALE VYBRID ARM ARCHITECTURE
Shawn Guo7609ea22015-06-03 19:34:10 +08001089M: Shawn Guo <shawnguo@kernel.org>
Stefan Agner142109d2015-03-02 00:09:02 +01001090M: Sascha Hauer <kernel@pengutronix.de>
1091R: Stefan Agner <stefan@agner.ch>
1092L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1093S: Maintained
1094T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1095F: arch/arm/mach-imx/*vf610*
1096F: arch/arm/boot/dts/vf*
1097
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001098ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001099M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001100L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001101S: Maintained
1102
Jaya Kumar90b8fc32008-03-15 05:11:07 +01001103ARM/GUMSTIX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001104M: Steve Sakoman <sakoman@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001105L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jaya Kumar90b8fc32008-03-15 05:11:07 +01001106S: Maintained
1107
Philipp Zabelef47d5f2009-05-28 07:07:47 +02001108ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001109M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel12a93f32012-02-26 12:40:19 +01001110M: Paul Parsons <lost.distance@yahoo.com>
1111L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Philipp Zabelef47d5f2009-05-28 07:07:47 +02001112S: Maintained
1113F: arch/arm/mach-pxa/hx4700.c
1114F: arch/arm/mach-pxa/include/mach/hx4700.h
Philipp Zabel12a93f32012-02-26 12:40:19 +01001115F: sound/soc/pxa/hx4700.c
Philipp Zabelef47d5f2009-05-28 07:07:47 +02001116
Wei Xu4dfad062014-07-07 10:41:53 +08001117ARM/HISILICON SOC SUPPORT
1118M: Wei Xu <xuwei5@hisilicon.com>
1119L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1120W: http://www.hisilicon.com
1121S: Supported
1122T: git git://github.com/hisilicon/linux-hisi.git
1123F: arch/arm/mach-hisi/
1124
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +01001125ARM/HP JORNADA 7XX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001126M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02001127W: www.jlime.com
1128S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07001129T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1130F: arch/arm/mach-sa1100/jornada720.c
1131F: arch/arm/mach-sa1100/include/mach/jornada720.h
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +01001132
Javier Martinez Canillas5e767ab2012-10-08 10:47:34 +02001133ARM/IGEP MACHINE SUPPORT
1134M: Enric Balletbo i Serra <eballetbo@gmail.com>
1135M: Javier Martinez Canillas <javier@dowhile0.org>
1136L: linux-omap@vger.kernel.org
1137L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1138S: Maintained
Javier Martinez Canillas06ff74f2013-10-18 17:37:53 +02001139F: arch/arm/boot/dts/omap3-igep*
Javier Martinez Canillas5e767ab2012-10-08 10:47:34 +02001140
Marek Vasut403d2972010-05-22 00:29:39 +02001141ARM/INCOME PXA270 SUPPORT
1142M: Marek Vasut <marek.vasut@gmail.com>
1143L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1144S: Maintained
Joe Perchesec154082010-10-26 14:22:59 -07001145F: arch/arm/mach-pxa/colibri-pxa270-income.c
Marek Vasut403d2972010-05-22 00:29:39 +02001146
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001147ARM/INTEL IOP32X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001148M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001149L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -07001150S: Maintained
Dan Williamse2bdb172007-01-02 18:32:37 +01001151
1152ARM/INTEL IOP33X ARM ARCHITECTURE
Joe Perchesefc03ec2009-09-21 17:04:27 -07001153L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williams08223d82014-08-19 06:07:56 -07001154S: Orphan
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001155
1156ARM/INTEL IOP13XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001157M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001158L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -07001159S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001160
1161ARM/INTEL IQ81342EX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001162M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001163L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -07001164S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001165
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001166ARM/INTEL IXDP2850 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001167M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001168L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001169S: Maintained
1170
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +02001171ARM/INTEL IXP4XX ARM ARCHITECTURE
1172M: Imre Kaloz <kaloz@openwrt.org>
Krzysztof Hałasa5529c2c2014-09-30 10:32:58 +02001173M: Krzysztof Halasa <khalasa@piap.pl>
Russell Kingbaea7b92009-09-24 21:22:33 +01001174L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +02001175S: Maintained
1176F: arch/arm/mach-ixp4xx/
1177
Joe Perches838553c2010-10-26 14:22:59 -07001178ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
Jonathan Cameron7f49a7f2009-10-15 16:39:30 +01001179M: Jonathan Cameron <jic23@cam.ac.uk>
1180L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1181S: Maintained
1182F: arch/arm/mach-pxa/stargate2.c
1183F: drivers/pcmcia/pxa2xx_stargate2.c
1184
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001185ARM/INTEL XSC3 (MANZANO) ARM CORE
Joe Perches8b58be82009-07-29 15:04:30 -07001186M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001187L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -07001188S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001189
1190ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001191M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001192L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001193S: Maintained
1194
Santosh Shilimkar1154f852013-08-05 14:11:14 -04001195ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
Santosh Shilimkar97215802014-10-13 14:16:28 -04001196M: Santosh Shilimkar <ssantosh@kernel.org>
Santosh Shilimkar1154f852013-08-05 14:11:14 -04001197L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1198S: Maintained
1199F: arch/arm/mach-keystone/
Santosh Shilimkar317929c2013-11-23 17:31:27 -05001200T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
Santosh Shilimkar1154f852013-08-05 14:11:14 -04001201
Santosh Shilimkarbc6aa562014-06-22 16:06:22 -04001202ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
Santosh Shilimkar97215802014-10-13 14:16:28 -04001203M: Santosh Shilimkar <ssantosh@kernel.org>
Santosh Shilimkarbc6aa562014-06-22 16:06:22 -04001204L: linux-kernel@vger.kernel.org
1205S: Maintained
1206F: drivers/clk/keystone/
1207
1208ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
Santosh Shilimkar97215802014-10-13 14:16:28 -04001209M: Santosh Shilimkar <ssantosh@kernel.org>
Santosh Shilimkarbc6aa562014-06-22 16:06:22 -04001210L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1211L: linux-kernel@vger.kernel.org
1212S: Maintained
1213F: drivers/clocksource/timer-keystone.c
1214
1215ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
Santosh Shilimkar97215802014-10-13 14:16:28 -04001216M: Santosh Shilimkar <ssantosh@kernel.org>
Santosh Shilimkarbc6aa562014-06-22 16:06:22 -04001217L: linux-kernel@vger.kernel.org
1218S: Maintained
1219F: drivers/power/reset/keystone-reset.c
1220
1221ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
Santosh Shilimkar97215802014-10-13 14:16:28 -04001222M: Santosh Shilimkar <ssantosh@kernel.org>
Santosh Shilimkarbc6aa562014-06-22 16:06:22 -04001223L: linux-kernel@vger.kernel.org
1224S: Maintained
1225F: drivers/memory/*emif*
1226
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001227ARM/LOGICPD PXA270 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001228M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001229L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001230S: Maintained
1231
Joachim Eastwood31438752015-05-19 20:59:21 +02001232ARM/LPC18XX ARCHITECTURE
1233M: Joachim Eastwood <manabian@gmail.com>
1234L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1235S: Maintained
1236N: lpc18xx
1237
Philipp Zabel3b8861712008-07-09 21:27:15 +01001238ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001239M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +01001240S: Maintained
1241
Gregory CLEMENT31c17ac2015-05-15 14:25:43 +02001242ARM/Marvell Kirkwood and Armada 370, 375, 38x, XP SOC support
Thomas Petazzoni75f41272012-06-01 18:50:52 +02001243M: Jason Cooper <jason@lakedaemon.net>
1244M: Andrew Lunn <andrew@lunn.ch>
1245M: Gregory Clement <gregory.clement@free-electrons.com>
Jason Cooperdcb71502013-10-14 18:32:21 +00001246M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Thomas Petazzoni75f41272012-06-01 18:50:52 +02001247L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1248S: Maintained
1249F: arch/arm/mach-mvebu/
Joe Perches59ec9672015-03-25 15:55:17 -07001250F: drivers/rtc/rtc-armada38x.c
Gregory CLEMENT31c17ac2015-05-15 14:25:43 +02001251F: arch/arm/boot/dts/armada*
1252F: arch/arm/boot/dts/kirkwood*
1253
Thomas Petazzoni75f41272012-06-01 18:50:52 +02001254
Sebastian Hesselbarth40f49782013-10-08 12:52:30 +02001255ARM/Marvell Berlin SoC support
1256M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1257L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1258S: Maintained
1259F: arch/arm/mach-berlin/
Gregory CLEMENT31c17ac2015-05-15 14:25:43 +02001260F: arch/arm/boot/dts/berlin*
1261
Sebastian Hesselbarth40f49782013-10-08 12:52:30 +02001262
Andrew Lunn4cfab572014-07-16 22:32:51 +02001263ARM/Marvell Dove/MV78xx0/Orion SOC support
Nicolas Pitre4f1312b2012-04-30 13:44:48 -04001264M: Jason Cooper <jason@lakedaemon.net>
1265M: Andrew Lunn <andrew@lunn.ch>
Jason Cooperdcb71502013-10-14 18:32:21 +00001266M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Gregory CLEMENTbfda4032015-03-13 14:41:45 +01001267M: Gregory Clement <gregory.clement@free-electrons.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001268L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Pitre4f1312b2012-04-30 13:44:48 -04001269S: Maintained
1270F: arch/arm/mach-dove/
Nicolas Pitre54a246f2009-08-11 23:28:51 -04001271F: arch/arm/mach-mv78xx0/
1272F: arch/arm/mach-orion5x/
1273F: arch/arm/plat-orion/
Gregory CLEMENT31c17ac2015-05-15 14:25:43 +02001274F: arch/arm/boot/dts/dove*
1275F: arch/arm/boot/dts/orion5x*
1276
Nicolas Pitre54a246f2009-08-11 23:28:51 -04001277
Alexander Clouterd69ac132011-04-14 15:22:02 -07001278ARM/Orion SoC/Technologic Systems TS-78xx platform support
1279M: Alexander Clouter <alex@digriz.org.uk>
1280L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1281W: http://www.digriz.org.uk/ts78xx/kernel
1282S: Maintained
1283F: arch/arm/mach-orion5x/ts78xx-*
1284
Eddie Huang607b8fc2015-05-06 15:23:42 +08001285ARM/Mediatek RTC DRIVER
1286M: Eddie Huang <eddie.huang@mediatek.com>
1287L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1288L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1289S: Maintained
1290F: drivers/rtc/rtc-mt6397.c
1291
Matthias Bruggere54951c2014-09-26 11:45:55 +02001292ARM/Mediatek SoC support
1293M: Matthias Brugger <matthias.bgg@gmail.com>
1294L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Matthias Brugger17b199d2015-04-16 12:49:21 -07001295L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
Matthias Bruggere54951c2014-09-26 11:45:55 +02001296S: Maintained
1297F: arch/arm/boot/dts/mt6*
1298F: arch/arm/boot/dts/mt8*
1299F: arch/arm/mach-mediatek/
1300N: mtk
1301K: mediatek
1302
Chunfeng Yun0f8669e2015-10-12 10:41:57 +08001303ARM/Mediatek USB3 PHY DRIVER
1304M: Chunfeng Yun <chunfeng.yun@mediatek.com>
1305L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1306L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1307S: Maintained
1308F: drivers/phy/phy-mt65xx-usb3.c
1309
Arnd Bergmannadcb0792012-09-07 12:21:56 +00001310ARM/MICREL KS8695 ARCHITECTURE
1311M: Greg Ungerer <gerg@uclinux.org>
1312L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches14430812013-09-11 14:23:50 -07001313F: arch/arm/mach-ks8695/
Arnd Bergmannadcb0792012-09-07 12:21:56 +00001314S: Odd Fixes
1315
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +02001316ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001317M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001318L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +02001319F: arch/arm/mach-pxa/mioa701.c
1320S: Maintained
1321
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +01001322ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001323M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +01001324S: Maintained
1325
Alessandro Rubinie0ee9852009-12-02 14:01:03 +01001326ARM/NOMADIK ARCHITECTURE
Joe Perches28b8e8d2010-03-23 13:35:20 -07001327M: Alessandro Rubini <rubini@unipv.it>
Linus Walleije4651a92012-08-06 09:52:52 +02001328M: Linus Walleij <linus.walleij@linaro.org>
Joe Perches28b8e8d2010-03-23 13:35:20 -07001329L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1330S: Maintained
1331F: arch/arm/mach-nomadik/
Joe Perchesecc265f2014-08-08 14:26:20 -07001332F: drivers/pinctrl/nomadik/
Linus Walleij87572882010-12-22 09:18:29 +01001333F: drivers/i2c/busses/i2c-nomadik.c
Linus Walleije4651a92012-08-06 09:52:52 +02001334T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
Alessandro Rubinie0ee9852009-12-02 14:01:03 +01001335
Andy Green9d762952009-05-19 06:41:42 -03001336ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001337M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -03001338L: openmoko-kernel@lists.openmoko.org (subscribers-only)
1339W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
1340S: Supported
1341
Dirk Opfer8459c152005-11-06 14:27:52 +00001342ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001343M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1344M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +00001345S: Maintained
1346
Marek Vasut5d783a22009-07-16 13:26:48 +02001347ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
Joe Perches933d35f2009-10-01 15:43:59 -07001348M: Marek Vasut <marek.vasut@gmail.com>
Marek Vasut75280782009-08-22 00:49:53 +02001349L: linux-arm-kernel@lists.infradead.org
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001350W: http://hackndev.com
1351S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001352F: arch/arm/mach-pxa/include/mach/palmtx.h
1353F: arch/arm/mach-pxa/palmtx.c
1354F: arch/arm/mach-pxa/include/mach/palmt5.h
1355F: arch/arm/mach-pxa/palmt5.c
1356F: arch/arm/mach-pxa/include/mach/palmld.h
1357F: arch/arm/mach-pxa/palmld.c
1358F: arch/arm/mach-pxa/include/mach/palmte2.h
1359F: arch/arm/mach-pxa/palmte2.c
1360F: arch/arm/mach-pxa/include/mach/palmtc.h
1361F: arch/arm/mach-pxa/palmtc.c
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001362
Joe Perchesb57fe922009-12-14 18:00:52 -08001363ARM/PALM TREO SUPPORT
Jiri Slabyd8130622015-07-17 16:23:20 -07001364M: Tomas Cech <sleep_walker@suse.com>
Marek Vasut75280782009-08-22 00:49:53 +02001365L: linux-arm-kernel@lists.infradead.org
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001366W: http://hackndev.com
1367S: Maintained
Joe Perchesb57fe922009-12-14 18:00:52 -08001368F: arch/arm/mach-pxa/include/mach/palmtreo.h
1369F: arch/arm/mach-pxa/palmtreo.c
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001370
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001371ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001372M: Sergey Lapin <slapin@ossfans.org>
Marek Vasut75280782009-08-22 00:49:53 +02001373L: linux-arm-kernel@lists.infradead.org
Joe Perches7d2c86b2009-04-07 20:59:01 -07001374W: http://hackndev.com
1375S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001376F: arch/arm/mach-pxa/include/mach/palmz72.h
1377F: arch/arm/mach-pxa/palmz72.c
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001378
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001380M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1382S: Maintained
1383
1384ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001385M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001386L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387W: http://www.arm.linux.org.uk/
1388S: Maintained
1389
Kumar Gala8fc1b0f2014-01-21 17:14:10 -06001390ARM/QUALCOMM SUPPORT
1391M: Kumar Gala <galak@codeaurora.org>
Andy Grossf5d3af92015-01-21 22:39:24 -06001392M: Andy Gross <agross@codeaurora.org>
Kumar Gala8fc1b0f2014-01-21 17:14:10 -06001393M: David Brown <davidb@codeaurora.org>
1394L: linux-arm-msm@vger.kernel.org
Andy Grossf5d3af92015-01-21 22:39:24 -06001395L: linux-soc@vger.kernel.org
Kumar Gala8fc1b0f2014-01-21 17:14:10 -06001396S: Maintained
1397F: arch/arm/mach-qcom/
Andy Grossf5d3af92015-01-21 22:39:24 -06001398F: drivers/soc/qcom/
Stephen Boydc0c89fa2015-03-13 11:09:34 -07001399F: drivers/tty/serial/msm_serial.h
1400F: drivers/tty/serial/msm_serial.c
1401F: drivers/*/pm8???-*
1402F: drivers/mfd/ssbi.c
Kumar Gala916f7432015-02-26 15:49:09 -06001403F: drivers/firmware/qcom_scm.c
Kumar Gala8fc1b0f2014-01-21 17:14:10 -06001404T: git git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git
1405
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001406ARM/RADISYS ENP2611 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001407M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001408L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001409S: Maintained
1410
Russell Kingd4275352009-04-16 14:05:27 +01001411ARM/RISCPC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001412M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001413L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001414W: http://www.arm.linux.org.uk/
1415S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01001416F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1417F: arch/arm/include/asm/hardware/ioc.h
1418F: arch/arm/include/asm/hardware/iomd.h
1419F: arch/arm/include/asm/hardware/memc.h
1420F: arch/arm/mach-rpc/
Jeff Kirsher1a6422f2011-11-04 12:58:41 +00001421F: drivers/net/ethernet/8390/etherh.c
Jeff Kirsher9e13fbf2011-07-15 03:18:21 -07001422F: drivers/net/ethernet/i825xx/ether1*
1423F: drivers/net/ethernet/seeq/ether3*
Russell Kingd4275352009-04-16 14:05:27 +01001424F: drivers/scsi/arm/
1425
Heiko Stuebner08ddbb02013-10-14 23:19:58 +02001426ARM/Rockchip SoC support
1427M: Heiko Stuebner <heiko@sntech.de>
1428L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Heiko Stuebner00250b52014-08-20 12:31:03 +02001429L: linux-rockchip@lists.infradead.org
Heiko Stuebner08ddbb02013-10-14 23:19:58 +02001430S: Maintained
Heiko Stübner541555e2014-08-27 00:05:50 +02001431F: arch/arm/boot/dts/rk3*
Heiko Stuebner08ddbb02013-10-14 23:19:58 +02001432F: arch/arm/mach-rockchip/
Heiko Stübner541555e2014-08-27 00:05:50 +02001433F: drivers/clk/rockchip/
1434F: drivers/i2c/busses/i2c-rk3x.c
Heiko Stuebner08ddbb02013-10-14 23:19:58 +02001435F: drivers/*/*rockchip*
Heiko Stübner541555e2014-08-27 00:05:50 +02001436F: drivers/*/*/*rockchip*
1437F: sound/soc/rockchip/
Heiko Stuebnerb4331b42015-03-14 19:32:06 +01001438N: rockchip
Heiko Stuebner08ddbb02013-10-14 23:19:58 +02001439
Kukjin Kim5bfb9372014-11-14 16:54:57 +09001440ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1441M: Kukjin Kim <kgene@kernel.org>
Krzysztof Kozlowskie8f98452015-05-14 21:15:20 +09001442M: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001443L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Mark Brown7a549d72011-12-02 13:52:12 +09001444L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +01001445S: Maintained
Mark Brown6f0589c2013-10-08 07:18:21 +09001446F: arch/arm/boot/dts/s3c*
1447F: arch/arm/boot/dts/exynos*
Krzysztof Kozlowskid97236e2015-06-06 19:02:19 +09001448F: arch/arm64/boot/dts/exynos/
Kukjin Kim482ce512010-06-29 15:05:26 -07001449F: arch/arm/plat-samsung/
Heiko Stuebner769bbb62011-12-02 13:51:56 +09001450F: arch/arm/mach-s3c24*/
1451F: arch/arm/mach-s3c64xx/
Kukjin Kim5bfb9372014-11-14 16:54:57 +09001452F: arch/arm/mach-s5p*/
1453F: arch/arm/mach-exynos*/
Ben Dookseb2ffca2011-02-01 15:52:36 -08001454F: drivers/*/*s3c2410*
1455F: drivers/*/*/*s3c2410*
Mark Brown40c76662011-12-02 13:54:25 +09001456F: drivers/spi/spi-s3c*
1457F: sound/soc/samsung/*
Doug Anderson33d43cd2013-06-18 07:02:23 +09001458N: exynos
Kukjin Kimf556cb072010-09-30 15:15:35 -07001459
Kyungmin Park10ffa962011-03-04 17:36:26 -08001460ARM/SAMSUNG MOBILE MACHINE SUPPORT
1461M: Kyungmin Park <kyungmin.park@samsung.com>
1462L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1463S: Maintained
Christian Kujau004bbd32014-10-13 15:51:17 -07001464F: arch/arm/mach-s5pv210/
Kyungmin Park10ffa962011-03-04 17:36:26 -08001465
Kamil Debski3ce4ccb2012-11-28 06:14:22 -03001466ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1467M: Kyungmin Park <kyungmin.park@samsung.com>
1468M: Kamil Debski <k.debski@samsung.com>
1469L: linux-arm-kernel@lists.infradead.org
1470L: linux-media@vger.kernel.org
1471S: Maintained
1472F: drivers/media/platform/s5p-g2d/
1473
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001474ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1475M: Kyungmin Park <kyungmin.park@samsung.com>
1476M: Kamil Debski <k.debski@samsung.com>
Joe Perches63059022012-06-07 14:21:10 -07001477M: Jeongtae Park <jtp.park@samsung.com>
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001478L: linux-arm-kernel@lists.infradead.org
1479L: linux-media@vger.kernel.org
1480S: Maintained
Cesar Eduardo Barros934455d2013-01-04 15:35:17 -08001481F: arch/arm/plat-samsung/s5p-dev-mfc.c
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001482F: drivers/media/platform/s5p-mfc/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001483
1484ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1485M: Kyungmin Park <kyungmin.park@samsung.com>
1486M: Tomasz Stanislawski <t.stanislaws@samsung.com>
1487L: linux-arm-kernel@lists.infradead.org
1488L: linux-media@vger.kernel.org
1489S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001490F: drivers/media/platform/s5p-tv/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001491
Andrzej Pietrasiewicz7d9f9bf2015-09-18 11:20:59 -03001492ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
1493M: Andrzej Pietrasiewicz <andrzej.p@samsung.com>
1494M: Jacek Anaszewski <j.anaszewski@samsung.com>
1495L: linux-arm-kernel@lists.infradead.org
1496L: linux-media@vger.kernel.org
1497S: Maintained
1498F: drivers/media/platform/s5p-jpeg/
1499
Paul Mundtd48d38e2010-02-08 12:50:24 +09001500ARM/SHMOBILE ARM ARCHITECTURE
Simon Horman5e212592012-11-27 11:41:49 +09001501M: Simon Horman <horms@verge.net.au>
Paul Mundtd48d38e2010-02-08 12:50:24 +09001502M: Magnus Damm <magnus.damm@gmail.com>
1503L: linux-sh@vger.kernel.org
Paul Mundtd48d38e2010-02-08 12:50:24 +09001504W: http://oss.renesas.com
Paul Mundtbbff48f2010-04-07 17:17:22 +09001505Q: http://patchwork.kernel.org/project/linux-sh/list/
Simon Horman5e212592012-11-27 11:41:49 +09001506T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
Paul Mundtd48d38e2010-02-08 12:50:24 +09001507S: Supported
Simon Horman0b514fd2014-05-15 08:48:21 +09001508F: arch/arm/boot/dts/emev2*
1509F: arch/arm/boot/dts/r7s*
1510F: arch/arm/boot/dts/r8a*
1511F: arch/arm/boot/dts/sh*
Simon Horman0b514fd2014-05-15 08:48:21 +09001512F: arch/arm/configs/bockw_defconfig
Simon Horman0b514fd2014-05-15 08:48:21 +09001513F: arch/arm/configs/marzen_defconfig
1514F: arch/arm/configs/shmobile_defconfig
Geert Uytterhoeven7a2071c2014-11-14 16:49:47 +01001515F: arch/arm/include/debug/renesas-scif.S
Paul Mundtd48d38e2010-02-08 12:50:24 +09001516F: arch/arm/mach-shmobile/
1517F: drivers/sh/
1518
Dinh Nguyen66314222012-07-18 16:07:18 -06001519ARM/SOCFPGA ARCHITECTURE
Dinh Nguyenba2b7d02014-08-06 16:31:27 -05001520M: Dinh Nguyen <dinguyen@opensource.altera.com>
Dinh Nguyen66314222012-07-18 16:07:18 -06001521S: Maintained
1522F: arch/arm/mach-socfpga/
Dinh Nguyenefadb752015-04-20 14:13:12 -05001523F: arch/arm/boot/dts/socfpga*
1524F: arch/arm/configs/socfpga_defconfig
Dinh Nguyenba2b7d02014-08-06 16:31:27 -05001525W: http://www.rocketboards.org
Dinh Nguyenefadb752015-04-20 14:13:12 -05001526T: git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
Dinh Nguyen66314222012-07-18 16:07:18 -06001527
1528ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
Dinh Nguyenba2b7d02014-08-06 16:31:27 -05001529M: Dinh Nguyen <dinguyen@opensource.altera.com>
Dinh Nguyen66314222012-07-18 16:07:18 -06001530S: Maintained
1531F: drivers/clk/socfpga/
1532
Thor Thayer71bcada2014-09-03 10:27:54 -05001533ARM/SOCFPGA EDAC SUPPORT
1534M: Thor Thayer <tthayer@opensource.altera.com>
1535S: Maintained
1536F: drivers/edac/altera_edac.
1537
Srinivas Kandagatla65ebcc12013-06-25 12:15:10 +01001538ARM/STI ARCHITECTURE
Srinivas Kandagatlaa92177e2014-03-03 11:28:59 +00001539M: Srinivas Kandagatla <srinivas.kandagatla@gmail.com>
1540M: Maxime Coquelin <maxime.coquelin@st.com>
1541M: Patrice Chotard <patrice.chotard@st.com>
Srinivas Kandagatla65ebcc12013-06-25 12:15:10 +01001542L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1543L: kernel@stlinux.com
1544W: http://www.stlinux.com
1545S: Maintained
1546F: arch/arm/mach-sti/
Srinivas Kandagatlaa92177e2014-03-03 11:28:59 +00001547F: arch/arm/boot/dts/sti*
Lee Jonesb8e31bf2015-09-17 14:45:57 +01001548F: drivers/char/hw_random/st-rng.c
Srinivas Kandagatlaa92177e2014-03-03 11:28:59 +00001549F: drivers/clocksource/arm_global_timer.c
Lee Jones82805d12015-05-12 13:58:17 +01001550F: drivers/clocksource/clksrc_st_lpc.c
Srinivas Kandagatlaa92177e2014-03-03 11:28:59 +00001551F: drivers/i2c/busses/i2c-st.c
Greg Kroah-Hartman346e2e42014-09-25 13:11:52 +02001552F: drivers/media/rc/st_rc.c
Peter Griffin95d66b12015-07-30 14:09:01 -03001553F: drivers/media/platform/sti/c8sectpfe/
Peter Griffinf53b2bf2014-06-04 17:30:24 +01001554F: drivers/mmc/host/sdhci-st.c
Peter Griffine95cf392015-04-01 07:42:41 +01001555F: drivers/phy/phy-miphy28lp.c
1556F: drivers/phy/phy-miphy365x.c
Peter Griffin6da969a2014-09-11 18:02:46 +01001557F: drivers/phy/phy-stih407-usb.c
Peter Griffin26389c72014-09-08 11:33:02 +01001558F: drivers/phy/phy-stih41x-usb.c
Greg Kroah-Hartman346e2e42014-09-25 13:11:52 +02001559F: drivers/pinctrl/pinctrl-st.c
1560F: drivers/reset/sti/
Lee Jonesdb4112e2015-04-09 15:47:34 +01001561F: drivers/rtc/rtc-st-lpc.c
Greg Kroah-Hartman346e2e42014-09-25 13:11:52 +02001562F: drivers/tty/serial/st-asc.c
Peter Griffineb11ada2014-09-05 16:36:32 +01001563F: drivers/usb/dwc3/dwc3-st.c
Peter Griffin62f6f082014-09-08 13:04:48 +01001564F: drivers/usb/host/ehci-st.c
1565F: drivers/usb/host/ohci-st.c
Lee Jonesdb4112e2015-04-09 15:47:34 +01001566F: drivers/watchdog/st_lpc_wdt.c
Peter Griffindaac6f82014-11-19 08:44:54 +00001567F: drivers/ata/ahci_st.c
Srinivas Kandagatla65ebcc12013-06-25 12:15:10 +01001568
Maxime Coquelinee6e7872015-05-09 09:53:58 +02001569ARM/STM32 ARCHITECTURE
1570M: Maxime Coquelin <mcoquelin.stm32@gmail.com>
1571L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1572S: Maintained
1573T: git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git
1574N: stm32
1575F: drivers/clocksource/armv7m_systick.c
1576
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001577ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001578M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001579L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001580S: Maintained
1581
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001582ARM/TETON BGA MACHINE SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07001583M: "Mark F. Brown" <mark.brown314@gmail.com>
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001584L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1585S: Maintained
1586
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001587ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001588M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001589L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001590S: Maintained
1591
wanzongshun98ad6e32009-02-13 06:04:32 +01001592ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001593M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001594L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -07001595W: http://www.mcuos.com
1596S: Maintained
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001597F: arch/arm/mach-w90x900/
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001598F: drivers/input/keyboard/w90p910_keypad.c
1599F: drivers/input/touchscreen/w90p910_ts.c
1600F: drivers/watchdog/nuc900_wdt.c
Jeff Kirsher679ec0e2011-07-17 00:20:45 -07001601F: drivers/net/ethernet/nuvoton/w90p910_ether.c
Joe Perches53516842010-08-09 17:20:37 -07001602F: drivers/mtd/nand/nuc900_nand.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001603F: drivers/rtc/rtc-nuc900.c
Joe Perches9df92e62012-01-10 15:09:06 -08001604F: drivers/spi/spi-nuc900.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001605F: drivers/usb/host/ehci-w90x900.c
Jingoo Han8a61f012014-07-01 15:36:01 +09001606F: drivers/video/fbdev/nuc900fb.c
wanzongshun98ad6e32009-02-13 06:04:32 +01001607
Linus Walleij54274d72010-04-04 10:58:03 +01001608ARM/U300 MACHINE SUPPORT
Linus Walleije4651a92012-08-06 09:52:52 +02001609M: Linus Walleij <linus.walleij@linaro.org>
Linus Walleij54274d72010-04-04 10:58:03 +01001610L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1611S: Supported
1612F: arch/arm/mach-u300/
Linus Walleij9affbd22014-01-21 15:04:14 +01001613F: drivers/clocksource/timer-u300.c
Linus Walleij54274d72010-04-04 10:58:03 +01001614F: drivers/i2c/busses/i2c-stu300.c
1615F: drivers/rtc/rtc-coh901331.c
1616F: drivers/watchdog/coh901327_wdt.c
1617F: drivers/dma/coh901318*
Linus Walleij87572882010-12-22 09:18:29 +01001618F: drivers/mfd/ab3100*
1619F: drivers/rtc/rtc-ab3100.c
1620F: drivers/rtc/rtc-coh901331.c
1621T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Linus Walleij54274d72010-04-04 10:58:03 +01001622
Masahiro Yamada3d00d042015-05-08 13:07:14 +09001623ARM/UNIPHIER ARCHITECTURE
1624M: Masahiro Yamada <yamada.masahiro@socionext.com>
1625L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1626S: Maintained
Masahiro Yamadaa3ff83d2015-07-25 16:23:24 +09001627F: arch/arm/boot/dts/uniphier*
Masahiro Yamada3d00d042015-05-08 13:07:14 +09001628F: arch/arm/mach-uniphier/
Masahiro Yamadadd6fd4a2015-10-23 19:51:59 +09001629F: drivers/i2c/busses/i2c-uniphier*
Masahiro Yamadaa3ff83d2015-07-25 16:23:24 +09001630F: drivers/pinctrl/uniphier/
1631F: drivers/tty/serial/8250/8250_uniphier.c
Masahiro Yamada3d00d042015-05-08 13:07:14 +09001632N: uniphier
1633
Linus Walleij87572882010-12-22 09:18:29 +01001634ARM/Ux500 ARM ARCHITECTURE
Linus Walleije4651a92012-08-06 09:52:52 +02001635M: Linus Walleij <linus.walleij@linaro.org>
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001636L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1637S: Maintained
1638F: arch/arm/mach-ux500/
Linus Walleije4651a92012-08-06 09:52:52 +02001639F: drivers/clocksource/clksrc-dbx500-prcmu.c
Linus Walleij87572882010-12-22 09:18:29 +01001640F: drivers/dma/ste_dma40*
Linus Walleije4651a92012-08-06 09:52:52 +02001641F: drivers/hwspinlock/u8500_hsem.c
Linus Walleij87572882010-12-22 09:18:29 +01001642F: drivers/mfd/abx500*
1643F: drivers/mfd/ab8500*
Linus Walleije4651a92012-08-06 09:52:52 +02001644F: drivers/mfd/dbx500*
1645F: drivers/mfd/db8500*
Joe Perchesecc265f2014-08-08 14:26:20 -07001646F: drivers/pinctrl/nomadik/pinctrl-ab*
1647F: drivers/pinctrl/nomadik/pinctrl-nomadik*
Linus Walleij87572882010-12-22 09:18:29 +01001648F: drivers/rtc/rtc-ab8500.c
Linus Walleije4651a92012-08-06 09:52:52 +02001649F: drivers/rtc/rtc-pl031.c
Linus Walleij87572882010-12-22 09:18:29 +01001650T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001651
Ulf Hanssone93fde22013-11-12 11:41:12 +01001652ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1653M: Ulf Hansson <ulf.hansson@linaro.org>
1654L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1655T: git git://git.linaro.org/people/ulfh/clk.git
1656S: Maintained
1657F: drivers/clk/ux500/
1658F: include/linux/platform_data/clk-ux500.h
1659
Pawel Moll740d93b2014-11-26 12:13:05 +00001660ARM/VERSATILE EXPRESS PLATFORM
1661M: Liviu Dudau <liviu.dudau@arm.com>
1662M: Sudeep Holla <sudeep.holla@arm.com>
1663M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
1664L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1665S: Maintained
1666F: arch/arm/boot/dts/vexpress*
Kristina Martsenko9ccd6082015-07-01 13:36:03 +01001667F: arch/arm64/boot/dts/arm/vexpress*
Pawel Moll740d93b2014-11-26 12:13:05 +00001668F: arch/arm/mach-vexpress/
1669F: */*/vexpress*
Pawel Moll7e8f4032014-12-01 14:16:33 +00001670F: */*/*/vexpress*
Pawel Moll740d93b2014-11-26 12:13:05 +00001671F: drivers/clk/versatile/clk-vexpress-osc.c
1672F: drivers/clocksource/versatile.c
1673
Russell Kingd4275352009-04-16 14:05:27 +01001674ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001675M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001676L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001677W: http://www.arm.linux.org.uk/
1678S: Maintained
1679F: arch/arm/vfp/
1680
Marek Vasute66b6d82010-03-26 06:51:32 +01001681ARM/VOIPAC PXA270 SUPPORT
1682M: Marek Vasut <marek.vasut@gmail.com>
1683L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1684S: Maintained
1685F: arch/arm/mach-pxa/vpac270.c
Joe Perchese0cca112010-08-09 17:20:38 -07001686F: arch/arm/mach-pxa/include/mach/vpac270.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001687
Tony Prisk04529fe2012-07-24 04:19:37 +12001688ARM/VT8500 ARM ARCHITECTURE
1689M: Tony Prisk <linux@prisktech.co.nz>
1690L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1691S: Maintained
1692F: arch/arm/mach-vt8500/
Tony Prisk41fd91b2013-02-08 18:18:03 +13001693F: drivers/clocksource/vt8500_timer.c
Tony Prisk560746e2013-06-15 09:52:16 +12001694F: drivers/i2c/busses/i2c-wmt.c
Tony Prisk41fd91b2013-02-08 18:18:03 +13001695F: drivers/mmc/host/wmt-sdmmc.c
1696F: drivers/pwm/pwm-vt8500.c
1697F: drivers/rtc/rtc-vt8500.c
1698F: drivers/tty/serial/vt8500_serial.c
Joe Perches4f311022013-09-11 14:23:46 -07001699F: drivers/usb/host/ehci-platform.c
Tony Prisk41fd91b2013-02-08 18:18:03 +13001700F: drivers/usb/host/uhci-platform.c
Jingoo Han8a61f012014-07-01 15:36:01 +09001701F: drivers/video/fbdev/vt8500lcdfb.*
1702F: drivers/video/fbdev/wm8505fb*
1703F: drivers/video/fbdev/wmt_ge_rops.*
Tony Prisk04529fe2012-07-24 04:19:37 +12001704
Marek Vasute66b6d82010-03-26 06:51:32 +01001705ARM/ZIPIT Z2 SUPPORT
1706M: Marek Vasut <marek.vasut@gmail.com>
1707L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1708S: Maintained
1709F: arch/arm/mach-pxa/z2.c
Joe Perches6ab2a852010-08-09 17:20:38 -07001710F: arch/arm/mach-pxa/include/mach/z2.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001711
Jun Nie5ecc4b52015-04-28 17:18:06 +08001712ARM/ZTE ARCHITECTURE
1713M: Jun Nie <jun.nie@linaro.org>
1714L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1715S: Maintained
1716F: arch/arm/mach-zx/
1717F: drivers/clk/zte/
1718F: Documentation/devicetree/bindings/arm/zte.txt
1719F: Documentation/devicetree/bindings/clock/zx296702-clk.txt
1720
Michal Simek51f29d42013-01-21 17:41:46 +01001721ARM/ZYNQ ARCHITECTURE
1722M: Michal Simek <michal.simek@xilinx.com>
Soren Brinkmannf0fd9ad2014-10-23 09:29:22 -07001723R: Sören Brinkmann <soren.brinkmann@xilinx.com>
Michal Simek51f29d42013-01-21 17:41:46 +01001724L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1725W: http://wiki.xilinx.com
Soren Brinkmannd6448b72015-06-26 09:04:32 -07001726T: git https://github.com/Xilinx/linux-xlnx.git
Michal Simek51f29d42013-01-21 17:41:46 +01001727S: Supported
1728F: arch/arm/mach-zynq/
Michal Simekbd2a3372013-06-04 07:17:39 +00001729F: drivers/cpuidle/cpuidle-zynq.c
Michal Simekfb9d4952014-10-13 15:51:15 -07001730F: drivers/block/xsysace.c
Michal Simekc2fd4e32014-01-02 12:58:50 -08001731N: zynq
1732N: xilinx
1733F: drivers/clocksource/cadence_ttc_timer.c
Soren Brinkmanndf8eb562014-04-04 14:27:55 -07001734F: drivers/i2c/busses/i2c-cadence.c
Soren Brinkmanne3ec3a32013-12-02 10:02:36 -08001735F: drivers/mmc/host/sdhci-of-arasan.c
Punnaiah Choudary Kalluriae9b56e2015-01-06 23:13:47 +05301736F: drivers/edac/synopsys_edac.c
Michal Simek51f29d42013-01-21 17:41:46 +01001737
Will Deacon48ec83b2015-05-27 17:25:59 +01001738ARM SMMU DRIVERS
Will Deaconb8f98792013-06-24 18:31:26 +01001739M: Will Deacon <will.deacon@arm.com>
1740L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1741S: Maintained
1742F: drivers/iommu/arm-smmu.c
Will Deacon48ec83b2015-05-27 17:25:59 +01001743F: drivers/iommu/arm-smmu-v3.c
Will Deacone1d3c0f2014-11-14 17:18:23 +00001744F: drivers/iommu/io-pgtable-arm.c
Will Deaconb8f98792013-06-24 18:31:26 +01001745
Catalin Marinas38074222012-03-05 11:49:34 +00001746ARM64 PORT (AARCH64 ARCHITECTURE)
1747M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasd19766e2012-12-11 13:58:05 +00001748M: Will Deacon <will.deacon@arm.com>
Catalin Marinas38074222012-03-05 11:49:34 +00001749L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1750S: Maintained
1751F: arch/arm64/
Catalin Marinasd19766e2012-12-11 13:58:05 +00001752F: Documentation/arm64/
Catalin Marinas38074222012-03-05 11:49:34 +00001753
Laurent Pinchart9d7005f92012-12-10 20:38:24 -03001754AS3645A LED FLASH CONTROLLER DRIVER
1755M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1756L: linux-media@vger.kernel.org
1757T: git git://linuxtv.org/media_tree.git
1758S: Maintained
1759F: drivers/media/i2c/as3645a.c
1760F: include/media/as3645a.h
1761
George Josephd58de032010-03-05 22:17:25 +01001762ASC7621 HARDWARE MONITOR DRIVER
1763M: George Joseph <george.joseph@fairview5.com>
1764L: lm-sensors@lm-sensors.org
1765S: Maintained
1766F: Documentation/hwmon/asc7621
1767F: drivers/hwmon/asc7621.c
1768
Corentin Charyb229ece2011-02-26 10:20:40 +01001769ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
Corentin Chary5909c652012-12-17 16:00:05 -08001770M: Corentin Chary <corentin.chary@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05001772L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001773W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774S: Maintained
Corentin Charyb229ece2011-02-26 10:20:40 +01001775F: drivers/platform/x86/asus*.c
1776F: drivers/platform/x86/eeepc*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777
Andrew Morton953a6472008-11-06 12:53:28 -08001778ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williams08223d82014-08-19 06:07:56 -07001779R: Dan Williams <dan.j.williams@intel.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001780W: http://sourceforge.net/projects/xscaleiop
Dan Williams08223d82014-08-19 06:07:56 -07001781S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07001782F: Documentation/crypto/async-tx-api.txt
1783F: crypto/async_tx/
1784F: drivers/dma/
1785F: include/linux/dmaengine.h
1786F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001787
Wolfram Sanga1867d32009-09-18 22:45:51 +02001788AT24 EEPROM DRIVER
Wolfram Sang14d77c42013-02-08 20:54:40 +01001789M: Wolfram Sang <wsa@the-dreams.de>
Wolfram Sanga1867d32009-09-18 22:45:51 +02001790L: linux-i2c@vger.kernel.org
1791S: Maintained
1792F: drivers/misc/eeprom/at24.c
Vivien Didelot25f73ed2013-09-27 15:06:28 -04001793F: include/linux/platform_data/at24.h
Wolfram Sanga1867d32009-09-18 22:45:51 +02001794
Randy Dunlape7839f22008-10-12 16:11:45 -07001795ATA OVER ETHERNET (AOE) DRIVER
Ed Cashinfb903812015-03-25 15:55:06 -07001796M: "Ed L. Cashin" <ed.cashin@acm.org>
1797W: http://www.openaoe.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001799F: Documentation/aoe/
1800F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801
Alban Bedelaad7a212015-10-30 11:36:29 +01001802ATHEROS 71XX/9XXX GPIO DRIVER
1803M: Alban Bedel <albeu@free.fr>
1804W: https://github.com/AlbanBedel/linux
1805T: git git://github.com/AlbanBedel/linux
1806S: Maintained
1807F: drivers/gpio/gpio-ath79.c
1808F: Documentation/devicetree/bindings/gpio/gpio-ath79.txt
1809
Joe Perches9a10a872010-12-01 09:37:55 -08001810ATHEROS ATH GENERIC UTILITIES
Luis R. Rodriguezf726ee62013-12-14 20:11:39 +01001811M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
Joe Perches9a10a872010-12-01 09:37:55 -08001812L: linux-wireless@vger.kernel.org
1813S: Supported
1814F: drivers/net/wireless/ath/*
1815
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001816ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001817M: Jiri Slaby <jirislaby@gmail.com>
1818M: Nick Kossifidis <mickflemm@gmail.com>
Luis R. Rodriguezf726ee62013-12-14 20:11:39 +01001819M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001820L: linux-wireless@vger.kernel.org
Joe Perches72c706b2009-09-07 11:34:30 -07001821W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001822S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001823F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001824
Kalle Valo12e62d62011-09-13 10:21:25 +03001825ATHEROS ATH6KL WIRELESS DRIVER
1826M: Kalle Valo <kvalo@qca.qualcomm.com>
1827L: linux-wireless@vger.kernel.org
1828W: http://wireless.kernel.org/en/users/Drivers/ath6kl
Kalle Valo58cfb682013-07-22 12:26:12 +03001829T: git git://github.com/kvalo/ath.git
Kalle Valo12e62d62011-09-13 10:21:25 +03001830S: Supported
1831F: drivers/net/wireless/ath/ath6kl/
1832
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001833WILOCITY WIL6210 WIRELESS DRIVER
1834M: Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
1835L: linux-wireless@vger.kernel.org
1836L: wil6210@qca.qualcomm.com
1837S: Supported
1838W: http://wireless.kernel.org/en/users/Drivers/wil6210
1839F: drivers/net/wireless/ath/wil6210/
Vladimir Kondratievdba4b742014-10-01 15:05:25 +03001840F: include/uapi/linux/wil6210_uapi.h
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001841
Christian Lamparter1d7e1e62010-09-06 01:10:25 +02001842CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1843M: Christian Lamparter <chunkeey@googlemail.com>
1844L: linux-wireless@vger.kernel.org
1845W: http://wireless.kernel.org/en/users/Drivers/carl9170
1846S: Maintained
1847F: drivers/net/wireless/ath/carl9170/
1848
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001849ATK0110 HWMON DRIVER
1850M: Luca Tettamanti <kronos.it@gmail.com>
1851L: lm-sensors@lm-sensors.org
1852S: Maintained
1853F: drivers/hwmon/asus_atk0110.c
1854
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001855ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001856M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001857S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001858F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001859
Chris Snook7ae115b2008-09-09 03:26:57 -04001860ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001861M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +00001862M: Chris Snook <chris.snook@gmail.com>
Chris Snooke443e382010-09-16 22:00:28 -07001863L: netdev@vger.kernel.org
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001864W: http://sourceforge.net/projects/atl1
1865W: http://atl1.sourceforge.net
1866S: Maintained
Jeff Kirsher2b133ad2011-05-20 06:55:16 -07001867F: drivers/net/ethernet/atheros/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001868
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869ATM
chas williams - CONTRACTOR366c1bd2015-03-11 16:18:01 -04001870M: Chas Williams <3chas3@gmail.com>
Joe Perches476604d2009-10-26 16:49:41 -07001871L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001872L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873W: http://linux-atm.sourceforge.net
1874S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001875F: drivers/atm/
1876F: include/linux/atm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001877F: include/uapi/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001879ATMEL AT91 / AT32 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001880M: Ludovic Desroches <ludovic.desroches@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001881S: Maintained
1882F: drivers/mmc/host/atmel-mci.c
1883F: drivers/mmc/host/atmel-mci-regs.h
1884
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001885ATMEL AT91 / AT32 SERIAL DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001886M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001887S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001888F: drivers/tty/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001889
Bo Shendfae90e2014-09-28 09:57:19 +08001890ATMEL Audio ALSA driver
Nicolas Ferre3a820022015-03-31 15:34:51 +02001891M: Nicolas Ferre <nicolas.ferre@atmel.com>
Bo Shendfae90e2014-09-28 09:57:19 +08001892L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1893S: Supported
1894F: sound/soc/atmel
1895
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001896ATMEL DMA DRIVER
1897M: Nicolas Ferre <nicolas.ferre@atmel.com>
1898L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1899S: Supported
1900F: drivers/dma/at_hdmac.c
1901F: drivers/dma/at_hdmac_regs.h
Cesar Eduardo Barros6f0d65a2013-01-04 15:35:20 -08001902F: include/linux/platform_data/dma-atmel.h
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001903
Ludovic Desroches6bd0f432014-10-22 17:22:20 +02001904ATMEL XDMA DRIVER
1905M: Ludovic Desroches <ludovic.desroches@atmel.com>
1906L: linux-arm-kernel@lists.infradead.org
1907L: dmaengine@vger.kernel.org
1908S: Supported
1909F: drivers/dma/at_xdmac.c
1910
Ludovic Desroches888f2802013-03-15 05:32:57 +00001911ATMEL I2C DRIVER
1912M: Ludovic Desroches <ludovic.desroches@atmel.com>
1913L: linux-i2c@vger.kernel.org
1914S: Supported
1915F: drivers/i2c/busses/i2c-at91.c
1916
Josh Wu15515542012-03-23 17:56:29 +08001917ATMEL ISI DRIVER
1918M: Josh Wu <josh.wu@atmel.com>
1919L: linux-media@vger.kernel.org
1920S: Supported
Cesar Eduardo Barrosf2294c2d2013-01-04 15:35:21 -08001921F: drivers/media/platform/soc_camera/atmel-isi.c
Josh Wu15515542012-03-23 17:56:29 +08001922F: include/media/atmel-isi.h
1923
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001924ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001925M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01001926L: linux-fbdev@vger.kernel.org
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001927S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09001928F: drivers/video/fbdev/atmel_lcdfb.c
Joe Perches679655d2009-04-07 20:44:32 -07001929F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001930
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001931ATMEL MACB ETHERNET DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001932M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001933S: Supported
Jeff Kirsher9f2f3812011-06-18 01:52:36 -07001934F: drivers/net/ethernet/cadence/
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001935
Josh Wu5cbac982014-10-13 15:51:24 -07001936ATMEL NAND DRIVER
1937M: Josh Wu <josh.wu@atmel.com>
1938L: linux-mtd@lists.infradead.org
1939S: Supported
1940F: drivers/mtd/nand/atmel_nand*
1941
ludovic.desroches@atmel.com05c441e2015-07-29 16:22:48 +02001942ATMEL SDMMC DRIVER
1943M: Ludovic Desroches <ludovic.desroches@atmel.com>
1944L: linux-mmc@vger.kernel.org
1945S: Supported
1946F: drivers/mmc/host/sdhci-of-at91.c
1947
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001948ATMEL SPI DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001949M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001950S: Supported
Joe Perches9df92e62012-01-10 15:09:06 -08001951F: drivers/spi/spi-atmel.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001952
Bo Shen0ef09012014-09-28 09:57:18 +08001953ATMEL SSC DRIVER
Nicolas Ferre03515f32015-03-19 10:49:42 +01001954M: Nicolas Ferre <nicolas.ferre@atmel.com>
Bo Shen0ef09012014-09-28 09:57:18 +08001955L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1956S: Supported
1957F: drivers/misc/atmel-ssc.c
1958F: include/linux/atmel-ssc.h
1959
Nicolas Ferree9cb1c52012-03-26 15:59:32 +02001960ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1961M: Nicolas Ferre <nicolas.ferre@atmel.com>
1962L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1963S: Supported
1964F: drivers/misc/atmel_tclib.c
1965F: drivers/clocksource/tcb_clksrc.c
1966
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001967ATMEL USBA UDC DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001968M: Nicolas Ferre <nicolas.ferre@atmel.com>
1969L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001970S: Supported
Joe Perchesfaf2e1d2014-08-08 14:26:18 -07001971F: drivers/usb/gadget/udc/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001972
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001974M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07001975L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976W: http://www.thekelleys.org.uk/atmel
1977W: http://atmelwlandriver.sourceforge.net/
1978S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001979F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980
Nick Dyera14c0f82015-08-04 16:22:54 -07001981ATMEL MAXTOUCH DRIVER
1982M: Nick Dyer <nick.dyer@itdev.co.uk>
1983T: git git://github.com/atmel-maxtouch/linux.git
1984S: Supported
1985F: Documentation/devicetree/bindings/input/atmel,maxtouch.txt
1986F: drivers/input/touchscreen/atmel_mxt_ts.c
1987F: include/linux/platform_data/atmel_mxt_ts.h
1988
Bradley Grove26780d92013-08-23 10:35:45 -04001989ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
Joe Perchesb75f0052014-03-03 15:38:37 -08001990M: Bradley Grove <linuxdrivers@attotech.com>
1991L: linux-scsi@vger.kernel.org
1992W: http://www.attotech.com
1993S: Supported
1994F: drivers/scsi/esas2r
Bradley Grove26780d92013-08-23 10:35:45 -04001995
Stefan Schmidtbc6e17b2015-05-29 10:51:28 +02001996ATUSB IEEE 802.15.4 RADIO DRIVER
1997M: Stefan Schmidt <stefan@osg.samsung.com>
1998L: linux-wpan@vger.kernel.org
1999S: Maintained
2000F: drivers/net/ieee802154/atusb.c
2001F: drivers/net/ieee802154/atusb.h
2002F: drivers/net/ieee802154/at86rf230.h
2003
Chris Wrighta92b7b82005-07-07 18:12:23 -07002004AUDIT SUBSYSTEM
Paul Moore915f3892014-10-20 11:59:43 -04002005M: Paul Moore <paul@paul-moore.com>
Joe Perches8b58be82009-07-29 15:04:30 -07002006M: Eric Paris <eparis@redhat.com>
Paul Moore915f3892014-10-20 11:59:43 -04002007L: linux-audit@redhat.com (moderated for non-subscribers)
David Woodhousead3f9a22005-07-13 15:28:29 +01002008W: http://people.redhat.com/sgrubb/audit/
Paul Moore915f3892014-10-20 11:59:43 -04002009T: git git://git.infradead.org/users/pcmoore/audit
Chris Wrighta92b7b82005-07-07 18:12:23 -07002010S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002011F: include/linux/audit.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002012F: include/uapi/linux/audit.h
Joe Perches679655d2009-04-07 20:44:32 -07002013F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07002014
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002015AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002016M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07002017W: http://miguelojeda.es/auxdisplay.htm
2018W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002019S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002020F: drivers/auxdisplay/
2021F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002022
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07002023AVR32 ARCHITECTURE
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02002024M: Haavard Skinnemoen <hskinnemoen@gmail.com>
2025M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07002026W: http://www.atmel.com/products/AVR32/
Matthias Brugger249d9d92013-02-04 14:28:47 -08002027W: http://mirror.egtvedt.no/avr32linux.org/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07002028W: http://avrfreaks.net/
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02002029S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002030F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07002031
2032AVR32/AT32AP MACHINE SUPPORT
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02002033M: Haavard Skinnemoen <hskinnemoen@gmail.com>
2034M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
2035S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002036F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07002037
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07002039M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002041W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002043F: include/uapi/linux/ax25.h
Joe Perches679655d2009-04-07 20:44:32 -07002044F: include/net/ax25.h
2045F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046
Mauro Carvalho Chehabd5269392012-11-02 12:00:30 -02002047AZ6007 DVB DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02002048M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehabd5269392012-11-02 12:00:30 -02002049L: linux-media@vger.kernel.org
2050W: http://linuxtv.org
2051T: git git://linuxtv.org/media_tree.git
2052S: Maintained
2053F: drivers/media/usb/dvb-usb-v2/az6007.c
2054
Hans Verkuil67773762012-11-23 07:09:23 -03002055AZTECH FM RADIO RECEIVER DRIVER
2056M: Hans Verkuil <hverkuil@xs4all.nl>
2057L: linux-media@vger.kernel.org
2058T: git git://linuxtv.org/media_tree.git
2059W: http://linuxtv.org
2060S: Maintained
2061F: drivers/media/radio/radio-aztech*
2062
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002063B43 WIRELESS DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002064L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01002065L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02002066W: http://wireless.kernel.org/en/users/Drivers/b43
Joe Perches8a72ed62015-04-15 16:17:39 -07002067S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07002068F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002069
2070B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002071M: Larry Finger <Larry.Finger@lwfinger.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002072L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01002073L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02002074W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002075S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002076F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002077
Richard Purdie300abeb2007-02-07 22:21:07 +00002078BACKLIGHT CLASS/SUBSYSTEM
Jingoo Hanb7701752015-05-14 15:17:07 -07002079M: Jingoo Han <jingoohan1@gmail.com>
Jingoo Han70d14fc2014-04-03 14:48:46 -07002080M: Lee Jones <lee.jones@linaro.org>
Richard Purdie300abeb2007-02-07 22:21:07 +00002081S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002082F: drivers/video/backlight/
2083F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00002084
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002085BATMAN ADVANCED
Antonio Quartulli207df492013-09-21 13:46:56 +02002086M: Marek Lindner <mareklindner@neomailbox.ch>
Simon Wunderlichc679ff82013-10-10 23:59:10 +02002087M: Simon Wunderlich <sw@simonwunderlich.de>
Antonio Quartulli207df492013-09-21 13:46:56 +02002088M: Antonio Quartulli <antonio@meshcoding.com>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002089L: b.a.t.m.a.n@lists.open-mesh.org
2090W: http://www.open-mesh.org/
2091S: Maintained
2092F: net/batman-adv/
2093
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002094BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002095M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002096L: linux-hams@vger.kernel.org
2097W: http://www.baycom.org/~tom/ham/ham.html
2098S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002099F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002100
Kent Overstreetcafe5632013-03-23 16:11:31 -07002101BCACHE (BLOCK LAYER CACHE)
Joe Perchesd1aa1ab2015-06-30 14:59:54 -07002102M: Kent Overstreet <kent.overstreet@gmail.com>
Kent Overstreetcafe5632013-03-23 16:11:31 -07002103L: linux-bcache@vger.kernel.org
2104W: http://bcache.evilpiepirate.org
Joe Perchesd1aa1ab2015-06-30 14:59:54 -07002105S: Maintained
Kent Overstreetcafe5632013-03-23 16:11:31 -07002106F: drivers/md/bcache/
2107
Hans Verkuil04bd8442015-06-08 09:26:20 -03002108BDISP ST MEDIA DRIVER
2109M: Fabien Dessenne <fabien.dessenne@st.com>
2110L: linux-media@vger.kernel.org
2111T: git git://linuxtv.org/media_tree.git
2112W: http://linuxtv.org
2113S: Supported
2114F: drivers/media/platform/sti/bdisp
2115
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002116BEFS FILE SYSTEM
Joe Perches55817d32010-08-09 17:20:52 -07002117S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002118F: Documentation/filesystems/befs.txt
2119F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002120
Dariusz Marcinkiewicz564ee362014-08-15 17:50:47 +02002121BECKHOFF CX5020 ETHERCAT MASTER DRIVER
Joe Perches49e7d9d2015-04-15 16:17:31 -07002122M: Dariusz Marcinkiewicz <reksio@newterm.pl>
2123L: netdev@vger.kernel.org
2124S: Maintained
2125F: drivers/net/ethernet/ec_bhf.c
Dariusz Marcinkiewicz564ee362014-08-15 17:50:47 +02002126
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002127BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002128M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002129S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002130F: Documentation/filesystems/bfs.txt
2131F: fs/bfs/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002132F: include/uapi/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002133
Bryan Wu1394f032007-05-06 14:50:22 -07002134BLACKFIN ARCHITECTURE
Sonic Zhanga4edbc12014-01-29 14:05:55 -08002135M: Steven Miao <realmz6@gmail.com>
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002136L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Michael Opdenacker14431762014-03-10 15:49:49 -07002137T: git git://git.code.sf.net/p/adi-linux/code
Bryan Wue3b2d3f2007-06-11 15:31:30 +08002138W: http://blackfin.uclinux.org
2139S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002140F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07002141
Bryan Wue190d6b2007-07-17 14:43:44 +08002142BLACKFIN EMAC DRIVER
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002143L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Bryan Wue190d6b2007-07-17 14:43:44 +08002144W: http://blackfin.uclinux.org
2145S: Supported
Jeff Kirsher7b35f032011-06-18 00:01:26 -07002146F: drivers/net/ethernet/adi/
Bryan Wue190d6b2007-07-17 14:43:44 +08002147
Mike Frysinger566da5b2007-06-11 15:31:30 +08002148BLACKFIN RTC DRIVER
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002149L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Mike Frysinger566da5b2007-06-11 15:31:30 +08002150W: http://blackfin.uclinux.org
2151S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002152F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08002153
Mike Frysinger936ed492010-03-10 15:20:38 -08002154BLACKFIN SDH DRIVER
Sonic Zhang109ec8c2012-08-08 12:16:08 +08002155M: Sonic Zhang <sonic.zhang@analog.com>
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002156L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Mike Frysinger936ed492010-03-10 15:20:38 -08002157W: http://blackfin.uclinux.org
2158S: Supported
2159F: drivers/mmc/host/bfin_sdh.c
2160
Bryan Wu1394f032007-05-06 14:50:22 -07002161BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002162M: Sonic Zhang <sonic.zhang@analog.com>
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002163L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Bryan Wue3b2d3f2007-06-11 15:31:30 +08002164W: http://blackfin.uclinux.org
2165S: Supported
Joe Perches84602412012-01-10 15:09:04 -08002166F: drivers/tty/serial/bfin_uart.c
Bryan Wu1394f032007-05-06 14:50:22 -07002167
Bryan Wu1e6d3202007-07-15 02:50:02 +08002168BLACKFIN WATCHDOG DRIVER
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002169L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Bryan Wu1e6d3202007-07-15 02:50:02 +08002170W: http://blackfin.uclinux.org
2171S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002172F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08002173
Bryan Wud24ecfc2007-05-01 23:26:32 +02002174BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002175M: Sonic Zhang <sonic.zhang@analog.com>
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002176L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Bryan Wud24ecfc2007-05-01 23:26:32 +02002177W: http://blackfin.uclinux.org/
2178S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002179F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02002180
Scott Jiang1e204372013-01-18 17:09:47 -03002181BLACKFIN MEDIA DRIVER
2182M: Scott Jiang <scott.jiang.linux@gmail.com>
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002183L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Scott Jiang1e204372013-01-18 17:09:47 -03002184W: http://blackfin.uclinux.org/
2185S: Supported
2186F: drivers/media/platform/blackfin/
2187F: drivers/media/i2c/adv7183*
2188F: drivers/media/i2c/vs6624*
2189
Jan-Simon Möllerb54cf352012-07-20 16:49:06 +08002190BLINKM RGB LED DRIVER
2191M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
2192S: Maintained
2193F: drivers/leds/leds-blinkm.c
2194
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07002196M: Jens Axboe <axboe@kernel.dk>
Joe Perches08deed12012-03-23 15:01:57 -07002197T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002199F: block/
Steven Rostedtae11f7e2015-06-09 17:30:11 -04002200F: kernel/trace/blktrace.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201
Joern Engel2b54aae2008-02-06 01:38:02 -08002202BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002203M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08002204L: linux-mtd@lists.infradead.org
2205S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002206F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08002207
Marcel Holtmann63fbd242008-08-18 13:23:53 +02002208BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002209M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07002210M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07002211M: Johan Hedberg <johan.hedberg@gmail.com>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02002212L: linux-bluetooth@vger.kernel.org
2213W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02002214T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2215T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Marcel Holtmann63fbd242008-08-18 13:23:53 +02002216S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002217F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02002218
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002220M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07002221M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07002222M: Johan Hedberg <johan.hedberg@gmail.com>
Pavel Machek781c2842008-03-20 15:41:02 -07002223L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02002224W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02002225T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2226T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002228F: net/bluetooth/
2229F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231BONDING DRIVER
Jay Vosburgh79b30752014-03-27 10:33:44 -07002232M: Jay Vosburgh <j.vosburgh@gmail.com>
Veaceslav Falico898602a2014-03-27 18:43:50 +01002233M: Veaceslav Falico <vfalico@gmail.com>
Andy Gospodarek31639b92015-02-25 17:00:16 -05002234M: Andy Gospodarek <gospo@cumulusnetworks.com>
Simon Hormana6c36ee2010-11-21 09:58:04 -08002235L: netdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01002236W: http://sourceforge.net/projects/bonding/
2237S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002238F: drivers/net/bonding/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002239F: include/uapi/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240
Alexei Starovoitovb5f4df32014-07-22 23:01:59 -07002241BPF (Safe dynamic programs and tools)
2242M: Alexei Starovoitov <ast@kernel.org>
2243L: netdev@vger.kernel.org
2244L: linux-kernel@vger.kernel.org
2245S: Supported
2246F: kernel/bpf/
2247
Gary Zambrano39105892006-06-22 17:26:20 -07002248BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002249M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07002250L: netdev@vger.kernel.org
2251S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07002252F: drivers/net/ethernet/broadcom/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07002253
Florian Fainelli32ec90d2014-02-13 16:08:51 -08002254BROADCOM GENET ETHERNET DRIVER
2255M: Florian Fainelli <f.fainelli@gmail.com>
2256L: netdev@vger.kernel.org
2257S: Supported
2258F: drivers/net/ethernet/broadcom/genet/
2259
Michael Chan948c51e2006-06-04 02:51:39 -07002260BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Jitendra Kalsariaf1d1bae2014-06-23 15:10:35 -04002261M: Sony Chacko <sony.chacko@qlogic.com>
2262M: Dept-HSGLinuxNICDev@qlogic.com
Michael Chan948c51e2006-06-04 02:51:39 -07002263L: netdev@vger.kernel.org
2264S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07002265F: drivers/net/ethernet/broadcom/bnx2.*
2266F: drivers/net/ethernet/broadcom/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07002267
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08002268BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Ariel Elior08f6dd82014-05-27 13:11:36 +03002269M: Ariel Elior <ariel.elior@qlogic.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08002270L: netdev@vger.kernel.org
2271S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07002272F: drivers/net/ethernet/broadcom/bnx2x/
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08002273
Matt Porter90f4c592014-05-06 12:09:45 -04002274BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
Florian Fainellif18cf052014-09-19 11:17:12 -07002275M: Florian Fainelli <f.fainelli@gmail.com>
Florian Fainellid3cc2e82015-04-10 11:49:44 -07002276M: Ray Jui <rjui@broadcom.com>
2277M: Scott Branden <sbranden@broadcom.com>
Christian Daudt497a0452013-09-24 15:27:47 -07002278L: bcm-kernel-feedback-list@broadcom.com
Matt Porter90f4c592014-05-06 12:09:45 -04002279T: git git://github.com/broadcom/mach-bcm
Christian Daudtaf4b8e32013-09-11 14:23:49 -07002280S: Maintained
2281F: arch/arm/mach-bcm/
2282F: arch/arm/boot/dts/bcm113*
Matt Porter90f4c592014-05-06 12:09:45 -04002283F: arch/arm/boot/dts/bcm216*
Christian Daudtaf4b8e32013-09-11 14:23:49 -07002284F: arch/arm/boot/dts/bcm281*
2285F: arch/arm/configs/bcm_defconfig
Joe Perchese4ef47f2014-08-08 14:25:08 -07002286F: drivers/mmc/host/sdhci-bcm-kona.c
Christian Daudtaf4b8e32013-09-11 14:23:49 -07002287F: drivers/clocksource/bcm_kona_timer.c
2288
Scott Branden9209bec2014-10-16 21:57:16 -06002289BROADCOM BCM2835 ARM ARCHITECTURE
Stephen Warrenf680f252012-09-15 00:18:54 -06002290M: Stephen Warren <swarren@wwwdotorg.org>
Stephen Warren8bcdd922014-11-04 20:27:17 -07002291M: Lee Jones <lee@kernel.org>
Eric Anholt10b9e882015-07-22 12:55:36 -07002292M: Eric Anholt <eric@anholt.net>
Stephen Warrenf680f252012-09-15 00:18:54 -06002293L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
Eric Anholt82481122015-07-22 12:55:37 -07002294L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Stephen Warren8bcdd922014-11-04 20:27:17 -07002295T: git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git
Stephen Warrenf680f252012-09-15 00:18:54 -06002296S: Maintained
Scott Branden9209bec2014-10-16 21:57:16 -06002297N: bcm2835
Stephen Warrenf680f252012-09-15 00:18:54 -06002298
Kevin Cernekeea2f67342014-10-20 21:28:06 -07002299BROADCOM BCM33XX MIPS ARCHITECTURE
2300M: Kevin Cernekee <cernekee@gmail.com>
2301L: linux-mips@linux-mips.org
2302S: Maintained
2303F: arch/mips/bcm3384/*
2304F: arch/mips/include/asm/mach-bcm3384/*
2305F: arch/mips/kernel/*bmips*
2306
Rafał Miłecki5564f092015-05-29 07:39:26 +02002307BROADCOM BCM47XX MIPS ARCHITECTURE
2308M: Hauke Mehrtens <hauke@hauke-m.de>
2309M: Rafał Miłecki <zajec5@gmail.com>
2310L: linux-mips@linux-mips.org
2311S: Maintained
2312F: arch/mips/bcm47xx/*
2313F: arch/mips/include/asm/mach-bcm47xx/*
2314
Scott Branden9209bec2014-10-16 21:57:16 -06002315BROADCOM BCM5301X ARM ARCHITECTURE
Hauke Mehrtens5b293eb2014-02-04 00:01:43 +01002316M: Hauke Mehrtens <hauke@hauke-m.de>
2317L: linux-arm-kernel@lists.infradead.org
2318S: Maintained
2319F: arch/arm/mach-bcm/bcm_5301x.c
2320F: arch/arm/boot/dts/bcm5301x.dtsi
2321F: arch/arm/boot/dts/bcm470*
2322
Florian Fainellie076e962014-03-04 18:14:58 -08002323BROADCOM BCM63XX ARM ARCHITECTURE
2324M: Florian Fainelli <f.fainelli@gmail.com>
2325L: linux-arm-kernel@lists.infradead.org
Florian Fainellieb6725d2015-01-29 15:21:56 -08002326T: git git://github.com/broadcom/arm-bcm63xx.git
Florian Fainellie076e962014-03-04 18:14:58 -08002327S: Maintained
2328F: arch/arm/mach-bcm/bcm63xx.c
2329F: arch/arm/include/debug/bcm63xx.S
2330
Kevin Cernekee7110e2272014-10-20 21:28:07 -07002331BROADCOM BCM63XX/BCM33XX UDC DRIVER
2332M: Kevin Cernekee <cernekee@gmail.com>
2333L: linux-usb@vger.kernel.org
2334S: Maintained
2335F: drivers/usb/gadget/udc/bcm63xx_udc.*
2336
Brian Norris2df94fd2014-07-14 18:06:03 -07002337BROADCOM BCM7XXX ARM ARCHITECTURE
Brian Norris2df94fd2014-07-14 18:06:03 -07002338M: Brian Norris <computersforpeace@gmail.com>
Florian Fainelli3b4b6fe2014-11-14 12:53:43 -08002339M: Gregory Fong <gregory.0xf0@gmail.com>
2340M: Florian Fainelli <f.fainelli@gmail.com>
Brian Norris2df94fd2014-07-14 18:06:03 -07002341L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Florian Fainellieb6725d2015-01-29 15:21:56 -08002342T: git git://github.com/broadcom/stblinux.git
Brian Norris2df94fd2014-07-14 18:06:03 -07002343S: Maintained
2344F: arch/arm/mach-bcm/*brcmstb*
2345F: arch/arm/boot/dts/bcm7*.dts*
Florian Fainellie36661e2014-11-14 12:53:44 -08002346F: drivers/bus/brcmstb_gisb.c
Brian Norris5009a282015-03-18 18:09:05 -07002347N: brcmstb
Brian Norris2df94fd2014-07-14 18:06:03 -07002348
Kevin Cernekee70371ce2014-11-15 16:17:45 -08002349BROADCOM BMIPS MIPS ARCHITECTURE
2350M: Kevin Cernekee <cernekee@gmail.com>
2351M: Florian Fainelli <f.fainelli@gmail.com>
2352L: linux-mips@linux-mips.org
Florian Fainellieb6725d2015-01-29 15:21:56 -08002353T: git git://github.com/broadcom/stblinux.git
Kevin Cernekee70371ce2014-11-15 16:17:45 -08002354S: Maintained
2355F: arch/mips/bmips/*
2356F: arch/mips/include/asm/mach-bmips/*
2357F: arch/mips/kernel/*bmips*
Joe Perches338808d2015-06-30 14:59:42 -07002358F: arch/mips/boot/dts/brcm/bcm*.dts*
Kevin Cernekee70371ce2014-11-15 16:17:45 -08002359F: drivers/irqchip/irq-bcm7*
2360F: drivers/irqchip/irq-brcmstb*
2361
Michael Chan948c51e2006-06-04 02:51:39 -07002362BROADCOM TG3 GIGABIT ETHERNET DRIVER
Prashant Sreedharan23629472014-06-27 16:21:50 -07002363M: Prashant Sreedharan <prashant@broadcom.com>
Joe Perches8b58be82009-07-29 15:04:30 -07002364M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07002365L: netdev@vger.kernel.org
2366S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07002367F: drivers/net/ethernet/broadcom/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07002368
Henry Ptasinskia9533e72010-09-08 21:04:42 -07002369BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2370M: Brett Rudley <brudley@broadcom.com>
Henry Ptasinski818c07b2010-12-08 13:09:49 -08002371M: Arend van Spriel <arend@broadcom.com>
Roland Vossen85d63682011-06-01 13:44:56 +02002372M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
Arend van Spriel006a8f12012-11-28 21:44:04 +01002373M: Hante Meuleman <meuleman@broadcom.com>
Henry Ptasinskia9533e72010-09-08 21:04:42 -07002374L: linux-wireless@vger.kernel.org
Arend van Spriel56151712012-06-14 14:16:27 +02002375L: brcm80211-dev-list@broadcom.com
Henry Ptasinskia9533e72010-09-08 21:04:42 -07002376S: Supported
Joe Perchesf62ebdd2011-12-09 00:12:52 -08002377F: drivers/net/wireless/brcm80211/
Henry Ptasinskia9533e72010-09-08 21:04:42 -07002378
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07002379BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
Vikas Chaudhary3b7f0402014-07-03 08:18:29 -04002380M: QLogic-Storage-Upstream@qlogic.com
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07002381L: linux-scsi@vger.kernel.org
2382S: Supported
2383F: drivers/scsi/bnx2fc/
2384
Eddie Wai6a6b5ad02013-07-11 17:15:56 -07002385BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
Vikas Chaudhary3b7f0402014-07-03 08:18:29 -04002386M: QLogic-Storage-Upstream@qlogic.com
Eddie Wai6a6b5ad02013-07-11 17:15:56 -07002387L: linux-scsi@vger.kernel.org
2388S: Supported
2389F: drivers/scsi/bnx2i/
2390
Scott Branden36c02372014-09-12 16:50:56 -07002391BROADCOM CYGNUS/IPROC ARM ARCHITECTURE
2392M: Ray Jui <rjui@broadcom.com>
2393M: Scott Branden <sbranden@broadcom.com>
2394L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2395L: bcm-kernel-feedback-list@broadcom.com
Florian Fainellieb6725d2015-01-29 15:21:56 -08002396T: git git://github.com/broadcom/cygnus-linux.git
Scott Branden36c02372014-09-12 16:50:56 -07002397S: Maintained
2398N: iproc
2399N: cygnus
2400N: bcm9113*
2401N: bcm9583*
2402N: bcm583*
2403N: bcm113*
2404
Gregory Fong3b0213d2015-05-28 19:14:05 -07002405BROADCOM BRCMSTB GPIO DRIVER
2406M: Gregory Fong <gregory.0xf0@gmail.com>
2407L: bcm-kernel-feedback-list@broadcom.com>
2408S: Supported
2409F: drivers/gpio/gpio-brcmstb.c
2410F: Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2411
Markus Mayer7b7f5882014-02-12 15:42:27 -08002412BROADCOM KONA GPIO DRIVER
Markus Mayer5e163902014-07-29 11:10:07 -07002413M: Ray Jui <rjui@broadcom.com>
Markus Mayer7b7f5882014-02-12 15:42:27 -08002414L: bcm-kernel-feedback-list@broadcom.com
2415S: Supported
2416F: drivers/gpio/gpio-bcm-kona.c
Joe Perches1db12cd2015-06-30 14:59:45 -07002417F: Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
Markus Mayer7b7f5882014-02-12 15:42:27 -08002418
Rafał Miłeckif6e734a2015-06-10 23:05:08 +02002419BROADCOM NVRAM DRIVER
2420M: Rafał Miłecki <zajec5@gmail.com>
2421L: linux-mips@linux-mips.org
2422S: Maintained
2423F: drivers/firmware/broadcom/*
2424
Brian Norris02787da2015-05-12 17:16:50 -07002425BROADCOM STB NAND FLASH DRIVER
2426M: Brian Norris <computersforpeace@gmail.com>
2427L: linux-mtd@lists.infradead.org
2428S: Maintained
2429F: drivers/mtd/nand/brcmnand/
2430
Rafał Miłeckic9678d82012-01-13 22:55:05 +01002431BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2432M: Rafał Miłecki <zajec5@gmail.com>
2433L: linux-wireless@vger.kernel.org
2434S: Maintained
2435F: drivers/bcma/
2436F: include/linux/bcma/
2437
Florian Fainellib8302202014-04-24 18:09:00 -07002438BROADCOM SYSTEMPORT ETHERNET DRIVER
2439M: Florian Fainelli <f.fainelli@gmail.com>
2440L: netdev@vger.kernel.org
2441S: Supported
2442F: drivers/net/ethernet/broadcom/bcmsysport.*
2443
Jing Huang7725ccf2009-09-23 17:46:15 -07002444BROCADE BFA FC SCSI DRIVER
Anil Gurumurthyaa803372014-02-26 06:08:42 -05002445M: Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2446M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
Joe Perches455518e2009-11-11 14:26:10 -08002447L: linux-scsi@vger.kernel.org
2448S: Supported
2449F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07002450
Rasesh Mody8b230ed2010-08-23 20:24:12 -07002451BROCADE BNA 10 GIGABIT ETHERNET DRIVER
Rasesh Mody439e9572014-10-01 17:20:41 -04002452M: Rasesh Mody <rasesh.mody@qlogic.com>
Rasesh Mody8b230ed2010-08-23 20:24:12 -07002453L: netdev@vger.kernel.org
2454S: Supported
Jeff Kirsherf844a0e2011-05-13 01:00:03 -07002455F: drivers/net/ethernet/brocade/bna/
Rasesh Mody8b230ed2010-08-23 20:24:12 -07002456
Jens Axboe5cdf7f72007-07-17 08:58:06 +02002457BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07002458M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02002459L: linux-scsi@vger.kernel.org
2460S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002461F: block/bsg.c
2462F: include/linux/bsg.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002463F: include/uapi/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02002464
Clemens Ladischaf399172011-01-10 16:32:54 +01002465BT87X AUDIO DRIVER
2466M: Clemens Ladisch <clemens@ladisch.de>
2467L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2468T: git git://git.alsa-project.org/alsa-kernel.git
2469S: Maintained
2470F: Documentation/sound/alsa/Bt87x.txt
2471F: sound/pci/bt87x.c
2472
Michael Bueschff1d5c22008-07-25 01:46:10 -07002473BT8XXGPIO DRIVER
Michael Büscheb032b92011-07-04 20:50:05 +02002474M: Michael Buesch <m@bues.ch>
Michael Bueschff1d5c22008-07-25 01:46:10 -07002475W: http://bu3sch.de/btgpio.php
2476S: Maintained
Joe Perches72dbb702012-01-10 15:08:46 -08002477F: drivers/gpio/gpio-bt8xx.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07002478
Joe Percheseb1eb042009-01-21 10:49:16 -05002479BTRFS FILE SYSTEM
Chris Masonc0778e22013-12-03 20:16:03 -05002480M: Chris Mason <clm@fb.com>
2481M: Josef Bacik <jbacik@fb.com>
Jiri Slabyd8130622015-07-17 16:23:20 -07002482M: David Sterba <dsterba@suse.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05002483L: linux-btrfs@vger.kernel.org
2484W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08002485Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Liu Bo9c106402012-06-14 02:23:25 -06002486T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
Joe Percheseb1eb042009-01-21 10:49:16 -05002487S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002488F: Documentation/filesystems/btrfs.txt
2489F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05002490
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02002492M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002493L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07002494W: http://linuxtv.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02002495T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehabf96236e2012-11-02 11:14:18 -02002496S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07002497F: Documentation/video4linux/bttv/
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002498F: drivers/media/pci/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499
Khalid Aziz1f349232013-06-25 09:57:27 -06002500BUSLOGIC SCSI DRIVER
2501M: Khalid Aziz <khalid@gonehiking.org>
2502L: linux-scsi@vger.kernel.org
2503S: Maintained
2504F: drivers/scsi/BusLogic.*
2505F: drivers/scsi/FlashPoint.*
2506
Clemens Ladischaf399172011-01-10 16:32:54 +01002507C-MEDIA CMI8788 DRIVER
2508M: Clemens Ladisch <clemens@ladisch.de>
2509L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2510T: git git://git.alsa-project.org/alsa-kernel.git
2511S: Maintained
2512F: sound/pci/oxygen/
2513
Mark Salter21413552011-10-04 11:21:42 -04002514C6X ARCHITECTURE
2515M: Mark Salter <msalter@redhat.com>
2516M: Aurelien Jacquiot <a-jacquiot@ti.com>
2517L: linux-c6x-dev@linux-c6x.org
2518W: http://www.linux-c6x.org/wiki/index.php/Main_Page
2519S: Maintained
2520F: arch/c6x/
2521
David Howellsa5432f52009-04-20 15:46:45 +01002522CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07002523M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01002524L: linux-cachefs@redhat.com
2525S: Supported
2526F: Documentation/filesystems/caching/cachefiles.txt
2527F: fs/cachefiles/
2528
Hans Verkuilc815ca32012-11-23 07:05:54 -03002529CADET FM/AM RADIO RECEIVER DRIVER
2530M: Hans Verkuil <hverkuil@xs4all.nl>
2531L: linux-media@vger.kernel.org
2532T: git git://linuxtv.org/media_tree.git
2533W: http://linuxtv.org
2534S: Maintained
2535F: drivers/media/radio/radio-cadet*
2536
Jonathan Corbet77d51402007-03-22 19:44:17 -03002537CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002538M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002539L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02002540T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03002541S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002542F: Documentation/video4linux/cafe_ccic
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002543F: drivers/media/platform/marvell-ccic/
Jonathan Corbet77d51402007-03-22 19:44:17 -03002544
Joe Perches201b6ba2010-09-07 20:33:24 +00002545CAIF NETWORK LAYER
sjur.brandeland@stericsson.com5c574f52013-04-22 23:57:00 +00002546M: Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
Joe Perches201b6ba2010-09-07 20:33:24 +00002547L: netdev@vger.kernel.org
2548S: Supported
2549F: Documentation/networking/caif/
2550F: drivers/net/caif/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002551F: include/uapi/linux/caif/
Joe Perches201b6ba2010-09-07 20:33:24 +00002552F: include/net/caif/
2553F: net/caif/
2554
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02002555CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07002556M: Muli Ben-Yehuda <muli@il.ibm.com>
2557M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02002558L: discuss@x86-64.org
2559S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002560F: arch/x86/kernel/pci-calgary_64.c
2561F: arch/x86/kernel/tce_64.c
2562F: arch/x86/include/asm/calgary.h
2563F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02002564
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002565CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00002566M: Oliver Hartkopp <socketcan@hartkopp.net>
Marc Kleine-Buddef7214cf2015-03-06 09:00:38 +01002567M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00002568L: linux-can@vger.kernel.org
Marc Kleine-Budde84b0d712015-03-06 08:58:33 +01002569W: https://github.com/linux-can
Marc Kleine-Budde870482a2015-01-15 16:56:26 +01002570T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2571T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002572S: Maintained
John Whitmoref35f6c82013-12-06 12:49:08 +00002573F: Documentation/networking/can.txt
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00002574F: net/can/
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00002575F: include/linux/can/core.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002576F: include/uapi/linux/can.h
2577F: include/uapi/linux/can/bcm.h
2578F: include/uapi/linux/can/raw.h
2579F: include/uapi/linux/can/gw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002580
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00002581CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002582M: Wolfgang Grandegger <wg@grandegger.com>
Oliver Hartkoppec782132012-01-03 08:40:28 +00002583M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00002584L: linux-can@vger.kernel.org
Marc Kleine-Budde84b0d712015-03-06 08:58:33 +01002585W: https://github.com/linux-can
Marc Kleine-Budde870482a2015-01-15 16:56:26 +01002586T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2587T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00002588S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00002589F: drivers/net/can/
2590F: include/linux/can/dev.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00002591F: include/linux/can/platform/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002592F: include/uapi/linux/can/error.h
2593F: include/uapi/linux/can/netlink.h
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00002594
James Morris95d16c72012-03-16 12:05:48 +11002595CAPABILITIES
2596M: Serge Hallyn <serge.hallyn@canonical.com>
2597L: linux-security-module@vger.kernel.org
Joe Perches63059022012-06-07 14:21:10 -07002598S: Supported
James Morris95d16c72012-03-16 12:05:48 +11002599F: include/linux/capability.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002600F: include/uapi/linux/capability.h
Joe Perches63059022012-06-07 14:21:10 -07002601F: security/commoncap.c
James Morris38a94112012-04-09 11:03:36 +10002602F: kernel/capability.c
James Morris95d16c72012-03-16 12:05:48 +11002603
Kevin Tsaib84894c2015-01-15 17:41:04 -08002604CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
2605M: Kevin Tsai <ktsai@capellamicro.com>
2606S: Maintained
2607F: drivers/iio/light/cm*
2608F: Documentation/devicetree/bindings/i2c/trivial-devices.txt
2609
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002610CAVIUM LIQUIDIO NETWORK DRIVER
2611M: Derek Chickles <derek.chickles@caviumnetworks.com>
2612M: Satanand Burla <satananda.burla@caviumnetworks.com>
2613M: Felix Manlunas <felix.manlunas@caviumnetworks.com>
2614M: Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
2615L: netdev@vger.kernel.org
2616W: http://www.cavium.com
2617S: Supported
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002618F: drivers/net/ethernet/cavium/liquidio/
2619
Varka Bhadramef0bbac2014-10-29 16:15:22 +05302620CC2520 IEEE-802.15.4 RADIO DRIVER
2621M: Varka Bhadram <varkabhadram@gmail.com>
2622L: linux-wpan@vger.kernel.org
2623S: Maintained
2624F: drivers/net/ieee802154/cc2520.c
2625F: include/linux/spi/cc2520.h
2626F: Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
2627
Arnd Bergmannb8154542008-05-16 11:10:59 +02002628CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07002629M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002630L: linuxppc-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02002631W: http://www.ibm.com/developerworks/power/cell/
2632S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002633F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07002634F: arch/powerpc/include/asm/spu*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002635F: arch/powerpc/include/uapi/asm/spu*.h
Joe Perches679655d2009-04-07 20:44:32 -07002636F: arch/powerpc/oprofile/*cell*
2637F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02002638
Sage Weil398ecff52015-07-09 11:46:14 -04002639CEPH COMMON CODE (LIBCEPH)
2640M: Ilya Dryomov <idryomov@gmail.com>
Joe Perchese43cdb52015-06-25 15:02:03 -07002641M: "Yan, Zheng" <zyan@redhat.com>
Sage Weil0f5417c2015-02-19 10:10:40 -08002642M: Sage Weil <sage@redhat.com>
Sage Weil82593f82010-03-29 09:53:23 -07002643L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07002644W: http://ceph.com/
Sage Weilfb99f882009-12-03 15:04:08 -08002645T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil6e67b7a2015-07-09 11:47:37 -04002646T: git git://github.com/ceph/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07002647S: Supported
Joe Perches14430812013-09-11 14:23:50 -07002648F: net/ceph/
2649F: include/linux/ceph/
2650F: include/linux/crush/
Sage Weil9030aaf2009-10-06 11:31:15 -07002651
Sage Weil398ecff52015-07-09 11:46:14 -04002652CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
2653M: "Yan, Zheng" <zyan@redhat.com>
2654M: Sage Weil <sage@redhat.com>
2655M: Ilya Dryomov <idryomov@gmail.com>
2656L: ceph-devel@vger.kernel.org
2657W: http://ceph.com/
2658T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil6e67b7a2015-07-09 11:47:37 -04002659T: git git://github.com/ceph/ceph-client.git
Sage Weil398ecff52015-07-09 11:46:14 -04002660S: Supported
2661F: Documentation/filesystems/ceph.txt
2662F: fs/ceph/
2663
David Howellscfc411e2015-08-14 15:20:41 +01002664CERTIFICATE HANDLING:
2665M: David Howells <dhowells@redhat.com>
2666M: David Woodhouse <dwmw2@infradead.org>
2667L: keyrings@linux-nfs.org
2668S: Maintained
2669F: Documentation/module-signing.txt
2670F: certs/
2671F: scripts/extract-cert.c
2672
David Vrabel18332a82008-09-17 16:34:44 +01002673CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01002674L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01002675S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002676F: Documentation/usb/WUSB-Design-overview.txt
2677F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00002678F: drivers/usb/host/hwa-hc.c
2679F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07002680F: drivers/usb/wusbcore/
2681F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01002682
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002683CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002684M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07002685W: http://miguelojeda.es/auxdisplay.htm
2686W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002687S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002688F: drivers/auxdisplay/cfag12864b.c
2689F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002690
2691CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002692M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07002693W: http://miguelojeda.es/auxdisplay.htm
2694W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002695S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002696F: drivers/auxdisplay/cfag12864bfb.c
2697F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002698
Johannes Berg704232c2007-04-23 12:20:05 -07002699CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07002700M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07002701L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02002702W: http://wireless.kernel.org/
2703T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2704T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Johannes Berg704232c2007-04-23 12:20:05 -07002705S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002706F: include/uapi/linux/nl80211.h
Joe Perches679655d2009-04-07 20:44:32 -07002707F: include/net/cfg80211.h
2708F: net/wireless/*
2709X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07002710
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002711CHAR and MISC DRIVERS
2712M: Arnd Bergmann <arnd@arndb.de>
Greg KH879a5a02012-01-31 20:02:00 -08002713M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002714T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Greg KH879a5a02012-01-31 20:02:00 -08002715S: Supported
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002716F: drivers/char/*
2717F: drivers/misc/*
Robert P. J. Day471322a2014-05-16 04:41:09 -04002718F: include/linux/miscdevice.h
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002719
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002720CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07002721M: Andy Whitcroft <apw@canonical.com>
Joe Perches10d83f02013-02-21 16:44:15 -08002722M: Joe Perches <joe@perches.com>
2723S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002724F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002725
Harry Weif8407f262011-02-25 14:44:15 -08002726CHINESE DOCUMENTATION
2727M: Harry Wei <harryxiyou@gmail.com>
Joe Perches97401532012-12-17 16:00:00 -08002728L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
Harry Weif8407f262011-02-25 14:44:15 -08002729L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
2730S: Maintained
2731F: Documentation/zh_CN/
2732
Alexander Shishkin2721ea22012-05-11 17:25:59 +03002733CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
Greg Kroah-Hartmaneee52f92013-12-02 15:43:48 -08002734M: Peter Chen <Peter.Chen@freescale.com>
Peter Chen83738562015-03-23 19:57:36 +08002735T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
Alexander Shishkin2721ea22012-05-11 17:25:59 +03002736L: linux-usb@vger.kernel.org
2737S: Maintained
2738F: drivers/usb/chipidea/
2739
Hans de Goedea93ad652015-03-21 20:40:45 -07002740CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
2741M: Hans de Goede <hdegoede@redhat.com>
2742L: linux-input@vger.kernel.org
2743S: Maintained
2744F: Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
2745F: drivers/input/touchscreen/chipone_icn8318.c
2746
Olof Johanssonab043102013-11-07 14:25:45 -08002747CHROME HARDWARE PLATFORM SUPPORT
2748M: Olof Johansson <olof@lixom.net>
2749S: Maintained
2750F: drivers/platform/chrome/
2751
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00002752CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri2360d2e2011-02-04 16:17:26 +00002753M: Christian Benvenuti <benve@cisco.com>
govindarajulu.v001e1c12013-09-04 11:17:18 +05302754M: Sujith Sankar <ssujith@cisco.com>
Govindarajulu Varadarajanc327e8f2014-05-20 03:14:32 +05302755M: Govindarajulu Varadarajan <_govind@gmx.com>
Neel Patel5c6652f2012-02-03 08:25:25 +00002756M: Neel Patel <neepatel@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08002757S: Supported
Jeff Kirshera6a55802011-05-13 22:20:35 -07002758F: drivers/net/ethernet/cisco/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08002759
Upinder Malhie3cf00d2013-09-10 03:38:16 +00002760CISCO VIC LOW LATENCY NIC DRIVER
Dave Goodell \(dgoodell\)35ef4a92015-10-15 20:01:29 -07002761M: Christian Benvenuti <benve@cisco.com>
2762M: Dave Goodell <dgoodell@cisco.com>
Joe Perchesb75f0052014-03-03 15:38:37 -08002763S: Supported
Dave Goodell \(dgoodell\)35ef4a92015-10-15 20:01:29 -07002764F: drivers/infiniband/hw/usnic/
Upinder Malhie3cf00d2013-09-10 03:38:16 +00002765
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002766CIRRUS LOGIC EP93XX ETHERNET DRIVER
H Hartley Sweeten55879122011-06-09 15:00:21 -07002767M: Hartley Sweeten <hsweeten@visionengravers.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002768L: netdev@vger.kernel.org
2769S: Maintained
Jeff Kirsher57d0b7a2011-07-16 23:50:52 -07002770F: drivers/net/ethernet/cirrus/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002771
Mark Brown3d4cfdc2014-02-04 20:28:12 +00002772CIRRUS LOGIC AUDIO CODEC DRIVERS
2773M: Brian Austin <brian.austin@cirrus.com>
2774M: Paul Handrigan <Paul.Handrigan@cirrus.com>
2775L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2776S: Maintained
2777F: sound/soc/codecs/cs*
2778
Konrad Rzeszutek Wilk94574d92012-03-19 11:47:18 -04002779CLEANCACHE API
2780M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2781L: linux-kernel@vger.kernel.org
2782S: Maintained
2783F: mm/cleancache.c
2784F: include/linux/cleancache.h
2785
Russell Kingd4275352009-04-16 14:05:27 +01002786CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07002787M: Russell King <linux@arm.linux.org.uk>
Paul Walmsleyaa571b12015-03-25 18:32:59 +00002788L: linux-clk@vger.kernel.org
Joe Perches37417042012-03-23 15:01:58 -07002789S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01002790F: include/linux/clk.h
2791
John Stultz9222d242013-07-16 16:45:31 +02002792CLOCKSOURCE, CLOCKEVENT DRIVERS
2793M: Daniel Lezcano <daniel.lezcano@linaro.org>
2794M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar981c3a42014-01-21 10:59:20 +01002795L: linux-kernel@vger.kernel.org
John Stultz9222d242013-07-16 16:45:31 +02002796T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
2797S: Supported
2798F: drivers/clocksource
2799
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002800CISCO FCOE HBA DRIVER
Hiral Patel8fc89a72012-12-10 01:21:29 -08002801M: Hiral Patel <hiralpat@cisco.com>
2802M: Suma Ramars <sramars@cisco.com>
Abhijeet Joglekard7e01dc2011-06-13 21:21:17 -07002803M: Brian Uchino <buchino@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002804L: linux-scsi@vger.kernel.org
2805S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07002806F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002807
Narsimhulu Musinic8806b62015-05-29 01:04:01 -07002808CISCO SCSI HBA DRIVER
2809M: Narsimhulu Musini <nmusini@cisco.com>
2810M: Sesidhar Baddela <sebaddel@cisco.com>
2811L: linux-scsi@vger.kernel.org
2812S: Supported
2813F: drivers/scsi/snic/
2814
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002815CMPC ACPI DRIVER
2816M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2817M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd0944852010-02-11 10:40:13 -05002818L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002819S: Supported
2820F: drivers/platform/x86/classmate-laptop.c
2821
Hans Verkuil85756a02015-05-12 08:52:21 -03002822COBALT MEDIA DRIVER
2823M: Hans Verkuil <hans.verkuil@cisco.com>
2824L: linux-media@vger.kernel.org
2825T: git git://linuxtv.org/media_tree.git
2826W: http://linuxtv.org
2827S: Supported
2828F: drivers/media/pci/cobalt/
2829
Nicolas Palix74425ee2010-06-06 17:15:01 +02002830COCCINELLE/Semantic Patches (SmPL)
Nicolas Palix26de9c22012-09-20 22:52:42 +02002831M: Julia Lawall <Julia.Lawall@lip6.fr>
Nicolas Palix74425ee2010-06-06 17:15:01 +02002832M: Gilles Muller <Gilles.Muller@lip6.fr>
Nicolas Palix26de9c22012-09-20 22:52:42 +02002833M: Nicolas Palix <nicolas.palix@imag.fr>
Jiri Slabyd8130622015-07-17 16:23:20 -07002834M: Michal Marek <mmarek@suse.com>
Nicolas Palix26de9c22012-09-20 22:52:42 +02002835L: cocci@systeme.lip6.fr (moderated for non-subscribers)
Nicolas Palixc00b5112013-06-06 23:39:53 +02002836T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
Nicolas Palix74425ee2010-06-06 17:15:01 +02002837W: http://coccinelle.lip6.fr/
2838S: Supported
Nicolas Palix4b92b2a2013-06-20 13:10:55 +02002839F: Documentation/coccinelle.txt
Nicolas Palix74425ee2010-06-06 17:15:01 +02002840F: scripts/coccinelle/
2841F: scripts/coccicheck
2842
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002844M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845M: coda@cs.cmu.edu
2846L: codalist@coda.cs.cmu.edu
2847W: http://www.coda.cs.cmu.edu/
2848S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002849F: Documentation/filesystems/coda.txt
2850F: fs/coda/
2851F: include/linux/coda*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002852F: include/uapi/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853
Philipp Zabel0b142612014-11-04 07:26:35 -03002854CODA V4L2 MEM2MEM DRIVER
2855M: Philipp Zabel <p.zabel@pengutronix.de>
2856L: linux-media@vger.kernel.org
2857S: Maintained
2858F: Documentation/devicetree/bindings/media/coda.txt
2859F: drivers/media/platform/coda/
2860
Mike Turquette7704add2012-05-02 18:37:45 -07002861COMMON CLK FRAMEWORK
Michael Turquettea85fa002015-06-17 13:41:04 -07002862M: Michael Turquette <mturquette@baylibre.com>
Michael Turquettef9561652014-11-12 16:43:47 -08002863M: Stephen Boyd <sboyd@codeaurora.org>
Paul Walmsleyaa571b12015-03-25 18:32:59 +00002864L: linux-clk@vger.kernel.org
Michael Turquettebaeb0d92014-11-13 17:18:20 -08002865T: git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
Mike Turquette7704add2012-05-02 18:37:45 -07002866S: Maintained
Stephen Warren60bea3b2013-06-05 09:50:30 -06002867F: drivers/clk/
2868X: drivers/clk/clkdev.c
Mike Turquette7704add2012-05-02 18:37:45 -07002869F: include/linux/clk-pr*
Stephen Warren60bea3b2013-06-05 09:50:30 -06002870F: include/linux/clk/
Mike Turquette7704add2012-05-02 18:37:45 -07002871
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002872COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07002873M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04002874L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08002875L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002876W: http://linux-cifs.samba.org/
Kevin Cernekeebb1d5dd2014-11-10 13:09:24 -08002877T: git git://git.samba.org/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002878S: Supported
Joe Perchesec421a72014-08-08 14:24:59 -07002879F: Documentation/filesystems/cifs/
Joe Perches679655d2009-04-07 20:44:32 -07002880F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002881
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002883M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002884L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002885S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002886F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887
2888COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002889M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002890L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002891S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002892F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893
2894COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002895M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002896L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002897S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002898F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002900COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002901M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05002902L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002903S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002904F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002905
Simon Arlott949be0f2007-03-06 02:47:46 -08002906CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002907M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02002908L: accessrunner-general@lists.sourceforge.net
2909W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08002910S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002911F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08002912
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002913CONFIGFS
Joel Beckerd6351db2011-01-07 18:10:32 -08002914M: Joel Becker <jlbec@evilplan.org>
2915T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002916S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002917F: fs/configfs/
2918F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002919
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002920CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07002921M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002922L: netdev@vger.kernel.org
2923S: Maintained
2924F: drivers/connector/
2925
Tejun Heoa3e33542014-05-13 15:49:58 -04002926CONTROL GROUP (CGROUP)
Paul Menage860ca0e2011-11-18 14:22:09 -08002927M: Tejun Heo <tj@kernel.org>
Li Zefanad50c152012-03-29 08:53:30 -07002928M: Li Zefan <lizefan@huawei.com>
Tejun Heo4d205672015-06-12 17:15:23 -05002929M: Johannes Weiner <hannes@cmpxchg.org>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08002930L: cgroups@vger.kernel.org
Paul Menage860ca0e2011-11-18 14:22:09 -08002931T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002932S: Maintained
Tejun Heoa3e33542014-05-13 15:49:58 -04002933F: Documentation/cgroups/
Joe Perches679655d2009-04-07 20:44:32 -07002934F: include/linux/cgroup*
2935F: kernel/cgroup*
Tejun Heoa3e33542014-05-13 15:49:58 -04002936
2937CONTROL GROUP - CPUSET
2938M: Li Zefan <lizefan@huawei.com>
2939L: cgroups@vger.kernel.org
2940W: http://www.bullopensource.org/cpuset/
2941W: http://oss.sgi.com/projects/cpusets/
2942T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2943S: Maintained
2944F: Documentation/cgroups/cpusets.txt
2945F: include/linux/cpuset.h
2946F: kernel/cpuset.c
2947
2948CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
2949M: Johannes Weiner <hannes@cmpxchg.org>
Michal Hockofbd7dc72015-07-17 16:23:26 -07002950M: Michal Hocko <mhocko@kernel.org>
Tejun Heoa3e33542014-05-13 15:49:58 -04002951L: cgroups@vger.kernel.org
2952L: linux-mm@kvack.org
2953S: Maintained
2954F: mm/memcontrol.c
Johannes Weiner5d1ea482014-12-10 15:44:55 -08002955F: mm/swap_cgroup.c
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002956
Rudolf Marekbebe4672007-05-08 17:22:02 +02002957CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02002958M: Fenghua Yu <fenghua.yu@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02002959L: lm-sensors@lm-sensors.org
2960S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002961F: Documentation/hwmon/coretemp
2962F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02002963
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002965M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966W: http://www.fi.muni.cz/~kas/cosa/
2967S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002968F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969
Florian Fainelli4371ee32009-06-01 02:43:17 -07002970CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002971M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07002972L: netdev@vger.kernel.org
2973S: Maintained
Jeff Kirsherb544dba2011-06-14 12:56:50 -07002974F: drivers/net/ethernet/ti/cpmac.c
Florian Fainelli4371ee32009-06-01 02:43:17 -07002975
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976CPU FREQUENCY DRIVERS
Joe Perches9c3646d2015-06-25 15:02:00 -07002977M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
viresh kumar45c009a2013-04-26 12:53:16 +00002978M: Viresh Kumar <viresh.kumar@linaro.org>
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002979L: linux-pm@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980S: Maintained
Viresh Kumar27209d92013-05-29 12:23:14 +05302981T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2982T: git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
Joe Perches679655d2009-04-07 20:44:32 -07002983F: drivers/cpufreq/
2984F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985
Viresh Kumar8a67f0e2013-04-01 12:57:49 +00002986CPU FREQUENCY DRIVERS - ARM BIG LITTLE
2987M: Viresh Kumar <viresh.kumar@linaro.org>
Sudeep Holla171d0ba2014-02-11 11:42:32 +00002988M: Sudeep Holla <sudeep.holla@arm.com>
Viresh Kumar8a67f0e2013-04-01 12:57:49 +00002989L: linux-pm@vger.kernel.org
2990W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php
2991S: Maintained
2992F: drivers/cpufreq/arm_big_little.h
2993F: drivers/cpufreq/arm_big_little.c
2994F: drivers/cpufreq/arm_big_little_dt.c
2995
Lorenzo Pieralisi14d2c342013-06-12 17:40:01 +02002996CPUIDLE DRIVER - ARM BIG LITTLE
Joe Perchesb75f0052014-03-03 15:38:37 -08002997M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2998M: Daniel Lezcano <daniel.lezcano@linaro.org>
2999L: linux-pm@vger.kernel.org
3000L: linux-arm-kernel@lists.infradead.org
Joe Perchescea83212014-03-03 15:38:38 -08003001T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
Joe Perchesb75f0052014-03-03 15:38:37 -08003002S: Maintained
3003F: drivers/cpuidle/cpuidle-big_little.c
Lorenzo Pieralisi14d2c342013-06-12 17:40:01 +02003004
Bartlomiej Zolnierkiewicz0c570c12014-12-02 16:41:35 +01003005CPUIDLE DRIVER - ARM EXYNOS
3006M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
3007M: Daniel Lezcano <daniel.lezcano@linaro.org>
3008M: Kukjin Kim <kgene@kernel.org>
3009L: linux-pm@vger.kernel.org
3010L: linux-samsung-soc@vger.kernel.org
3011S: Supported
3012F: drivers/cpuidle/cpuidle-exynos.c
3013F: arch/arm/mach-exynos/pm.c
3014
Daniel Lezcanoa8e39c32013-04-26 11:05:44 +00003015CPUIDLE DRIVERS
Joe Perches9c3646d2015-06-25 15:02:00 -07003016M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Daniel Lezcanoa8e39c32013-04-26 11:05:44 +00003017M: Daniel Lezcano <daniel.lezcano@linaro.org>
3018L: linux-pm@vger.kernel.org
3019S: Maintained
Joe Perchescea83212014-03-03 15:38:38 -08003020T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
Daniel Lezcanoa8e39c32013-04-26 11:05:44 +00003021F: drivers/cpuidle/*
3022F: include/linux/cpuidle.h
3023
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003025M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003027F: arch/x86/kernel/cpuid.c
3028F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02003030CPU POWER MONITORING SUBSYSTEM
Jiri Slabyd8130622015-07-17 16:23:20 -07003031M: Thomas Renninger <trenn@suse.com>
Thomas Renninger103f1792014-07-22 16:06:01 +02003032L: linux-pm@vger.kernel.org
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02003033S: Maintained
Joe Perches14430812013-09-11 14:23:50 -07003034F: tools/power/cpupower/
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02003035
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01003037W: http://sourceforge.net/projects/cramfs/
Michael Opdenacker54886a72013-11-12 15:08:35 -08003038S: Orphan / Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07003039F: Documentation/filesystems/cramfs.txt
3040F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041
3042CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003043M: Mikael Starvik <starvik@axis.com>
3044M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02003045L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046W: http://developer.axis.com
3047S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003048F: arch/cris/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003049F: drivers/tty/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050
3051CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07003052M: Herbert Xu <herbert@gondor.apana.org.au>
3053M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003055T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003057F: Documentation/crypto/
Stephan Mueller2ca87a12015-03-06 21:36:21 +01003058F: Documentation/DocBook/crypto-API.tmpl
Joe Perches679655d2009-04-07 20:44:32 -07003059F: arch/*/crypto/
3060F: crypto/
3061F: drivers/crypto/
3062F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063
Neil Horman5b07bd52009-02-05 16:03:04 +11003064CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003065M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11003066L: linux-crypto@vger.kernel.org
3067S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07003068F: crypto/ansi_cprng.c
3069F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11003070
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01003071CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07003072M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01003073S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003074F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01003075
Solomon Peachya910e4a2013-05-24 20:04:38 -04003076CW1200 WLAN driver
Joe Perchesb75f0052014-03-03 15:38:37 -08003077M: Solomon Peachy <pizza@shaftnet.org>
3078S: Maintained
3079F: drivers/net/wireless/cw1200/
Solomon Peachya910e4a2013-05-24 20:04:38 -04003080
Hans Verkuil6d8425b2008-05-05 18:25:22 -03003081CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03003082M: Andy Walls <awalls@md.metrocast.net>
Joe Perches7b212ed2014-12-10 15:51:24 -08003083L: ivtv-devel@ivtvdriver.org (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003084L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003085T: git git://linuxtv.org/media_tree.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03003086W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07003087W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b2008-05-05 18:25:22 -03003088S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003089F: Documentation/video4linux/cx18.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03003090F: drivers/media/pci/cx18/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02003091F: include/uapi/linux/ivtv*
Hans Verkuil6d8425b2008-05-05 18:25:22 -03003092
Hans Verkuil3f101d92012-11-23 07:00:02 -03003093CX2341X MPEG ENCODER HELPER MODULE
3094M: Hans Verkuil <hverkuil@xs4all.nl>
3095L: linux-media@vger.kernel.org
3096T: git git://linuxtv.org/media_tree.git
3097W: http://linuxtv.org
3098S: Maintained
Cesar Eduardo Barrosc368360b2013-03-02 21:53:42 -03003099F: drivers/media/common/cx2341x*
Hans Verkuil3f101d92012-11-23 07:00:02 -03003100F: include/media/cx2341x*
3101
Patrick Boettcherb8fe6e22015-04-28 02:53:13 -03003102CX24120 MEDIA DRIVER
3103M: Jemma Denson <jdenson@gmail.com>
3104M: Patrick Boettcher <patrick.boettcher@posteo.de>
3105L: linux-media@vger.kernel.org
3106W: http://linuxtv.org/
3107Q: http://patchwork.linuxtv.org/project/linux-media/list/
3108S: Maintained
3109F: drivers/media/dvb-frontends/cx24120*
3110
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02003111CX88 VIDEO4LINUX DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02003112M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02003113L: linux-media@vger.kernel.org
3114W: http://linuxtv.org
3115T: git git://linuxtv.org/media_tree.git
3116S: Odd fixes
3117F: Documentation/video4linux/cx88/
3118F: drivers/media/pci/cx88/
Knut Petersen9fa68ea2005-09-09 13:04:56 -07003119
Antti Palosaari91952bc2012-10-01 12:28:46 -03003120CXD2820R MEDIA DRIVER
3121M: Antti Palosaari <crope@iki.fi>
3122L: linux-media@vger.kernel.org
3123W: http://linuxtv.org/
3124W: http://palosaari.fi/linux/
3125Q: http://patchwork.linuxtv.org/project/linux-media/list/
3126T: git git://linuxtv.org/anttip/media_tree.git
3127S: Maintained
3128F: drivers/media/dvb-frontends/cxd2820r*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07003129
Steve Wisee5ec3782008-05-20 14:06:33 -07003130CXGB3 ETHERNET DRIVER (CXGB3)
Divy Le Raycdc99232013-11-11 15:01:39 -08003131M: Santosh Raspatur <santosh@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07003132L: netdev@vger.kernel.org
3133W: http://www.chelsio.com
3134S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07003135F: drivers/net/ethernet/chelsio/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07003136
Anish Bhattd8ae3c32014-11-04 15:19:22 -08003137CXGB3 ISCSI DRIVER (CXGB3I)
Joe Perches49e7d9d2015-04-15 16:17:31 -07003138M: Karen Xie <kxie@chelsio.com>
3139L: linux-scsi@vger.kernel.org
3140W: http://www.chelsio.com
3141S: Supported
3142F: drivers/scsi/cxgbi/cxgb3i
Anish Bhattd8ae3c32014-11-04 15:19:22 -08003143
Steve Wisee5ec3782008-05-20 14:06:33 -07003144CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07003145M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003146L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07003147W: http://www.openfabrics.org
3148S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003149F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07003150
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003151CXGB4 ETHERNET DRIVER (CXGB4)
Dimitris Michailidis56f16c72014-06-13 14:11:14 -07003152M: Hariprasad S <hariprasad@chelsio.com>
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003153L: netdev@vger.kernel.org
3154W: http://www.chelsio.com
3155S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07003156F: drivers/net/ethernet/chelsio/cxgb4/
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003157
Anish Bhattd8ae3c32014-11-04 15:19:22 -08003158CXGB4 ISCSI DRIVER (CXGB4I)
Joe Perches49e7d9d2015-04-15 16:17:31 -07003159M: Karen Xie <kxie@chelsio.com>
3160L: linux-scsi@vger.kernel.org
3161W: http://www.chelsio.com
3162S: Supported
3163F: drivers/scsi/cxgbi/cxgb4i
Anish Bhattd8ae3c32014-11-04 15:19:22 -08003164
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003165CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3166M: Steve Wise <swise@chelsio.com>
3167L: linux-rdma@vger.kernel.org
3168W: http://www.openfabrics.org
3169S: Supported
3170F: drivers/infiniband/hw/cxgb4/
3171
Casey Leedom5c20a5c2010-07-19 17:55:33 -07003172CXGB4VF ETHERNET DRIVER (CXGB4VF)
3173M: Casey Leedom <leedom@chelsio.com>
3174L: netdev@vger.kernel.org
3175W: http://www.chelsio.com
3176S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07003177F: drivers/net/ethernet/chelsio/cxgb4vf/
Casey Leedom5c20a5c2010-07-19 17:55:33 -07003178
Ian Munsiea9282d02014-10-08 19:55:05 +11003179CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3180M: Ian Munsie <imunsie@au1.ibm.com>
3181M: Michael Neuling <mikey@neuling.org>
3182L: linuxppc-dev@lists.ozlabs.org
3183S: Supported
3184F: drivers/misc/cxl/
Michael Neulingec249dd2015-05-27 16:07:16 +10003185F: include/misc/cxl*
Ian Munsiea9282d02014-10-08 19:55:05 +11003186F: include/uapi/misc/cxl.h
3187F: Documentation/powerpc/cxl.txt
3188F: Documentation/powerpc/cxl.txt
3189F: Documentation/ABI/testing/sysfs-class-cxl
3190
Matthew R. Ochs11f43ae2015-10-21 15:15:22 -05003191CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
3192M: Manoj N. Kumar <manoj@linux.vnet.ibm.com>
3193M: Matthew R. Ochs <mrochs@linux.vnet.ibm.com>
3194L: linux-scsi@vger.kernel.org
3195S: Supported
3196F: drivers/scsi/cxlflash/
3197F: include/uapi/scsi/cxlflash_ioctls.h
3198F: Documentation/powerpc/cxlflash.txt
3199
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08003200STMMAC ETHERNET DRIVER
3201M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
3202L: netdev@vger.kernel.org
3203W: http://www.stlinux.com
3204S: Supported
Jeff Kirsher7ac66532011-05-16 00:05:19 -07003205F: drivers/net/ethernet/stmicro/stmmac/
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08003206
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003208M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07003209L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210W: http://www.arm.linux.org.uk/
3211S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09003212F: drivers/video/fbdev/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07003213
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08003216S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07003217F: drivers/tty/cyclades.c
Joe Perches679655d2009-04-07 20:44:32 -07003218F: include/linux/cyclades.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003219F: include/uapi/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220
3221CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08003223S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003224F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003225
Antti Palosaari402f6ae2013-04-09 21:30:41 -03003226CYPRESS_FIRMWARE MEDIA DRIVER
3227M: Antti Palosaari <crope@iki.fi>
3228L: linux-media@vger.kernel.org
3229W: http://linuxtv.org/
3230W: http://palosaari.fi/linux/
3231Q: http://patchwork.linuxtv.org/project/linux-media/list/
3232T: git git://linuxtv.org/anttip/media_tree.git
3233S: Maintained
3234F: drivers/media/common/cypress_firmware*
3235
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08003236CYTTSP TOUCHSCREEN DRIVER
Javier Martinez Canillasbe9a6f42013-08-29 08:43:58 -07003237M: Ferruh Yigit <fery@cypress.com>
Joe Perches63059022012-06-07 14:21:10 -07003238L: linux-input@vger.kernel.org
Javier Martinez Canillasbe9a6f42013-08-29 08:43:58 -07003239S: Supported
Joe Perches63059022012-06-07 14:21:10 -07003240F: drivers/input/touchscreen/cyttsp*
3241F: include/linux/input/cyttsp.h
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08003242
Joshua Kinardaaaf5fb2015-02-16 16:00:26 -08003243DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3244M: Joshua Kinard <kumba@gentoo.org>
3245S: Maintained
3246F: drivers/rtc/rtc-ds1685.c
3247F: include/linux/rtc/ds1685.h
3248
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07003250M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251W: http://yaina.de/jreuter/
3252W: http://www.qsl.net/dl1bke/
3253L: linux-hams@vger.kernel.org
3254S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003255F: net/ax25/af_ax25.c
3256F: net/ax25/ax25_dev.c
3257F: net/ax25/ax25_ds_*
3258F: net/ax25/ax25_in.c
3259F: net/ax25/ax25_out.c
3260F: net/ax25/ax25_timer.c
3261F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003262
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003263DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003264L: netdev@vger.kernel.org
Joe Perches5ff77422011-05-24 17:13:22 -07003265S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003266F: Documentation/networking/dmfe.txt
Joe Perches0f04e2a2012-01-10 15:08:56 -08003267F: drivers/net/ethernet/dec/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003268
3269DC390/AM53C974 SCSI driver
Jiri Slabyd8130622015-07-17 16:23:20 -07003270M: Hannes Reinecke <hare@suse.com>
Hannes Reinecke71bd8492014-11-24 15:37:30 +01003271L: linux-scsi@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003272S: Maintained
Hannes Reinecke71bd8492014-11-24 15:37:30 +01003273F: drivers/scsi/am53c974.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003274
Linus Torvalds1da177e2005-04-16 15:20:36 -07003275DC395x SCSI driver
Oliver Neukum61eee9a2012-08-01 14:32:55 +02003276M: Oliver Neukum <oliver@neukum.org>
Joe Perches8b58be82009-07-29 15:04:30 -07003277M: Ali Akcaagac <aliakc@web.de>
3278M: Jamie Lenehan <lenehan@twibble.org>
Randy Dunlapf5df58812006-07-14 00:24:29 -07003279L: dc395x@twibble.org
Joe Perchescf015e92014-02-25 15:01:47 -08003280W: http://twibble.org/dist/dc395x/
3281W: http://lists.twibble.org/mailman/listinfo/dc395x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003283F: Documentation/scsi/dc395x.txt
3284F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003285
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07003286DCCP PROTOCOL
Arnaldo Carvalho de Meloa89d0302011-02-26 16:28:54 +00003287M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07003288L: dccp@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00003289W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07003290S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003291F: include/linux/dccp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003292F: include/uapi/linux/dccp.h
Joe Perches679655d2009-04-07 20:44:32 -07003293F: include/linux/tfrc.h
3294F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07003295
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07003297W: http://linux-decnet.sourceforge.net
3298L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00003299S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003300F: Documentation/networking/decnet.txt
3301F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302
Maciej W. Rozyckiebff05b2014-04-06 23:04:00 +01003303DECSTATION PLATFORM SUPPORT
3304M: "Maciej W. Rozycki" <macro@linux-mips.org>
3305L: linux-mips@linux-mips.org
3306W: http://www.linux-mips.org/wiki/DECstation
3307S: Maintained
3308F: arch/mips/dec/
3309F: arch/mips/include/asm/dec/
3310F: arch/mips/include/asm/mach-dec/
3311
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003313M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314S: Maintained
Jeff Kirsher33f810b2011-07-31 00:06:29 -07003315F: drivers/net/fddi/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003316
Matthew Garrettad8f07c2009-01-07 18:08:56 -08003317DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003318M: Matthew Garrett <mjg59@srcf.ucam.org>
Pali Rohárcdbff612015-03-29 15:38:50 +02003319M: Pali Rohár <pali.rohar@gmail.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05003320L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08003321S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003322F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08003323
Pali Rohár817a5cd2015-06-06 10:23:28 +02003324DELL LAPTOP RBTN DRIVER
3325M: Pali Rohár <pali.rohar@gmail.com>
3326S: Maintained
3327F: drivers/platform/x86/dell-rbtn.*
3328
Pali Rohárcdbff612015-03-29 15:38:50 +02003329DELL LAPTOP FREEFALL DRIVER
3330M: Pali Rohár <pali.rohar@gmail.com>
3331S: Maintained
3332F: drivers/platform/x86/dell-smo8800.c
3333
Linus Torvalds1da177e2005-04-16 15:20:36 -07003334DELL LAPTOP SMM DRIVER
Pali Rohára5afba12015-05-14 13:16:36 +02003335M: Pali Rohár <pali.rohar@gmail.com>
Guenter Roeckef3522f2014-12-21 20:54:37 +01003336S: Maintained
Pali Rohára5afba12015-05-14 13:16:36 +02003337F: drivers/hwmon/dell-smm-hwmon.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003338F: include/uapi/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339
Doug Warzecha90563ec2005-09-06 15:17:15 -07003340DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07003341M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07003342S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003343F: Documentation/dcdbas.txt
3344F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07003345
Matthew Garrett0b3f6102009-01-09 20:17:11 +00003346DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003347M: Matthew Garrett <mjg59@srcf.ucam.org>
Pali Rohárcdbff612015-03-29 15:38:50 +02003348M: Pali Rohár <pali.rohar@gmail.com>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00003349S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07003350F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00003351
Paul Zimmerman5efc75e2013-03-11 17:48:03 -07003352DESIGNWARE USB2 DRD IP DRIVER
Paul Zimmerman16272ae2015-01-15 20:14:10 +00003353M: John Youn <johnyoun@synopsys.com>
Paul Zimmerman5efc75e2013-03-11 17:48:03 -07003354L: linux-usb@vger.kernel.org
Paul Zimmerman18f340f2014-09-19 14:49:36 -07003355T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Paul Zimmerman5efc75e2013-03-11 17:48:03 -07003356S: Maintained
Paul Zimmerman197ba5f2014-01-13 13:50:09 -08003357F: drivers/usb/dwc2/
Paul Zimmerman5efc75e2013-03-11 17:48:03 -07003358
Felipe Balbi94ab23d2011-08-19 18:10:59 +03003359DESIGNWARE USB3 DRD IP DRIVER
3360M: Felipe Balbi <balbi@ti.com>
3361L: linux-usb@vger.kernel.org
3362L: linux-omap@vger.kernel.org
3363T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3364S: Maintained
3365F: drivers/usb/dwc3/
3366
Johannes Berg833c9542014-09-12 09:01:56 +02003367DEVICE COREDUMP (DEV_COREDUMP)
3368M: Johannes Berg <johannes@sipsolutions.net>
3369L: linux-kernel@vger.kernel.org
3370S: Maintained
3371F: drivers/base/devcoredump.c
3372F: include/linux/devcoredump.h
3373
Kyungmin Park89d07762012-01-10 15:09:09 -08003374DEVICE FREQUENCY (DEVFREQ)
3375M: MyungJoo Ham <myungjoo.ham@samsung.com>
3376M: Kyungmin Park <kyungmin.park@samsung.com>
MyungJoo Ham88476d32013-03-14 17:28:24 +09003377L: linux-pm@vger.kernel.org
Kyungmin Park89d07762012-01-10 15:09:09 -08003378S: Maintained
3379F: drivers/devfreq/
3380
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07003382M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384S: Maintained
3385
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003386DEVICE-MAPPER (LVM)
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01003387M: Alasdair Kergon <agk@redhat.com>
Alasdair G Kergon8504eed2013-07-10 23:41:19 +01003388M: Mike Snitzer <snitzer@redhat.com>
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01003389M: dm-devel@redhat.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003390L: dm-devel@redhat.com
3391W: http://sources.redhat.com/dm
Joe Perches8a6e2532010-03-05 13:43:11 -08003392Q: http://patchwork.kernel.org/project/dm-devel/list/
Mike Snitzer41d35d22013-11-04 19:42:38 -05003393T: git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01003394T: quilt http://people.redhat.com/agk/patches/linux/editing/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003395S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003396F: Documentation/device-mapper/
3397F: drivers/md/dm*
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01003398F: drivers/md/persistent-data/
Joe Perches679655d2009-04-07 20:44:32 -07003399F: include/linux/device-mapper.h
3400F: include/linux/dm-*.h
Alasdair G Kergon8504eed2013-07-10 23:41:19 +01003401F: include/uapi/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003402
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003403DIALOG SEMICONDUCTOR DRIVERS
3404M: Support Opensource <support.opensource@diasemi.com>
3405W: http://www.dialog-semiconductor.com/products
3406S: Supported
3407F: Documentation/hwmon/da90??
Adam Thomson7c933772015-09-29 16:44:12 +01003408F: Documentation/devicetree/bindings/sound/da[79]*.txt
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003409F: drivers/gpio/gpio-da90??.c
3410F: drivers/hwmon/da90??-hwmon.c
Adam Thomson7be72c22015-02-18 14:08:37 +00003411F: drivers/iio/adc/da91??-*.c
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003412F: drivers/input/misc/da90??_onkey.c
3413F: drivers/input/touchscreen/da9052_tsi.c
3414F: drivers/leds/leds-da90??.c
3415F: drivers/mfd/da903x.c
3416F: drivers/mfd/da90??-*.c
Adam Thomson7be72c22015-02-18 14:08:37 +00003417F: drivers/mfd/da91??-*.c
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003418F: drivers/power/da9052-battery.c
Adam Thomson7be72c22015-02-18 14:08:37 +00003419F: drivers/power/da91??-*.c
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003420F: drivers/regulator/da903x.c
3421F: drivers/regulator/da9???-regulator.[ch]
3422F: drivers/rtc/rtc-da90??.c
3423F: drivers/video/backlight/da90??_bl.c
3424F: drivers/watchdog/da90??_wdt.c
3425F: include/linux/mfd/da903x.h
3426F: include/linux/mfd/da9052/
3427F: include/linux/mfd/da9055/
3428F: include/linux/mfd/da9063/
Adam Thomson7be72c22015-02-18 14:08:37 +00003429F: include/linux/mfd/da9150/
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003430F: include/sound/da[79]*.h
3431F: sound/soc/codecs/da[79]*.[ch]
3432
Lidza Louina599aa692013-09-23 16:13:15 -04003433DIGI NEO AND CLASSIC PCI PRODUCTS
3434M: Lidza Louina <lidza.louina@gmail.com>
Mark Hounschell542f3d52014-04-25 14:32:15 -04003435M: Mark Hounschell <markh@compro.net>
Lidza Louina599aa692013-09-23 16:13:15 -04003436L: driverdev-devel@linuxdriverproject.org
3437S: Maintained
3438F: drivers/staging/dgnc/
3439
3440DIGI EPCA PCI PRODUCTS
3441M: Lidza Louina <lidza.louina@gmail.com>
Daeseok Youn6d825f72014-07-12 01:25:42 +09003442M: Daeseok Youn <daeseok.youn@gmail.com>
Lidza Louina599aa692013-09-23 16:13:15 -04003443L: driverdev-devel@linuxdriverproject.org
3444S: Maintained
3445F: drivers/staging/dgap/
3446
Guenter Roeck335d7c52011-01-26 11:45:49 -08003447DIOLAN U2C-12 I2C DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07003448M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck335d7c52011-01-26 11:45:49 -08003449L: linux-i2c@vger.kernel.org
3450S: Maintained
3451F: drivers/i2c/busses/i2c-diolan-u2c.c
3452
Matthew Wilcoxd475c632015-02-16 15:58:56 -08003453DIRECT ACCESS (DAX)
3454M: Matthew Wilcox <willy@linux.intel.com>
3455L: linux-fsdevel@vger.kernel.org
3456S: Supported
3457F: fs/dax.c
3458
Randy Dunlape7839f22008-10-12 16:11:45 -07003459DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07003460M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04003461S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003462F: Documentation/filesystems/dnotify.txt
3463F: fs/notify/dnotify/
3464F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465
3466DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07003467M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
3469W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
3470W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
3471S: Maintained
3472
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003473DISKQUOTA
Jiri Slabyd8130622015-07-17 16:23:20 -07003474M: Jan Kara <jack@suse.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003475S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003476F: Documentation/filesystems/quota.txt
3477F: fs/quota/
3478F: include/linux/quota*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003479F: include/uapi/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003480
Bernie Thompson702686a2012-03-01 13:52:13 -08003481DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
3482M: Bernie Thompson <bernie@plugable.com>
3483L: linux-fbdev@vger.kernel.org
3484S: Maintained
3485W: http://plugable.com/category/projects/udlfb/
Jingoo Han8a61f012014-07-01 15:36:01 +09003486F: drivers/video/fbdev/udlfb.c
Bernie Thompson702686a2012-03-01 13:52:13 -08003487F: include/video/udlfb.h
3488F: Documentation/fb/udlfb.txt
3489
Randy Dunlape7839f22008-10-12 16:11:45 -07003490DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07003491M: Christine Caulfield <ccaulfie@redhat.com>
3492M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04003493L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003494W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07003495T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003496S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003497F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003498
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05303499DMA BUFFER SHARING FRAMEWORK
3500M: Sumit Semwal <sumit.semwal@linaro.org>
3501S: Maintained
3502L: linux-media@vger.kernel.org
3503L: dri-devel@lists.freedesktop.org
Randy Dunlap8ada6d22014-10-13 15:51:19 -07003504L: linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
Maarten Lankhorst35fac7e2014-07-01 12:57:08 +02003505F: drivers/dma-buf/
Joe Perchese46d12c2014-08-08 14:26:16 -07003506F: include/linux/dma-buf*
3507F: include/linux/reservation.h
3508F: include/linux/*fence.h
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05303509F: Documentation/dma-buf-sharing.txt
3510T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
3511
Dan Williamsb3e5f262007-08-07 10:26:35 -07003512DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Dan Williams4abed0a2011-02-14 00:42:08 -08003513M: Vinod Koul <vinod.koul@intel.com>
Vinod Koul17b59562013-10-22 12:58:56 +05303514L: dmaengine@vger.kernel.org
3515Q: https://patchwork.kernel.org/project/linux-dmaengine/list/
Dan Williams08223d82014-08-19 06:07:56 -07003516S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003517F: drivers/dma/
Vinod Koul0ce3c062014-12-22 20:57:13 +05303518F: include/linux/dmaengine.h
Vinod Koul979a281e2014-11-06 11:21:17 +05303519F: Documentation/dmaengine/
3520T: git git://git.infradead.org/users/vkoul/slave-dma.git
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003521
Juerg Haefligerb8250372007-06-09 10:11:16 -04003522DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003523M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04003524L: lm-sensors@lm-sensors.org
3525S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003526F: Documentation/hwmon/dme1737
3527F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04003528
Jean Delvare1f31e1b2015-03-25 15:55:31 -07003529DMI/SMBIOS SUPPORT
Jiri Slabyd8130622015-07-17 16:23:20 -07003530M: Jean Delvare <jdelvare@suse.com>
Jean Delvare1f31e1b2015-03-25 15:55:31 -07003531S: Maintained
Jean Delvared4aeef932015-06-25 09:06:56 +02003532T: quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
Ivan Khoronzhukd7f96f972015-06-25 09:06:56 +02003533F: Documentation/ABI/testing/sysfs-firmware-dmi-tables
Jean Delvare1f31e1b2015-03-25 15:55:31 -07003534F: drivers/firmware/dmi-id.c
3535F: drivers/firmware/dmi_scan.c
3536F: include/linux/dmi.h
3537
Joe Perches7d2c86b2009-04-07 20:59:01 -07003538DOCUMENTATION
Jonathan Corbetad3118b2014-10-17 08:59:26 -04003539M: Jonathan Corbet <corbet@lwn.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02003540L: linux-doc@vger.kernel.org
3541S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003542F: Documentation/
Jonathan Corbet42f41ec2015-09-11 13:23:36 -06003543F: scripts/docproc.c
3544F: scripts/kernel-doc*
Randy Dunlap97be0782014-06-27 18:28:56 -07003545X: Documentation/ABI/
3546X: Documentation/devicetree/
Jonathan Corbet933a46b2015-03-26 10:25:17 -06003547X: Documentation/acpi
3548X: Documentation/power
3549X: Documentation/spi
Jonathan Corbet6c121172015-07-24 15:08:14 +02003550X: Documentation/DocBook/media
Jonathan Corbetc51edfb2015-09-24 16:05:28 -06003551T: git git://git.lwn.net/linux.git docs-next
Randy Dunlapabbaeff2008-07-04 09:59:57 -07003552
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003554M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555L: blinux-list@redhat.com
3556S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003557F: drivers/char/dtlk.c
3558F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003560DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003561M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003562L: linux-scsi@vger.kernel.org
3563W: http://www.adaptec.com/
3564S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003565F: drivers/scsi/dpt*
3566F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003567
Philipp Reisnerb411b362009-09-25 16:07:19 -07003568DRBD DRIVER
Joe Perches28b8e8d2010-03-23 13:35:20 -07003569P: Philipp Reisner
3570P: Lars Ellenberg
3571M: drbd-dev@lists.linbit.com
3572L: drbd-user@lists.linbit.com
3573W: http://www.drbd.org
3574T: git git://git.drbd.org/linux-2.6-drbd.git drbd
3575T: git git://git.drbd.org/drbd-8.3.git
3576S: Supported
3577F: drivers/block/drbd/
3578F: lib/lru_cache.c
3579F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07003580
Wolfram Sangdc7dfcd2015-04-23 17:20:54 +02003581DRIVER CORE, KOBJECTS, DEBUGFS, KERNFS AND SYSFS
Greg KH879a5a02012-01-31 20:02:00 -08003582M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perches08deed12012-03-23 15:01:57 -07003583T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003585F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07003586F: drivers/base/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07003587F: fs/debugfs/
Wolfram Sangdc7dfcd2015-04-23 17:20:54 +02003588F: fs/kernfs/
3589F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07003590F: include/linux/debugfs.h
Wolfram Sangdc7dfcd2015-04-23 17:20:54 +02003591F: include/linux/kobj*
Joe Perches679655d2009-04-07 20:44:32 -07003592F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593
3594DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003595M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04003596L: dri-devel@lists.freedesktop.org
Alex Deucherb0447882014-02-18 10:03:44 -05003597T: git git://people.freedesktop.org/~airlied/linux
Linus Torvalds1da177e2005-04-16 15:20:36 -07003598S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003599F: drivers/gpu/drm/
Daniel Vetter433e3b32014-05-26 23:44:42 +02003600F: drivers/gpu/vga/
Joe Perches850e9412010-08-09 17:20:45 -07003601F: include/drm/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003602F: include/uapi/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003603
Alex Deucher566f5932014-02-18 10:03:43 -05003604RADEON DRM DRIVERS
3605M: Alex Deucher <alexander.deucher@amd.com>
3606M: Christian König <christian.koenig@amd.com>
3607L: dri-devel@lists.freedesktop.org
3608T: git git://people.freedesktop.org/~agd5f/linux
3609S: Supported
3610F: drivers/gpu/drm/radeon/
Alex Deucher566f5932014-02-18 10:03:43 -05003611F: include/uapi/drm/radeon*
3612
Thierry Reding03e255b2014-04-04 08:59:18 +02003613DRM PANEL DRIVERS
3614M: Thierry Reding <thierry.reding@gmail.com>
3615L: dri-devel@lists.freedesktop.org
3616T: git git://anongit.freedesktop.org/tegra/linux.git
3617S: Maintained
3618F: drivers/gpu/drm/drm_panel.c
3619F: drivers/gpu/drm/panel/
3620F: include/drm/drm_panel.h
Rob Herring2d799dd2015-11-05 13:40:40 -06003621F: Documentation/devicetree/bindings/display/panel/
Thierry Reding03e255b2014-04-04 08:59:18 +02003622
Chris Wilson8daf7472010-09-28 14:07:26 +01003623INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
Daniel Vettercbce7102014-08-28 12:17:42 +02003624M: Daniel Vetter <daniel.vetter@intel.com>
Daniel Vetter47f95642014-01-07 09:24:31 +01003625M: Jani Nikula <jani.nikula@linux.intel.com>
Daniel Vetter362132d2013-03-13 22:28:46 +01003626L: intel-gfx@lists.freedesktop.org
Chris Wilson8daf7472010-09-28 14:07:26 +01003627L: dri-devel@lists.freedesktop.org
Jani Nikula7564fde2015-10-13 11:16:48 +03003628W: https://01.org/linuxgraphics/
Daniel Vetter47f95642014-01-07 09:24:31 +01003629Q: http://patchwork.freedesktop.org/project/intel-gfx/
Daniel Vetter89258a92014-02-04 19:57:38 +01003630T: git git://anongit.freedesktop.org/drm-intel
Chris Wilson8daf7472010-09-28 14:07:26 +01003631S: Supported
Joe Perches14430812013-09-11 14:23:50 -07003632F: drivers/gpu/drm/i915/
Chris Wilson8daf7472010-09-28 14:07:26 +01003633F: include/drm/i915*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003634F: include/uapi/drm/i915*
Chris Wilson8daf7472010-09-28 14:07:26 +01003635
Boris BREZILLON99763bb2015-10-13 11:55:42 +02003636DRM DRIVERS FOR ATMEL HLCDC
3637M: Boris Brezillon <boris.brezillon@free-electrons.com>
3638L: dri-devel@lists.freedesktop.org
3639S: Supported
3640F: drivers/gpu/drm/atmel-hlcdc/
3641F: Documentation/devicetree/bindings/drm/atmel/
3642
Kyungmin Park398a6d42011-11-02 11:33:16 +09003643DRM DRIVERS FOR EXYNOS
3644M: Inki Dae <inki.dae@samsung.com>
Inki Daef1501302012-01-17 14:08:55 +09003645M: Joonyoung Shim <jy0922.shim@samsung.com>
3646M: Seung-Woo Kim <sw0312.kim@samsung.com>
3647M: Kyungmin Park <kyungmin.park@samsung.com>
Kyungmin Park398a6d42011-11-02 11:33:16 +09003648L: dri-devel@lists.freedesktop.org
Inki Dae25a58032012-10-30 16:08:05 +09003649T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
Kyungmin Park398a6d42011-11-02 11:33:16 +09003650S: Supported
Joe Perches14430812013-09-11 14:23:50 -07003651F: drivers/gpu/drm/exynos/
Kyungmin Park398a6d42011-11-02 11:33:16 +09003652F: include/drm/exynos*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003653F: include/uapi/drm/exynos*
Kyungmin Park398a6d42011-11-02 11:33:16 +09003654
Jianwei Wangb55a1b92015-08-19 22:26:33 -04003655DRM DRIVERS FOR FREESCALE DCU
3656M: Jianwei Wang <jianwei.wang.chn@gmail.com>
3657M: Alison Wang <alison.wang@freescale.com>
3658L: dri-devel@lists.freedesktop.org
3659S: Supported
3660F: drivers/gpu/drm/fsl-dcu/
Rob Herring2d799dd2015-11-05 13:40:40 -06003661F: Documentation/devicetree/bindings/display/fsl,dcu.txt
3662F: Documentation/devicetree/bindings/display/panel/nec,nl4827hc19_05b.txt
Jianwei Wangb55a1b92015-08-19 22:26:33 -04003663
Philipp Zabel0a3d7752014-11-24 16:33:35 +01003664DRM DRIVERS FOR FREESCALE IMX
3665M: Philipp Zabel <p.zabel@pengutronix.de>
3666L: dri-devel@lists.freedesktop.org
3667S: Maintained
3668F: drivers/gpu/drm/imx/
Philipp Zabelef739aa2015-06-19 16:22:38 +02003669F: drivers/gpu/ipu-v3/
Rob Herring2d799dd2015-11-05 13:40:40 -06003670F: Documentation/devicetree/bindings/display/imx/
Philipp Zabel0a3d7752014-11-24 16:33:35 +01003671
Patrik Jakobssonba2199a2015-10-12 23:14:44 +02003672DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
3673M: Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
3674L: dri-devel@lists.freedesktop.org
3675T: git git://github.com/patjak/drm-gma500
3676S: Maintained
3677F: drivers/gpu/drm/gma500
3678F: include/drm/gma500*
3679
Thierry Redingbd3b49f2012-11-28 20:45:28 +01003680DRM DRIVERS FOR NVIDIA TEGRA
Thierry Redinga5ad7a62013-05-19 14:19:21 +02003681M: Thierry Reding <thierry.reding@gmail.com>
3682M: Terje Bergström <tbergstrom@nvidia.com>
Thierry Redingbd3b49f2012-11-28 20:45:28 +01003683L: dri-devel@lists.freedesktop.org
3684L: linux-tegra@vger.kernel.org
Thierry Redinga5ad7a62013-05-19 14:19:21 +02003685T: git git://anongit.freedesktop.org/tegra/linux.git
Stephen Warrenadabdb02013-09-13 13:00:57 -06003686S: Supported
Thierry Redingdee82682013-10-09 10:32:49 +02003687F: drivers/gpu/drm/tegra/
Thierry Redinga5ad7a62013-05-19 14:19:21 +02003688F: drivers/gpu/host1x/
Thierry Redinge1e90642013-09-24 13:59:01 +02003689F: include/linux/host1x.h
Thierry Redinga5ad7a62013-05-19 14:19:21 +02003690F: include/uapi/drm/tegra_drm.h
Rob Herring2d799dd2015-11-05 13:40:40 -06003691F: Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
Thierry Redingbd3b49f2012-11-28 20:45:28 +01003692
Laurent Pincharta284e9d2014-08-19 23:04:31 +02003693DRM DRIVERS FOR RENESAS
3694M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
3695L: dri-devel@lists.freedesktop.org
3696L: linux-sh@vger.kernel.org
3697T: git git://people.freedesktop.org/~airlied/linux
3698S: Supported
3699F: drivers/gpu/drm/rcar-du/
3700F: drivers/gpu/drm/shmobile/
Laurent Pincharta284e9d2014-08-19 23:04:31 +02003701F: include/linux/platform_data/shmob_drm.h
3702
Heiko Stuebner625e0342015-04-20 00:59:50 +02003703DRM DRIVERS FOR ROCKCHIP
3704M: Mark Yao <mark.yao@rock-chips.com>
3705L: dri-devel@lists.freedesktop.org
3706S: Maintained
3707F: drivers/gpu/drm/rockchip/
Rob Herring2d799dd2015-11-05 13:40:40 -06003708F: Documentation/devicetree/bindings/display/rockchip*
Heiko Stuebner625e0342015-04-20 00:59:50 +02003709
Benjamin Gaignard7f11c472015-08-14 15:35:24 -07003710DRM DRIVERS FOR STI
3711M: Benjamin Gaignard <benjamin.gaignard@linaro.org>
3712M: Vincent Abriou <vincent.abriou@st.com>
3713L: dri-devel@lists.freedesktop.org
3714T: git http://git.linaro.org/people/benjamin.gaignard/kernel.git
3715S: Maintained
3716F: drivers/gpu/drm/sti
Rob Herring2d799dd2015-11-05 13:40:40 -06003717F: Documentation/devicetree/bindings/display/st,stih4xx.txt
Benjamin Gaignard7f11c472015-08-14 15:35:24 -07003718
Alexey Klimov598df1a2012-11-28 17:16:32 -03003719DSBR100 USB FM RADIO DRIVER
3720M: Alexey Klimov <klimov.linux@gmail.com>
3721L: linux-media@vger.kernel.org
3722T: git git://linuxtv.org/media_tree.git
3723S: Maintained
3724F: drivers/media/radio/dsbr100.c
3725
Linus Torvalds1da177e2005-04-16 15:20:36 -07003726DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003727M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08003728L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003729S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003730F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731
Hans Verkuilcc11b142015-04-25 12:36:18 -03003732DT3155 MEDIA DRIVER
3733M: Hans Verkuil <hverkuil@xs4all.nl>
3734L: linux-media@vger.kernel.org
3735T: git git://linuxtv.org/media_tree.git
3736W: http://linuxtv.org
3737S: Odd Fixes
3738F: drivers/media/pci/dt3155/
3739
Antti Palosaari91952bc2012-10-01 12:28:46 -03003740DVB_USB_AF9015 MEDIA DRIVER
3741M: Antti Palosaari <crope@iki.fi>
3742L: linux-media@vger.kernel.org
3743W: http://linuxtv.org/
3744W: http://palosaari.fi/linux/
3745Q: http://patchwork.linuxtv.org/project/linux-media/list/
3746T: git git://linuxtv.org/anttip/media_tree.git
3747S: Maintained
3748F: drivers/media/usb/dvb-usb-v2/af9015*
3749
3750DVB_USB_AF9035 MEDIA DRIVER
3751M: Antti Palosaari <crope@iki.fi>
3752L: linux-media@vger.kernel.org
3753W: http://linuxtv.org/
3754W: http://palosaari.fi/linux/
3755Q: http://patchwork.linuxtv.org/project/linux-media/list/
3756T: git git://linuxtv.org/anttip/media_tree.git
3757S: Maintained
3758F: drivers/media/usb/dvb-usb-v2/af9035*
3759
3760DVB_USB_ANYSEE MEDIA DRIVER
3761M: Antti Palosaari <crope@iki.fi>
3762L: linux-media@vger.kernel.org
3763W: http://linuxtv.org/
3764W: http://palosaari.fi/linux/
3765Q: http://patchwork.linuxtv.org/project/linux-media/list/
3766T: git git://linuxtv.org/anttip/media_tree.git
3767S: Maintained
3768F: drivers/media/usb/dvb-usb-v2/anysee*
3769
3770DVB_USB_AU6610 MEDIA DRIVER
3771M: Antti Palosaari <crope@iki.fi>
3772L: linux-media@vger.kernel.org
3773W: http://linuxtv.org/
3774W: http://palosaari.fi/linux/
3775Q: http://patchwork.linuxtv.org/project/linux-media/list/
3776T: git git://linuxtv.org/anttip/media_tree.git
3777S: Maintained
3778F: drivers/media/usb/dvb-usb-v2/au6610*
3779
3780DVB_USB_CE6230 MEDIA DRIVER
3781M: Antti Palosaari <crope@iki.fi>
3782L: linux-media@vger.kernel.org
3783W: http://linuxtv.org/
3784W: http://palosaari.fi/linux/
3785Q: http://patchwork.linuxtv.org/project/linux-media/list/
3786T: git git://linuxtv.org/anttip/media_tree.git
3787S: Maintained
3788F: drivers/media/usb/dvb-usb-v2/ce6230*
3789
Michael Krufkyd099dea2012-10-02 00:56:20 -03003790DVB_USB_CXUSB MEDIA DRIVER
3791M: Michael Krufky <mkrufky@linuxtv.org>
3792L: linux-media@vger.kernel.org
3793W: http://linuxtv.org/
3794W: http://github.com/mkrufky
3795Q: http://patchwork.linuxtv.org/project/linux-media/list/
3796T: git git://linuxtv.org/media_tree.git
3797S: Maintained
Cesar Eduardo Barros9819da62013-01-04 15:35:25 -08003798F: drivers/media/usb/dvb-usb/cxusb*
Michael Krufkyd099dea2012-10-02 00:56:20 -03003799
Antti Palosaari91952bc2012-10-01 12:28:46 -03003800DVB_USB_EC168 MEDIA DRIVER
3801M: Antti Palosaari <crope@iki.fi>
3802L: linux-media@vger.kernel.org
3803W: http://linuxtv.org/
3804W: http://palosaari.fi/linux/
3805Q: http://patchwork.linuxtv.org/project/linux-media/list/
3806T: git git://linuxtv.org/anttip/media_tree.git
3807S: Maintained
3808F: drivers/media/usb/dvb-usb-v2/ec168*
3809
Antti Palosaari55609832013-04-09 20:30:42 -03003810DVB_USB_GL861 MEDIA DRIVER
3811M: Antti Palosaari <crope@iki.fi>
3812L: linux-media@vger.kernel.org
3813W: http://linuxtv.org/
3814Q: http://patchwork.linuxtv.org/project/linux-media/list/
3815T: git git://linuxtv.org/anttip/media_tree.git
3816S: Maintained
3817F: drivers/media/usb/dvb-usb-v2/gl861*
3818
Michael Krufky8856f5f2012-10-02 00:55:50 -03003819DVB_USB_MXL111SF MEDIA DRIVER
3820M: Michael Krufky <mkrufky@linuxtv.org>
3821L: linux-media@vger.kernel.org
3822W: http://linuxtv.org/
3823W: http://github.com/mkrufky
3824Q: http://patchwork.linuxtv.org/project/linux-media/list/
3825T: git git://linuxtv.org/mkrufky/mxl111sf.git
3826S: Maintained
3827F: drivers/media/usb/dvb-usb-v2/mxl111sf*
3828
Antti Palosaari91952bc2012-10-01 12:28:46 -03003829DVB_USB_RTL28XXU MEDIA DRIVER
3830M: Antti Palosaari <crope@iki.fi>
3831L: linux-media@vger.kernel.org
3832W: http://linuxtv.org/
3833W: http://palosaari.fi/linux/
3834Q: http://patchwork.linuxtv.org/project/linux-media/list/
3835T: git git://linuxtv.org/anttip/media_tree.git
3836S: Maintained
3837F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
3838
3839DVB_USB_V2 MEDIA DRIVER
3840M: Antti Palosaari <crope@iki.fi>
3841L: linux-media@vger.kernel.org
3842W: http://linuxtv.org/
3843W: http://palosaari.fi/linux/
3844Q: http://patchwork.linuxtv.org/project/linux-media/list/
3845T: git git://linuxtv.org/anttip/media_tree.git
3846S: Maintained
3847F: drivers/media/usb/dvb-usb-v2/dvb_usb*
3848F: drivers/media/usb/dvb-usb-v2/usb_urb.c
3849
Jason Baronac0ac382011-08-11 14:36:43 -04003850DYNAMIC DEBUG
Joe Perches5c4a97d2013-07-31 13:53:32 -07003851M: Jason Baron <jbaron@akamai.com>
Jason Baronac0ac382011-08-11 14:36:43 -04003852S: Maintained
3853F: lib/dynamic_debug.c
3854F: include/linux/dynamic_debug.h
3855
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08003856DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003857M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08003858S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003859F: drivers/tty/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08003860
Moritz Fischerf17effb2015-01-10 14:10:59 -08003861E3X0 POWER BUTTON DRIVER
3862M: Moritz Fischer <moritz.fischer@ettus.com>
3863L: usrp-users@lists.ettus.com
3864W: http://www.ettus.com
3865S: Supported
3866F: drivers/input/misc/e3x0-button.c
3867F: Documentation/devicetree/bindings/input/e3x0-button.txt
3868
Antti Palosaari91952bc2012-10-01 12:28:46 -03003869E4000 MEDIA DRIVER
3870M: Antti Palosaari <crope@iki.fi>
3871L: linux-media@vger.kernel.org
3872W: http://linuxtv.org/
3873W: http://palosaari.fi/linux/
3874Q: http://patchwork.linuxtv.org/project/linux-media/list/
3875T: git git://linuxtv.org/anttip/media_tree.git
3876S: Maintained
3877F: drivers/media/tuners/e4000*
3878
Linus Torvalds1da177e2005-04-16 15:20:36 -07003879EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003880M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003881L: linux-scsi@vger.kernel.org
3882S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003883F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003884
Antti Palosaari91952bc2012-10-01 12:28:46 -03003885EC100 MEDIA DRIVER
3886M: Antti Palosaari <crope@iki.fi>
3887L: linux-media@vger.kernel.org
3888W: http://linuxtv.org/
3889W: http://palosaari.fi/linux/
3890Q: http://patchwork.linuxtv.org/project/linux-media/list/
3891T: git git://linuxtv.org/anttip/media_tree.git
3892S: Maintained
3893F: drivers/media/dvb-frontends/ec100*
3894
Michael Halcrow237fead2006-10-04 02:16:22 -07003895ECRYPT FILE SYSTEM
Tyler Hicks0de9adf2011-11-05 09:04:47 -04003896M: Tyler Hicks <tyhicks@canonical.com>
Tyler Hicksa058bfb2011-05-27 11:47:59 -05003897L: ecryptfs@vger.kernel.org
Dustin Kirkland24a923e2013-05-31 10:41:43 -05003898W: http://ecryptfs.org
Michael Halcrow6dc75162008-12-15 13:54:17 -08003899W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07003900S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003901F: Documentation/filesystems/ecryptfs.txt
3902F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07003903
Alan Coxda9bb1d2006-01-18 17:44:13 -08003904EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07003905M: Doug Thompson <dougthompson@xmission.com>
Borislav Petkovaa15aa02014-03-03 15:38:17 -08003906M: Borislav Petkov <bp@alien8.de>
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02003907M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003908L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08003909W: bluesmoke.sourceforge.net
Borislav Petkov7a859512015-02-06 17:46:07 +01003910T: git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git#for-next
3911T: git://git.kernel.org/pub/linux/kernel/git/mchehab/linux-edac.git#linux_next
Doug Thompson8c2a6a42006-06-30 01:56:09 -07003912S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003913F: Documentation/edac.txt
Chris Metcalf91445c72012-03-31 09:46:03 -04003914F: drivers/edac/
Joe Perches679655d2009-04-07 20:44:32 -07003915F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08003916
Borislav Petkovc476c232009-05-20 20:31:58 +02003917EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07003918M: Doug Thompson <dougthompson@xmission.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01003919M: Borislav Petkov <bp@alien8.de>
Chris Metcalf91445c72012-03-31 09:46:03 -04003920L: linux-edac@vger.kernel.org
Borislav Petkovc476c232009-05-20 20:31:58 +02003921W: bluesmoke.sourceforge.net
Borislav Petkov487ba8e2012-10-29 18:40:10 +01003922S: Maintained
Borislav Petkovc476c232009-05-20 20:31:58 +02003923F: drivers/edac/amd64_edac*
3924
Robert Richter836dae52013-10-18 09:24:52 +02003925EDAC-CALXEDA
3926M: Doug Thompson <dougthompson@xmission.com>
3927M: Robert Richter <rric@kernel.org>
3928L: linux-edac@vger.kernel.org
3929W: bluesmoke.sourceforge.net
3930S: Maintained
3931F: drivers/edac/highbank*
3932
Ralf Baechlef65aad42012-10-17 00:39:09 +02003933EDAC-CAVIUM
3934M: Ralf Baechle <ralf@linux-mips.org>
3935M: David Daney <david.daney@cavium.com>
3936L: linux-edac@vger.kernel.org
3937L: linux-mips@linux-mips.org
3938W: bluesmoke.sourceforge.net
3939S: Supported
3940F: drivers/edac/octeon_edac*
3941
Dave Peterson0e438e32006-03-26 01:38:55 -08003942EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07003943M: Mark Gross <mark.gross@intel.com>
3944M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003945L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08003946W: bluesmoke.sourceforge.net
3947S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003948F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08003949
3950EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07003951M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003952L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08003953W: bluesmoke.sourceforge.net
3954S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003955F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08003956
Mauro Carvalho Chehab77c5f5d2013-02-15 06:11:57 -03003957EDAC-GHES
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02003958M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab77c5f5d2013-02-15 06:11:57 -03003959L: linux-edac@vger.kernel.org
3960W: bluesmoke.sourceforge.net
3961S: Maintained
Joe Perches2caa67a2013-09-11 14:23:40 -07003962F: drivers/edac/ghes_edac.c
Mauro Carvalho Chehab77c5f5d2013-02-15 06:11:57 -03003963
Douglas Thompson6bc78402007-07-19 01:50:12 -07003964EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07003965M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003966L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07003967W: bluesmoke.sourceforge.net
3968S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003969F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07003970
3971EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07003972M: Jason Uhlenkott <juhlenko@akamai.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003973L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07003974W: bluesmoke.sourceforge.net
3975S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003976F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07003977
3978EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07003979M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003980L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07003981W: bluesmoke.sourceforge.net
3982S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003983F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07003984
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08003985EDAC-I5400
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02003986M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03003987L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08003988W: bluesmoke.sourceforge.net
3989S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003990F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08003991
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03003992EDAC-I7300
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02003993M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03003994L: linux-edac@vger.kernel.org
3995W: bluesmoke.sourceforge.net
3996S: Maintained
3997F: drivers/edac/i7300_edac.c
3998
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03003999EDAC-I7CORE
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02004000M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03004001L: linux-edac@vger.kernel.org
4002W: bluesmoke.sourceforge.net
4003S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03004004F: drivers/edac/i7core_edac.c
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03004005
Douglas Thompsonba9a5912007-07-19 01:50:32 -07004006EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07004007M: Ranganathan Desikan <ravi@jetztechnologies.com>
Arvind R25527882011-01-21 23:13:37 +05304008M: "Arvind R." <arvino55@gmail.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04004009L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07004010W: bluesmoke.sourceforge.net
4011S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004012F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07004013
Jason Baron791b4702014-07-09 21:13:11 +00004014EDAC-IE31200
4015M: Jason Baron <jbaron@akamai.com>
4016L: linux-edac@vger.kernel.org
4017W: bluesmoke.sourceforge.net
4018S: Maintained
4019F: drivers/edac/ie31200_edac.c
4020
Johannes Thumshirnccdfb972013-11-17 19:25:12 +01004021EDAC-MPC85XX
Johannes Thumshirn30c74692015-05-07 10:21:24 +02004022M: Johannes Thumshirn <morbidrsa@gmail.com>
Johannes Thumshirnccdfb972013-11-17 19:25:12 +01004023L: linux-edac@vger.kernel.org
4024W: bluesmoke.sourceforge.net
4025S: Maintained
4026F: drivers/edac/mpc85xx_edac.[ch]
4027
Douglas Thompsonba9a5912007-07-19 01:50:32 -07004028EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07004029M: Egor Martovetsky <egor@pasemi.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04004030L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07004031W: bluesmoke.sourceforge.net
4032S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004033F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07004034
Dave Peterson0e438e32006-03-26 01:38:55 -08004035EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07004036M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04004037L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08004038W: bluesmoke.sourceforge.net
4039S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004040F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08004041
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02004042EDAC-SBRIDGE
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02004043M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02004044L: linux-edac@vger.kernel.org
4045W: bluesmoke.sourceforge.net
4046S: Maintained
4047F: drivers/edac/sb_edac.c
4048
Loc Ho995e1de2015-05-22 17:32:57 -06004049EDAC-XGENE
4050APPLIED MICRO (APM) X-GENE SOC EDAC
4051M: Loc Ho <lho@apm.com>
4052S: Supported
4053F: drivers/edac/xgene_edac.c
4054F: Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
4055
Clemens Ladischaf399172011-01-10 16:32:54 +01004056EDIROL UA-101/UA-1000 DRIVER
4057M: Clemens Ladisch <clemens@ladisch.de>
4058L: alsa-devel@alsa-project.org (moderated for non-subscribers)
4059T: git git://git.alsa-project.org/alsa-kernel.git
4060S: Maintained
4061F: sound/usb/misc/ua101.c
4062
Matt Fleming1f7df952012-10-03 10:04:02 +01004063EXTENSIBLE FIRMWARE INTERFACE (EFI)
Matt Fleming825fcfc2015-10-10 17:22:16 +01004064M: Matt Fleming <matt@codeblueprint.co.uk>
Matt Fleming1f7df952012-10-03 10:04:02 +01004065L: linux-efi@vger.kernel.org
Matt Fleming78bef242012-10-08 11:33:05 +01004066T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
Matt Fleming1f7df952012-10-03 10:04:02 +01004067S: Maintained
Joe Perchesfb2efb52014-08-08 14:25:01 -07004068F: Documentation/efi-stub.txt
Matt Fleming1f7df952012-10-03 10:04:02 +01004069F: arch/ia64/kernel/efi.c
4070F: arch/x86/boot/compressed/eboot.[ch]
4071F: arch/x86/include/asm/efi.h
4072F: arch/x86/platform/efi/*
Tom Gundersena9499fa2013-02-08 15:37:06 +00004073F: drivers/firmware/efi/*
Matt Fleming1f7df952012-10-03 10:04:02 +01004074F: include/linux/efi*.h
4075
Matt Flemingd68772b2013-02-08 16:27:24 +00004076EFI VARIABLE FILESYSTEM
4077M: Matthew Garrett <matthew.garrett@nebula.com>
4078M: Jeremy Kerr <jk@ozlabs.org>
Matt Fleming825fcfc2015-10-10 17:22:16 +01004079M: Matt Fleming <matt@codeblueprint.co.uk>
Matt Flemingd68772b2013-02-08 16:27:24 +00004080T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4081L: linux-efi@vger.kernel.org
4082S: Maintained
4083F: fs/efivarfs/
4084
Peter Jones85a00d92010-09-22 13:05:04 -07004085EFIFB FRAMEBUFFER DRIVER
4086L: linux-fbdev@vger.kernel.org
4087M: Peter Jones <pjones@redhat.com>
4088S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09004089F: drivers/video/fbdev/efifb.c
Peter Jones85a00d92010-09-22 13:05:04 -07004090
Josh Triplett0bee8d22006-07-30 03:03:58 -07004091EFS FILESYSTEM
4092W: http://aeschi.ch.eu.org/efs/
4093S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004094F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07004095
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004096EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004097M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
4098M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004099L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07004100S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004101F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07004102
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07004103EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
Thadeu Lima de Souza Cascardo34b19012011-10-13 09:56:19 +00004104M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07004105L: netdev@vger.kernel.org
4106S: Maintained
Jeff Kirsher9aa32832011-05-13 14:29:12 -07004107F: drivers/net/ethernet/ibm/ehea/
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07004108
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02004109EM28XX VIDEO4LINUX DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02004110M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02004111L: linux-media@vger.kernel.org
4112W: http://linuxtv.org
4113T: git git://linuxtv.org/media_tree.git
4114S: Maintained
4115F: drivers/media/usb/em28xx/
4116
David Woodhouse3e3a7d62008-05-01 04:34:46 -07004117EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07004118M: Paul Gortmaker <paul.gortmaker@windriver.com>
4119M: Matt Mackall <mpm@selenic.com>
4120M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07004121L: linux-embedded@vger.kernel.org
4122S: Maintained
4123
James Smart32505872015-05-15 13:10:58 -04004124EMULEX/AVAGO LPFC FC/FCOE SCSI DRIVER
4125M: James Smart <james.smart@avagotech.com>
4126M: Dick Kennedy <dick.kennedy@avagotech.com>
Jim Cromiece00f852006-11-30 04:49:44 +01004127L: linux-scsi@vger.kernel.org
James Smart32505872015-05-15 13:10:58 -04004128W: http://www.avagotech.com
Jim Cromiece00f852006-11-30 04:49:44 +01004129S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004130F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04004131
Michał Mirosław5f5bac82009-05-22 20:33:59 +02004132ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004133M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02004134S: Maintained
4135F: drivers/misc/cb710/
4136F: drivers/mmc/host/cb710-mmc.*
4137F: include/linux/cb710.h
4138
Maxim Levitsky931e39a2010-07-31 11:59:26 -03004139ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
4140M: Maxim Levitsky <maximlevitsky@gmail.com>
4141S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07004142F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03004143
Gavin Shanec207dc2013-06-28 21:12:14 +08004144ENHANCED ERROR HANDLING (EEH)
4145M: Gavin Shan <shangw@linux.vnet.ibm.com>
4146L: linuxppc-dev@lists.ozlabs.org
4147S: Supported
4148F: Documentation/powerpc/eeh-pci-error-recovery.txt
4149F: arch/powerpc/kernel/eeh*.c
4150
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07004151EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004152M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07004153S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07004154T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Jingoo Han8a61f012014-07-01 15:36:01 +09004155F: drivers/video/fbdev/s1d13xxxfb.c
Joe Perches679655d2009-04-07 20:44:32 -07004156F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07004157
Mark Einon38df6492014-09-30 22:29:46 +01004158ET131X NETWORK DRIVER
4159M: Mark Einon <mark.einon@gmail.com>
4160S: Odd Fixes
4161F: drivers/net/ethernet/agere/
4162
Linus Torvalds1da177e2005-04-16 15:20:36 -07004163ETHERNET BRIDGE
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08004164M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07004165L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08004166L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00004167W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07004168S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004169F: include/linux/netfilter_bridge/
4170F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004171
Florian Fainelli22f08ad2014-02-18 09:47:49 -08004172ETHERNET PHY LIBRARY
4173M: Florian Fainelli <f.fainelli@gmail.com>
4174L: netdev@vger.kernel.org
4175S: Maintained
4176F: include/linux/phy.h
4177F: include/linux/phy_fixed.h
4178F: drivers/net/phy/
4179F: Documentation/networking/phy.txt
4180F: drivers/of/of_mdio.c
4181F: drivers/of/of_net.c
4182
Linus Torvalds1da177e2005-04-16 15:20:36 -07004183EXT2 FILE SYSTEM
Jiri Slabyd8130622015-07-17 16:23:20 -07004184M: Jan Kara <jack@suse.com>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004185L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004186S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004187F: Documentation/filesystems/ext2.txt
4188F: fs/ext2/
4189F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004190
Erik Mouw72be2cc2006-12-06 20:40:49 -08004191EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004192M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02004193M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004194L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04004195W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004196Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004197S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004198F: Documentation/filesystems/ext4.txt
4199F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004200
Mimi Zoharc5532b02011-08-17 18:52:24 -04004201Extended Verification Module (EVM)
Mimi Zohar74dd7442014-02-27 08:44:45 -05004202M: Mimi Zohar <zohar@linux.vnet.ibm.com>
4203L: linux-ima-devel@lists.sourceforge.net
4204L: linux-security-module@vger.kernel.org
Mimi Zoharc5532b02011-08-17 18:52:24 -04004205S: Supported
4206F: security/integrity/evm/
4207
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09004208EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
4209M: MyungJoo Ham <myungjoo.ham@samsung.com>
4210M: Chanwoo Choi <cw00.choi@samsung.com>
4211L: linux-kernel@vger.kernel.org
Chanwoo Choi81df63a2013-09-28 15:04:37 +09004212T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09004213S: Maintained
4214F: drivers/extcon/
Chanwoo Choicd2c3e72015-11-06 16:30:55 -08004215F: include/linux/extcon/
4216F: include/linux/extcon.h
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09004217F: Documentation/extcon/
Chanwoo Choicd2c3e72015-11-06 16:30:55 -08004218F: Documentation/devicetree/bindings/extcon/
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09004219
Jingoo Hane2a75c42014-04-10 20:24:03 +09004220EXYNOS DP DRIVER
Jingoo Hanb7701752015-05-14 15:17:07 -07004221M: Jingoo Han <jingoohan1@gmail.com>
Jingoo Hane2a75c42014-04-10 20:24:03 +09004222L: dri-devel@lists.freedesktop.org
4223S: Maintained
4224F: drivers/gpu/drm/exynos/exynos_dp*
4225
Donghwa Lee33ad3912012-03-06 11:44:58 +09004226EXYNOS MIPI DISPLAY DRIVERS
4227M: Inki Dae <inki.dae@samsung.com>
4228M: Donghwa Lee <dh09.lee@samsung.com>
4229M: Kyungmin Park <kyungmin.park@samsung.com>
4230L: linux-fbdev@vger.kernel.org
4231S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09004232F: drivers/video/fbdev/exynos/exynos_mipi*
Donghwa Lee33ad3912012-03-06 11:44:58 +09004233F: include/video/exynos_mipi*
4234
Jean Delvaree53004e2006-01-09 23:26:14 +01004235F71805F HARDWARE MONITORING DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07004236M: Jean Delvare <jdelvare@suse.com>
Jean Delvaree53004e2006-01-09 23:26:14 +01004237L: lm-sensors@lm-sensors.org
4238S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004239F: Documentation/hwmon/f71805f
4240F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01004241
Michael Büscheea977e2012-04-02 12:14:32 -03004242FC0011 TUNER DRIVER
4243M: Michael Buesch <m@bues.ch>
4244L: linux-media@vger.kernel.org
4245S: Maintained
Mauro Carvalho Chehabccae7af2012-06-14 16:35:59 -03004246F: drivers/media/tuners/fc0011.h
4247F: drivers/media/tuners/fc0011.c
Michael Büscheea977e2012-04-02 12:14:32 -03004248
Antti Palosaari91952bc2012-10-01 12:28:46 -03004249FC2580 MEDIA DRIVER
4250M: Antti Palosaari <crope@iki.fi>
4251L: linux-media@vger.kernel.org
4252W: http://linuxtv.org/
4253W: http://palosaari.fi/linux/
4254Q: http://patchwork.linuxtv.org/project/linux-media/list/
4255T: git git://linuxtv.org/anttip/media_tree.git
4256S: Maintained
4257F: drivers/media/tuners/fc2580*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004258
Eric Paris88b2dbd2010-08-18 12:25:50 -04004259FANOTIFY
4260M: Eric Paris <eparis@redhat.com>
4261S: Maintained
4262F: fs/notify/fanotify/
4263F: include/linux/fanotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004264F: include/uapi/linux/fanotify.h
Eric Paris88b2dbd2010-08-18 12:25:50 -04004265
Linus Torvalds1da177e2005-04-16 15:20:36 -07004266FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004267M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004268W: http://www.farsite.co.uk/
4269S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004270F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004271
Akinobu Mitac5408b82007-04-23 14:41:20 -07004272FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004273M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07004274S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004275F: Documentation/fault-injection/
4276F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07004277
Noralf Trønnes053e5142015-01-23 19:29:07 +01004278FBTFT Framebuffer drivers
4279M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4280M: Noralf Trønnes <noralf@tronnes.org>
4281S: Maintained
4282F: drivers/staging/fbtft/
4283
Robert Lovecae727d2010-02-16 12:16:00 -08004284FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
Robert Love3bd746c2014-05-28 14:19:01 -07004285M: Vasu Dev <vasu.dev@intel.com>
Neil Hormanf4aaea62013-05-03 19:38:10 +00004286L: fcoe-devel@open-fcoe.org
Robert Lovecae727d2010-02-16 12:16:00 -08004287W: www.Open-FCoE.org
4288S: Supported
4289F: drivers/scsi/libfc/
4290F: drivers/scsi/fcoe/
4291F: include/scsi/fc/
4292F: include/scsi/libfc.h
4293F: include/scsi/libfcoe.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004294F: include/uapi/scsi/fc/
Robert Lovecae727d2010-02-16 12:16:00 -08004295
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004296FILE LOCKING (flock() and fcntl()/lockf())
Jeff Layton8c836fa2014-04-30 13:28:17 -04004297M: Jeff Layton <jlayton@poochiereds.net>
Joe Perches9c3646d2015-06-25 15:02:00 -07004298M: "J. Bruce Fields" <bfields@fieldses.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004299L: linux-fsdevel@vger.kernel.org
4300S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004301F: include/linux/fcntl.h
4302F: include/linux/fs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004303F: include/uapi/linux/fcntl.h
4304F: include/uapi/linux/fs.h
Joe Perches679655d2009-04-07 20:44:32 -07004305F: fs/fcntl.c
4306F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004307
4308FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07004309M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004310L: linux-fsdevel@vger.kernel.org
4311S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004312F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004313
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004314FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02004315M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004316L: lm-sensors@lm-sensors.org
4317S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07004318F: drivers/hwmon/f75375s.c
4319F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004320
Clemens Ladischa331b0c2011-05-25 09:48:48 +02004321FIREWIRE AUDIO DRIVERS
4322M: Clemens Ladisch <clemens@ladisch.de>
4323L: alsa-devel@alsa-project.org (moderated for non-subscribers)
4324T: git git://git.alsa-project.org/alsa-kernel.git
4325S: Maintained
4326F: sound/firewire/
4327
Stefan Richtereb86ec52012-11-03 09:25:20 +01004328FIREWIRE MEDIA DRIVERS (firedtv)
4329M: Stefan Richter <stefanr@s5r6.in-berlin.de>
4330L: linux-media@vger.kernel.org
4331L: linux1394-devel@lists.sourceforge.net
4332T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
4333S: Maintained
4334F: drivers/media/firewire/
4335
Chris Boota511ce32012-04-14 17:50:35 -07004336FIREWIRE SBP-2 TARGET
4337M: Chris Boot <bootc@bootc.net>
4338L: linux-scsi@vger.kernel.org
4339L: target-devel@vger.kernel.org
4340L: linux1394-devel@lists.sourceforge.net
4341T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
4342S: Maintained
4343F: drivers/target/sbp/
4344
Joe Perches7d2c86b2009-04-07 20:59:01 -07004345FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004346M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004347L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01004348W: http://ieee1394.wiki.kernel.org/
Stefan Richter2ca526b2011-12-20 21:23:28 +01004349T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004350S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004351F: drivers/firewire/
Stefan Richter8f06ce32012-12-17 16:00:07 -08004352F: include/linux/firewire.h
4353F: include/uapi/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02004354F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004355
4356FIRMWARE LOADER (request_firmware)
Ming Lei39e68082012-08-20 19:04:17 +08004357M: Ming Lei <ming.lei@canonical.com>
4358L: linux-kernel@vger.kernel.org
4359S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004360F: Documentation/firmware_class/
4361F: drivers/base/firmware*.c
4362F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004363
Philip J Kelleherf730e3d2013-06-18 14:43:58 -05004364FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
Philip J Kelleher9bb3c442013-02-27 09:24:59 -06004365M: Joshua Morris <josh.h.morris@us.ibm.com>
4366M: Philip Kelleher <pjk1939@linux.vnet.ibm.com>
4367S: Maintained
4368F: drivers/block/rsxx/
4369
Jiri Kosina8206f662012-05-18 13:52:29 +02004370FLOPPY DRIVER
Jiri Kosinae5f64502015-08-09 09:11:34 +02004371M: Jiri Kosina <jikos@kernel.org>
Jiri Kosina8206f662012-05-18 13:52:29 +02004372T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
4373S: Odd fixes
4374F: drivers/block/floppy.c
4375
Alessandro Rubini9c9f32e2013-06-12 09:13:25 +02004376FMC SUBSYSTEM
4377M: Alessandro Rubini <rubini@gnudd.com>
4378W: http://www.ohwr.org/projects/fmc-bus
4379S: Supported
4380F: drivers/fmc/
4381F: include/linux/fmc*.h
4382F: include/linux/ipmi-fru.h
4383K: fmc_d.*register
4384
Alan Tull3c0ed7d2015-10-07 20:49:23 +01004385FPGA MANAGER FRAMEWORK
4386M: Alan Tull <atull@opensource.altera.com>
4387S: Maintained
4388F: drivers/fpga/
4389F: include/linux/fpga/fpga-mgr.h
4390W: http://www.rocketboards.org
4391
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004392FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07004393M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07004394W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004395S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004396F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004397
4398FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004399L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00004400S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004401F: drivers/net/wan/dlci.c
4402F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004403
Linus Torvalds1da177e2005-04-16 15:20:36 -07004404FRAMEBUFFER LAYER
Jean-Christophe PLAGNIOL-VILLARD5489e942013-05-30 22:23:44 +02004405M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
4406M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004407L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004408W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09004409Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Jean-Christophe PLAGNIOL-VILLARD5489e942013-05-30 22:23:44 +02004410T: git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
Paul Mundt56be1412011-03-23 08:29:07 +09004411S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004412F: Documentation/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09004413F: drivers/video/
4414F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07004415F: include/linux/fb.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004416F: include/uapi/video/
4417F: include/uapi/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004418
Timur Tabia57c1882012-10-16 17:33:42 -05004419FREESCALE DIU FRAMEBUFFER DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004420M: Timur Tabi <timur@tabi.org>
Timur Tabia57c1882012-10-16 17:33:42 -05004421L: linux-fbdev@vger.kernel.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004422S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09004423F: drivers/video/fbdev/fsl-diu-fb.*
Timur Tabia57c1882012-10-16 17:33:42 -05004424
Zhang Wei173acc72008-03-01 07:42:48 -07004425FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004426M: Li Yang <leoli@freescale.com>
4427M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004428L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07004429S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004430F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07004431
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02004432FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004433M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004434L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01004435L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02004436S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004437F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02004438
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01004439FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004440M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004441L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07004442L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01004443S: Maintained
Cesar Eduardo Barrosbad985a2013-01-04 15:35:28 -08004444F: include/linux/platform_data/video-imxfb.h
Jingoo Han8a61f012014-07-01 15:36:01 +09004445F: drivers/video/fbdev/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01004446
Han Xu4d8e2ce2015-01-16 03:29:17 +08004447FREESCALE QUAD SPI DRIVER
4448M: Han Xu <han.xu@freescale.com>
4449L: linux-mtd@lists.infradead.org
4450S: Maintained
4451F: drivers/mtd/spi-nor/fsl-quadspi.c
4452
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03004453FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004454M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
4455M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004456L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03004457L: netdev@vger.kernel.org
4458S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07004459F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07004460F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03004461
Timur Tabid9e9d822008-04-24 08:45:26 +10004462FREESCALE QUICC ENGINE LIBRARY
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004463L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004464S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004465F: arch/powerpc/sysdev/qe_lib/
4466F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10004467
Joe Perchesb55ef9292009-10-26 16:49:46 -07004468FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004469M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07004470L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004471L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07004472S: Maintained
Joe Perchesfaf2e1d2014-08-08 14:26:18 -07004473F: drivers/usb/gadget/udc/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07004474
Li Yangbeaf53b2007-05-25 13:54:02 +08004475FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004476M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08004477L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004478L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08004479S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07004480F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08004481
Claudiu Manoilabb1ed72015-10-23 11:42:01 +03004482FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
4483M: Claudiu Manoil <claudiu.manoil@freescale.com>
4484L: netdev@vger.kernel.org
4485S: Maintained
4486F: drivers/net/ethernet/freescale/gianfar*
4487X: drivers/net/ethernet/freescale/gianfar_ptp.c
4488F: Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
4489
Timur Tabid9e9d822008-04-24 08:45:26 +10004490FREESCALE QUICC ENGINE UCC UART DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004491M: Timur Tabi <timur@tabi.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004492L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004493S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004494F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10004495
4496FREESCALE SOC SOUND DRIVERS
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004497M: Timur Tabi <timur@tabi.org>
Mark Browndc859502014-08-07 10:47:24 +01004498M: Nicolin Chen <nicoleotsuka@gmail.com>
Xiubo Lib4b98292014-12-12 16:54:14 -08004499M: Xiubo Li <Xiubo.Lee@gmail.com>
Joe Perches93711662009-06-16 15:34:07 -07004500L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004501L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004502S: Maintained
Joe Perches69aefce2009-04-09 10:39:22 -07004503F: sound/soc/fsl/fsl*
Mark Browndc859502014-08-07 10:47:24 +01004504F: sound/soc/fsl/imx*
Joe Perches69aefce2009-04-09 10:39:22 -07004505F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10004506
J. German Rivera31c88962015-03-05 19:29:09 -06004507FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER
Joe Perches9c3646d2015-06-25 15:02:00 -07004508M: "J. German Rivera" <German.Rivera@freescale.com>
J. German Rivera31c88962015-03-05 19:29:09 -06004509L: linux-kernel@vger.kernel.org
4510S: Maintained
4511F: drivers/staging/fsl-mc/
4512
Linus Torvalds1da177e2005-04-16 15:20:36 -07004513FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004514M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004515W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
4516S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004517F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004518
Pavel Machek71038f52009-01-15 13:51:02 -08004519FREEZER
Rafael J. Wysocki49db1902013-10-09 01:47:53 +02004520M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Rafael J. Wysocki7fb06082014-03-20 03:34:47 +01004521M: Pavel Machek <pavel@ucw.cz>
WANG Congbf1c1382011-10-08 20:57:50 +02004522L: linux-pm@vger.kernel.org
Pavel Machek71038f52009-01-15 13:51:02 -08004523S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004524F: Documentation/power/freezing-of-tasks.txt
4525F: include/linux/freezer.h
4526F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08004527
Konrad Rzeszutek Wilk839a1f72012-04-16 17:06:35 -04004528FRONTSWAP API
4529M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4530L: linux-kernel@vger.kernel.org
4531S: Maintained
4532F: mm/frontswap.c
4533F: include/linux/frontswap.h
4534
David Howellsa5432f52009-04-20 15:46:45 +01004535FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07004536M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01004537L: linux-cachefs@redhat.com
4538S: Supported
4539F: Documentation/filesystems/caching/
4540F: fs/fscache/
4541F: include/linux/fscache*.h
4542
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09004543F2FS FILE SYSTEM
Jaegeuk Kim9b29d482014-05-30 08:20:08 +09004544M: Jaegeuk Kim <jaegeuk@kernel.org>
Jaegeuk Kimf6238a72014-05-31 01:00:49 +09004545M: Changman Lee <cm224.lee@samsung.com>
Chao Yu7b2a2462015-08-12 17:47:08 +08004546R: Chao Yu <chao2.yu@samsung.com>
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09004547L: linux-f2fs-devel@lists.sourceforge.net
4548W: http://en.wikipedia.org/wiki/F2FS
4549T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
4550S: Maintained
4551F: Documentation/filesystems/f2fs.txt
Jaegeuk Kim3bac3802014-01-09 21:00:06 +09004552F: Documentation/ABI/testing/sysfs-fs-f2fs
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09004553F: fs/f2fs/
4554F: include/linux/f2fs_fs.h
Chao Yu62d43ee2015-07-06 20:29:46 +08004555F: include/trace/events/f2fs.h
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09004556
David Howells5ab7ffe2007-04-10 15:10:45 +01004557FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07004558M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004559S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004560F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004561
Jonathan Woithe20b93732008-06-11 10:14:56 +09304562FUJITSU LAPTOP EXTRAS
Jonathan Woithe409a3e92012-03-27 13:01:01 +10304563M: Jonathan Woithe <jwoithe@just42.net>
Matthew Garrettd0944852010-02-11 10:40:13 -05004564L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09304565S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004566F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09304567
Heungjun Kim4da621b2011-11-11 08:05:33 -03004568FUJITSU M-5MO LS CAMERA ISP DRIVER
4569M: Kyungmin Park <kyungmin.park@samsung.com>
4570M: Heungjun Kim <riverful.kim@samsung.com>
4571L: linux-media@vger.kernel.org
4572S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004573F: drivers/media/i2c/m5mols/
Heungjun Kim4da621b2011-11-11 08:05:33 -03004574F: include/media/m5mols.h
4575
Robert Gerlach2d24c492012-01-18 14:26:22 +01004576FUJITSU TABLET EXTRAS
4577M: Robert Gerlach <khnz@gmx.de>
4578L: platform-driver-x86@vger.kernel.org
4579S: Maintained
4580F: drivers/platform/x86/fujitsu-tablet.c
4581
Miklos Szeredi04578f12005-09-09 13:10:22 -07004582FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07004583M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07004584L: fuse-devel@lists.sourceforge.net
4585W: http://fuse.sourceforge.net/
Miklos Szeredi0a30f612015-07-01 17:10:36 +02004586T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
Miklos Szeredi04578f12005-09-09 13:10:22 -07004587S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004588F: fs/fuse/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004589F: include/uapi/linux/fuse.h
Miklos Szeredi0a30f612015-07-01 17:10:36 +02004590F: Documentation/filesystems/fuse.txt
Miklos Szeredi04578f12005-09-09 13:10:22 -07004591
Linus Torvalds1da177e2005-04-16 15:20:36 -07004592FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07004593M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004594L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02004595S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07004596F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004597
Peter Oberparleiterd8e21622013-10-16 13:46:49 -07004598GCOV BASED KERNEL PROFILING
4599M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
4600S: Maintained
4601F: kernel/gcov/
4602F: Documentation/gcov.txt
4603
Linus Torvalds1da177e2005-04-16 15:20:36 -07004604GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004605M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004606L: linux-scsi@vger.kernel.org
4607W: http://www.icp-vortex.com/
4608S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004609F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004610
Jan Kiszka158daf12015-02-17 13:47:49 -08004611GDB KERNEL DEBUGGING HELPER SCRIPTS
4612M: Jan Kiszka <jan.kiszka@siemens.com>
4613S: Supported
4614F: scripts/gdb/
4615
Hans Verkuil3169a1c2012-11-23 07:11:58 -03004616GEMTEK FM RADIO RECEIVER DRIVER
4617M: Hans Verkuil <hverkuil@xs4all.nl>
4618L: linux-media@vger.kernel.org
4619T: git git://linuxtv.org/media_tree.git
4620W: http://linuxtv.org
4621S: Maintained
4622F: drivers/media/radio/radio-gemtek*
4623
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02004624GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07004625M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02004626S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004627F: drivers/i2c/busses/i2c-gpio.c
4628F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02004629
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01004630GENERIC GPIO I2C MULTIPLEXER DRIVER
4631M: Peter Korsgaard <peter.korsgaard@barco.com>
4632L: linux-i2c@vger.kernel.org
4633S: Supported
Jean Delvaree7065e22012-04-28 15:32:06 +02004634F: drivers/i2c/muxes/i2c-mux-gpio.c
4635F: include/linux/i2c-mux-gpio.h
4636F: Documentation/i2c/muxes/i2c-mux-gpio
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01004637
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004638GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004639M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004640W: http://www.kernel.org/pub/linux/utils/net/hdlc/
4641S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004642F: drivers/net/wan/c101.c
4643F: drivers/net/wan/hd6457*
4644F: drivers/net/wan/hdlc*
4645F: drivers/net/wan/n2.c
4646F: drivers/net/wan/pc300too.c
4647F: drivers/net/wan/pci200syn.c
4648F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004649
Arnd Bergmann1527aab2009-06-14 22:46:16 +02004650GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07004651M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02004652L: linux-arch@vger.kernel.org
4653T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
4654S: Maintained
Joe Perches14430812013-09-11 14:23:50 -07004655F: include/asm-generic/
4656F: include/uapi/asm-generic/
Arnd Bergmann1527aab2009-06-14 22:46:16 +02004657
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +05304658GENERIC PHY FRAMEWORK
4659M: Kishon Vijay Abraham I <kishon@ti.com>
4660L: linux-kernel@vger.kernel.org
4661T: git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
4662S: Supported
4663F: drivers/phy/
4664F: include/linux/phy/
4665
Kevin Hilmaneea97ae2015-03-12 10:33:46 -07004666GENERIC PM DOMAINS
4667M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
4668M: Kevin Hilman <khilman@kernel.org>
4669M: Ulf Hansson <ulf.hansson@linaro.org>
4670L: linux-pm@vger.kernel.org
4671S: Supported
4672F: drivers/base/power/domain*.c
4673F: include/linux/pm_domain.h
4674
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03004675GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07004676M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03004677L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03004678S: Supported
4679F: drivers/uio/uio_pci_generic.c
4680
Joe Perchesf8f1ec72014-06-04 16:05:31 -07004681GET_MAINTAINER SCRIPT
4682M: Joe Perches <joe@perches.com>
4683S: Maintained
4684F: scripts/get_maintainer.pl
4685
Steven Whitehouse5be7b502006-04-28 11:27:32 -04004686GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004687M: Steven Whitehouse <swhiteho@redhat.com>
Bob Peterson28666d62015-02-13 11:23:11 -06004688M: Bob Peterson <rpeterso@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04004689L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04004690W: http://sources.redhat.com/cluster/
Bob Peterson28666d62015-02-13 11:23:11 -06004691T: git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04004692S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004693F: Documentation/filesystems/gfs2*.txt
4694F: fs/gfs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004695F: include/uapi/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04004696
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08004697GIGASET ISDN DRIVERS
Tilman Schmidt6b096fd2015-05-02 19:23:22 +02004698M: Paul Bolle <pebolle@tiscali.nl>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08004699L: gigaset307x-common@lists.sourceforge.net
4700W: http://gigaset307x.sourceforge.net/
Tilman Schmidt6b096fd2015-05-02 19:23:22 +02004701S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004702F: Documentation/isdn/README.gigaset
4703F: drivers/isdn/gigaset/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004704F: include/uapi/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08004705
Joe Perches7eea35f2014-07-30 05:09:23 -03004706GO7007 MPEG CODEC
4707M: Hans Verkuil <hans.verkuil@cisco.com>
4708L: linux-media@vger.kernel.org
4709S: Maintained
4710F: drivers/media/usb/go7007/
4711
Bastien Noceraca96ea82014-10-31 09:26:16 -07004712GOODIX TOUCHSCREEN
4713M: Bastien Nocera <hadess@hadess.net>
4714L: linux-input@vger.kernel.org
4715S: Maintained
4716F: drivers/input/touchscreen/goodix.c
4717
Grant Likelya0dc00b2011-02-12 01:48:14 -07004718GPIO SUBSYSTEM
Linus Walleije4651a92012-08-06 09:52:52 +02004719M: Linus Walleij <linus.walleij@linaro.org>
Linus Walleijf2fa75c2013-12-10 09:43:09 +01004720M: Alexandre Courbot <gnurou@gmail.com>
Alexandre Courbotd15b7172013-05-26 11:50:54 +09004721L: linux-gpio@vger.kernel.org
Linus Walleijf2fa75c2013-12-10 09:43:09 +01004722T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
4723S: Maintained
4724F: Documentation/gpio/
Grant Likelya0dc00b2011-02-12 01:48:14 -07004725F: drivers/gpio/
Alexandre Courbotbdc6e952014-08-04 13:06:58 +09004726F: include/linux/gpio/
4727F: include/linux/gpio.h
Yang Bai9b692342012-10-04 17:12:35 -07004728F: include/asm-generic/gpio.h
Grant Likelya0dc00b2011-02-12 01:48:14 -07004729
Harry Wei71a6d0a2011-05-11 15:13:33 -07004730GRE DEMULTIPLEXER DRIVER
4731M: Dmitry Kozlov <xeb@mail.ru>
4732L: netdev@vger.kernel.org
4733S: Maintained
Joe Perches11c26772013-09-11 14:23:48 -07004734F: net/ipv4/gre_demux.c
4735F: net/ipv4/gre_offload.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07004736F: include/net/gre.h
4737
Kristoffer Glembod4c41132010-02-15 03:33:44 +00004738GRETH 10/100/1G Ethernet MAC device driver
4739M: Kristoffer Glembo <kristoffer@gaisler.com>
4740L: netdev@vger.kernel.org
4741S: Maintained
Joe Perchesa31a96a2012-01-10 15:08:58 -08004742F: drivers/net/ethernet/aeroflex/
Kristoffer Glembod4c41132010-02-15 03:33:44 +00004743
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004744GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004745M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004746L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004747T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004748S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004749F: drivers/media/usb/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004750
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03004751GSPCA GL860 SUBDRIVER
4752M: Olivier Lorin <o.lorin@laposte.net>
4753L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004754T: git git://linuxtv.org/media_tree.git
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03004755S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004756F: drivers/media/usb/gspca/gl860/
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03004757
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004758GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004759M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004760L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004761T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004762S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004763F: drivers/media/usb/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004764
4765GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004766M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004767L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004768T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004769S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004770F: drivers/media/usb/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004771
Brian Johnson261982f2009-07-19 15:58:56 -03004772GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03004773M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03004774L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004775T: git git://linuxtv.org/media_tree.git
Brian Johnson261982f2009-07-19 15:58:56 -03004776S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004777F: drivers/media/usb/gspca/sn9c20x.c
Brian Johnson261982f2009-07-19 15:58:56 -03004778
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004779GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004780M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004781L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004782T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004783S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004784F: drivers/media/usb/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004785
4786GSPCA USB WEBCAM DRIVER
Jean-Francois Moinefc3f9062012-05-24 07:29:41 -03004787M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004788L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004789T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004790S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004791F: drivers/media/usb/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004792
Davidlohr Bueso584ec972013-12-18 17:08:55 -08004793GUID PARTITION TABLE (GPT)
Andrew Morton4f973c62015-06-25 15:02:05 -07004794M: Davidlohr Bueso <dave@stgolabs.net>
Davidlohr Bueso584ec972013-12-18 17:08:55 -08004795L: linux-efi@vger.kernel.org
4796S: Maintained
4797F: block/partitions/efi.*
4798
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03004799STK1160 USB VIDEO CAPTURE DRIVER
Ezequiel Garcia3259aa52015-03-10 11:43:20 -03004800M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03004801L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004802T: git git://linuxtv.org/media_tree.git
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03004803S: Maintained
4804F: drivers/media/usb/stk1160/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004805
Yoshinori Sato4e456b82015-03-11 01:41:38 +09004806H8/300 ARCHITECTURE
4807M: Yoshinori Sato <ysato@users.sourceforge.jp>
Geert Uytterhoevenb992c762015-07-17 16:23:55 -07004808L: uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
Yoshinori Sato4e456b82015-03-11 01:41:38 +09004809W: http://uclinux-h8.sourceforge.jp
4810T: git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
4811S: Maintained
4812F: arch/h8300/
4813F: drivers/clocksource/h8300_*.c
4814F: drivers/clk/h8300/
4815F: drivers/irqchip/irq-renesas-h8*.c
4816
Harry Wei71a6d0a2011-05-11 15:13:33 -07004817HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
4818M: Frank Seidel <frank@f-seidel.de>
4819L: platform-driver-x86@vger.kernel.org
4820W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
4821S: Maintained
4822F: drivers/platform/x86/hdaps.c
4823
Hans Verkuil48fc9e22013-04-11 03:36:49 -03004824HDPVR USB VIDEO ENCODER DRIVER
4825M: Hans Verkuil <hverkuil@xs4all.nl>
4826L: linux-media@vger.kernel.org
4827T: git git://linuxtv.org/media_tree.git
4828W: http://linuxtv.org
4829S: Odd Fixes
Joe Perches14430812013-09-11 14:23:50 -07004830F: drivers/media/usb/hdpvr/
Hans Verkuil48fc9e22013-04-11 03:36:49 -03004831
Harry Wei71a6d0a2011-05-11 15:13:33 -07004832HWPOISON MEMORY FAILURE HANDLING
Andi Kleenf9625c42014-06-04 16:05:32 -07004833M: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
Harry Wei71a6d0a2011-05-11 15:13:33 -07004834L: linux-mm@kvack.org
Harry Wei71a6d0a2011-05-11 15:13:33 -07004835S: Maintained
4836F: mm/memory-failure.c
4837F: mm/hwpoison-inject.c
4838
4839HYPERVISOR VIRTUAL CONSOLE DRIVER
4840L: linuxppc-dev@lists.ozlabs.org
4841S: Odd Fixes
4842F: drivers/tty/hvc/
4843
Antti Palosaarie5ab1472014-09-10 04:20:15 -03004844HACKRF MEDIA DRIVER
4845M: Antti Palosaari <crope@iki.fi>
4846L: linux-media@vger.kernel.org
4847W: http://linuxtv.org/
4848W: http://palosaari.fi/linux/
4849Q: http://patchwork.linuxtv.org/project/linux-media/list/
4850T: git git://linuxtv.org/anttip/media_tree.git
4851S: Maintained
4852F: drivers/media/usb/hackrf/
4853
Michael Buesch844dd052006-06-26 00:24:59 -07004854HARDWARE MONITORING
Jiri Slabyd8130622015-07-17 16:23:20 -07004855M: Jean Delvare <jdelvare@suse.com>
Guenter Roeckca462082012-06-01 23:28:23 -07004856M: Guenter Roeck <linux@roeck-us.net>
Robert Love860e1d62005-08-31 23:57:59 -04004857L: lm-sensors@lm-sensors.org
4858W: http://www.lm-sensors.org/
Jean Delvarea94ef4e2015-04-27 16:37:39 +02004859T: quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07004860T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02004861S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01004862F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07004863F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01004864F: include/linux/hwmon*.h
Robert Love860e1d62005-08-31 23:57:59 -04004865
4866HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07004867M: Matt Mackall <mpm@selenic.com>
4868M: Herbert Xu <herbert@gondor.apana.org.au>
Michael S. Tsirkin3eda71672015-01-16 09:16:00 +02004869L: linux-crypto@vger.kernel.org
Joe Perchesc0d07872009-09-23 15:57:17 -07004870S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07004871F: Documentation/hw_random.txt
4872F: drivers/char/hw_random/
4873F: include/linux/hw_random.h
Robert Love860e1d62005-08-31 23:57:59 -04004874
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03004875HARDWARE SPINLOCK CORE
4876M: Ohad Ben-Cohen <ohad@wizery.com>
4877S: Maintained
4878F: Documentation/hwspinlock.txt
4879F: drivers/hwspinlock/hwspinlock_*
4880F: include/linux/hwspinlock.h
4881
Linus Torvalds1da177e2005-04-16 15:20:36 -07004882HARMONY SOUND DRIVER
Kyle McMartinac6aecb2007-12-03 22:04:34 +00004883L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004884S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004885F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004886
Antti Palosaari91952bc2012-10-01 12:28:46 -03004887HD29L2 MEDIA DRIVER
4888M: Antti Palosaari <crope@iki.fi>
4889L: linux-media@vger.kernel.org
4890W: http://linuxtv.org/
4891W: http://palosaari.fi/linux/
4892Q: http://patchwork.linuxtv.org/project/linux-media/list/
4893T: git git://linuxtv.org/anttip/media_tree.git
4894S: Maintained
4895F: drivers/media/dvb-frontends/hd29l2*
4896
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004897HEWLETT-PACKARD SMART2 RAID DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004898L: iss_storagedev@hp.com
Michael Opdenackeraf9f1b32014-10-13 15:51:28 -07004899S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004900F: Documentation/blockdev/cpqarray.txt
4901F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004902
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05004903HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Don Brace693373d2014-10-15 22:32:41 +00004904M: Don Brace <don.brace@pmcs.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05004905L: iss_storagedev@hp.com
Don Brace693373d2014-10-15 22:32:41 +00004906L: storagedev@pmcs.com
4907L: linux-scsi@vger.kernel.org
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05004908S: Supported
4909F: Documentation/scsi/hpsa.txt
4910F: drivers/scsi/hpsa*.[ch]
4911F: include/linux/cciss*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004912F: include/uapi/linux/cciss*.h
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05004913
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004914HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Don Brace693373d2014-10-15 22:32:41 +00004915M: Don Brace <don.brace@pmcs.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004916L: iss_storagedev@hp.com
Don Brace693373d2014-10-15 22:32:41 +00004917L: storagedev@pmcs.com
4918L: linux-scsi@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004919S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004920F: Documentation/blockdev/cciss.txt
4921F: drivers/block/cciss*
4922F: include/linux/cciss_ioctl.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004923F: include/uapi/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004924
Linus Torvalds1da177e2005-04-16 15:20:36 -07004925HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02004926L: linux-fsdevel@vger.kernel.org
4927S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004928F: Documentation/filesystems/hfs.txt
4929F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004930
Geert Uytterhoevenef575f42014-01-23 15:54:21 -08004931HFSPLUS FILESYSTEM
4932L: linux-fsdevel@vger.kernel.org
4933S: Orphan
4934F: Documentation/filesystems/hfsplus.txt
4935F: fs/hfsplus/
4936
Linus Torvalds1da177e2005-04-16 15:20:36 -07004937HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004938M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004939L: linux-nvidia@lists.surfsouth.com
4940W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
4941S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09004942F: drivers/video/fbdev/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004943
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004944HIBERNATION (aka Software Suspend, aka swsusp)
Rafael J. Wysocki49db1902013-10-09 01:47:53 +02004945M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Rafael J. Wysocki7fb06082014-03-20 03:34:47 +01004946M: Pavel Machek <pavel@ucw.cz>
WANG Congbf1c1382011-10-08 20:57:50 +02004947L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004948S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004949F: arch/x86/power/
4950F: drivers/base/power/
4951F: kernel/power/
4952F: include/linux/suspend.h
4953F: include/linux/freezer.h
4954F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07004955F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004956
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01004957HID CORE LAYER
Jiri Kosinae5f64502015-08-09 09:11:34 +02004958M: Jiri Kosina <jikos@kernel.org>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04004959L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004960T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01004961S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004962F: drivers/hid/
4963F: include/linux/hid*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004964F: include/uapi/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01004965
Srinivas Pandruvada30ee72f2015-05-15 11:35:38 -07004966HID SENSOR HUB DRIVERS
Jiri Kosinae5f64502015-08-09 09:11:34 +02004967M: Jiri Kosina <jikos@kernel.org>
Srinivas Pandruvada30ee72f2015-05-15 11:35:38 -07004968M: Jonathan Cameron <jic23@kernel.org>
4969M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
4970L: linux-input@vger.kernel.org
4971L: linux-iio@vger.kernel.org
4972S: Maintained
4973F: Documentation/hid/hid-sensor*
4974F: drivers/hid/hid-sensor-*
4975F: drivers/iio/*/hid-*
4976F: include/linux/hid-sensor-*
4977
Ingo Molnar38bed542007-02-22 09:09:34 +01004978HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07004979M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar981c3a42014-01-21 10:59:20 +01004980L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004981T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Ingo Molnar38bed542007-02-22 09:09:34 +01004982S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004983F: Documentation/timers/
Thomas Gleixner5cee9642014-06-22 12:06:40 +02004984F: kernel/time/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01004985F: kernel/time/clockevents.c
4986F: kernel/time/tick*.*
4987F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07004988F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07004989F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01004990
Linus Torvalds1da177e2005-04-16 15:20:36 -07004991HIGH-SPEED SCC DRIVER FOR AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -07004992L: linux-hams@vger.kernel.org
Uwe Kleine-König8b64f2a2012-05-29 15:07:11 -07004993S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004994F: drivers/net/hamradio/dmascc.c
4995F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004996
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08004997HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004998M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08004999W: http://www.highpoint-tech.com
5000S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005001F: Documentation/scsi/hptiop.txt
5002F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08005003
Linus Torvalds1da177e2005-04-16 15:20:36 -07005004HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07005005M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005006L: linux-hippi@sunsite.dk
5007S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005008F: include/linux/hippidevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005009F: include/uapi/linux/if_hippi.h
Joe Perches679655d2009-04-07 20:44:32 -07005010F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07005011F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005012
Jouni Malinenff1d2762005-05-12 22:54:16 -04005013HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005014M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07005015L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07005016L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04005017W: http://hostap.epitest.fi/
5018S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005019F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04005020
Carlos Corbachodd8cd772008-02-05 02:17:15 +00005021HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05005022L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01005023S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005024F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00005025
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005026HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07005027M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005028S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07005029F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005030
Joe Perches7d2c86b2009-04-07 20:59:01 -07005031HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07005032M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08005033S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005034F: Documentation/timers/hpet.txt
5035F: drivers/char/hpet.c
5036F: include/linux/hpet.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005037F: include/uapi/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08005038
Jiri Kosinae07b5d72010-03-18 10:59:57 +01005039HPET: x86
Joe Perches9e06f632014-04-03 14:48:53 -07005040S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005041F: arch/x86/kernel/hpet.c
5042F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08005043
Linus Torvalds1da177e2005-04-16 15:20:36 -07005044HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005045M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005046W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
5047S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005048F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005049
Sebastian Reichel3441cde2013-11-27 10:17:22 +01005050HSI SUBSYSTEM
Sebastian Reichel56459ea2014-03-28 19:57:59 +01005051M: Sebastian Reichel <sre@kernel.org>
5052T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
Sebastian Reichel3441cde2013-11-27 10:17:22 +01005053S: Maintained
5054F: Documentation/ABI/testing/sysfs-bus-hsi
Sebastian Reichel56459ea2014-03-28 19:57:59 +01005055F: Documentation/hsi.txt
Sebastian Reichel3441cde2013-11-27 10:17:22 +01005056F: drivers/hsi/
5057F: include/linux/hsi/
5058F: include/uapi/linux/hsi/
5059
Joe Perches7d2c86b2009-04-07 20:59:01 -07005060HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005061M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00005062W: http://www.pharscape.org
5063S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005064F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00005065
Arvid Brodin19990e22013-11-29 23:36:00 +01005066HSR NETWORK PROTOCOL
5067M: Arvid Brodin <arvid.brodin@alten.se>
5068L: netdev@vger.kernel.org
5069S: Maintained
5070F: net/hsr/
5071
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04005072HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005073M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04005074L: linux-input@vger.kernel.org
5075S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005076F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04005077
Linus Torvalds1da177e2005-04-16 15:20:36 -07005078HUGETLB FILESYSTEM
Nadia Yvette Chambers6d49e352012-12-06 10:39:54 +01005079M: Nadia Yvette Chambers <nyc@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005080S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005081F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005082
K. Y. Srinivasan05183182011-12-01 14:31:30 -08005083Hyper-V CORE AND DRIVERS
Joe Perches9c3646d2015-06-25 15:02:00 -07005084M: "K. Y. Srinivasan" <kys@microsoft.com>
K. Y. Srinivasan05183182011-12-01 14:31:30 -08005085M: Haiyang Zhang <haiyangz@microsoft.com>
5086L: devel@linuxdriverproject.org
5087S: Maintained
Haiyang Zhanga4162742013-05-09 14:34:55 -07005088F: arch/x86/include/asm/mshyperv.h
5089F: arch/x86/include/uapi/asm/hyperv.h
5090F: arch/x86/kernel/cpu/mshyperv.c
K. Y. Srinivasan05183182011-12-01 14:31:30 -08005091F: drivers/hid/hid-hyperv.c
Haiyang Zhanga4162742013-05-09 14:34:55 -07005092F: drivers/hv/
Haiyang Zhangf92ca802013-11-21 14:32:10 -08005093F: drivers/input/serio/hyperv-keyboard.c
K. Y. Srinivasan05183182011-12-01 14:31:30 -08005094F: drivers/net/hyperv/
Haiyang Zhanga4162742013-05-09 14:34:55 -07005095F: drivers/scsi/storvsc_drv.c
Jingoo Han8a61f012014-07-01 15:36:01 +09005096F: drivers/video/fbdev/hyperv_fb.c
Haiyang Zhanga4162742013-05-09 14:34:55 -07005097F: include/linux/hyperv.h
5098F: tools/hv/
Dexuan Cui54bf7252015-08-05 00:52:45 -07005099F: Documentation/ABI/stable/sysfs-bus-vmbus
K. Y. Srinivasan05183182011-12-01 14:31:30 -08005100
Jean Delvared85c8a6a2012-11-13 22:27:19 +01005101I2C OVER PARALLEL PORT
Jiri Slabyd8130622015-07-17 16:23:20 -07005102M: Jean Delvare <jdelvare@suse.com>
Jean Delvared85c8a6a2012-11-13 22:27:19 +01005103L: linux-i2c@vger.kernel.org
5104S: Maintained
5105F: Documentation/i2c/busses/i2c-parport
5106F: Documentation/i2c/busses/i2c-parport-light
5107F: drivers/i2c/busses/i2c-parport.c
5108F: drivers/i2c/busses/i2c-parport-light.c
5109
5110I2C/SMBUS CONTROLLER DRIVERS FOR PC
Jiri Slabyd8130622015-07-17 16:23:20 -07005111M: Jean Delvare <jdelvare@suse.com>
Jean Delvared85c8a6a2012-11-13 22:27:19 +01005112L: linux-i2c@vger.kernel.org
5113S: Maintained
5114F: Documentation/i2c/busses/i2c-ali1535
5115F: Documentation/i2c/busses/i2c-ali1563
5116F: Documentation/i2c/busses/i2c-ali15x3
5117F: Documentation/i2c/busses/i2c-amd756
5118F: Documentation/i2c/busses/i2c-amd8111
5119F: Documentation/i2c/busses/i2c-i801
5120F: Documentation/i2c/busses/i2c-nforce2
5121F: Documentation/i2c/busses/i2c-piix4
5122F: Documentation/i2c/busses/i2c-sis5595
5123F: Documentation/i2c/busses/i2c-sis630
5124F: Documentation/i2c/busses/i2c-sis96x
5125F: Documentation/i2c/busses/i2c-via
5126F: Documentation/i2c/busses/i2c-viapro
5127F: drivers/i2c/busses/i2c-ali1535.c
5128F: drivers/i2c/busses/i2c-ali1563.c
5129F: drivers/i2c/busses/i2c-ali15x3.c
5130F: drivers/i2c/busses/i2c-amd756.c
5131F: drivers/i2c/busses/i2c-amd756-s4882.c
5132F: drivers/i2c/busses/i2c-amd8111.c
5133F: drivers/i2c/busses/i2c-i801.c
5134F: drivers/i2c/busses/i2c-isch.c
5135F: drivers/i2c/busses/i2c-nforce2.c
5136F: drivers/i2c/busses/i2c-nforce2-s4985.c
5137F: drivers/i2c/busses/i2c-piix4.c
5138F: drivers/i2c/busses/i2c-sis5595.c
5139F: drivers/i2c/busses/i2c-sis630.c
5140F: drivers/i2c/busses/i2c-sis96x.c
5141F: drivers/i2c/busses/i2c-via.c
5142F: drivers/i2c/busses/i2c-viapro.c
5143
Neil Hormancb7f07a2013-02-10 11:59:03 -05005144I2C/SMBUS ISMT DRIVER
5145M: Seth Heasley <seth.heasley@intel.com>
5146M: Neil Horman <nhorman@tuxdriver.com>
5147L: linux-i2c@vger.kernel.org
5148F: drivers/i2c/busses/i2c-ismt.c
5149F: Documentation/i2c/busses/i2c-ismt
5150
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005151I2C/SMBUS STUB DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07005152M: Jean Delvare <jdelvare@suse.com>
Jean Delvare846557d2008-10-30 15:55:47 +01005153L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005154S: Maintained
Cesar Eduardo Barros8547a5b2012-12-16 21:11:54 +01005155F: drivers/i2c/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005156
Jean Delvare5b543962005-08-15 19:51:02 +02005157I2C SUBSYSTEM
Wolfram Sang14d77c42013-02-08 20:54:40 +01005158M: Wolfram Sang <wsa@the-dreams.de>
Jean Delvare846557d2008-10-30 15:55:47 +01005159L: linux-i2c@vger.kernel.org
Wolfram Sang9d4ea272014-04-02 20:25:59 +02005160W: https://i2c.wiki.kernel.org/
5161Q: https://patchwork.ozlabs.org/project/linux-i2c/list/
Wolfram Sang14d77c42013-02-08 20:54:40 +01005162T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005163S: Maintained
Wolfram Sang40ed1b42014-12-08 10:53:13 +01005164F: Documentation/devicetree/bindings/i2c/
Joe Perches679655d2009-04-07 20:44:32 -07005165F: Documentation/i2c/
5166F: drivers/i2c/
Wolfram Sang630bc462015-10-29 08:25:48 +01005167F: drivers/i2c/*/
Joe Perches679655d2009-04-07 20:44:32 -07005168F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01005169F: include/linux/i2c-*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005170F: include/uapi/linux/i2c.h
5171F: include/uapi/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005172
Wolfram Sang4560d672014-08-19 10:08:35 -05005173I2C ACPI SUPPORT
5174M: Mika Westerberg <mika.westerberg@linux.intel.com>
5175L: linux-i2c@vger.kernel.org
5176L: linux-acpi@vger.kernel.org
5177S: Maintained
Wolfram Sang4560d672014-08-19 10:08:35 -05005178
Jean Delvared85c8a6a2012-11-13 22:27:19 +01005179I2C-TAOS-EVM DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07005180M: Jean Delvare <jdelvare@suse.com>
Jean Delvared85c8a6a2012-11-13 22:27:19 +01005181L: linux-i2c@vger.kernel.org
5182S: Maintained
5183F: Documentation/i2c/busses/i2c-taos-evm
5184F: drivers/i2c/busses/i2c-taos-evm.c
5185
Till Harbaume8c76ee2007-05-01 23:26:35 +02005186I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005187M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01005188L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07005189W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02005190S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005191F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02005192
Linus Torvalds1da177e2005-04-16 15:20:36 -07005193i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07005194M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005195S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005196F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005197
5198i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07005199M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07005200T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005201S: Maintained
5202
Linus Torvalds1da177e2005-04-16 15:20:36 -07005203IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07005204M: Tony Luck <tony.luck@intel.com>
5205M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005206L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07005207T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005208S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005209F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005210
Leonidas Da Silva Barbosa4cd38752015-08-08 18:29:27 -03005211IBM Power VMX Cryptographic instructions
5212M: Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
Paulo Flabiano Smorigo5cd01fe2015-08-10 16:14:17 -03005213M: Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
Leonidas Da Silva Barbosa4cd38752015-08-08 18:29:27 -03005214L: linux-crypto@vger.kernel.org
5215S: Supported
5216F: drivers/crypto/vmx/Makefile
5217F: drivers/crypto/vmx/Kconfig
5218F: drivers/crypto/vmx/vmx.c
5219F: drivers/crypto/vmx/aes*
5220F: drivers/crypto/vmx/ghash*
5221F: drivers/crypto/vmx/ppc-xlate.pl
5222
Kent Yoder956c2032012-09-07 04:17:01 +08005223IBM Power in-Nest Crypto Acceleration
Leonidas Da Silva Barbosa4cd38752015-08-08 18:29:27 -03005224M: Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
Paulo Flabiano Smorigo5cd01fe2015-08-10 16:14:17 -03005225M: Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
Kent Yoder956c2032012-09-07 04:17:01 +08005226L: linux-crypto@vger.kernel.org
5227S: Supported
Dan Streetman28bceea2015-06-18 12:28:32 -04005228F: drivers/crypto/nx/Makefile
5229F: drivers/crypto/nx/Kconfig
5230F: drivers/crypto/nx/nx-aes*
5231F: drivers/crypto/nx/nx-sha*
5232F: drivers/crypto/nx/nx.*
5233F: drivers/crypto/nx/nx_csbcpb.h
5234F: drivers/crypto/nx/nx_debugfs.h
Kent Yoder956c2032012-09-07 04:17:01 +08005235
Seth Jennings0e16aaf2012-07-19 09:42:40 -05005236IBM Power 842 compression accelerator
Dan Streetman41656aa2015-07-29 19:50:46 -04005237M: Dan Streetman <ddstreet@ieee.org>
Seth Jennings0e16aaf2012-07-19 09:42:40 -05005238S: Supported
Dan Streetman28bceea2015-06-18 12:28:32 -04005239F: drivers/crypto/nx/Makefile
5240F: drivers/crypto/nx/Kconfig
Dan Streetman7011a122015-05-07 13:49:17 -04005241F: drivers/crypto/nx/nx-842*
Dan Streetman2da572c2015-05-07 13:49:14 -04005242F: include/linux/sw842.h
Dan Streetman2062c5b2015-05-07 13:49:15 -04005243F: crypto/842.c
Dan Streetman2da572c2015-05-07 13:49:14 -04005244F: lib/842/
Seth Jennings0e16aaf2012-07-19 09:42:40 -05005245
Linus Torvalds1da177e2005-04-16 15:20:36 -07005246IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07005247M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005248S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005249F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005250
Santiago Leon9d348af2010-09-03 18:29:53 +00005251IBM Power Virtual Ethernet Device Driver
Thomas Falconeddd63a2015-01-09 14:29:40 -06005252M: Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
Santiago Leon9d348af2010-09-03 18:29:53 +00005253L: netdev@vger.kernel.org
5254S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07005255F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00005256
Nathan Fontenote6babec2014-04-09 13:32:06 -05005257IBM Power Virtual SCSI Device Drivers
Tyrel Datwylerbcbde522015-01-12 16:31:34 -08005258M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
Robert Jennings4b7652c2012-07-31 12:34:36 -05005259L: linux-scsi@vger.kernel.org
5260S: Supported
Nathan Fontenote6babec2014-04-09 13:32:06 -05005261F: drivers/scsi/ibmvscsi/ibmvscsi*
5262F: drivers/scsi/ibmvscsi/viosrp.h
5263
5264IBM Power Virtual FC Device Drivers
Tyrel Datwyler44b4dad2015-01-12 16:31:35 -08005265M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
Nathan Fontenote6babec2014-04-09 13:32:06 -05005266L: linux-scsi@vger.kernel.org
5267S: Supported
5268F: drivers/scsi/ibmvscsi/ibmvfc*
Robert Jennings4b7652c2012-07-31 12:34:36 -05005269
Linus Torvalds1da177e2005-04-16 15:20:36 -07005270IBM ServeRAID RAID DRIVER
Michael Opdenackerf9213e72014-08-08 14:23:50 -07005271S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005272F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005273
Peter Tyser6ed9f9c2012-04-18 09:48:24 -05005274ICH LPC AND GPIO DRIVER
5275M: Peter Tyser <ptyser@xes-inc.com>
5276S: Maintained
5277F: drivers/mfd/lpc_ich.c
5278F: drivers/gpio/gpio-ich.c
5279
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01005280IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005281M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005282L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005283Q: http://patchwork.ozlabs.org/project/linux-ide/list/
Joe Perches08deed12012-03-23 15:01:57 -07005284T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005285S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005286F: Documentation/ide/
5287F: drivers/ide/
5288F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005289
Ike Panhc6cb8c132011-08-25 22:28:45 +08005290IDEAPAD LAPTOP EXTRAS DRIVER
5291M: Ike Panhc <ike.pan@canonical.com>
5292L: platform-driver-x86@vger.kernel.org
5293W: http://launchpad.net/ideapad-laptop
5294S: Maintained
5295F: drivers/platform/x86/ideapad-laptop.c
5296
Andrey Moiseev1ea4c162013-08-25 22:51:15 -07005297IDEAPAD LAPTOP SLIDEBAR DRIVER
5298M: Andrey Moiseev <o2g.org.ru@gmail.com>
5299L: linux-input@vger.kernel.org
5300W: https://github.com/o2genum/ideapad-slidebar
5301S: Maintained
5302F: drivers/input/misc/ideapad_slidebar.c
5303
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02005304IDE/ATAPI DRIVERS
Borislav Petkov487ba8e2012-10-29 18:40:10 +01005305M: Borislav Petkov <bp@alien8.de>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01005306L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01005307S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005308F: Documentation/cdrom/ide-cd
5309F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005310
Andy Henroid27471fd2008-10-09 11:45:22 -07005311IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07005312M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02005313L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07005314S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005315F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07005316
Sergey Lapin02cf2282009-06-08 12:18:50 +00005317IEEE 802.15.4 SUBSYSTEM
Alexander Aringb6e195f2014-07-03 23:13:19 +02005318M: Alexander Aring <alex.aring@gmail.com>
Varka Bhadramebef9c12014-08-08 17:32:45 +05305319L: linux-wpan@vger.kernel.org
5320W: https://github.com/linux-wpan
5321T: git git://github.com/linux-wpan/linux-wpan-next.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00005322S: Maintained
5323F: net/ieee802154/
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00005324F: net/mac802154/
Cesar Eduardo Barros251741b2013-01-04 15:35:30 -08005325F: drivers/net/ieee802154/
Alexander Aring580947d2014-10-25 09:41:05 +02005326F: include/linux/nl802154.h
5327F: include/linux/ieee802154.h
5328F: include/net/nl802154.h
5329F: include/net/mac802154.h
5330F: include/net/af_ieee802154.h
5331F: include/net/cfg802154.h
5332F: include/net/ieee802154_netdev.h
Varka Bhadramebef9c12014-08-08 17:32:45 +05305333F: Documentation/networking/ieee802154.txt
Sergey Lapin02cf2282009-06-08 12:18:50 +00005334
Sean Youngb1c97192014-10-23 17:58:22 -03005335IGORPLUG-USB IR RECEIVER
5336M: Sean Young <sean@mess.org>
5337L: linux-media@vger.kernel.org
5338S: Maintained
5339F: drivers/media/rc/igorplugusb.c
5340
Sean Young40ad4a32012-11-19 10:32:53 -03005341IGUANAWORKS USB IR TRANSCEIVER
5342M: Sean Young <sean@mess.org>
5343L: linux-media@vger.kernel.org
5344S: Maintained
5345F: drivers/media/rc/iguanair.c
5346
Ameya Palande9545f862012-01-10 09:00:58 -08005347IIO SUBSYSTEM AND DRIVERS
Sachin Kamat030a13d2013-09-11 11:00:00 +01005348M: Jonathan Cameron <jic23@kernel.org>
Lars-Peter Clausenf0d61162014-08-18 09:29:00 +01005349R: Hartmut Knaack <knaack.h@gmx.de>
5350R: Lars-Peter Clausen <lars@metafoo.de>
5351R: Peter Meerwald <pmeerw@pmeerw.net>
Ameya Palande9545f862012-01-10 09:00:58 -08005352L: linux-iio@vger.kernel.org
5353S: Maintained
Lars-Peter Clausen03e7c252012-04-26 13:46:42 +02005354F: drivers/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08005355F: drivers/staging/iio/
Daniel Baluta8fe671f2014-11-13 15:19:47 -08005356F: include/linux/iio/
Roberta Dobrescu817020c2015-02-26 10:49:25 +02005357F: tools/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08005358
Stanislaw Gruszka65519262011-01-08 15:19:40 +01005359IKANOS/ADI EAGLE ADSL USB DRIVER
5360M: Matthieu Castet <castet.matthieu@free.fr>
5361M: Stanislaw Gruszka <stf_xl@wp.pl>
5362S: Maintained
5363F: drivers/usb/atm/ueagle-atm.c
5364
Guenter Roecke89ab512013-03-08 08:13:09 -08005365INA209 HARDWARE MONITOR DRIVER
5366M: Guenter Roeck <linux@roeck-us.net>
5367L: lm-sensors@lm-sensors.org
5368S: Maintained
5369F: Documentation/hwmon/ina209
5370F: Documentation/devicetree/bindings/i2c/ina209.txt
5371F: drivers/hwmon/ina209.c
5372
5373INA2XX HARDWARE MONITOR DRIVER
5374M: Guenter Roeck <linux@roeck-us.net>
5375L: lm-sensors@lm-sensors.org
5376S: Maintained
5377F: Documentation/hwmon/ina2xx
5378F: drivers/hwmon/ina2xx.c
5379F: include/linux/platform_data/ina2xx.h
5380
Samuel Iglesias Gonsalvez14dc1242012-11-16 16:19:59 +01005381INDUSTRY PACK SUBSYSTEM (IPACK)
5382M: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
5383M: Jens Taprogge <jens.taprogge@taprogge.org>
5384M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5385L: industrypack-devel@lists.sourceforge.net
5386W: http://industrypack.sourceforge.net
5387S: Maintained
5388F: drivers/ipack/
5389
Zubair Lutfullah Kakakhel8adc53f2015-03-18 16:16:37 +00005390INGENIC JZ4780 DMA Driver
5391M: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
5392S: Maintained
5393F: drivers/dma/dma-jz4780.c
5394
Mimi Zoharaa7168f2009-02-04 09:07:03 -05005395INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Mimi Zohar74dd7442014-02-27 08:44:45 -05005396M: Mimi Zohar <zohar@linux.vnet.ibm.com>
Dmitry Kasatkinbfd33c42015-01-15 14:18:18 +02005397M: Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
Mimi Zohar74dd7442014-02-27 08:44:45 -05005398L: linux-ima-devel@lists.sourceforge.net
5399L: linux-ima-user@lists.sourceforge.net
5400L: linux-security-module@vger.kernel.org
Mimi Zoharaa7168f2009-02-04 09:07:03 -05005401S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005402F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05005403
James Hogan9a4ea5a2014-11-17 09:17:49 -03005404IMGTEC IR DECODER DRIVER
5405M: James Hogan <james.hogan@imgtec.com>
5406S: Maintained
5407F: drivers/media/rc/img-ir/
5408
Linus Torvalds1da177e2005-04-16 15:20:36 -07005409IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005410L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09005411S: Orphan
Jingoo Han8a61f012014-07-01 15:36:01 +09005412F: drivers/video/fbdev/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005413
5414INFINIBAND SUBSYSTEM
Doug Ledfordb6b2bbe2015-05-05 12:57:09 -04005415M: Doug Ledford <dledford@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005416M: Sean Hefty <sean.hefty@intel.com>
5417M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07005418L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07005419W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08005420Q: http://patchwork.kernel.org/project/linux-rdma/list/
Doug Ledford2936ae02015-05-11 21:03:36 -04005421T: git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005422S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005423F: Documentation/infiniband/
5424F: drivers/infiniband/
Doug Ledford2dfcad32015-08-27 14:18:57 -04005425F: drivers/staging/rdma/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005426F: include/uapi/linux/if_infiniband.h
Yann Droneaud954138d2015-05-04 14:31:03 +02005427F: include/uapi/rdma/
5428F: include/rdma/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005429
Robert Lovec9f04f52005-07-15 12:21:07 -04005430INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07005431M: John McCutchan <john@johnmccutchan.com>
5432M: Robert Love <rlove@rlove.org>
5433M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04005434S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005435F: Documentation/filesystems/inotify.txt
5436F: fs/notify/inotify/
5437F: include/linux/inotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005438F: include/uapi/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04005439
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005440INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005441M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005442L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005443Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07005444T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005445S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005446F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07005447F: include/linux/input.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005448F: include/uapi/linux/input.h
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07005449F: include/linux/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005450
Henrik Rydberg3267a872010-06-24 19:10:40 -07005451INPUT MULTITOUCH (MT) PROTOCOL
Henrik Rydberg75dd1122015-01-08 14:32:21 -08005452M: Henrik Rydberg <rydberg@bitmath.org>
Henrik Rydberg3267a872010-06-24 19:10:40 -07005453L: linux-input@vger.kernel.org
Henrik Rydberg75dd1122015-01-08 14:32:21 -08005454S: Odd fixes
Henrik Rydberg3267a872010-06-24 19:10:40 -07005455F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01005456F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07005457K: \b(ABS|SYN)_MT_
5458
Jie Yang97fa99a2015-02-02 16:55:27 +08005459INTEL ASoC BDW/HSW DRIVERS
5460M: Jie Yang <yang.jie@linux.intel.com>
Jim Davise5747e42015-06-25 15:01:58 -07005461L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Jie Yang97fa99a2015-02-02 16:55:27 +08005462S: Supported
Joe Perchese8e12252015-06-30 14:59:39 -07005463F: sound/soc/intel/common/sst-dsp*
5464F: sound/soc/intel/common/sst-firmware.c
5465F: sound/soc/intel/boards/broadwell.c
5466F: sound/soc/intel/haswell/
Jie Yang97fa99a2015-02-02 16:55:27 +08005467
Dave Jiang4ac13e12011-07-29 17:16:55 -07005468INTEL C600 SERIES SAS CONTROLLER DRIVER
5469M: Intel SCU Linux support <intel-linux-scu@intel.com>
Lukasz Doraufdc58132014-04-07 15:39:58 -07005470M: Artur Paszkiewicz <artur.paszkiewicz@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07005471L: linux-scsi@vger.kernel.org
Dave Jiang71068912012-09-25 15:24:56 -07005472T: git git://git.code.sf.net/p/intel-sas/isci
5473S: Supported
Dave Jiang4ac13e12011-07-29 17:16:55 -07005474F: drivers/scsi/isci/
Dave Jiang4ac13e12011-07-29 17:16:55 -07005475
Len Brown26717172010-03-08 14:07:30 -05005476INTEL IDLE DRIVER
5477M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02005478L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005479T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05005480S: Supported
5481F: drivers/idle/intel_idle.c
5482
Kristen Carlson Accardi7c1ac182014-12-15 15:58:24 -08005483INTEL PSTATE DRIVER
5484M: Kristen Carlson Accardi <kristen@linux.intel.com>
5485L: linux-pm@vger.kernel.org
5486S: Supported
5487F: drivers/cpufreq/intel_pstate.c
5488
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005489INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08005490M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005491L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005492S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005493F: Documentation/fb/intelfb.txt
Jingoo Han8a61f012014-07-01 15:36:01 +09005494F: drivers/video/fbdev/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005495
Linus Torvalds1da177e2005-04-16 15:20:36 -07005496INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005497M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005498L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005499S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09005500F: drivers/video/fbdev/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005501
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05305502INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005503M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05005504L: platform-driver-x86@vger.kernel.org
Rafael J. Wysocki5ca92bd2013-10-10 23:03:44 +02005505W: https://01.org/linux-acpi
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05305506S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005507F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05305508
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07005509INTEL I/OAT DMA DRIVER
Dave Jiang18ebd562013-10-22 15:29:20 -07005510M: Dave Jiang <dave.jiang@intel.com>
Dan Williams08223d82014-08-19 06:07:56 -07005511R: Dan Williams <dan.j.williams@intel.com>
Dave Jiang18ebd562013-10-22 15:29:20 -07005512L: dmaengine@vger.kernel.org
5513Q: https://patchwork.kernel.org/project/linux-dmaengine/list/
5514S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005515F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07005516
David Woodhouse6c8909b2008-10-18 16:12:17 +01005517INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07005518M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01005519L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07005520T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01005521S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07005522F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07005523F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01005524
Dan Williamsb3e5f262007-08-07 10:26:35 -07005525INTEL IOP-ADMA DMA DRIVER
Dan Williams08223d82014-08-19 06:07:56 -07005526R: Dan Williams <dan.j.williams@intel.com>
Dan Williams1dd83722012-08-15 19:20:02 -07005527S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07005528F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07005529
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01005530INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Krzysztof Hałasa5529c2c2014-09-30 10:32:58 +02005531M: Krzysztof Halasa <khalasa@piap.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01005532S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005533F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
5534F: arch/arm/mach-ixp4xx/include/mach/npe.h
5535F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
5536F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07005537F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07005538F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01005539
Michael Buesch844dd052006-06-26 00:24:59 -07005540INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005541M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07005542S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005543F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07005544
Jeff Kirsher2f302322015-03-25 17:01:03 -07005545INTEL ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005546M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Jeff Kirsher2f302322015-03-25 17:01:03 -07005547R: Jesse Brandeburg <jesse.brandeburg@intel.com>
5548R: Shannon Nelson <shannon.nelson@intel.com>
5549R: Carolyn Wyborny <carolyn.wyborny@intel.com>
5550R: Don Skidmore <donald.c.skidmore@intel.com>
5551R: Matthew Vick <matthew.vick@intel.com>
5552R: John Ronciak <john.ronciak@intel.com>
5553R: Mitch Williams <mitch.a.williams@intel.com>
5554L: intel-wired-lan@lists.osuosl.org
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00005555W: http://www.intel.com/support/feedback.htm
Auke Kokd94e6fe2008-03-03 14:37:47 -08005556W: http://e1000.sourceforge.net/
Jeff Kirsher2f302322015-03-25 17:01:03 -07005557Q: http://patchwork.ozlabs.org/project/intel-wired-lan/list/
5558T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
5559T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005560S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00005561F: Documentation/networking/e100.txt
5562F: Documentation/networking/e1000.txt
5563F: Documentation/networking/e1000e.txt
5564F: Documentation/networking/igb.txt
5565F: Documentation/networking/igbvf.txt
5566F: Documentation/networking/ixgb.txt
5567F: Documentation/networking/ixgbe.txt
5568F: Documentation/networking/ixgbevf.txt
Jesse Brandeburg1bff6522013-09-11 08:40:23 +00005569F: Documentation/networking/i40e.txt
Greg Rose105bf2f2013-12-21 06:13:16 +00005570F: Documentation/networking/i40evf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07005571F: drivers/net/ethernet/intel/
Joe Perchesbc90d292014-02-25 13:35:53 -08005572F: drivers/net/ethernet/intel/*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005573
Linus Walleij0963d59b2013-10-19 15:39:17 +02005574INTEL-MID GPIO DRIVER
5575M: David Cohen <david.a.cohen@linux.intel.com>
5576L: linux-gpio@vger.kernel.org
5577S: Maintained
5578F: drivers/gpio/gpio-intel-mid.c
5579
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04005580INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
5581M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07005582L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04005583S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005584F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07005585F: Documentation/networking/README.ipw2200
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04005586F: drivers/net/wireless/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06005587
Alexander Shishkin5760b0a2015-09-22 15:47:20 +03005588INTEL(R) TRACE HUB
5589M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
5590S: Supported
5591F: Documentation/trace/intel_th.txt
5592F: drivers/hwtracing/intel_th/
5593
Shane Wang4bd96a72010-03-10 14:36:10 +08005594INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
Gang Weie9b7d7c2012-09-17 14:08:59 -07005595M: Richard L Maliszewski <richard.l.maliszewski@intel.com>
5596M: Gang Wei <gang.wei@intel.com>
Shane Wang4bd96a72010-03-10 14:36:10 +08005597M: Shane Wang <shane.wang@intel.com>
5598L: tboot-devel@lists.sourceforge.net
5599W: http://tboot.sourceforge.net
Gang Weie9b7d7c2012-09-17 14:08:59 -07005600T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
Shane Wang4bd96a72010-03-10 14:36:10 +08005601S: Supported
5602F: Documentation/intel_txt.txt
5603F: include/linux/tboot.h
5604F: arch/x86/kernel/tboot.c
5605
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08005606INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07005607M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08005608M: linux-wimax@intel.com
Joe Perches49e7d9d2015-04-15 16:17:31 -07005609L: wimax@linuxwimax.org (subscribers-only)
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08005610S: Supported
5611W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07005612F: Documentation/wimax/README.i2400m
5613F: drivers/net/wimax/i2400m/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005614F: include/uapi/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08005615
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01005616INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
5617M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08005618L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01005619S: Supported
Wey-Yi Guyefa31442011-02-22 16:43:05 -08005620F: drivers/net/wireless/iwlegacy/
5621
Zhu Yib481de92007-09-25 17:54:57 -07005622INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07005623M: Johannes Berg <johannes.berg@intel.com>
Johannes Berg6161b022013-07-23 14:03:39 +02005624M: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
Johannes Berg7b9aebf2015-09-08 17:03:20 +02005625M: Intel Linux Wireless <linuxwifi@intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07005626L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07005627W: http://intellinuxwireless.org
Wey-Yi Guyb62ff712011-09-22 15:14:49 -07005628T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07005629S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005630F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07005631
Tomas Winklerde8fe022012-05-09 16:39:02 +03005632INTEL MANAGEMENT ENGINE (mei)
5633M: Tomas Winkler <tomas.winkler@intel.com>
5634L: linux-kernel@vger.kernel.org
5635S: Supported
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005636F: include/uapi/linux/mei.h
Tomas Winkler5069288b2015-06-13 22:11:33 +03005637F: include/linux/mei_cl_bus.h
Tomas Winklerde8fe022012-05-09 16:39:02 +03005638F: drivers/misc/mei/*
Cesar Eduardo Barrose07950a12013-01-04 15:35:36 -08005639F: Documentation/misc-devices/mei/*
Tomas Winklerde8fe022012-05-09 16:39:02 +03005640
Sudeep Dutt50ceb982015-10-13 11:21:19 -07005641INTEL MIC DRIVERS (mic)
5642M: Sudeep Dutt <sudeep.dutt@intel.com>
5643M: Ashutosh Dixit <ashutosh.dixit@intel.com>
5644S: Supported
5645W: https://github.com/sudeepdutt/mic
5646W: http://software.intel.com/en-us/mic-developer
5647F: include/linux/mic_bus.h
5648F: include/linux/scif.h
5649F: include/uapi/linux/mic_common.h
5650F: include/uapi/linux/mic_ioctl.h
5651F include/uapi/linux/scif_ioctl.h
5652F: drivers/misc/mic/
5653F: drivers/dma/mic_x100_dma.c
5654F: drivers/dma/mic_x100_dma.h
5655F Documentation/mic/
5656
qipeng.zha0a8b8352015-06-27 00:32:15 +08005657INTEL PMC IPC DRIVER
5658M: Zha Qipeng<qipeng.zha@intel.com>
5659L: platform-driver-x86@vger.kernel.org
5660S: Maintained
5661F: drivers/platform/x86/intel_pmc_ipc.c
5662F: arch/x86/include/asm/intel_pmc_ipc.h
5663
Ralf Baechlecb109a02007-08-30 23:56:30 -07005664IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005665M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005666L: linux-mips@linux-mips.org
5667S: Maintained
Jeff Kirsher8862bf12011-05-20 07:50:27 -07005668F: drivers/net/ethernet/sgi/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005669
Ralf Baechlecb109a02007-08-30 23:56:30 -07005670IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005671M: Pat Gefre <pfg@sgi.com>
Ralf Baechled39e0722010-10-19 18:32:41 +01005672L: linux-serial@vger.kernel.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07005673S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08005674F: drivers/tty/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07005675
Stephen Warren0b6e8562013-09-13 13:10:27 -06005676IOMMU DRIVERS
5677M: Joerg Roedel <joro@8bytes.org>
5678L: iommu@lists.linux-foundation.org
5679T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
5680S: Maintained
5681F: drivers/iommu/
5682
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005683IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07005684M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005685S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005686F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005687
Francois Romieu1202d6f2007-09-17 17:13:55 -07005688IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005689M: Francois Romieu <romieu@fr.zoreil.com>
5690M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07005691L: netdev@vger.kernel.org
5692S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07005693F: drivers/net/ethernet/icplus/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07005694
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005695IPATH DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04005696M: Mike Marciniszyn <infinipath@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07005697L: linux-rdma@vger.kernel.org
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07005698S: Maintained
Dennis Dalessandro6f9b3892015-07-30 09:25:42 -04005699F: drivers/staging/rdma/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08005700
Corey Minyard4409ebe2006-04-20 02:43:12 -07005701IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005702M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08005703L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07005704W: http://openipmi.sourceforge.net/
5705S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005706F: Documentation/IPMI.txt
5707F: drivers/char/ipmi/
5708F: include/linux/ipmi*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005709F: include/uapi/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07005710
Kenneth Westfield2d800892015-03-03 16:21:50 -08005711QCOM AUDIO (ASoC) DRIVERS
5712M: Patrick Lai <plai@codeaurora.org>
5713M: Banajit Goswami <bgoswami@codeaurora.org>
5714L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5715S: Supported
5716F: sound/soc/qcom/
5717
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005718IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005719M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005720L: linux-scsi@vger.kernel.org
5721W: http://www.adaptec.com/
5722S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005723F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005724
5725IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07005726M: Wensong Zhang <wensong@linux-vs.org>
5727M: Simon Horman <horms@verge.net.au>
5728M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005729L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005730L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005731S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005732F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07005733F: include/net/ip_vs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005734F: include/uapi/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07005735F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005736
Randy Dunlape7839f22008-10-12 16:11:45 -07005737IPWIRELESS DRIVER
Jiri Kosinae5f64502015-08-09 09:11:34 +02005738M: Jiri Kosina <jikos@kernel.org>
Jiri Slabyd8130622015-07-17 16:23:20 -07005739M: David Sterba <dsterba@suse.com>
Jiri Kosina92094aa2011-11-13 21:41:00 +01005740S: Odd Fixes
Greg Kroah-Hartman282361a2011-02-22 16:23:22 -08005741F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01005742
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005743IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005744M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005745L: netdev@vger.kernel.org
5746S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005747F: include/net/ipx.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005748F: include/uapi/linux/ipx.h
Joe Perches679655d2009-04-07 20:44:32 -07005749F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005750
Linus Torvalds1da177e2005-04-16 15:20:36 -07005751IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005752M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07005753L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01005754L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005755W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07005756S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02005757T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07005758F: Documentation/networking/irda.txt
5759F: drivers/net/irda/
5760F: include/net/irda/
5761F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005762
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02005763IRQ SUBSYSTEM
5764M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar981c3a42014-01-21 10:59:20 +01005765L: linux-kernel@vger.kernel.org
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02005766S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005767T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02005768F: kernel/irq/
Jason Cooper2ed9fd22014-05-13 18:47:01 +00005769
5770IRQCHIP DRIVERS
5771M: Thomas Gleixner <tglx@linutronix.de>
5772M: Jason Cooper <jason@lakedaemon.net>
Thomas Gleixner54d9ffc2015-07-30 12:38:06 +02005773M: Marc Zyngier <marc.zyngier@arm.com>
Jason Cooper2ed9fd22014-05-13 18:47:01 +00005774L: linux-kernel@vger.kernel.org
5775S: Maintained
5776T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5777T: git git://git.infradead.org/users/jcooper/linux.git irqchip/core
Geert Uytterhoeven5b5a9062014-08-28 09:56:47 +02005778F: Documentation/devicetree/bindings/interrupt-controller/
Thomas Petazzoniedd96902012-10-28 10:05:40 +01005779F: drivers/irqchip/
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02005780
Grant Likely7ab3a832012-02-14 14:06:47 -07005781IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
Thomas Gleixnerb09dec22015-07-30 12:40:55 +02005782M: Jiang Liu <jiang.liu@linux.intel.com>
5783M: Marc Zyngier <marc.zyngier@arm.com>
Grant Likely7ab3a832012-02-14 14:06:47 -07005784S: Maintained
Thomas Gleixnerb09dec22015-07-30 12:40:55 +02005785T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Grant Likely7ab3a832012-02-14 14:06:47 -07005786F: Documentation/IRQ-domain.txt
5787F: include/linux/irqdomain.h
5788F: kernel/irq/irqdomain.c
Thomas Gleixnerb09dec22015-07-30 12:40:55 +02005789F: kernel/irq/msi.c
Grant Likely7ab3a832012-02-14 14:06:47 -07005790
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005791ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07005792M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005793S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005794F: Documentation/isapnp.txt
5795F: drivers/pnp/isapnp/
5796F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005797
Hans Verkuild39b8422012-11-23 07:07:02 -03005798ISA RADIO MODULE
5799M: Hans Verkuil <hverkuil@xs4all.nl>
5800L: linux-media@vger.kernel.org
5801T: git git://linuxtv.org/media_tree.git
5802W: http://linuxtv.org
5803S: Maintained
5804F: drivers/media/radio/radio-isa*
5805
Harry Wei71a6d0a2011-05-11 15:13:33 -07005806iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
5807M: Peter Jones <pjones@redhat.com>
5808M: Konrad Rzeszutek Wilk <konrad@kernel.org>
5809S: Maintained
5810F: drivers/firmware/iscsi_ibft*
5811
Mike Christie14816b1e2007-11-28 16:22:06 -08005812ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07005813M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b1e2007-11-28 16:22:06 -08005814L: open-iscsi@googlegroups.com
5815W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07005816T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08005817S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005818F: drivers/scsi/*iscsi*
5819F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08005820
Or Gerlitz1e65eb42013-05-08 12:21:19 +00005821ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
5822M: Or Gerlitz <ogerlitz@mellanox.com>
Or Gerlitzb261aea2014-10-01 14:02:17 +03005823M: Sagi Grimberg <sagig@mellanox.com>
Or Gerlitz1e65eb42013-05-08 12:21:19 +00005824M: Roi Dayan <roid@mellanox.com>
5825L: linux-rdma@vger.kernel.org
5826S: Supported
5827W: http://www.openfabrics.org
5828W: www.open-iscsi.org
5829Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches14430812013-09-11 14:23:50 -07005830F: drivers/infiniband/ulp/iser/
Or Gerlitz1e65eb42013-05-08 12:21:19 +00005831
Sagi Grimberg2b70e5f2015-01-07 12:54:44 +02005832ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
5833M: Sagi Grimberg <sagig@mellanox.com>
5834T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
5835L: linux-rdma@vger.kernel.org
5836L: target-devel@vger.kernel.org
5837S: Supported
5838W: http://www.linux-iscsi.org
5839F: drivers/infiniband/ulp/isert
5840
Linus Torvalds1da177e2005-04-16 15:20:36 -07005841ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005842M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07005843L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07005844L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005845W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07005846T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005847S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005848F: Documentation/isdn/
5849F: drivers/isdn/
5850F: include/linux/isdn.h
5851F: include/linux/isdn/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005852F: include/uapi/linux/isdn.h
5853F: include/uapi/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005854
5855ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07005856M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07005857L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005858W: http://www.melware.de
5859S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005860F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005861
Jean Delvared6248702010-03-05 22:17:20 +01005862IT87 HARDWARE MONITORING DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07005863M: Jean Delvare <jdelvare@suse.com>
Jean Delvared6248702010-03-05 22:17:20 +01005864L: lm-sensors@lm-sensors.org
5865S: Maintained
5866F: Documentation/hwmon/it87
5867F: drivers/hwmon/it87.c
5868
Malcolm Priestley68620bd2012-11-04 19:16:31 +01005869IT913X MEDIA DRIVER
Antti Palosaarid7104bf2013-03-09 22:58:13 -03005870M: Antti Palosaari <crope@iki.fi>
5871L: linux-media@vger.kernel.org
5872W: http://linuxtv.org/
5873W: http://palosaari.fi/linux/
5874Q: http://patchwork.linuxtv.org/project/linux-media/list/
5875T: git git://linuxtv.org/anttip/media_tree.git
5876S: Maintained
Antti Palosaari249c6972014-09-01 19:44:59 -03005877F: drivers/media/tuners/it913x*
Antti Palosaarid7104bf2013-03-09 22:58:13 -03005878
Hans Verkuil91821ff2007-12-02 09:35:33 -03005879IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03005880M: Andy Walls <awalls@md.metrocast.net>
Joe Perches7b212ed2014-12-10 15:51:24 -08005881L: ivtv-devel@ivtvdriver.org (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005882L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005883T: git git://linuxtv.org/media_tree.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03005884W: http://www.ivtvdriver.org
5885S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005886F: Documentation/video4linux/*.ivtv
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005887F: drivers/media/pci/ivtv/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005888F: include/uapi/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03005889
Malcolm Priestley68620bd2012-11-04 19:16:31 +01005890IX2505V MEDIA DRIVER
5891M: Malcolm Priestley <tvboxspy@gmail.com>
5892L: linux-media@vger.kernel.org
5893W: http://linuxtv.org/
5894Q: http://patchwork.linuxtv.org/project/linux-media/list/
5895S: Maintained
5896F: drivers/media/dvb-frontends/ix2505v*
5897
Guenter Roeck4453d732010-08-09 17:21:08 -07005898JC42.4 TEMPERATURE SENSOR DRIVER
5899M: Guenter Roeck <linux@roeck-us.net>
5900L: lm-sensors@lm-sensors.org
5901S: Maintained
5902F: drivers/hwmon/jc42.c
5903F: Documentation/hwmon/jc42
5904
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005905JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06005906M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005907L: jfs-discussion@lists.sourceforge.net
5908W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07005909T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05005910S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005911F: Documentation/filesystems/jfs.txt
5912F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005913
Guo-Fu Tseng95252232008-09-16 01:00:11 +08005914JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005915M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08005916L: netdev@vger.kernel.org
5917S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07005918F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08005919
Linus Torvalds1da177e2005-04-16 15:20:36 -07005920JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07005921M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04005922L: linux-mtd@lists.infradead.org
5923W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07005924S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005925F: fs/jffs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005926F: include/uapi/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005927
Theodore Ts'od183e112011-05-26 09:53:09 -04005928JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
5929M: "Theodore Ts'o" <tytso@mit.edu>
Jan Karac290ea02015-06-18 16:52:29 +02005930M: Jan Kara <jack@suse.com>
Theodore Ts'od183e112011-05-26 09:53:09 -04005931L: linux-ext4@vger.kernel.org
5932S: Maintained
5933F: fs/jbd2/
5934F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07005935
Mikhail Ulyanov207dab52015-07-22 08:23:05 -03005936JPU V4L2 MEM2MEM DRIVER FOR RENESAS
5937M: Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
5938L: linux-media@vger.kernel.org
5939S: Maintained
5940F: drivers/media/platform/rcar_jpu.c
5941
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03005942JSM Neo PCI based serial card
Thadeu Lima de Souza Cascardo9d141cb2013-05-22 15:15:24 -03005943M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03005944L: linux-serial@vger.kernel.org
5945S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08005946F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03005947
Clemens Ladischaf399172011-01-10 16:32:54 +01005948K10TEMP HARDWARE MONITORING DRIVER
5949M: Clemens Ladisch <clemens@ladisch.de>
5950L: lm-sensors@lm-sensors.org
5951S: Maintained
5952F: Documentation/hwmon/k10temp
5953F: drivers/hwmon/k10temp.c
5954
Rudolf Marek4660cb32006-10-08 22:01:26 +02005955K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005956M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02005957L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005958S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005959F: Documentation/hwmon/k8temp
5960F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005961
5962KCONFIG
Michal Marek5eb1f992013-10-30 12:02:27 +01005963M: "Yann E. MORIN" <yann.morin.1998@free.fr>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02005964L: linux-kbuild@vger.kernel.org
Joe Perchescea83212014-03-03 15:38:38 -08005965T: git git://gitorious.org/linux-kconfig/linux-kconfig
Michal Marek5eb1f992013-10-30 12:02:27 +01005966S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005967F: Documentation/kbuild/kconfig-language.txt
5968F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005969
Vivek Goyalea6c2082006-05-20 14:59:55 -07005970KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07005971M: Vivek Goyal <vgoyal@redhat.com>
5972M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07005973L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07005974W: http://lse.sourceforge.net/kdump/
5975S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005976F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07005977
Hans Verkuilf41bf022012-11-23 07:04:36 -03005978KEENE FM RADIO TRANSMITTER DRIVER
5979M: Hans Verkuil <hverkuil@xs4all.nl>
5980L: linux-media@vger.kernel.org
5981T: git git://linuxtv.org/media_tree.git
5982W: http://linuxtv.org
5983S: Maintained
5984F: drivers/media/radio/radio-keene*
5985
Linus Torvalds1da177e2005-04-16 15:20:36 -07005986KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07005987M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08005988L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005989S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005990F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005991
Michal Marek70fb7ba2010-01-29 14:22:43 +01005992KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Jiri Slabyd8130622015-07-17 16:23:20 -07005993M: Michal Marek <mmarek@suse.com>
Joe Perches08deed12012-03-23 15:01:57 -07005994T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
5995T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02005996L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08005997S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005998F: Documentation/kbuild/
5999F: Makefile
6000F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01006001F: scripts/basic/
6002F: scripts/mk*
6003F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006004
6005KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07006006L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07006007W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07006008S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07006009
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04006010KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006011M: "J. Bruce Fields" <bfields@fieldses.org>
J. Bruce Fields883985f2015-08-24 16:44:40 -04006012M: Jeff Layton <jlayton@poochiereds.net>
Neil Brown16141c02007-12-11 16:16:12 -08006013L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006014W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08006015S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006016F: fs/nfsd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006017F: include/uapi/linux/nfsd/
Joe Perches679655d2009-04-07 20:44:32 -07006018F: fs/lockd/
6019F: fs/nfs_common/
6020F: net/sunrpc/
6021F: include/linux/lockd/
6022F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006023F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006024
Shuah Khan13b122b2014-10-13 15:51:21 -07006025KERNEL SELFTEST FRAMEWORK
6026M: Shuah Khan <shuahkh@osg.samsung.com>
6027L: linux-api@vger.kernel.org
6028T: git git://git.kernel.org/pub/scm/shuah/linux-kselftest
6029S: Maintained
6030F: tools/testing/selftests
6031
Avi Kivity426d62e2006-12-13 00:34:03 -08006032KERNEL VIRTUAL MACHINE (KVM)
Gleb Natapov0a00a772013-11-27 16:35:22 +02006033M: Gleb Natapov <gleb@kernel.org>
Paolo Bonzinic93a64f2013-05-15 19:02:24 +02006034M: Paolo Bonzini <pbonzini@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03006035L: kvm@vger.kernel.org
Ramkumar Ramachandrae3e58472013-10-31 16:16:34 +05306036W: http://www.linux-kvm.org
Ramkumar Ramachandraa94b40a2013-10-31 16:29:23 +05306037T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
Avi Kivity426d62e2006-12-13 00:34:03 -08006038S: Supported
Paolo Bonzinic93a64f2013-05-15 19:02:24 +02006039F: Documentation/*/kvm*.txt
6040F: Documentation/virtual/kvm/
Joe Perches679655d2009-04-07 20:44:32 -07006041F: arch/*/kvm/
Christian Borntraeger1662e862015-03-12 14:59:26 +01006042F: arch/x86/kernel/kvm.c
6043F: arch/x86/kernel/kvmclock.c
Joe Perches679655d2009-04-07 20:44:32 -07006044F: arch/*/include/asm/kvm*
6045F: include/linux/kvm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006046F: include/uapi/linux/kvm*
Joe Perches679655d2009-04-07 20:44:32 -07006047F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08006048
Joerg Roedelad8003d2008-09-10 20:01:07 +02006049KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joerg Roedel7de609c2012-10-29 19:08:21 +01006050M: Joerg Roedel <joro@8bytes.org>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07006051L: kvm@vger.kernel.org
Dirk Müller038161d2015-10-01 13:46:01 +02006052W: http://www.linux-kvm.org/
Joerg Roedel7de609c2012-10-29 19:08:21 +01006053S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006054F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07006055F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07006056
Hollis Blanchard513014b2008-04-16 23:28:08 -05006057KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Jiri Slabyd8130622015-07-17 16:23:20 -07006058M: Alexander Graf <agraf@suse.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03006059L: kvm-ppc@vger.kernel.org
Dirk Müller038161d2015-10-01 13:46:01 +02006060W: http://www.linux-kvm.org/
Michael Ellerman6a7f9722012-10-15 19:01:05 +00006061T: git git://github.com/agraf/linux-2.6.git
Hollis Blanchard513014b2008-04-16 23:28:08 -05006062S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006063F: arch/powerpc/include/asm/kvm*
6064F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05006065
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01006066KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07006067M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02006068M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01006069L: linux-s390@vger.kernel.org
6070W: http://www.ibm.com/developerworks/linux/linux390/
6071S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006072F: Documentation/s390/kvm.txt
6073F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07006074F: arch/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01006075
Christoffer Dalla7494742013-01-20 18:42:26 -05006076KERNEL VIRTUAL MACHINE (KVM) FOR ARM
Christoffer Dall0f4ca792013-06-21 13:54:36 -07006077M: Christoffer Dall <christoffer.dall@linaro.org>
Marc Zyngier5c8818b2014-04-26 03:43:01 -07006078M: Marc Zyngier <marc.zyngier@arm.com>
6079L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Christoffer Dalla7494742013-01-20 18:42:26 -05006080L: kvmarm@lists.cs.columbia.edu
6081W: http://systems.cs.columbia.edu/projects/kvm-arm
Christoffer Dall0f4ca792013-06-21 13:54:36 -07006082S: Supported
Christoffer Dalla7494742013-01-20 18:42:26 -05006083F: arch/arm/include/uapi/asm/kvm*
6084F: arch/arm/include/asm/kvm*
6085F: arch/arm/kvm/
Marc Zyngier5c8818b2014-04-26 03:43:01 -07006086F: virt/kvm/arm/
6087F: include/kvm/arm_*
Christoffer Dalla7494742013-01-20 18:42:26 -05006088
Marc Zyngier6394a3e2013-04-02 17:49:40 +01006089KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
Marc Zyngier5c8818b2014-04-26 03:43:01 -07006090M: Christoffer Dall <christoffer.dall@linaro.org>
Marc Zyngier6394a3e2013-04-02 17:49:40 +01006091M: Marc Zyngier <marc.zyngier@arm.com>
6092L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6093L: kvmarm@lists.cs.columbia.edu
6094S: Maintained
6095F: arch/arm64/include/uapi/asm/kvm*
6096F: arch/arm64/include/asm/kvm*
6097F: arch/arm64/kvm/
6098
Eric W. Biedermandc009d92005-06-25 14:57:52 -07006099KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07006100M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07006101W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07006102L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07006103S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006104F: include/linux/kexec.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006105F: include/uapi/linux/kexec.h
Joe Perches679655d2009-04-07 20:44:32 -07006106F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07006107
David Howellse9714612010-03-29 23:42:09 +01006108KEYS/KEYRINGS:
6109M: David Howells <dhowells@redhat.com>
David Howellsaa62eff2015-08-11 13:29:48 +01006110L: keyrings@vger.kernel.org
David Howellse9714612010-03-29 23:42:09 +01006111S: Maintained
Randy Dunlapd410fa42011-05-19 15:59:38 -07006112F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01006113F: include/linux/key.h
6114F: include/linux/key-type.h
6115F: include/keys/
6116F: security/keys/
6117
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006118KEYS-TRUSTED
Mimi Zohar74dd7442014-02-27 08:44:45 -05006119M: David Safford <safford@us.ibm.com>
6120M: Mimi Zohar <zohar@linux.vnet.ibm.com>
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006121L: linux-security-module@vger.kernel.org
David Howellsaa62eff2015-08-11 13:29:48 +01006122L: keyrings@vger.kernel.org
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006123S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07006124F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006125F: include/keys/trusted-type.h
6126F: security/keys/trusted.c
6127F: security/keys/trusted.h
6128
6129KEYS-ENCRYPTED
Mimi Zohar74dd7442014-02-27 08:44:45 -05006130M: Mimi Zohar <zohar@linux.vnet.ibm.com>
6131M: David Safford <safford@us.ibm.com>
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006132L: linux-security-module@vger.kernel.org
David Howellsaa62eff2015-08-11 13:29:48 +01006133L: keyrings@vger.kernel.org
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006134S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07006135F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006136F: include/keys/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08006137F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006138
Jason Wessel5b778da2010-05-20 21:04:28 -05006139KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07006140M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05006141W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05006142L: kgdb-bugreport@lists.sourceforge.net
6143S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006144F: Documentation/DocBook/kgdb.tmpl
6145F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006146F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05006147F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07006148F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05006149F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05006150
Pekka Enberg456db8c2008-04-28 22:47:29 +03006151KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07006152M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02006153M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03006154S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08006155F: Documentation/kmemcheck.txt
6156F: arch/x86/include/asm/kmemcheck.h
6157F: arch/x86/mm/kmemcheck/
6158F: include/linux/kmemcheck.h
6159F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03006160
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01006161KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07006162M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01006163S: Maintained
6164F: Documentation/kmemleak.txt
6165F: include/linux/kmemleak.h
6166F: mm/kmemleak.c
6167F: mm/kmemleak-test.c
6168
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07006169KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07006170M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
6171M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
6172M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07006173M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07006174S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006175F: Documentation/kprobes.txt
6176F: include/linux/kprobes.h
6177F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07006178
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08006179KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006180M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07006181W: http://miguelojeda.es/auxdisplay.htm
6182W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08006183S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006184F: Documentation/auxdisplay/ks0108
6185F: drivers/auxdisplay/ks0108.c
6186F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08006187
David Ahern1b69c6d2015-09-29 20:07:11 -07006188L3MDEV
6189M: David Ahern <dsa@cumulusnetworks.com>
6190L: netdev@vger.kernel.org
6191S: Maintained
6192F: net/l3mdev
6193F: include/net/l3mdev.h
6194
Linus Torvalds1da177e2005-04-16 15:20:36 -07006195LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07006196L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07006197S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006198F: Documentation/networking/lapb-module.txt
6199F: include/*/lapb.h
6200F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006201
6202LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07006203M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006204L: linux-scsi@vger.kernel.org
6205S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006206F: Documentation/scsi/53c700.txt
6207F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006208
Richard Purdie263de9b2006-05-15 09:44:16 -07006209LED SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006210M: Richard Purdie <rpurdie@rpsys.net>
Andrew Morton48b945a2015-05-05 16:23:30 -07006211M: Jacek Anaszewski <j.anaszewski@samsung.com>
Bryan Wuaa69cb82012-05-31 19:51:37 +08006212L: linux-leds@vger.kernel.org
Jacek Anaszewskib8926ba2015-08-20 08:59:35 +02006213T: git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07006214S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006215F: drivers/leds/
6216F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07006217
Jean Delvareb0461a42011-06-15 15:08:46 -07006218LEGACY EEPROM DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07006219M: Jean Delvare <jdelvare@suse.com>
Jean Delvareb0461a42011-06-15 15:08:46 -07006220S: Maintained
6221F: Documentation/misc-devices/eeprom
6222F: drivers/misc/eeprom/eeprom.c
6223
Linus Torvalds1da177e2005-04-16 15:20:36 -07006224LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07006225M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006226L: legousb-devel@lists.sourceforge.net
6227W: http://legousb.sourceforge.net/
6228S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006229F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006230
Michael Krufky055616a2012-10-02 00:56:06 -03006231LG2160 MEDIA DRIVER
6232M: Michael Krufky <mkrufky@linuxtv.org>
6233L: linux-media@vger.kernel.org
6234W: http://linuxtv.org/
6235W: http://github.com/mkrufky
6236Q: http://patchwork.linuxtv.org/project/linux-media/list/
6237T: git git://linuxtv.org/mkrufky/tuners.git
6238S: Maintained
6239F: drivers/media/dvb-frontends/lg2160.*
6240
Michael Krufky6f0e7722012-10-02 00:56:00 -03006241LGDT3305 MEDIA DRIVER
6242M: Michael Krufky <mkrufky@linuxtv.org>
6243L: linux-media@vger.kernel.org
6244W: http://linuxtv.org/
6245W: http://github.com/mkrufky
6246Q: http://patchwork.linuxtv.org/project/linux-media/list/
6247T: git git://linuxtv.org/mkrufky/tuners.git
6248S: Maintained
6249F: drivers/media/dvb-frontends/lgdt3305.*
6250
Rusty Russell568a17f2007-10-25 14:12:24 +10006251LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07006252M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006253L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10006254W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06006255S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08006256F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07006257F: arch/x86/lguest/
6258F: drivers/lguest/
6259F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08006260F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10006261
Tejun Heo32ac7cb2015-01-06 18:36:44 -05006262LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
6263M: Tejun Heo <tj@kernel.org>
6264L: linux-ide@vger.kernel.org
6265T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6266S: Maintained
6267F: drivers/ata/
6268F: include/linux/ata.h
6269F: include/linux/libata.h
6270
6271LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
Viresh Kumarda899472015-07-17 16:23:50 -07006272M: Viresh Kumar <vireshk@kernel.org>
Tejun Heo32ac7cb2015-01-06 18:36:44 -05006273L: linux-ide@vger.kernel.org
6274T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6275S: Maintained
6276F: include/linux/pata_arasan_cf_data.h
6277F: drivers/ata/pata_arasan_cf.c
6278
Bartlomiej Zolnierkiewiczc7fa0562014-12-02 17:29:08 +01006279LIBATA PATA DRIVERS
6280M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6281M: Tejun Heo <tj@kernel.org>
6282L: linux-ide@vger.kernel.org
6283T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6284S: Maintained
6285F: drivers/ata/pata_*.c
6286F: drivers/ata/ata_generic.c
6287
Tejun Heo32ac7cb2015-01-06 18:36:44 -05006288LIBATA SATA AHCI PLATFORM devices support
6289M: Hans de Goede <hdegoede@redhat.com>
6290M: Tejun Heo <tj@kernel.org>
6291L: linux-ide@vger.kernel.org
6292T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6293S: Maintained
6294F: drivers/ata/ahci_platform.c
6295F: drivers/ata/libahci_platform.c
6296F: include/linux/ahci_platform.h
6297
6298LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
6299M: Mikael Pettersson <mikpelinux@gmail.com>
6300L: linux-ide@vger.kernel.org
6301T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6302S: Maintained
6303F: drivers/ata/sata_promise.*
6304
Sasha Levin1acd4372013-06-13 18:41:24 -04006305LIBLOCKDEP
6306M: Sasha Levin <sasha.levin@oracle.com>
6307S: Maintained
6308F: tools/lib/lockdep/
6309
Dan Williamsbc301962015-06-25 04:48:19 -04006310LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
6311M: Dan Williams <dan.j.williams@intel.com>
6312L: linux-nvdimm@lists.01.org
6313Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
6314S: Supported
6315F: drivers/nvdimm/*
6316F: include/linux/nd.h
6317F: include/linux/libnvdimm.h
6318F: include/uapi/linux/ndctl.h
6319
6320LIBNVDIMM BLK: MMIO-APERTURE DRIVER
6321M: Ross Zwisler <ross.zwisler@linux.intel.com>
6322L: linux-nvdimm@lists.01.org
6323Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
6324S: Supported
6325F: drivers/nvdimm/blk.c
6326F: drivers/nvdimm/region_devs.c
6327F: drivers/acpi/nfit*
6328
6329LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
6330M: Vishal Verma <vishal.l.verma@intel.com>
6331L: linux-nvdimm@lists.01.org
6332Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
6333S: Supported
6334F: drivers/nvdimm/btt*
6335
6336LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
6337M: Ross Zwisler <ross.zwisler@linux.intel.com>
6338L: linux-nvdimm@lists.01.org
6339Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
6340S: Supported
6341F: drivers/nvdimm/pmem.c
Ross Zwislerb864bc12015-07-10 11:06:10 -06006342F: include/linux/pmem.h
Ross Zwisler40603522015-08-18 13:55:36 -06006343F: arch/*/include/asm/pmem.h
Dan Williamsbc301962015-06-25 04:48:19 -04006344
Matias Bjørlingcd9e9802015-10-28 19:54:55 +01006345LIGHTNVM PLATFORM SUPPORT
6346M: Matias Bjorling <mb@lightnvm.io>
6347W: http://github/OpenChannelSSD
6348S: Maintained
6349F: drivers/lightnvm/
6350F: include/linux/lightnvm.h
6351F: include/uapi/linux/lightnvm.h
6352
Linus Torvalds1da177e2005-04-16 15:20:36 -07006353LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07006354M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006355W: http://www.ibm.com/linux/ltc/projects/ppc
6356S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00006357F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006358
Paul Mackerras852bb9f2008-07-04 21:04:42 +10006359LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07006360M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
6361M: Paul Mackerras <paulus@samba.org>
Benjamin Herrenschmidtea668932014-07-28 13:54:37 +10006362M: Michael Ellerman <mpe@ellerman.id.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006363W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006364L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08006365Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Michael Ellerman99580842015-07-07 19:16:23 +10006366T: git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006367S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00006368F: Documentation/powerpc/
6369F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006370
6371LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07006372M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006373W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006374L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006375S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00006376F: arch/powerpc/platforms/powermac/
6377F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006378
Grant Likely77a76362008-07-12 12:11:43 -06006379LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00006380M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006381L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschincba5b1c2014-10-02 16:16:59 -07006382T: git git://git.denx.de/linux-denx-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006383S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00006384F: arch/powerpc/platforms/512x/
6385F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006386
6387LINUX FOR POWERPC EMBEDDED PPC4XX
Joe Perches49e7d9d2015-04-15 16:17:31 -07006388M: Alistair Popple <alistair@popple.id.au>
Joe Perches8b58be82009-07-29 15:04:30 -07006389M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006390W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006391L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006392S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00006393F: arch/powerpc/platforms/40x/
6394F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006395
Grant Likely260c02a2007-10-02 12:15:34 +10006396LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006397L: linuxppc-dev@lists.ozlabs.org
Grant Likelycdeb8992013-07-22 01:38:32 +01006398S: Orphan
Joe Perches11c34c72009-12-04 07:16:59 +00006399F: arch/powerpc/*/*virtex*
6400F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006401
Tom Rinie93adf12005-07-26 12:49:53 -07006402LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07006403M: Vitaly Bordug <vitb@kernel.crashing.org>
Tom Rinie93adf12005-07-26 12:49:53 -07006404W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006405L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07006406S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07006407F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07006408
Linus Torvalds1da177e2005-04-16 15:20:36 -07006409LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Scott Wooda1e0fb42014-05-05 20:46:43 -05006410M: Scott Wood <scottwood@freescale.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006411M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01006412W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006413L: linuxppc-dev@lists.ozlabs.org
Scott Wooda1e0fb42014-05-05 20:46:43 -05006414T: git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
Jim Cromiece00f852006-11-30 04:49:44 +01006415S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00006416F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03006417F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006418
Olof Johanssonab06ff32006-09-06 14:44:54 -05006419LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07006420M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006421L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00006422S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00006423F: arch/powerpc/platforms/pasemi/
6424F: drivers/*/*pasemi*
6425F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05006426
Linus Torvalds1da177e2005-04-16 15:20:36 -07006427LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07006428M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08006429L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006430S: Supported
6431
Harry Weia23ce6d2011-02-11 16:52:20 +01006432LIS3LV02D ACCELEROMETER DRIVER
6433M: Eric Piel <eric.piel@tremplin-utc.net>
6434S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01006435F: Documentation/misc-devices/lis3lv02d
6436F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07006437F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01006438
Seth Jenningsb700e7f2014-12-16 11:58:19 -06006439LIVE PATCHING
6440M: Josh Poimboeuf <jpoimboe@redhat.com>
6441M: Seth Jennings <sjenning@redhat.com>
Jiri Kosinae5f64502015-08-09 09:11:34 +02006442M: Jiri Kosina <jikos@kernel.org>
Jiri Slabyd8130622015-07-17 16:23:20 -07006443M: Vojtech Pavlik <vojtech@suse.com>
Seth Jenningsb700e7f2014-12-16 11:58:19 -06006444S: Maintained
6445F: kernel/livepatch/
6446F: include/linux/livepatch.h
6447F: arch/x86/include/asm/livepatch.h
6448F: arch/x86/kernel/livepatch.c
6449F: Documentation/ABI/testing/sysfs-kernel-livepatch
Seth Jennings13d1cf72014-12-16 11:58:20 -06006450F: samples/livepatch/
Seth Jenningsb700e7f2014-12-16 11:58:19 -06006451L: live-patching@vger.kernel.org
Jiri Kosina74d50da2014-12-22 13:40:20 +01006452T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
Seth Jenningsb700e7f2014-12-16 11:58:19 -06006453
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006454LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07006455M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006456S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006457F: include/linux/llc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006458F: include/uapi/linux/llc.h
Joe Perches679655d2009-04-07 20:44:32 -07006459F: include/net/llc*
6460F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006461
Adrien Demarez4e233cb2009-12-09 20:35:50 +01006462LM73 HARDWARE MONITOR DRIVER
6463M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
6464L: lm-sensors@lm-sensors.org
6465S: Maintained
6466F: drivers/hwmon/lm73.c
6467
Jean Delvare156e2d12011-07-25 21:46:11 +02006468LM78 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07006469M: Jean Delvare <jdelvare@suse.com>
Jean Delvare156e2d12011-07-25 21:46:11 +02006470L: lm-sensors@lm-sensors.org
6471S: Maintained
6472F: Documentation/hwmon/lm78
6473F: drivers/hwmon/lm78.c
6474
Linus Torvalds1da177e2005-04-16 15:20:36 -07006475LM83 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07006476M: Jean Delvare <jdelvare@suse.com>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02006477L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006478S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006479F: Documentation/hwmon/lm83
6480F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006481
6482LM90 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07006483M: Jean Delvare <jdelvare@suse.com>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02006484L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006485S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006486F: Documentation/hwmon/lm90
Wei Niaae7bce2013-11-15 10:40:39 +01006487F: Documentation/devicetree/bindings/hwmon/lm90.txt
Joe Perches679655d2009-04-07 20:44:32 -07006488F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006489
Guenter Roeck917cc4e2013-05-19 20:44:27 -07006490LM95234 HARDWARE MONITOR DRIVER
6491M: Guenter Roeck <linux@roeck-us.net>
6492L: lm-sensors@lm-sensors.org
6493S: Maintained
6494F: Documentation/hwmon/lm95234
6495F: drivers/hwmon/lm95234.c
6496
Malcolm Priestley68620bd2012-11-04 19:16:31 +01006497LME2510 MEDIA DRIVER
6498M: Malcolm Priestley <tvboxspy@gmail.com>
6499L: linux-media@vger.kernel.org
6500W: http://linuxtv.org/
6501Q: http://patchwork.linuxtv.org/project/linux-media/list/
6502S: Maintained
6503F: drivers/media/usb/dvb-usb-v2/lmedm04*
6504
Peter Zijlstra512e67f2007-10-11 22:11:11 +02006505LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07006506M: Peter Zijlstra <peterz@infradead.org>
6507M: Ingo Molnar <mingo@redhat.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +01006508L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006509T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02006510S: Maintained
Davidlohr Bueso214e0ae2014-07-30 13:41:55 -07006511F: Documentation/locking/lockdep*.txt
6512F: Documentation/locking/lockstat.txt
Joe Perches679655d2009-04-07 20:44:32 -07006513F: include/linux/lockdep.h
Joe Perches7486d6d2013-11-14 14:59:45 -08006514F: kernel/locking/
Peter Zijlstra512e67f2007-10-11 22:11:11 +02006515
Anton Altaparmakovdde33342007-05-21 09:37:42 +01006516LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07006517M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01006518L: linux-ntfs-dev@lists.sourceforge.net
6519W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006520S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006521F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08006522F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006523
Joern Engelef6ada32009-11-20 22:17:12 +01006524LogFS
6525M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05306526M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01006527L: logfs@logfs.org
6528W: logfs.org
6529S: Maintained
6530F: fs/logfs/
6531
Roland Stiggeb62d7942013-04-02 19:37:11 +02006532LPC32XX MACHINE SUPPORT
6533M: Roland Stigge <stigge@antcom.de>
6534L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6535S: Maintained
6536F: arch/arm/mach-lpc32xx/
6537
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07006538LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
Reddy, Sreekanth3a980502014-06-13 20:48:04 +05306539M: Nagalakshmi Nandigama <nagalakshmi.nandigama@avagotech.com>
6540M: Praveen Krishnamoorthy <praveen.krishnamoorthy@avagotech.com>
6541M: Sreekanth Reddy <sreekanth.reddy@avagotech.com>
6542M: Abhijit Mahajan <abhijit.mahajan@avagotech.com>
6543L: MPT-FusionLinux.pdl@avagotech.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07006544L: linux-scsi@vger.kernel.org
6545W: http://www.lsilogic.com/support
6546S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006547F: drivers/message/fusion/
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05306548F: drivers/scsi/mpt2sas/
6549F: drivers/scsi/mpt3sas/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07006550
Linus Torvalds1da177e2005-04-16 15:20:36 -07006551LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07006552M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006553L: linux-scsi@vger.kernel.org
6554S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006555F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006556
Guenter Roecke5f5c992010-06-25 11:59:54 -07006557LTC4261 HARDWARE MONITOR DRIVER
6558M: Guenter Roeck <linux@roeck-us.net>
6559L: lm-sensors@lm-sensors.org
6560S: Maintained
6561F: Documentation/hwmon/ltc4261
6562F: drivers/hwmon/ltc4261.c
6563
Mike Frysinger81365c32008-10-29 14:01:12 -07006564LTP (Linux Test Project)
Joe Perches28b8e8d2010-03-23 13:35:20 -07006565M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07006566M: Cyril Hrubis <chrubis@suse.cz>
Cyril Hrubis05261092015-09-17 16:01:57 -07006567M: Wanlong Gao <wanlong.gao@gmail.com>
Cyril Hrubisf2eb7f62014-05-09 15:36:58 -07006568M: Jan Stancek <jstancek@redhat.com>
6569M: Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
6570M: Alexey Kodanev <alexey.kodanev@oracle.com>
Cyril Hrubis05261092015-09-17 16:01:57 -07006571L: ltp@lists.linux.it (subscribers-only)
Cyril Hrubisf2eb7f62014-05-09 15:36:58 -07006572W: http://linux-test-project.github.io/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07006573T: git git://github.com/linux-test-project/ltp.git
Mike Frysinger81365c32008-10-29 14:01:12 -07006574S: Maintained
6575
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07006576M32R ARCHITECTURE
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07006577W: http://www.linux-m32r.org/
Michael Opdenackerb4174862014-10-13 15:51:26 -07006578S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006579F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07006580
Linus Torvalds1da177e2005-04-16 15:20:36 -07006581M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07006582M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006583L: linux-m68k@lists.linux-m68k.org
6584W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07006585T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006586S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006587F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07006588F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006589
6590M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07006591M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006592W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01006593L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006594S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07006595F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006596
6597M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07006598M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006599W: http://www.tazenda.demon.co.uk/phil/linux-hp
6600S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006601F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006602
Antti Palosaari74425542013-11-06 14:03:32 -03006603M88DS3103 MEDIA DRIVER
6604M: Antti Palosaari <crope@iki.fi>
6605L: linux-media@vger.kernel.org
6606W: http://linuxtv.org/
6607W: http://palosaari.fi/linux/
6608Q: http://patchwork.linuxtv.org/project/linux-media/list/
6609T: git git://linuxtv.org/anttip/media_tree.git
6610S: Maintained
6611F: drivers/media/dvb-frontends/m88ds3103*
6612
Malcolm Priestley68620bd2012-11-04 19:16:31 +01006613M88RS2000 MEDIA DRIVER
6614M: Malcolm Priestley <tvboxspy@gmail.com>
6615L: linux-media@vger.kernel.org
6616W: http://linuxtv.org/
6617Q: http://patchwork.linuxtv.org/project/linux-media/list/
6618S: Maintained
6619F: drivers/media/dvb-frontends/m88rs2000*
6620
Alexey Klimov07a092f2012-11-12 02:57:32 -03006621MA901 MASTERKIT USB FM RADIO DRIVER
Joe Perchesb75f0052014-03-03 15:38:37 -08006622M: Alexey Klimov <klimov.linux@gmail.com>
6623L: linux-media@vger.kernel.org
6624T: git git://linuxtv.org/media_tree.git
6625S: Maintained
6626F: drivers/media/radio/radio-ma901.c
Alexey Klimov07a092f2012-11-12 02:57:32 -03006627
Jiri Benc64a327a2007-05-05 11:47:08 -07006628MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07006629M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07006630L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006631W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02006632T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6633T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07006634S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006635F: Documentation/networking/mac80211-injection.txt
6636F: include/net/mac80211.h
6637F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07006638
Patrick McHardyb863ceb2007-07-14 18:55:06 -07006639MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006640M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07006641L: netdev@vger.kernel.org
6642S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006643F: drivers/net/macvlan.c
6644F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07006645
Jassi Brar2b6d83e2014-06-12 22:31:19 +05306646MAILBOX API
6647M: Jassi Brar <jassisinghbrar@gmail.com>
6648L: linux-kernel@vger.kernel.org
6649S: Maintained
6650F: drivers/mailbox/
6651F: include/linux/mailbox_client.h
6652F: include/linux/mailbox_controller.h
6653
Michael Kerriskfaf16682005-07-31 22:34:47 -07006654MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07006655M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006656W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07006657L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07006658S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07006659
Russell King8427def2014-02-28 22:40:53 +00006660MARVELL ARMADA DRM SUPPORT
6661M: Russell King <rmk+kernel@arm.linux.org.uk>
6662S: Maintained
6663F: drivers/gpu/drm/armada/
6664
Guenter Roeck3ad50cc2014-10-29 10:44:56 -07006665MARVELL 88E6352 DSA support
6666M: Guenter Roeck <linux@roeck-us.net>
6667S: Maintained
6668F: drivers/net/dsa/mv88e6352.c
6669
Thomas Petazzonic4d007b2015-10-09 17:39:02 +02006670MARVELL CRYPTO DRIVER
6671M: Boris Brezillon <boris.brezillon@free-electrons.com>
6672M: Arnaud Ebalard <arno@natisbad.org>
6673F: drivers/crypto/marvell/
6674S: Maintained
6675L: linux-crypto@vger.kernel.org
6676
stephen hemminger44c14c12012-04-02 12:59:47 +00006677MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
6678M: Mirko Lindner <mlindner@marvell.com>
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08006679M: Stephen Hemminger <stephen@networkplumber.org>
stephen hemminger44c14c12012-04-02 12:59:47 +00006680L: netdev@vger.kernel.org
6681S: Maintained
6682F: drivers/net/ethernet/marvell/sk*
6683
Stefano Brivio74cda162007-11-19 20:27:46 +01006684MARVELL LIBERTAS WIRELESS DRIVER
Stefano Brivio74cda162007-11-19 20:27:46 +01006685L: libertas-dev@lists.infradead.org
Dan Williams8ac3e992013-03-26 14:40:51 -05006686S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006687F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01006688
Dale Farnsworthb60d6972006-01-16 16:45:45 -07006689MARVELL MV643XX ETHERNET DRIVER
Sebastian Hesselbarth4e3faf82013-10-04 12:56:39 +02006690M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07006691L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00006692S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07006693F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07006694F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006695
Thomas Petazzoni370b8ed2012-09-04 15:06:42 +02006696MARVELL MVNETA ETHERNET DRIVER
6697M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
6698L: netdev@vger.kernel.org
6699S: Maintained
6700F: drivers/net/ethernet/marvell/mvneta.*
6701
Bing Zhaofcad5842011-07-13 13:11:58 -07006702MARVELL MWIFIEX WIRELESS DRIVER
Bing Zhaob9d31702014-07-30 13:57:16 -07006703M: Amitkumar Karwar <akarwar@marvell.com>
Avinash Patil550795f2015-06-24 16:52:21 +05306704M: Nishant Sarmukadam <nishants@marvell.com>
Bing Zhaofcad5842011-07-13 13:11:58 -07006705L: linux-wireless@vger.kernel.org
6706S: Maintained
6707F: drivers/net/wireless/mwifiex/
6708
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02006709MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01006710M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02006711L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02006712S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02006713F: drivers/net/wireless/mwl8k.c
6714
Pierre Ossman2a695672009-03-16 19:52:26 +01006715MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04006716M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04006717S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07006718F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01006719
Linus Torvalds1da177e2005-04-16 15:20:36 -07006720MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006721L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07006722S: Orphan
Jingoo Han8a61f012014-07-01 15:36:01 +09006723F: drivers/video/fbdev/matrox/matroxfb_*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006724F: include/uapi/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006725
Guenter Roeckca462082012-06-01 23:28:23 -07006726MAX16065 HARDWARE MONITOR DRIVER
6727M: Guenter Roeck <linux@roeck-us.net>
6728L: lm-sensors@lm-sensors.org
6729S: Maintained
6730F: Documentation/hwmon/max16065
6731F: drivers/hwmon/max16065.c
6732
Guenter Roeck1f61cab2015-06-08 11:15:23 -07006733MAX20751 HARDWARE MONITOR DRIVER
6734M: Guenter Roeck <linux@roeck-us.net>
6735L: lm-sensors@lm-sensors.org
6736S: Maintained
6737F: Documentation/hwmon/max20751
6738F: drivers/hwmon/max20751.c
6739
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02006740MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07006741M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02006742L: lm-sensors@lm-sensors.org
6743S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006744F: Documentation/hwmon/max6650
6745F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02006746
Guenter Roecke89ab512013-03-08 08:13:09 -08006747MAX6697 HARDWARE MONITOR DRIVER
6748M: Guenter Roeck <linux@roeck-us.net>
6749L: lm-sensors@lm-sensors.org
6750S: Maintained
6751F: Documentation/hwmon/max6697
6752F: Documentation/devicetree/bindings/i2c/max6697.txt
6753F: drivers/hwmon/max6697.c
6754F: include/linux/platform_data/max6697.h
6755
Krzysztof Kozlowskif8f847b2015-01-20 11:00:56 +01006756MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
6757M: Krzysztof Kozlowski <k.kozlowski@samsung.com>
6758L: linux-pm@vger.kernel.org
6759S: Supported
6760F: drivers/power/max14577_charger.c
6761F: drivers/power/max77693_charger.c
6762
Javier Martinez Canillas38114052015-07-17 10:17:58 +02006763MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS
6764M: Javier Martinez Canillas <javier@osg.samsung.com>
6765L: linux-kernel@vger.kernel.org
6766S: Supported
6767F: drivers/*/*max77802.c
6768F: Documentation/devicetree/bindings/*/*max77802.txt
6769F: include/dt-bindings/*/*max77802.h
6770
Krzysztof Kozlowskibefeb592015-02-16 16:00:23 -08006771MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
6772M: Chanwoo Choi <cw00.choi@samsung.com>
6773M: Krzysztof Kozlowski <k.kozlowski@samsung.com>
6774L: linux-kernel@vger.kernel.org
6775S: Supported
6776F: drivers/*/max14577.c
6777F: drivers/*/max77686.c
6778F: drivers/*/max77693.c
6779F: drivers/extcon/extcon-max14577.c
6780F: drivers/extcon/extcon-max77693.c
6781F: drivers/rtc/rtc-max77686.c
6782F: drivers/clk/clk-max77686.c
6783F: Documentation/devicetree/bindings/mfd/max14577.txt
Javier Martinez Canillas377452f2015-07-17 10:17:57 +02006784F: Documentation/devicetree/bindings/*/max77686.txt
Krzysztof Kozlowskibefeb592015-02-16 16:00:23 -08006785F: Documentation/devicetree/bindings/mfd/max77693.txt
6786F: Documentation/devicetree/bindings/clock/maxim,max77686.txt
6787F: include/linux/mfd/max14577*.h
6788F: include/linux/mfd/max77686*.h
6789F: include/linux/mfd/max77693*.h
6790
Hans Verkuil9be3c9a2012-11-23 07:12:43 -03006791MAXIRADIO FM RADIO RECEIVER DRIVER
6792M: Hans Verkuil <hverkuil@xs4all.nl>
6793L: linux-media@vger.kernel.org
6794T: git git://linuxtv.org/media_tree.git
6795W: http://linuxtv.org
6796S: Maintained
6797F: drivers/media/radio/radio-maxiradio*
6798
Peter Rosinc05dc2c2015-09-23 16:26:23 +02006799MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVER
6800M: Peter Rosin <peda@axentia.se>
6801L: linux-iio@vger.kernel.org
6802S: Maintained
6803F: drivers/iio/potentiometer/mcp4531.c
6804
Laurent Pinchart6f32a8c2015-03-04 09:12:20 -03006805MEDIA DRIVERS FOR RENESAS - VSP1
6806M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6807L: linux-media@vger.kernel.org
6808L: linux-sh@vger.kernel.org
6809T: git git://linuxtv.org/media_tree.git
6810S: Supported
6811F: Documentation/devicetree/bindings/media/renesas,vsp1.txt
6812F: drivers/media/platform/vsp1/
6813
Kozlov Sergeydacf9ce2015-07-28 11:33:01 -03006814MEDIA DRIVERS FOR ASCOT2E
6815M: Sergey Kozlov <serjk@netup.ru>
6816L: linux-media@vger.kernel.org
6817W: http://linuxtv.org
6818W: http://netup.tv/
6819T: git git://linuxtv.org/media_tree.git
6820S: Supported
6821F: drivers/media/dvb-frontends/ascot2e*
6822
Kozlov Sergeya6dc60ff2015-07-28 11:33:03 -03006823MEDIA DRIVERS FOR CXD2841ER
6824M: Sergey Kozlov <serjk@netup.ru>
6825L: linux-media@vger.kernel.org
6826W: http://linuxtv.org/
6827W: http://netup.tv/
6828T: git git://linuxtv.org/media_tree.git
6829S: Supported
6830F: drivers/media/dvb-frontends/cxd2841er*
6831
Kozlov Sergeya5d32b32015-07-28 11:33:00 -03006832MEDIA DRIVERS FOR HORUS3A
6833M: Sergey Kozlov <serjk@netup.ru>
6834L: linux-media@vger.kernel.org
6835W: http://linuxtv.org/
6836W: http://netup.tv/
6837T: git git://linuxtv.org/media_tree.git
6838S: Supported
6839F: drivers/media/dvb-frontends/horus3a*
6840
Kozlov Sergeye0252732015-07-28 11:33:02 -03006841MEDIA DRIVERS FOR LNBH25
6842M: Sergey Kozlov <serjk@netup.ru>
6843L: linux-media@vger.kernel.org
6844W: http://linuxtv.org/
6845W: http://netup.tv/
6846T: git git://linuxtv.org/media_tree.git
6847S: Supported
6848F: drivers/media/dvb-frontends/lnbh25*
6849
Kozlov Sergey52b1eaf2015-07-28 11:33:04 -03006850MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
6851M: Sergey Kozlov <serjk@netup.ru>
6852L: linux-media@vger.kernel.org
6853W: http://linuxtv.org/
6854W: http://netup.tv/
6855T: git git://linuxtv.org/media_tree.git
6856S: Supported
6857F: drivers/media/pci/netup_unidvb/*
6858
Joe Perches127c49a2009-04-08 08:34:04 -07006859MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02006860M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Joe Perches127c49a2009-04-08 08:34:04 -07006861P: LinuxTV.org Project
6862L: linux-media@vger.kernel.org
6863W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08006864Q: http://patchwork.kernel.org/project/linux-media/list/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006865T: git git://linuxtv.org/media_tree.git
Joe Perches127c49a2009-04-08 08:34:04 -07006866S: Maintained
6867F: Documentation/dvb/
6868F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02006869F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07006870F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02006871F: drivers/staging/media/
Joe Perches127c49a2009-04-08 08:34:04 -07006872F: include/media/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02006873F: include/uapi/linux/dvb/
6874F: include/uapi/linux/videodev2.h
6875F: include/uapi/linux/media.h
6876F: include/uapi/linux/v4l2-*
6877F: include/uapi/linux/meye.h
6878F: include/uapi/linux/ivtv*
6879F: include/uapi/linux/uvcvideo.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07006880
Jakub Kicinskic869f772015-05-26 11:16:00 +02006881MEDIATEK MT7601U WIRELESS LAN DRIVER
6882M: Jakub Kicinski <kubakici@wp.pl>
6883L: linux-wireless@vger.kernel.org
6884S: Maintained
6885F: drivers/net/wireless/mediatek/mt7601u/
6886
Sumit.Saxena@avagotech.come3990652014-11-17 15:24:03 +05306887MEGARAID SCSI/SAS DRIVERS
6888M: Kashyap Desai <kashyap.desai@avagotech.com>
6889M: Sumit Saxena <sumit.saxena@avagotech.com>
6890M: Uday Lingala <uday.lingala@avagotech.com>
6891L: megaraidlinux.pdl@avagotech.com
Jean Delvarebaaea1d2008-09-20 12:34:33 +02006892L: linux-scsi@vger.kernel.org
Sumit.Saxena@avagotech.come3990652014-11-17 15:24:03 +05306893W: http://www.lsi.com
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07006894S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006895F: Documentation/scsi/megaraid.txt
6896F: drivers/scsi/megaraid.*
6897F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07006898
Amir Vadai2c46c9d2012-12-02 03:49:21 +00006899MELLANOX ETHERNET DRIVER (mlx4_en)
6900M: Amir Vadai <amirv@mellanox.com>
Joe Perchesb75f0052014-03-03 15:38:37 -08006901L: netdev@vger.kernel.org
Amir Vadai2c46c9d2012-12-02 03:49:21 +00006902S: Supported
6903W: http://www.mellanox.com
6904Q: http://patchwork.ozlabs.org/project/netdev/list/
6905F: drivers/net/ethernet/mellanox/mlx4/en_*
6906
Jiri Pirko93c1edb2015-07-29 23:33:46 +02006907MELLANOX ETHERNET SWITCH DRIVERS
6908M: Jiri Pirko <jiri@mellanox.com>
6909M: Ido Schimmel <idosch@mellanox.com>
6910L: netdev@vger.kernel.org
6911S: Supported
6912W: http://www.mellanox.com
6913Q: http://patchwork.ozlabs.org/project/netdev/list/
6914F: drivers/net/ethernet/mellanox/mlxsw/
6915
Mathieu Desnoyers5b25b132015-09-11 13:07:39 -07006916MEMBARRIER SUPPORT
6917M: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
6918M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
6919L: linux-kernel@vger.kernel.org
6920S: Supported
6921F: kernel/membarrier.c
6922F: include/uapi/linux/membarrier.h
6923
Steven Rostedt70ea91f2006-07-30 03:03:53 -07006924MEMORY MANAGEMENT
6925L: linux-mm@kvack.org
Steven Rostedt70ea91f2006-07-30 03:03:53 -07006926W: http://www.linux-mm.org
6927S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006928F: include/linux/mm.h
Cody P Schafer551450b2013-02-21 16:43:13 -08006929F: include/linux/gfp.h
6930F: include/linux/mmzone.h
6931F: include/linux/memory_hotplug.h
6932F: include/linux/vmalloc.h
Joe Perches679655d2009-04-07 20:44:32 -07006933F: mm/
Steven Rostedt70ea91f2006-07-30 03:03:53 -07006934
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04006935MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07006936M: David Woodhouse <dwmw2@infradead.org>
Brian Norris242c3252013-12-04 15:28:45 -08006937M: Brian Norris <computersforpeace@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006938L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08006939W: http://www.linux-mtd.infradead.org/
6940Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
Brian Norris242c3252013-12-04 15:28:45 -08006941T: git git://git.infradead.org/linux-mtd.git
Brian Norrisab95eac2014-09-15 21:56:17 -07006942T: git git://git.infradead.org/l2-mtd.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006943S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006944F: drivers/mtd/
6945F: include/linux/mtd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006946F: include/uapi/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006947
Johannes Thumshirn26c57ef2013-06-18 17:19:45 +02006948MEN A21 WATCHDOG DRIVER
Johannes Thumshirn30c74692015-05-07 10:21:24 +02006949M: Johannes Thumshirn <morbidrsa@gmail.com>
Johannes Thumshirn26c57ef2013-06-18 17:19:45 +02006950L: linux-watchdog@vger.kernel.org
Johannes Thumshirn30c74692015-05-07 10:21:24 +02006951S: Maintained
Johannes Thumshirn26c57ef2013-06-18 17:19:45 +02006952F: drivers/watchdog/mena21_wdt.c
6953
Johannes Thumshirn3764e822014-02-26 17:29:05 +01006954MEN CHAMELEON BUS (mcb)
Johannes Thumshirn30c74692015-05-07 10:21:24 +02006955M: Johannes Thumshirn <morbidrsa@gmail.com>
6956S: Maintained
Johannes Thumshirn3764e822014-02-26 17:29:05 +01006957F: drivers/mcb/
6958F: include/linux/mcb.h
Johannes Thumshirnb9f2f452015-07-17 12:23:01 +02006959F: Documentation/men-chameleon-bus.txt
Johannes Thumshirn3764e822014-02-26 17:29:05 +01006960
Andreas Werner48b490d2014-09-15 09:36:30 +02006961MEN F21BMC (Board Management Controller)
6962M: Andreas Werner <andreas.werner@men.de>
6963S: Supported
6964F: drivers/mfd/menf21bmc.c
6965F: drivers/watchdog/menf21bmc_wdt.c
6966F: drivers/leds/leds-menf21bmc.c
6967F: drivers/hwmon/menf21bmc_hwmon.c
6968F: Documentation/hwmon/menf21bmc
6969
James Hogan12285942012-10-10 12:59:49 +01006970METAG ARCHITECTURE
6971M: James Hogan <james.hogan@imgtec.com>
James Hogand668d9e2013-07-22 09:51:38 +01006972L: linux-metag@vger.kernel.org
James Hogan12285942012-10-10 12:59:49 +01006973S: Supported
6974F: arch/metag/
6975F: Documentation/metag/
6976F: Documentation/devicetree/bindings/metag/
Rob Herring2d799dd2015-11-05 13:40:40 -06006977F: Documentation/devicetree/bindings/interrupt-controller/img,*
James Hogana2c5d4e2012-10-09 10:54:39 +01006978F: drivers/clocksource/metag_generic.c
James Hogan5698c502012-10-09 10:54:47 +01006979F: drivers/irqchip/irq-metag.c
6980F: drivers/irqchip/irq-metag-ext.c
James Hoganae85ac72012-09-21 17:38:15 +01006981F: drivers/tty/metag_da.c
James Hogan12285942012-10-10 12:59:49 +01006982
Michal Simekc6375b02009-03-27 14:25:52 +01006983MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07006984M: Michal Simek <monstr@monstr.eu>
Michal Simekc6375b02009-03-27 14:25:52 +01006985W: http://www.monstr.eu/fdt/
6986T: git git://git.monstr.eu/linux-2.6-microblaze.git
6987S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02006988F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006989
Chen Yu2508a452015-08-18 23:30:25 +08006990MICROSOFT SURFACE PRO 3 BUTTON DRIVER
6991M: Chen Yu <yu.c.chen@intel.com>
6992L: platform-driver-x86@vger.kernel.org
6993S: Supported
6994F: drivers/platform/x86/surfacepro3_button.c
6995
Linus Torvalds1da177e2005-04-16 15:20:36 -07006996MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02006997M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006998S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006999F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007000
7001MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07007002M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007003L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01007004W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00007005T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01007006Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00007007S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007008F: Documentation/mips/
7009F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007010
Hans Verkuil08b76202012-11-23 07:15:42 -03007011MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
7012M: Hans Verkuil <hverkuil@xs4all.nl>
7013L: linux-media@vger.kernel.org
7014T: git git://linuxtv.org/media_tree.git
7015W: http://linuxtv.org
7016S: Odd Fixes
7017F: drivers/media/radio/radio-miropcm20*
7018
Eli Cohene126ba92013-07-07 17:25:49 +03007019Mellanox MLX5 core VPI driver
7020M: Eli Cohen <eli@mellanox.com>
7021L: netdev@vger.kernel.org
7022L: linux-rdma@vger.kernel.org
7023W: http://www.mellanox.com
7024Q: http://patchwork.ozlabs.org/project/netdev/list/
7025Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perchescea83212014-03-03 15:38:38 -08007026T: git git://openfabrics.org/~eli/connect-ib.git
Eli Cohene126ba92013-07-07 17:25:49 +03007027S: Supported
7028F: drivers/net/ethernet/mellanox/mlx5/core/
7029F: include/linux/mlx5/
7030
7031Mellanox MLX5 IB driver
Joe Perchesb75f0052014-03-03 15:38:37 -08007032M: Eli Cohen <eli@mellanox.com>
7033L: linux-rdma@vger.kernel.org
7034W: http://www.mellanox.com
7035Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perchescea83212014-03-03 15:38:38 -08007036T: git git://openfabrics.org/~eli/connect-ib.git
Joe Perchesb75f0052014-03-03 15:38:37 -08007037S: Supported
7038F: include/linux/mlx5/
7039F: drivers/infiniband/hw/mlx5/
Eli Cohene126ba92013-07-07 17:25:49 +03007040
Crt Mori764589b2015-08-17 19:34:33 +02007041MELEXIS MLX90614 DRIVER
7042M: Crt Mori <cmo@melexis.com>
7043L: linux-iio@vger.kernel.org
7044W: http://www.melexis.com
7045S: Supported
7046F: drivers/iio/temperature/mlx90614.c
7047
Antti Palosaari0ce277e2014-11-12 00:35:42 -03007048MN88472 MEDIA DRIVER
7049M: Antti Palosaari <crope@iki.fi>
7050L: linux-media@vger.kernel.org
7051W: http://linuxtv.org/
7052W: http://palosaari.fi/linux/
7053Q: http://patchwork.linuxtv.org/project/linux-media/list/
7054T: git git://linuxtv.org/anttip/media_tree.git
7055S: Maintained
7056F: drivers/staging/media/mn88472/
7057F: drivers/media/dvb-frontends/mn88472.h
7058
Antti Palosaari4f4d2382014-11-12 00:53:57 -03007059MN88473 MEDIA DRIVER
7060M: Antti Palosaari <crope@iki.fi>
7061L: linux-media@vger.kernel.org
7062W: http://linuxtv.org/
7063W: http://palosaari.fi/linux/
7064Q: http://patchwork.linuxtv.org/project/linux-media/list/
7065T: git git://linuxtv.org/anttip/media_tree.git
7066S: Maintained
7067F: drivers/staging/media/mn88473/
7068F: drivers/media/dvb-frontends/mn88473.h
7069
Linus Torvalds1da177e2005-04-16 15:20:36 -07007070MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007071M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007072S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007073F: include/linux/module.h
7074F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007075
7076MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07007077W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08007078S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007079F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007080F: drivers/media/pci/meye/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02007081F: include/uapi/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007082
Jiri Slabyb9705b62008-04-30 00:53:48 -07007083MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07007084M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08007085S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007086F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07007087F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08007088
Alexey Klimov889b2f82012-11-16 17:43:59 -03007089MR800 AVERMEDIA USB FM RADIO DRIVER
7090M: Alexey Klimov <klimov.linux@gmail.com>
7091L: linux-media@vger.kernel.org
7092T: git git://linuxtv.org/media_tree.git
7093S: Maintained
7094F: drivers/media/radio/radio-mr800.c
7095
Alan Ottd7155692014-08-16 17:09:03 -04007096MRF24J40 IEEE 802.15.4 RADIO DRIVER
7097M: Alan Ott <alan@signal11.us>
7098L: linux-wpan@vger.kernel.org
7099S: Maintained
7100F: drivers/net/ieee802154/mrf24j40.c
Alexander Aring2e6fd642015-09-21 11:24:26 +02007101F: Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
Alan Ottd7155692014-08-16 17:09:03 -04007102
Lennart Poettering8c4c7312006-10-06 01:27:02 -04007103MSI LAPTOP SUPPORT
Lee, Chun-Yi182ae552012-12-14 16:14:24 +08007104M: "Lee, Chun-Yi" <jlee@suse.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05007105L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04007106S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007107F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04007108
Anisse Astier0f1006b2009-12-17 11:28:49 +01007109MSI WMI SUPPORT
Matthew Garrettd0944852010-02-11 10:40:13 -05007110L: platform-driver-x86@vger.kernel.org
Anisse Astier5ee70412015-06-14 22:32:23 +02007111S: Orphan
Anisse Astier0f1006b2009-12-17 11:28:49 +01007112F: drivers/platform/x86/msi-wmi.c
7113
Antti Palosaari19a628a2014-02-02 23:51:30 -03007114MSI001 MEDIA DRIVER
7115M: Antti Palosaari <crope@iki.fi>
7116L: linux-media@vger.kernel.org
7117W: http://linuxtv.org/
7118W: http://palosaari.fi/linux/
7119Q: http://patchwork.linuxtv.org/project/linux-media/list/
7120T: git git://linuxtv.org/anttip/media_tree.git
7121S: Maintained
Antti Palosaari0185e192014-07-12 08:58:32 -03007122F: drivers/media/tuners/msi001*
Antti Palosaari19a628a2014-02-02 23:51:30 -03007123
Antti Palosaari75705892014-07-13 21:35:47 -03007124MSI2500 MEDIA DRIVER
Antti Palosaari2c572132014-02-02 23:55:12 -03007125M: Antti Palosaari <crope@iki.fi>
7126L: linux-media@vger.kernel.org
7127W: http://linuxtv.org/
7128W: http://palosaari.fi/linux/
7129Q: http://patchwork.linuxtv.org/project/linux-media/list/
7130T: git git://linuxtv.org/anttip/media_tree.git
7131S: Maintained
Antti Palosaari75705892014-07-13 21:35:47 -03007132F: drivers/media/usb/msi2500/
Antti Palosaari2c572132014-02-02 23:55:12 -03007133
Robert Jarzmik159eeea2015-06-25 19:14:18 +02007134MSYSTEMS DISKONCHIP G3 MTD DRIVER
7135M: Robert Jarzmik <robert.jarzmik@free.fr>
7136L: linux-mtd@lists.infradead.org
7137S: Maintained
7138F: drivers/mtd/devices/docg3*
7139
Laurent Pinchart62a37dc2013-08-09 08:46:11 -03007140MT9M032 APTINA SENSOR DRIVER
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007141M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7142L: linux-media@vger.kernel.org
7143T: git git://linuxtv.org/media_tree.git
7144S: Maintained
7145F: drivers/media/i2c/mt9m032.c
7146F: include/media/mt9m032.h
7147
Laurent Pinchart62a37dc2013-08-09 08:46:11 -03007148MT9P031 APTINA CAMERA SENSOR
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007149M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7150L: linux-media@vger.kernel.org
7151T: git git://linuxtv.org/media_tree.git
7152S: Maintained
7153F: drivers/media/i2c/mt9p031.c
7154F: include/media/mt9p031.h
7155
Laurent Pinchart62a37dc2013-08-09 08:46:11 -03007156MT9T001 APTINA CAMERA SENSOR
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007157M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7158L: linux-media@vger.kernel.org
7159T: git git://linuxtv.org/media_tree.git
7160S: Maintained
7161F: drivers/media/i2c/mt9t001.c
7162F: include/media/mt9t001.h
7163
Laurent Pinchart62a37dc2013-08-09 08:46:11 -03007164MT9V032 APTINA CAMERA SENSOR
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007165M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7166L: linux-media@vger.kernel.org
7167T: git git://linuxtv.org/media_tree.git
7168S: Maintained
Laurent Pinchartf2272e12014-01-01 14:40:35 -03007169F: Documentation/devicetree/bindings/media/i2c/mt9v032.txt
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007170F: drivers/media/i2c/mt9v032.c
7171F: include/media/mt9v032.h
7172
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07007173MULTIFUNCTION DEVICES (MFD)
Samuel Ortizf7d32102013-05-17 00:53:42 +02007174M: Lee Jones <lee.jones@linaro.org>
Lee Jones7caa7992014-07-22 13:24:38 +01007175T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07007176S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007177F: drivers/mfd/
Mark Brown55b59402013-06-28 15:14:11 +01007178F: include/linux/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07007179
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02007180MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Ulf Hanssone18eaf82014-02-19 00:01:05 +01007181M: Ulf Hansson <ulf.hansson@linaro.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07007182L: linux-mmc@vger.kernel.org
Ulf Hansson708dce32014-05-14 14:32:53 +02007183T: git git://git.linaro.org/people/ulf.hansson/mmc.git
Chris Ball245feaa2010-09-10 12:05:24 -04007184S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007185F: drivers/mmc/
7186F: include/linux/mmc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007187F: include/uapi/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01007188
David Brownell15a05802007-08-08 09:12:54 -07007189MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06007190S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007191F: drivers/mmc/host/mmc_spi.c
7192F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07007193
Linus Torvalds1da177e2005-04-16 15:20:36 -07007194MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007195M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007196S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007197F: Documentation/sound/oss/MultiSound
7198F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007199
Jiri Slabyd7354102006-12-08 02:38:35 -08007200MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02007201S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07007202F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07007203F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08007204
Felipe Balbi550a7372008-07-24 12:27:36 +03007205MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03007206M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007207L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03007208T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02007209S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007210F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03007211
Michael Krufkyea0af5f2012-10-02 00:55:41 -03007212MXL5007T MEDIA DRIVER
7213M: Michael Krufky <mkrufky@linuxtv.org>
7214L: linux-media@vger.kernel.org
7215W: http://linuxtv.org/
7216W: http://github.com/mkrufky
7217Q: http://patchwork.linuxtv.org/project/linux-media/list/
7218T: git git://linuxtv.org/mkrufky/tuners.git
7219S: Maintained
7220F: drivers/media/tuners/mxl5007t.*
7221
Brice Goglin2d3cf582008-05-17 12:45:36 +02007222MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Hyong-Youb Kim205057a2013-08-12 02:20:02 -07007223M: Hyong-Youb Kim <hykim@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02007224L: netdev@vger.kernel.org
Hyong-Youb Kim205057a2013-08-12 02:20:02 -07007225W: https://www.myricom.com/support/downloads/myri10ge.html
Brice Goglin2d3cf582008-05-17 12:45:36 +02007226S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07007227F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02007228
Linus Torvalds1da177e2005-04-16 15:20:36 -07007229NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04007230S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07007231F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007232
Daniel Mack23dc05a2011-05-18 11:28:38 +02007233NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
7234M: Daniel Mack <zonque@gmail.com>
7235S: Maintained
Jim Davise5747e42015-06-25 15:01:58 -07007236L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Daniel Mack23dc05a2011-05-18 11:28:38 +02007237W: http://www.native-instruments.com
7238F: sound/usb/caiaq/
7239
Linus Torvalds1da177e2005-04-16 15:20:36 -07007240NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07007241M: Petr Vandrovec <petr@vandrovec.name>
7242S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07007243F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007244
Finn Thaina79b0322014-05-05 15:35:30 +10007245NCR 5380 SCSI DRIVERS
7246M: Finn Thain <fthain@telegraphics.com.au>
7247M: Michael Schmitz <schmitzmic@gmail.com>
7248L: linux-scsi@vger.kernel.org
7249S: Maintained
7250F: Documentation/scsi/g_NCR5380.txt
7251F: drivers/scsi/NCR5380.*
7252F: drivers/scsi/arm/cumana_1.c
7253F: drivers/scsi/arm/oak.c
7254F: drivers/scsi/atari_NCR5380.c
7255F: drivers/scsi/atari_scsi.*
7256F: drivers/scsi/dmx3191d.c
7257F: drivers/scsi/dtc.*
7258F: drivers/scsi/g_NCR5380.*
7259F: drivers/scsi/g_NCR5380_mmio.c
7260F: drivers/scsi/mac_scsi.*
7261F: drivers/scsi/pas16.*
Finn Thaina79b0322014-05-05 15:35:30 +10007262F: drivers/scsi/sun3_scsi.*
7263F: drivers/scsi/sun3_scsi_vme.c
7264F: drivers/scsi/t128.*
7265
Linus Torvalds1da177e2005-04-16 15:20:36 -07007266NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07007267M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007268L: linux-scsi@vger.kernel.org
7269S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007270F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007271
Guenter Roeck4aa3eb42013-04-03 14:12:11 -07007272NCT6775 HARDWARE MONITOR DRIVER
7273M: Guenter Roeck <linux@roeck-us.net>
7274L: lm-sensors@lm-sensors.org
7275S: Maintained
7276F: Documentation/hwmon/nct6775
7277F: drivers/hwmon/nct6775.c
7278
Glenn Streiff3c2d7742008-02-04 20:20:45 -08007279NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07007280M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07007281L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00007282W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08007283S: Supported
7284F: drivers/infiniband/hw/nes/
7285
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07007286NETEM NETWORK EMULATOR
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08007287M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07007288L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07007289S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007290F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07007291
Jon Masonb2f5a052010-07-15 08:47:27 +00007292NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00007293M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07007294L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07007295S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007296F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00007297F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07007298F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07007299
Pablo Neira Ayusodb9cf3a2014-06-16 13:01:52 +02007300NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01007301M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07007302M: Patrick McHardy <kaber@trash.net>
Pablo Neira Ayuso42010ed2013-05-06 12:22:57 +02007303M: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
Patrick McHardy1a03b812007-09-18 13:19:26 -07007304L: netfilter-devel@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07007305L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007306W: http://www.netfilter.org/
7307W: http://www.iptables.org/
Pablo Neira Ayuso42010ed2013-05-06 12:22:57 +02007308Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/
7309T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
7310T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007311S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007312F: include/linux/netfilter*
7313F: include/linux/netfilter/
7314F: include/net/netfilter/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007315F: include/uapi/linux/netfilter*
7316F: include/uapi/linux/netfilter/
Joe Perches679655d2009-04-07 20:44:32 -07007317F: net/*/netfilter.c
7318F: net/*/netfilter/
7319F: net/netfilter/
Pablo Neira Ayuso91c269a2015-07-06 20:55:35 +02007320F: net/bridge/br_netfilter*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007321
Paul Moore4cc67732006-09-25 15:57:13 -07007322NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00007323M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07007324W: http://netlabel.sf.net
7325L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00007326S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07007327F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07007328F: include/net/netlabel.h
7329F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07007330
Linus Torvalds1da177e2005-04-16 15:20:36 -07007331NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07007332M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007333L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02007334W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007335S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007336F: include/net/netrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007337F: include/uapi/linux/netrom.h
Joe Perches679655d2009-04-07 20:44:32 -07007338F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007339
Pavel Machek5ddb88c2006-09-29 02:01:29 -07007340NETWORK BLOCK DEVICE (NBD)
Markus Pargmann4ca58292015-01-28 19:35:38 +01007341M: Markus Pargmann <mpa@pengutronix.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007342S: Maintained
Wouter Verhelst5e4b2692013-02-27 17:05:27 -08007343L: nbd-general@lists.sourceforge.net
Markus Pargmann4ca58292015-01-28 19:35:38 +01007344T: git git://git.pengutronix.de/git/mpa/linux-nbd.git
Joe Perches679655d2009-04-07 20:44:32 -07007345F: Documentation/blockdev/nbd.txt
7346F: drivers/block/nbd.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007347F: include/uapi/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007348
Neil Horman6e436502009-10-05 03:56:55 +00007349NETWORK DROP MONITOR
7350M: Neil Horman <nhorman@tuxdriver.com>
7351L: netdev@vger.kernel.org
7352S: Maintained
7353W: https://fedorahosted.org/dropwatch/
7354F: net/core/drop_monitor.c
7355
Linus Torvalds1da177e2005-04-16 15:20:36 -07007356NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07007357M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07007358L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00007359W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00007360Q: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00007361T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7362T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007363S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007364F: net/
7365F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00007366F: include/linux/in.h
7367F: include/linux/net.h
7368F: include/linux/netdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007369F: include/uapi/linux/in.h
7370F: include/uapi/linux/net.h
7371F: include/uapi/linux/netdevice.h
Nicolas Dichtel0c7aecd2015-01-15 15:11:15 +01007372F: include/uapi/linux/net_namespace.h
Tobias Klauser7e814a62014-03-11 12:06:24 +01007373F: tools/net/
Daniel Borkmannf4e53f92014-03-13 10:18:53 +01007374F: tools/testing/selftests/net/
Sasha Levin335a67d2014-03-27 02:01:34 -04007375F: lib/random32.c
Daniel Borkmanna101ccd2014-06-10 12:31:10 +02007376F: lib/test_bpf.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007377
7378NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07007379M: "David S. Miller" <davem@davemloft.net>
7380M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07007381M: James Morris <jmorris@namei.org>
7382M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
7383M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07007384L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007385T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007386S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007387F: net/ipv4/
7388F: net/ipv6/
7389F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00007390F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007391
David S. Miller73b76562012-10-16 14:08:40 -04007392NETWORKING [IPSEC]
7393M: Steffen Klassert <steffen.klassert@secunet.com>
7394M: Herbert Xu <herbert@gondor.apana.org.au>
7395M: "David S. Miller" <davem@davemloft.net>
7396L: netdev@vger.kernel.org
Steffen Klassertd1fc5022013-12-13 12:56:05 +01007397T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
7398T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
David S. Miller73b76562012-10-16 14:08:40 -04007399S: Maintained
Fan Du5826bdd2014-01-18 09:55:28 +08007400F: net/core/flow.c
David S. Miller73b76562012-10-16 14:08:40 -04007401F: net/xfrm/
7402F: net/key/
7403F: net/ipv4/xfrm*
Steffen Klassertd1fc5022013-12-13 12:56:05 +01007404F: net/ipv4/esp4.c
7405F: net/ipv4/ah4.c
7406F: net/ipv4/ipcomp.c
7407F: net/ipv4/ip_vti.c
David S. Miller73b76562012-10-16 14:08:40 -04007408F: net/ipv6/xfrm*
Steffen Klassertd1fc5022013-12-13 12:56:05 +01007409F: net/ipv6/esp6.c
7410F: net/ipv6/ah6.c
7411F: net/ipv6/ipcomp6.c
7412F: net/ipv6/ip6_vti.c
David S. Miller73b76562012-10-16 14:08:40 -04007413F: include/uapi/linux/xfrm.h
7414F: include/net/xfrm.h
7415
James Morris10e2ff12007-08-25 14:41:28 -07007416NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00007417M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07007418L: netdev@vger.kernel.org
7419S: Maintained
7420
John W. Linville29f8f632006-01-18 14:52:48 -08007421NETWORKING [WIRELESS]
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08007422L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007423Q: http://patchwork.kernel.org/project/linux-wireless/list/
John W. Linville29f8f632006-01-18 14:52:48 -08007424
Joe Perches788873a2009-04-16 09:38:45 +00007425NETWORKING DRIVERS
7426L: netdev@vger.kernel.org
7427W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00007428Q: http://patchwork.ozlabs.org/project/netdev/list/
Joe Perches08deed12012-03-23 15:01:57 -07007429T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7430T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00007431S: Odd Fixes
7432F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00007433F: include/linux/if_*
Jean Delvare0b63bf12012-10-18 22:11:38 +02007434F: include/linux/netdevice.h
Jean Delvare0b63bf12012-10-18 22:11:38 +02007435F: include/linux/etherdevice.h
7436F: include/linux/fcdevice.h
7437F: include/linux/fddidevice.h
7438F: include/linux/hippidevice.h
7439F: include/linux/inetdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007440F: include/uapi/linux/if_*
7441F: include/uapi/linux/netdevice.h
Joe Perches788873a2009-04-16 09:38:45 +00007442
John W. Linville0e324cf2014-12-17 12:07:05 -05007443NETWORKING DRIVERS (WIRELESS)
7444M: Kalle Valo <kvalo@codeaurora.org>
7445L: linux-wireless@vger.kernel.org
7446Q: http://patchwork.kernel.org/project/linux-wireless/list/
7447T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git/
7448S: Maintained
7449F: drivers/net/wireless/
7450
Amit S. Kale3d396eb2006-10-21 15:33:03 -04007451NETXEN (1/10) GbE SUPPORT
Manish Chopra86223152013-03-28 23:54:08 +00007452M: Manish Chopra <manish.chopra@qlogic.com>
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07007453M: Sony Chacko <sony.chacko@qlogic.com>
7454M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04007455L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00007456W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04007457S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07007458F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04007459
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03007460NFC SUBSYSTEM
7461M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
7462M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
7463M: Samuel Ortiz <sameo@linux.intel.com>
7464L: linux-wireless@vger.kernel.org
Dan Carpenter1eb3b212014-08-11 13:14:25 +03007465L: linux-nfc@lists.01.org (subscribers-only)
Samuel Ortiz0293ba22013-06-24 14:39:35 +02007466S: Supported
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03007467F: net/nfc/
Ilan Elias55eb94f2011-09-18 11:19:34 +03007468F: include/net/nfc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007469F: include/uapi/linux/nfc.h
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03007470F: drivers/nfc/
Marcel Holtmann08eaa1e2012-10-24 11:45:38 -07007471F: include/linux/platform_data/pn544.h
Mark A. Greer7ebb88e2014-03-10 11:56:25 -07007472F: Documentation/devicetree/bindings/net/nfc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007473
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04007474NFS, SUNRPC, AND LOCKD CLIENTS
Trond Myklebustcd7b9962013-12-04 12:29:49 -05007475M: Trond Myklebust <trond.myklebust@primarydata.com>
Trond Myklebust0e3b1372015-02-03 17:13:58 -05007476M: Anna Schumaker <anna.schumaker@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05007477L: linux-nfs@vger.kernel.org
7478W: http://client.linux-nfs.org
Trond Myklebustcd7b9962013-12-04 12:29:49 -05007479T: git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007480S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007481F: fs/lockd/
7482F: fs/nfs/
7483F: fs/nfs_common/
7484F: net/sunrpc/
7485F: include/linux/lockd/
7486F: include/linux/nfs*
7487F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007488F: include/uapi/linux/nfs*
7489F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007490
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07007491NILFS2 FILESYSTEM
Ryusuke Konishie2126932014-04-03 14:50:25 -07007492M: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09007493L: linux-nilfs@vger.kernel.org
Ryusuke Konishif9472262014-04-03 14:50:32 -07007494W: http://nilfs.sourceforge.net/
Ryusuke Konishie2126932014-04-03 14:50:25 -07007495T: git git://github.com/konis/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07007496S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007497F: Documentation/filesystems/nilfs2.txt
7498F: fs/nilfs2/
7499F: include/linux/nilfs2_fs.h
Ryusuke Konishic35c7ac2015-11-06 16:32:11 -08007500F: include/trace/events/nilfs2.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07007501
Linus Torvalds1da177e2005-04-16 15:20:36 -07007502NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007503M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007504W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7505S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007506F: Documentation/scsi/NinjaSCSI.txt
7507F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007508
7509NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007510M: GOTO Masanori <gotom@debian.or.jp>
7511M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007512W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7513S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007514F: Documentation/scsi/NinjaSCSI.txt
7515F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007516
Ley Foon Tan383b8fb2014-11-06 15:20:14 +08007517NIOS2 ARCHITECTURE
7518M: Ley Foon Tan <lftan@altera.com>
7519L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
Ley Foon Tan0094dc42015-09-08 01:50:05 +08007520T: git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
Ley Foon Tan383b8fb2014-11-06 15:20:14 +08007521S: Maintained
7522F: arch/nios2/
7523
Pali Rohár2a6afdd2015-03-29 15:35:54 +02007524NOKIA N900 POWER SUPPLY DRIVERS
7525M: Pali Rohár <pali.rohar@gmail.com>
7526S: Maintained
7527F: include/linux/power/bq2415x_charger.h
Andrew F. Davis081bab22015-09-22 14:35:06 -05007528F: include/linux/power/bq27xxx_battery.h
Pali Rohár2a6afdd2015-03-29 15:35:54 +02007529F: include/linux/power/isp1704_charger.h
7530F: drivers/power/bq2415x_charger.c
Andrew F. Davis081bab22015-09-22 14:35:06 -05007531F: drivers/power/bq27xxx_battery.c
Pali Rohár2a6afdd2015-03-29 15:35:54 +02007532F: drivers/power/isp1704_charger.c
7533F: drivers/power/rx51_battery.c
7534
Allen Hubbea1bd3ba2015-04-09 10:33:20 -04007535NTB DRIVER CORE
Jon Mason9ef6bf62014-06-19 10:44:24 -07007536M: Jon Mason <jdmason@kudzu.us>
7537M: Dave Jiang <dave.jiang@intel.com>
Allen Hubbea1bd3ba2015-04-09 10:33:20 -04007538M: Allen Hubbe <Allen.Hubbe@emc.com>
Jon Mason5e9fd732015-07-04 14:48:33 -04007539L: linux-ntb@googlegroups.com
Jon Masonfce8a7b2012-11-16 19:27:12 -07007540S: Supported
Jon Mason29844112013-07-30 16:29:48 -07007541W: https://github.com/jonmason/ntb/wiki
7542T: git git://github.com/jonmason/ntb.git
Jon Masonfce8a7b2012-11-16 19:27:12 -07007543F: drivers/ntb/
Jon Mason548c2372012-11-16 19:27:13 -07007544F: drivers/net/ntb_netdev.c
Jon Masonfce8a7b2012-11-16 19:27:12 -07007545F: include/linux/ntb.h
Allen Hubbea1bd3ba2015-04-09 10:33:20 -04007546F: include/linux/ntb_transport.h
Jon Masonfce8a7b2012-11-16 19:27:12 -07007547
Allen Hubbee26a5842015-04-09 10:33:20 -04007548NTB INTEL DRIVER
7549M: Jon Mason <jdmason@kudzu.us>
7550M: Dave Jiang <dave.jiang@intel.com>
Jon Mason5e9fd732015-07-04 14:48:33 -04007551L: linux-ntb@googlegroups.com
Allen Hubbee26a5842015-04-09 10:33:20 -04007552S: Supported
7553W: https://github.com/jonmason/ntb/wiki
7554T: git git://github.com/jonmason/ntb.git
7555F: drivers/ntb/hw/intel/
Joe Perches679655d2009-04-07 20:44:32 -07007556
7557NTFS FILESYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07007558M: Anton Altaparmakov <anton@tuxera.com>
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08007559L: linux-ntfs-dev@lists.sourceforge.net
Joe Perches8b58be82009-07-29 15:04:30 -07007560W: http://www.tuxera.com/
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01007561T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Jim Cromiece00f852006-11-30 04:49:44 +01007562S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007563F: Documentation/filesystems/ntfs.txt
7564F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007565
Tony Lindgrenf5525782009-05-28 13:23:53 -07007566NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches0e24bdd2009-10-26 16:49:40 -07007567M: Antonino Daplas <adaplas@gmail.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007568L: linux-fbdev@vger.kernel.org
7569S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09007570F: drivers/video/fbdev/riva/
7571F: drivers/video/fbdev/nvidia/
Tony Lindgrenf5525782009-05-28 13:23:53 -07007572
Matthew Wilcox79461682012-11-10 08:54:53 -05007573NVM EXPRESS DRIVER
Jay Freyenseeb3975e92015-10-28 16:37:51 +09007574M: Keith Busch <keith.busch@intel.com>
7575M: Jens Axboe <axboe@fb.com>
Matthew Wilcox79461682012-11-10 08:54:53 -05007576L: linux-nvme@lists.infradead.org
Jay Freyenseeb3975e92015-10-28 16:37:51 +09007577T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
7578W: https://kernel.googlesource.com/pub/scm/linux/kernel/git/axboe/linux-block/
Matthew Wilcox79461682012-11-10 08:54:53 -05007579S: Supported
Jay Sternberg57dacad2015-10-09 18:17:06 +02007580F: drivers/nvme/host/
Matthew Wilcox79461682012-11-10 08:54:53 -05007581F: include/linux/nvme.h
7582
Srinivas Kandagatlaaee4b9b2015-07-27 12:17:24 +01007583NVMEM FRAMEWORK
7584M: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
7585M: Maxime Ripard <maxime.ripard@free-electrons.com>
7586S: Maintained
7587F: drivers/nvmem/
7588F: Documentation/devicetree/bindings/nvmem/
7589F: include/linux/nvmem-consumer.h
7590F: include/linux/nvmem-provider.h
7591
Clément Perrochauddece4582015-03-09 11:12:04 +01007592NXP-NCI NFC DRIVER
7593M: Clément Perrochaud <clement.perrochaud@effinnov.com>
7594R: Charles Gorand <charles.gorand@effinnov.com>
7595L: linux-nfc@lists.01.org (moderated for non-subscribers)
7596S: Supported
7597F: drivers/nfc/nxp-nci
7598
Russell Kingf50d7142014-03-03 12:18:14 +00007599NXP TDA998X DRM DRIVER
7600M: Russell King <rmk+kernel@arm.linux.org.uk>
7601S: Supported
7602F: drivers/gpu/drm/i2c/tda998x_drv.c
7603F: include/drm/i2c/tda998x.h
7604
Peter Rosinfbace432014-11-08 14:40:17 +01007605NXP TFA9879 DRIVER
7606M: Peter Rosin <peda@axentia.se>
7607L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7608S: Maintained
7609F: sound/soc/codecs/tfa9879*
7610
Tony Lindgrenf5525782009-05-28 13:23:53 -07007611OMAP SUPPORT
7612M: Tony Lindgren <tony@atomide.com>
7613L: linux-omap@vger.kernel.org
7614W: http://www.muru.com/linux/omap/
7615W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08007616Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02007617T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07007618S: Maintained
Felipe Contreras4e04d5a2009-09-21 17:04:25 -07007619F: arch/arm/*omap*/
Felipe Balbi026da812015-01-19 16:13:53 -06007620F: arch/arm/configs/omap1_defconfig
7621F: arch/arm/configs/omap2plus_defconfig
Jean Delvare046d0a32012-01-12 20:32:05 +01007622F: drivers/i2c/busses/i2c-omap.c
Felipe Balbidc68cd12014-11-06 08:37:19 -06007623F: drivers/irqchip/irq-omap-intc.c
7624F: drivers/mfd/*omap*.c
7625F: drivers/mfd/menelaus.c
7626F: drivers/mfd/palmas.c
7627F: drivers/mfd/tps65217.c
7628F: drivers/mfd/tps65218.c
7629F: drivers/mfd/tps65910.c
7630F: drivers/mfd/twl-core.[ch]
7631F: drivers/mfd/twl4030*.c
7632F: drivers/mfd/twl6030*.c
7633F: drivers/mfd/twl6040*.c
7634F: drivers/regulator/palmas-regulator*.c
7635F: drivers/regulator/pbias-regulator.c
7636F: drivers/regulator/tps65217-regulator.c
7637F: drivers/regulator/tps65218-regulator.c
7638F: drivers/regulator/tps65910-regulator.c
7639F: drivers/regulator/twl-regulator.c
Jean Delvare046d0a32012-01-12 20:32:05 +01007640F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07007641
Tony Lindgren50f29fb2012-12-16 11:29:59 -08007642OMAP DEVICE TREE SUPPORT
Benoit Coussoncdb55ab2013-08-09 23:19:15 +02007643M: Benoît Cousson <bcousson@baylibre.com>
Tony Lindgren50f29fb2012-12-16 11:29:59 -08007644M: Tony Lindgren <tony@atomide.com>
7645L: linux-omap@vger.kernel.org
Grant Likelyd0fb18c2013-07-19 20:10:12 -07007646L: devicetree@vger.kernel.org
Tony Lindgren50f29fb2012-12-16 11:29:59 -08007647S: Maintained
7648F: arch/arm/boot/dts/*omap*
7649F: arch/arm/boot/dts/*am3*
Nishanth Menon05eb20f2014-10-21 09:24:22 -05007650F: arch/arm/boot/dts/*am4*
7651F: arch/arm/boot/dts/*am5*
7652F: arch/arm/boot/dts/*dra7*
Tony Lindgren50f29fb2012-12-16 11:29:59 -08007653
Tony Lindgrenf5525782009-05-28 13:23:53 -07007654OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007655M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007656L: linux-omap@vger.kernel.org
7657S: Maintained
7658F: arch/arm/*omap*/*clock*
7659
7660OMAP POWER MANAGEMENT SUPPORT
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08007661M: Kevin Hilman <khilman@deeprootsystems.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007662L: linux-omap@vger.kernel.org
7663S: Maintained
7664F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07007665F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07007666
Joe Perchesd21db562013-09-11 14:23:35 -07007667OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
Paul Walmsley692ab1f2011-03-09 18:44:28 -07007668M: Rajendra Nayak <rnayak@ti.com>
7669M: Paul Walmsley <paul@pwsan.com>
7670L: linux-omap@vger.kernel.org
7671S: Maintained
Joe Perchesd21db562013-09-11 14:23:35 -07007672F: arch/arm/mach-omap2/prm*
Paul Walmsley692ab1f2011-03-09 18:44:28 -07007673
Tony Lindgrenf5525782009-05-28 13:23:53 -07007674OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03007675M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03007676M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Jim Davise5747e42015-06-25 15:01:58 -07007677L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Tony Lindgrenf5525782009-05-28 13:23:53 -07007678L: linux-omap@vger.kernel.org
7679S: Maintained
7680F: sound/soc/omap/
7681
Tony Lindgren18640192014-11-20 09:13:42 -08007682OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
7683M: Roger Quadros <rogerq@ti.com>
7684M: Tony Lindgren <tony@atomide.com>
7685L: linux-omap@vger.kernel.org
7686S: Maintained
7687F: drivers/memory/omap-gpmc.c
7688F: arch/arm/mach-omap2/*gpmc*
7689
Tony Lindgrenf5525782009-05-28 13:23:53 -07007690OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02007691M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01007692L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07007693L: linux-omap@vger.kernel.org
7694S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09007695F: drivers/video/fbdev/omap/
Tony Lindgrenf5525782009-05-28 13:23:53 -07007696
Tomi Valkeinen676eec02010-01-07 13:18:04 +02007697OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02007698M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03007699L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02007700L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03007701S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09007702F: drivers/video/fbdev/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03007703F: Documentation/arm/OMAP/DSS
7704
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03007705OMAP HARDWARE SPINLOCK SUPPORT
7706M: Ohad Ben-Cohen <ohad@wizery.com>
7707L: linux-omap@vger.kernel.org
7708S: Maintained
7709F: drivers/hwspinlock/omap_hwspinlock.c
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03007710
Tony Lindgrenf5525782009-05-28 13:23:53 -07007711OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007712M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007713L: linux-omap@vger.kernel.org
7714S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07007715F: drivers/mmc/host/omap.c
7716
7717OMAP HS MMC SUPPORT
Venkatraman S0a4585c2012-08-17 23:59:53 +05307718L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07007719L: linux-omap@vger.kernel.org
Balaji T Kdfa5d192014-09-17 22:50:11 +05307720S: Orphan
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07007721F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07007722
7723OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007724M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007725S: Maintained
7726F: drivers/char/hw_random/omap-rng.c
7727
Paul Walmsleyf400c822010-12-06 19:08:54 -07007728OMAP HWMOD SUPPORT
Benoit Coussoncdb55ab2013-08-09 23:19:15 +02007729M: Benoît Cousson <bcousson@baylibre.com>
Paul Walmsleyf400c822010-12-06 19:08:54 -07007730M: Paul Walmsley <paul@pwsan.com>
7731L: linux-omap@vger.kernel.org
7732S: Maintained
Zhang Yanfei8fc8b122013-01-11 14:32:03 -08007733F: arch/arm/mach-omap2/omap_hwmod.*
Paul Walmsleyf400c822010-12-06 19:08:54 -07007734
Paul Walmsley8633fb32015-01-19 23:49:50 -07007735OMAP HWMOD DATA
7736M: Paul Walmsley <paul@pwsan.com>
7737L: linux-omap@vger.kernel.org
7738S: Maintained
7739F: arch/arm/mach-omap2/omap_hwmod*data*
7740
Paul Walmsleyf400c822010-12-06 19:08:54 -07007741OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
Benoit Coussoncdb55ab2013-08-09 23:19:15 +02007742M: Benoît Cousson <bcousson@baylibre.com>
Paul Walmsleyf400c822010-12-06 19:08:54 -07007743L: linux-omap@vger.kernel.org
7744S: Maintained
7745F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
7746
Laurent Pinchart0db83ce2014-06-06 12:08:59 -03007747OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03007748M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7749L: linux-media@vger.kernel.org
7750S: Maintained
Sakari Ailus7eec52d2015-03-19 01:50:22 +02007751F: Documentation/devicetree/bindings/media/ti,omap3isp.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007752F: drivers/media/platform/omap3isp/
Laurent Pinchart0db83ce2014-06-06 12:08:59 -03007753F: drivers/staging/media/omap4iss/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03007754
Tony Lindgrenf5525782009-05-28 13:23:53 -07007755OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03007756M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007757L: linux-usb@vger.kernel.org
7758L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03007759T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07007760S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07007761F: drivers/usb/*/*omap*
7762F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07007763
Kevin Hilman6d994712012-07-16 10:05:07 -07007764OMAP GPIO DRIVER
Javier Martinez Canillasa1415a82014-04-06 16:58:17 +02007765M: Javier Martinez Canillas <javier@dowhile0.org>
Santosh Shilimkar97215802014-10-13 14:16:28 -04007766M: Santosh Shilimkar <ssantosh@kernel.org>
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08007767M: Kevin Hilman <khilman@deeprootsystems.com>
Kevin Hilman6d994712012-07-16 10:05:07 -07007768L: linux-omap@vger.kernel.org
7769S: Maintained
7770F: drivers/gpio/gpio-omap.c
7771
Mark Jacksonc351e292013-10-04 09:15:01 +01007772OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
7773M: Mark Jackson <mpfj@newflow.co.uk>
7774L: linux-omap@vger.kernel.org
7775S: Maintained
7776F: arch/arm/boot/dts/am335x-nano.dts
7777
Bob Copeland0ad122d2008-07-25 19:45:18 -07007778OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007779M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07007780L: linux-karma-devel@lists.sourceforge.net
7781S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007782F: Documentation/filesystems/omfs.txt
7783F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07007784
Harald Weltec1986ee2005-11-13 16:06:29 -08007785OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007786M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08007787S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007788F: drivers/char/pcmcia/cm4000_cs.c
7789F: include/linux/cm4000_cs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007790F: include/uapi/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08007791
Harald Welte77c44ab2005-11-13 16:06:26 -08007792OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007793M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08007794S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007795F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08007796
Jonathan Corbet77d51402007-03-22 19:44:17 -03007797OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007798M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007799L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02007800T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03007801S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007802F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03007803
Thomas Gleixner431bca72007-05-02 09:31:35 +02007804ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007805M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02007806L: linux-mtd@lists.infradead.org
7807S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007808F: drivers/mtd/onenand/
7809F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02007810
Linus Torvalds1da177e2005-04-16 15:20:36 -07007811ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007812M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007813L: osst-users@lists.sourceforge.net
7814L: linux-scsi@vger.kernel.org
7815S: Maintained
Jean Delvaref7269cf2013-07-03 15:05:08 -07007816F: Documentation/scsi/osst.txt
7817F: drivers/scsi/osst.*
7818F: drivers/scsi/osst_*.h
7819F: drivers/scsi/st.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007820
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007821OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007822M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01007823L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007824S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007825F: Documentation/i2c/busses/i2c-ocores
7826F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007827
Grant Likely860c44c2009-10-26 16:49:49 -07007828OPEN FIRMWARE AND FLATTENED DEVICE TREE
Rob Herring5d3ad8a2013-12-03 10:20:16 -06007829M: Rob Herring <robh+dt@kernel.org>
Grant Likelyc8fb70a2015-08-23 13:34:08 -07007830M: Frank Rowand <frowand.list@gmail.com>
7831M: Grant Likely <grant.likely@linaro.org>
Grant Likelyd0fb18c2013-07-19 20:10:12 -07007832L: devicetree@vger.kernel.org
Rob Herringa7fefe92014-12-26 14:05:54 -06007833W: http://www.devicetree.org/
7834T: git git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux.git
Grant Likely860c44c2009-10-26 16:49:49 -07007835S: Maintained
Grant Likelyf8828202013-07-19 18:57:39 -07007836F: drivers/of/
Grant Likely860c44c2009-10-26 16:49:49 -07007837F: include/linux/of*.h
Grant Likelyf8828202013-07-19 18:57:39 -07007838F: scripts/dtc/
Grant Likely860c44c2009-10-26 16:49:49 -07007839
Grant Likelyf8828202013-07-19 18:57:39 -07007840OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
Rob Herring5d3ad8a2013-12-03 10:20:16 -06007841M: Rob Herring <robh+dt@kernel.org>
Grant Likelyf8828202013-07-19 18:57:39 -07007842M: Pawel Moll <pawel.moll@arm.com>
7843M: Mark Rutland <mark.rutland@arm.com>
Ian Campbellde809632013-08-30 09:50:42 +01007844M: Ian Campbell <ijc+devicetree@hellion.org.uk>
Kumar Galabdbff6b2013-08-08 10:51:15 -05007845M: Kumar Gala <galak@codeaurora.org>
Grant Likelyf8828202013-07-19 18:57:39 -07007846L: devicetree@vger.kernel.org
7847S: Maintained
7848F: Documentation/devicetree/
7849F: arch/*/boot/dts/
7850F: include/dt-bindings/
7851
Pantelis Antoniou2bb65f52015-03-17 22:30:57 +02007852OPEN FIRMWARE AND DEVICE TREE OVERLAYS
7853M: Pantelis Antoniou <pantelis.antoniou@konsulko.com>
7854L: devicetree@vger.kernel.org
7855S: Maintained
7856F: Documentation/devicetree/dynamic-resolution-notes.txt
7857F: Documentation/devicetree/overlay-notes.txt
7858F: drivers/of/overlay.c
7859F: drivers/of/resolver.c
7860
Jonas Bonn19f9d392011-06-04 22:00:38 +03007861OPENRISC ARCHITECTURE
7862M: Jonas Bonn <jonas@southpole.se>
7863W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02007864L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03007865S: Maintained
7866T: git git://openrisc.net/~jonas/linux
Joe Perches14430812013-09-11 14:23:50 -07007867F: arch/openrisc/
Jonas Bonn19f9d392011-06-04 22:00:38 +03007868
Jesse Grossccb13522011-10-25 19:26:31 -07007869OPENVSWITCH
Jesse Gross4f337ed2014-05-16 15:57:59 -07007870M: Pravin Shelar <pshelar@nicira.com>
Pravin B Shelarb422da72015-01-02 11:18:21 -08007871L: netdev@vger.kernel.org
Jesse Grossccb13522011-10-25 19:26:31 -07007872L: dev@openvswitch.org
7873W: http://openvswitch.org
Jesse Grossccb13522011-10-25 19:26:31 -07007874S: Maintained
7875F: net/openvswitch/
Pravin B Shelarb422da72015-01-02 11:18:21 -08007876F: include/uapi/linux/openvswitch.h
Jesse Grossccb13522011-10-25 19:26:31 -07007877
Clemens Ladischaf399172011-01-10 16:32:54 +01007878OPL4 DRIVER
7879M: Clemens Ladisch <clemens@ladisch.de>
7880L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7881T: git git://git.alsa-project.org/alsa-kernel.git
7882S: Maintained
7883F: sound/drivers/opl4/
7884
Linus Torvalds1da177e2005-04-16 15:20:36 -07007885OPROFILE
Robert Richter4cf7e712012-10-29 18:53:25 +01007886M: Robert Richter <rric@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007887L: oprofile-list@lists.sf.net
7888S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02007889F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07007890F: arch/*/oprofile/
7891F: drivers/oprofile/
7892F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007893
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007894ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07007895M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08007896M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007897L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
Mark Fasheh01945fa2015-02-27 15:51:40 -08007898W: http://ocfs2.wiki.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007899S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007900F: Documentation/filesystems/ocfs2.txt
7901F: Documentation/filesystems/dlmfs.txt
7902F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007903
Linus Torvalds1da177e2005-04-16 15:20:36 -07007904ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07007905L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02007906W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07007907W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01007908S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007909F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007910
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03007911OSD LIBRARY and FILESYSTEM
Boaz Harroshfadc0752014-10-19 19:19:57 +03007912M: Boaz Harrosh <ooo@electrozaur.com>
Benny Halevyf1f66302014-02-10 11:57:29 +02007913M: Benny Halevy <bhalevy@primarydata.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02007914L: osd-dev@open-osd.org
7915W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07007916T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02007917S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03007918F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07007919F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03007920F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02007921
Miklos Szeredief94b182014-11-20 16:39:59 +01007922OVERLAY FILESYSTEM
Neil Brown7c37fbd2014-10-24 00:14:39 +02007923M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi1d113732014-11-20 16:40:01 +01007924L: linux-unionfs@vger.kernel.org
7925T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
Neil Brown7c37fbd2014-10-24 00:14:39 +02007926S: Supported
Miklos Szeredi1d113732014-11-20 16:40:01 +01007927F: fs/overlayfs/
Neil Brown7c37fbd2014-10-24 00:14:39 +02007928F: Documentation/filesystems/overlayfs.txt
7929
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007930P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02007931M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007932L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02007933W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007934S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007935F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007936
Olof Johanssonf5cd7872007-01-31 21:43:54 -06007937PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007938M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06007939L: netdev@vger.kernel.org
7940S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07007941F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06007942
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01007943PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007944M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01007945L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01007946S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007947F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01007948
Steffen Klassert48fc2672010-08-13 10:10:46 -04007949PADATA PARALLEL EXECUTION MECHANISM
7950M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04007951L: linux-crypto@vger.kernel.org
7952S: Maintained
7953F: kernel/padata.c
7954F: include/linux/padata.h
7955F: Documentation/padata.txt
7956
Harald Welte709ee532008-09-23 17:46:57 +02007957PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007958M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05007959L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02007960S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007961F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02007962
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01007963PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07007964M: David Howells <dhowells@redhat.com>
7965M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01007966L: linux-am33-list@redhat.com (moderated for non-subscribers)
7967W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
7968S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007969F: Documentation/mn10300/
7970F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01007971
Sudip Mukherjee64dfff02015-05-20 20:57:02 +05307972PARALLEL PORT SUBSYSTEM
7973M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
7974M: Sudip Mukherjee <sudip@vectorindia.org>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07007975L: linux-parport@lists.infradead.org (subscribers-only)
Sudip Mukherjee64dfff02015-05-20 20:57:02 +05307976S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007977F: drivers/parport/
7978F: include/linux/parport*.h
7979F: drivers/char/ppdev.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007980F: include/uapi/linux/ppdev.h
Sudip Mukherjee64dfff02015-05-20 20:57:02 +05307981F: Documentation/parport*.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07007982
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007983PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08007984M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07007985M: Chris Wright <chrisw@sous-sol.org>
7986M: Alok Kataria <akataria@vmware.com>
7987M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00007988L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007989S: Supported
Luis R. Rodrigueza2e19992015-02-13 17:13:40 +10307990F: Documentation/virtual/paravirt_ops.txt
Joe Perches679655d2009-04-07 20:44:32 -07007991F: arch/*/kernel/paravirt*
7992F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007993
Linus Torvalds1da177e2005-04-16 15:20:36 -07007994PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07007995M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07007996L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007997S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007998F: Documentation/blockdev/paride.txt
7999F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008000
8001PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00008002M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05008003M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00008004L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008005W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08008006Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07008007T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Helge Dellerfbb46caa2013-05-16 21:00:16 +00008008T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008009S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008010F: arch/parisc/
Helge Deller2b6bac92013-05-30 13:48:07 +00008011F: Documentation/parisc/
Joe Perches679655d2009-04-07 20:44:32 -07008012F: drivers/parisc/
Helge Deller2b6bac92013-05-30 13:48:07 +00008013F: drivers/char/agp/parisc-agp.c
8014F: drivers/input/serio/gscps2.c
8015F: drivers/parport/parport_gsc.*
8016F: drivers/tty/serial/8250/8250_gsc.c
Jingoo Han8a61f012014-07-01 15:36:01 +09008017F: drivers/video/fbdev/sti*
Helge Deller2b6bac92013-05-30 13:48:07 +00008018F: drivers/video/console/sti*
8019F: drivers/video/logo/logo_parisc*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008020
Jim Cromie1662d322006-10-06 00:43:59 -07008021PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008022M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07008023L: lm-sensors@lm-sensors.org
8024S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008025F: Documentation/hwmon/pc87360
8026F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07008027
8028PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008029M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07008030S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008031F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07008032
Jean Delvare1ad107f2010-08-14 21:09:00 +02008033PC87427 HARDWARE MONITORING DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07008034M: Jean Delvare <jdelvare@suse.com>
Jean Delvare1ad107f2010-08-14 21:09:00 +02008035L: lm-sensors@lm-sensors.org
8036S: Maintained
8037F: Documentation/hwmon/pc87427
8038F: drivers/hwmon/pc87427.c
8039
Riku Voipiob26e0ed2009-03-03 21:37:17 +02008040PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008041M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02008042S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07008043F: drivers/leds/leds-pca9532.c
8044F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02008045
Guenter Roeck5ce914a2010-10-24 18:16:59 +02008046PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07008047M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02008048L: linux-i2c@vger.kernel.org
8049S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02008050F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02008051
Khalid Aziz3971dae2012-04-12 12:49:13 -07008052PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07008053M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07008054S: Maintained
8055F: drivers/firmware/pcdp.*
8056
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06008057PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07008058M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07008059L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06008060S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008061F: Documentation/PCI/pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06008062
Linus Torvalds1da177e2005-04-16 15:20:36 -07008063PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07008064M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07008065L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06008066Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06008067T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008068S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008069F: Documentation/PCI/
8070F: drivers/pci/
8071F: include/linux/pci*
Bjorn Helgaas6b49ee42013-10-09 14:39:08 -06008072F: arch/x86/pci/
Bjorn Helgaascad01f92014-04-05 15:07:00 -06008073F: arch/x86/kernel/quirks.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008074
Ley Foon Taneaa61112015-10-23 18:27:12 +08008075PCI DRIVER FOR ALTERA PCIE IP
8076M: Ley Foon Tan <lftan@altera.com>
8077L: rfi@lists.rocketboards.org (moderated for non-subscribers)
8078L: linux-pci@vger.kernel.org
8079S: Supported
8080F: Documentation/devicetree/bindings/pci/altera-pcie.txt
8081F: drivers/pci/host/pcie-altera.c
8082
Rob Herringb7e78172015-01-28 10:16:18 -06008083PCI DRIVER FOR ARM VERSATILE PLATFORM
8084M: Rob Herring <robh@kernel.org>
8085L: linux-pci@vger.kernel.org
8086L: linux-arm-kernel@lists.infradead.org
8087S: Maintained
8088F: Documentation/devicetree/bindings/pci/versatile.txt
8089F: drivers/pci/host/pci-versatile.c
8090
Tanmay Inamdar5f6b6cc2014-10-01 13:01:35 -06008091PCI DRIVER FOR APPLIEDMICRO XGENE
8092M: Tanmay Inamdar <tinamdar@apm.com>
8093L: linux-pci@vger.kernel.org
8094L: linux-arm-kernel@lists.infradead.org
8095S: Maintained
8096F: Documentation/devicetree/bindings/pci/xgene-pci.txt
8097F: drivers/pci/host/pci-xgene.c
8098
Minghuan Lian62d0ff832014-11-05 16:45:11 +08008099PCI DRIVER FOR FREESCALE LAYERSCAPE
8100M: Minghuan Lian <minghuan.Lian@freescale.com>
8101M: Mingkai Hu <mingkai.hu@freescale.com>
8102M: Roy Zang <tie-fei.zang@freescale.com>
8103L: linuxppc-dev@lists.ozlabs.org
8104L: linux-pci@vger.kernel.org
8105L: linux-arm-kernel@lists.infradead.org
8106S: Maintained
8107F: drivers/pci/host/*layerscape*
8108
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008109PCI DRIVER FOR IMX6
Lucas Stachf175aa22015-01-19 11:17:31 +01008110M: Richard Zhu <Richard.Zhu@freescale.com>
Lucas Stach1ba55f52014-07-31 20:16:04 +02008111M: Lucas Stach <l.stach@pengutronix.de>
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008112L: linux-pci@vger.kernel.org
8113L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8114S: Maintained
8115F: drivers/pci/host/*imx6*
8116
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -06008117PCI DRIVER FOR TI KEYSTONE
8118M: Murali Karicheri <m-karicheri2@ti.com>
8119L: linux-pci@vger.kernel.org
8120L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8121S: Maintained
8122F: drivers/pci/host/*keystone*
8123
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008124PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
8125M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8126M: Jason Cooper <jason@lakedaemon.net>
8127L: linux-pci@vger.kernel.org
8128L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8129S: Maintained
8130F: drivers/pci/host/*mvebu*
8131
Thierry Reding0447cfd2013-08-09 16:49:32 +02008132PCI DRIVER FOR NVIDIA TEGRA
8133M: Thierry Reding <thierry.reding@gmail.com>
8134L: linux-tegra@vger.kernel.org
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008135L: linux-pci@vger.kernel.org
Thierry Reding0447cfd2013-08-09 16:49:32 +02008136S: Supported
8137F: Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
8138F: drivers/pci/host/pci-tegra.c
8139
Kishon Vijay Abraham I47ff3de2014-07-22 15:23:45 -06008140PCI DRIVER FOR TI DRA7XX
8141M: Kishon Vijay Abraham I <kishon@ti.com>
8142L: linux-omap@vger.kernel.org
8143L: linux-pci@vger.kernel.org
8144S: Supported
8145F: Documentation/devicetree/bindings/pci/ti-pci.txt
8146F: drivers/pci/host/pci-dra7xx.c
8147
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008148PCI DRIVER FOR RENESAS R-CAR
8149M: Simon Horman <horms@verge.net.au>
8150L: linux-pci@vger.kernel.org
8151L: linux-sh@vger.kernel.org
8152S: Maintained
8153F: drivers/pci/host/*rcar*
8154
Jingoo Han4af82252013-09-12 20:29:24 +09008155PCI DRIVER FOR SAMSUNG EXYNOS
Jingoo Hanb7701752015-05-14 15:17:07 -07008156M: Jingoo Han <jingoohan1@gmail.com>
Jingoo Han4af82252013-09-12 20:29:24 +09008157L: linux-pci@vger.kernel.org
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008158L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8159L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Jingoo Han4af82252013-09-12 20:29:24 +09008160S: Maintained
8161F: drivers/pci/host/pci-exynos.c
8162
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008163PCI DRIVER FOR SYNOPSIS DESIGNWARE
Jingoo Hanb7701752015-05-14 15:17:07 -07008164M: Jingoo Han <jingoohan1@gmail.com>
Pratyush Anand110baab2015-04-30 09:46:07 +05308165M: Pratyush Anand <pratyush.anand@gmail.com>
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008166L: linux-pci@vger.kernel.org
8167S: Maintained
8168F: drivers/pci/host/*designware*
8169
Will Deaconcf288552014-05-01 12:04:28 +01008170PCI DRIVER FOR GENERIC OF HOSTS
8171M: Will Deacon <will.deacon@arm.com>
8172L: linux-pci@vger.kernel.org
8173L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8174S: Maintained
8175F: Documentation/devicetree/bindings/pci/host-generic-pci.txt
8176F: drivers/pci/host/pci-host-generic.c
8177
Pratyush Anand51b66a62014-02-11 11:39:26 +05308178PCIE DRIVER FOR ST SPEAR13XX
Pratyush Anand110baab2015-04-30 09:46:07 +05308179M: Pratyush Anand <pratyush.anand@gmail.com>
Pratyush Anand51b66a62014-02-11 11:39:26 +05308180L: linux-pci@vger.kernel.org
Pratyush Anand110baab2015-04-30 09:46:07 +05308181S: Maintained
Pratyush Anand51b66a62014-02-11 11:39:26 +05308182F: drivers/pci/host/*spear*
8183
Ley Foon Tanaf1169b2015-10-23 18:27:13 +08008184PCI MSI DRIVER FOR ALTERA MSI IP
8185M: Ley Foon Tan <lftan@altera.com>
8186L: rfi@lists.rocketboards.org (moderated for non-subscribers)
8187L: linux-pci@vger.kernel.org
8188S: Supported
8189F: Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
8190F: drivers/pci/host/pcie-altera-msi.c
8191
Duc Dangdcd19de2015-06-05 15:56:34 -05008192PCI MSI DRIVER FOR APPLIEDMICRO XGENE
8193M: Duc Dang <dhdang@apm.com>
8194L: linux-pci@vger.kernel.org
8195L: linux-arm-kernel@lists.infradead.org
8196S: Maintained
8197F: Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
8198F: drivers/pci/host/pci-xgene-msi.c
8199
Zhou Wang500a1d92015-10-29 20:02:51 -05008200PCIE DRIVER FOR HISILICON
8201M: Zhou Wang <wangzhou1@hisilicon.com>
8202L: linux-pci@vger.kernel.org
8203S: Maintained
8204F: Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
8205F: drivers/pci/host/pcie-hisi.c
8206
Linus Torvalds1da177e2005-04-16 15:20:36 -07008207PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07008208P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07008209L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08008210W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07008211T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07008212S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008213F: Documentation/pcmcia/
8214F: drivers/pcmcia/
8215F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008216
8217PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08008218M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07008219L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008220S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07008221F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008222
Steffen Klassert48fc2672010-08-13 10:10:46 -04008223PCRYPT PARALLEL CRYPTO ENGINE
8224M: Steffen Klassert <steffen.klassert@secunet.com>
8225L: linux-crypto@vger.kernel.org
8226S: Maintained
8227F: crypto/pcrypt.c
8228F: include/crypto/pcrypt.h
8229
Tejun Heoe72df0b2010-12-10 17:02:49 +01008230PER-CPU MEMORY ALLOCATOR
8231M: Tejun Heo <tj@kernel.org>
8232M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01008233T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
8234S: Maintained
8235F: include/linux/percpu*.h
8236F: mm/percpu*.c
8237F: arch/*/include/asm/percpu.h
8238
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07008239PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07008240M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07008241S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008242F: include/linux/delayacct.h
8243F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07008244
Ingo Molnar57c0c152009-09-21 12:20:38 +02008245PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008246M: Peter Zijlstra <a.p.zijlstra@chello.nl>
Ingo Molnardd9b2382012-03-19 21:03:46 +01008247M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melof80c5392014-03-27 17:36:14 -03008248M: Arnaldo Carvalho de Melo <acme@kernel.org>
Ingo Molnar981c3a42014-01-21 10:59:20 +01008249L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008250T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10008251S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09008252F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02008253F: include/linux/perf_event.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008254F: include/uapi/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01008255F: arch/*/kernel/perf_event*.c
8256F: arch/*/kernel/*/perf_event*.c
8257F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02008258F: arch/*/include/asm/perf_event.h
Vincent Legolla0032362009-10-13 14:48:14 +02008259F: arch/*/kernel/perf_callchain.c
8260F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10008261
Jim Cromiedd49d0f2006-03-24 18:08:17 +01008262PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07008263M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01008264L: linux-abi-devel@lists.sourceforge.net
8265S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008266F: include/linux/personality.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008267F: include/uapi/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01008268
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00008269PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00008270M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00008271S: Supported
8272F: Documentation/networking/phonet.txt
8273F: include/linux/phonet.h
8274F: include/net/phonet/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008275F: include/uapi/linux/phonet.h
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00008276F: net/phonet/
8277
Linus Torvalds1da177e2005-04-16 15:20:36 -07008278PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008279M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008280L: linux-mtd@lists.infradead.org
8281S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008282F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008283
Bruno Prémontefdbb102012-07-30 21:39:03 +02008284PICOLCD HID DRIVER
8285M: Bruno Prémont <bonbons@linux-vserver.org>
8286L: linux-input@vger.kernel.org
8287S: Maintained
8288F: drivers/hid/hid-picolcd*
8289
Jamie Ilesa53bfa02011-12-12 20:28:42 +00008290PICOXCELL SUPPORT
8291M: Jamie Iles <jamie@jamieiles.com>
8292L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8293T: git git://github.com/jamieiles/linux-2.6-ji.git
8294S: Supported
Joe Perchesb8733982014-08-08 14:25:12 -07008295F: arch/arm/boot/dts/picoxcell*
Joe Perches14430812013-09-11 14:23:50 -07008296F: arch/arm/mach-picoxcell/
Joe Perchesb8733982014-08-08 14:25:12 -07008297F: drivers/crypto/picoxcell*
Jamie Ilesa53bfa02011-12-12 20:28:42 +00008298
Linus Walleij2744e8a2011-05-02 20:50:54 +02008299PIN CONTROL SUBSYSTEM
8300M: Linus Walleij <linus.walleij@linaro.org>
David Cohenc11f0422014-10-16 19:06:59 -07008301L: linux-gpio@vger.kernel.org
Linus Walleijdbe752a2015-01-19 11:27:19 +01008302T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
Linus Walleij2744e8a2011-05-02 20:50:54 +02008303S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07008304F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02008305F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02008306
Jean-Christophe PLAGNIOL-VILLARD2201bbb2012-10-27 19:53:12 +02008307PIN CONTROLLER - ATMEL AT91
8308M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
8309L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8310S: Maintained
Alexandre Bellonic654b6b2014-10-17 11:49:40 +02008311F: drivers/pinctrl/pinctrl-at91.*
Jean-Christophe PLAGNIOL-VILLARD2201bbb2012-10-27 19:53:12 +02008312
Ludovic Desroches33d36902015-09-16 17:36:59 +02008313PIN CONTROLLER - ATMEL AT91 PIO4
8314M: Ludovic Desroches <ludovic.desroches@atmel.com>
8315L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8316L: linux-gpio@vger.kernel.org
8317S: Supported
8318F: drivers/pinctrl/pinctrl-at91-pio4.*
8319
Mika Westerbergcbd1b652014-10-24 15:16:53 +03008320PIN CONTROLLER - INTEL
8321M: Mika Westerberg <mika.westerberg@linux.intel.com>
8322M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
8323S: Maintained
8324F: drivers/pinctrl/intel/
Viresh Kumardeda8282012-03-28 22:27:07 +05308325
Laurent Pinchart9963b532014-07-02 16:33:31 +02008326PIN CONTROLLER - RENESAS
8327M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8328L: linux-sh@vger.kernel.org
8329S: Maintained
8330F: drivers/pinctrl/sh-pfc/
8331
Doug Andersonb75e60d2013-06-16 15:17:46 -07008332PIN CONTROLLER - SAMSUNG
Tomasz Figafea685e2014-08-26 16:30:53 +02008333M: Tomasz Figa <tomasz.figa@gmail.com>
Doug Andersonb75e60d2013-06-16 15:17:46 -07008334L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8335L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8336S: Maintained
Sachin Kamat9b5b33f2014-07-11 14:29:50 +05308337F: drivers/pinctrl/samsung/
Doug Andersonb75e60d2013-06-16 15:17:46 -07008338
Viresh Kumardeda8282012-03-28 22:27:07 +05308339PIN CONTROLLER - ST SPEAR
Viresh Kumarda899472015-07-17 16:23:50 -07008340M: Viresh Kumar <vireshk@kernel.org>
Viresh Kumardeda8282012-03-28 22:27:07 +05308341L: spear-devel@list.st.com
8342L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8343W: http://www.st.com/spear
8344S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02008345F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05308346
Peter Osterlund249a6772005-09-27 21:45:30 -07008347PKTCDVD DRIVER
Jiri Kosinae5f64502015-08-09 09:11:34 +02008348M: Jiri Kosina <jikos@kernel.org>
Peter Osterlund249a6772005-09-27 21:45:30 -07008349S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008350F: drivers/block/pktcdvd.c
8351F: include/linux/pktcdvd.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008352F: include/uapi/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07008353
GuanXuetaob31d8272011-01-16 00:35:49 +08008354PKUNITY SOC DRIVERS
8355M: Guan Xuetao <gxt@mprc.pku.edu.cn>
8356W: http://mprc.pku.edu.cn/~guanxuetao/linux
8357S: Maintained
Guan Xuetaoceebf4d2014-05-27 07:53:10 +08008358T: git git://github.com/gxt/linux.git
GuanXuetaob31d8272011-01-16 00:35:49 +08008359F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08008360F: drivers/i2c/busses/i2c-puv3.c
Jingoo Han8a61f012014-07-01 15:36:01 +09008361F: drivers/video/fbdev/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08008362F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08008363
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07008364PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07008365M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07008366L: lm-sensors@lm-sensors.org
8367W: http://www.lm-sensors.org/
8368W: http://www.roeck-us.net/linux/drivers/
8369T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8370S: Maintained
8371F: Documentation/hwmon/pmbus
8372F: drivers/hwmon/pmbus/
8373F: include/linux/i2c/pmbus.h
8374
Anil Ravindranath89a36812009-08-25 17:35:18 -07008375PMC SIERRA MaxRAID DRIVER
Anil Ravindranath89a36812009-08-25 17:35:18 -07008376L: linux-scsi@vger.kernel.org
8377W: http://www.pmc-sierra.com/
Joe Perches3cdea4d712015-09-09 15:36:14 -07008378S: Orphan
Anil Ravindranath89a36812009-08-25 17:35:18 -07008379F: drivers/scsi/pmcraid.*
8380
jack wangdbf9bfe2009-10-14 16:19:21 +08008381PMC SIERRA PM8001 DRIVER
Jack Wangd32477e2015-07-29 12:02:50 +02008382M: Jack Wang <jinpu.wang@profitbricks.com>
jack wangdbf9bfe2009-10-14 16:19:21 +08008383M: lindar_liu@usish.com
Suresh Thiagarajanf5a7b522014-07-30 17:37:43 +05308384L: pmchba@pmcs.com
jack wangdbf9bfe2009-10-14 16:19:21 +08008385L: linux-scsi@vger.kernel.org
8386S: Supported
8387F: drivers/scsi/pm8001/
8388
Linus Torvalds1da177e2005-04-16 15:20:36 -07008389POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07008390M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar981c3a42014-01-21 10:59:20 +01008391L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008392T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner5cee9642014-06-22 12:06:40 +02008393S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008394F: fs/timerfd.c
8395F: include/linux/timer*
Thomas Gleixner5cee9642014-06-22 12:06:40 +02008396F: kernel/time/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008397
Anton Vorontsov3be86142007-07-15 04:43:36 +04008398POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Sebastian Reichelad8464a2014-07-16 20:14:30 +02008399M: Sebastian Reichel <sre@kernel.org>
Dmitry Eremin-Solenikov57318932014-01-21 03:33:09 +04008400M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008401M: David Woodhouse <dwmw2@infradead.org>
Sebastian Reichelad8464a2014-07-16 20:14:30 +02008402L: linux-pm@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07008403T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04008404S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008405F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07008406F: drivers/power/
Sebastian Reichel26305022015-07-24 23:11:28 +02008407X: drivers/power/avs/
Anton Vorontsov3be86142007-07-15 04:43:36 +04008408
Mark Rutland514f1612015-07-31 15:46:20 +01008409POWER STATE COORDINATION INTERFACE (PSCI)
8410M: Mark Rutland <mark.rutland@arm.com>
8411M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
8412L: linux-arm-kernel@lists.infradead.org
8413S: Maintained
8414F: drivers/firmware/psci.c
8415F: include/linux/psci.h
8416F: include/uapi/linux/psci.h
8417
Linus Torvalds1da177e2005-04-16 15:20:36 -07008418PNP SUPPORT
Joe Perches9c3646d2015-06-25 15:02:00 -07008419M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008420S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008421F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008422
8423PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07008424M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008425L: linux-ppp@vger.kernel.org
8426S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07008427F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008428
8429PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07008430M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008431S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008432F: net/atm/pppoatm.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008433F: include/uapi/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008434
8435PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07008436M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008437S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07008438F: drivers/net/ppp/pppoe.c
8439F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008440
James Chapmana6d23702007-06-27 15:53:17 -07008441PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07008442M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07008443S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07008444F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07008445F: include/linux/if_pppol2tp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008446F: include/uapi/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07008447
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07008448PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07008449M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07008450W: http://wiki.enneenne.com/index.php/LinuxPPS_support
8451L: linuxpps@ml.enneenne.com (subscribers-only)
8452S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07008453F: Documentation/pps/
8454F: drivers/pps/
8455F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07008456
Harry Wei71a6d0a2011-05-11 15:13:33 -07008457PPTP DRIVER
8458M: Dmitry Kozlov <xeb@mail.ru>
8459L: netdev@vger.kernel.org
8460S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07008461F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07008462W: http://sourceforge.net/projects/accel-pptp
8463
Linus Torvalds1da177e2005-04-16 15:20:36 -07008464PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07008465M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008466L: kpreempt-tech@lists.sourceforge.net
8467W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
8468S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008469F: Documentation/preempt-locking.txt
8470F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008471
8472PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008473M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07008474L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04008475W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04008476S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07008477F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008478
Masakazu Mokuno02c18892007-07-05 20:11:16 +09008479PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00008480M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09008481L: netdev@vger.kernel.org
Michael Ellermana14ab6b2015-05-01 13:20:25 +10008482L: linuxppc-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00008483S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07008484F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09008485
Geoff Levandf58a9d12006-11-23 00:46:51 +01008486PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00008487M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10008488L: linuxppc-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00008489S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008490F: arch/powerpc/boot/ps3*
8491F: arch/powerpc/include/asm/lv1call.h
8492F: arch/powerpc/include/asm/ps3*.h
8493F: arch/powerpc/platforms/ps3/
8494F: drivers/*/ps3*
8495F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00008496F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07008497F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00008498F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01008499
Jim Pariscffb4add2009-01-06 11:32:10 +00008500PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008501M: Jim Paris <jim@jtan.com>
Geoff Levand3715a5d2015-06-10 18:00:18 +00008502M: Geoff Levand <geoff@infradead.org>
Michael Ellermana14ab6b2015-05-01 13:20:25 +10008503L: linuxppc-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00008504S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07008505F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00008506
Anton Vorontsov8defe592012-08-03 18:07:20 -07008507PSTORE FILESYSTEM
Anton Vorontsov9d5e2a02013-06-09 09:41:23 -07008508M: Anton Vorontsov <anton@enomsg.org>
Anton Vorontsov8defe592012-08-03 18:07:20 -07008509M: Colin Cross <ccross@android.com>
8510M: Kees Cook <keescook@chromium.org>
8511M: Tony Luck <tony.luck@intel.com>
8512S: Maintained
8513T: git git://git.infradead.org/users/cbou/linux-pstore.git
8514F: fs/pstore/
8515F: include/linux/pstore*
Matt Fleming04851772013-02-08 15:48:51 +00008516F: drivers/firmware/efi/efi-pstore.c
Anton Vorontsov8defe592012-08-03 18:07:20 -07008517F: drivers/acpi/apei/erst.c
8518
Richard Cochran7fbc4152012-03-10 01:55:53 +00008519PTP HARDWARE CLOCK SUPPORT
8520M: Richard Cochran <richardcochran@gmail.com>
Jiri Bence7333e32013-03-26 04:01:12 +00008521L: netdev@vger.kernel.org
Richard Cochran7fbc4152012-03-10 01:55:53 +00008522S: Maintained
8523W: http://linuxptp.sourceforge.net/
8524F: Documentation/ABI/testing/sysfs-ptp
8525F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07008526F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00008527F: drivers/net/phy/dp83640*
8528F: drivers/ptp/*
8529F: include/linux/ptp_cl*
8530
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07008531PTRACE SUPPORT
Richard Weinbergere846ee52014-08-08 14:23:46 -07008532M: Roland McGrath <roland@hack.frob.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008533M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07008534S: Maintained
8535F: include/asm-generic/syscall.h
8536F: include/linux/ptrace.h
8537F: include/linux/regset.h
8538F: include/linux/tracehook.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008539F: include/uapi/linux/ptrace.h
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07008540F: kernel/ptrace.c
8541
Michael Krufky83202042006-07-03 00:24:18 -07008542PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008543M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03008544L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008545L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07008546W: http://www.isely.net/pvrusb2/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008547T: git git://linuxtv.org/media_tree.git
Michael Krufky83202042006-07-03 00:24:18 -07008548S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008549F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008550F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07008551
Hans de Goede39532e62012-11-04 17:05:59 -03008552PWC WEBCAM DRIVER
8553M: Hans de Goede <hdegoede@redhat.com>
8554L: linux-media@vger.kernel.org
8555T: git git://linuxtv.org/media_tree.git
8556S: Maintained
8557F: drivers/media/usb/pwc/*
8558
Kamil Debski93c090b2014-08-20 11:29:23 +02008559PWM FAN DRIVER
8560M: Kamil Debski <k.debski@samsung.com>
8561L: lm-sensors@lm-sensors.org
8562S: Supported
8563F: Documentation/devicetree/bindings/hwmon/pwm-fan.txt
8564F: Documentation/hwmon/pwm-fan
8565F: drivers/hwmon/pwm-fan.c
8566
Thierry Reding200efed2012-03-27 13:16:18 +02008567PWM SUBSYSTEM
Thierry Redingaa3495f2013-05-06 12:50:36 +02008568M: Thierry Reding <thierry.reding@gmail.com>
8569L: linux-pwm@vger.kernel.org
Sascha Hauer0c2498f2011-01-28 09:40:40 +01008570S: Maintained
Thierry Reding006e8542013-11-01 11:15:05 +01008571T: git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
Thierry Reding200efed2012-03-27 13:16:18 +02008572F: Documentation/pwm.txt
8573F: Documentation/devicetree/bindings/pwm/
8574F: include/linux/pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01008575F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07008576F: drivers/video/backlight/pwm_bl.c
8577F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01008578
Eric Miao30ec2612008-06-12 15:21:41 -07008579PXA2xx/PXA3xx SUPPORT
Robert Jarzmik8da5e302014-09-24 23:08:00 +02008580M: Daniel Mack <daniel@zonque.org>
Haojian Zhuanga323f662012-03-14 18:33:07 +08008581M: Haojian Zhuang <haojian.zhuang@gmail.com>
Robert Jarzmik8da5e302014-09-24 23:08:00 +02008582M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -07008583L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08008584T: git git://github.com/hzhuang1/linux.git
Robert Jarzmik8da5e302014-09-24 23:08:00 +02008585T: git git://github.com/rjarzmik/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008586S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008587F: arch/arm/mach-pxa/
Robert Jarzmik820439f2015-05-25 23:29:19 +02008588F: drivers/dma/pxa*
Joe Perches679655d2009-04-07 20:44:32 -07008589F: drivers/pcmcia/pxa2xx*
Joe Perches9df92e62012-01-10 15:09:06 -08008590F: drivers/spi/spi-pxa2xx*
Joe Perchesfaf2e1d2014-08-08 14:26:18 -07008591F: drivers/usb/gadget/udc/pxa2*
Joe Perches679655d2009-04-07 20:44:32 -07008592F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01008593F: sound/arm/pxa*
Joe Perches14430812013-09-11 14:23:50 -07008594F: sound/soc/pxa/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008595
Ezequiel Garciaec64d3b2013-12-04 15:28:46 -08008596PXA3xx NAND FLASH DRIVER
8597M: Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
8598L: linux-mtd@lists.infradead.org
8599S: Maintained
Joe Perches9a67f092014-08-08 14:25:10 -07008600F: drivers/mtd/nand/pxa3xx_nand.c
Ezequiel Garciaec64d3b2013-12-04 15:28:46 -08008601
Haojian Zhuang3f640c62011-12-09 09:58:41 +08008602MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07008603M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08008604M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08008605L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08008606T: git git://github.com/hzhuang1/linux.git
8607T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08008608S: Maintained
Haojian Zhuang3f640c62011-12-09 09:58:41 +08008609F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08008610
Pierre Ossman272f1332007-05-14 21:25:26 +02008611PXA MMCI DRIVER
8612S: Orphan
8613
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08008614PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008615M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08008616L: rtc-linux@googlegroups.com
8617S: Maintained
8618
Tadeusz Strukcea40012014-06-05 13:44:39 -07008619QAT DRIVER
Joe Perches49e7d9d2015-04-15 16:17:31 -07008620M: Tadeusz Struk <tadeusz.struk@intel.com>
8621L: qat-linux@intel.com
8622S: Supported
8623F: drivers/crypto/qat/
Tadeusz Strukcea40012014-06-05 13:44:39 -07008624
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07008625QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04008626M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07008627L: linux-rdma@vger.kernel.org
8628S: Supported
8629F: drivers/infiniband/hw/qib/
8630
Jes Sorensen5e9772b2010-06-30 15:37:38 +02008631QLOGIC QLA1280 SCSI DRIVER
8632M: Michael Reed <mdr@sgi.com>
8633L: linux-scsi@vger.kernel.org
8634S: Maintained
8635F: drivers/scsi/qla1280.[ch]
8636
Linus Torvalds1da177e2005-04-16 15:20:36 -07008637QLOGIC QLA2XXX FC-SCSI DRIVER
Saurav Kashyap2c804eb2013-10-30 03:38:28 -04008638M: qla2xxx-upstream@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07008639L: linux-scsi@vger.kernel.org
8640S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008641F: Documentation/scsi/LICENSE.qla2xxx
8642F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008643
Ravi Anand883c98f2010-04-28 11:45:49 +05308644QLOGIC QLA4XXX iSCSI DRIVER
Nilesh Javali1018b8b2015-01-07 00:49:23 -05008645M: QLogic-Storage-Upstream@qlogic.com
Ravi Anand883c98f2010-04-28 11:45:49 +05308646L: linux-scsi@vger.kernel.org
8647S: Supported
Vikas Chaudharybacfb812013-07-11 02:09:43 -04008648F: Documentation/scsi/LICENSE.qla4xxx
Ravi Anand883c98f2010-04-28 11:45:49 +05308649F: drivers/scsi/qla4xxx/
8650
Ron Mercer5a4faa872006-07-25 00:40:21 -07008651QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00008652M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008653M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa872006-07-25 00:40:21 -07008654M: linux-driver@qlogic.com
8655L: netdev@vger.kernel.org
8656S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008657F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07008658F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07008659
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00008660QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Shahed Shaikh9f35a3c2014-08-27 12:43:21 -04008661M: Dept-GELinuxNICDev@qlogic.com
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00008662L: netdev@vger.kernel.org
8663S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07008664F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00008665
Ron Mercerc4e84bd2008-09-18 11:56:28 -04008666QLOGIC QLGE 10Gb ETHERNET DRIVER
Harish Patilc9b1a5b2014-09-18 17:27:25 -04008667M: Harish Patil <harish.patil@qlogic.com>
8668M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
8669M: Dept-GELinuxNICDev@qlogic.com
Joe Perches4cbfbe22009-07-29 15:04:21 -07008670M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04008671L: netdev@vger.kernel.org
8672S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07008673F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04008674
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02008675QLOGIC QL4xxx ETHERNET DRIVER
8676M: Yuval Mintz <Yuval.Mintz@qlogic.com>
8677M: Ariel Elior <Ariel.Elior@qlogic.com>
8678M: everest-linux-l2@qlogic.com
8679L: netdev@vger.kernel.org
8680S: Supported
8681F: drivers/net/ethernet/qlogic/qed/
8682F: include/linux/qed/
8683F: drivers/net/ethernet/qlogic/qede/
8684
Linus Torvalds1da177e2005-04-16 15:20:36 -07008685QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008686M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008687W: http://www.alarsen.net/linux/qnx4fs/
8688S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07008689F: fs/qnx4/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008690F: include/uapi/linux/qnx4_fs.h
8691F: include/uapi/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008692
Antti Palosaari91952bc2012-10-01 12:28:46 -03008693QT1010 MEDIA DRIVER
8694M: Antti Palosaari <crope@iki.fi>
8695L: linux-media@vger.kernel.org
8696W: http://linuxtv.org/
8697W: http://palosaari.fi/linux/
8698Q: http://patchwork.linuxtv.org/project/linux-media/list/
8699T: git git://linuxtv.org/anttip/media_tree.git
8700S: Maintained
8701F: drivers/media/tuners/qt1010*
8702
Sujith Manoharan966fb5e2013-11-06 10:43:27 +05308703QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
8704M: QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
8705L: linux-wireless@vger.kernel.org
8706L: ath9k-devel@lists.ath9k.org
8707W: http://wireless.kernel.org/en/users/Drivers/ath9k
8708S: Supported
8709F: drivers/net/wireless/ath/ath9k/
8710
Kalle Valo2ea0ffc2013-07-22 12:22:19 +03008711QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
8712M: Kalle Valo <kvalo@qca.qualcomm.com>
8713L: ath10k@lists.infradead.org
8714W: http://wireless.kernel.org/en/users/Drivers/ath10k
8715T: git git://github.com/kvalo/ath.git
8716S: Supported
8717F: drivers/net/wireless/ath/ath10k/
8718
Richard Kuo4f4567c2011-10-31 18:56:38 -05008719QUALCOMM HEXAGON ARCHITECTURE
8720M: Richard Kuo <rkuo@codeaurora.org>
8721L: linux-hexagon@vger.kernel.org
8722S: Supported
8723F: arch/hexagon/
8724
Eugene Krasnikov8e84c252013-10-08 21:25:58 +01008725QUALCOMM WCN36XX WIRELESS DRIVER
8726M: Eugene Krasnikov <k.eugene.e@gmail.com>
8727L: wcn36xx@lists.infradead.org
8728W: http://wireless.kernel.org/en/users/Drivers/wcn36xx
8729T: git git://github.com/KrasnikovEugene/wcn36xx.git
8730S: Supported
8731F: drivers/net/wireless/ath/wcn36xx/
8732
Yehuda Sadeh602adf42010-08-12 16:11:25 -07008733RADOS BLOCK DEVICE (RBD)
Sage Weil0f5417c2015-02-19 10:10:40 -08008734M: Ilya Dryomov <idryomov@gmail.com>
8735M: Sage Weil <sage@redhat.com>
Alex Elder527a88b2013-12-26 08:37:43 -06008736M: Alex Elder <elder@kernel.org>
Sage Weil398ecff52015-07-09 11:46:14 -04008737L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07008738W: http://ceph.com/
8739T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil6e67b7a2015-07-09 11:47:37 -04008740T: git git://github.com/ceph/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07008741S: Supported
Sage Weil398ecff52015-07-09 11:46:14 -04008742F: Documentation/ABI/testing/sysfs-bus-rbd
Yehuda Sadeh602adf42010-08-12 16:11:25 -07008743F: drivers/block/rbd.c
8744F: drivers/block/rbd_types.h
8745
Linus Torvalds1da177e2005-04-16 15:20:36 -07008746RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008747M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008748L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008749S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09008750F: drivers/video/fbdev/aty/radeon*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008751F: include/uapi/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008752
Hans de Goedec6c9b342012-11-04 17:03:58 -03008753RADIOSHARK RADIO DRIVER
8754M: Hans de Goede <hdegoede@redhat.com>
8755L: linux-media@vger.kernel.org
8756T: git git://linuxtv.org/media_tree.git
8757S: Maintained
8758F: drivers/media/radio/radio-shark.c
8759
8760RADIOSHARK2 RADIO DRIVER
8761M: Hans de Goede <hdegoede@redhat.com>
8762L: linux-media@vger.kernel.org
8763T: git git://linuxtv.org/media_tree.git
8764S: Maintained
8765F: drivers/media/radio/radio-shark2.c
8766F: drivers/media/radio/radio-tea5777.c
8767
Linus Torvalds1da177e2005-04-16 15:20:36 -07008768RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008769M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008770L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008771S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09008772F: drivers/video/fbdev/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008773
Randy Dunlape7839f22008-10-12 16:11:45 -07008774RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07008775P: rt2x00 project
Stanislaw Gruszkab1824272014-09-28 14:03:06 +02008776M: Stanislaw Gruszka <sgruszka@redhat.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01008777M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07008778L: linux-wireless@vger.kernel.org
Ivo van Doorn95ea3622007-09-25 17:57:13 -07008779S: Maintained
8780F: drivers/net/wireless/rt2x00/
8781
Nick Piggin9db55792008-02-08 04:19:49 -08008782RAMDISK RAM BLOCK DEVICE DRIVER
Ross Zwislerea7618e2015-03-17 12:56:30 -06008783M: Jens Axboe <axboe@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08008784S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008785F: Documentation/blockdev/ramdisk.txt
8786F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08008787
Matt Mackall9e95ce22005-04-16 15:25:56 -07008788RANDOM NUMBER DRIVER
Christoph Hellwig0624bca2014-04-25 01:12:01 -07008789M: "Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07008790S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008791F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07008792
Matt Porter394b7012005-11-07 01:00:15 -08008793RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008794M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08008795M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08008796S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008797F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08008798
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008799RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008800L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04008801S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07008802F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008803
8804RCUTORTURE MODULE
Josh Triplette0198b22014-07-30 16:08:42 -07008805M: Josh Triplett <josh@joshtriplett.org>
Joe Perches8b58be82009-07-29 15:04:30 -07008806M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +01008807L: linux-kernel@vger.kernel.org
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08008808S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07008809T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07008810F: Documentation/RCU/torture.txt
Joe Perches34e2d562014-07-03 15:08:00 -07008811F: kernel/rcu/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008812
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -07008813RCUTORTURE TEST FRAMEWORK
8814M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyab0afd62014-06-03 08:17:06 -07008815M: Josh Triplett <josh@joshtriplett.org>
Paul E. McKenney4632a192014-05-30 15:37:24 -07008816R: Steven Rostedt <rostedt@goodmis.org>
8817R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Lai Jiangshan96a39bc2015-07-01 15:26:27 +08008818R: Lai Jiangshan <jiangshanlai@gmail.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +01008819L: linux-kernel@vger.kernel.org
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -07008820S: Supported
8821T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8822F: tools/testing/selftests/rcutorture
8823
Florian Fainellic1f766b2008-02-06 22:39:44 +01008824RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07008825M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01008826S: Maintained
8827
Florian Fainellidb17f392007-12-19 11:30:30 +01008828RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008829M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f392007-12-19 11:30:30 +01008830L: netdev@vger.kernel.org
8831S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07008832F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01008833
Andy Grovera09ed662009-02-24 15:30:41 +00008834RDS - RELIABLE DATAGRAM SOCKETS
Venkat Venkatsubra8a85ac42014-01-30 13:28:47 -08008835M: Chien Yen <chien.yen@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00008836L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00008837S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008838F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00008839
Josh Triplett595182b2006-10-04 02:17:21 -07008840READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07008841M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyab0afd62014-06-03 08:17:06 -07008842M: Josh Triplett <josh@joshtriplett.org>
Paul E. McKenney4632a192014-05-30 15:37:24 -07008843R: Steven Rostedt <rostedt@goodmis.org>
8844R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Lai Jiangshan96a39bc2015-07-01 15:26:27 +08008845R: Lai Jiangshan <jiangshanlai@gmail.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +01008846L: linux-kernel@vger.kernel.org
Paul E. McKenney9fab97872012-05-07 09:36:34 -07008847W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07008848S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07008849T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08008850F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07008851X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08008852F: include/linux/rcu*
Paul E. McKenney4102ada2013-10-08 20:23:47 -07008853X: include/linux/srcu.h
8854F: kernel/rcu/
Joe Perches34e2d562014-07-03 15:08:00 -07008855X: kernel/torture.c
Josh Triplett595182b2006-10-04 02:17:21 -07008856
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08008857REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008858M: Alessandro Zummo <a.zummo@towertech.it>
Alexandre Belloni7c6f84f2015-04-16 12:45:43 -07008859M: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Alessandro Zummo76465492006-12-10 02:19:06 -08008860L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08008861Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alexandre Belloni4733f392015-05-26 11:13:04 +02008862T: git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08008863S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008864F: Documentation/rtc.txt
8865F: drivers/rtc/
8866F: include/linux/rtc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008867F: include/uapi/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08008868
Mark Brown0e400c52014-07-31 12:38:31 +01008869REALTEK AUDIO CODECS
8870M: Bard Liao <bardliao@realtek.com>
8871M: Oder Chiou <oder_chiou@realtek.com>
8872S: Maintained
8873F: sound/soc/codecs/rt*
8874F: include/sound/rt*.h
8875
Linus Torvalds1da177e2005-04-16 15:20:36 -07008876REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07008877L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008878S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008879F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008880
Mark Brownb83a3132011-05-11 19:59:58 +02008881REGISTER MAP ABSTRACTION
Mark Brownb02e48f2013-04-12 11:39:57 +01008882M: Mark Brown <broonie@kernel.org>
Mark Browndd060bc2014-08-16 12:30:58 +01008883L: linux-kernel@vger.kernel.org
Mark Brownb83a3132011-05-11 19:59:58 +02008884T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
8885S: Supported
8886F: drivers/base/regmap/
8887F: include/linux/regmap.h
8888
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02008889REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
8890M: Ohad Ben-Cohen <ohad@wizery.com>
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03008891T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02008892S: Maintained
8893F: drivers/remoteproc/
8894F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07008895F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02008896
Ohad Ben-Cohend8115db2013-04-16 20:34:49 +03008897REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
8898M: Ohad Ben-Cohen <ohad@wizery.com>
8899T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
8900S: Maintained
8901F: drivers/rpmsg/
8902F: Documentation/rpmsg.txt
8903F: include/linux/rpmsg.h
8904
Philipp Zabel1b0fe6b2014-05-27 15:58:09 +02008905RESET CONTROLLER FRAMEWORK
8906M: Philipp Zabel <p.zabel@pengutronix.de>
8907S: Maintained
8908F: drivers/reset/
8909F: Documentation/devicetree/bindings/reset/
Philipp Zabelb2f6dd72015-02-13 12:14:40 +01008910F: include/dt-bindings/reset/
Philipp Zabel1b0fe6b2014-05-27 15:58:09 +02008911F: include/linux/reset.h
8912F: include/linux/reset-controller.h
8913
Ivo van Doorne08976452008-04-12 19:23:55 +02008914RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07008915M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02008916L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02008917W: http://wireless.kernel.org/
8918T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
8919T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02008920S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08008921F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07008922F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02008923
Thomas Graf933685c2015-01-13 01:01:24 +01008924RHASHTABLE
8925M: Thomas Graf <tgraf@suug.ch>
8926L: netdev@vger.kernel.org
8927S: Maintained
8928F: lib/rhashtable.c
8929F: include/linux/rhashtable.h
8930
Maxim Levitsky67e054e2010-02-22 20:39:42 +02008931RICOH SMARTMEDIA/XD DRIVER
8932M: Maxim Levitsky <maximlevitsky@gmail.com>
8933S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07008934F: drivers/mtd/nand/r852.c
8935F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02008936
Maxim Levitsky92634122011-03-25 01:56:59 -07008937RICOH R5C592 MEMORYSTICK DRIVER
8938M: Maxim Levitsky <maximlevitsky@gmail.com>
8939S: Maintained
8940F: drivers/memstick/host/r592.*
8941
Stefan Achatz27f1d2f2013-09-05 06:36:01 +02008942ROCCAT DRIVERS
8943M: Stefan Achatz <erazor_de@users.sourceforge.net>
8944W: http://sourceforge.net/projects/roccat/
8945S: Maintained
8946F: drivers/hid/hid-roccat*
8947F: include/linux/hid-roccat*
8948F: Documentation/ABI/*/sysfs-driver-hid-roccat*
8949
Jiri Pirko4b8ac962014-11-28 14:34:26 +01008950ROCKER DRIVER
8951M: Jiri Pirko <jiri@resnulli.us>
8952M: Scott Feldman <sfeldma@gmail.com>
8953L: netdev@vger.kernel.org
8954S: Supported
8955F: drivers/net/ethernet/rocker/
8956
Linus Torvalds1da177e2005-04-16 15:20:36 -07008957ROCKETPORT DRIVER
8958P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008959W: http://www.comtrol.com
8960S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008961F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07008962F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008963
Kevin Cernekee7645c2f2014-10-21 15:23:06 -07008964ROCKETPORT EXPRESS/INFINITY DRIVER
8965M: Kevin Cernekee <cernekee@gmail.com>
8966L: linux-serial@vger.kernel.org
8967S: Odd Fixes
8968F: drivers/tty/serial/rp2.*
8969
Linus Torvalds1da177e2005-04-16 15:20:36 -07008970ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07008971M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008972L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02008973W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008974S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008975F: include/net/rose.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008976F: include/uapi/linux/rose.h
Joe Perches679655d2009-04-07 20:44:32 -07008977F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008978
Antti Palosaari91952bc2012-10-01 12:28:46 -03008979RTL2830 MEDIA DRIVER
8980M: Antti Palosaari <crope@iki.fi>
8981L: linux-media@vger.kernel.org
8982W: http://linuxtv.org/
8983W: http://palosaari.fi/linux/
8984Q: http://patchwork.linuxtv.org/project/linux-media/list/
8985T: git git://linuxtv.org/anttip/media_tree.git
8986S: Maintained
8987F: drivers/media/dvb-frontends/rtl2830*
8988
Antti Palosaari27a0aac2013-04-09 20:30:43 -03008989RTL2832 MEDIA DRIVER
8990M: Antti Palosaari <crope@iki.fi>
8991L: linux-media@vger.kernel.org
8992W: http://linuxtv.org/
8993W: http://palosaari.fi/linux/
8994Q: http://patchwork.linuxtv.org/project/linux-media/list/
8995T: git git://linuxtv.org/anttip/media_tree.git
8996S: Maintained
8997F: drivers/media/dvb-frontends/rtl2832*
8998
Antti Palosaariba6e6f62014-02-03 00:00:32 -03008999RTL2832_SDR MEDIA DRIVER
9000M: Antti Palosaari <crope@iki.fi>
9001L: linux-media@vger.kernel.org
9002W: http://linuxtv.org/
9003W: http://palosaari.fi/linux/
9004Q: http://patchwork.linuxtv.org/project/linux-media/list/
9005T: git git://linuxtv.org/anttip/media_tree.git
9006S: Maintained
Antti Palosaarib4bb1c22014-07-14 21:19:29 -03009007F: drivers/media/dvb-frontends/rtl2832_sdr*
Antti Palosaariba6e6f62014-02-03 00:00:32 -03009008
Larry Finger59840482008-11-12 17:13:09 -06009009RTL8180 WIRELESS DRIVER
Michael Wu605bebe2007-05-14 01:41:02 -04009010L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02009011W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07009012T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
John W. Linville7be6ff62014-12-04 16:52:41 -05009013S: Orphan
John W. Linville3cfeb0c2010-12-20 15:16:53 -05009014F: drivers/net/wireless/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04009015
Larry Finger59840482008-11-12 17:13:09 -06009016RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03009017M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07009018M: Hin-Tak Leung <htl10@users.sourceforge.net>
9019M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07009020L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02009021W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07009022T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07009023S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05009024F: drivers/net/wireless/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06009025
Larry Finger3cf0c8a2010-12-16 09:13:21 -06009026RTL8192CE WIRELESS DRIVER
9027M: Larry Finger <Larry.Finger@lwfinger.net>
9028M: Chaoming Li <chaoming_li@realsil.com.cn>
9029L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02009030W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06009031T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9032S: Maintained
9033F: drivers/net/wireless/rtlwifi/
Larry Fingerf0b3e4b2010-12-17 16:04:11 -06009034F: drivers/net/wireless/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02009035
Jes Sorensen26f1fad2015-10-14 20:44:51 -04009036RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
9037M: Jes Sorensen <Jes.Sorensen@redhat.com>
9038L: linux-wireless@vger.kernel.org
9039T: git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8723au-mac80211
9040S: Maintained
9041F: drivers/net/wireless/realtek/rtl8xxxu/
9042
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08009043S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009044M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01009045L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08009046S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09009047F: drivers/video/fbdev/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08009048
Linus Torvalds1da177e2005-04-16 15:20:36 -07009049S390
Joe Perches8b58be82009-07-29 15:04:30 -07009050M: Martin Schwidefsky <schwidefsky@de.ibm.com>
9051M: Heiko Carstens <heiko.carstens@de.ibm.com>
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01009052L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08009053W: http://www.ibm.com/developerworks/linux/linux390/
9054S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009055F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01009056F: drivers/s390/
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02009057F: Documentation/s390/
9058F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08009059
Sebastian Ott322986c2014-02-17 15:16:30 +01009060S390 COMMON I/O LAYER
9061M: Sebastian Ott <sebott@linux.vnet.ibm.com>
9062M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
9063L: linux-s390@vger.kernel.org
9064W: http://www.ibm.com/developerworks/linux/linux390/
9065S: Supported
9066F: drivers/s390/cio/
9067
9068S390 DASD DRIVER
9069M: Stefan Weinhuber <wein@de.ibm.com>
9070M: Stefan Haberland <stefan.haberland@de.ibm.com>
9071L: linux-s390@vger.kernel.org
9072W: http://www.ibm.com/developerworks/linux/linux390/
9073S: Supported
9074F: drivers/s390/block/dasd*
9075F: block/partitions/ibm.c
9076
Heiko Carstens5238da42006-02-11 17:56:01 -08009077S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07009078M: Ursula Braun <ursula.braun@de.ibm.com>
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01009079L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08009080W: http://www.ibm.com/developerworks/linux/linux390/
9081S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009082F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08009083
Sebastian Ott322986c2014-02-17 15:16:30 +01009084S390 PCI SUBSYSTEM
9085M: Sebastian Ott <sebott@linux.vnet.ibm.com>
9086M: Gerald Schaefer <gerald.schaefer@de.ibm.com>
9087L: linux-s390@vger.kernel.org
9088W: http://www.ibm.com/developerworks/linux/linux390/
9089S: Supported
9090F: arch/s390/pci/
9091F: drivers/pci/hotplug/s390_pci_hpc.c
9092
Felix Beckfeed9b62009-03-26 15:24:23 +01009093S390 ZCRYPT DRIVER
Ingo Tuchscherer5c8d0982013-01-14 10:07:05 +01009094M: Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01009095L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01009096W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01009097S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07009098F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01009099
Heiko Carstens5238da42006-02-11 17:56:01 -08009100S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01009101M: Steffen Maier <maier@linux.vnet.ibm.com>
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01009102L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08009103W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009104S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009105F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009106
Ursula Braundd96df22007-09-19 13:09:02 +02009107S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07009108M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02009109L: linux-s390@vger.kernel.org
9110W: http://www.ibm.com/developerworks/linux/linux390/
9111S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009112F: drivers/s390/net/*iucv*
9113F: include/net/iucv/
9114F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02009115
Gerald Schaefer8128f23c2015-08-27 15:33:03 +02009116S390 IOMMU (PCI)
9117M: Gerald Schaefer <gerald.schaefer@de.ibm.com>
9118L: linux-s390@vger.kernel.org
9119W: http://www.ibm.com/developerworks/linux/linux390/
9120S: Supported
9121F: drivers/iommu/s390-iommu.c
9122
Ben Dooks4dde7f72008-06-30 22:40:38 +01009123S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07009124M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07009125L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01009126S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009127F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01009128
Hans Verkuil1f15a222012-11-23 07:45:29 -03009129SAA6588 RDS RECEIVER DRIVER
9130M: Hans Verkuil <hverkuil@xs4all.nl>
9131L: linux-media@vger.kernel.org
9132T: git git://linuxtv.org/media_tree.git
9133W: http://linuxtv.org
9134S: Odd Fixes
9135F: drivers/media/i2c/saa6588*
9136
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02009137SAA7134 VIDEO4LINUX DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02009138M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02009139L: linux-media@vger.kernel.org
9140W: http://linuxtv.org
9141T: git git://linuxtv.org/media_tree.git
9142S: Odd fixes
Cesar Eduardo Barrose42bf502013-03-02 21:53:47 -03009143F: Documentation/video4linux/*.saa7134
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02009144F: drivers/media/pci/saa7134/
9145
Linus Torvalds1da177e2005-04-16 15:20:36 -07009146SAA7146 VIDEO4LINUX-2 DRIVER
Hans Verkuil566b8152012-11-23 09:58:12 -03009147M: Hans Verkuil <hverkuil@xs4all.nl>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03009148L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02009149T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07009150S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03009151F: drivers/media/common/saa7146/
9152F: drivers/media/pci/saa7146/
9153F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009154
Corentin Chary92304a42011-12-05 12:38:35 -05009155SAMSUNG LAPTOP DRIVER
Corentin Chary5909c652012-12-17 16:00:05 -08009156M: Corentin Chary <corentin.chary@gmail.com>
Corentin Chary92304a42011-12-05 12:38:35 -05009157L: platform-driver-x86@vger.kernel.org
9158S: Maintained
9159F: drivers/platform/x86/samsung-laptop.c
9160
Mark Brown4a109cc2010-09-24 10:50:46 +01009161SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09009162M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01009163L: alsa-devel@alsa-project.org (moderated for non-subscribers)
9164S: Supported
Joe Perches14430812013-09-11 14:23:50 -07009165F: sound/soc/samsung/
Mark Brown4a109cc2010-09-24 10:50:46 +01009166
Jingoo Han0d89a282011-12-19 11:09:35 +09009167SAMSUNG FRAMEBUFFER DRIVER
Jingoo Hanb7701752015-05-14 15:17:07 -07009168M: Jingoo Han <jingoohan1@gmail.com>
Jingoo Han0d89a282011-12-19 11:09:35 +09009169L: linux-fbdev@vger.kernel.org
9170S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09009171F: drivers/video/fbdev/s3c-fb.c
Jingoo Han0d89a282011-12-19 11:09:35 +09009172
Krzysztof Kozlowskib40f0632015-05-06 14:19:36 +09009173SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09009174M: Sangbeom Kim <sbkim73@samsung.com>
Krzysztof Kozlowskib40f0632015-05-06 14:19:36 +09009175M: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09009176L: linux-kernel@vger.kernel.org
Krzysztof Kozlowskib40f0632015-05-06 14:19:36 +09009177L: linux-samsung-soc@vger.kernel.org
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09009178S: Supported
9179F: drivers/mfd/sec*.c
9180F: drivers/regulator/s2m*.c
9181F: drivers/regulator/s5m*.c
Krzysztof Kozlowskib40f0632015-05-06 14:19:36 +09009182F: drivers/clk/clk-s2mps11.c
9183F: drivers/rtc/rtc-s5m.c
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09009184F: include/linux/mfd/samsung/
Krzysztof Kozlowskib40f0632015-05-06 14:19:36 +09009185F: Documentation/devicetree/bindings/regulator/s5m8767-regulator.txt
9186F: Documentation/devicetree/bindings/mfd/s2mp*.txt
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09009187
Sylwester Nawrocki038f5c42013-05-28 18:26:20 -03009188SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
9189M: Kyungmin Park <kyungmin.park@samsung.com>
9190M: Sylwester Nawrocki <s.nawrocki@samsung.com>
9191L: linux-media@vger.kernel.org
9192Q: https://patchwork.linuxtv.org/project/linux-media/list/
9193S: Supported
9194F: drivers/media/platform/exynos4-is/
Sylwester Nawrocki038f5c42013-05-28 18:26:20 -03009195
Sylwester Nawrocki6fd86ab2012-11-15 18:05:15 -03009196SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
9197M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
9198L: linux-media@vger.kernel.org
9199L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9200S: Maintained
9201F: drivers/media/platform/s3c-camif/
9202F: include/media/s3c_camif.h
9203
Andrzej Hajdab84ef242013-01-31 07:03:05 -03009204SAMSUNG S5C73M3 CAMERA DRIVER
9205M: Kyungmin Park <kyungmin.park@samsung.com>
9206M: Andrzej Hajda <a.hajda@samsung.com>
9207L: linux-media@vger.kernel.org
9208S: Supported
9209F: drivers/media/i2c/s5c73m3/*
9210
Andrzej Hajda7d4599372013-12-05 08:38:39 -03009211SAMSUNG S5K5BAF CAMERA DRIVER
9212M: Kyungmin Park <kyungmin.park@samsung.com>
9213M: Andrzej Hajda <a.hajda@samsung.com>
9214L: linux-media@vger.kernel.org
9215S: Supported
9216F: drivers/media/i2c/s5k5baf.c
9217
Robert Baldygac04c6742015-08-20 17:26:02 +02009218SAMSUNG S3FWRN5 NFC DRIVER
9219M: Robert Baldyga <r.baldyga@samsung.com>
9220L: linux-nfc@lists.01.org (moderated for non-subscribers)
9221S: Supported
9222F: drivers/nfc/s3fwrn5
9223
Tomasz Figa310e39c2013-11-09 03:17:34 +01009224SAMSUNG SOC CLOCK DRIVERS
Tomasz Figafea685e2014-08-26 16:30:53 +02009225M: Sylwester Nawrocki <s.nawrocki@samsung.com>
9226M: Tomasz Figa <tomasz.figa@gmail.com>
Tomasz Figa310e39c2013-11-09 03:17:34 +01009227S: Supported
9228L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9229F: drivers/clk/samsung/
9230
Byungho An66890ed2014-03-25 12:11:07 -07009231SAMSUNG SXGBE DRIVERS
9232M: Byungho An <bh74.an@samsung.com>
9233M: Girish K S <ks.giri@samsung.com>
Byungho An66890ed2014-03-25 12:11:07 -07009234M: Vipul Pandya <vipul.pandya@samsung.com>
9235S: Supported
9236L: netdev@vger.kernel.org
9237F: drivers/net/ethernet/samsung/sxgbe/
9238
Lukasz Majewski93c537a2015-02-24 16:31:28 +01009239SAMSUNG THERMAL DRIVER
9240M: Lukasz Majewski <l.majewski@samsung.com>
9241L: linux-pm@vger.kernel.org
9242L: linux-samsung-soc@vger.kernel.org
9243S: Supported
9244T: https://github.com/lmajewski/linux-samsung-thermal.git
9245F: drivers/thermal/samsung/
9246
Kamil Debskie296cd32014-08-21 11:33:37 +02009247SAMSUNG USB2 PHY DRIVER
9248M: Kamil Debski <k.debski@samsung.com>
9249L: linux-kernel@vger.kernel.org
9250S: Supported
9251F: Documentation/devicetree/bindings/phy/samsung-phy.txt
9252F: Documentation/phy/samsung-usb2.txt
9253F: drivers/phy/phy-exynos4210-usb2.c
9254F: drivers/phy/phy-exynos4x12-usb2.c
9255F: drivers/phy/phy-exynos5250-usb2.c
9256F: drivers/phy/phy-s5pv210-usb2.c
9257F: drivers/phy/phy-samsung-usb2.c
9258F: drivers/phy/phy-samsung-usb2.h
9259
Alan Coxca749e22011-03-18 13:56:14 +00009260SERIAL DRIVERS
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08009261M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Alan Coxca749e22011-03-18 13:56:14 +00009262L: linux-serial@vger.kernel.org
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08009263S: Maintained
Joe Perches14430812013-09-11 14:23:50 -07009264F: drivers/tty/serial/
Alan Coxca749e22011-03-18 13:56:14 +00009265
Viresh Kumaraecb7b62011-05-24 14:04:09 +05309266SYNOPSYS DESIGNWARE DMAC DRIVER
Viresh Kumarda899472015-07-17 16:23:50 -07009267M: Viresh Kumar <vireshk@kernel.org>
Viresh Kumar337ae472013-07-19 09:13:58 +05309268M: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05309269S: Maintained
Andy Shevchenko1fb200d2015-01-19 18:23:06 +02009270F: include/linux/dma/dw.h
Andy Shevchenko3d598f42014-08-19 20:29:12 +03009271F: include/linux/platform_data/dma-dw.h
Andy Shevchenko61a76492013-06-05 15:26:44 +03009272F: drivers/dma/dw/
Viresh Kumaraecb7b62011-05-24 14:04:09 +05309273
Lars Persson058999c2015-07-28 12:01:50 +02009274SYNOPSYS DESIGNWARE ETHERNET QOS 4.10a driver
9275M: Lars Persson <lars.persson@axis.com>
9276L: netdev@vger.kernel.org
9277S: Supported
9278F: Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt
9279F: drivers/net/ethernet/synopsys/dwc_eth_qos.c
9280
Wolfram Sangfc531d92015-10-15 15:50:15 +02009281SYNOPSYS DESIGNWARE I2C DRIVER
9282M: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9283M: Jarkko Nikula <jarkko.nikula@linux.intel.com>
9284M: Mika Westerberg <mika.westerberg@linux.intel.com>
9285L: linux-i2c@vger.kernel.org
9286S: Maintained
9287F: drivers/i2c/busses/i2c-designware-*
9288F: include/linux/platform_data/i2c-designware.h
9289
Seungwon Jeonf9e37132013-01-17 21:33:23 +09009290SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
9291M: Seungwon Jeon <tgih.jun@samsung.com>
9292M: Jaehoon Chung <jh80.chung@samsung.com>
9293L: linux-mmc@vger.kernel.org
9294S: Maintained
9295F: include/linux/mmc/dw_mmc.h
9296F: drivers/mmc/host/dw_mmc*
9297
Alexander Shishkina961e692015-09-22 15:47:11 +03009298SYSTEM TRACE MODULE CLASS
9299M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
9300S: Maintained
9301F: Documentation/trace/stm.txt
9302F: drivers/hwtracing/stm/
9303F: include/linux/stm.h
9304F: include/uapi/linux/stm.h
9305
Andreas Noever1db121d2014-07-10 18:58:04 +02009306THUNDERBOLT DRIVER
9307M: Andreas Noever <andreas.noever@gmail.com>
9308S: Maintained
9309F: drivers/thunderbolt/
9310
John Stultz9222d242013-07-16 16:45:31 +02009311TIMEKEEPING, CLOCKSOURCE CORE, NTP
John Stultz50363732012-12-13 13:08:47 -05009312M: John Stultz <john.stultz@linaro.org>
Thomas Gleixner88606e82010-12-14 21:37:13 +01009313M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar981c3a42014-01-21 10:59:20 +01009314L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01009315T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01009316S: Supported
9317F: include/linux/clocksource.h
9318F: include/linux/time.h
9319F: include/linux/timex.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009320F: include/uapi/linux/time.h
9321F: include/uapi/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01009322F: kernel/time/clocksource.c
9323F: kernel/time/time*.c
9324F: kernel/time/ntp.c
John Stultz7fe5f1c2015-03-11 17:40:15 -07009325F: tools/testing/selftests/timers/
Thomas Gleixner88606e82010-12-14 21:37:13 +01009326
Linus Torvalds1da177e2005-04-16 15:20:36 -07009327SC1200 WDT DRIVER
Jean Delvareb3006452013-11-12 15:08:56 -08009328M: Zwane Mwaikambo <zwanem@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009329S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009330F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07009331
9332SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01009333M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07009334M: Peter Zijlstra <peterz@infradead.org>
Ingo Molnar981c3a42014-01-21 10:59:20 +01009335L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01009336T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07009337S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09009338F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07009339F: include/linux/sched.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009340F: include/uapi/linux/sched.h
Peter Zijlstrac2eb5052013-10-02 11:49:47 +02009341F: include/linux/wait.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009342
Chen Liqin6bcf6732009-06-13 15:24:33 +08009343SCORE ARCHITECTURE
Lennox Wued386652013-09-26 01:41:22 +08009344M: Chen Liqin <liqin.linux@gmail.com>
Joe Perchesa2681a72009-10-26 16:49:43 -07009345M: Lennox Wu <lennox.wu@gmail.com>
Lennox Wued386652013-09-26 01:41:22 +08009346W: http://www.sunplus.com
Chen Liqin6bcf6732009-06-13 15:24:33 +08009347S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07009348F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08009349
Linus Torvalds1da177e2005-04-16 15:20:36 -07009350SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009351M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009352L: linux-scsi@vger.kernel.org
9353W: http://www.kernel.dk
9354S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009355F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009356
Roland Dreierfb50a832010-10-07 09:54:53 -07009357SCSI RDMA PROTOCOL (SRP) INITIATOR
Bart Van Assche3453bddb2015-02-06 15:27:56 +01009358M: Bart Van Assche <bart.vanassche@sandisk.com>
Roland Dreierfb50a832010-10-07 09:54:53 -07009359L: linux-rdma@vger.kernel.org
9360S: Supported
9361W: http://www.openfabrics.org
9362Q: http://patchwork.kernel.org/project/linux-rdma/list/
9363T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
9364F: drivers/infiniband/ulp/srp/
9365F: include/scsi/srp.h
9366
Linus Torvalds1da177e2005-04-16 15:20:36 -07009367SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009368M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009369L: linux-scsi@vger.kernel.org
Douglas Gilbert59ab3c92013-10-31 09:10:46 -04009370W: http://sg.danny.cz/sg
Linus Torvalds1da177e2005-04-16 15:20:36 -07009371S: Maintained
Douglas Gilbert59ab3c92013-10-31 09:10:46 -04009372F: Documentation/scsi/scsi-generic.txt
Joe Perches679655d2009-04-07 20:44:32 -07009373F: drivers/scsi/sg.c
9374F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009375
9376SCSI SUBSYSTEM
James Bottomley0351b8f2015-04-01 09:09:36 +00009377M: "James E.J. Bottomley" <JBottomley@odin.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009378L: linux-scsi@vger.kernel.org
James Bottomley0351b8f2015-04-01 09:09:36 +00009379T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07009380S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009381F: drivers/scsi/
9382F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009383
9384SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009385M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009386L: linux-scsi@vger.kernel.org
9387S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009388F: Documentation/scsi/st.txt
Jean Delvaref7269cf2013-07-03 15:05:08 -07009389F: drivers/scsi/st.*
9390F: drivers/scsi/st_*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009391
9392SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00009393M: Vlad Yasevich <vyasevich@gmail.com>
Neil Horman02c38d02012-10-24 09:26:51 +00009394M: Neil Horman <nhorman@tuxdriver.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07009395L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07009396W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00009397S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009398F: Documentation/networking/sctp.txt
9399F: include/linux/sctp.h
Daniel Borkmann4d58c022013-07-23 14:51:48 +02009400F: include/uapi/linux/sctp.h
Joe Perches679655d2009-04-07 20:44:32 -07009401F: include/net/sctp/
9402F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009403
9404SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07009405M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07009406S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07009407F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07009408F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07009409F: drivers/watchdog/scx200_wdt.c
9410F: drivers/i2c/busses/scx200*
9411F: drivers/mtd/maps/scx200_docflash.c
9412F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07009413
9414SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009415M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07009416S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009417F: drivers/char/scx200_gpio.c
9418F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07009419
9420SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009421M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07009422S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009423F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07009424
Sascha Sommer6a369132008-07-15 14:21:29 +02009425SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009426M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02009427L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
9428S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009429F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02009430
Randy Dunlape7839f22008-10-12 16:11:45 -07009431SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Joe Perches7a241d62009-10-26 16:49:42 -07009432L: linux-mmc@vger.kernel.org
Ulf Hanssona1cb1d12015-03-13 13:39:03 +01009433S: Orphan
Joe Perches7a241d62009-10-26 16:49:42 -07009434F: drivers/mmc/host/sdhci.*
Joe Perchesd4a45782012-01-10 15:08:54 -08009435F: drivers/mmc/host/sdhci-pltfm.[ch]
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009436
Kees Cookc04f9d62014-07-18 11:28:33 -07009437SECURE COMPUTING
9438M: Kees Cook <keescook@chromium.org>
Kees Cooka0cfd752014-08-12 15:41:17 -07009439R: Andy Lutomirski <luto@amacapital.net>
9440R: Will Drewry <wad@chromium.org>
Kees Cookc04f9d62014-07-18 11:28:33 -07009441T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
9442S: Supported
9443F: kernel/seccomp.c
9444F: include/uapi/linux/seccomp.h
9445F: include/linux/seccomp.h
Kees Cookc99ee512015-06-16 10:54:14 -07009446F: tools/testing/selftests/seccomp/*
Kees Cookc04f9d62014-07-18 11:28:33 -07009447K: \bsecure_computing
9448K: \bTIF_SECCOMP\b
9449
Ben Dooks0d1bb412009-06-14 13:52:37 +01009450SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009451M: Ben Dooks <ben-linux@fluff.org>
Ulf Hanssondc524882015-03-20 10:15:29 +01009452M: Jaehoon Chung <jh80.chung@samsung.com>
Joe Perches7a241d62009-10-26 16:49:42 -07009453L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01009454S: Maintained
Ulf Hanssondc524882015-03-20 10:15:29 +01009455F: drivers/mmc/host/sdhci-s3c*
Ben Dooks0d1bb412009-06-14 13:52:37 +01009456
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07009457SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Viresh Kumarda899472015-07-17 16:23:50 -07009458M: Viresh Kumar <vireshk@kernel.org>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07009459L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07009460L: linux-mmc@vger.kernel.org
9461S: Maintained
9462F: drivers/mmc/host/sdhci-spear.c
9463
James Morris8711cca2008-12-04 03:19:45 +11009464SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11009465M: James Morris <james.l.morris@oracle.com>
Joe Perches9c3646d2015-06-25 15:02:00 -07009466M: "Serge E. Hallyn" <serge@hallyn.com>
James Morris8711cca2008-12-04 03:19:45 +11009467L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11009468T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10009469W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11009470S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07009471F: security/
James Morris8711cca2008-12-04 03:19:45 +11009472
Linus Torvalds1da177e2005-04-16 15:20:36 -07009473SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07009474M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009475S: Supported
9476
9477SELINUX SECURITY MODULE
Paul Moore5a5f2ac2013-09-18 13:14:04 -04009478M: Paul Moore <paul@paul-moore.com>
Paul Mooree0238b42014-02-06 07:51:54 -05009479M: Stephen Smalley <sds@tycho.nsa.gov>
9480M: Eric Paris <eparis@parisplace.org>
9481L: selinux@tycho.nsa.gov (moderated for non-subscribers)
Stephen Smalleyf0589252008-09-11 09:20:26 -04009482W: http://selinuxproject.org
Paul Moore5a5f2ac2013-09-18 13:14:04 -04009483T: git git://git.infradead.org/users/pcmoore/selinux
Linus Torvalds1da177e2005-04-16 15:20:36 -07009484S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009485F: include/linux/selinux*
9486F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04009487F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009488
John Johansenc1c124e2010-07-29 14:48:09 -07009489APPARMOR SECURITY MODULE
9490M: John Johansen <john.johansen@canonical.com>
9491L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
9492W: apparmor.wiki.kernel.org
9493T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
9494S: Supported
9495F: security/apparmor/
9496
Kees Cook730daa12015-07-23 18:02:48 -07009497YAMA SECURITY MODULE
9498M: Kees Cook <keescook@chromium.org>
9499T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
9500S: Supported
9501F: security/yama/
9502
Jiri Slabycef2cf02007-05-08 00:31:45 -07009503SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07009504M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07009505S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009506F: drivers/misc/phantom.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009507F: include/uapi/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07009508
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05309509SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Minh Tran4627de92015-05-14 23:16:17 -07009510M: Jayamohan Kallickal <jayamohan.kallickal@avagotech.com>
Ketan Mukadam9d27e212015-07-04 04:12:23 +05309511M: Ketan Mukadam <ketan.mukadam@avagotech.com>
9512M: John Soni Jose <sony.john@avagotech.com>
Joe Perches3387f652009-11-11 14:26:11 -08009513L: linux-scsi@vger.kernel.org
Minh Tran4627de92015-05-14 23:16:17 -07009514W: http://www.avagotech.com
Joe Perches3387f652009-11-11 14:26:11 -08009515S: Supported
9516F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05309517
Sathya Perla6938f852015-05-12 02:13:50 -04009518Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER
9519M: Sathya Perla <sathya.perla@avagotech.com>
9520M: Ajit Khaparde <ajit.khaparde@avagotech.com>
9521M: Padmanabh Ratnakar <padmanabh.ratnakar@avagotech.com>
9522M: Sriharsha Basavapatna <sriharsha.basavapatna@avagotech.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07009523L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08009524W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07009525S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07009526F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07009527
Selvin Xavierd2928a82015-03-15 00:09:41 +05309528EMULEX ONECONNECT ROCE DRIVER
Laurent Navet2b8e7332015-06-30 14:59:33 -07009529M: Selvin Xavier <selvin.xavier@avagotech.com>
9530M: Devesh Sharma <devesh.sharma@avagotech.com>
9531M: Mitesh Ahuja <mitesh.ahuja@avagotech.com>
Selvin Xavierd2928a82015-03-15 00:09:41 +05309532L: linux-rdma@vger.kernel.org
9533W: http://www.emulex.com
9534S: Supported
9535F: drivers/infiniband/hw/ocrdma/
9536
Ben Hutchings8ceee662008-04-27 12:55:59 +01009537SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00009538M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Shradha Shah8533ccf2014-01-23 13:19:55 +00009539M: Shradha Shah <sshah@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +00009540L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01009541S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07009542F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01009543
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009544SGI GRU DRIVER
Bjorn Helgaascc883af2013-01-29 15:48:37 -07009545M: Dimitri Sivanich <sivanich@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009546S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009547F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009548
9549SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009550M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009551L: linux-ia64@vger.kernel.org
9552S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009553F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08009554F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07009555F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009556
Jack Steiner75312612008-08-15 00:40:42 -07009557SGI XP/XPC/XPNET DRIVER
Robin Holte1803832013-08-16 18:01:42 -05009558M: Cliff Whickman <cpw@sgi.com>
9559M: Robin Holt <robinmholt@gmail.com>
Jack Steiner75312612008-08-15 00:40:42 -07009560S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009561F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07009562
Antti Palosaari46eacf32014-04-15 06:21:03 -03009563SI2157 MEDIA DRIVER
9564M: Antti Palosaari <crope@iki.fi>
9565L: linux-media@vger.kernel.org
9566W: http://linuxtv.org/
9567W: http://palosaari.fi/linux/
9568Q: http://patchwork.linuxtv.org/project/linux-media/list/
9569T: git git://linuxtv.org/anttip/media_tree.git
9570S: Maintained
9571F: drivers/media/tuners/si2157*
9572
Antti Palosaari75e2d5b2014-04-15 06:17:53 -03009573SI2168 MEDIA DRIVER
9574M: Antti Palosaari <crope@iki.fi>
9575L: linux-media@vger.kernel.org
9576W: http://linuxtv.org/
9577W: http://palosaari.fi/linux/
9578Q: http://patchwork.linuxtv.org/project/linux-media/list/
9579T: git git://linuxtv.org/anttip/media_tree.git
9580S: Maintained
9581F: drivers/media/dvb-frontends/si2168*
9582
Hans Verkuil49cc6292012-11-30 07:13:29 -03009583SI470X FM RADIO RECEIVER I2C DRIVER
9584M: Hans Verkuil <hverkuil@xs4all.nl>
9585L: linux-media@vger.kernel.org
9586T: git git://linuxtv.org/media_tree.git
9587W: http://linuxtv.org
9588S: Odd Fixes
9589F: drivers/media/radio/si470x/radio-si470x-i2c.c
9590
9591SI470X FM RADIO RECEIVER USB DRIVER
9592M: Hans Verkuil <hverkuil@xs4all.nl>
9593L: linux-media@vger.kernel.org
9594T: git git://linuxtv.org/media_tree.git
9595W: http://linuxtv.org
9596S: Maintained
9597F: drivers/media/radio/si470x/radio-si470x-common.c
9598F: drivers/media/radio/si470x/radio-si470x.h
9599F: drivers/media/radio/si470x/radio-si470x-usb.c
9600
Eduardo Valentinc937ca02013-02-27 10:37:39 -03009601SI4713 FM RADIO TRANSMITTER I2C DRIVER
9602M: Eduardo Valentin <edubezval@gmail.com>
9603L: linux-media@vger.kernel.org
9604T: git git://linuxtv.org/media_tree.git
9605W: http://linuxtv.org
9606S: Odd Fixes
Dinesh Ram99995de2013-10-15 12:24:43 -03009607F: drivers/media/radio/si4713/si4713.?
Eduardo Valentinc937ca02013-02-27 10:37:39 -03009608
9609SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
9610M: Eduardo Valentin <edubezval@gmail.com>
9611L: linux-media@vger.kernel.org
9612T: git git://linuxtv.org/media_tree.git
9613W: http://linuxtv.org
9614S: Odd Fixes
Dinesh Ram99995de2013-10-15 12:24:43 -03009615F: drivers/media/radio/si4713/radio-platform-si4713.c
9616
9617SI4713 FM RADIO TRANSMITTER USB DRIVER
9618M: Hans Verkuil <hverkuil@xs4all.nl>
9619L: linux-media@vger.kernel.org
9620T: git git://linuxtv.org/media_tree.git
9621W: http://linuxtv.org
9622S: Maintained
9623F: drivers/media/radio/si4713/radio-usb-si4713.c
Eduardo Valentinc937ca02013-02-27 10:37:39 -03009624
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03009625SIANO DVB DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02009626M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03009627L: linux-media@vger.kernel.org
9628W: http://linuxtv.org
9629T: git git://linuxtv.org/media_tree.git
9630S: Odd fixes
9631F: drivers/media/common/siano/
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03009632F: drivers/media/usb/siano/
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03009633F: drivers/media/usb/siano/
Joe Perches14430812013-09-11 14:23:50 -07009634F: drivers/media/mmc/siano/
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03009635
Hans de Goede6f15b602014-11-14 13:26:46 +01009636SIMPLEFB FB DRIVER
9637M: Hans de Goede <hdegoede@redhat.com>
9638L: linux-fbdev@vger.kernel.org
9639S: Maintained
Rob Herring2d799dd2015-11-05 13:40:40 -06009640F: Documentation/devicetree/bindings/display/simple-framebuffer.txt
Hans de Goede6f15b602014-11-14 13:26:46 +01009641F: drivers/video/fbdev/simplefb.c
9642F: include/linux/platform_data/simplefb.h
9643
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03009644SH_VEU V4L2 MEM2MEM DRIVER
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03009645L: linux-media@vger.kernel.org
Guennadi Liakhovetskibb60fcb2013-11-24 17:44:08 -03009646S: Orphan
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03009647F: drivers/media/platform/sh_veu.c
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03009648
9649SH_VOU V4L2 OUTPUT DRIVER
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03009650L: linux-media@vger.kernel.org
Guennadi Liakhovetskibb60fcb2013-11-24 17:44:08 -03009651S: Orphan
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03009652F: drivers/media/platform/sh_vou.c
9653F: include/media/sh_vou.h
9654
Len Brown6349d992009-08-14 15:07:14 -04009655SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07009656M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04009657L: sfi-devel@simplefirmware.org
9658W: http://simplefirmware.org/
9659T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009660S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07009661F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04009662F: drivers/sfi/
9663F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009664
Linus Torvalds1da177e2005-04-16 15:20:36 -07009665SIMTEC EB110ATX (Chalice CATS)
9666P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08009667P: Vincent Sanders <vince@simtec.co.uk>
9668M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009669W: http://www.simtec.co.uk/products/EB110ATX/
9670S: Supported
9671
9672SIMTEC EB2410ITX (BAST)
9673P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08009674P: Vincent Sanders <vince@simtec.co.uk>
9675M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009676W: http://www.simtec.co.uk/products/EB2410ITX/
9677S: Supported
Joe Perches15dba382013-09-11 14:23:36 -07009678F: arch/arm/mach-s3c24xx/mach-bast.c
9679F: arch/arm/mach-s3c24xx/bast-ide.c
9680F: arch/arm/mach-s3c24xx/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07009681
Kevin Hilman4c5adde2009-06-19 12:02:33 -07009682TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08009683M: Sekhar Nori <nsekhar@ti.com>
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08009684M: Kevin Hilman <khilman@deeprootsystems.com>
Sekhar Noric9f46a82012-01-27 21:12:20 +05309685T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -08009686Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07009687S: Supported
Joe Perches14430812013-09-11 14:23:50 -07009688F: arch/arm/mach-davinci/
Jean Delvare046d0a32012-01-12 20:32:05 +01009689F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -07009690
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03009691TI DAVINCI SERIES MEDIA DRIVER
Joe Perchese43cdb52015-06-25 15:02:03 -07009692M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03009693L: linux-media@vger.kernel.org
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03009694W: http://linuxtv.org/
9695Q: http://patchwork.linuxtv.org/project/linux-media/list/
9696T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
Lad, Prabhakar9ce5eca2013-04-15 01:32:44 -03009697S: Maintained
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03009698F: drivers/media/platform/davinci/
9699F: include/media/davinci/
9700
Benoit Parrot417d2e52014-12-09 16:43:44 -03009701TI AM437X VPFE DRIVER
Joe Perchese43cdb52015-06-25 15:02:03 -07009702M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
Benoit Parrot417d2e52014-12-09 16:43:44 -03009703L: linux-media@vger.kernel.org
9704W: http://linuxtv.org/
9705Q: http://patchwork.linuxtv.org/project/linux-media/list/
9706T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9707S: Maintained
9708F: drivers/media/platform/am437x/
9709
Benoit Parrotc4c02832015-03-20 18:03:52 -03009710OV2659 OMNIVISION SENSOR DRIVER
Joe Perchese43cdb52015-06-25 15:02:03 -07009711M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
Benoit Parrotc4c02832015-03-20 18:03:52 -03009712L: linux-media@vger.kernel.org
9713W: http://linuxtv.org/
9714Q: http://patchwork.linuxtv.org/project/linux-media/list/
9715T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9716S: Maintained
9717F: drivers/media/i2c/ov2659.c
9718F: include/media/ov2659.h
9719
Sudip Mukherjee3a6779f2015-08-07 18:31:15 +05309720SILICON MOTION SM712 FRAME BUFFER DRIVER
9721M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
9722M: Teddy Wang <teddy.wang@siliconmotion.com>
9723M: Sudip Mukherjee <sudip@vectorindia.org>
9724L: linux-fbdev@vger.kernel.org
9725S: Maintained
9726F: drivers/video/fbdev/sm712*
9727F: Documentation/fb/sm712fb.txt
9728
Francois Romieu92aab3c2005-07-30 13:11:18 +02009729SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009730M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02009731L: netdev@vger.kernel.org
9732S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07009733F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02009734
Linus Torvalds1da177e2005-04-16 15:20:36 -07009735SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009736M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009737W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07009738L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07009739S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07009740F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009741
9742SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009743M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009744W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03009745S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009746F: Documentation/fb/sisfb.txt
Jingoo Han8a61f012014-07-01 15:36:01 +09009747F: drivers/video/fbdev/sis/
Joe Perches679655d2009-04-07 20:44:32 -07009748F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009749
9750SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009751M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009752W: http://www.winischhofer.at/linuxsisusbvga.shtml
9753S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009754F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009755
Christoph Lameter415ad262007-07-26 10:40:56 -07009756SLAB ALLOCATOR
Christoph Lameter16e943b2014-06-23 13:22:03 -07009757M: Christoph Lameter <cl@linux.com>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02009758M: Pekka Enberg <penberg@kernel.org>
Christoph Lameter16e943b2014-06-23 13:22:03 -07009759M: David Rientjes <rientjes@google.com>
9760M: Joonsoo Kim <iamjoonsoo.kim@lge.com>
9761M: Andrew Morton <akpm@linux-foundation.org>
Christoph Lameter415ad262007-07-26 10:40:56 -07009762L: linux-mm@kvack.org
9763S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009764F: include/linux/sl?b*.h
Christoph Lameter16e943b2014-06-23 13:22:03 -07009765F: mm/sl?b*
Christoph Lameter415ad262007-07-26 10:40:56 -07009766
Paul E. McKenney9fab97872012-05-07 09:36:34 -07009767SLEEPABLE READ-COPY UPDATE (SRCU)
Lai Jiangshan96a39bc2015-07-01 15:26:27 +08009768M: Lai Jiangshan <jiangshanlai@gmail.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -07009769M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyab0afd62014-06-03 08:17:06 -07009770M: Josh Triplett <josh@joshtriplett.org>
Paul E. McKenney4632a192014-05-30 15:37:24 -07009771R: Steven Rostedt <rostedt@goodmis.org>
9772R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +01009773L: linux-kernel@vger.kernel.org
Paul E. McKenney9fab97872012-05-07 09:36:34 -07009774W: http://www.rdrop.com/users/paulmck/RCU/
9775S: Supported
9776T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenney4102ada2013-10-08 20:23:47 -07009777F: include/linux/srcu.h
9778F: kernel/rcu/srcu.c
Paul E. McKenney9fab97872012-05-07 09:36:34 -07009779
Casey Schaufler66372842012-05-23 18:34:52 -07009780SMACK SECURITY MODULE
9781M: Casey Schaufler <casey@schaufler-ca.com>
9782L: linux-security-module@vger.kernel.org
9783W: http://schaufler-ca.com
9784T: git git://git.gitorious.org/smack-next/kernel.git
9785S: Maintained
9786F: Documentation/security/Smack.txt
9787F: security/smack/
9788
Kevin Hilman20651e02014-09-24 16:30:00 -07009789DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
Kevin Hilman68ace3e2013-08-06 16:57:14 -07009790M: Kevin Hilman <khilman@kernel.org>
9791M: Nishanth Menon <nm@ti.com>
9792S: Maintained
Kevin Hilman20651e02014-09-24 16:30:00 -07009793F: drivers/power/avs/
Kevin Hilman68ace3e2013-08-06 16:57:14 -07009794F: include/linux/power/smartreflex.h
9795L: linux-pm@vger.kernel.org
9796
Linus Torvalds1da177e2005-04-16 15:20:36 -07009797SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04009798M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04009799S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -07009800F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009801
Sakari Ailuse8e31622012-11-12 18:14:39 -03009802SMIA AND SMIA++ IMAGE SENSOR DRIVER
9803M: Sakari Ailus <sakari.ailus@iki.fi>
9804L: linux-media@vger.kernel.org
9805S: Maintained
Joe Perches14430812013-09-11 14:23:50 -07009806F: drivers/media/i2c/smiapp/
Sakari Ailuse8e31622012-11-12 18:14:39 -03009807F: include/media/smiapp.h
9808F: drivers/media/i2c/smiapp-pll.c
9809F: drivers/media/i2c/smiapp-pll.h
Sakari Ailusfd2bfdc2014-11-16 12:08:44 -03009810F: include/uapi/linux/smiapp.h
Sakari Ailusa2cec3c2014-11-06 18:16:13 -03009811F: Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
Sakari Ailuse8e31622012-11-12 18:14:39 -03009812
Guenter Roeck920fa1f2010-08-09 17:21:06 -07009813SMM665 HARDWARE MONITOR DRIVER
9814M: Guenter Roeck <linux@roeck-us.net>
9815L: lm-sensors@lm-sensors.org
9816S: Maintained
9817F: Documentation/hwmon/smm665
9818F: drivers/hwmon/smm665.c
9819
Steve Glendinning9df73052010-08-14 21:08:54 +02009820SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01009821M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning9df73052010-08-14 21:08:54 +02009822L: lm-sensors@lm-sensors.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01009823S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +02009824F: Documentation/hwmon/emc2103
9825F: drivers/hwmon/emc2103.c
9826
Hans de Goedea98d5062011-03-21 17:59:36 +01009827SMSC SCH5627 HARDWARE MONITOR DRIVER
9828M: Hans de Goede <hdegoede@redhat.com>
9829L: lm-sensors@lm-sensors.org
9830S: Supported
9831F: Documentation/hwmon/sch5627
9832F: drivers/hwmon/sch5627.c
9833
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04009834SMSC47B397 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07009835M: Jean Delvare <jdelvare@suse.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04009836L: lm-sensors@lm-sensors.org
9837S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009838F: Documentation/hwmon/smsc47b397
9839F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04009840
Steve Glendinningfd9abb32008-11-05 00:35:37 +00009841SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01009842M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00009843L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01009844S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009845F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -07009846F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00009847
Steve Glendinning2cb37722008-12-11 20:54:30 -08009848SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01009849M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -08009850L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01009851S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -07009852F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08009853
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01009854SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01009855M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01009856L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01009857S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09009858F: drivers/video/fbdev/smscufx.c
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01009859
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03009860SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07009861M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03009862L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02009863T: git git://linuxtv.org/media_tree.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02009864S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03009865F: include/media/soc*
9866F: drivers/media/i2c/soc_camera/
9867F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03009868
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009869SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07009870M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009871S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009872F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009873
Joe Perchese3994db2014-07-30 00:38:42 -03009874SOFTLOGIC 6x10 MPEG CODEC
Andrey Utkin9661975d2014-11-17 13:59:23 -03009875M: Bluecherry Maintainers <maintainers@bluecherrydvr.com>
9876M: Andrey Utkin <andrey.utkin@corp.bluecherry.net>
9877M: Andrey Utkin <andrey.krieger.utkin@gmail.com>
Ismael Luceno1f141f62015-01-20 11:43:50 -03009878M: Ismael Luceno <ismael@iodev.co.uk>
Joe Perchese3994db2014-07-30 00:38:42 -03009879L: linux-media@vger.kernel.org
9880S: Supported
9881F: drivers/media/pci/solo6x10/
9882
Linus Torvalds1da177e2005-04-16 15:20:36 -07009883SOFTWARE RAID (Multiple Disks) SUPPORT
Jiri Slabyd8130622015-07-17 16:23:20 -07009884M: Neil Brown <neilb@suse.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009885L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08009886S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009887F: drivers/md/
9888F: include/linux/raid/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009889F: include/uapi/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009890
Linus Torvalds1da177e2005-04-16 15:20:36 -07009891SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009892M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07009893L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07009894S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07009895F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009896
Michael Buesch61e115a2007-09-18 15:12:50 -04009897SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +02009898M: Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04009899L: netdev@vger.kernel.org
9900S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009901F: drivers/ssb/
9902F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04009903
Linus Torvalds1da177e2005-04-16 15:20:36 -07009904SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009905M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd0944852010-02-11 10:40:13 -05009906L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01009907W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07009908S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009909F: Documentation/laptops/sony-laptop.txt
9910F: drivers/char/sonypi.c
9911F: drivers/platform/x86/sony-laptop.c
9912F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009913
Alex Dubovbaf85322008-02-09 10:20:54 -08009914SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07009915M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08009916W: http://tifmxx.berlios.de/
9917S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009918F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08009919
Maxim Levitsky0ab30492013-09-11 14:26:02 -07009920SONY MEMORYSTICK STANDARD SUPPORT
9921M: Maxim Levitsky <maximlevitsky@gmail.com>
9922S: Maintained
9923F: drivers/memstick/core/ms_block.*
9924
Linus Torvalds1da177e2005-04-16 15:20:36 -07009925SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07009926M: Jaroslav Kysela <perex@perex.cz>
Jiri Slabyd8130622015-07-17 16:23:20 -07009927M: Takashi Iwai <tiwai@suse.com>
Joe Perches93711662009-06-16 15:34:07 -07009928L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07009929W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +02009930T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -07009931T: git git://git.alsa-project.org/alsa-kernel.git
Takashi Iwaiff4a8f32014-05-13 14:55:51 +02009932Q: http://patchwork.kernel.org/project/alsa-devel/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009933S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07009934F: Documentation/sound/
9935F: include/sound/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009936F: include/uapi/sound/
Joe Perches679655d2009-04-07 20:44:32 -07009937F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009938
Mark Brown33bbe142013-08-09 18:10:50 +01009939SOUND - COMPRESSED AUDIO
9940M: Vinod Koul <vinod.koul@intel.com>
9941L: alsa-devel@alsa-project.org (moderated for non-subscribers)
9942T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
9943S: Supported
Vinod Koulf672f312013-08-12 11:15:27 +05309944F: Documentation/sound/alsa/compress_offload.txt
Mark Brown33bbe142013-08-09 18:10:50 +01009945F: include/sound/compress_driver.h
Vinod Koulf672f312013-08-12 11:15:27 +05309946F: include/uapi/sound/compress_*
Mark Brown33bbe142013-08-09 18:10:50 +01009947F: sound/core/compress_offload.c
9948F: sound/soc/soc-compress.c
9949
Mark Brownbd903bd2008-11-19 19:16:05 +00009950SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood6b9cf5c2013-01-15 15:13:27 +00009951M: Liam Girdwood <lgirdwood@gmail.com>
Mark Brownb02e48f2013-04-12 11:39:57 +01009952M: Mark Brown <broonie@kernel.org>
Mark Brown86f14df2011-11-02 21:36:32 +00009953T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -07009954L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01009955W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02009956S: Supported
Mark Brown2820f612013-08-11 19:35:11 +01009957F: Documentation/sound/alsa/soc/
Joe Perches679655d2009-04-07 20:44:32 -07009958F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01009959F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02009960
Mark Brownd7f87612013-10-19 14:33:54 +01009961SOUND - DMAENGINE HELPERS
9962M: Lars-Peter Clausen <lars@metafoo.de>
9963S: Supported
9964F: include/sound/dmaengine_pcm.h
9965F: sound/core/pcm_dmaengine.c
9966F: sound/soc/soc-generic-dmaengine-pcm.c
9967
Olli Salonen990a6a92014-08-22 13:50:42 -03009968SP2 MEDIA DRIVER
9969M: Olli Salonen <olli.salonen@iki.fi>
9970L: linux-media@vger.kernel.org
9971W: http://linuxtv.org/
9972Q: http://patchwork.linuxtv.org/project/linux-media/list/
9973S: Maintained
9974F: drivers/media/dvb-frontends/sp2*
9975
Sam Ravnborg473321f2009-01-04 15:47:49 -08009976SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07009977M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009978L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08009979Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -07009980T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
9981T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07009982S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009983F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07009984F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009985
David S. Miller6404fcc2010-03-16 01:00:17 -07009986SPARC SERIAL DRIVERS
9987M: "David S. Miller" <davem@davemloft.net>
9988L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07009989T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
9990T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -07009991S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -05009992F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08009993F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08009994F: drivers/tty/serial/sunhv.c
9995F: drivers/tty/serial/sunsab.c
9996F: drivers/tty/serial/sunsab.h
9997F: drivers/tty/serial/sunsu.c
9998F: drivers/tty/serial/sunzilog.c
9999F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -070010000
Christopher Li389325b2012-04-05 14:25:14 -070010001SPARSE CHECKER
10002M: "Christopher Li" <sparse@chrisli.org>
10003L: linux-sparse@vger.kernel.org
10004W: https://sparse.wiki.kernel.org/
10005T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
10006T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
10007S: Maintained
10008F: include/linux/compiler.h
10009
viresh kumarfc0c1952010-04-01 12:31:21 +010010010SPEAR PLATFORM SUPPORT
Viresh Kumarda899472015-07-17 16:23:50 -070010011M: Viresh Kumar <vireshk@kernel.org>
Viresh Kumar9cc23682014-04-18 15:07:16 -070010012M: Shiraz Hashim <shiraz.linux.kernel@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -070010013L: spear-devel@list.st.com
10014L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +010010015W: http://www.st.com/spear
10016S: Maintained
Joe Perches281e1922013-09-11 14:23:37 -070010017F: arch/arm/mach-spear/
viresh kumarfc0c1952010-04-01 12:31:21 +010010018
10019SPEAR CLOCK FRAMEWORK SUPPORT
Viresh Kumarda899472015-07-17 16:23:50 -070010020M: Viresh Kumar <vireshk@kernel.org>
Viresh Kumarfbfa0742012-03-15 15:17:09 -070010021L: spear-devel@list.st.com
10022L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +010010023W: http://www.st.com/spear
10024S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +053010025F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +010010026
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010027SPI SUBSYSTEM
Mark Brownb02e48f2013-04-12 11:39:57 +010010028M: Mark Brown <broonie@kernel.org>
Mark Browndfbe4032013-05-17 13:12:52 +010010029L: linux-spi@vger.kernel.org
Mark Browne7e4e132013-04-18 18:18:47 +010010030T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
Joe Perches8a6e2532010-03-05 13:43:11 -080010031Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010032S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010033F: Documentation/spi/
10034F: drivers/spi/
10035F: include/linux/spi/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010036F: include/uapi/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010037
Jim Lewis2752e402006-09-29 02:01:19 -070010038SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -070010039M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
Jim Lewis2752e402006-09-29 02:01:19 -070010040L: netdev@vger.kernel.org
10041S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010042F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -070010043F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -070010044
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010045SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070010046M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +100010047L: linuxppc-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010048W: http://www.ibm.com/developerworks/power/cell/
10049S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010050F: Documentation/filesystems/spufs.txt
10051F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010052
Phillip Lougherfc555842009-01-05 08:46:29 +000010053SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +010010054M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +000010055L: squashfs-devel@lists.sourceforge.net (subscribers-only)
10056W: http://squashfs.org.uk
10057S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010058F: Documentation/filesystems/squashfs.txt
10059F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +000010060
Linus Torvalds1da177e2005-04-16 15:20:36 -070010061SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -070010062M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010063S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010064F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070010065
Linus Torvalds26e9a392008-10-17 09:50:12 -070010066STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -080010067M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -080010068L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -080010069S: Supported
Greg Kroah-Hartman7b175c42013-06-18 12:58:12 -070010070F: Documentation/stable_kernel_rules.txt
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010071
Linus Torvalds26e9a392008-10-17 09:50:12 -070010072STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -080010073M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -070010074T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -070010075L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -080010076S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010077F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -070010078
Joe Perchesebd3d012011-07-05 09:42:02 -070010079STAGING - COMEDI
10080M: Ian Abbott <abbotti@mev.co.uk>
Lidza Louina81b884c2013-07-24 11:29:33 -040010081M: H Hartley Sweeten <hsweeten@visionengravers.com>
Joe Perchesebd3d012011-07-05 09:42:02 -070010082S: Odd Fixes
10083F: drivers/staging/comedi/
10084
Joe Perchesa0138162011-07-05 15:21:34 -070010085STAGING - FLARION FT1000 DRIVERS
10086M: Marek Belisko <marek.belisko@gmail.com>
10087S: Odd Fixes
10088F: drivers/staging/ft1000/
10089
Joe Perches6c1bb422011-07-05 09:42:07 -070010090STAGING - INDUSTRIAL IO
Sachin Kamat030a13d2013-09-11 11:00:00 +010010091M: Jonathan Cameron <jic23@kernel.org>
Joe Perchesa0138162011-07-05 15:21:34 -070010092L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -070010093S: Odd Fixes
10094F: drivers/staging/iio/
10095
Joe Perchesa0138162011-07-05 15:21:34 -070010096STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
10097M: Jarod Wilson <jarod@wilsonet.com>
10098W: http://www.lirc.org/
10099S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -080010100F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -070010101
Oleg Drokinf5e5de12014-08-15 12:48:14 -040010102STAGING - LUSTRE PARALLEL FILESYSTEM
10103M: Oleg Drokin <oleg.drokin@intel.com>
10104M: Andreas Dilger <andreas.dilger@intel.com>
Andreas Dilgerd98229f2015-08-24 11:11:49 -040010105L: lustre-devel@lists.lustre.org (moderated for non-subscribers)
10106W: http://wiki.lustre.org/
Oleg Drokinf5e5de12014-08-15 12:48:14 -040010107S: Maintained
10108F: drivers/staging/lustre
10109
Marc Dietrich7c6b6c72011-09-27 19:00:46 +020010110STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
10111M: Marc Dietrich <marvin24@gmx.de>
10112L: ac100@lists.launchpad.net (moderated for non-subscribers)
Stephen Warren5d96bf42013-02-27 17:02:54 -080010113L: linux-tegra@vger.kernel.org
Marc Dietrich7c6b6c72011-09-27 19:00:46 +020010114S: Maintained
10115F: drivers/staging/nvec/
10116
Joe Perchesa0138162011-07-05 15:21:34 -070010117STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
Jens Frederich3140b452013-08-04 20:57:43 +020010118M: Jens Frederich <jfrederich@gmail.com>
10119M: Daniel Drake <dsd@laptop.org>
Joe Perchesa0138162011-07-05 15:21:34 -070010120M: Jon Nettleton <jon.nettleton@gmail.com>
10121W: http://wiki.laptop.org/go/DCON
Jens Frederich3140b452013-08-04 20:57:43 +020010122S: Maintained
Joe Perchesa0138162011-07-05 15:21:34 -070010123F: drivers/staging/olpc_dcon/
10124
10125STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
Joe Perches29e70172011-07-05 09:42:08 -070010126M: Willy Tarreau <willy@meta-x.org>
10127S: Odd Fixes
10128F: drivers/staging/panel/
10129
Joe Perchesa0138162011-07-05 15:21:34 -070010130STAGING - REALTEK RTL8712U DRIVERS
10131M: Larry Finger <Larry.Finger@lwfinger.net>
10132M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
10133S: Odd Fixes
10134F: drivers/staging/rtl8712/
10135
Jes Sorensen7591ba82014-04-26 18:54:48 +020010136STAGING - REALTEK RTL8723U WIRELESS DRIVER
10137M: Larry Finger <Larry.Finger@lwfinger.net>
10138M: Jes Sorensen <Jes.Sorensen@redhat.com>
10139L: linux-wireless@vger.kernel.org
10140S: Maintained
10141F: drivers/staging/rtl8723au/
10142
Sudip Mukherjee980ac4d2015-03-03 16:21:07 +053010143STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
10144M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10145M: Teddy Wang <teddy.wang@siliconmotion.com>
10146M: Sudip Mukherjee <sudip@vectorindia.org>
10147L: linux-fbdev@vger.kernel.org
10148S: Maintained
10149F: drivers/staging/sm750fb/
10150
Joe Perches510fa4082014-02-10 16:37:56 -080010151STAGING - SLICOSS
10152M: Lior Dotan <liodot@gmail.com>
10153M: Christopher Harrer <charrer@alacritech.com>
10154S: Odd Fixes
10155F: drivers/staging/slicoss/
10156
Joe Perchesa0138162011-07-05 15:21:34 -070010157STAGING - SPEAKUP CONSOLE SPEECH DRIVER
10158M: William Hubbs <w.d.hubbs@gmail.com>
10159M: Chris Brannon <chris@the-brannons.com>
William Hubbsd33bce32013-05-12 13:49:54 -050010160M: Kirk Reiser <kirk@reisers.ca>
Joe Perchesa0138162011-07-05 15:21:34 -070010161M: Samuel Thibault <samuel.thibault@ens-lyon.org>
Samuel Thibaulte6a152e2014-07-17 23:34:58 +020010162L: speakup@linux-speakup.org
Joe Perchesa0138162011-07-05 15:21:34 -070010163W: http://www.linux-speakup.org/
10164S: Odd Fixes
10165F: drivers/staging/speakup/
10166
Joe Perchesb3e871c2011-07-05 09:42:10 -070010167STAGING - VIA VT665X DRIVERS
10168M: Forest Bond <forest@alittletooquiet.net>
10169S: Odd Fixes
10170F: drivers/staging/vt665?/
10171
Johnny Kima30baec2015-05-11 14:30:57 +090010172STAGING - WILC1000 WIFI DRIVER
10173M: Johnny Kim <johnny.kim@atmel.com>
Tony Cho0c9dbce2015-10-28 17:43:27 +090010174M: Austin Shin <austin.shin@atmel.com>
Johnny Kima30baec2015-05-11 14:30:57 +090010175M: Chris Park <chris.park@atmel.com>
Tony Cho06b54862015-09-08 17:08:01 +090010176M: Tony Cho <tony.cho@atmel.com>
10177M: Glen Lee <glen.lee@atmel.com>
10178M: Leo Kim <leo.kim@atmel.com>
Johnny Kima30baec2015-05-11 14:30:57 +090010179L: linux-wireless@vger.kernel.org
10180S: Supported
10181F: drivers/staging/wilc1000/
10182
Joe Perches709bcb02011-07-05 09:42:13 -070010183STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +020010184M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -070010185S: Odd Fixes
10186F: drivers/staging/xgifb/
10187
Mike Marciniszyn77241052015-07-30 15:17:43 -040010188HFI1 DRIVER
10189M: Mike Marciniszyn <infinipath@intel.com>
10190L: linux-rdma@vger.kernel.org
10191S: Supported
10192F: drivers/staging/rdma/hfi1
10193
Linus Torvalds1da177e2005-04-16 15:20:36 -070010194STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010195M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -070010196S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -070010197F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010198
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010199SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -070010200M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010201W: http://sammy.net/sun3/
10202S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010203F: arch/m68k/kernel/*sun3*
10204F: arch/m68k/sun3*/
10205F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -070010206F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010207
Hans de Goedeaf6a5af2014-12-18 09:24:50 -080010208SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
10209M: Hans de Goede <hdegoede@redhat.com>
10210L: linux-input@vger.kernel.org
10211S: Maintained
10212F: Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
10213F: drivers/input/keyboard/sun4i-lradc-keys.c
10214
Denis Kirjanov2bc9ff02013-08-17 09:08:49 +040010215SUNDANCE NETWORK DRIVER
10216M: Denis Kirjanov <kda@linux-powerpc.org>
10217L: netdev@vger.kernel.org
10218S: Maintained
10219F: drivers/net/ethernet/dlink/sundance.c
10220
Paul Mundt2cbb12a2007-11-19 13:08:37 +090010221SUPERH
Paul Mundt2cbb12a2007-11-19 13:08:37 +090010222L: linux-sh@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -080010223Q: http://patchwork.kernel.org/project/linux-sh/list/
Geert Uytterhoevendcaa57d2014-04-03 14:48:47 -070010224S: Orphan
Paul Mundt066069e2009-04-14 06:32:08 +090010225F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -070010226F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +090010227F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010228
Randy Dunlap4480f15b2008-10-12 16:11:58 -070010229SUSPEND TO RAM
Rafael J. Wysocki7fb06082014-03-20 03:34:47 +010010230M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Joe Perches8b58be82009-07-29 15:04:30 -070010231M: Len Brown <len.brown@intel.com>
10232M: Pavel Machek <pavel@ucw.cz>
WANG Congbf1c1382011-10-08 20:57:50 +020010233L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010234S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010235F: Documentation/power/
10236F: arch/x86/kernel/acpi/
10237F: drivers/base/power/
10238F: kernel/power/
10239F: include/linux/suspend.h
10240F: include/linux/freezer.h
10241F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070010242
10243SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -070010244M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010245L: linux-video@atrey.karlin.mff.cuni.cz
10246S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010247F: Documentation/svga.txt
10248F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010249
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -070010250SWIOTLB SUBSYSTEM
10251M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10252L: linux-kernel@vger.kernel.org
10253S: Supported
10254F: lib/swiotlb.c
10255F: arch/*/kernel/pci-swiotlb.c
10256F: include/linux/swiotlb.h
10257
Jiri Pirko007f7902014-11-28 14:34:17 +010010258SWITCHDEV
10259M: Jiri Pirko <jiri@resnulli.us>
10260L: netdev@vger.kernel.org
10261S: Supported
10262F: net/switchdev/
10263F: include/net/switchdev.h
10264
Vineet Guptadb8e35d2013-01-18 15:12:25 +053010265SYNOPSYS ARC ARCHITECTURE
10266M: Vineet Gupta <vgupta@synopsys.com>
Vineet Gupta9acdc912015-10-26 10:52:57 +053010267L: linux-snps-arc@lists.infraded.org
Vineet Guptadb8e35d2013-01-18 15:12:25 +053010268S: Supported
10269F: arch/arc/
Vineet Gupta9b288292014-11-18 17:36:11 +053010270F: Documentation/devicetree/bindings/arc/*
Rob Herring2d799dd2015-11-05 13:40:40 -060010271F: Documentation/devicetree/bindings/interrupt-controller/snps,arc*
Joe Perchesc6a0fe42013-09-11 14:23:45 -070010272F: drivers/tty/serial/arc_uart.c
Baruch Siachb7182d12015-08-11 12:08:32 +030010273T: git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
Vineet Guptadb8e35d2013-01-18 15:12:25 +053010274
Alexey Brodkin556cc1c2014-01-27 14:51:34 +010010275SYNOPSYS ARC SDP platform support
10276M: Alexey Brodkin <abrodkin@synopsys.com>
10277S: Supported
10278F: arch/arc/plat-axs10x
10279F: arch/arc/boot/dts/ax*
10280F: Documentation/devicetree/bindings/arc/axs10*
10281
Lee Jones6c284c92015-05-12 14:13:58 +010010282SYSTEM CONFIGURATION (SYSCON)
10283M: Lee Jones <lee.jones@linaro.org>
10284M: Arnd Bergmann <arnd@arndb.de>
10285T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
10286S: Supported
10287F: drivers/mfd/syscon.c
10288
Linus Torvalds1da177e2005-04-16 15:20:36 -070010289SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070010290M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010291S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010292F: Documentation/filesystems/sysv-fs.txt
10293F: fs/sysv/
10294F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070010295
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -070010296TARGET SUBSYSTEM
Joe Perches9c3646d2015-06-25 15:02:00 -070010297M: "Nicholas A. Bellinger" <nab@linux-iscsi.org>
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -070010298L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +000010299L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -070010300W: http://www.linux-iscsi.org
Joe Perchescf015e92014-02-25 15:01:47 -080010301W: http://groups.google.com/group/linux-iscsi-target-dev
Nicholas Bellinger452cf322013-05-11 16:27:56 -070010302T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -070010303S: Supported
10304F: drivers/target/
10305F: include/target/
10306F: Documentation/target/
10307
Alan Cox4e688522008-04-30 00:52:11 -070010308TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -070010309M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -070010310S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010311F: Documentation/accounting/taskstats*
10312F: include/linux/taskstats*
10313F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -070010314
Stephen Hemminger781b456a2006-07-10 20:25:29 -070010315TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +000010316M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-07-10 20:25:29 -070010317L: netdev@vger.kernel.org
10318S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010319F: include/net/pkt_cls.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010320F: include/uapi/linux/pkt_cls.h
Joe Perches679655d2009-04-07 20:44:32 -070010321F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -070010322
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -070010323TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -070010324M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
10325M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -070010326W: http://tcp-lp-mod.sourceforge.net/
10327S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010328F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -070010329
Antti Palosaari91952bc2012-10-01 12:28:46 -030010330TDA10071 MEDIA DRIVER
10331M: Antti Palosaari <crope@iki.fi>
10332L: linux-media@vger.kernel.org
10333W: http://linuxtv.org/
10334W: http://palosaari.fi/linux/
10335Q: http://patchwork.linuxtv.org/project/linux-media/list/
10336T: git git://linuxtv.org/anttip/media_tree.git
10337S: Maintained
10338F: drivers/media/dvb-frontends/tda10071*
10339
10340TDA18212 MEDIA DRIVER
10341M: Antti Palosaari <crope@iki.fi>
10342L: linux-media@vger.kernel.org
10343W: http://linuxtv.org/
10344W: http://palosaari.fi/linux/
10345Q: http://patchwork.linuxtv.org/project/linux-media/list/
10346T: git git://linuxtv.org/anttip/media_tree.git
10347S: Maintained
10348F: drivers/media/tuners/tda18212*
10349
10350TDA18218 MEDIA DRIVER
10351M: Antti Palosaari <crope@iki.fi>
10352L: linux-media@vger.kernel.org
10353W: http://linuxtv.org/
10354W: http://palosaari.fi/linux/
10355Q: http://patchwork.linuxtv.org/project/linux-media/list/
10356T: git git://linuxtv.org/anttip/media_tree.git
10357S: Maintained
10358F: drivers/media/tuners/tda18218*
10359
Michael Krufky3b2f6ab2012-10-02 00:55:32 -030010360TDA18271 MEDIA DRIVER
10361M: Michael Krufky <mkrufky@linuxtv.org>
10362L: linux-media@vger.kernel.org
10363W: http://linuxtv.org/
10364W: http://github.com/mkrufky
10365Q: http://patchwork.linuxtv.org/project/linux-media/list/
10366T: git git://linuxtv.org/mkrufky/tuners.git
10367S: Maintained
10368F: drivers/media/tuners/tda18271*
10369
Michael Krufkye48307a2012-10-02 00:56:33 -030010370TDA827x MEDIA DRIVER
10371M: Michael Krufky <mkrufky@linuxtv.org>
10372L: linux-media@vger.kernel.org
10373W: http://linuxtv.org/
10374W: http://github.com/mkrufky
10375Q: http://patchwork.linuxtv.org/project/linux-media/list/
10376T: git git://linuxtv.org/mkrufky/tuners.git
10377S: Maintained
10378F: drivers/media/tuners/tda8290.*
10379
Michael Krufky66cf9212012-10-02 00:56:28 -030010380TDA8290 MEDIA DRIVER
10381M: Michael Krufky <mkrufky@linuxtv.org>
10382L: linux-media@vger.kernel.org
10383W: http://linuxtv.org/
10384W: http://github.com/mkrufky
10385Q: http://patchwork.linuxtv.org/project/linux-media/list/
10386T: git git://linuxtv.org/mkrufky/tuners.git
10387S: Maintained
10388F: drivers/media/tuners/tda8290.*
10389
Hans Verkuil4b9fba32012-11-23 10:02:05 -030010390TDA9840 MEDIA DRIVER
10391M: Hans Verkuil <hverkuil@xs4all.nl>
10392L: linux-media@vger.kernel.org
10393T: git git://linuxtv.org/media_tree.git
10394W: http://linuxtv.org
10395S: Maintained
10396F: drivers/media/i2c/tda9840*
10397
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -020010398TEA5761 TUNER DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -020010399M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -020010400L: linux-media@vger.kernel.org
10401W: http://linuxtv.org
10402T: git git://linuxtv.org/media_tree.git
10403S: Odd fixes
10404F: drivers/media/tuners/tea5761.*
10405
10406TEA5767 TUNER DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -020010407M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -020010408L: linux-media@vger.kernel.org
10409W: http://linuxtv.org
10410T: git git://linuxtv.org/media_tree.git
10411S: Maintained
10412F: drivers/media/tuners/tea5767.*
10413
Hans Verkuil4b9fba32012-11-23 10:02:05 -030010414TEA6415C MEDIA DRIVER
10415M: Hans Verkuil <hverkuil@xs4all.nl>
10416L: linux-media@vger.kernel.org
10417T: git git://linuxtv.org/media_tree.git
10418W: http://linuxtv.org
10419S: Maintained
10420F: drivers/media/i2c/tea6415c*
10421
10422TEA6420 MEDIA DRIVER
10423M: Hans Verkuil <hverkuil@xs4all.nl>
10424L: linux-media@vger.kernel.org
10425T: git git://linuxtv.org/media_tree.git
10426W: http://linuxtv.org
10427S: Maintained
10428F: drivers/media/i2c/tea6420*
10429
Jiri Pirko3d249d42011-11-11 22:16:48 +000010430TEAM DRIVER
Jiri Pirkodca9ab92013-02-15 23:55:05 +000010431M: Jiri Pirko <jiri@resnulli.us>
Jiri Pirko3d249d42011-11-11 22:16:48 +000010432L: netdev@vger.kernel.org
10433S: Supported
10434F: drivers/net/team/
10435F: include/linux/if_team.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010436F: include/uapi/linux/if_team.h
Jiri Pirko3d249d42011-11-11 22:16:48 +000010437
Vivien Didelot7d029122013-01-04 16:18:14 -050010438TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
Joe Perches9c3646d2015-06-25 15:02:00 -070010439M: "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
Vivien Didelot7d029122013-01-04 16:18:14 -050010440S: Maintained
10441F: arch/x86/platform/ts5500/
10442
Sean Young40ad4a32012-11-19 10:32:53 -030010443TECHNOTREND USB IR RECEIVER
10444M: Sean Young <sean@mess.org>
10445L: linux-media@vger.kernel.org
10446S: Maintained
10447F: drivers/media/rc/ttusbir.c
10448
Stephen Warrenadabdb02013-09-13 13:00:57 -060010449TEGRA ARCHITECTURE SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -070010450M: Stephen Warren <swarren@wwwdotorg.org>
Stephen Warrenadabdb02013-09-13 13:00:57 -060010451M: Thierry Reding <thierry.reding@gmail.com>
Stephen Warren554077c2014-10-03 09:50:32 -060010452M: Alexandre Courbot <gnurou@gmail.com>
Erik Gilling84b94142010-06-09 15:35:53 -070010453L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -070010454Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
Andreas Färberb779b882014-07-28 12:06:26 -060010455T: git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
Erik Gilling84b94142010-06-09 15:35:53 -070010456S: Supported
Stephen Warrenbbbe96e2013-04-29 16:17:23 -070010457N: [^a-z]tegra
Erik Gilling84b94142010-06-09 15:35:53 -070010458
Stephen Warrenadabdb02013-09-13 13:00:57 -060010459TEGRA CLOCK DRIVER
10460M: Peter De Schrijver <pdeschrijver@nvidia.com>
10461M: Prashant Gaikwad <pgaikwad@nvidia.com>
10462S: Supported
10463F: drivers/clk/tegra/
10464
10465TEGRA DMA DRIVER
10466M: Laxman Dewangan <ldewangan@nvidia.com>
10467S: Supported
10468F: drivers/dma/tegra20-apb-dma.c
10469
Stephen Warrenadabdb02013-09-13 13:00:57 -060010470TEGRA I2C DRIVER
10471M: Laxman Dewangan <ldewangan@nvidia.com>
10472S: Supported
10473F: drivers/i2c/busses/i2c-tegra.c
10474
10475TEGRA IOMMU DRIVERS
10476M: Hiroshi Doyu <hdoyu@nvidia.com>
10477S: Supported
10478F: drivers/iommu/tegra*
10479
10480TEGRA KBC DRIVER
10481M: Rakesh Iyer <riyer@nvidia.com>
10482M: Laxman Dewangan <ldewangan@nvidia.com>
10483S: Supported
10484F: drivers/input/keyboard/tegra-kbc.c
10485
Stephen Warrenadabdb02013-09-13 13:00:57 -060010486TEGRA PWM DRIVER
10487M: Thierry Reding <thierry.reding@gmail.com>
10488S: Supported
10489F: drivers/pwm/pwm-tegra.c
10490
10491TEGRA SERIAL DRIVER
10492M: Laxman Dewangan <ldewangan@nvidia.com>
10493S: Supported
10494F: drivers/tty/serial/serial-tegra.c
10495
10496TEGRA SPI DRIVER
10497M: Laxman Dewangan <ldewangan@nvidia.com>
10498S: Supported
10499F: drivers/spi/spi-tegra*
10500
Andy Gospodarek1a348cc2007-09-17 18:50:36 -070010501TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010502M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -070010503L: netdev@vger.kernel.org
10504S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -070010505F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -070010506
Alan Cox4e688522008-04-30 00:52:11 -070010507Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -070010508M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -070010509S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010510F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -070010511
Randy Dunlap4480f15b2008-10-12 16:11:58 -070010512TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -070010513M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -070010514M: Max Filippov <jcmvbkbc@gmail.com>
10515L: linux-xtensa@linux-xtensa.org
Alan Cox4e688522008-04-30 00:52:11 -070010516S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010517F: arch/xtensa/
Max Filippov3dc99852014-04-03 14:48:48 -070010518F: drivers/irqchip/irq-xtensa-*
Alan Cox4e688522008-04-30 00:52:11 -070010519
Hans Verkuil5313ba62013-12-13 09:00:38 -030010520THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
10521M: Hans Verkuil <hverkuil@xs4all.nl>
10522L: linux-media@vger.kernel.org
10523T: git git://linuxtv.org/media_tree.git
10524W: http://linuxtv.org
10525S: Maintained
10526F: drivers/media/radio/radio-raremono.c
10527
Zhang Ruid3fb6952012-11-15 08:58:27 +080010528THERMAL
Joe Perchesb75f0052014-03-03 15:38:37 -080010529M: Zhang Rui <rui.zhang@intel.com>
Lee Jonesf14d1c22014-05-30 11:03:28 +010010530M: Eduardo Valentin <edubezval@gmail.com>
Joe Perchesb75f0052014-03-03 15:38:37 -080010531L: linux-pm@vger.kernel.org
10532T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
10533T: git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
10534Q: https://patchwork.kernel.org/project/linux-pm/list/
10535S: Supported
10536F: drivers/thermal/
10537F: include/linux/thermal.h
Florian Fainelliaf6c9f12014-11-19 18:11:00 -080010538F: include/uapi/linux/thermal.h
Joe Perchesb75f0052014-03-03 15:38:37 -080010539F: include/linux/cpu_cooling.h
10540F: Documentation/devicetree/bindings/thermal/
Zhang Ruid3fb6952012-11-15 08:58:27 +080010541
Viresh Kumar64e05d82015-08-27 07:32:11 +053010542THERMAL/CPU_COOLING
10543M: Amit Daniel Kachhap <amit.kachhap@gmail.com>
10544M: Viresh Kumar <viresh.kumar@linaro.org>
10545M: Javi Merino <javi.merino@arm.com>
10546L: linux-pm@vger.kernel.org
10547S: Supported
10548F: Documentation/thermal/cpu-cooling-api.txt
10549F: drivers/thermal/cpu_cooling.c
10550F: include/linux/cpu_cooling.h
10551
Vivien Didelot30ba2fb2013-01-22 12:01:21 -050010552THINGM BLINK(1) USB RGB LED DRIVER
10553M: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
10554S: Maintained
10555F: drivers/hid/hid-thingm.c
10556
Alan Cox4e688522008-04-30 00:52:11 -070010557THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010558M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -070010559L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -050010560L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -070010561W: http://ibm-acpi.sourceforge.net
10562W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -070010563T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -070010564S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010565F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -070010566
Eduardo Valentin1b46f2a2013-03-15 09:00:34 -040010567TI BANDGAP AND THERMAL DRIVER
Lee Jonesf14d1c22014-05-30 11:03:28 +010010568M: Eduardo Valentin <edubezval@gmail.com>
Eduardo Valentin1b46f2a2013-03-15 09:00:34 -040010569L: linux-pm@vger.kernel.org
Nishanth Menon531ff132015-01-03 13:13:30 -060010570L: linux-omap@vger.kernel.org
Eduardo Valentin5a723e82015-01-05 17:48:13 -040010571S: Maintained
Eduardo Valentin794b2e22013-05-15 15:46:01 +000010572F: drivers/thermal/ti-soc-thermal/
Eduardo Valentin1b46f2a2013-03-15 09:00:34 -040010573
Max Filippov0c7665c2015-01-12 10:20:46 +030010574TI CDCE706 CLOCK DRIVER
10575M: Max Filippov <jcmvbkbc@gmail.com>
10576S: Maintained
10577F: drivers/clk/clk-cdce706.c
10578
Tero Kristo49b6a5e2014-07-02 17:03:50 +030010579TI CLOCK DRIVER
10580M: Tero Kristo <t-kristo@ti.com>
10581L: linux-omap@vger.kernel.org
10582S: Maintained
10583F: drivers/clk/ti/
10584F: include/linux/clk/ti.h
10585
Alex Dubov4020f2d2006-10-04 02:15:37 -070010586TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010587M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020010588S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010589F: drivers/misc/tifm*
10590F: drivers/mmc/host/tifm_sd.c
10591F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -070010592
Santosh Shilimkare0c52402014-07-10 11:30:08 -040010593TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
Santosh Shilimkar97215802014-10-13 14:16:28 -040010594M: Santosh Shilimkar <ssantosh@kernel.org>
Santosh Shilimkare0c52402014-07-10 11:30:08 -040010595L: linux-kernel@vger.kernel.org
10596L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10597S: Maintained
10598F: drivers/soc/ti/*
10599T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
10600
10601
M R Swami Reddy152ad442012-04-02 20:02:31 +053010602TI LM49xxx FAMILY ASoC CODEC DRIVERS
10603M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +053010604M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +053010605L: alsa-devel@alsa-project.org (moderated for non-subscribers)
10606S: Maintained
10607F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +053010608F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +053010609
Kim, Milo0edd8072012-12-17 16:01:17 -080010610TI LP855x BACKLIGHT DRIVER
10611M: Milo Kim <milo.kim@ti.com>
10612S: Maintained
10613F: Documentation/backlight/lp855x-driver.txt
10614F: drivers/video/backlight/lp855x_bl.c
10615F: include/linux/platform_data/lp855x.h
10616
Kim, Milofaf13f62012-12-10 05:27:03 +000010617TI LP8727 CHARGER DRIVER
10618M: Milo Kim <milo.kim@ti.com>
10619S: Maintained
10620F: drivers/power/lp8727_charger.c
10621F: include/linux/platform_data/lp8727.h
10622
Kim, Milo22f12292012-12-10 05:27:55 +000010623TI LP8788 MFD DRIVER
10624M: Milo Kim <milo.kim@ti.com>
10625S: Maintained
10626F: drivers/iio/adc/lp8788_adc.c
10627F: drivers/leds/leds-lp8788.c
10628F: drivers/mfd/lp8788*.c
10629F: drivers/power/lp8788-charger.c
10630F: drivers/regulator/lp8788-*.c
10631F: include/linux/mfd/lp8788*.h
10632
Karicheri, Muralidharan84640e22015-01-15 19:12:50 -050010633TI NETCP ETHERNET DRIVER
10634M: Wingman Kwok <w-kwok2@ti.com>
10635M: Murali Karicheri <m-karicheri2@ti.com>
10636L: netdev@vger.kernel.org
10637S: Maintained
10638F: drivers/net/ethernet/ti/netcp*
10639
Kevin Cernekee217e0ca2015-05-03 17:00:19 -070010640TI TAS571X FAMILY ASoC CODEC DRIVER
10641M: Kevin Cernekee <cernekee@chromium.org>
10642L: alsa-devel@alsa-project.org (moderated for non-subscribers)
10643S: Odd Fixes
10644F: sound/soc/codecs/tas571x*
10645
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +030010646TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +030010647M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +030010648L: alsa-devel@alsa-project.org (moderated for non-subscribers)
10649S: Maintained
10650F: sound/soc/codecs/twl4030*
10651
Luciano Coelho90921012011-11-20 21:40:41 +020010652TI WILINK WIRELESS DRIVERS
Luciano Coelho90921012011-11-20 21:40:41 +020010653L: linux-wireless@vger.kernel.org
10654W: http://wireless.kernel.org/en/users/Drivers/wl12xx
10655W: http://wireless.kernel.org/en/users/Drivers/wl1251
10656T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
Luciano Coelho22d072f2013-12-09 22:28:32 +020010657S: Orphan
Luciano Coelho90921012011-11-20 21:40:41 +020010658F: drivers/net/wireless/ti/
10659F: include/linux/wl12xx.h
10660
Per Lidene86eaa32006-01-12 16:45:18 +010010661TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -070010662M: Jon Maloy <jon.maloy@ericsson.com>
Jon Paul Maloy115403d2015-03-09 14:44:13 -040010663M: Ying Xue <ying.xue@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -050010664L: netdev@vger.kernel.org (core kernel code)
10665L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +010010666W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +010010667S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010668F: include/uapi/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -070010669F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +010010670
Chris Metcalf867e3592010-05-28 23:09:12 -040010671TILE ARCHITECTURE
Chris Metcalfc47b15c2014-11-13 09:41:58 -050010672M: Chris Metcalf <cmetcalf@ezchip.com>
Chris Metcalf740e1432015-02-13 13:16:49 -050010673W: http://www.ezchip.com/scm/
Chris Metcalf867e3592010-05-28 23:09:12 -040010674S: Supported
10675F: arch/tile/
Chris Metcalf6b940602013-08-07 10:45:01 -040010676F: drivers/char/tile-srom.c
Chris Metcalf5c770752011-03-01 13:01:49 -050010677F: drivers/edac/tile_edac.c
Chris Metcalf6b940602013-08-07 10:45:01 -040010678F: drivers/net/ethernet/tile/
10679F: drivers/rtc/rtc-tile.c
10680F: drivers/tty/hvc/hvc_tile.c
Chris Metcalfb5c6c1a2013-08-12 14:11:44 -040010681F: drivers/tty/serial/tilegx.c
Chris Metcalf6b940602013-08-07 10:45:01 -040010682F: drivers/usb/host/*-tilegx.c
10683F: include/linux/usb/tilegx.h
Chris Metcalf867e3592010-05-28 23:09:12 -040010684
Linus Torvalds1da177e2005-04-16 15:20:36 -070010685TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010686M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +080010687L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010688W: http://sourceforge.net/projects/tlan/
10689S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010690F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -070010691F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010692
Kentaro Takedad74db3b2009-02-05 17:18:18 +090010693TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -070010694M: Kentaro Takeda <takedakn@nttdata.co.jp>
10695M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +090010696L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
10697L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +090010698L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
10699L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
10700W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +090010701T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +090010702S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010703F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +090010704
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -030010705TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -030010706M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd0944852010-02-11 10:40:13 -050010707L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -030010708S: Maintained
10709F: drivers/platform/x86/topstar-laptop.c
10710
Linus Torvalds1da177e2005-04-16 15:20:36 -070010711TOSHIBA ACPI EXTRAS DRIVER
Azael Avalos0a63ca12015-03-06 18:14:42 -070010712M: Azael Avalos <coproscefalo@gmail.com>
Matthew Garrettd0944852010-02-11 10:40:13 -050010713L: platform-driver-x86@vger.kernel.org
Azael Avalos0a63ca12015-03-06 18:14:42 -070010714S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010715F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070010716
Azael Avalos0a63ca12015-03-06 18:14:42 -070010717TOSHIBA BLUETOOTH DRIVER
10718M: Azael Avalos <coproscefalo@gmail.com>
10719L: platform-driver-x86@vger.kernel.org
10720S: Maintained
10721F: drivers/platform/x86/toshiba_bluetooth.c
10722
10723TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
10724M: Azael Avalos <coproscefalo@gmail.com>
10725L: platform-driver-x86@vger.kernel.org
10726S: Maintained
10727F: drivers/platform/x86/toshiba_haps.c
10728
Azael Avalos14991fc2015-09-28 20:32:28 -060010729TOSHIBA WMI HOTKEYS DRIVER
10730M: Azael Avalos <coproscefalo@gmail.com>
10731L: platform-driver-x86@vger.kernel.org
10732S: Maintained
10733F: drivers/platform/x86/toshiba-wmi.c
10734
Linus Torvalds1da177e2005-04-16 15:20:36 -070010735TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010736M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010737W: http://www.buzzard.org.uk/toshiba/
10738S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010739F: drivers/char/toshiba.c
10740F: include/linux/toshiba.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010741F: include/uapi/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070010742
Mats Randgaardd32d9862015-07-09 05:45:47 -030010743TOSHIBA TC358743 DRIVER
10744M: Mats Randgaard <matrandg@cisco.com>
10745L: linux-media@vger.kernel.org
10746S: Maintained
10747F: drivers/media/i2c/tc358743*
10748F: include/media/tc358743.h
10749
Pierre Ossmand719f902009-03-24 21:06:09 +010010750TMIO MMC DRIVER
Ben Hutchingsc4b13fb2015-04-27 00:01:53 +010010751M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +020010752L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +010010753S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +020010754F: drivers/mmc/host/tmio_mmc*
10755F: drivers/mmc/host/sh_mobile_sdhi.c
10756F: include/linux/mmc/tmio.h
10757F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +010010758
Guenter Roeck917cc4e2013-05-19 20:44:27 -070010759TMP401 HARDWARE MONITOR DRIVER
10760M: Guenter Roeck <linux@roeck-us.net>
10761L: lm-sensors@lm-sensors.org
10762S: Maintained
10763F: Documentation/hwmon/tmp401
10764F: drivers/hwmon/tmp401.c
10765
Hugh Dickins98f32602009-05-21 20:33:58 +010010766TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -070010767M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +010010768L: linux-mm@kvack.org
10769S: Maintained
10770F: include/linux/shmem_fs.h
10771F: mm/shmem.c
10772
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -020010773TM6000 VIDEO4LINUX DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -020010774M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -020010775L: linux-media@vger.kernel.org
10776W: http://linuxtv.org
10777T: git git://linuxtv.org/media_tree.git
10778S: Odd fixes
10779F: drivers/media/usb/tm6000/
10780
Hans Verkuilc65fde12014-08-10 05:16:39 -030010781TW68 VIDEO4LINUX DRIVER
10782M: Hans Verkuil <hverkuil@xs4all.nl>
10783L: linux-media@vger.kernel.org
10784T: git git://linuxtv.org/media_tree.git
10785W: http://linuxtv.org
10786S: Odd Fixes
10787F: drivers/media/pci/tw68/
10788
Alan Cox4e688522008-04-30 00:52:11 -070010789TPM DEVICE DRIVER
Peter Huewe901486b2013-10-22 19:28:30 +020010790M: Peter Huewe <peterhuewe@gmx.de>
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -030010791M: Marcel Selhorst <tpmdd@selhorst.net>
Jarkko Sakkinen89adb832015-10-16 12:14:28 +030010792M: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
Peter Huewece93b4b2015-03-15 01:05:31 +010010793R: Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
Peter Huewe383dec12013-10-30 20:54:45 +010010794W: http://tpmdd.sourceforge.net
Rajiv Andrade63a10df2008-10-15 22:04:36 -070010795L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Peter Huewef78c81b2015-01-17 15:17:51 +010010796Q: git git://github.com/PeterHuewe/linux-tpmdd.git
10797T: https://github.com/PeterHuewe/linux-tpmdd
Alan Cox4e688522008-04-30 00:52:11 -070010798S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010799F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -070010800
Ashley Lai1a0f1b22014-12-04 21:01:51 -060010801TPM IBM_VTPM DEVICE DRIVER
10802M: Ashley Lai <ashleydlai@gmail.com>
10803W: http://tpmdd.sourceforge.net
10804L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
10805S: Maintained
10806F: drivers/char/tpm/tpm_ibmvtpm*
10807
Joe Perchesd6f005a2009-10-26 16:49:40 -070010808TRACING
10809M: Steven Rostedt <rostedt@goodmis.org>
Joe Perchesd6f005a2009-10-26 16:49:40 -070010810M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +010010811T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -070010812S: Maintained
10813F: Documentation/trace/ftrace.txt
10814F: arch/*/*/*/ftrace.h
10815F: arch/*/kernel/ftrace.c
10816F: include/*/ftrace.h
10817F: include/linux/trace*.h
10818F: include/trace/
10819F: kernel/trace/
Masami Hiramatsu6e68e6c2014-09-22 23:42:50 +000010820F: tools/testing/selftests/ftrace/
Joe Perchesd6f005a2009-10-26 16:49:40 -070010821
Linus Torvalds1da177e2005-04-16 15:20:36 -070010822TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -070010823M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -070010824T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070010825S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +020010826K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -070010827
Alan Cox4e688522008-04-30 00:52:11 -070010828TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -080010829M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jiri Slabyd8130622015-07-17 16:23:20 -070010830M: Jiri Slaby <jslaby@suse.com>
Greg KH879a5a02012-01-31 20:02:00 -080010831S: Supported
Joe Perches08deed12012-03-23 15:01:57 -070010832T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Baruch Siach84e1eb82015-06-04 10:56:58 +030010833F: Documentation/serial/
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -020010834F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -080010835F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +010010836F: include/linux/serial_core.h
10837F: include/linux/serial.h
10838F: include/linux/tty.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010839F: include/uapi/linux/serial_core.h
10840F: include/uapi/linux/serial.h
10841F: include/uapi/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -070010842
Antti Palosaari91952bc2012-10-01 12:28:46 -030010843TUA9001 MEDIA DRIVER
10844M: Antti Palosaari <crope@iki.fi>
10845L: linux-media@vger.kernel.org
10846W: http://linuxtv.org/
10847W: http://palosaari.fi/linux/
10848Q: http://patchwork.linuxtv.org/project/linux-media/list/
10849T: git git://linuxtv.org/anttip/media_tree.git
10850S: Maintained
10851F: drivers/media/tuners/tua9001*
10852
Grant Grundler740db6d2008-02-17 11:53:49 -070010853TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -070010854M: Grant Grundler <grundler@parisc-linux.org>
Grant Grundler740db6d2008-02-17 11:53:49 -070010855L: netdev@vger.kernel.org
10856S: Maintained
Joe Perches0f04e2a2012-01-10 15:08:56 -080010857F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010858
10859TUN/TAP driver
Jiri Slabyba57b6f2012-11-30 07:05:40 +000010860M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010861W: http://vtun.sourceforge.net/tun
10862S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010863F: Documentation/networking/tuntap.txt
10864F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010865
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -080010866TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070010867M: "Maciej W. Rozycki" <macro@linux-mips.org>
Ralf Baechlec4063392014-04-03 13:29:06 +020010868M: Ralf Baechle <ralf@linux-mips.org>
10869L: linux-mips@linux-mips.org
10870Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -080010871S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010872F: drivers/tc/
10873F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -080010874
Linus Torvalds1da177e2005-04-16 15:20:36 -070010875U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010876M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010877L: linux-scsi@vger.kernel.org
10878S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010879F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070010880
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010881UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +030010882M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +030010883M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010884L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +030010885T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010886W: http://www.linux-mtd.infradead.org/doc/ubifs.html
10887S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010888F: Documentation/filesystems/ubifs.txt
10889F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010890
Greg Ungerere1632fa2015-06-19 10:40:03 +100010891UCLINUX (M68KNOMMU AND COLDFIRE)
Joe Perches8b58be82009-07-29 15:04:30 -070010892M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +010010893W: http://www.uclinux.org/
Greg Ungerere1632fa2015-06-19 10:40:03 +100010894L: linux-m68k@lists.linux-m68k.org
Alan Coxcc2020e2008-05-19 14:21:51 +010010895L: uclinux-dev@uclinux.org (subscribers-only)
Greg Ungerere1632fa2015-06-19 10:40:03 +100010896T: git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
Alan Coxcc2020e2008-05-19 14:21:51 +010010897S: Maintained
Greg Ungerere1632fa2015-06-19 10:40:03 +100010898F: arch/m68k/coldfire/
10899F: arch/m68k/68*/
Joe Perches61bc02b2011-04-14 15:22:04 -070010900F: arch/m68k/*/*_no.*
10901F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +010010902
Linus Torvalds1da177e2005-04-16 15:20:36 -070010903UDF FILESYSTEM
Jiri Slabyd8130622015-07-17 16:23:20 -070010904M: Jan Kara <jack@suse.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010905S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010906F: Documentation/filesystems/udf.txt
10907F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010908
Alan Coxcc2020e2008-05-19 14:21:51 +010010909UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070010910M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +010010911S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010912F: Documentation/filesystems/ufs.txt
10913F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +010010914
David Herrmann0a09d3a2012-06-10 15:16:28 +020010915UHID USERSPACE HID IO DRIVER:
10916M: David Herrmann <dh.herrmann@googlemail.com>
10917L: linux-input@vger.kernel.org
10918S: Maintained
10919F: drivers/hid/uhid.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010920F: include/uapi/linux/uhid.h
David Herrmann0a09d3a2012-06-10 15:16:28 +020010921
David Vrabel18332a82008-09-17 16:34:44 +010010922ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +010010923L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +010010924S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +000010925F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -070010926F: include/linux/uwb.h
10927F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +010010928
GuanXuetaob31d8272011-01-16 00:35:49 +080010929UNICORE32 ARCHITECTURE:
10930M: Guan Xuetao <gxt@mprc.pku.edu.cn>
10931W: http://mprc.pku.edu.cn/~guanxuetao/linux
10932S: Maintained
Guan Xuetaoceebf4d2014-05-27 07:53:10 +080010933T: git git://github.com/gxt/linux.git
GuanXuetaob31d8272011-01-16 00:35:49 +080010934F: arch/unicore32/
10935
Tony Finchd8379ab2009-11-27 15:50:30 +000010936UNIFDEF
10937M: Tony Finch <dot@dotat.at>
10938W: http://dotat.at/prog/unifdef
10939S: Maintained
10940F: scripts/unifdef.c
10941
Linus Torvalds1da177e2005-04-16 15:20:36 -070010942UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010943M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010944W: http://www.kernel.dk
10945S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010946F: Documentation/cdrom/
10947F: drivers/cdrom/cdrom.c
10948F: include/linux/cdrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010949F: include/uapi/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070010950
Benjamin Romer56df0122014-03-07 13:02:21 -060010951UNISYS S-PAR DRIVERS
Joe Perches49e7d9d2015-04-15 16:17:31 -070010952M: Benjamin Romer <benjamin.romer@unisys.com>
10953M: David Kershner <david.kershner@unisys.com>
10954L: sparmaintainer@unisys.com (Unisys internal)
10955S: Supported
10956F: drivers/staging/unisys/
Benjamin Romer56df0122014-03-07 13:02:21 -060010957
Vinayak Holikatti9941fa62012-04-20 14:11:50 +053010958UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
10959M: Vinayak Holikatti <vinholikatti@gmail.com>
Vinayak Holikatti9941fa62012-04-20 14:11:50 +053010960L: linux-scsi@vger.kernel.org
10961S: Supported
10962F: Documentation/scsi/ufs.txt
10963F: drivers/scsi/ufs/
10964
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010965UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +030010966M: Artem Bityutskiy <dedekind1@gmail.com>
Richard Weinberger346be9b2015-01-28 12:28:24 +010010967M: Richard Weinberger <richard@nod.at>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010968W: http://www.linux-mtd.infradead.org/
10969L: linux-mtd@lists.infradead.org
Artem Bityutskiyb6b44e02014-01-02 16:43:51 +020010970T: git git://git.infradead.org/ubifs-2.6.git
Richard Weinberger346be9b2015-01-28 12:28:24 +010010971S: Supported
Joe Perches80811492009-04-08 20:20:27 -070010972F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -070010973F: include/linux/mtd/ubi.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010974F: include/uapi/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010975
Linus Torvalds1da177e2005-04-16 15:20:36 -070010976USB ACM DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +020010977M: Oliver Neukum <oliver@neukum.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -070010978L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070010979S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010980F: Documentation/usb/acm.txt
10981F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010982
Pontus Fuchsb7d572e2012-10-23 20:33:57 +020010983USB AR5523 WIRELESS DRIVER
10984M: Pontus Fuchs <pontus.fuchs@gmail.com>
10985L: linux-wireless@vger.kernel.org
10986S: Maintained
10987F: drivers/net/wireless/ath/ar5523/
10988
Matthew Wilcox115bb1f2010-10-07 13:05:23 +020010989USB ATTACHED SCSI
Hans de Goedef50a4962013-10-28 10:48:04 +000010990M: Hans de Goede <hdegoede@redhat.com>
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +010010991M: Gerd Hoffmann <kraxel@redhat.com>
Matthew Wilcox115bb1f2010-10-07 13:05:23 +020010992L: linux-usb@vger.kernel.org
10993L: linux-scsi@vger.kernel.org
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +010010994S: Maintained
Matthew Wilcox115bb1f2010-10-07 13:05:23 +020010995F: drivers/usb/storage/uas.c
10996
Linus Torvalds1da177e2005-04-16 15:20:36 -070010997USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +020010998M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +020010999L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070011000S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011001F: drivers/net/usb/cdc_*.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011002F: include/uapi/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011003
Keith Packard66e3e592015-03-19 20:36:49 -070011004USB CHAOSKEY DRIVER
11005M: Keith Packard <keithp@keithp.com>
11006L: linux-usb@vger.kernel.org
11007S: Maintained
11008F: drivers/usb/misc/chaoskey.c
11009
Peter Korsgaardb02b3712008-04-27 08:59:44 +020011010USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011011M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +020011012L: linux-usb@vger.kernel.org
11013S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011014F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +020011015
Peter Korsgaardd0374f42007-02-16 17:03:54 +010011016USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011017M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +020011018L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +010011019W: http://www.linux-usb.org/usbnet
11020S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011021F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +010011022
Alan Coxcc2020e2008-05-19 14:21:51 +010011023USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011024M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +010011025L: rio500-users@lists.sourceforge.net
11026W: http://rio500.sourceforge.net
11027S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011028F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +010011029
Linus Torvalds1da177e2005-04-16 15:20:36 -070011030USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -040011031M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011032L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -040011033S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011034F: Documentation/usb/ehci.txt
11035F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011036
David Brownell69ae9e32006-11-14 02:03:31 -080011037USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f662011-06-08 19:16:28 +030011038M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011039L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -080011040W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +030011041T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11042S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011043F: drivers/usb/gadget/
11044F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -080011045
Jiri Kosina2dea64b2007-07-11 12:12:11 +020011046USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Jiri Kosinae5f64502015-08-09 09:11:34 +020011047M: Jiri Kosina <jikos@kernel.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011048L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -070011049T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070011050S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -070011051F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -070011052F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011053
Olav Kongas959eea22005-11-03 17:38:14 +020011054USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011055M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011056L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +020011057S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011058F: drivers/usb/host/isp116x*
11059F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +020011060
Linus Torvalds1da177e2005-04-16 15:20:36 -070011061USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011062M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011063L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -080011064L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -070011065S: Maintained
11066W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -070011067F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011068
Clemens Ladischaf399172011-01-10 16:32:54 +010011069USB MIDI DRIVER
11070M: Clemens Ladisch <clemens@ladisch.de>
11071L: alsa-devel@alsa-project.org (moderated for non-subscribers)
11072T: git git://git.alsa-project.org/alsa-kernel.git
11073S: Maintained
11074F: sound/usb/midi.*
11075
Joe Perches444ce9d2013-08-01 21:03:32 -070011076USB NETWORKING DRIVERS
11077L: linux-usb@vger.kernel.org
11078S: Odd Fixes
11079F: drivers/net/usb/
11080
Linus Torvalds1da177e2005-04-16 15:20:36 -070011081USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -040011082M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011083L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -040011084S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011085F: Documentation/usb/ohci.txt
11086F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011087
Peter Chen963ffa32015-02-15 12:22:59 +080011088USB OTG FSM (Finite State Machine)
11089M: Peter Chen <Peter.Chen@freescale.com>
Peter Chen83738562015-03-23 19:57:36 +080011090T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
Peter Chen963ffa32015-02-15 12:22:59 +080011091L: linux-usb@vger.kernel.org
11092S: Maintained
11093F: drivers/usb/common/usb-otg-fsm.c
11094
Valentina Manea563da3a2014-08-20 07:31:02 +030011095USB OVER IP DRIVER
11096M: Valentina Manea <valentina.manea.m@gmail.com>
11097M: Shuah Khan <shuah.kh@samsung.com>
11098L: linux-usb@vger.kernel.org
11099S: Maintained
11100F: drivers/usb/usbip/
11101F: tools/usb/usbip/
11102
Linus Torvalds1da177e2005-04-16 15:20:36 -070011103USB PEGASUS DRIVER
Petko Manolova16b9452013-04-29 16:17:25 -070011104M: Petko Manolov <petkan@nucleusys.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011105L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +020011106L: netdev@vger.kernel.org
Petko Manolov052e3122013-11-15 11:51:54 +020011107T: git git://github.com/petkan/pegasus.git
11108W: https://github.com/petkan/pegasus
Linus Torvalds1da177e2005-04-16 15:20:36 -070011109S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011110F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011111
Felipe Balbid3ad5582012-05-21 16:24:49 +030011112USB PHY LAYER
11113M: Felipe Balbi <balbi@ti.com>
11114L: linux-usb@vger.kernel.org
11115T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11116S: Maintained
11117F: drivers/usb/phy/
Felipe Balbid3ad5582012-05-21 16:24:49 +030011118
Pete Zaitcev73e4fb32007-06-21 15:18:35 -070011119USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -070011120M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011121L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -070011122S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070011123F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070011124
11125USB RTL8150 DRIVER
Petko Manolova16b9452013-04-29 16:17:25 -070011126M: Petko Manolov <petkan@nucleusys.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011127L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +020011128L: netdev@vger.kernel.org
Petko Manolov052e3122013-11-15 11:51:54 +020011129T: git git://github.com/petkan/rtl8150.git
11130W: https://github.com/petkan/rtl8150
Linus Torvalds1da177e2005-04-16 15:20:36 -070011131S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011132F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070011133
Greg KHf896b792013-10-30 11:07:31 -070011134USB SERIAL SUBSYSTEM
Johan Hovold66085692014-06-23 12:33:15 +020011135M: Johan Hovold <johan@kernel.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011136L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -070011137S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011138F: Documentation/usb/usb-serial.txt
Greg KHf896b792013-10-30 11:07:31 -070011139F: drivers/usb/serial/
Joe Perches679655d2009-04-07 20:44:32 -070011140F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011141
Steve Glendinningb3f0db12012-08-15 21:53:38 +000011142USB SMSC75XX ETHERNET DRIVER
11143M: Steve Glendinning <steve.glendinning@shawell.net>
11144L: netdev@vger.kernel.org
11145S: Maintained
11146F: drivers/net/usb/smsc75xx.*
11147
Steve Glendinning2f7ca802008-10-02 05:27:57 +000011148USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +010011149M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +000011150L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +010011151S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011152F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +000011153
Linus Torvalds1da177e2005-04-16 15:20:36 -070011154USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -080011155M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011156L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070011157W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -070011158T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070011159S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070011160F: Documentation/usb/
Joe Perches679655d2009-04-07 20:44:32 -070011161F: drivers/usb/
11162F: include/linux/usb.h
11163F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011164
11165USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011166M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011167L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070011168S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011169F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011170
David Brownell69ae9e32006-11-14 02:03:31 -080011171USB "USBNET" DRIVER FRAMEWORK
Jiri Slabyd8130622015-07-17 16:23:20 -070011172M: Oliver Neukum <oneukum@suse.com>
Peter Korsgaard043600a2007-06-27 21:18:18 +020011173L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -080011174W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -070011175S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011176F: drivers/net/usb/usbnet.c
11177F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011178
Laurent Pinchartc0efd232008-06-30 15:04:50 -030011179USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -070011180M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -030011181L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -030011182L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -020011183T: git git://linuxtv.org/media_tree.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -030011184W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -030011185S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -030011186F: drivers/media/usb/uvc/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -020011187F: include/uapi/linux/uvcvideo.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011188
Hans Verkuilb60b9c42012-11-23 07:54:42 -030011189USB VISION DRIVER
11190M: Hans Verkuil <hverkuil@xs4all.nl>
11191L: linux-media@vger.kernel.org
11192T: git git://linuxtv.org/media_tree.git
11193W: http://linuxtv.org
11194S: Odd Fixes
11195F: drivers/media/usb/usbvision/
11196
Laurent Pinchart8282da42012-10-04 02:32:42 +020011197USB WEBCAM GADGET
11198M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11199L: linux-usb@vger.kernel.org
11200S: Maintained
Andrzej Pietrasiewicz3a83c162014-09-09 02:02:09 +030011201F: drivers/usb/gadget/function/*uvc*
Joe Perchesfaf2e1d2014-08-08 14:26:18 -070011202F: drivers/usb/gadget/legacy/webcam.c
Laurent Pinchart8282da42012-10-04 02:32:42 +020011203
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +020011204USB WIRELESS RNDIS DRIVER (rndis_wlan)
Jussi Kivilinnae6146c52013-03-07 22:33:38 +020011205M: Jussi Kivilinna <jussi.kivilinna@iki.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +020011206L: linux-wireless@vger.kernel.org
11207S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011208F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +020011209
Sarah Sharpeb6bab12009-04-29 19:07:13 -070011210USB XHCI DRIVER
Sarah Sharp03d85052014-03-20 16:20:56 -070011211M: Mathias Nyman <mathias.nyman@intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -070011212L: linux-usb@vger.kernel.org
11213S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -080011214F: drivers/usb/host/xhci*
11215F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -070011216
Linus Torvalds1da177e2005-04-16 15:20:36 -070011217USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -040011218L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070011219W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -040011220S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -070011221F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011222
Antoine Jacquetb7eee612007-04-27 12:30:59 -030011223USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011224M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011225L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -030011226L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -020011227T: git git://linuxtv.org/media_tree.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -030011228W: http://royale.zerezo.com/zr364xx/
11229S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011230F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -030011231F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -030011232
Heikki Krogerus289fcff2015-05-13 15:26:42 +030011233ULPI BUS
11234M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
11235L: linux-usb@vger.kernel.org
11236S: Maintained
11237F: drivers/usb/common/ulpi.c
11238F: include/linux/ulpi/
11239
Randy Dunlape7839f22008-10-12 16:11:45 -070011240USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -070011241M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +010011242M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011243L: user-mode-linux-devel@lists.sourceforge.net
11244L: user-mode-linux-user@lists.sourceforge.net
11245W: http://user-mode-linux.sourceforge.net
11246S: Maintained
Rob Landley61516582011-05-06 09:27:36 -070011247F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -070011248F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +020011249F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -070011250F: fs/hostfs/
11251F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -030011252
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +010011253USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -070011254M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -080011255M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +010011256S: Maintained
Mandeep Sandhu3d3fecb2015-01-10 19:15:45 -080011257T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Joe Perches679655d2009-04-07 20:44:32 -070011258F: Documentation/DocBook/uio-howto.tmpl
11259F: drivers/uio/
11260F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +010011261
Karel Zak256cccb2012-06-01 10:13:09 +020011262UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -070011263M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +020011264L: util-linux@vger.kernel.org
11265W: http://en.wikipedia.org/wiki/Util-linux
11266T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -070011267S: Maintained
11268
Michal Januszewskic1fd1c02008-10-15 22:03:48 -070011269UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011270M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +010011271L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -070011272W: http://dev.gentoo.org/~spock/projects/uvesafb/
11273S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011274F: Documentation/fb/uvesafb.txt
Jingoo Han8a61f012014-07-01 15:36:01 +090011275F: drivers/video/fbdev/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -070011276
Stefan Agner456930d2015-09-02 18:06:33 -070011277VF610 NAND DRIVER
11278M: Stefan Agner <stefan@agner.ch>
11279L: linux-mtd@lists.infradead.org
11280S: Supported
11281F: drivers/mtd/nand/vf610_nfc.c
11282
Randy Dunlap4480f15b2008-10-12 16:11:58 -070011283VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070011284M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011285S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011286F: Documentation/filesystems/vfat.txt
11287F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011288
Alex Williamsoncba33452012-07-31 08:16:22 -060011289VFIO DRIVER
11290M: Alex Williamson <alex.williamson@redhat.com>
11291L: kvm@vger.kernel.org
11292S: Maintained
11293F: Documentation/vfio.txt
11294F: drivers/vfio/
11295F: include/linux/vfio.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011296F: include/uapi/linux/vfio.h
Alex Williamsoncba33452012-07-31 08:16:22 -060011297
Alex Williamsona714ea52015-06-18 11:59:22 -060011298VFIO PLATFORM DRIVER
11299M: Baptiste Reynal <b.reynal@virtualopensystems.com>
11300L: kvm@vger.kernel.org
11301S: Maintained
11302F: drivers/vfio/platform/
11303
Pawel Osciak9e6f3432011-06-15 15:08:32 -070011304VIDEOBUF2 FRAMEWORK
11305M: Pawel Osciak <pawel@osciak.com>
11306M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -030011307M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -070011308L: linux-media@vger.kernel.org
11309S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -030011310F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -070011311F: include/media/videobuf2-*
11312
Stephen Chandler Paul5523662e2015-10-24 13:10:29 -070011313VIRTUAL SERIO DEVICE DRIVER
11314M: Stephen Chandler Paul <thatslyude@gmail.com>
11315S: Maintained
11316F: drivers/input/serio/userio.c
11317F: include/uapi/linux/userio.h
11318
Amit Shah9a824462010-03-23 18:23:09 +053011319VIRTIO CONSOLE DRIVER
11320M: Amit Shah <amit.shah@redhat.com>
11321L: virtualization@lists.linux-foundation.org
11322S: Maintained
11323F: drivers/char/virtio_console.c
11324F: include/linux/virtio_console.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011325F: include/uapi/linux/virtio_console.h
Amit Shah9a824462010-03-23 18:23:09 +053011326
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +103011327VIRTIO CORE, NET AND BLOCK DRIVERS
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +103011328M: "Michael S. Tsirkin" <mst@redhat.com>
11329L: virtualization@lists.linux-foundation.org
11330S: Maintained
11331F: drivers/virtio/
Michael S. Tsirkinc893c8d2013-07-08 11:31:13 +093011332F: tools/virtio/
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +103011333F: drivers/net/virtio_net.c
11334F: drivers/block/virtio_blk.c
11335F: include/linux/virtio_*.h
Amos Kong916cdab2013-04-02 16:42:02 +103011336F: include/uapi/linux/virtio_*.h
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +103011337
Cornelia Huckf2dbda32015-07-01 17:15:37 +020011338VIRTIO DRIVERS FOR S390
11339M: Christian Borntraeger <borntraeger@de.ibm.com>
11340M: Cornelia Huck <cornelia.huck@de.ibm.com>
11341L: linux-s390@vger.kernel.org
11342L: virtualization@lists.linux-foundation.org
11343L: kvm@vger.kernel.org
11344S: Supported
Cornelia Huck1b568d92015-07-07 11:41:01 +020011345F: drivers/s390/virtio/
Cornelia Huckf2dbda32015-07-01 17:15:37 +020011346
Gerd Hoffmann4ad6ee92015-06-02 10:49:03 +020011347VIRTIO GPU DRIVER
11348M: David Airlie <airlied@linux.ie>
11349M: Gerd Hoffmann <kraxel@redhat.com>
11350L: dri-devel@lists.freedesktop.org
11351L: virtualization@lists.linux-foundation.org
11352S: Maintained
11353F: drivers/gpu/drm/virtio/
11354F: include/uapi/linux/virtio_gpu.h
11355
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000011356VIRTIO HOST (VHOST)
11357M: "Michael S. Tsirkin" <mst@redhat.com>
11358L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +000011359L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000011360L: netdev@vger.kernel.org
11361S: Maintained
11362F: drivers/vhost/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011363F: include/uapi/linux/vhost.h
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000011364
Gerd Hoffmann271c8652015-03-27 12:46:12 +103011365VIRTIO INPUT DRIVER
11366M: Gerd Hoffmann <kraxel@redhat.com>
11367S: Maintained
11368F: drivers/virtio/virtio_input.c
11369F: include/uapi/linux/virtio_input.h
11370
Linus Torvalds1da177e2005-04-16 15:20:36 -070011371VIA RHINE NETWORK DRIVER
Roger Luethi210347e2015-05-26 19:12:54 +020011372S: Orphan
Jeff Kirsherf2148a42011-05-20 20:43:09 -070011373F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070011374
Harald Weltef0bf7f62009-06-17 20:22:39 +020011375VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -080011376M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -070011377M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +020011378S: Maintained
11379F: drivers/mmc/host/via-sdmmc.c
11380
Joseph Chan69e4a7c2008-10-15 22:03:31 -070011381VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +000011382M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +010011383L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -070011384S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +000011385F: include/linux/via-core.h
11386F: include/linux/via-gpio.h
11387F: include/linux/via_i2c.h
Jingoo Han8a61f012014-07-01 15:36:01 +090011388F: drivers/video/fbdev/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -070011389
Francois Romieu01f20732007-01-26 00:57:17 -080011390VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011391M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -080011392L: netdev@vger.kernel.org
11393S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -070011394F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011395
Alex Williamsonf73f8172015-09-18 22:29:39 +080011396VIRT LIB
11397M: Alex Williamson <alex.williamson@redhat.com>
11398M: Paolo Bonzini <pbonzini@redhat.com>
11399L: kvm@vger.kernel.org
11400S: Supported
11401F: virt/lib/
11402
Hans Verkuil77911fd2014-12-10 04:22:37 -030011403VIVID VIRTUAL VIDEO DRIVER
Hans Verkuil0b7bc1f2012-11-23 08:21:50 -030011404M: Hans Verkuil <hverkuil@xs4all.nl>
11405L: linux-media@vger.kernel.org
11406T: git git://linuxtv.org/media_tree.git
11407W: http://linuxtv.org
11408S: Maintained
Hans Verkuil77911fd2014-12-10 04:22:37 -030011409F: drivers/media/platform/vivid/*
Hans Verkuil0b7bc1f2012-11-23 08:21:50 -030011410
Patrick McHardybe7f8272007-10-23 20:26:36 -070011411VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -070011412M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -070011413L: netdev@vger.kernel.org
11414S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011415F: drivers/net/macvlan.c
11416F: include/linux/if_*vlan.h
11417F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -070011418
Florian Fainelli55e331c2009-06-16 15:33:53 -070011419VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -070011420M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -080011421L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -070011422S: Maintained
11423F: drivers/vlynq/vlynq.c
11424F: include/linux/vlynq.h
11425
Martyn Welch390beae2012-05-03 17:52:36 +010011426VME SUBSYSTEM
Martyn Welch74c600e2015-09-17 20:38:47 +010011427M: Martyn Welch <martyn@welchs.me.uk>
Manohar Vanga1bd289d2012-06-14 15:57:01 +020011428M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +010011429M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11430L: devel@driverdev.osuosl.org
11431S: Maintained
11432T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11433F: Documentation/vme_api.txt
11434F: drivers/staging/vme/
11435F: drivers/vme/
11436F: include/linux/vme*
11437
Alok Kataria4488e092013-09-04 14:23:41 +053011438VMWARE HYPERVISOR INTERFACE
11439M: Alok Kataria <akataria@vmware.com>
11440L: virtualization@lists.linux-foundation.org
11441S: Supported
11442F: arch/x86/kernel/cpu/vmware.c
11443
Dmitry Torokhov73b35d02014-06-20 10:14:58 -070011444VMWARE BALLOON DRIVER
11445M: Xavier Deguillard <xdeguillard@vmware.com>
11446M: Philip Moltmann <moltmann@vmware.com>
11447M: "VMware, Inc." <pv-drivers@vmware.com>
11448L: linux-kernel@vger.kernel.org
11449S: Maintained
11450F: drivers/misc/vmw_balloon.c
11451
Thomas Hellstrom8b8be512015-04-14 10:06:38 -070011452VMWARE VMMOUSE SUBDRIVER
11453M: "VMware Graphics" <linux-graphics-maintainer@vmware.com>
11454M: "VMware, Inc." <pv-drivers@vmware.com>
11455L: linux-input@vger.kernel.org
11456S: Maintained
11457F: drivers/input/mouse/vmmouse.c
11458F: drivers/input/mouse/vmmouse.h
11459
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -070011460VMWARE VMXNET3 ETHERNET DRIVER
Shrikrishna Khare04e1b732015-08-24 14:24:11 -070011461M: Shrikrishna Khare <skhare@vmware.com>
Joe Perches65c8bb52009-11-11 14:26:12 -080011462M: "VMware, Inc." <pv-drivers@vmware.com>
11463L: netdev@vger.kernel.org
11464S: Maintained
11465F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -070011466
Alok Kataria851b1642009-10-13 14:51:05 -070011467VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -080011468M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -070011469M: VMware PV-Drivers <pv-drivers@vmware.com>
11470L: linux-scsi@vger.kernel.org
11471S: Maintained
11472F: drivers/scsi/vmw_pvscsi.c
11473F: drivers/scsi/vmw_pvscsi.h
11474
Liam Girdwoode53e86c2008-07-10 15:48:00 +010011475VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Axel Lin88dd75a2013-03-25 16:49:51 +080011476M: Liam Girdwood <lgirdwood@gmail.com>
Mark Brownb02e48f2013-04-12 11:39:57 +010011477M: Mark Brown <broonie@kernel.org>
Mark Brown5cdeb2c2014-08-16 12:31:11 +010011478L: linux-kernel@vger.kernel.org
Liam Girdwood1dd68f02009-02-02 21:43:31 +000011479W: http://www.slimlogic.co.uk/?p=48
Sachin Kamat6febb5a2013-07-04 12:08:50 +053011480T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +010011481S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070011482F: drivers/regulator/
11483F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +010011484
David Ahern081958e2015-08-25 10:26:22 -070011485VRF
11486M: David Ahern <dsa@cumulusnetworks.com>
11487M: Shrijeet Mukherjee <shm@cumulusnetworks.com>
11488L: netdev@vger.kernel.org
11489S: Maintained
11490F: drivers/net/vrf.c
David Ahern562d8972015-09-15 10:50:14 -060011491F: Documentation/networking/vrf.txt
David Ahern081958e2015-08-25 10:26:22 -070011492
Juerg Haefligerab413192006-09-24 20:54:04 +020011493VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011494M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +020011495L: lm-sensors@lm-sensors.org
11496S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011497F: Documentation/hwmon/vt1211
11498F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +020011499
Roger Lucas1de9e372005-11-26 20:20:05 +010011500VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011501M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +010011502L: lm-sensors@lm-sensors.org
11503S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011504F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +010011505
Tony Olech88095e72011-05-14 16:48:13 -040011506VUB300 USB to SDIO/SD/MMC bridge chip
11507M: Tony Olech <tony.olech@elandigitalsystems.com>
11508L: linux-mmc@vger.kernel.org
11509L: linux-usb@vger.kernel.org
11510S: Supported
11511F: drivers/mmc/host/vub300.c
11512
Linus Torvalds1da177e2005-04-16 15:20:36 -070011513W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -070011514M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011515S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011516F: Documentation/w1/
11517F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011518
Charles Spirakis13927072006-07-05 18:05:15 +020011519W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011520M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +020011521L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -040011522S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011523F: Documentation/hwmon/w83791d
11524F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +020011525
Rudolf Marek61db0112006-12-12 18:18:30 +010011526W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011527M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +010011528L: lm-sensors@lm-sensors.org
11529S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011530F: Documentation/hwmon/w83793
11531F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +010011532
Jean Delvaree3760b42010-10-28 20:31:49 +020011533W83795 HARDWARE MONITORING DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -070011534M: Jean Delvare <jdelvare@suse.com>
Jean Delvaree3760b42010-10-28 20:31:49 +020011535L: lm-sensors@lm-sensors.org
11536S: Maintained
11537F: drivers/hwmon/w83795.c
11538
Linus Torvalds1da177e2005-04-16 15:20:36 -070011539W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011540M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011541S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011542F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011543
Hans de Goedeb4e05922014-07-20 13:35:44 -070011544WACOM PROTOCOL 4 SERIAL TABLETS
11545M: Julian Squires <julian@cipht.net>
11546M: Hans de Goede <hdegoede@redhat.com>
11547L: linux-input@vger.kernel.org
11548S: Maintained
11549F: drivers/input/tablet/wacom_serial4.c
11550
Wim Van Sebroeck35277612006-01-15 21:21:14 +010011551WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -070011552M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +000011553L: linux-watchdog@vger.kernel.org
11554W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +010011555T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +010011556S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011557F: Documentation/watchdog/
11558F: drivers/watchdog/
11559F: include/linux/watchdog.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011560F: include/uapi/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +010011561
Linus Torvalds1da177e2005-04-16 15:20:36 -070011562WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011563M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011564L: linux-scsi@vger.kernel.org
11565S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011566F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070011567
David Herrmannb22e00f2011-09-06 13:50:40 +020011568WIIMOTE HID DRIVER
11569M: David Herrmann <dh.herrmann@googlemail.com>
11570L: linux-input@vger.kernel.org
11571S: Maintained
11572F: drivers/hid/hid-wiimote*
11573
David Härdemane258b802009-09-21 17:04:53 -070011574WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -070011575M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -070011576S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -070011577F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -070011578
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -080011579WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -070011580M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -080011581M: linux-wimax@intel.com
Joe Perches49e7d9d2015-04-15 16:17:31 -070011582L: wimax@linuxwimax.org (subscribers-only)
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -080011583S: Supported
11584W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -070011585F: Documentation/wimax/README.wimax
Joe Perches315987d2010-08-09 17:20:50 -070011586F: include/linux/wimax/debug.h
11587F: include/net/wimax.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011588F: include/uapi/linux/wimax.h
Joe Perches315987d2010-08-09 17:20:50 -070011589F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -080011590
Dmitry Torokhov5fc146802005-11-20 00:50:06 -050011591WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011592M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -050011593S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011594F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -050011595
Linus Torvalds1da177e2005-04-16 15:20:36 -070011596WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011597M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -070011598L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -030011599W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -070011600S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011601F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011602
Mark Brown055bcbc2010-08-13 14:18:12 +010011603WOLFSON MICROELECTRONICS DRIVERS
Mark Brownfef95162012-04-04 12:06:24 +010011604L: patches@opensource.wolfsonmicro.com
Richard Fitzgeraldf0e03db2015-09-22 15:30:33 +010011605T: git https://github.com/CirrusLogic/linux-drivers.git
11606W: https://github.com/CirrusLogic/linux-drivers/wiki
Mark Brownb75ea162009-07-02 16:43:08 +010011607S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -080011608F: Documentation/hwmon/wm83??
Charles Keepaxf4949932015-10-27 16:01:59 +000011609F: Documentation/devicetree/bindings/extcon/extcon-arizona.txt
11610F: Documentation/devicetree/bindings/regulator/arizona-regulator.txt
11611F: Documentation/devicetree/bindings/mfd/arizona.txt
Mark Brownaf1c5382011-10-14 21:09:43 +010011612F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +010011613F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +010011614F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +010011615F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +010011616F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +010011617F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -050011618F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +090011619F: drivers/input/misc/wm831x-on.c
11620F: drivers/input/touchscreen/wm831x-ts.c
11621F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +010011622F: drivers/mfd/arizona*
11623F: drivers/mfd/wm*.c
Mark Brownb75ea162009-07-02 16:43:08 +010011624F: drivers/power/wm83*.c
11625F: drivers/rtc/rtc-wm83*.c
11626F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +010011627F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +010011628F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +010011629F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +010011630F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +010011631F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -080011632F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +090011633F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +010011634F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +010011635F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +010011636F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +010011637
Tejun Heo3e6cd7a2010-12-10 17:20:23 +010011638WORKQUEUE
11639M: Tejun Heo <tj@kernel.org>
Lai Jiangshanbadb7f52015-07-01 15:38:04 +080011640R: Lai Jiangshan <jiangshanlai@gmail.com>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +010011641T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
11642S: Maintained
11643F: include/linux/workqueue.h
11644F: kernel/workqueue.c
11645F: Documentation/workqueue.txt
11646
Linus Torvalds1da177e2005-04-16 15:20:36 -070011647X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +000011648M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011649L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +000011650S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -070011651F: Documentation/networking/x25*
11652F: include/net/x25*
11653F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011654
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011655X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -070011656M: Thomas Gleixner <tglx@linutronix.de>
11657M: Ingo Molnar <mingo@redhat.com>
11658M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -080011659M: x86@kernel.org
Ingo Molnar981c3a42014-01-21 10:59:20 +010011660L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +010011661T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011662S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011663F: Documentation/x86/
11664F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011665
Matthew Garrettd0944852010-02-11 10:40:13 -050011666X86 PLATFORM DRIVERS
Darren Harte181ba12014-08-27 23:36:06 -070011667M: Darren Hart <dvhart@infradead.org>
Matthew Garrettd0944852010-02-11 10:40:13 -050011668L: platform-driver-x86@vger.kernel.org
Darren Harte181ba12014-08-27 23:36:06 -070011669T: git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
Matthew Garrettd0944852010-02-11 10:40:13 -050011670S: Maintained
Joe Perches14430812013-09-11 14:23:50 -070011671F: drivers/platform/x86/
Darren Hart3a4bcee2015-10-06 23:17:04 +010011672F: drivers/platform/olpc/
Matthew Garrettd0944852010-02-11 10:40:13 -050011673
Ingo Molnarc1f5c542011-06-18 22:51:13 +020011674X86 MCE INFRASTRUCTURE
11675M: Tony Luck <tony.luck@intel.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +010011676M: Borislav Petkov <bp@alien8.de>
Ingo Molnarc1f5c542011-06-18 22:51:13 +020011677L: linux-edac@vger.kernel.org
11678S: Maintained
11679F: arch/x86/kernel/cpu/mcheck/*
11680
Borislav Petkov79ebdc92015-10-20 11:54:49 +020011681X86 MICROCODE UPDATE SUPPORT
11682M: Borislav Petkov <bp@alien8.de>
11683S: Maintained
11684F: arch/x86/kernel/cpu/microcode/*
11685
Andy Lutomirskif0905c52014-12-12 16:25:47 -080011686X86 VDSO
11687M: Andy Lutomirski <luto@amacapital.net>
11688L: linux-kernel@vger.kernel.org
11689T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
11690S: Maintained
Ingo Molnard603c8e2015-06-03 18:05:44 +020011691F: arch/x86/entry/vdso/
Andy Lutomirskif0905c52014-12-12 16:25:47 -080011692
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -020011693XC2028/3028 TUNER DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -020011694M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -020011695L: linux-media@vger.kernel.org
11696W: http://linuxtv.org
11697T: git git://linuxtv.org/media_tree.git
11698S: Maintained
11699F: drivers/media/tuners/tuner-xc2028.*
11700
Ian Campbellc4468082011-04-27 15:26:46 -070011701XEN HYPERVISOR INTERFACE
Ian Campbellc4468082011-04-27 15:26:46 -070011702M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Konrad Rzeszutek Wilk3eeef8f2013-08-05 14:01:49 -040011703M: Boris Ostrovsky <boris.ostrovsky@oracle.com>
11704M: David Vrabel <david.vrabel@citrix.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040011705L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
David Vrabelea70ba32014-01-17 11:51:51 +000011706T: git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
Ian Campbellc4468082011-04-27 15:26:46 -070011707S: Supported
11708F: arch/x86/xen/
11709F: drivers/*/xen-*front.c
11710F: drivers/xen/
11711F: arch/x86/include/asm/xen/
11712F: include/xen/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011713F: include/uapi/xen/
Ian Campbellc4468082011-04-27 15:26:46 -070011714
Stefano Stabellini77bfb472012-09-14 13:35:15 +000011715XEN HYPERVISOR ARM
11716M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040011717L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
Stefano Stabellini77bfb472012-09-14 13:35:15 +000011718S: Supported
11719F: arch/arm/xen/
11720F: arch/arm/include/asm/xen/
11721
Stefano Stabellinib475e832013-06-04 16:13:23 +000011722XEN HYPERVISOR ARM64
11723M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040011724L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
Stefano Stabellinib475e832013-06-04 16:13:23 +000011725S: Supported
11726F: arch/arm64/xen/
11727F: arch/arm64/include/asm/xen/
11728
Ian Campbell9b57e1a2011-04-03 23:12:23 +000011729XEN NETWORK BACKEND DRIVER
11730M: Ian Campbell <ian.campbell@citrix.com>
Wei Liu83860402013-09-26 12:41:53 +010011731M: Wei Liu <wei.liu2@citrix.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040011732L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
Ian Campbell9b57e1a2011-04-03 23:12:23 +000011733L: netdev@vger.kernel.org
11734S: Supported
11735F: drivers/net/xen-netback/*
11736
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -040011737XEN PCI SUBSYSTEM
11738M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040011739L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +020011740S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -040011741F: arch/x86/pci/*xen*
11742F: drivers/pci/*xen*
11743
Konrad Rzeszutek Wilka2c5ae62014-06-27 10:10:45 -040011744XEN BLOCK SUBSYSTEM
11745M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Roger Pau Monnebcadb692015-01-23 17:14:29 +010011746M: Roger Pau Monné <roger.pau@citrix.com>
Konrad Rzeszutek Wilka2c5ae62014-06-27 10:10:45 -040011747L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
11748S: Supported
11749F: drivers/block/xen-blkback/*
11750F: drivers/block/xen*
11751
Juergen Gross15d03602014-08-28 06:44:13 +020011752XEN PVSCSI DRIVERS
11753M: Juergen Gross <jgross@suse.com>
11754L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
11755L: linux-scsi@vger.kernel.org
11756S: Supported
11757F: drivers/scsi/xen-scsifront.c
11758F: drivers/xen/xen-scsiback.c
11759F: include/xen/interface/io/vscsiif.h
11760
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -040011761XEN SWIOTLB SUBSYSTEM
11762M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040011763L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -040011764S: Supported
11765F: arch/x86/xen/*swiotlb*
11766F: drivers/xen/*swiotlb*
11767
Linus Torvalds1da177e2005-04-16 15:20:36 -070011768XFS FILESYSTEM
11769P: Silicon Graphics Inc
Namjae Jeon809625c2013-12-08 23:33:50 +090011770M: Dave Chinner <david@fromorbit.com>
Ben Myers18caa672012-04-12 17:05:05 +000011771M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +100011772L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -070011773W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -070011774T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070011775S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070011776F: Documentation/filesystems/xfs.txt
11777F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011778
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +000011779XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +000011780M: Anirudha Sarangi <anirudh@xilinx.com>
11781M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +000011782S: Maintained
11783F: drivers/net/ethernet/xilinx/xilinx_axienet*
11784
Peter Korsgaard238b8722006-12-06 20:35:17 -080011785XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011786M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -080011787L: linux-serial@vger.kernel.org
11788S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -080011789F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -080011790
Laurent Pinchartdf330512013-05-15 11:36:19 -030011791XILINX VIDEO IP CORES
11792M: Hyun Kwon <hyun.kwon@xilinx.com>
11793M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11794L: linux-media@vger.kernel.org
11795T: git git://linuxtv.org/media_tree.git
11796S: Supported
11797F: Documentation/devicetree/bindings/media/xilinx/
11798F: drivers/media/platform/xilinx/
Laurent Pincharta5562f62013-05-15 11:36:56 -030011799F: include/uapi/linux/xilinx-v4l2-controls.h
Laurent Pinchartdf330512013-05-15 11:36:19 -030011800
Eli Billauer74316942014-09-09 09:38:01 +030011801XILLYBUS DRIVER
11802M: Eli Billauer <eli.billauer@gmail.com>
11803L: linux-kernel@vger.kernel.org
11804S: Supported
11805F: drivers/char/xillybus/
11806
Max Filippovf620e4b2014-03-12 21:55:26 +040011807XTENSA XTFPGA PLATFORM SUPPORT
11808M: Max Filippov <jcmvbkbc@gmail.com>
11809L: linux-xtensa@linux-xtensa.org
11810S: Maintained
11811F: drivers/spi/spi-xtensa-xtfpga.c
Max Filippov57b70682014-12-26 20:19:38 +030011812F: sound/soc/xtensa/xtfpga-i2s.c
Max Filippovf620e4b2014-03-12 21:55:26 +040011813
Linus Torvalds1da177e2005-04-16 15:20:36 -070011814YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -070011815M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011816L: linux-hams@vger.kernel.org
11817S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011818F: drivers/net/hamradio/yam*
11819F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011820
Henkaf64a5e2005-10-12 15:02:56 +020011821YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011822M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +020011823L: usbb2k-api-dev@nongnu.org
11824S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011825F: Documentation/input/yealink.txt
11826F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +020011827
Linus Torvalds1da177e2005-04-16 15:20:36 -070011828Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -070011829M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011830W: http://yaina.de/jreuter/
11831W: http://www.qsl.net/dl1bke/
11832L: linux-hams@vger.kernel.org
11833S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011834F: Documentation/networking/z8530drv.txt
11835F: drivers/net/hamradio/*scc.c
11836F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011837
Seth Jennings0cf31ec2013-07-08 16:00:05 -070011838ZBUD COMPRESSED PAGE ALLOCATOR
Seth Jennings0e3b7e52014-05-06 12:50:02 -070011839M: Seth Jennings <sjennings@variantweb.net>
Seth Jennings0cf31ec2013-07-08 16:00:05 -070011840L: linux-mm@kvack.org
11841S: Maintained
11842F: mm/zbud.c
11843F: include/linux/zbud.h
11844
Daniel Drake7c0c3af2006-07-16 13:55:17 +010011845ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011846M: Daniel Drake <dsd@gentoo.org>
11847M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +010011848W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -070011849L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +010011850L: zd1211-devs@lists.sourceforge.net (subscribers-only)
11851S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011852F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +010011853
Dan Streetman20263022015-06-30 14:59:57 -070011854ZPOOL COMPRESSED PAGE STORAGE API
11855M: Dan Streetman <ddstreet@ieee.org>
11856L: linux-mm@kvack.org
11857S: Maintained
11858F: mm/zpool.c
11859F: include/linux/zpool.h
11860
Linus Torvalds1da177e2005-04-16 15:20:36 -070011861ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -070011862L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -030011863L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070011864W: http://mjpeg.sourceforge.net/driver-zoran/
Joe Perchescea83212014-03-03 15:38:38 -080011865T: hg http://linuxtv.org/hg/v4l-dvb
Trent Piephof63145e2009-01-24 20:52:41 -030011866S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -030011867F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011868
Minchan Kim6920f2c2014-01-30 15:45:56 -080011869ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
11870M: Minchan Kim <minchan@kernel.org>
11871M: Nitin Gupta <ngupta@vflare.org>
Minchan Kim74f30372015-05-05 16:23:28 -070011872R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
Minchan Kim6920f2c2014-01-30 15:45:56 -080011873L: linux-kernel@vger.kernel.org
11874S: Maintained
11875F: drivers/block/zram/
11876F: Documentation/blockdev/zram.txt
11877
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -070011878ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011879M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -070011880S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -080011881F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -070011882
Minchan Kimeae70d02014-01-30 15:45:57 -080011883ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
11884M: Minchan Kim <minchan@kernel.org>
11885M: Nitin Gupta <ngupta@vflare.org>
Sergey Senozhatsky41192a22015-10-22 13:32:13 -070011886R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
Minchan Kimeae70d02014-01-30 15:45:57 -080011887L: linux-mm@kvack.org
11888S: Maintained
11889F: mm/zsmalloc.c
11890F: include/linux/zsmalloc.h
Minchan Kimd02be502015-04-15 16:15:46 -070011891F: Documentation/vm/zsmalloc.txt
Minchan Kimeae70d02014-01-30 15:45:57 -080011892
Seth Jennings0cf31ec2013-07-08 16:00:05 -070011893ZSWAP COMPRESSED SWAP CACHING
Seth Jennings0e3b7e52014-05-06 12:50:02 -070011894M: Seth Jennings <sjennings@variantweb.net>
Seth Jennings0cf31ec2013-07-08 16:00:05 -070011895L: linux-mm@kvack.org
11896S: Maintained
11897F: mm/zswap.c
11898
Linus Torvalds1da177e2005-04-16 15:20:36 -070011899THE REST
Joe Perches8b58be82009-07-29 15:04:30 -070011900M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -070011901L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -080011902Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -040011903T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070011904S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -070011905F: *
11906F: */