blob: eabf3d35a49d8ff4600baf91df165417a6e3d28d [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 Whitcroft0a920b5b2007-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 Whitcroft0a920b5b2007-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 Garrettd09448532010-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 Garrettd09448532010-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 Garrettd09448532010-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 Guo8bcb97652011-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 Lunn4cfab57e2014-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 Gala916f743d2015-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 Stuebner00250b5292014-08-20 12:31:03 +02001429L: linux-rockchip@lists.infradead.org
Heiko Stuebner08ddbb02013-10-14 23:19:58 +02001430S: Maintained
Heiko Stübner541555e92014-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übner541555e92014-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übner541555e92014-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 Yamadaa3ff83d2015-07-25 16:23:24 +09001629F: drivers/pinctrl/uniphier/
1630F: drivers/tty/serial/8250/8250_uniphier.c
Masahiro Yamada3d00d042015-05-08 13:07:14 +09001631N: uniphier
1632
Linus Walleij87572882010-12-22 09:18:29 +01001633ARM/Ux500 ARM ARCHITECTURE
Linus Walleije4651a92012-08-06 09:52:52 +02001634M: Linus Walleij <linus.walleij@linaro.org>
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001635L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1636S: Maintained
1637F: arch/arm/mach-ux500/
Linus Walleije4651a92012-08-06 09:52:52 +02001638F: drivers/clocksource/clksrc-dbx500-prcmu.c
Linus Walleij87572882010-12-22 09:18:29 +01001639F: drivers/dma/ste_dma40*
Linus Walleije4651a92012-08-06 09:52:52 +02001640F: drivers/hwspinlock/u8500_hsem.c
Linus Walleij87572882010-12-22 09:18:29 +01001641F: drivers/mfd/abx500*
1642F: drivers/mfd/ab8500*
Linus Walleije4651a92012-08-06 09:52:52 +02001643F: drivers/mfd/dbx500*
1644F: drivers/mfd/db8500*
Joe Perchesecc265f2014-08-08 14:26:20 -07001645F: drivers/pinctrl/nomadik/pinctrl-ab*
1646F: drivers/pinctrl/nomadik/pinctrl-nomadik*
Linus Walleij87572882010-12-22 09:18:29 +01001647F: drivers/rtc/rtc-ab8500.c
Linus Walleije4651a92012-08-06 09:52:52 +02001648F: drivers/rtc/rtc-pl031.c
Linus Walleij87572882010-12-22 09:18:29 +01001649T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001650
Ulf Hanssone93fde22013-11-12 11:41:12 +01001651ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1652M: Ulf Hansson <ulf.hansson@linaro.org>
1653L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1654T: git git://git.linaro.org/people/ulfh/clk.git
1655S: Maintained
1656F: drivers/clk/ux500/
1657F: include/linux/platform_data/clk-ux500.h
1658
Pawel Moll740d93b2014-11-26 12:13:05 +00001659ARM/VERSATILE EXPRESS PLATFORM
1660M: Liviu Dudau <liviu.dudau@arm.com>
1661M: Sudeep Holla <sudeep.holla@arm.com>
1662M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
1663L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1664S: Maintained
1665F: arch/arm/boot/dts/vexpress*
Kristina Martsenko9ccd6082015-07-01 13:36:03 +01001666F: arch/arm64/boot/dts/arm/vexpress*
Pawel Moll740d93b2014-11-26 12:13:05 +00001667F: arch/arm/mach-vexpress/
1668F: */*/vexpress*
Pawel Moll7e8f4032014-12-01 14:16:33 +00001669F: */*/*/vexpress*
Pawel Moll740d93b2014-11-26 12:13:05 +00001670F: drivers/clk/versatile/clk-vexpress-osc.c
1671F: drivers/clocksource/versatile.c
1672
Russell Kingd4275352009-04-16 14:05:27 +01001673ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001674M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001675L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001676W: http://www.arm.linux.org.uk/
1677S: Maintained
1678F: arch/arm/vfp/
1679
Marek Vasute66b6d82010-03-26 06:51:32 +01001680ARM/VOIPAC PXA270 SUPPORT
1681M: Marek Vasut <marek.vasut@gmail.com>
1682L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1683S: Maintained
1684F: arch/arm/mach-pxa/vpac270.c
Joe Perchese0cca112010-08-09 17:20:38 -07001685F: arch/arm/mach-pxa/include/mach/vpac270.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001686
Tony Prisk04529fe2012-07-24 04:19:37 +12001687ARM/VT8500 ARM ARCHITECTURE
1688M: Tony Prisk <linux@prisktech.co.nz>
1689L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1690S: Maintained
1691F: arch/arm/mach-vt8500/
Tony Prisk41fd91b2013-02-08 18:18:03 +13001692F: drivers/clocksource/vt8500_timer.c
Tony Prisk560746e2013-06-15 09:52:16 +12001693F: drivers/i2c/busses/i2c-wmt.c
Tony Prisk41fd91b2013-02-08 18:18:03 +13001694F: drivers/mmc/host/wmt-sdmmc.c
1695F: drivers/pwm/pwm-vt8500.c
1696F: drivers/rtc/rtc-vt8500.c
1697F: drivers/tty/serial/vt8500_serial.c
Joe Perches4f311022013-09-11 14:23:46 -07001698F: drivers/usb/host/ehci-platform.c
Tony Prisk41fd91b2013-02-08 18:18:03 +13001699F: drivers/usb/host/uhci-platform.c
Jingoo Han8a61f012014-07-01 15:36:01 +09001700F: drivers/video/fbdev/vt8500lcdfb.*
1701F: drivers/video/fbdev/wm8505fb*
1702F: drivers/video/fbdev/wmt_ge_rops.*
Tony Prisk04529fe2012-07-24 04:19:37 +12001703
Marek Vasute66b6d82010-03-26 06:51:32 +01001704ARM/ZIPIT Z2 SUPPORT
1705M: Marek Vasut <marek.vasut@gmail.com>
1706L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1707S: Maintained
1708F: arch/arm/mach-pxa/z2.c
Joe Perches6ab2a852010-08-09 17:20:38 -07001709F: arch/arm/mach-pxa/include/mach/z2.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001710
Jun Nie5ecc4b52015-04-28 17:18:06 +08001711ARM/ZTE ARCHITECTURE
1712M: Jun Nie <jun.nie@linaro.org>
1713L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1714S: Maintained
1715F: arch/arm/mach-zx/
1716F: drivers/clk/zte/
1717F: Documentation/devicetree/bindings/arm/zte.txt
1718F: Documentation/devicetree/bindings/clock/zx296702-clk.txt
1719
Michal Simek51f29d42013-01-21 17:41:46 +01001720ARM/ZYNQ ARCHITECTURE
1721M: Michal Simek <michal.simek@xilinx.com>
Soren Brinkmannf0fd9ad2014-10-23 09:29:22 -07001722R: Sören Brinkmann <soren.brinkmann@xilinx.com>
Michal Simek51f29d42013-01-21 17:41:46 +01001723L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1724W: http://wiki.xilinx.com
Soren Brinkmannd6448b72015-06-26 09:04:32 -07001725T: git https://github.com/Xilinx/linux-xlnx.git
Michal Simek51f29d42013-01-21 17:41:46 +01001726S: Supported
1727F: arch/arm/mach-zynq/
Michal Simekbd2a3372013-06-04 07:17:39 +00001728F: drivers/cpuidle/cpuidle-zynq.c
Michal Simekfb9d4952014-10-13 15:51:15 -07001729F: drivers/block/xsysace.c
Michal Simekc2fd4e32014-01-02 12:58:50 -08001730N: zynq
1731N: xilinx
1732F: drivers/clocksource/cadence_ttc_timer.c
Soren Brinkmanndf8eb562014-04-04 14:27:55 -07001733F: drivers/i2c/busses/i2c-cadence.c
Soren Brinkmanne3ec3a32013-12-02 10:02:36 -08001734F: drivers/mmc/host/sdhci-of-arasan.c
Punnaiah Choudary Kalluriae9b56e32015-01-06 23:13:47 +05301735F: drivers/edac/synopsys_edac.c
Michal Simek51f29d42013-01-21 17:41:46 +01001736
Will Deacon48ec83b2015-05-27 17:25:59 +01001737ARM SMMU DRIVERS
Will Deaconb8f98792013-06-24 18:31:26 +01001738M: Will Deacon <will.deacon@arm.com>
1739L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1740S: Maintained
1741F: drivers/iommu/arm-smmu.c
Will Deacon48ec83b2015-05-27 17:25:59 +01001742F: drivers/iommu/arm-smmu-v3.c
Will Deacone1d3c0f2014-11-14 17:18:23 +00001743F: drivers/iommu/io-pgtable-arm.c
Will Deaconb8f98792013-06-24 18:31:26 +01001744
Catalin Marinas38074222012-03-05 11:49:34 +00001745ARM64 PORT (AARCH64 ARCHITECTURE)
1746M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasd19766e2012-12-11 13:58:05 +00001747M: Will Deacon <will.deacon@arm.com>
Catalin Marinas38074222012-03-05 11:49:34 +00001748L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1749S: Maintained
1750F: arch/arm64/
Catalin Marinasd19766e2012-12-11 13:58:05 +00001751F: Documentation/arm64/
Catalin Marinas38074222012-03-05 11:49:34 +00001752
Laurent Pinchart9d7005f92012-12-10 20:38:24 -03001753AS3645A LED FLASH CONTROLLER DRIVER
1754M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1755L: linux-media@vger.kernel.org
1756T: git git://linuxtv.org/media_tree.git
1757S: Maintained
1758F: drivers/media/i2c/as3645a.c
1759F: include/media/as3645a.h
1760
George Josephd58de032010-03-05 22:17:25 +01001761ASC7621 HARDWARE MONITOR DRIVER
1762M: George Joseph <george.joseph@fairview5.com>
1763L: lm-sensors@lm-sensors.org
1764S: Maintained
1765F: Documentation/hwmon/asc7621
1766F: drivers/hwmon/asc7621.c
1767
Corentin Charyb229ece2011-02-26 10:20:40 +01001768ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
Corentin Chary5909c652012-12-17 16:00:05 -08001769M: Corentin Chary <corentin.chary@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd09448532010-02-11 10:40:13 -05001771L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001772W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773S: Maintained
Corentin Charyb229ece2011-02-26 10:20:40 +01001774F: drivers/platform/x86/asus*.c
1775F: drivers/platform/x86/eeepc*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776
Andrew Morton953a6472008-11-06 12:53:28 -08001777ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williams08223d82014-08-19 06:07:56 -07001778R: Dan Williams <dan.j.williams@intel.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001779W: http://sourceforge.net/projects/xscaleiop
Dan Williams08223d82014-08-19 06:07:56 -07001780S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07001781F: Documentation/crypto/async-tx-api.txt
1782F: crypto/async_tx/
1783F: drivers/dma/
1784F: include/linux/dmaengine.h
1785F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001786
Wolfram Sanga1867d32009-09-18 22:45:51 +02001787AT24 EEPROM DRIVER
Wolfram Sang14d77c42013-02-08 20:54:40 +01001788M: Wolfram Sang <wsa@the-dreams.de>
Wolfram Sanga1867d32009-09-18 22:45:51 +02001789L: linux-i2c@vger.kernel.org
1790S: Maintained
1791F: drivers/misc/eeprom/at24.c
Vivien Didelot25f73ed2013-09-27 15:06:28 -04001792F: include/linux/platform_data/at24.h
Wolfram Sanga1867d32009-09-18 22:45:51 +02001793
Randy Dunlape7839f22008-10-12 16:11:45 -07001794ATA OVER ETHERNET (AOE) DRIVER
Ed Cashinfb903812015-03-25 15:55:06 -07001795M: "Ed L. Cashin" <ed.cashin@acm.org>
1796W: http://www.openaoe.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001798F: Documentation/aoe/
1799F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800
Alban Bedelaad7a212015-10-30 11:36:29 +01001801ATHEROS 71XX/9XXX GPIO DRIVER
1802M: Alban Bedel <albeu@free.fr>
1803W: https://github.com/AlbanBedel/linux
1804T: git git://github.com/AlbanBedel/linux
1805S: Maintained
1806F: drivers/gpio/gpio-ath79.c
1807F: Documentation/devicetree/bindings/gpio/gpio-ath79.txt
1808
Joe Perches9a10a872010-12-01 09:37:55 -08001809ATHEROS ATH GENERIC UTILITIES
Luis R. Rodriguezf726ee62013-12-14 20:11:39 +01001810M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
Joe Perches9a10a872010-12-01 09:37:55 -08001811L: linux-wireless@vger.kernel.org
1812S: Supported
1813F: drivers/net/wireless/ath/*
1814
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001815ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001816M: Jiri Slaby <jirislaby@gmail.com>
1817M: Nick Kossifidis <mickflemm@gmail.com>
Luis R. Rodriguezf726ee62013-12-14 20:11:39 +01001818M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001819L: linux-wireless@vger.kernel.org
Joe Perches72c706b2009-09-07 11:34:30 -07001820W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001821S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001822F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001823
Kalle Valo12e62d62011-09-13 10:21:25 +03001824ATHEROS ATH6KL WIRELESS DRIVER
1825M: Kalle Valo <kvalo@qca.qualcomm.com>
1826L: linux-wireless@vger.kernel.org
1827W: http://wireless.kernel.org/en/users/Drivers/ath6kl
Kalle Valo58cfb682013-07-22 12:26:12 +03001828T: git git://github.com/kvalo/ath.git
Kalle Valo12e62d62011-09-13 10:21:25 +03001829S: Supported
1830F: drivers/net/wireless/ath/ath6kl/
1831
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001832WILOCITY WIL6210 WIRELESS DRIVER
1833M: Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
1834L: linux-wireless@vger.kernel.org
1835L: wil6210@qca.qualcomm.com
1836S: Supported
1837W: http://wireless.kernel.org/en/users/Drivers/wil6210
1838F: drivers/net/wireless/ath/wil6210/
Vladimir Kondratievdba4b742014-10-01 15:05:25 +03001839F: include/uapi/linux/wil6210_uapi.h
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001840
Christian Lamparter1d7e1e62010-09-06 01:10:25 +02001841CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1842M: Christian Lamparter <chunkeey@googlemail.com>
1843L: linux-wireless@vger.kernel.org
1844W: http://wireless.kernel.org/en/users/Drivers/carl9170
1845S: Maintained
1846F: drivers/net/wireless/ath/carl9170/
1847
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001848ATK0110 HWMON DRIVER
1849M: Luca Tettamanti <kronos.it@gmail.com>
1850L: lm-sensors@lm-sensors.org
1851S: Maintained
1852F: drivers/hwmon/asus_atk0110.c
1853
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001854ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001855M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001856S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001857F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001858
Chris Snook7ae115b2008-09-09 03:26:57 -04001859ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001860M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +00001861M: Chris Snook <chris.snook@gmail.com>
Chris Snooke443e382010-09-16 22:00:28 -07001862L: netdev@vger.kernel.org
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001863W: http://sourceforge.net/projects/atl1
1864W: http://atl1.sourceforge.net
1865S: Maintained
Jeff Kirsher2b133ad62011-05-20 06:55:16 -07001866F: drivers/net/ethernet/atheros/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001867
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868ATM
chas williams - CONTRACTOR366c1bd2015-03-11 16:18:01 -04001869M: Chas Williams <3chas3@gmail.com>
Joe Perches476604d2009-10-26 16:49:41 -07001870L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001871L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872W: http://linux-atm.sourceforge.net
1873S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001874F: drivers/atm/
1875F: include/linux/atm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001876F: include/uapi/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001878ATMEL AT91 / AT32 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001879M: Ludovic Desroches <ludovic.desroches@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001880S: Maintained
1881F: drivers/mmc/host/atmel-mci.c
1882F: drivers/mmc/host/atmel-mci-regs.h
1883
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001884ATMEL AT91 / AT32 SERIAL DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001885M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001886S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001887F: drivers/tty/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001888
Bo Shendfae90e2014-09-28 09:57:19 +08001889ATMEL Audio ALSA driver
Nicolas Ferre3a820022015-03-31 15:34:51 +02001890M: Nicolas Ferre <nicolas.ferre@atmel.com>
Bo Shendfae90e2014-09-28 09:57:19 +08001891L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1892S: Supported
1893F: sound/soc/atmel
1894
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001895ATMEL DMA DRIVER
1896M: Nicolas Ferre <nicolas.ferre@atmel.com>
1897L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1898S: Supported
1899F: drivers/dma/at_hdmac.c
1900F: drivers/dma/at_hdmac_regs.h
Cesar Eduardo Barros6f0d65a2013-01-04 15:35:20 -08001901F: include/linux/platform_data/dma-atmel.h
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001902
Ludovic Desroches6bd0f432014-10-22 17:22:20 +02001903ATMEL XDMA DRIVER
1904M: Ludovic Desroches <ludovic.desroches@atmel.com>
1905L: linux-arm-kernel@lists.infradead.org
1906L: dmaengine@vger.kernel.org
1907S: Supported
1908F: drivers/dma/at_xdmac.c
1909
Ludovic Desroches888f2802013-03-15 05:32:57 +00001910ATMEL I2C DRIVER
1911M: Ludovic Desroches <ludovic.desroches@atmel.com>
1912L: linux-i2c@vger.kernel.org
1913S: Supported
1914F: drivers/i2c/busses/i2c-at91.c
1915
Josh Wu15515542012-03-23 17:56:29 +08001916ATMEL ISI DRIVER
1917M: Josh Wu <josh.wu@atmel.com>
1918L: linux-media@vger.kernel.org
1919S: Supported
Cesar Eduardo Barrosf2294c2d2013-01-04 15:35:21 -08001920F: drivers/media/platform/soc_camera/atmel-isi.c
Josh Wu15515542012-03-23 17:56:29 +08001921F: include/media/atmel-isi.h
1922
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001923ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001924M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01001925L: linux-fbdev@vger.kernel.org
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001926S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09001927F: drivers/video/fbdev/atmel_lcdfb.c
Joe Perches679655d2009-04-07 20:44:32 -07001928F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001929
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001930ATMEL MACB ETHERNET DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001931M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001932S: Supported
Jeff Kirsher9f2f381f2011-06-18 01:52:36 -07001933F: drivers/net/ethernet/cadence/
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001934
Josh Wu5cbac982014-10-13 15:51:24 -07001935ATMEL NAND DRIVER
1936M: Josh Wu <josh.wu@atmel.com>
1937L: linux-mtd@lists.infradead.org
1938S: Supported
1939F: drivers/mtd/nand/atmel_nand*
1940
ludovic.desroches@atmel.com05c441e2015-07-29 16:22:48 +02001941ATMEL SDMMC DRIVER
1942M: Ludovic Desroches <ludovic.desroches@atmel.com>
1943L: linux-mmc@vger.kernel.org
1944S: Supported
1945F: drivers/mmc/host/sdhci-of-at91.c
1946
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001947ATMEL SPI DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001948M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001949S: Supported
Joe Perches9df92e62012-01-10 15:09:06 -08001950F: drivers/spi/spi-atmel.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001951
Bo Shen0ef09012014-09-28 09:57:18 +08001952ATMEL SSC DRIVER
Nicolas Ferre03515f32015-03-19 10:49:42 +01001953M: Nicolas Ferre <nicolas.ferre@atmel.com>
Bo Shen0ef09012014-09-28 09:57:18 +08001954L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1955S: Supported
1956F: drivers/misc/atmel-ssc.c
1957F: include/linux/atmel-ssc.h
1958
Nicolas Ferree9cb1c52012-03-26 15:59:32 +02001959ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1960M: Nicolas Ferre <nicolas.ferre@atmel.com>
1961L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1962S: Supported
1963F: drivers/misc/atmel_tclib.c
1964F: drivers/clocksource/tcb_clksrc.c
1965
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001966ATMEL USBA UDC DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001967M: Nicolas Ferre <nicolas.ferre@atmel.com>
1968L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001969S: Supported
Joe Perchesfaf2e1d2014-08-08 14:26:18 -07001970F: drivers/usb/gadget/udc/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001971
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001973M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07001974L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975W: http://www.thekelleys.org.uk/atmel
1976W: http://atmelwlandriver.sourceforge.net/
1977S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001978F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979
Nick Dyera14c0f82015-08-04 16:22:54 -07001980ATMEL MAXTOUCH DRIVER
1981M: Nick Dyer <nick.dyer@itdev.co.uk>
1982T: git git://github.com/atmel-maxtouch/linux.git
1983S: Supported
1984F: Documentation/devicetree/bindings/input/atmel,maxtouch.txt
1985F: drivers/input/touchscreen/atmel_mxt_ts.c
1986F: include/linux/platform_data/atmel_mxt_ts.h
1987
Bradley Grove26780d92013-08-23 10:35:45 -04001988ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
Joe Perchesb75f0052014-03-03 15:38:37 -08001989M: Bradley Grove <linuxdrivers@attotech.com>
1990L: linux-scsi@vger.kernel.org
1991W: http://www.attotech.com
1992S: Supported
1993F: drivers/scsi/esas2r
Bradley Grove26780d92013-08-23 10:35:45 -04001994
Stefan Schmidtbc6e17b2015-05-29 10:51:28 +02001995ATUSB IEEE 802.15.4 RADIO DRIVER
1996M: Stefan Schmidt <stefan@osg.samsung.com>
1997L: linux-wpan@vger.kernel.org
1998S: Maintained
1999F: drivers/net/ieee802154/atusb.c
2000F: drivers/net/ieee802154/atusb.h
2001F: drivers/net/ieee802154/at86rf230.h
2002
Chris Wrighta92b7b82005-07-07 18:12:23 -07002003AUDIT SUBSYSTEM
Paul Moore915f3892014-10-20 11:59:43 -04002004M: Paul Moore <paul@paul-moore.com>
Joe Perches8b58be82009-07-29 15:04:30 -07002005M: Eric Paris <eparis@redhat.com>
Paul Moore915f3892014-10-20 11:59:43 -04002006L: linux-audit@redhat.com (moderated for non-subscribers)
David Woodhousead3f9a22005-07-13 15:28:29 +01002007W: http://people.redhat.com/sgrubb/audit/
Paul Moore915f3892014-10-20 11:59:43 -04002008T: git git://git.infradead.org/users/pcmoore/audit
Chris Wrighta92b7b82005-07-07 18:12:23 -07002009S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002010F: include/linux/audit.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002011F: include/uapi/linux/audit.h
Joe Perches679655d2009-04-07 20:44:32 -07002012F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07002013
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002014AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002015M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07002016W: http://miguelojeda.es/auxdisplay.htm
2017W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002018S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002019F: drivers/auxdisplay/
2020F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002021
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07002022AVR32 ARCHITECTURE
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02002023M: Haavard Skinnemoen <hskinnemoen@gmail.com>
2024M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07002025W: http://www.atmel.com/products/AVR32/
Matthias Brugger249d9d92013-02-04 14:28:47 -08002026W: http://mirror.egtvedt.no/avr32linux.org/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07002027W: http://avrfreaks.net/
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02002028S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002029F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07002030
2031AVR32/AT32AP MACHINE SUPPORT
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02002032M: Haavard Skinnemoen <hskinnemoen@gmail.com>
2033M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
2034S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002035F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07002036
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07002038M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002040W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002042F: include/uapi/linux/ax25.h
Joe Perches679655d2009-04-07 20:44:32 -07002043F: include/net/ax25.h
2044F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045
Mauro Carvalho Chehabd5269392012-11-02 12:00:30 -02002046AZ6007 DVB DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02002047M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehabd5269392012-11-02 12:00:30 -02002048L: linux-media@vger.kernel.org
2049W: http://linuxtv.org
2050T: git git://linuxtv.org/media_tree.git
2051S: Maintained
2052F: drivers/media/usb/dvb-usb-v2/az6007.c
2053
Hans Verkuil67773762012-11-23 07:09:23 -03002054AZTECH FM RADIO RECEIVER DRIVER
2055M: Hans Verkuil <hverkuil@xs4all.nl>
2056L: linux-media@vger.kernel.org
2057T: git git://linuxtv.org/media_tree.git
2058W: http://linuxtv.org
2059S: Maintained
2060F: drivers/media/radio/radio-aztech*
2061
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002062B43 WIRELESS DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002063L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01002064L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02002065W: http://wireless.kernel.org/en/users/Drivers/b43
Joe Perches8a72ed6f2015-04-15 16:17:39 -07002066S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07002067F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002068
2069B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002070M: Larry Finger <Larry.Finger@lwfinger.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002071L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01002072L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02002073W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002074S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002075F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002076
Richard Purdie300abeb2007-02-07 22:21:07 +00002077BACKLIGHT CLASS/SUBSYSTEM
Jingoo Hanb7701752015-05-14 15:17:07 -07002078M: Jingoo Han <jingoohan1@gmail.com>
Jingoo Han70d14fcf32014-04-03 14:48:46 -07002079M: Lee Jones <lee.jones@linaro.org>
Richard Purdie300abeb2007-02-07 22:21:07 +00002080S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002081F: drivers/video/backlight/
2082F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00002083
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002084BATMAN ADVANCED
Antonio Quartulli207df492013-09-21 13:46:56 +02002085M: Marek Lindner <mareklindner@neomailbox.ch>
Simon Wunderlichc679ff82013-10-10 23:59:10 +02002086M: Simon Wunderlich <sw@simonwunderlich.de>
Antonio Quartulli207df492013-09-21 13:46:56 +02002087M: Antonio Quartulli <antonio@meshcoding.com>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002088L: b.a.t.m.a.n@lists.open-mesh.org
2089W: http://www.open-mesh.org/
2090S: Maintained
2091F: net/batman-adv/
2092
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002093BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002094M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002095L: linux-hams@vger.kernel.org
2096W: http://www.baycom.org/~tom/ham/ham.html
2097S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002098F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002099
Kent Overstreetcafe5632013-03-23 16:11:31 -07002100BCACHE (BLOCK LAYER CACHE)
Joe Perchesd1aa1ab2015-06-30 14:59:54 -07002101M: Kent Overstreet <kent.overstreet@gmail.com>
Kent Overstreetcafe5632013-03-23 16:11:31 -07002102L: linux-bcache@vger.kernel.org
2103W: http://bcache.evilpiepirate.org
Joe Perchesd1aa1ab2015-06-30 14:59:54 -07002104S: Maintained
Kent Overstreetcafe5632013-03-23 16:11:31 -07002105F: drivers/md/bcache/
2106
Hans Verkuil04bd8442015-06-08 09:26:20 -03002107BDISP ST MEDIA DRIVER
2108M: Fabien Dessenne <fabien.dessenne@st.com>
2109L: linux-media@vger.kernel.org
2110T: git git://linuxtv.org/media_tree.git
2111W: http://linuxtv.org
2112S: Supported
2113F: drivers/media/platform/sti/bdisp
2114
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002115BEFS FILE SYSTEM
Joe Perches55817d32010-08-09 17:20:52 -07002116S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002117F: Documentation/filesystems/befs.txt
2118F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002119
Dariusz Marcinkiewicz564ee362014-08-15 17:50:47 +02002120BECKHOFF CX5020 ETHERCAT MASTER DRIVER
Joe Perches49e7d9d2015-04-15 16:17:31 -07002121M: Dariusz Marcinkiewicz <reksio@newterm.pl>
2122L: netdev@vger.kernel.org
2123S: Maintained
2124F: drivers/net/ethernet/ec_bhf.c
Dariusz Marcinkiewicz564ee362014-08-15 17:50:47 +02002125
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002126BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002127M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002128S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002129F: Documentation/filesystems/bfs.txt
2130F: fs/bfs/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002131F: include/uapi/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002132
Bryan Wu1394f032007-05-06 14:50:22 -07002133BLACKFIN ARCHITECTURE
Sonic Zhanga4edbc12014-01-29 14:05:55 -08002134M: Steven Miao <realmz6@gmail.com>
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002135L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Michael Opdenacker14431762014-03-10 15:49:49 -07002136T: git git://git.code.sf.net/p/adi-linux/code
Bryan Wue3b2d3f2007-06-11 15:31:30 +08002137W: http://blackfin.uclinux.org
2138S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002139F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07002140
Bryan Wue190d6b2007-07-17 14:43:44 +08002141BLACKFIN EMAC DRIVER
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002142L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Bryan Wue190d6b2007-07-17 14:43:44 +08002143W: http://blackfin.uclinux.org
2144S: Supported
Jeff Kirsher7b35f0332011-06-18 00:01:26 -07002145F: drivers/net/ethernet/adi/
Bryan Wue190d6b2007-07-17 14:43:44 +08002146
Mike Frysinger566da5b2007-06-11 15:31:30 +08002147BLACKFIN RTC DRIVER
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002148L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Mike Frysinger566da5b2007-06-11 15:31:30 +08002149W: http://blackfin.uclinux.org
2150S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002151F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08002152
Mike Frysinger936ed492010-03-10 15:20:38 -08002153BLACKFIN SDH DRIVER
Sonic Zhang109ec8c2012-08-08 12:16:08 +08002154M: Sonic Zhang <sonic.zhang@analog.com>
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002155L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Mike Frysinger936ed492010-03-10 15:20:38 -08002156W: http://blackfin.uclinux.org
2157S: Supported
2158F: drivers/mmc/host/bfin_sdh.c
2159
Bryan Wu1394f032007-05-06 14:50:22 -07002160BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002161M: Sonic Zhang <sonic.zhang@analog.com>
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002162L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Bryan Wue3b2d3f2007-06-11 15:31:30 +08002163W: http://blackfin.uclinux.org
2164S: Supported
Joe Perches84602412012-01-10 15:09:04 -08002165F: drivers/tty/serial/bfin_uart.c
Bryan Wu1394f032007-05-06 14:50:22 -07002166
Bryan Wu1e6d3202007-07-15 02:50:02 +08002167BLACKFIN WATCHDOG DRIVER
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002168L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Bryan Wu1e6d3202007-07-15 02:50:02 +08002169W: http://blackfin.uclinux.org
2170S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002171F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08002172
Bryan Wud24ecfc2007-05-01 23:26:32 +02002173BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002174M: Sonic Zhang <sonic.zhang@analog.com>
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002175L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Bryan Wud24ecfc2007-05-01 23:26:32 +02002176W: http://blackfin.uclinux.org/
2177S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002178F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02002179
Scott Jiang1e204372013-01-18 17:09:47 -03002180BLACKFIN MEDIA DRIVER
2181M: Scott Jiang <scott.jiang.linux@gmail.com>
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002182L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Scott Jiang1e204372013-01-18 17:09:47 -03002183W: http://blackfin.uclinux.org/
2184S: Supported
2185F: drivers/media/platform/blackfin/
2186F: drivers/media/i2c/adv7183*
2187F: drivers/media/i2c/vs6624*
2188
Jan-Simon Möllerb54cf352012-07-20 16:49:06 +08002189BLINKM RGB LED DRIVER
2190M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
2191S: Maintained
2192F: drivers/leds/leds-blinkm.c
2193
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07002195M: Jens Axboe <axboe@kernel.dk>
Joe Perches08deed12012-03-23 15:01:57 -07002196T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002198F: block/
Steven Rostedtae11f7e2015-06-09 17:30:11 -04002199F: kernel/trace/blktrace.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200
Joern Engel2b54aae2008-02-06 01:38:02 -08002201BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002202M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08002203L: linux-mtd@lists.infradead.org
2204S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002205F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08002206
Marcel Holtmann63fbd242008-08-18 13:23:53 +02002207BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002208M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07002209M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07002210M: Johan Hedberg <johan.hedberg@gmail.com>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02002211L: linux-bluetooth@vger.kernel.org
2212W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02002213T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2214T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Marcel Holtmann63fbd242008-08-18 13:23:53 +02002215S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002216F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02002217
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002219M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07002220M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07002221M: Johan Hedberg <johan.hedberg@gmail.com>
Pavel Machek781c2842008-03-20 15:41:02 -07002222L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02002223W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02002224T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2225T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002227F: net/bluetooth/
2228F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230BONDING DRIVER
Jay Vosburgh79b30752014-03-27 10:33:44 -07002231M: Jay Vosburgh <j.vosburgh@gmail.com>
Veaceslav Falico898602a2014-03-27 18:43:50 +01002232M: Veaceslav Falico <vfalico@gmail.com>
Andy Gospodarek31639b92015-02-25 17:00:16 -05002233M: Andy Gospodarek <gospo@cumulusnetworks.com>
Simon Hormana6c36ee2010-11-21 09:58:04 -08002234L: netdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01002235W: http://sourceforge.net/projects/bonding/
2236S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002237F: drivers/net/bonding/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002238F: include/uapi/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239
Alexei Starovoitovb5f4df32014-07-22 23:01:59 -07002240BPF (Safe dynamic programs and tools)
2241M: Alexei Starovoitov <ast@kernel.org>
2242L: netdev@vger.kernel.org
2243L: linux-kernel@vger.kernel.org
2244S: Supported
2245F: kernel/bpf/
2246
Gary Zambrano39105892006-06-22 17:26:20 -07002247BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002248M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07002249L: netdev@vger.kernel.org
2250S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07002251F: drivers/net/ethernet/broadcom/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07002252
Florian Fainelli32ec90d2014-02-13 16:08:51 -08002253BROADCOM GENET ETHERNET DRIVER
2254M: Florian Fainelli <f.fainelli@gmail.com>
2255L: netdev@vger.kernel.org
2256S: Supported
2257F: drivers/net/ethernet/broadcom/genet/
2258
Michael Chan948c51e2006-06-04 02:51:39 -07002259BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Jitendra Kalsariaf1d1bae2014-06-23 15:10:35 -04002260M: Sony Chacko <sony.chacko@qlogic.com>
2261M: Dept-HSGLinuxNICDev@qlogic.com
Michael Chan948c51e2006-06-04 02:51:39 -07002262L: netdev@vger.kernel.org
2263S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07002264F: drivers/net/ethernet/broadcom/bnx2.*
2265F: drivers/net/ethernet/broadcom/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07002266
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08002267BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Ariel Elior08f6dd82014-05-27 13:11:36 +03002268M: Ariel Elior <ariel.elior@qlogic.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08002269L: netdev@vger.kernel.org
2270S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07002271F: drivers/net/ethernet/broadcom/bnx2x/
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08002272
Matt Porter90f4c592014-05-06 12:09:45 -04002273BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
Florian Fainellif18cf052014-09-19 11:17:12 -07002274M: Florian Fainelli <f.fainelli@gmail.com>
Florian Fainellid3cc2e82015-04-10 11:49:44 -07002275M: Ray Jui <rjui@broadcom.com>
2276M: Scott Branden <sbranden@broadcom.com>
Christian Daudt497a0452013-09-24 15:27:47 -07002277L: bcm-kernel-feedback-list@broadcom.com
Matt Porter90f4c592014-05-06 12:09:45 -04002278T: git git://github.com/broadcom/mach-bcm
Christian Daudtaf4b8e32013-09-11 14:23:49 -07002279S: Maintained
2280F: arch/arm/mach-bcm/
2281F: arch/arm/boot/dts/bcm113*
Matt Porter90f4c592014-05-06 12:09:45 -04002282F: arch/arm/boot/dts/bcm216*
Christian Daudtaf4b8e32013-09-11 14:23:49 -07002283F: arch/arm/boot/dts/bcm281*
2284F: arch/arm/configs/bcm_defconfig
Joe Perchese4ef47f2014-08-08 14:25:08 -07002285F: drivers/mmc/host/sdhci-bcm-kona.c
Christian Daudtaf4b8e32013-09-11 14:23:49 -07002286F: drivers/clocksource/bcm_kona_timer.c
2287
Scott Branden9209bec4f2014-10-16 21:57:16 -06002288BROADCOM BCM2835 ARM ARCHITECTURE
Stephen Warrenf680f252012-09-15 00:18:54 -06002289M: Stephen Warren <swarren@wwwdotorg.org>
Stephen Warren8bcdd922014-11-04 20:27:17 -07002290M: Lee Jones <lee@kernel.org>
Eric Anholt10b9e882015-07-22 12:55:36 -07002291M: Eric Anholt <eric@anholt.net>
Stephen Warrenf680f252012-09-15 00:18:54 -06002292L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
Eric Anholt82481122015-07-22 12:55:37 -07002293L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Stephen Warren8bcdd922014-11-04 20:27:17 -07002294T: git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git
Stephen Warrenf680f252012-09-15 00:18:54 -06002295S: Maintained
Scott Branden9209bec4f2014-10-16 21:57:16 -06002296N: bcm2835
Stephen Warrenf680f252012-09-15 00:18:54 -06002297
Kevin Cernekeea2f67342014-10-20 21:28:06 -07002298BROADCOM BCM33XX MIPS ARCHITECTURE
2299M: Kevin Cernekee <cernekee@gmail.com>
2300L: linux-mips@linux-mips.org
2301S: Maintained
2302F: arch/mips/bcm3384/*
2303F: arch/mips/include/asm/mach-bcm3384/*
2304F: arch/mips/kernel/*bmips*
2305
Rafał Miłecki5564f092015-05-29 07:39:26 +02002306BROADCOM BCM47XX MIPS ARCHITECTURE
2307M: Hauke Mehrtens <hauke@hauke-m.de>
2308M: Rafał Miłecki <zajec5@gmail.com>
2309L: linux-mips@linux-mips.org
2310S: Maintained
2311F: arch/mips/bcm47xx/*
2312F: arch/mips/include/asm/mach-bcm47xx/*
2313
Scott Branden9209bec4f2014-10-16 21:57:16 -06002314BROADCOM BCM5301X ARM ARCHITECTURE
Hauke Mehrtens5b293eb2014-02-04 00:01:43 +01002315M: Hauke Mehrtens <hauke@hauke-m.de>
2316L: linux-arm-kernel@lists.infradead.org
2317S: Maintained
2318F: arch/arm/mach-bcm/bcm_5301x.c
2319F: arch/arm/boot/dts/bcm5301x.dtsi
2320F: arch/arm/boot/dts/bcm470*
2321
Florian Fainellie076e962014-03-04 18:14:58 -08002322BROADCOM BCM63XX ARM ARCHITECTURE
2323M: Florian Fainelli <f.fainelli@gmail.com>
2324L: linux-arm-kernel@lists.infradead.org
Florian Fainellieb6725d2015-01-29 15:21:56 -08002325T: git git://github.com/broadcom/arm-bcm63xx.git
Florian Fainellie076e962014-03-04 18:14:58 -08002326S: Maintained
2327F: arch/arm/mach-bcm/bcm63xx.c
2328F: arch/arm/include/debug/bcm63xx.S
2329
Kevin Cernekee7110e2272014-10-20 21:28:07 -07002330BROADCOM BCM63XX/BCM33XX UDC DRIVER
2331M: Kevin Cernekee <cernekee@gmail.com>
2332L: linux-usb@vger.kernel.org
2333S: Maintained
2334F: drivers/usb/gadget/udc/bcm63xx_udc.*
2335
Brian Norris2df94fd2014-07-14 18:06:03 -07002336BROADCOM BCM7XXX ARM ARCHITECTURE
Brian Norris2df94fd2014-07-14 18:06:03 -07002337M: Brian Norris <computersforpeace@gmail.com>
Florian Fainelli3b4b6fe2014-11-14 12:53:43 -08002338M: Gregory Fong <gregory.0xf0@gmail.com>
2339M: Florian Fainelli <f.fainelli@gmail.com>
Brian Norris2df94fd2014-07-14 18:06:03 -07002340L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Florian Fainellieb6725d2015-01-29 15:21:56 -08002341T: git git://github.com/broadcom/stblinux.git
Brian Norris2df94fd2014-07-14 18:06:03 -07002342S: Maintained
2343F: arch/arm/mach-bcm/*brcmstb*
2344F: arch/arm/boot/dts/bcm7*.dts*
Florian Fainellie36661e2014-11-14 12:53:44 -08002345F: drivers/bus/brcmstb_gisb.c
Brian Norris5009a282015-03-18 18:09:05 -07002346N: brcmstb
Brian Norris2df94fd2014-07-14 18:06:03 -07002347
Kevin Cernekee70371ce2014-11-15 16:17:45 -08002348BROADCOM BMIPS MIPS ARCHITECTURE
2349M: Kevin Cernekee <cernekee@gmail.com>
2350M: Florian Fainelli <f.fainelli@gmail.com>
2351L: linux-mips@linux-mips.org
Florian Fainellieb6725d2015-01-29 15:21:56 -08002352T: git git://github.com/broadcom/stblinux.git
Kevin Cernekee70371ce2014-11-15 16:17:45 -08002353S: Maintained
2354F: arch/mips/bmips/*
2355F: arch/mips/include/asm/mach-bmips/*
2356F: arch/mips/kernel/*bmips*
Joe Perches338808d2015-06-30 14:59:42 -07002357F: arch/mips/boot/dts/brcm/bcm*.dts*
Kevin Cernekee70371ce2014-11-15 16:17:45 -08002358F: drivers/irqchip/irq-bcm7*
2359F: drivers/irqchip/irq-brcmstb*
2360
Michael Chan948c51e2006-06-04 02:51:39 -07002361BROADCOM TG3 GIGABIT ETHERNET DRIVER
Prashant Sreedharan23629472014-06-27 16:21:50 -07002362M: Prashant Sreedharan <prashant@broadcom.com>
Joe Perches8b58be82009-07-29 15:04:30 -07002363M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07002364L: netdev@vger.kernel.org
2365S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07002366F: drivers/net/ethernet/broadcom/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07002367
Henry Ptasinskia9533e72010-09-08 21:04:42 -07002368BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2369M: Brett Rudley <brudley@broadcom.com>
Henry Ptasinski818c07b2010-12-08 13:09:49 -08002370M: Arend van Spriel <arend@broadcom.com>
Roland Vossen85d63682011-06-01 13:44:56 +02002371M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
Arend van Spriel006a8f12012-11-28 21:44:04 +01002372M: Hante Meuleman <meuleman@broadcom.com>
Henry Ptasinskia9533e72010-09-08 21:04:42 -07002373L: linux-wireless@vger.kernel.org
Arend van Spriel56151712012-06-14 14:16:27 +02002374L: brcm80211-dev-list@broadcom.com
Henry Ptasinskia9533e72010-09-08 21:04:42 -07002375S: Supported
Joe Perchesf62ebdd2011-12-09 00:12:52 -08002376F: drivers/net/wireless/brcm80211/
Henry Ptasinskia9533e72010-09-08 21:04:42 -07002377
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07002378BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
Vikas Chaudhary3b7f0402014-07-03 08:18:29 -04002379M: QLogic-Storage-Upstream@qlogic.com
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07002380L: linux-scsi@vger.kernel.org
2381S: Supported
2382F: drivers/scsi/bnx2fc/
2383
Eddie Wai6a6b5ad02013-07-11 17:15:56 -07002384BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
Vikas Chaudhary3b7f0402014-07-03 08:18:29 -04002385M: QLogic-Storage-Upstream@qlogic.com
Eddie Wai6a6b5ad02013-07-11 17:15:56 -07002386L: linux-scsi@vger.kernel.org
2387S: Supported
2388F: drivers/scsi/bnx2i/
2389
Scott Branden36c02372014-09-12 16:50:56 -07002390BROADCOM CYGNUS/IPROC ARM ARCHITECTURE
2391M: Ray Jui <rjui@broadcom.com>
2392M: Scott Branden <sbranden@broadcom.com>
2393L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2394L: bcm-kernel-feedback-list@broadcom.com
Florian Fainellieb6725d2015-01-29 15:21:56 -08002395T: git git://github.com/broadcom/cygnus-linux.git
Scott Branden36c02372014-09-12 16:50:56 -07002396S: Maintained
2397N: iproc
2398N: cygnus
2399N: bcm9113*
2400N: bcm9583*
2401N: bcm583*
2402N: bcm113*
2403
Gregory Fong3b0213d2015-05-28 19:14:05 -07002404BROADCOM BRCMSTB GPIO DRIVER
2405M: Gregory Fong <gregory.0xf0@gmail.com>
2406L: bcm-kernel-feedback-list@broadcom.com>
2407S: Supported
2408F: drivers/gpio/gpio-brcmstb.c
2409F: Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2410
Markus Mayer7b7f5882014-02-12 15:42:27 -08002411BROADCOM KONA GPIO DRIVER
Markus Mayer5e163902014-07-29 11:10:07 -07002412M: Ray Jui <rjui@broadcom.com>
Markus Mayer7b7f5882014-02-12 15:42:27 -08002413L: bcm-kernel-feedback-list@broadcom.com
2414S: Supported
2415F: drivers/gpio/gpio-bcm-kona.c
Joe Perches1db12cd2015-06-30 14:59:45 -07002416F: Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
Markus Mayer7b7f5882014-02-12 15:42:27 -08002417
Rafał Miłeckif6e734a2015-06-10 23:05:08 +02002418BROADCOM NVRAM DRIVER
2419M: Rafał Miłecki <zajec5@gmail.com>
2420L: linux-mips@linux-mips.org
2421S: Maintained
2422F: drivers/firmware/broadcom/*
2423
Brian Norris02787da2015-05-12 17:16:50 -07002424BROADCOM STB NAND FLASH DRIVER
2425M: Brian Norris <computersforpeace@gmail.com>
2426L: linux-mtd@lists.infradead.org
2427S: Maintained
2428F: drivers/mtd/nand/brcmnand/
2429
Rafał Miłeckic9678d82012-01-13 22:55:05 +01002430BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2431M: Rafał Miłecki <zajec5@gmail.com>
2432L: linux-wireless@vger.kernel.org
2433S: Maintained
2434F: drivers/bcma/
2435F: include/linux/bcma/
2436
Florian Fainellib8302202014-04-24 18:09:00 -07002437BROADCOM SYSTEMPORT ETHERNET DRIVER
2438M: Florian Fainelli <f.fainelli@gmail.com>
2439L: netdev@vger.kernel.org
2440S: Supported
2441F: drivers/net/ethernet/broadcom/bcmsysport.*
2442
Jing Huang7725ccf2009-09-23 17:46:15 -07002443BROCADE BFA FC SCSI DRIVER
Anil Gurumurthyaa803372014-02-26 06:08:42 -05002444M: Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2445M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
Joe Perches455518e2009-11-11 14:26:10 -08002446L: linux-scsi@vger.kernel.org
2447S: Supported
2448F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07002449
Rasesh Mody8b230ed2010-08-23 20:24:12 -07002450BROCADE BNA 10 GIGABIT ETHERNET DRIVER
Rasesh Mody439e9572014-10-01 17:20:41 -04002451M: Rasesh Mody <rasesh.mody@qlogic.com>
Rasesh Mody8b230ed2010-08-23 20:24:12 -07002452L: netdev@vger.kernel.org
2453S: Supported
Jeff Kirsherf844a0e2011-05-13 01:00:03 -07002454F: drivers/net/ethernet/brocade/bna/
Rasesh Mody8b230ed2010-08-23 20:24:12 -07002455
Jens Axboe5cdf7f72007-07-17 08:58:06 +02002456BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07002457M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02002458L: linux-scsi@vger.kernel.org
2459S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002460F: block/bsg.c
2461F: include/linux/bsg.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002462F: include/uapi/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02002463
Clemens Ladischaf399172011-01-10 16:32:54 +01002464BT87X AUDIO DRIVER
2465M: Clemens Ladisch <clemens@ladisch.de>
2466L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2467T: git git://git.alsa-project.org/alsa-kernel.git
2468S: Maintained
2469F: Documentation/sound/alsa/Bt87x.txt
2470F: sound/pci/bt87x.c
2471
Michael Bueschff1d5c22008-07-25 01:46:10 -07002472BT8XXGPIO DRIVER
Michael Büscheb032b92011-07-04 20:50:05 +02002473M: Michael Buesch <m@bues.ch>
Michael Bueschff1d5c22008-07-25 01:46:10 -07002474W: http://bu3sch.de/btgpio.php
2475S: Maintained
Joe Perches72dbb702012-01-10 15:08:46 -08002476F: drivers/gpio/gpio-bt8xx.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07002477
Joe Percheseb1eb042009-01-21 10:49:16 -05002478BTRFS FILE SYSTEM
Chris Masonc0778e22013-12-03 20:16:03 -05002479M: Chris Mason <clm@fb.com>
2480M: Josef Bacik <jbacik@fb.com>
Jiri Slabyd8130622015-07-17 16:23:20 -07002481M: David Sterba <dsterba@suse.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05002482L: linux-btrfs@vger.kernel.org
2483W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08002484Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Liu Bo9c106402012-06-14 02:23:25 -06002485T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
Joe Percheseb1eb042009-01-21 10:49:16 -05002486S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002487F: Documentation/filesystems/btrfs.txt
2488F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05002489
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02002491M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002492L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07002493W: http://linuxtv.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02002494T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehabf96236e2012-11-02 11:14:18 -02002495S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07002496F: Documentation/video4linux/bttv/
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002497F: drivers/media/pci/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498
Khalid Aziz1f349232013-06-25 09:57:27 -06002499BUSLOGIC SCSI DRIVER
2500M: Khalid Aziz <khalid@gonehiking.org>
2501L: linux-scsi@vger.kernel.org
2502S: Maintained
2503F: drivers/scsi/BusLogic.*
2504F: drivers/scsi/FlashPoint.*
2505
Clemens Ladischaf399172011-01-10 16:32:54 +01002506C-MEDIA CMI8788 DRIVER
2507M: Clemens Ladisch <clemens@ladisch.de>
2508L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2509T: git git://git.alsa-project.org/alsa-kernel.git
2510S: Maintained
2511F: sound/pci/oxygen/
2512
Mark Salter21413552011-10-04 11:21:42 -04002513C6X ARCHITECTURE
2514M: Mark Salter <msalter@redhat.com>
2515M: Aurelien Jacquiot <a-jacquiot@ti.com>
2516L: linux-c6x-dev@linux-c6x.org
2517W: http://www.linux-c6x.org/wiki/index.php/Main_Page
2518S: Maintained
2519F: arch/c6x/
2520
David Howellsa5432f5a2009-04-20 15:46:45 +01002521CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07002522M: David Howells <dhowells@redhat.com>
David Howellsa5432f5a2009-04-20 15:46:45 +01002523L: linux-cachefs@redhat.com
2524S: Supported
2525F: Documentation/filesystems/caching/cachefiles.txt
2526F: fs/cachefiles/
2527
Hans Verkuilc815ca32012-11-23 07:05:54 -03002528CADET FM/AM RADIO RECEIVER DRIVER
2529M: Hans Verkuil <hverkuil@xs4all.nl>
2530L: linux-media@vger.kernel.org
2531T: git git://linuxtv.org/media_tree.git
2532W: http://linuxtv.org
2533S: Maintained
2534F: drivers/media/radio/radio-cadet*
2535
Jonathan Corbet77d51402007-03-22 19:44:17 -03002536CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002537M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002538L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02002539T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03002540S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002541F: Documentation/video4linux/cafe_ccic
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002542F: drivers/media/platform/marvell-ccic/
Jonathan Corbet77d51402007-03-22 19:44:17 -03002543
Joe Perches201b6ba2010-09-07 20:33:24 +00002544CAIF NETWORK LAYER
sjur.brandeland@stericsson.com5c574f52013-04-22 23:57:00 +00002545M: Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
Joe Perches201b6ba2010-09-07 20:33:24 +00002546L: netdev@vger.kernel.org
2547S: Supported
2548F: Documentation/networking/caif/
2549F: drivers/net/caif/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002550F: include/uapi/linux/caif/
Joe Perches201b6ba2010-09-07 20:33:24 +00002551F: include/net/caif/
2552F: net/caif/
2553
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02002554CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07002555M: Muli Ben-Yehuda <muli@il.ibm.com>
2556M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02002557L: discuss@x86-64.org
2558S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002559F: arch/x86/kernel/pci-calgary_64.c
2560F: arch/x86/kernel/tce_64.c
2561F: arch/x86/include/asm/calgary.h
2562F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02002563
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002564CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00002565M: Oliver Hartkopp <socketcan@hartkopp.net>
Marc Kleine-Buddef7214cf2015-03-06 09:00:38 +01002566M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00002567L: linux-can@vger.kernel.org
Marc Kleine-Budde84b0d712015-03-06 08:58:33 +01002568W: https://github.com/linux-can
Marc Kleine-Budde870482a2015-01-15 16:56:26 +01002569T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2570T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002571S: Maintained
John Whitmoref35f6c82013-12-06 12:49:08 +00002572F: Documentation/networking/can.txt
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00002573F: net/can/
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00002574F: include/linux/can/core.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002575F: include/uapi/linux/can.h
2576F: include/uapi/linux/can/bcm.h
2577F: include/uapi/linux/can/raw.h
2578F: include/uapi/linux/can/gw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002579
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00002580CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002581M: Wolfgang Grandegger <wg@grandegger.com>
Oliver Hartkoppec782132012-01-03 08:40:28 +00002582M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00002583L: linux-can@vger.kernel.org
Marc Kleine-Budde84b0d712015-03-06 08:58:33 +01002584W: https://github.com/linux-can
Marc Kleine-Budde870482a2015-01-15 16:56:26 +01002585T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2586T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00002587S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00002588F: drivers/net/can/
2589F: include/linux/can/dev.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00002590F: include/linux/can/platform/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002591F: include/uapi/linux/can/error.h
2592F: include/uapi/linux/can/netlink.h
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00002593
James Morris95d16c72012-03-16 12:05:48 +11002594CAPABILITIES
2595M: Serge Hallyn <serge.hallyn@canonical.com>
2596L: linux-security-module@vger.kernel.org
Joe Perches63059022012-06-07 14:21:10 -07002597S: Supported
James Morris95d16c72012-03-16 12:05:48 +11002598F: include/linux/capability.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002599F: include/uapi/linux/capability.h
Joe Perches63059022012-06-07 14:21:10 -07002600F: security/commoncap.c
James Morris38a94112012-04-09 11:03:36 +10002601F: kernel/capability.c
James Morris95d16c72012-03-16 12:05:48 +11002602
Kevin Tsaib84894c2015-01-15 17:41:04 -08002603CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
2604M: Kevin Tsai <ktsai@capellamicro.com>
2605S: Maintained
2606F: drivers/iio/light/cm*
2607F: Documentation/devicetree/bindings/i2c/trivial-devices.txt
2608
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002609CAVIUM LIQUIDIO NETWORK DRIVER
2610M: Derek Chickles <derek.chickles@caviumnetworks.com>
2611M: Satanand Burla <satananda.burla@caviumnetworks.com>
2612M: Felix Manlunas <felix.manlunas@caviumnetworks.com>
2613M: Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
2614L: netdev@vger.kernel.org
2615W: http://www.cavium.com
2616S: Supported
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002617F: drivers/net/ethernet/cavium/liquidio/
2618
Varka Bhadramef0bbac2014-10-29 16:15:22 +05302619CC2520 IEEE-802.15.4 RADIO DRIVER
2620M: Varka Bhadram <varkabhadram@gmail.com>
2621L: linux-wpan@vger.kernel.org
2622S: Maintained
2623F: drivers/net/ieee802154/cc2520.c
2624F: include/linux/spi/cc2520.h
2625F: Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
2626
Arnd Bergmannb8154542008-05-16 11:10:59 +02002627CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07002628M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002629L: linuxppc-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02002630W: http://www.ibm.com/developerworks/power/cell/
2631S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002632F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07002633F: arch/powerpc/include/asm/spu*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002634F: arch/powerpc/include/uapi/asm/spu*.h
Joe Perches679655d2009-04-07 20:44:32 -07002635F: arch/powerpc/oprofile/*cell*
2636F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02002637
Sage Weil398ecff52015-07-09 11:46:14 -04002638CEPH COMMON CODE (LIBCEPH)
2639M: Ilya Dryomov <idryomov@gmail.com>
Joe Perchese43cdb52015-06-25 15:02:03 -07002640M: "Yan, Zheng" <zyan@redhat.com>
Sage Weil0f5417c2015-02-19 10:10:40 -08002641M: Sage Weil <sage@redhat.com>
Sage Weil82593f82010-03-29 09:53:23 -07002642L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07002643W: http://ceph.com/
Sage Weilfb99f882009-12-03 15:04:08 -08002644T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil6e67b7a2015-07-09 11:47:37 -04002645T: git git://github.com/ceph/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07002646S: Supported
Joe Perches14430812013-09-11 14:23:50 -07002647F: net/ceph/
2648F: include/linux/ceph/
2649F: include/linux/crush/
Sage Weil9030aaf2009-10-06 11:31:15 -07002650
Sage Weil398ecff52015-07-09 11:46:14 -04002651CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
2652M: "Yan, Zheng" <zyan@redhat.com>
2653M: Sage Weil <sage@redhat.com>
2654M: Ilya Dryomov <idryomov@gmail.com>
2655L: ceph-devel@vger.kernel.org
2656W: http://ceph.com/
2657T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil6e67b7a2015-07-09 11:47:37 -04002658T: git git://github.com/ceph/ceph-client.git
Sage Weil398ecff52015-07-09 11:46:14 -04002659S: Supported
2660F: Documentation/filesystems/ceph.txt
2661F: fs/ceph/
2662
David Howellscfc411e2015-08-14 15:20:41 +01002663CERTIFICATE HANDLING:
2664M: David Howells <dhowells@redhat.com>
2665M: David Woodhouse <dwmw2@infradead.org>
2666L: keyrings@linux-nfs.org
2667S: Maintained
2668F: Documentation/module-signing.txt
2669F: certs/
2670F: scripts/extract-cert.c
2671
David Vrabel18332a82008-09-17 16:34:44 +01002672CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01002673L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01002674S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002675F: Documentation/usb/WUSB-Design-overview.txt
2676F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00002677F: drivers/usb/host/hwa-hc.c
2678F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07002679F: drivers/usb/wusbcore/
2680F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01002681
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002682CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002683M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07002684W: http://miguelojeda.es/auxdisplay.htm
2685W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002686S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002687F: drivers/auxdisplay/cfag12864b.c
2688F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002689
2690CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002691M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07002692W: http://miguelojeda.es/auxdisplay.htm
2693W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002694S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002695F: drivers/auxdisplay/cfag12864bfb.c
2696F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002697
Johannes Berg704232c2007-04-23 12:20:05 -07002698CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07002699M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07002700L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02002701W: http://wireless.kernel.org/
2702T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2703T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Johannes Berg704232c2007-04-23 12:20:05 -07002704S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002705F: include/uapi/linux/nl80211.h
Joe Perches679655d2009-04-07 20:44:32 -07002706F: include/net/cfg80211.h
2707F: net/wireless/*
2708X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07002709
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002710CHAR and MISC DRIVERS
2711M: Arnd Bergmann <arnd@arndb.de>
Greg KH879a5a02012-01-31 20:02:00 -08002712M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002713T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Greg KH879a5a02012-01-31 20:02:00 -08002714S: Supported
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002715F: drivers/char/*
2716F: drivers/misc/*
Robert P. J. Day471322a2014-05-16 04:41:09 -04002717F: include/linux/miscdevice.h
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002718
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002719CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07002720M: Andy Whitcroft <apw@canonical.com>
Joe Perches10d83f02013-02-21 16:44:15 -08002721M: Joe Perches <joe@perches.com>
2722S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002723F: scripts/checkpatch.pl
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002724
Harry Weif8407f262011-02-25 14:44:15 -08002725CHINESE DOCUMENTATION
2726M: Harry Wei <harryxiyou@gmail.com>
Joe Perches97401532012-12-17 16:00:00 -08002727L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
Harry Weif8407f262011-02-25 14:44:15 -08002728L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
2729S: Maintained
2730F: Documentation/zh_CN/
2731
Alexander Shishkin2721ea22012-05-11 17:25:59 +03002732CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
Greg Kroah-Hartmaneee52f92013-12-02 15:43:48 -08002733M: Peter Chen <Peter.Chen@freescale.com>
Peter Chen83738562015-03-23 19:57:36 +08002734T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
Alexander Shishkin2721ea22012-05-11 17:25:59 +03002735L: linux-usb@vger.kernel.org
2736S: Maintained
2737F: drivers/usb/chipidea/
2738
Hans de Goedea93ad652015-03-21 20:40:45 -07002739CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
2740M: Hans de Goede <hdegoede@redhat.com>
2741L: linux-input@vger.kernel.org
2742S: Maintained
2743F: Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
2744F: drivers/input/touchscreen/chipone_icn8318.c
2745
Olof Johanssonab043102013-11-07 14:25:45 -08002746CHROME HARDWARE PLATFORM SUPPORT
2747M: Olof Johansson <olof@lixom.net>
2748S: Maintained
2749F: drivers/platform/chrome/
2750
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00002751CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri2360d2e2011-02-04 16:17:26 +00002752M: Christian Benvenuti <benve@cisco.com>
govindarajulu.v001e1c12013-09-04 11:17:18 +05302753M: Sujith Sankar <ssujith@cisco.com>
Govindarajulu Varadarajanc327e8f2014-05-20 03:14:32 +05302754M: Govindarajulu Varadarajan <_govind@gmx.com>
Neel Patel5c6652f2012-02-03 08:25:25 +00002755M: Neel Patel <neepatel@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08002756S: Supported
Jeff Kirshera6a55802011-05-13 22:20:35 -07002757F: drivers/net/ethernet/cisco/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08002758
Upinder Malhie3cf00d2013-09-10 03:38:16 +00002759CISCO VIC LOW LATENCY NIC DRIVER
Joe Perchesb75f0052014-03-03 15:38:37 -08002760M: Upinder Malhi <umalhi@cisco.com>
2761S: Supported
2762F: drivers/infiniband/hw/usnic
Upinder Malhie3cf00d2013-09-10 03:38:16 +00002763
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002764CIRRUS LOGIC EP93XX ETHERNET DRIVER
H Hartley Sweeten55879122011-06-09 15:00:21 -07002765M: Hartley Sweeten <hsweeten@visionengravers.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002766L: netdev@vger.kernel.org
2767S: Maintained
Jeff Kirsher57d0b7a2011-07-16 23:50:52 -07002768F: drivers/net/ethernet/cirrus/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002769
Mark Brown3d4cfdc2014-02-04 20:28:12 +00002770CIRRUS LOGIC AUDIO CODEC DRIVERS
2771M: Brian Austin <brian.austin@cirrus.com>
2772M: Paul Handrigan <Paul.Handrigan@cirrus.com>
2773L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2774S: Maintained
2775F: sound/soc/codecs/cs*
2776
Konrad Rzeszutek Wilk94574d92012-03-19 11:47:18 -04002777CLEANCACHE API
2778M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2779L: linux-kernel@vger.kernel.org
2780S: Maintained
2781F: mm/cleancache.c
2782F: include/linux/cleancache.h
2783
Russell Kingd4275352009-04-16 14:05:27 +01002784CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07002785M: Russell King <linux@arm.linux.org.uk>
Paul Walmsleyaa571b12015-03-25 18:32:59 +00002786L: linux-clk@vger.kernel.org
Joe Perches37417042012-03-23 15:01:58 -07002787S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01002788F: include/linux/clk.h
2789
John Stultz9222d242013-07-16 16:45:31 +02002790CLOCKSOURCE, CLOCKEVENT DRIVERS
2791M: Daniel Lezcano <daniel.lezcano@linaro.org>
2792M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar981c3a42014-01-21 10:59:20 +01002793L: linux-kernel@vger.kernel.org
John Stultz9222d242013-07-16 16:45:31 +02002794T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
2795S: Supported
2796F: drivers/clocksource
2797
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002798CISCO FCOE HBA DRIVER
Hiral Patel8fc89a72012-12-10 01:21:29 -08002799M: Hiral Patel <hiralpat@cisco.com>
2800M: Suma Ramars <sramars@cisco.com>
Abhijeet Joglekard7e01dc2011-06-13 21:21:17 -07002801M: Brian Uchino <buchino@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002802L: linux-scsi@vger.kernel.org
2803S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07002804F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002805
Narsimhulu Musinic8806b62015-05-29 01:04:01 -07002806CISCO SCSI HBA DRIVER
2807M: Narsimhulu Musini <nmusini@cisco.com>
2808M: Sesidhar Baddela <sebaddel@cisco.com>
2809L: linux-scsi@vger.kernel.org
2810S: Supported
2811F: drivers/scsi/snic/
2812
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002813CMPC ACPI DRIVER
2814M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2815M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd09448532010-02-11 10:40:13 -05002816L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002817S: Supported
2818F: drivers/platform/x86/classmate-laptop.c
2819
Hans Verkuil85756a02015-05-12 08:52:21 -03002820COBALT MEDIA DRIVER
2821M: Hans Verkuil <hans.verkuil@cisco.com>
2822L: linux-media@vger.kernel.org
2823T: git git://linuxtv.org/media_tree.git
2824W: http://linuxtv.org
2825S: Supported
2826F: drivers/media/pci/cobalt/
2827
Nicolas Palix74425ee2010-06-06 17:15:01 +02002828COCCINELLE/Semantic Patches (SmPL)
Nicolas Palix26de9c22012-09-20 22:52:42 +02002829M: Julia Lawall <Julia.Lawall@lip6.fr>
Nicolas Palix74425ee2010-06-06 17:15:01 +02002830M: Gilles Muller <Gilles.Muller@lip6.fr>
Nicolas Palix26de9c22012-09-20 22:52:42 +02002831M: Nicolas Palix <nicolas.palix@imag.fr>
Jiri Slabyd8130622015-07-17 16:23:20 -07002832M: Michal Marek <mmarek@suse.com>
Nicolas Palix26de9c22012-09-20 22:52:42 +02002833L: cocci@systeme.lip6.fr (moderated for non-subscribers)
Nicolas Palixc00b5112013-06-06 23:39:53 +02002834T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
Nicolas Palix74425ee2010-06-06 17:15:01 +02002835W: http://coccinelle.lip6.fr/
2836S: Supported
Nicolas Palix4b92b2a2013-06-20 13:10:55 +02002837F: Documentation/coccinelle.txt
Nicolas Palix74425ee2010-06-06 17:15:01 +02002838F: scripts/coccinelle/
2839F: scripts/coccicheck
2840
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002842M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843M: coda@cs.cmu.edu
2844L: codalist@coda.cs.cmu.edu
2845W: http://www.coda.cs.cmu.edu/
2846S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002847F: Documentation/filesystems/coda.txt
2848F: fs/coda/
2849F: include/linux/coda*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002850F: include/uapi/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851
Philipp Zabel0b142612014-11-04 07:26:35 -03002852CODA V4L2 MEM2MEM DRIVER
2853M: Philipp Zabel <p.zabel@pengutronix.de>
2854L: linux-media@vger.kernel.org
2855S: Maintained
2856F: Documentation/devicetree/bindings/media/coda.txt
2857F: drivers/media/platform/coda/
2858
Mike Turquette7704add2012-05-02 18:37:45 -07002859COMMON CLK FRAMEWORK
Michael Turquettea85fa002015-06-17 13:41:04 -07002860M: Michael Turquette <mturquette@baylibre.com>
Michael Turquettef9561652014-11-12 16:43:47 -08002861M: Stephen Boyd <sboyd@codeaurora.org>
Paul Walmsleyaa571b12015-03-25 18:32:59 +00002862L: linux-clk@vger.kernel.org
Michael Turquettebaeb0d92014-11-13 17:18:20 -08002863T: git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
Mike Turquette7704add2012-05-02 18:37:45 -07002864S: Maintained
Stephen Warren60bea3b2013-06-05 09:50:30 -06002865F: drivers/clk/
2866X: drivers/clk/clkdev.c
Mike Turquette7704add2012-05-02 18:37:45 -07002867F: include/linux/clk-pr*
Stephen Warren60bea3b2013-06-05 09:50:30 -06002868F: include/linux/clk/
Mike Turquette7704add2012-05-02 18:37:45 -07002869
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002870COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07002871M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04002872L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08002873L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002874W: http://linux-cifs.samba.org/
Kevin Cernekeebb1d5dd2014-11-10 13:09:24 -08002875T: git git://git.samba.org/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002876S: Supported
Joe Perchesec421a72014-08-08 14:24:59 -07002877F: Documentation/filesystems/cifs/
Joe Perches679655d2009-04-07 20:44:32 -07002878F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002879
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002881M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002882L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002883S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002884F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885
2886COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002887M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002888L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002889S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002890F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891
2892COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002893M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002894L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002895S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002896F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002898COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002899M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05002900L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002901S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002902F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002903
Simon Arlott949be0f2007-03-06 02:47:46 -08002904CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002905M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02002906L: accessrunner-general@lists.sourceforge.net
2907W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08002908S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002909F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08002910
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002911CONFIGFS
Joel Beckerd6351db2011-01-07 18:10:32 -08002912M: Joel Becker <jlbec@evilplan.org>
2913T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002914S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002915F: fs/configfs/
2916F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002917
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002918CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07002919M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002920L: netdev@vger.kernel.org
2921S: Maintained
2922F: drivers/connector/
2923
Tejun Heoa3e33542014-05-13 15:49:58 -04002924CONTROL GROUP (CGROUP)
Paul Menage860ca0e2011-11-18 14:22:09 -08002925M: Tejun Heo <tj@kernel.org>
Li Zefanad50c152012-03-29 08:53:30 -07002926M: Li Zefan <lizefan@huawei.com>
Tejun Heo4d205672015-06-12 17:15:23 -05002927M: Johannes Weiner <hannes@cmpxchg.org>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08002928L: cgroups@vger.kernel.org
Paul Menage860ca0e2011-11-18 14:22:09 -08002929T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002930S: Maintained
Tejun Heoa3e33542014-05-13 15:49:58 -04002931F: Documentation/cgroups/
Joe Perches679655d2009-04-07 20:44:32 -07002932F: include/linux/cgroup*
2933F: kernel/cgroup*
Tejun Heoa3e33542014-05-13 15:49:58 -04002934
2935CONTROL GROUP - CPUSET
2936M: Li Zefan <lizefan@huawei.com>
2937L: cgroups@vger.kernel.org
2938W: http://www.bullopensource.org/cpuset/
2939W: http://oss.sgi.com/projects/cpusets/
2940T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2941S: Maintained
2942F: Documentation/cgroups/cpusets.txt
2943F: include/linux/cpuset.h
2944F: kernel/cpuset.c
2945
2946CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
2947M: Johannes Weiner <hannes@cmpxchg.org>
Michal Hockofbd7dc72015-07-17 16:23:26 -07002948M: Michal Hocko <mhocko@kernel.org>
Tejun Heoa3e33542014-05-13 15:49:58 -04002949L: cgroups@vger.kernel.org
2950L: linux-mm@kvack.org
2951S: Maintained
2952F: mm/memcontrol.c
Johannes Weiner5d1ea482014-12-10 15:44:55 -08002953F: mm/swap_cgroup.c
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002954
Rudolf Marekbebe4672007-05-08 17:22:02 +02002955CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02002956M: Fenghua Yu <fenghua.yu@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02002957L: lm-sensors@lm-sensors.org
2958S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002959F: Documentation/hwmon/coretemp
2960F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02002961
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002963M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964W: http://www.fi.muni.cz/~kas/cosa/
2965S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002966F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967
Florian Fainelli4371ee32009-06-01 02:43:17 -07002968CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002969M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07002970L: netdev@vger.kernel.org
2971S: Maintained
Jeff Kirsherb544dba2011-06-14 12:56:50 -07002972F: drivers/net/ethernet/ti/cpmac.c
Florian Fainelli4371ee32009-06-01 02:43:17 -07002973
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974CPU FREQUENCY DRIVERS
Joe Perches9c3646d2015-06-25 15:02:00 -07002975M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
viresh kumar45c009a2013-04-26 12:53:16 +00002976M: Viresh Kumar <viresh.kumar@linaro.org>
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002977L: linux-pm@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978S: Maintained
Viresh Kumar27209d92013-05-29 12:23:14 +05302979T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2980T: git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
Joe Perches679655d2009-04-07 20:44:32 -07002981F: drivers/cpufreq/
2982F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983
Viresh Kumar8a67f0e2013-04-01 12:57:49 +00002984CPU FREQUENCY DRIVERS - ARM BIG LITTLE
2985M: Viresh Kumar <viresh.kumar@linaro.org>
Sudeep Holla171d0ba2014-02-11 11:42:32 +00002986M: Sudeep Holla <sudeep.holla@arm.com>
Viresh Kumar8a67f0e2013-04-01 12:57:49 +00002987L: linux-pm@vger.kernel.org
2988W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php
2989S: Maintained
2990F: drivers/cpufreq/arm_big_little.h
2991F: drivers/cpufreq/arm_big_little.c
2992F: drivers/cpufreq/arm_big_little_dt.c
2993
Lorenzo Pieralisi14d2c342013-06-12 17:40:01 +02002994CPUIDLE DRIVER - ARM BIG LITTLE
Joe Perchesb75f0052014-03-03 15:38:37 -08002995M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2996M: Daniel Lezcano <daniel.lezcano@linaro.org>
2997L: linux-pm@vger.kernel.org
2998L: linux-arm-kernel@lists.infradead.org
Joe Perchescea83212014-03-03 15:38:38 -08002999T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
Joe Perchesb75f0052014-03-03 15:38:37 -08003000S: Maintained
3001F: drivers/cpuidle/cpuidle-big_little.c
Lorenzo Pieralisi14d2c342013-06-12 17:40:01 +02003002
Bartlomiej Zolnierkiewicz0c570c12014-12-02 16:41:35 +01003003CPUIDLE DRIVER - ARM EXYNOS
3004M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
3005M: Daniel Lezcano <daniel.lezcano@linaro.org>
3006M: Kukjin Kim <kgene@kernel.org>
3007L: linux-pm@vger.kernel.org
3008L: linux-samsung-soc@vger.kernel.org
3009S: Supported
3010F: drivers/cpuidle/cpuidle-exynos.c
3011F: arch/arm/mach-exynos/pm.c
3012
Daniel Lezcanoa8e39c32013-04-26 11:05:44 +00003013CPUIDLE DRIVERS
Joe Perches9c3646d2015-06-25 15:02:00 -07003014M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Daniel Lezcanoa8e39c32013-04-26 11:05:44 +00003015M: Daniel Lezcano <daniel.lezcano@linaro.org>
3016L: linux-pm@vger.kernel.org
3017S: Maintained
Joe Perchescea83212014-03-03 15:38:38 -08003018T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
Daniel Lezcanoa8e39c32013-04-26 11:05:44 +00003019F: drivers/cpuidle/*
3020F: include/linux/cpuidle.h
3021
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003023M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003025F: arch/x86/kernel/cpuid.c
3026F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02003028CPU POWER MONITORING SUBSYSTEM
Jiri Slabyd8130622015-07-17 16:23:20 -07003029M: Thomas Renninger <trenn@suse.com>
Thomas Renninger103f1792014-07-22 16:06:01 +02003030L: linux-pm@vger.kernel.org
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02003031S: Maintained
Joe Perches14430812013-09-11 14:23:50 -07003032F: tools/power/cpupower/
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02003033
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01003035W: http://sourceforge.net/projects/cramfs/
Michael Opdenacker54886a72013-11-12 15:08:35 -08003036S: Orphan / Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07003037F: Documentation/filesystems/cramfs.txt
3038F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039
3040CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003041M: Mikael Starvik <starvik@axis.com>
3042M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02003043L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044W: http://developer.axis.com
3045S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003046F: arch/cris/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003047F: drivers/tty/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048
3049CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07003050M: Herbert Xu <herbert@gondor.apana.org.au>
3051M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003053T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003055F: Documentation/crypto/
Stephan Mueller2ca87a12015-03-06 21:36:21 +01003056F: Documentation/DocBook/crypto-API.tmpl
Joe Perches679655d2009-04-07 20:44:32 -07003057F: arch/*/crypto/
3058F: crypto/
3059F: drivers/crypto/
3060F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061
Neil Horman5b07bd52009-02-05 16:03:04 +11003062CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003063M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11003064L: linux-crypto@vger.kernel.org
3065S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07003066F: crypto/ansi_cprng.c
3067F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11003068
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01003069CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07003070M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01003071S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003072F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01003073
Solomon Peachya910e4a2013-05-24 20:04:38 -04003074CW1200 WLAN driver
Joe Perchesb75f0052014-03-03 15:38:37 -08003075M: Solomon Peachy <pizza@shaftnet.org>
3076S: Maintained
3077F: drivers/net/wireless/cw1200/
Solomon Peachya910e4a2013-05-24 20:04:38 -04003078
Hans Verkuil6d8425b12008-05-05 18:25:22 -03003079CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03003080M: Andy Walls <awalls@md.metrocast.net>
Joe Perches7b212ed2014-12-10 15:51:24 -08003081L: ivtv-devel@ivtvdriver.org (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003082L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003083T: git git://linuxtv.org/media_tree.git
Hans Verkuil6d8425b12008-05-05 18:25:22 -03003084W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07003085W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b12008-05-05 18:25:22 -03003086S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003087F: Documentation/video4linux/cx18.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03003088F: drivers/media/pci/cx18/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02003089F: include/uapi/linux/ivtv*
Hans Verkuil6d8425b12008-05-05 18:25:22 -03003090
Hans Verkuil3f101d92012-11-23 07:00:02 -03003091CX2341X MPEG ENCODER HELPER MODULE
3092M: Hans Verkuil <hverkuil@xs4all.nl>
3093L: linux-media@vger.kernel.org
3094T: git git://linuxtv.org/media_tree.git
3095W: http://linuxtv.org
3096S: Maintained
Cesar Eduardo Barrosc368360b2013-03-02 21:53:42 -03003097F: drivers/media/common/cx2341x*
Hans Verkuil3f101d92012-11-23 07:00:02 -03003098F: include/media/cx2341x*
3099
Patrick Boettcherb8fe6e22015-04-28 02:53:13 -03003100CX24120 MEDIA DRIVER
3101M: Jemma Denson <jdenson@gmail.com>
3102M: Patrick Boettcher <patrick.boettcher@posteo.de>
3103L: linux-media@vger.kernel.org
3104W: http://linuxtv.org/
3105Q: http://patchwork.linuxtv.org/project/linux-media/list/
3106S: Maintained
3107F: drivers/media/dvb-frontends/cx24120*
3108
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02003109CX88 VIDEO4LINUX DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02003110M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02003111L: linux-media@vger.kernel.org
3112W: http://linuxtv.org
3113T: git git://linuxtv.org/media_tree.git
3114S: Odd fixes
3115F: Documentation/video4linux/cx88/
3116F: drivers/media/pci/cx88/
Knut Petersen9fa68ea2005-09-09 13:04:56 -07003117
Antti Palosaari91952bc2012-10-01 12:28:46 -03003118CXD2820R MEDIA DRIVER
3119M: Antti Palosaari <crope@iki.fi>
3120L: linux-media@vger.kernel.org
3121W: http://linuxtv.org/
3122W: http://palosaari.fi/linux/
3123Q: http://patchwork.linuxtv.org/project/linux-media/list/
3124T: git git://linuxtv.org/anttip/media_tree.git
3125S: Maintained
3126F: drivers/media/dvb-frontends/cxd2820r*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07003127
Steve Wisee5ec3782008-05-20 14:06:33 -07003128CXGB3 ETHERNET DRIVER (CXGB3)
Divy Le Raycdc99232013-11-11 15:01:39 -08003129M: Santosh Raspatur <santosh@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07003130L: netdev@vger.kernel.org
3131W: http://www.chelsio.com
3132S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07003133F: drivers/net/ethernet/chelsio/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07003134
Anish Bhattd8ae3c32014-11-04 15:19:22 -08003135CXGB3 ISCSI DRIVER (CXGB3I)
Joe Perches49e7d9d2015-04-15 16:17:31 -07003136M: Karen Xie <kxie@chelsio.com>
3137L: linux-scsi@vger.kernel.org
3138W: http://www.chelsio.com
3139S: Supported
3140F: drivers/scsi/cxgbi/cxgb3i
Anish Bhattd8ae3c32014-11-04 15:19:22 -08003141
Steve Wisee5ec3782008-05-20 14:06:33 -07003142CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07003143M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003144L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07003145W: http://www.openfabrics.org
3146S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003147F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07003148
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003149CXGB4 ETHERNET DRIVER (CXGB4)
Dimitris Michailidis56f16c72014-06-13 14:11:14 -07003150M: Hariprasad S <hariprasad@chelsio.com>
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003151L: netdev@vger.kernel.org
3152W: http://www.chelsio.com
3153S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07003154F: drivers/net/ethernet/chelsio/cxgb4/
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003155
Anish Bhattd8ae3c32014-11-04 15:19:22 -08003156CXGB4 ISCSI DRIVER (CXGB4I)
Joe Perches49e7d9d2015-04-15 16:17:31 -07003157M: Karen Xie <kxie@chelsio.com>
3158L: linux-scsi@vger.kernel.org
3159W: http://www.chelsio.com
3160S: Supported
3161F: drivers/scsi/cxgbi/cxgb4i
Anish Bhattd8ae3c32014-11-04 15:19:22 -08003162
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003163CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3164M: Steve Wise <swise@chelsio.com>
3165L: linux-rdma@vger.kernel.org
3166W: http://www.openfabrics.org
3167S: Supported
3168F: drivers/infiniband/hw/cxgb4/
3169
Casey Leedom5c20a5c2010-07-19 17:55:33 -07003170CXGB4VF ETHERNET DRIVER (CXGB4VF)
3171M: Casey Leedom <leedom@chelsio.com>
3172L: netdev@vger.kernel.org
3173W: http://www.chelsio.com
3174S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07003175F: drivers/net/ethernet/chelsio/cxgb4vf/
Casey Leedom5c20a5c2010-07-19 17:55:33 -07003176
Ian Munsiea9282d02014-10-08 19:55:05 +11003177CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3178M: Ian Munsie <imunsie@au1.ibm.com>
3179M: Michael Neuling <mikey@neuling.org>
3180L: linuxppc-dev@lists.ozlabs.org
3181S: Supported
3182F: drivers/misc/cxl/
Michael Neulingec249dd2015-05-27 16:07:16 +10003183F: include/misc/cxl*
Ian Munsiea9282d02014-10-08 19:55:05 +11003184F: include/uapi/misc/cxl.h
3185F: Documentation/powerpc/cxl.txt
3186F: Documentation/powerpc/cxl.txt
3187F: Documentation/ABI/testing/sysfs-class-cxl
3188
Matthew R. Ochs11f43ae2015-10-21 15:15:22 -05003189CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
3190M: Manoj N. Kumar <manoj@linux.vnet.ibm.com>
3191M: Matthew R. Ochs <mrochs@linux.vnet.ibm.com>
3192L: linux-scsi@vger.kernel.org
3193S: Supported
3194F: drivers/scsi/cxlflash/
3195F: include/uapi/scsi/cxlflash_ioctls.h
3196F: Documentation/powerpc/cxlflash.txt
3197
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08003198STMMAC ETHERNET DRIVER
3199M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
3200L: netdev@vger.kernel.org
3201W: http://www.stlinux.com
3202S: Supported
Jeff Kirsher7ac66532011-05-16 00:05:19 -07003203F: drivers/net/ethernet/stmicro/stmmac/
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08003204
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003206M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07003207L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208W: http://www.arm.linux.org.uk/
3209S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09003210F: drivers/video/fbdev/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07003211
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08003214S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07003215F: drivers/tty/cyclades.c
Joe Perches679655d2009-04-07 20:44:32 -07003216F: include/linux/cyclades.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003217F: include/uapi/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218
3219CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08003221S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003222F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223
Antti Palosaari402f6ae2013-04-09 21:30:41 -03003224CYPRESS_FIRMWARE MEDIA DRIVER
3225M: Antti Palosaari <crope@iki.fi>
3226L: linux-media@vger.kernel.org
3227W: http://linuxtv.org/
3228W: http://palosaari.fi/linux/
3229Q: http://patchwork.linuxtv.org/project/linux-media/list/
3230T: git git://linuxtv.org/anttip/media_tree.git
3231S: Maintained
3232F: drivers/media/common/cypress_firmware*
3233
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08003234CYTTSP TOUCHSCREEN DRIVER
Javier Martinez Canillasbe9a6f42013-08-29 08:43:58 -07003235M: Ferruh Yigit <fery@cypress.com>
Joe Perches63059022012-06-07 14:21:10 -07003236L: linux-input@vger.kernel.org
Javier Martinez Canillasbe9a6f42013-08-29 08:43:58 -07003237S: Supported
Joe Perches63059022012-06-07 14:21:10 -07003238F: drivers/input/touchscreen/cyttsp*
3239F: include/linux/input/cyttsp.h
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08003240
Joshua Kinardaaaf5fb2015-02-16 16:00:26 -08003241DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3242M: Joshua Kinard <kumba@gentoo.org>
3243S: Maintained
3244F: drivers/rtc/rtc-ds1685.c
3245F: include/linux/rtc/ds1685.h
3246
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07003248M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249W: http://yaina.de/jreuter/
3250W: http://www.qsl.net/dl1bke/
3251L: linux-hams@vger.kernel.org
3252S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003253F: net/ax25/af_ax25.c
3254F: net/ax25/ax25_dev.c
3255F: net/ax25/ax25_ds_*
3256F: net/ax25/ax25_in.c
3257F: net/ax25/ax25_out.c
3258F: net/ax25/ax25_timer.c
3259F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003261DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003262L: netdev@vger.kernel.org
Joe Perches5ff77422011-05-24 17:13:22 -07003263S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003264F: Documentation/networking/dmfe.txt
Joe Perches0f04e2a2012-01-10 15:08:56 -08003265F: drivers/net/ethernet/dec/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003266
3267DC390/AM53C974 SCSI driver
Jiri Slabyd8130622015-07-17 16:23:20 -07003268M: Hannes Reinecke <hare@suse.com>
Hannes Reinecke71bd8492014-11-24 15:37:30 +01003269L: linux-scsi@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003270S: Maintained
Hannes Reinecke71bd8492014-11-24 15:37:30 +01003271F: drivers/scsi/am53c974.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003272
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273DC395x SCSI driver
Oliver Neukum61eee9a2012-08-01 14:32:55 +02003274M: Oliver Neukum <oliver@neukum.org>
Joe Perches8b58be82009-07-29 15:04:30 -07003275M: Ali Akcaagac <aliakc@web.de>
3276M: Jamie Lenehan <lenehan@twibble.org>
Randy Dunlapf5df58812006-07-14 00:24:29 -07003277L: dc395x@twibble.org
Joe Perchescf015e92014-02-25 15:01:47 -08003278W: http://twibble.org/dist/dc395x/
3279W: http://lists.twibble.org/mailman/listinfo/dc395x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003281F: Documentation/scsi/dc395x.txt
3282F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07003284DCCP PROTOCOL
Arnaldo Carvalho de Meloa89d0302011-02-26 16:28:54 +00003285M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07003286L: dccp@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00003287W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07003288S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003289F: include/linux/dccp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003290F: include/uapi/linux/dccp.h
Joe Perches679655d2009-04-07 20:44:32 -07003291F: include/linux/tfrc.h
3292F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07003293
Linus Torvalds1da177e2005-04-16 15:20:36 -07003294DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07003295W: http://linux-decnet.sourceforge.net
3296L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00003297S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003298F: Documentation/networking/decnet.txt
3299F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300
Maciej W. Rozyckiebff05b2014-04-06 23:04:00 +01003301DECSTATION PLATFORM SUPPORT
3302M: "Maciej W. Rozycki" <macro@linux-mips.org>
3303L: linux-mips@linux-mips.org
3304W: http://www.linux-mips.org/wiki/DECstation
3305S: Maintained
3306F: arch/mips/dec/
3307F: arch/mips/include/asm/dec/
3308F: arch/mips/include/asm/mach-dec/
3309
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003311M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312S: Maintained
Jeff Kirsher33f810b2011-07-31 00:06:29 -07003313F: drivers/net/fddi/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314
Matthew Garrettad8f07c2009-01-07 18:08:56 -08003315DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003316M: Matthew Garrett <mjg59@srcf.ucam.org>
Pali Rohárcdbff612015-03-29 15:38:50 +02003317M: Pali Rohár <pali.rohar@gmail.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05003318L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08003319S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003320F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08003321
Pali Rohár817a5cd2015-06-06 10:23:28 +02003322DELL LAPTOP RBTN DRIVER
3323M: Pali Rohár <pali.rohar@gmail.com>
3324S: Maintained
3325F: drivers/platform/x86/dell-rbtn.*
3326
Pali Rohárcdbff612015-03-29 15:38:50 +02003327DELL LAPTOP FREEFALL DRIVER
3328M: Pali Rohár <pali.rohar@gmail.com>
3329S: Maintained
3330F: drivers/platform/x86/dell-smo8800.c
3331
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332DELL LAPTOP SMM DRIVER
Pali Rohára5afba12015-05-14 13:16:36 +02003333M: Pali Rohár <pali.rohar@gmail.com>
Guenter Roeckef3522f2014-12-21 20:54:37 +01003334S: Maintained
Pali Rohára5afba12015-05-14 13:16:36 +02003335F: drivers/hwmon/dell-smm-hwmon.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003336F: include/uapi/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337
Doug Warzecha90563ec2005-09-06 15:17:15 -07003338DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07003339M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07003340S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003341F: Documentation/dcdbas.txt
3342F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07003343
Matthew Garrett0b3f6102009-01-09 20:17:11 +00003344DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003345M: Matthew Garrett <mjg59@srcf.ucam.org>
Pali Rohárcdbff612015-03-29 15:38:50 +02003346M: Pali Rohár <pali.rohar@gmail.com>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00003347S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07003348F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00003349
Paul Zimmerman5efc75e2013-03-11 17:48:03 -07003350DESIGNWARE USB2 DRD IP DRIVER
Paul Zimmerman16272ae2015-01-15 20:14:10 +00003351M: John Youn <johnyoun@synopsys.com>
Paul Zimmerman5efc75e2013-03-11 17:48:03 -07003352L: linux-usb@vger.kernel.org
Paul Zimmerman18f340f2014-09-19 14:49:36 -07003353T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Paul Zimmerman5efc75e2013-03-11 17:48:03 -07003354S: Maintained
Paul Zimmerman197ba5f42014-01-13 13:50:09 -08003355F: drivers/usb/dwc2/
Paul Zimmerman5efc75e2013-03-11 17:48:03 -07003356
Felipe Balbi94ab23d2011-08-19 18:10:59 +03003357DESIGNWARE USB3 DRD IP DRIVER
3358M: Felipe Balbi <balbi@ti.com>
3359L: linux-usb@vger.kernel.org
3360L: linux-omap@vger.kernel.org
3361T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3362S: Maintained
3363F: drivers/usb/dwc3/
3364
Johannes Berg833c9542014-09-12 09:01:56 +02003365DEVICE COREDUMP (DEV_COREDUMP)
3366M: Johannes Berg <johannes@sipsolutions.net>
3367L: linux-kernel@vger.kernel.org
3368S: Maintained
3369F: drivers/base/devcoredump.c
3370F: include/linux/devcoredump.h
3371
Kyungmin Park89d07762012-01-10 15:09:09 -08003372DEVICE FREQUENCY (DEVFREQ)
3373M: MyungJoo Ham <myungjoo.ham@samsung.com>
3374M: Kyungmin Park <kyungmin.park@samsung.com>
MyungJoo Ham88476d32013-03-14 17:28:24 +09003375L: linux-pm@vger.kernel.org
Kyungmin Park89d07762012-01-10 15:09:09 -08003376S: Maintained
3377F: drivers/devfreq/
3378
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07003380M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07003382S: Maintained
3383
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003384DEVICE-MAPPER (LVM)
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01003385M: Alasdair Kergon <agk@redhat.com>
Alasdair G Kergon8504eed2013-07-10 23:41:19 +01003386M: Mike Snitzer <snitzer@redhat.com>
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01003387M: dm-devel@redhat.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003388L: dm-devel@redhat.com
3389W: http://sources.redhat.com/dm
Joe Perches8a6e2532010-03-05 13:43:11 -08003390Q: http://patchwork.kernel.org/project/dm-devel/list/
Mike Snitzer41d35d22013-11-04 19:42:38 -05003391T: git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01003392T: quilt http://people.redhat.com/agk/patches/linux/editing/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003393S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003394F: Documentation/device-mapper/
3395F: drivers/md/dm*
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01003396F: drivers/md/persistent-data/
Joe Perches679655d2009-04-07 20:44:32 -07003397F: include/linux/device-mapper.h
3398F: include/linux/dm-*.h
Alasdair G Kergon8504eed2013-07-10 23:41:19 +01003399F: include/uapi/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003400
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003401DIALOG SEMICONDUCTOR DRIVERS
3402M: Support Opensource <support.opensource@diasemi.com>
3403W: http://www.dialog-semiconductor.com/products
3404S: Supported
3405F: Documentation/hwmon/da90??
3406F: drivers/gpio/gpio-da90??.c
3407F: drivers/hwmon/da90??-hwmon.c
Adam Thomson7be72c22015-02-18 14:08:37 +00003408F: drivers/iio/adc/da91??-*.c
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003409F: drivers/input/misc/da90??_onkey.c
3410F: drivers/input/touchscreen/da9052_tsi.c
3411F: drivers/leds/leds-da90??.c
3412F: drivers/mfd/da903x.c
3413F: drivers/mfd/da90??-*.c
Adam Thomson7be72c22015-02-18 14:08:37 +00003414F: drivers/mfd/da91??-*.c
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003415F: drivers/power/da9052-battery.c
Adam Thomson7be72c22015-02-18 14:08:37 +00003416F: drivers/power/da91??-*.c
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003417F: drivers/regulator/da903x.c
3418F: drivers/regulator/da9???-regulator.[ch]
3419F: drivers/rtc/rtc-da90??.c
3420F: drivers/video/backlight/da90??_bl.c
3421F: drivers/watchdog/da90??_wdt.c
3422F: include/linux/mfd/da903x.h
3423F: include/linux/mfd/da9052/
3424F: include/linux/mfd/da9055/
3425F: include/linux/mfd/da9063/
Adam Thomson7be72c22015-02-18 14:08:37 +00003426F: include/linux/mfd/da9150/
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003427F: include/sound/da[79]*.h
3428F: sound/soc/codecs/da[79]*.[ch]
3429
Lidza Louina599aa692013-09-23 16:13:15 -04003430DIGI NEO AND CLASSIC PCI PRODUCTS
3431M: Lidza Louina <lidza.louina@gmail.com>
Mark Hounschell542f3d52014-04-25 14:32:15 -04003432M: Mark Hounschell <markh@compro.net>
Lidza Louina599aa692013-09-23 16:13:15 -04003433L: driverdev-devel@linuxdriverproject.org
3434S: Maintained
3435F: drivers/staging/dgnc/
3436
3437DIGI EPCA PCI PRODUCTS
3438M: Lidza Louina <lidza.louina@gmail.com>
Daeseok Youn6d825f72014-07-12 01:25:42 +09003439M: Daeseok Youn <daeseok.youn@gmail.com>
Lidza Louina599aa692013-09-23 16:13:15 -04003440L: driverdev-devel@linuxdriverproject.org
3441S: Maintained
3442F: drivers/staging/dgap/
3443
Guenter Roeck335d7c52011-01-26 11:45:49 -08003444DIOLAN U2C-12 I2C DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07003445M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck335d7c52011-01-26 11:45:49 -08003446L: linux-i2c@vger.kernel.org
3447S: Maintained
3448F: drivers/i2c/busses/i2c-diolan-u2c.c
3449
Matthew Wilcoxd475c632015-02-16 15:58:56 -08003450DIRECT ACCESS (DAX)
3451M: Matthew Wilcox <willy@linux.intel.com>
3452L: linux-fsdevel@vger.kernel.org
3453S: Supported
3454F: fs/dax.c
3455
Randy Dunlape7839f22008-10-12 16:11:45 -07003456DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07003457M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04003458S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003459F: Documentation/filesystems/dnotify.txt
3460F: fs/notify/dnotify/
3461F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462
3463DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07003464M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
3466W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
3467W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
3468S: Maintained
3469
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003470DISKQUOTA
Jiri Slabyd8130622015-07-17 16:23:20 -07003471M: Jan Kara <jack@suse.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003473F: Documentation/filesystems/quota.txt
3474F: fs/quota/
3475F: include/linux/quota*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003476F: include/uapi/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003477
Bernie Thompson702686a2012-03-01 13:52:13 -08003478DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
3479M: Bernie Thompson <bernie@plugable.com>
3480L: linux-fbdev@vger.kernel.org
3481S: Maintained
3482W: http://plugable.com/category/projects/udlfb/
Jingoo Han8a61f012014-07-01 15:36:01 +09003483F: drivers/video/fbdev/udlfb.c
Bernie Thompson702686a2012-03-01 13:52:13 -08003484F: include/video/udlfb.h
3485F: Documentation/fb/udlfb.txt
3486
Randy Dunlape7839f22008-10-12 16:11:45 -07003487DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07003488M: Christine Caulfield <ccaulfie@redhat.com>
3489M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04003490L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003491W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07003492T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003493S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003494F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003495
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05303496DMA BUFFER SHARING FRAMEWORK
3497M: Sumit Semwal <sumit.semwal@linaro.org>
3498S: Maintained
3499L: linux-media@vger.kernel.org
3500L: dri-devel@lists.freedesktop.org
Randy Dunlap8ada6d22014-10-13 15:51:19 -07003501L: linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
Maarten Lankhorst35fac7e2014-07-01 12:57:08 +02003502F: drivers/dma-buf/
Joe Perchese46d12c2014-08-08 14:26:16 -07003503F: include/linux/dma-buf*
3504F: include/linux/reservation.h
3505F: include/linux/*fence.h
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05303506F: Documentation/dma-buf-sharing.txt
3507T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
3508
Dan Williamsb3e5f262007-08-07 10:26:35 -07003509DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Dan Williams4abed0a2011-02-14 00:42:08 -08003510M: Vinod Koul <vinod.koul@intel.com>
Vinod Koul17b59562013-10-22 12:58:56 +05303511L: dmaengine@vger.kernel.org
3512Q: https://patchwork.kernel.org/project/linux-dmaengine/list/
Dan Williams08223d82014-08-19 06:07:56 -07003513S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003514F: drivers/dma/
Vinod Koul0ce3c062014-12-22 20:57:13 +05303515F: include/linux/dmaengine.h
Vinod Koul979a281e2014-11-06 11:21:17 +05303516F: Documentation/dmaengine/
3517T: git git://git.infradead.org/users/vkoul/slave-dma.git
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003518
Juerg Haefligerb8250372007-06-09 10:11:16 -04003519DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003520M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04003521L: lm-sensors@lm-sensors.org
3522S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003523F: Documentation/hwmon/dme1737
3524F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04003525
Jean Delvare1f31e1b2015-03-25 15:55:31 -07003526DMI/SMBIOS SUPPORT
Jiri Slabyd8130622015-07-17 16:23:20 -07003527M: Jean Delvare <jdelvare@suse.com>
Jean Delvare1f31e1b2015-03-25 15:55:31 -07003528S: Maintained
Jean Delvared4aeef932015-06-25 09:06:56 +02003529T: quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
Ivan Khoronzhukd7f96f972015-06-25 09:06:56 +02003530F: Documentation/ABI/testing/sysfs-firmware-dmi-tables
Jean Delvare1f31e1b2015-03-25 15:55:31 -07003531F: drivers/firmware/dmi-id.c
3532F: drivers/firmware/dmi_scan.c
3533F: include/linux/dmi.h
3534
Joe Perches7d2c86b2009-04-07 20:59:01 -07003535DOCUMENTATION
Jonathan Corbetad3118b2014-10-17 08:59:26 -04003536M: Jonathan Corbet <corbet@lwn.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02003537L: linux-doc@vger.kernel.org
3538S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003539F: Documentation/
Jonathan Corbet42f41ec2015-09-11 13:23:36 -06003540F: scripts/docproc.c
3541F: scripts/kernel-doc*
Randy Dunlap97be0782014-06-27 18:28:56 -07003542X: Documentation/ABI/
3543X: Documentation/devicetree/
Jonathan Corbet933a46b2015-03-26 10:25:17 -06003544X: Documentation/acpi
3545X: Documentation/power
3546X: Documentation/spi
Jonathan Corbet6c121172015-07-24 15:08:14 +02003547X: Documentation/DocBook/media
Jonathan Corbetc51edfb2015-09-24 16:05:28 -06003548T: git git://git.lwn.net/linux.git docs-next
Randy Dunlapabbaeff2008-07-04 09:59:57 -07003549
Linus Torvalds1da177e2005-04-16 15:20:36 -07003550DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003551M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552L: blinux-list@redhat.com
3553S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003554F: drivers/char/dtlk.c
3555F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003556
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003557DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003558M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003559L: linux-scsi@vger.kernel.org
3560W: http://www.adaptec.com/
3561S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003562F: drivers/scsi/dpt*
3563F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003564
Philipp Reisnerb411b362009-09-25 16:07:19 -07003565DRBD DRIVER
Joe Perches28b8e8d2010-03-23 13:35:20 -07003566P: Philipp Reisner
3567P: Lars Ellenberg
3568M: drbd-dev@lists.linbit.com
3569L: drbd-user@lists.linbit.com
3570W: http://www.drbd.org
3571T: git git://git.drbd.org/linux-2.6-drbd.git drbd
3572T: git git://git.drbd.org/drbd-8.3.git
3573S: Supported
3574F: drivers/block/drbd/
3575F: lib/lru_cache.c
3576F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07003577
Wolfram Sangdc7dfcd2015-04-23 17:20:54 +02003578DRIVER CORE, KOBJECTS, DEBUGFS, KERNFS AND SYSFS
Greg KH879a5a02012-01-31 20:02:00 -08003579M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perches08deed12012-03-23 15:01:57 -07003580T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003582F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07003583F: drivers/base/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07003584F: fs/debugfs/
Wolfram Sangdc7dfcd2015-04-23 17:20:54 +02003585F: fs/kernfs/
3586F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07003587F: include/linux/debugfs.h
Wolfram Sangdc7dfcd2015-04-23 17:20:54 +02003588F: include/linux/kobj*
Joe Perches679655d2009-04-07 20:44:32 -07003589F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590
3591DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003592M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04003593L: dri-devel@lists.freedesktop.org
Alex Deucherb0447882014-02-18 10:03:44 -05003594T: git git://people.freedesktop.org/~airlied/linux
Linus Torvalds1da177e2005-04-16 15:20:36 -07003595S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003596F: drivers/gpu/drm/
Daniel Vetter433e3b32014-05-26 23:44:42 +02003597F: drivers/gpu/vga/
Joe Perches850e9412010-08-09 17:20:45 -07003598F: include/drm/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003599F: include/uapi/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003600
Alex Deucher566f5932014-02-18 10:03:43 -05003601RADEON DRM DRIVERS
3602M: Alex Deucher <alexander.deucher@amd.com>
3603M: Christian König <christian.koenig@amd.com>
3604L: dri-devel@lists.freedesktop.org
3605T: git git://people.freedesktop.org/~agd5f/linux
3606S: Supported
3607F: drivers/gpu/drm/radeon/
Alex Deucher566f5932014-02-18 10:03:43 -05003608F: include/uapi/drm/radeon*
3609
Thierry Reding03e255b2014-04-04 08:59:18 +02003610DRM PANEL DRIVERS
3611M: Thierry Reding <thierry.reding@gmail.com>
3612L: dri-devel@lists.freedesktop.org
3613T: git git://anongit.freedesktop.org/tegra/linux.git
3614S: Maintained
3615F: drivers/gpu/drm/drm_panel.c
3616F: drivers/gpu/drm/panel/
3617F: include/drm/drm_panel.h
3618F: Documentation/devicetree/bindings/panel/
3619
Chris Wilson8daf7472010-09-28 14:07:26 +01003620INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
Daniel Vettercbce7102014-08-28 12:17:42 +02003621M: Daniel Vetter <daniel.vetter@intel.com>
Daniel Vetter47f95642014-01-07 09:24:31 +01003622M: Jani Nikula <jani.nikula@linux.intel.com>
Daniel Vetter362132d2013-03-13 22:28:46 +01003623L: intel-gfx@lists.freedesktop.org
Chris Wilson8daf7472010-09-28 14:07:26 +01003624L: dri-devel@lists.freedesktop.org
Daniel Vetter47f95642014-01-07 09:24:31 +01003625Q: http://patchwork.freedesktop.org/project/intel-gfx/
Daniel Vetter89258a92014-02-04 19:57:38 +01003626T: git git://anongit.freedesktop.org/drm-intel
Chris Wilson8daf7472010-09-28 14:07:26 +01003627S: Supported
Joe Perches14430812013-09-11 14:23:50 -07003628F: drivers/gpu/drm/i915/
Chris Wilson8daf7472010-09-28 14:07:26 +01003629F: include/drm/i915*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003630F: include/uapi/drm/i915*
Chris Wilson8daf7472010-09-28 14:07:26 +01003631
Boris BREZILLON99763bb2015-10-13 11:55:42 +02003632DRM DRIVERS FOR ATMEL HLCDC
3633M: Boris Brezillon <boris.brezillon@free-electrons.com>
3634L: dri-devel@lists.freedesktop.org
3635S: Supported
3636F: drivers/gpu/drm/atmel-hlcdc/
3637F: Documentation/devicetree/bindings/drm/atmel/
3638
Kyungmin Park398a6d42011-11-02 11:33:16 +09003639DRM DRIVERS FOR EXYNOS
3640M: Inki Dae <inki.dae@samsung.com>
Inki Daef1501302012-01-17 14:08:55 +09003641M: Joonyoung Shim <jy0922.shim@samsung.com>
3642M: Seung-Woo Kim <sw0312.kim@samsung.com>
3643M: Kyungmin Park <kyungmin.park@samsung.com>
Kyungmin Park398a6d42011-11-02 11:33:16 +09003644L: dri-devel@lists.freedesktop.org
Inki Dae25a58032012-10-30 16:08:05 +09003645T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
Kyungmin Park398a6d42011-11-02 11:33:16 +09003646S: Supported
Joe Perches14430812013-09-11 14:23:50 -07003647F: drivers/gpu/drm/exynos/
Kyungmin Park398a6d42011-11-02 11:33:16 +09003648F: include/drm/exynos*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003649F: include/uapi/drm/exynos*
Kyungmin Park398a6d42011-11-02 11:33:16 +09003650
Jianwei Wangb55a1b92015-08-19 22:26:33 -04003651DRM DRIVERS FOR FREESCALE DCU
3652M: Jianwei Wang <jianwei.wang.chn@gmail.com>
3653M: Alison Wang <alison.wang@freescale.com>
3654L: dri-devel@lists.freedesktop.org
3655S: Supported
3656F: drivers/gpu/drm/fsl-dcu/
3657F: Documentation/devicetree/bindings/video/fsl,dcu.txt
3658F: Documentation/devicetree/bindings/panel/nec,nl4827hc19_05b.txt
3659
Philipp Zabel0a3d7752014-11-24 16:33:35 +01003660DRM DRIVERS FOR FREESCALE IMX
3661M: Philipp Zabel <p.zabel@pengutronix.de>
3662L: dri-devel@lists.freedesktop.org
3663S: Maintained
3664F: drivers/gpu/drm/imx/
3665F: Documentation/devicetree/bindings/drm/imx/
3666
Patrik Jakobssonba2199a2015-10-12 23:14:44 +02003667DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
3668M: Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
3669L: dri-devel@lists.freedesktop.org
3670T: git git://github.com/patjak/drm-gma500
3671S: Maintained
3672F: drivers/gpu/drm/gma500
3673F: include/drm/gma500*
3674
Thierry Redingbd3b49f2012-11-28 20:45:28 +01003675DRM DRIVERS FOR NVIDIA TEGRA
Thierry Redinga5ad7a62013-05-19 14:19:21 +02003676M: Thierry Reding <thierry.reding@gmail.com>
3677M: Terje Bergström <tbergstrom@nvidia.com>
Thierry Redingbd3b49f2012-11-28 20:45:28 +01003678L: dri-devel@lists.freedesktop.org
3679L: linux-tegra@vger.kernel.org
Thierry Redinga5ad7a62013-05-19 14:19:21 +02003680T: git git://anongit.freedesktop.org/tegra/linux.git
Stephen Warrenadabdb02013-09-13 13:00:57 -06003681S: Supported
Thierry Redingdee82682013-10-09 10:32:49 +02003682F: drivers/gpu/drm/tegra/
Thierry Redinga5ad7a62013-05-19 14:19:21 +02003683F: drivers/gpu/host1x/
Thierry Redinge1e90642013-09-24 13:59:01 +02003684F: include/linux/host1x.h
Thierry Redinga5ad7a62013-05-19 14:19:21 +02003685F: include/uapi/drm/tegra_drm.h
Thierry Redingbd3b49f2012-11-28 20:45:28 +01003686F: Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt
3687
Laurent Pincharta284e9d2014-08-19 23:04:31 +02003688DRM DRIVERS FOR RENESAS
3689M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
3690L: dri-devel@lists.freedesktop.org
3691L: linux-sh@vger.kernel.org
3692T: git git://people.freedesktop.org/~airlied/linux
3693S: Supported
3694F: drivers/gpu/drm/rcar-du/
3695F: drivers/gpu/drm/shmobile/
Laurent Pincharta284e9d2014-08-19 23:04:31 +02003696F: include/linux/platform_data/shmob_drm.h
3697
Heiko Stuebner625e0342015-04-20 00:59:50 +02003698DRM DRIVERS FOR ROCKCHIP
3699M: Mark Yao <mark.yao@rock-chips.com>
3700L: dri-devel@lists.freedesktop.org
3701S: Maintained
3702F: drivers/gpu/drm/rockchip/
3703F: Documentation/devicetree/bindings/video/rockchip*
3704
Benjamin Gaignard7f11c472015-08-14 15:35:24 -07003705DRM DRIVERS FOR STI
3706M: Benjamin Gaignard <benjamin.gaignard@linaro.org>
3707M: Vincent Abriou <vincent.abriou@st.com>
3708L: dri-devel@lists.freedesktop.org
3709T: git http://git.linaro.org/people/benjamin.gaignard/kernel.git
3710S: Maintained
3711F: drivers/gpu/drm/sti
3712F: Documentation/devicetree/bindings/gpu/st,stih4xx.txt
3713
Alexey Klimov598df1a2012-11-28 17:16:32 -03003714DSBR100 USB FM RADIO DRIVER
3715M: Alexey Klimov <klimov.linux@gmail.com>
3716L: linux-media@vger.kernel.org
3717T: git git://linuxtv.org/media_tree.git
3718S: Maintained
3719F: drivers/media/radio/dsbr100.c
3720
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003722M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08003723L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003724S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003725F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003726
Hans Verkuilcc11b142015-04-25 12:36:18 -03003727DT3155 MEDIA DRIVER
3728M: Hans Verkuil <hverkuil@xs4all.nl>
3729L: linux-media@vger.kernel.org
3730T: git git://linuxtv.org/media_tree.git
3731W: http://linuxtv.org
3732S: Odd Fixes
3733F: drivers/media/pci/dt3155/
3734
Antti Palosaari91952bc2012-10-01 12:28:46 -03003735DVB_USB_AF9015 MEDIA DRIVER
3736M: Antti Palosaari <crope@iki.fi>
3737L: linux-media@vger.kernel.org
3738W: http://linuxtv.org/
3739W: http://palosaari.fi/linux/
3740Q: http://patchwork.linuxtv.org/project/linux-media/list/
3741T: git git://linuxtv.org/anttip/media_tree.git
3742S: Maintained
3743F: drivers/media/usb/dvb-usb-v2/af9015*
3744
3745DVB_USB_AF9035 MEDIA DRIVER
3746M: Antti Palosaari <crope@iki.fi>
3747L: linux-media@vger.kernel.org
3748W: http://linuxtv.org/
3749W: http://palosaari.fi/linux/
3750Q: http://patchwork.linuxtv.org/project/linux-media/list/
3751T: git git://linuxtv.org/anttip/media_tree.git
3752S: Maintained
3753F: drivers/media/usb/dvb-usb-v2/af9035*
3754
3755DVB_USB_ANYSEE MEDIA DRIVER
3756M: Antti Palosaari <crope@iki.fi>
3757L: linux-media@vger.kernel.org
3758W: http://linuxtv.org/
3759W: http://palosaari.fi/linux/
3760Q: http://patchwork.linuxtv.org/project/linux-media/list/
3761T: git git://linuxtv.org/anttip/media_tree.git
3762S: Maintained
3763F: drivers/media/usb/dvb-usb-v2/anysee*
3764
3765DVB_USB_AU6610 MEDIA DRIVER
3766M: Antti Palosaari <crope@iki.fi>
3767L: linux-media@vger.kernel.org
3768W: http://linuxtv.org/
3769W: http://palosaari.fi/linux/
3770Q: http://patchwork.linuxtv.org/project/linux-media/list/
3771T: git git://linuxtv.org/anttip/media_tree.git
3772S: Maintained
3773F: drivers/media/usb/dvb-usb-v2/au6610*
3774
3775DVB_USB_CE6230 MEDIA DRIVER
3776M: Antti Palosaari <crope@iki.fi>
3777L: linux-media@vger.kernel.org
3778W: http://linuxtv.org/
3779W: http://palosaari.fi/linux/
3780Q: http://patchwork.linuxtv.org/project/linux-media/list/
3781T: git git://linuxtv.org/anttip/media_tree.git
3782S: Maintained
3783F: drivers/media/usb/dvb-usb-v2/ce6230*
3784
Michael Krufkyd099dea2012-10-02 00:56:20 -03003785DVB_USB_CXUSB MEDIA DRIVER
3786M: Michael Krufky <mkrufky@linuxtv.org>
3787L: linux-media@vger.kernel.org
3788W: http://linuxtv.org/
3789W: http://github.com/mkrufky
3790Q: http://patchwork.linuxtv.org/project/linux-media/list/
3791T: git git://linuxtv.org/media_tree.git
3792S: Maintained
Cesar Eduardo Barros9819da62013-01-04 15:35:25 -08003793F: drivers/media/usb/dvb-usb/cxusb*
Michael Krufkyd099dea2012-10-02 00:56:20 -03003794
Antti Palosaari91952bc2012-10-01 12:28:46 -03003795DVB_USB_EC168 MEDIA DRIVER
3796M: Antti Palosaari <crope@iki.fi>
3797L: linux-media@vger.kernel.org
3798W: http://linuxtv.org/
3799W: http://palosaari.fi/linux/
3800Q: http://patchwork.linuxtv.org/project/linux-media/list/
3801T: git git://linuxtv.org/anttip/media_tree.git
3802S: Maintained
3803F: drivers/media/usb/dvb-usb-v2/ec168*
3804
Antti Palosaari55609832013-04-09 20:30:42 -03003805DVB_USB_GL861 MEDIA DRIVER
3806M: Antti Palosaari <crope@iki.fi>
3807L: linux-media@vger.kernel.org
3808W: http://linuxtv.org/
3809Q: http://patchwork.linuxtv.org/project/linux-media/list/
3810T: git git://linuxtv.org/anttip/media_tree.git
3811S: Maintained
3812F: drivers/media/usb/dvb-usb-v2/gl861*
3813
Michael Krufky8856f5f2012-10-02 00:55:50 -03003814DVB_USB_MXL111SF MEDIA DRIVER
3815M: Michael Krufky <mkrufky@linuxtv.org>
3816L: linux-media@vger.kernel.org
3817W: http://linuxtv.org/
3818W: http://github.com/mkrufky
3819Q: http://patchwork.linuxtv.org/project/linux-media/list/
3820T: git git://linuxtv.org/mkrufky/mxl111sf.git
3821S: Maintained
3822F: drivers/media/usb/dvb-usb-v2/mxl111sf*
3823
Antti Palosaari91952bc2012-10-01 12:28:46 -03003824DVB_USB_RTL28XXU MEDIA DRIVER
3825M: Antti Palosaari <crope@iki.fi>
3826L: linux-media@vger.kernel.org
3827W: http://linuxtv.org/
3828W: http://palosaari.fi/linux/
3829Q: http://patchwork.linuxtv.org/project/linux-media/list/
3830T: git git://linuxtv.org/anttip/media_tree.git
3831S: Maintained
3832F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
3833
3834DVB_USB_V2 MEDIA DRIVER
3835M: Antti Palosaari <crope@iki.fi>
3836L: linux-media@vger.kernel.org
3837W: http://linuxtv.org/
3838W: http://palosaari.fi/linux/
3839Q: http://patchwork.linuxtv.org/project/linux-media/list/
3840T: git git://linuxtv.org/anttip/media_tree.git
3841S: Maintained
3842F: drivers/media/usb/dvb-usb-v2/dvb_usb*
3843F: drivers/media/usb/dvb-usb-v2/usb_urb.c
3844
Jason Baronac0ac382011-08-11 14:36:43 -04003845DYNAMIC DEBUG
Joe Perches5c4a97d12013-07-31 13:53:32 -07003846M: Jason Baron <jbaron@akamai.com>
Jason Baronac0ac382011-08-11 14:36:43 -04003847S: Maintained
3848F: lib/dynamic_debug.c
3849F: include/linux/dynamic_debug.h
3850
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08003851DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003852M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08003853S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003854F: drivers/tty/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08003855
Moritz Fischerf17effb2015-01-10 14:10:59 -08003856E3X0 POWER BUTTON DRIVER
3857M: Moritz Fischer <moritz.fischer@ettus.com>
3858L: usrp-users@lists.ettus.com
3859W: http://www.ettus.com
3860S: Supported
3861F: drivers/input/misc/e3x0-button.c
3862F: Documentation/devicetree/bindings/input/e3x0-button.txt
3863
Antti Palosaari91952bc2012-10-01 12:28:46 -03003864E4000 MEDIA DRIVER
3865M: Antti Palosaari <crope@iki.fi>
3866L: linux-media@vger.kernel.org
3867W: http://linuxtv.org/
3868W: http://palosaari.fi/linux/
3869Q: http://patchwork.linuxtv.org/project/linux-media/list/
3870T: git git://linuxtv.org/anttip/media_tree.git
3871S: Maintained
3872F: drivers/media/tuners/e4000*
3873
Linus Torvalds1da177e2005-04-16 15:20:36 -07003874EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003875M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003876L: linux-scsi@vger.kernel.org
3877S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003878F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003879
Antti Palosaari91952bc2012-10-01 12:28:46 -03003880EC100 MEDIA DRIVER
3881M: Antti Palosaari <crope@iki.fi>
3882L: linux-media@vger.kernel.org
3883W: http://linuxtv.org/
3884W: http://palosaari.fi/linux/
3885Q: http://patchwork.linuxtv.org/project/linux-media/list/
3886T: git git://linuxtv.org/anttip/media_tree.git
3887S: Maintained
3888F: drivers/media/dvb-frontends/ec100*
3889
Michael Halcrow237fead2006-10-04 02:16:22 -07003890ECRYPT FILE SYSTEM
Tyler Hicks0de9adf2011-11-05 09:04:47 -04003891M: Tyler Hicks <tyhicks@canonical.com>
Tyler Hicksa058bfb2011-05-27 11:47:59 -05003892L: ecryptfs@vger.kernel.org
Dustin Kirkland24a923e2013-05-31 10:41:43 -05003893W: http://ecryptfs.org
Michael Halcrow6dc75162008-12-15 13:54:17 -08003894W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07003895S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003896F: Documentation/filesystems/ecryptfs.txt
3897F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07003898
Alan Coxda9bb1d2006-01-18 17:44:13 -08003899EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07003900M: Doug Thompson <dougthompson@xmission.com>
Borislav Petkovaa15aa02014-03-03 15:38:17 -08003901M: Borislav Petkov <bp@alien8.de>
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02003902M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003903L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08003904W: bluesmoke.sourceforge.net
Borislav Petkov7a859512015-02-06 17:46:07 +01003905T: git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git#for-next
3906T: git://git.kernel.org/pub/linux/kernel/git/mchehab/linux-edac.git#linux_next
Doug Thompson8c2a6a42006-06-30 01:56:09 -07003907S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003908F: Documentation/edac.txt
Chris Metcalf91445c72012-03-31 09:46:03 -04003909F: drivers/edac/
Joe Perches679655d2009-04-07 20:44:32 -07003910F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08003911
Borislav Petkovc476c232009-05-20 20:31:58 +02003912EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07003913M: Doug Thompson <dougthompson@xmission.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01003914M: Borislav Petkov <bp@alien8.de>
Chris Metcalf91445c72012-03-31 09:46:03 -04003915L: linux-edac@vger.kernel.org
Borislav Petkovc476c232009-05-20 20:31:58 +02003916W: bluesmoke.sourceforge.net
Borislav Petkov487ba8e2012-10-29 18:40:10 +01003917S: Maintained
Borislav Petkovc476c232009-05-20 20:31:58 +02003918F: drivers/edac/amd64_edac*
3919
Robert Richter836dae52013-10-18 09:24:52 +02003920EDAC-CALXEDA
3921M: Doug Thompson <dougthompson@xmission.com>
3922M: Robert Richter <rric@kernel.org>
3923L: linux-edac@vger.kernel.org
3924W: bluesmoke.sourceforge.net
3925S: Maintained
3926F: drivers/edac/highbank*
3927
Ralf Baechlef65aad42012-10-17 00:39:09 +02003928EDAC-CAVIUM
3929M: Ralf Baechle <ralf@linux-mips.org>
3930M: David Daney <david.daney@cavium.com>
3931L: linux-edac@vger.kernel.org
3932L: linux-mips@linux-mips.org
3933W: bluesmoke.sourceforge.net
3934S: Supported
3935F: drivers/edac/octeon_edac*
3936
Dave Peterson0e438e32006-03-26 01:38:55 -08003937EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07003938M: Mark Gross <mark.gross@intel.com>
3939M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003940L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08003941W: bluesmoke.sourceforge.net
3942S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003943F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08003944
3945EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07003946M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003947L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08003948W: bluesmoke.sourceforge.net
3949S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003950F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08003951
Mauro Carvalho Chehab77c5f5d2013-02-15 06:11:57 -03003952EDAC-GHES
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02003953M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab77c5f5d2013-02-15 06:11:57 -03003954L: linux-edac@vger.kernel.org
3955W: bluesmoke.sourceforge.net
3956S: Maintained
Joe Perches2caa67a2013-09-11 14:23:40 -07003957F: drivers/edac/ghes_edac.c
Mauro Carvalho Chehab77c5f5d2013-02-15 06:11:57 -03003958
Douglas Thompson6bc78402007-07-19 01:50:12 -07003959EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07003960M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003961L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07003962W: bluesmoke.sourceforge.net
3963S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003964F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07003965
3966EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07003967M: Jason Uhlenkott <juhlenko@akamai.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003968L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07003969W: bluesmoke.sourceforge.net
3970S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003971F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07003972
3973EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07003974M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003975L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07003976W: bluesmoke.sourceforge.net
3977S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003978F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07003979
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08003980EDAC-I5400
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02003981M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03003982L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08003983W: bluesmoke.sourceforge.net
3984S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003985F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08003986
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03003987EDAC-I7300
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02003988M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03003989L: linux-edac@vger.kernel.org
3990W: bluesmoke.sourceforge.net
3991S: Maintained
3992F: drivers/edac/i7300_edac.c
3993
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03003994EDAC-I7CORE
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02003995M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03003996L: linux-edac@vger.kernel.org
3997W: bluesmoke.sourceforge.net
3998S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03003999F: drivers/edac/i7core_edac.c
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03004000
Douglas Thompsonba9a5912007-07-19 01:50:32 -07004001EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07004002M: Ranganathan Desikan <ravi@jetztechnologies.com>
Arvind R25527882011-01-21 23:13:37 +05304003M: "Arvind R." <arvino55@gmail.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04004004L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07004005W: bluesmoke.sourceforge.net
4006S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004007F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07004008
Jason Baron791b4702014-07-09 21:13:11 +00004009EDAC-IE31200
4010M: Jason Baron <jbaron@akamai.com>
4011L: linux-edac@vger.kernel.org
4012W: bluesmoke.sourceforge.net
4013S: Maintained
4014F: drivers/edac/ie31200_edac.c
4015
Johannes Thumshirnccdfb972013-11-17 19:25:12 +01004016EDAC-MPC85XX
Johannes Thumshirn30c74692015-05-07 10:21:24 +02004017M: Johannes Thumshirn <morbidrsa@gmail.com>
Johannes Thumshirnccdfb972013-11-17 19:25:12 +01004018L: linux-edac@vger.kernel.org
4019W: bluesmoke.sourceforge.net
4020S: Maintained
4021F: drivers/edac/mpc85xx_edac.[ch]
4022
Douglas Thompsonba9a5912007-07-19 01:50:32 -07004023EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07004024M: Egor Martovetsky <egor@pasemi.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04004025L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07004026W: bluesmoke.sourceforge.net
4027S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004028F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07004029
Dave Peterson0e438e32006-03-26 01:38:55 -08004030EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07004031M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04004032L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08004033W: bluesmoke.sourceforge.net
4034S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004035F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08004036
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02004037EDAC-SBRIDGE
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02004038M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02004039L: linux-edac@vger.kernel.org
4040W: bluesmoke.sourceforge.net
4041S: Maintained
4042F: drivers/edac/sb_edac.c
4043
Loc Ho995e1de2015-05-22 17:32:57 -06004044EDAC-XGENE
4045APPLIED MICRO (APM) X-GENE SOC EDAC
4046M: Loc Ho <lho@apm.com>
4047S: Supported
4048F: drivers/edac/xgene_edac.c
4049F: Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
4050
Clemens Ladischaf399172011-01-10 16:32:54 +01004051EDIROL UA-101/UA-1000 DRIVER
4052M: Clemens Ladisch <clemens@ladisch.de>
4053L: alsa-devel@alsa-project.org (moderated for non-subscribers)
4054T: git git://git.alsa-project.org/alsa-kernel.git
4055S: Maintained
4056F: sound/usb/misc/ua101.c
4057
Matt Fleming1f7df952012-10-03 10:04:02 +01004058EXTENSIBLE FIRMWARE INTERFACE (EFI)
Matt Fleming825fcfc2015-10-10 17:22:16 +01004059M: Matt Fleming <matt@codeblueprint.co.uk>
Matt Fleming1f7df952012-10-03 10:04:02 +01004060L: linux-efi@vger.kernel.org
Matt Fleming78bef242012-10-08 11:33:05 +01004061T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
Matt Fleming1f7df952012-10-03 10:04:02 +01004062S: Maintained
Joe Perchesfb2efb52014-08-08 14:25:01 -07004063F: Documentation/efi-stub.txt
Matt Fleming1f7df952012-10-03 10:04:02 +01004064F: arch/ia64/kernel/efi.c
4065F: arch/x86/boot/compressed/eboot.[ch]
4066F: arch/x86/include/asm/efi.h
4067F: arch/x86/platform/efi/*
Tom Gundersena9499fa2013-02-08 15:37:06 +00004068F: drivers/firmware/efi/*
Matt Fleming1f7df952012-10-03 10:04:02 +01004069F: include/linux/efi*.h
4070
Matt Flemingd68772b2013-02-08 16:27:24 +00004071EFI VARIABLE FILESYSTEM
4072M: Matthew Garrett <matthew.garrett@nebula.com>
4073M: Jeremy Kerr <jk@ozlabs.org>
Matt Fleming825fcfc2015-10-10 17:22:16 +01004074M: Matt Fleming <matt@codeblueprint.co.uk>
Matt Flemingd68772b2013-02-08 16:27:24 +00004075T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4076L: linux-efi@vger.kernel.org
4077S: Maintained
4078F: fs/efivarfs/
4079
Peter Jones85a00d92010-09-22 13:05:04 -07004080EFIFB FRAMEBUFFER DRIVER
4081L: linux-fbdev@vger.kernel.org
4082M: Peter Jones <pjones@redhat.com>
4083S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09004084F: drivers/video/fbdev/efifb.c
Peter Jones85a00d92010-09-22 13:05:04 -07004085
Josh Triplett0bee8d22006-07-30 03:03:58 -07004086EFS FILESYSTEM
4087W: http://aeschi.ch.eu.org/efs/
4088S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004089F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07004090
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004091EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004092M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
4093M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004094L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07004095S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004096F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07004097
Breno Leitaoaa8a9e252010-09-01 13:10:53 -07004098EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
Thadeu Lima de Souza Cascardo34b19012011-10-13 09:56:19 +00004099M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaoaa8a9e252010-09-01 13:10:53 -07004100L: netdev@vger.kernel.org
4101S: Maintained
Jeff Kirsher9aa32832011-05-13 14:29:12 -07004102F: drivers/net/ethernet/ibm/ehea/
Breno Leitaoaa8a9e252010-09-01 13:10:53 -07004103
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02004104EM28XX VIDEO4LINUX DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02004105M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02004106L: linux-media@vger.kernel.org
4107W: http://linuxtv.org
4108T: git git://linuxtv.org/media_tree.git
4109S: Maintained
4110F: drivers/media/usb/em28xx/
4111
David Woodhouse3e3a7d62008-05-01 04:34:46 -07004112EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07004113M: Paul Gortmaker <paul.gortmaker@windriver.com>
4114M: Matt Mackall <mpm@selenic.com>
4115M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07004116L: linux-embedded@vger.kernel.org
4117S: Maintained
4118
James Smart32505872015-05-15 13:10:58 -04004119EMULEX/AVAGO LPFC FC/FCOE SCSI DRIVER
4120M: James Smart <james.smart@avagotech.com>
4121M: Dick Kennedy <dick.kennedy@avagotech.com>
Jim Cromiece00f852006-11-30 04:49:44 +01004122L: linux-scsi@vger.kernel.org
James Smart32505872015-05-15 13:10:58 -04004123W: http://www.avagotech.com
Jim Cromiece00f852006-11-30 04:49:44 +01004124S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004125F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04004126
Michał Mirosław5f5bac82009-05-22 20:33:59 +02004127ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004128M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02004129S: Maintained
4130F: drivers/misc/cb710/
4131F: drivers/mmc/host/cb710-mmc.*
4132F: include/linux/cb710.h
4133
Maxim Levitsky931e39a2010-07-31 11:59:26 -03004134ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
4135M: Maxim Levitsky <maximlevitsky@gmail.com>
4136S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07004137F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03004138
Gavin Shanec207dc2013-06-28 21:12:14 +08004139ENHANCED ERROR HANDLING (EEH)
4140M: Gavin Shan <shangw@linux.vnet.ibm.com>
4141L: linuxppc-dev@lists.ozlabs.org
4142S: Supported
4143F: Documentation/powerpc/eeh-pci-error-recovery.txt
4144F: arch/powerpc/kernel/eeh*.c
4145
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07004146EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004147M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07004148S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07004149T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Jingoo Han8a61f012014-07-01 15:36:01 +09004150F: drivers/video/fbdev/s1d13xxxfb.c
Joe Perches679655d2009-04-07 20:44:32 -07004151F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07004152
Mark Einon38df6492014-09-30 22:29:46 +01004153ET131X NETWORK DRIVER
4154M: Mark Einon <mark.einon@gmail.com>
4155S: Odd Fixes
4156F: drivers/net/ethernet/agere/
4157
Linus Torvalds1da177e2005-04-16 15:20:36 -07004158ETHERNET BRIDGE
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08004159M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07004160L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08004161L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00004162W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07004163S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004164F: include/linux/netfilter_bridge/
4165F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004166
Florian Fainelli22f08ad2014-02-18 09:47:49 -08004167ETHERNET PHY LIBRARY
4168M: Florian Fainelli <f.fainelli@gmail.com>
4169L: netdev@vger.kernel.org
4170S: Maintained
4171F: include/linux/phy.h
4172F: include/linux/phy_fixed.h
4173F: drivers/net/phy/
4174F: Documentation/networking/phy.txt
4175F: drivers/of/of_mdio.c
4176F: drivers/of/of_net.c
4177
Linus Torvalds1da177e2005-04-16 15:20:36 -07004178EXT2 FILE SYSTEM
Jiri Slabyd8130622015-07-17 16:23:20 -07004179M: Jan Kara <jack@suse.com>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004180L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004181S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004182F: Documentation/filesystems/ext2.txt
4183F: fs/ext2/
4184F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004185
Erik Mouw72be2cc2006-12-06 20:40:49 -08004186EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004187M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02004188M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004189L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04004190W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004191Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004192S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004193F: Documentation/filesystems/ext4.txt
4194F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004195
Mimi Zoharc5532b02011-08-17 18:52:24 -04004196Extended Verification Module (EVM)
Mimi Zohar74dd7442014-02-27 08:44:45 -05004197M: Mimi Zohar <zohar@linux.vnet.ibm.com>
4198L: linux-ima-devel@lists.sourceforge.net
4199L: linux-security-module@vger.kernel.org
Mimi Zoharc5532b02011-08-17 18:52:24 -04004200S: Supported
4201F: security/integrity/evm/
4202
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09004203EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
4204M: MyungJoo Ham <myungjoo.ham@samsung.com>
4205M: Chanwoo Choi <cw00.choi@samsung.com>
4206L: linux-kernel@vger.kernel.org
Chanwoo Choi81df63a2013-09-28 15:04:37 +09004207T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09004208S: Maintained
4209F: drivers/extcon/
Chanwoo Choicd2c3e72015-11-06 16:30:55 -08004210F: include/linux/extcon/
4211F: include/linux/extcon.h
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09004212F: Documentation/extcon/
Chanwoo Choicd2c3e72015-11-06 16:30:55 -08004213F: Documentation/devicetree/bindings/extcon/
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09004214
Jingoo Hane2a75c42014-04-10 20:24:03 +09004215EXYNOS DP DRIVER
Jingoo Hanb7701752015-05-14 15:17:07 -07004216M: Jingoo Han <jingoohan1@gmail.com>
Jingoo Hane2a75c42014-04-10 20:24:03 +09004217L: dri-devel@lists.freedesktop.org
4218S: Maintained
4219F: drivers/gpu/drm/exynos/exynos_dp*
4220
Donghwa Lee33ad3912012-03-06 11:44:58 +09004221EXYNOS MIPI DISPLAY DRIVERS
4222M: Inki Dae <inki.dae@samsung.com>
4223M: Donghwa Lee <dh09.lee@samsung.com>
4224M: Kyungmin Park <kyungmin.park@samsung.com>
4225L: linux-fbdev@vger.kernel.org
4226S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09004227F: drivers/video/fbdev/exynos/exynos_mipi*
Donghwa Lee33ad3912012-03-06 11:44:58 +09004228F: include/video/exynos_mipi*
4229
Jean Delvaree53004e2006-01-09 23:26:14 +01004230F71805F HARDWARE MONITORING DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07004231M: Jean Delvare <jdelvare@suse.com>
Jean Delvaree53004e2006-01-09 23:26:14 +01004232L: lm-sensors@lm-sensors.org
4233S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004234F: Documentation/hwmon/f71805f
4235F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01004236
Michael Büscheea977e2012-04-02 12:14:32 -03004237FC0011 TUNER DRIVER
4238M: Michael Buesch <m@bues.ch>
4239L: linux-media@vger.kernel.org
4240S: Maintained
Mauro Carvalho Chehabccae7af2012-06-14 16:35:59 -03004241F: drivers/media/tuners/fc0011.h
4242F: drivers/media/tuners/fc0011.c
Michael Büscheea977e2012-04-02 12:14:32 -03004243
Antti Palosaari91952bc2012-10-01 12:28:46 -03004244FC2580 MEDIA DRIVER
4245M: Antti Palosaari <crope@iki.fi>
4246L: linux-media@vger.kernel.org
4247W: http://linuxtv.org/
4248W: http://palosaari.fi/linux/
4249Q: http://patchwork.linuxtv.org/project/linux-media/list/
4250T: git git://linuxtv.org/anttip/media_tree.git
4251S: Maintained
4252F: drivers/media/tuners/fc2580*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004253
Eric Paris88b2dbd2010-08-18 12:25:50 -04004254FANOTIFY
4255M: Eric Paris <eparis@redhat.com>
4256S: Maintained
4257F: fs/notify/fanotify/
4258F: include/linux/fanotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004259F: include/uapi/linux/fanotify.h
Eric Paris88b2dbd2010-08-18 12:25:50 -04004260
Linus Torvalds1da177e2005-04-16 15:20:36 -07004261FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004262M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004263W: http://www.farsite.co.uk/
4264S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004265F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004266
Akinobu Mitac5408b82007-04-23 14:41:20 -07004267FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004268M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07004269S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004270F: Documentation/fault-injection/
4271F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07004272
Noralf Trønnes053e5142015-01-23 19:29:07 +01004273FBTFT Framebuffer drivers
4274M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4275M: Noralf Trønnes <noralf@tronnes.org>
4276S: Maintained
4277F: drivers/staging/fbtft/
4278
Robert Lovecae727d2010-02-16 12:16:00 -08004279FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
Robert Love3bd746c2014-05-28 14:19:01 -07004280M: Vasu Dev <vasu.dev@intel.com>
Neil Hormanf4aaea62013-05-03 19:38:10 +00004281L: fcoe-devel@open-fcoe.org
Robert Lovecae727d2010-02-16 12:16:00 -08004282W: www.Open-FCoE.org
4283S: Supported
4284F: drivers/scsi/libfc/
4285F: drivers/scsi/fcoe/
4286F: include/scsi/fc/
4287F: include/scsi/libfc.h
4288F: include/scsi/libfcoe.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004289F: include/uapi/scsi/fc/
Robert Lovecae727d2010-02-16 12:16:00 -08004290
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004291FILE LOCKING (flock() and fcntl()/lockf())
Jeff Layton8c836fa2014-04-30 13:28:17 -04004292M: Jeff Layton <jlayton@poochiereds.net>
Joe Perches9c3646d2015-06-25 15:02:00 -07004293M: "J. Bruce Fields" <bfields@fieldses.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004294L: linux-fsdevel@vger.kernel.org
4295S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004296F: include/linux/fcntl.h
4297F: include/linux/fs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004298F: include/uapi/linux/fcntl.h
4299F: include/uapi/linux/fs.h
Joe Perches679655d2009-04-07 20:44:32 -07004300F: fs/fcntl.c
4301F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004302
4303FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07004304M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004305L: linux-fsdevel@vger.kernel.org
4306S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004307F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004308
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004309FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02004310M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004311L: lm-sensors@lm-sensors.org
4312S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07004313F: drivers/hwmon/f75375s.c
4314F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004315
Clemens Ladischa331b0c2011-05-25 09:48:48 +02004316FIREWIRE AUDIO DRIVERS
4317M: Clemens Ladisch <clemens@ladisch.de>
4318L: alsa-devel@alsa-project.org (moderated for non-subscribers)
4319T: git git://git.alsa-project.org/alsa-kernel.git
4320S: Maintained
4321F: sound/firewire/
4322
Stefan Richtereb86ec52012-11-03 09:25:20 +01004323FIREWIRE MEDIA DRIVERS (firedtv)
4324M: Stefan Richter <stefanr@s5r6.in-berlin.de>
4325L: linux-media@vger.kernel.org
4326L: linux1394-devel@lists.sourceforge.net
4327T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
4328S: Maintained
4329F: drivers/media/firewire/
4330
Chris Boota511ce32012-04-14 17:50:35 -07004331FIREWIRE SBP-2 TARGET
4332M: Chris Boot <bootc@bootc.net>
4333L: linux-scsi@vger.kernel.org
4334L: target-devel@vger.kernel.org
4335L: linux1394-devel@lists.sourceforge.net
4336T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
4337S: Maintained
4338F: drivers/target/sbp/
4339
Joe Perches7d2c86b2009-04-07 20:59:01 -07004340FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004341M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004342L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01004343W: http://ieee1394.wiki.kernel.org/
Stefan Richter2ca526b2011-12-20 21:23:28 +01004344T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004345S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004346F: drivers/firewire/
Stefan Richter8f06ce32012-12-17 16:00:07 -08004347F: include/linux/firewire.h
4348F: include/uapi/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02004349F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004350
4351FIRMWARE LOADER (request_firmware)
Ming Lei39e68082012-08-20 19:04:17 +08004352M: Ming Lei <ming.lei@canonical.com>
4353L: linux-kernel@vger.kernel.org
4354S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004355F: Documentation/firmware_class/
4356F: drivers/base/firmware*.c
4357F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004358
Philip J Kelleherf730e3d2013-06-18 14:43:58 -05004359FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
Philip J Kelleher9bb3c442013-02-27 09:24:59 -06004360M: Joshua Morris <josh.h.morris@us.ibm.com>
4361M: Philip Kelleher <pjk1939@linux.vnet.ibm.com>
4362S: Maintained
4363F: drivers/block/rsxx/
4364
Jiri Kosina8206f662012-05-18 13:52:29 +02004365FLOPPY DRIVER
Jiri Kosinae5f64502015-08-09 09:11:34 +02004366M: Jiri Kosina <jikos@kernel.org>
Jiri Kosina8206f662012-05-18 13:52:29 +02004367T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
4368S: Odd fixes
4369F: drivers/block/floppy.c
4370
Alessandro Rubini9c9f32e2013-06-12 09:13:25 +02004371FMC SUBSYSTEM
4372M: Alessandro Rubini <rubini@gnudd.com>
4373W: http://www.ohwr.org/projects/fmc-bus
4374S: Supported
4375F: drivers/fmc/
4376F: include/linux/fmc*.h
4377F: include/linux/ipmi-fru.h
4378K: fmc_d.*register
4379
Alan Tull3c0ed7d2015-10-07 20:49:23 +01004380FPGA MANAGER FRAMEWORK
4381M: Alan Tull <atull@opensource.altera.com>
4382S: Maintained
4383F: drivers/fpga/
4384F: include/linux/fpga/fpga-mgr.h
4385W: http://www.rocketboards.org
4386
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004387FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07004388M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07004389W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004390S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004391F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004392
4393FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004394L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00004395S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004396F: drivers/net/wan/dlci.c
4397F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004398
Linus Torvalds1da177e2005-04-16 15:20:36 -07004399FRAMEBUFFER LAYER
Jean-Christophe PLAGNIOL-VILLARD5489e942013-05-30 22:23:44 +02004400M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
4401M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004402L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004403W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09004404Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Jean-Christophe PLAGNIOL-VILLARD5489e942013-05-30 22:23:44 +02004405T: git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
Paul Mundt56be1412011-03-23 08:29:07 +09004406S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004407F: Documentation/fb/
Paul Mundtd958c622011-03-23 08:22:41 +09004408F: Documentation/devicetree/bindings/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09004409F: drivers/video/
4410F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07004411F: include/linux/fb.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004412F: include/uapi/video/
4413F: include/uapi/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004414
Timur Tabia57c1882012-10-16 17:33:42 -05004415FREESCALE DIU FRAMEBUFFER DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004416M: Timur Tabi <timur@tabi.org>
Timur Tabia57c1882012-10-16 17:33:42 -05004417L: linux-fbdev@vger.kernel.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004418S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09004419F: drivers/video/fbdev/fsl-diu-fb.*
Timur Tabia57c1882012-10-16 17:33:42 -05004420
Zhang Wei173acc72008-03-01 07:42:48 -07004421FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004422M: Li Yang <leoli@freescale.com>
4423M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004424L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07004425S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004426F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07004427
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02004428FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004429M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004430L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01004431L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02004432S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004433F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02004434
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01004435FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004436M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004437L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07004438L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01004439S: Maintained
Cesar Eduardo Barrosbad985a2013-01-04 15:35:28 -08004440F: include/linux/platform_data/video-imxfb.h
Jingoo Han8a61f012014-07-01 15:36:01 +09004441F: drivers/video/fbdev/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01004442
Han Xu4d8e2ce2015-01-16 03:29:17 +08004443FREESCALE QUAD SPI DRIVER
4444M: Han Xu <han.xu@freescale.com>
4445L: linux-mtd@lists.infradead.org
4446S: Maintained
4447F: drivers/mtd/spi-nor/fsl-quadspi.c
4448
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03004449FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004450M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
4451M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004452L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03004453L: netdev@vger.kernel.org
4454S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07004455F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07004456F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03004457
Timur Tabid9e9d822008-04-24 08:45:26 +10004458FREESCALE QUICC ENGINE LIBRARY
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004459L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004460S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004461F: arch/powerpc/sysdev/qe_lib/
4462F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10004463
Joe Perchesb55ef9292009-10-26 16:49:46 -07004464FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004465M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07004466L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004467L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07004468S: Maintained
Joe Perchesfaf2e1d2014-08-08 14:26:18 -07004469F: drivers/usb/gadget/udc/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07004470
Li Yangbeaf53b2007-05-25 13:54:02 +08004471FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004472M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08004473L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004474L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08004475S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07004476F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08004477
Claudiu Manoilabb1ed72015-10-23 11:42:01 +03004478FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
4479M: Claudiu Manoil <claudiu.manoil@freescale.com>
4480L: netdev@vger.kernel.org
4481S: Maintained
4482F: drivers/net/ethernet/freescale/gianfar*
4483X: drivers/net/ethernet/freescale/gianfar_ptp.c
4484F: Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
4485
Timur Tabid9e9d822008-04-24 08:45:26 +10004486FREESCALE QUICC ENGINE UCC UART DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004487M: Timur Tabi <timur@tabi.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004488L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004489S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004490F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10004491
4492FREESCALE SOC SOUND DRIVERS
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004493M: Timur Tabi <timur@tabi.org>
Mark Browndc859502014-08-07 10:47:24 +01004494M: Nicolin Chen <nicoleotsuka@gmail.com>
Xiubo Lib4b98292014-12-12 16:54:14 -08004495M: Xiubo Li <Xiubo.Lee@gmail.com>
Joe Perches93711662009-06-16 15:34:07 -07004496L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004497L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004498S: Maintained
Joe Perches69aefce2009-04-09 10:39:22 -07004499F: sound/soc/fsl/fsl*
Mark Browndc859502014-08-07 10:47:24 +01004500F: sound/soc/fsl/imx*
Joe Perches69aefce2009-04-09 10:39:22 -07004501F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10004502
J. German Rivera31c88962015-03-05 19:29:09 -06004503FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER
Joe Perches9c3646d2015-06-25 15:02:00 -07004504M: "J. German Rivera" <German.Rivera@freescale.com>
J. German Rivera31c88962015-03-05 19:29:09 -06004505L: linux-kernel@vger.kernel.org
4506S: Maintained
4507F: drivers/staging/fsl-mc/
4508
Linus Torvalds1da177e2005-04-16 15:20:36 -07004509FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004510M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004511W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
4512S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004513F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004514
Pavel Machek71038f52009-01-15 13:51:02 -08004515FREEZER
Rafael J. Wysocki49db1902013-10-09 01:47:53 +02004516M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Rafael J. Wysocki7fb06082014-03-20 03:34:47 +01004517M: Pavel Machek <pavel@ucw.cz>
WANG Congbf1c1382011-10-08 20:57:50 +02004518L: linux-pm@vger.kernel.org
Pavel Machek71038f52009-01-15 13:51:02 -08004519S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004520F: Documentation/power/freezing-of-tasks.txt
4521F: include/linux/freezer.h
4522F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08004523
Konrad Rzeszutek Wilk839a1f72012-04-16 17:06:35 -04004524FRONTSWAP API
4525M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4526L: linux-kernel@vger.kernel.org
4527S: Maintained
4528F: mm/frontswap.c
4529F: include/linux/frontswap.h
4530
David Howellsa5432f5a2009-04-20 15:46:45 +01004531FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07004532M: David Howells <dhowells@redhat.com>
David Howellsa5432f5a2009-04-20 15:46:45 +01004533L: linux-cachefs@redhat.com
4534S: Supported
4535F: Documentation/filesystems/caching/
4536F: fs/fscache/
4537F: include/linux/fscache*.h
4538
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09004539F2FS FILE SYSTEM
Jaegeuk Kim9b29d482014-05-30 08:20:08 +09004540M: Jaegeuk Kim <jaegeuk@kernel.org>
Jaegeuk Kimf6238a72014-05-31 01:00:49 +09004541M: Changman Lee <cm224.lee@samsung.com>
Chao Yu7b2a2462015-08-12 17:47:08 +08004542R: Chao Yu <chao2.yu@samsung.com>
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09004543L: linux-f2fs-devel@lists.sourceforge.net
4544W: http://en.wikipedia.org/wiki/F2FS
4545T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
4546S: Maintained
4547F: Documentation/filesystems/f2fs.txt
Jaegeuk Kim3bac3802014-01-09 21:00:06 +09004548F: Documentation/ABI/testing/sysfs-fs-f2fs
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09004549F: fs/f2fs/
4550F: include/linux/f2fs_fs.h
Chao Yu62d43ee2015-07-06 20:29:46 +08004551F: include/trace/events/f2fs.h
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09004552
David Howells5ab7ffe2007-04-10 15:10:45 +01004553FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07004554M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004555S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004556F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004557
Jonathan Woithe20b93732008-06-11 10:14:56 +09304558FUJITSU LAPTOP EXTRAS
Jonathan Woithe409a3e92012-03-27 13:01:01 +10304559M: Jonathan Woithe <jwoithe@just42.net>
Matthew Garrettd09448532010-02-11 10:40:13 -05004560L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09304561S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004562F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09304563
Heungjun Kim4da621b62011-11-11 08:05:33 -03004564FUJITSU M-5MO LS CAMERA ISP DRIVER
4565M: Kyungmin Park <kyungmin.park@samsung.com>
4566M: Heungjun Kim <riverful.kim@samsung.com>
4567L: linux-media@vger.kernel.org
4568S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004569F: drivers/media/i2c/m5mols/
Heungjun Kim4da621b62011-11-11 08:05:33 -03004570F: include/media/m5mols.h
4571
Robert Gerlach2d24c492012-01-18 14:26:22 +01004572FUJITSU TABLET EXTRAS
4573M: Robert Gerlach <khnz@gmx.de>
4574L: platform-driver-x86@vger.kernel.org
4575S: Maintained
4576F: drivers/platform/x86/fujitsu-tablet.c
4577
Miklos Szeredi04578f12005-09-09 13:10:22 -07004578FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07004579M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07004580L: fuse-devel@lists.sourceforge.net
4581W: http://fuse.sourceforge.net/
Miklos Szeredi0a30f612015-07-01 17:10:36 +02004582T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
Miklos Szeredi04578f12005-09-09 13:10:22 -07004583S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004584F: fs/fuse/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004585F: include/uapi/linux/fuse.h
Miklos Szeredi0a30f612015-07-01 17:10:36 +02004586F: Documentation/filesystems/fuse.txt
Miklos Szeredi04578f12005-09-09 13:10:22 -07004587
Linus Torvalds1da177e2005-04-16 15:20:36 -07004588FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07004589M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004590L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02004591S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07004592F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004593
Peter Oberparleiterd8e21622013-10-16 13:46:49 -07004594GCOV BASED KERNEL PROFILING
4595M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
4596S: Maintained
4597F: kernel/gcov/
4598F: Documentation/gcov.txt
4599
Linus Torvalds1da177e2005-04-16 15:20:36 -07004600GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004601M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004602L: linux-scsi@vger.kernel.org
4603W: http://www.icp-vortex.com/
4604S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004605F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004606
Jan Kiszka158daf12015-02-17 13:47:49 -08004607GDB KERNEL DEBUGGING HELPER SCRIPTS
4608M: Jan Kiszka <jan.kiszka@siemens.com>
4609S: Supported
4610F: scripts/gdb/
4611
Hans Verkuil3169a1c2012-11-23 07:11:58 -03004612GEMTEK FM RADIO RECEIVER DRIVER
4613M: Hans Verkuil <hverkuil@xs4all.nl>
4614L: linux-media@vger.kernel.org
4615T: git git://linuxtv.org/media_tree.git
4616W: http://linuxtv.org
4617S: Maintained
4618F: drivers/media/radio/radio-gemtek*
4619
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02004620GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07004621M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02004622S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004623F: drivers/i2c/busses/i2c-gpio.c
4624F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02004625
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01004626GENERIC GPIO I2C MULTIPLEXER DRIVER
4627M: Peter Korsgaard <peter.korsgaard@barco.com>
4628L: linux-i2c@vger.kernel.org
4629S: Supported
Jean Delvaree7065e22012-04-28 15:32:06 +02004630F: drivers/i2c/muxes/i2c-mux-gpio.c
4631F: include/linux/i2c-mux-gpio.h
4632F: Documentation/i2c/muxes/i2c-mux-gpio
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01004633
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004634GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004635M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004636W: http://www.kernel.org/pub/linux/utils/net/hdlc/
4637S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004638F: drivers/net/wan/c101.c
4639F: drivers/net/wan/hd6457*
4640F: drivers/net/wan/hdlc*
4641F: drivers/net/wan/n2.c
4642F: drivers/net/wan/pc300too.c
4643F: drivers/net/wan/pci200syn.c
4644F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004645
Arnd Bergmann1527aab2009-06-14 22:46:16 +02004646GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07004647M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02004648L: linux-arch@vger.kernel.org
4649T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
4650S: Maintained
Joe Perches14430812013-09-11 14:23:50 -07004651F: include/asm-generic/
4652F: include/uapi/asm-generic/
Arnd Bergmann1527aab2009-06-14 22:46:16 +02004653
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +05304654GENERIC PHY FRAMEWORK
4655M: Kishon Vijay Abraham I <kishon@ti.com>
4656L: linux-kernel@vger.kernel.org
4657T: git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
4658S: Supported
4659F: drivers/phy/
4660F: include/linux/phy/
4661
Kevin Hilmaneea97ae2015-03-12 10:33:46 -07004662GENERIC PM DOMAINS
4663M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
4664M: Kevin Hilman <khilman@kernel.org>
4665M: Ulf Hansson <ulf.hansson@linaro.org>
4666L: linux-pm@vger.kernel.org
4667S: Supported
4668F: drivers/base/power/domain*.c
4669F: include/linux/pm_domain.h
4670
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03004671GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07004672M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03004673L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03004674S: Supported
4675F: drivers/uio/uio_pci_generic.c
4676
Joe Perchesf8f1ec72014-06-04 16:05:31 -07004677GET_MAINTAINER SCRIPT
4678M: Joe Perches <joe@perches.com>
4679S: Maintained
4680F: scripts/get_maintainer.pl
4681
Steven Whitehouse5be7b502006-04-28 11:27:32 -04004682GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004683M: Steven Whitehouse <swhiteho@redhat.com>
Bob Peterson28666d62015-02-13 11:23:11 -06004684M: Bob Peterson <rpeterso@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04004685L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04004686W: http://sources.redhat.com/cluster/
Bob Peterson28666d62015-02-13 11:23:11 -06004687T: git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04004688S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004689F: Documentation/filesystems/gfs2*.txt
4690F: fs/gfs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004691F: include/uapi/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04004692
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08004693GIGASET ISDN DRIVERS
Tilman Schmidt6b096fd2015-05-02 19:23:22 +02004694M: Paul Bolle <pebolle@tiscali.nl>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08004695L: gigaset307x-common@lists.sourceforge.net
4696W: http://gigaset307x.sourceforge.net/
Tilman Schmidt6b096fd2015-05-02 19:23:22 +02004697S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004698F: Documentation/isdn/README.gigaset
4699F: drivers/isdn/gigaset/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004700F: include/uapi/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08004701
Joe Perches7eea35f2014-07-30 05:09:23 -03004702GO7007 MPEG CODEC
4703M: Hans Verkuil <hans.verkuil@cisco.com>
4704L: linux-media@vger.kernel.org
4705S: Maintained
4706F: drivers/media/usb/go7007/
4707
Bastien Noceraca96ea82014-10-31 09:26:16 -07004708GOODIX TOUCHSCREEN
4709M: Bastien Nocera <hadess@hadess.net>
4710L: linux-input@vger.kernel.org
4711S: Maintained
4712F: drivers/input/touchscreen/goodix.c
4713
Grant Likelya0dc00b2011-02-12 01:48:14 -07004714GPIO SUBSYSTEM
Linus Walleije4651a92012-08-06 09:52:52 +02004715M: Linus Walleij <linus.walleij@linaro.org>
Linus Walleijf2fa75c2013-12-10 09:43:09 +01004716M: Alexandre Courbot <gnurou@gmail.com>
Alexandre Courbotd15b7172013-05-26 11:50:54 +09004717L: linux-gpio@vger.kernel.org
Linus Walleijf2fa75c2013-12-10 09:43:09 +01004718T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
4719S: Maintained
4720F: Documentation/gpio/
Grant Likelya0dc00b2011-02-12 01:48:14 -07004721F: drivers/gpio/
Alexandre Courbotbdc6e952014-08-04 13:06:58 +09004722F: include/linux/gpio/
4723F: include/linux/gpio.h
Yang Bai9b692342012-10-04 17:12:35 -07004724F: include/asm-generic/gpio.h
Grant Likelya0dc00b2011-02-12 01:48:14 -07004725
Harry Wei71a6d0a2011-05-11 15:13:33 -07004726GRE DEMULTIPLEXER DRIVER
4727M: Dmitry Kozlov <xeb@mail.ru>
4728L: netdev@vger.kernel.org
4729S: Maintained
Joe Perches11c26772013-09-11 14:23:48 -07004730F: net/ipv4/gre_demux.c
4731F: net/ipv4/gre_offload.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07004732F: include/net/gre.h
4733
Kristoffer Glembod4c41132010-02-15 03:33:44 +00004734GRETH 10/100/1G Ethernet MAC device driver
4735M: Kristoffer Glembo <kristoffer@gaisler.com>
4736L: netdev@vger.kernel.org
4737S: Maintained
Joe Perchesa31a96a2012-01-10 15:08:58 -08004738F: drivers/net/ethernet/aeroflex/
Kristoffer Glembod4c41132010-02-15 03:33:44 +00004739
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004740GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004741M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004742L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004743T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004744S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004745F: drivers/media/usb/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004746
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03004747GSPCA GL860 SUBDRIVER
4748M: Olivier Lorin <o.lorin@laposte.net>
4749L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004750T: git git://linuxtv.org/media_tree.git
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03004751S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004752F: drivers/media/usb/gspca/gl860/
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03004753
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004754GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004755M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004756L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004757T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004758S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004759F: drivers/media/usb/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004760
4761GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004762M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004763L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004764T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004765S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004766F: drivers/media/usb/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004767
Brian Johnson261982f2009-07-19 15:58:56 -03004768GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03004769M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03004770L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004771T: git git://linuxtv.org/media_tree.git
Brian Johnson261982f2009-07-19 15:58:56 -03004772S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004773F: drivers/media/usb/gspca/sn9c20x.c
Brian Johnson261982f2009-07-19 15:58:56 -03004774
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004775GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004776M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004777L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004778T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004779S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004780F: drivers/media/usb/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004781
4782GSPCA USB WEBCAM DRIVER
Jean-Francois Moinefc3f9062012-05-24 07:29:41 -03004783M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004784L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004785T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004786S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004787F: drivers/media/usb/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004788
Davidlohr Bueso584ec972013-12-18 17:08:55 -08004789GUID PARTITION TABLE (GPT)
Andrew Morton4f973c62015-06-25 15:02:05 -07004790M: Davidlohr Bueso <dave@stgolabs.net>
Davidlohr Bueso584ec972013-12-18 17:08:55 -08004791L: linux-efi@vger.kernel.org
4792S: Maintained
4793F: block/partitions/efi.*
4794
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03004795STK1160 USB VIDEO CAPTURE DRIVER
Ezequiel Garcia3259aa52015-03-10 11:43:20 -03004796M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03004797L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004798T: git git://linuxtv.org/media_tree.git
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03004799S: Maintained
4800F: drivers/media/usb/stk1160/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004801
Yoshinori Sato4e456b82015-03-11 01:41:38 +09004802H8/300 ARCHITECTURE
4803M: Yoshinori Sato <ysato@users.sourceforge.jp>
Geert Uytterhoevenb992c762015-07-17 16:23:55 -07004804L: uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
Yoshinori Sato4e456b82015-03-11 01:41:38 +09004805W: http://uclinux-h8.sourceforge.jp
4806T: git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
4807S: Maintained
4808F: arch/h8300/
4809F: drivers/clocksource/h8300_*.c
4810F: drivers/clk/h8300/
4811F: drivers/irqchip/irq-renesas-h8*.c
4812
Harry Wei71a6d0a2011-05-11 15:13:33 -07004813HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
4814M: Frank Seidel <frank@f-seidel.de>
4815L: platform-driver-x86@vger.kernel.org
4816W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
4817S: Maintained
4818F: drivers/platform/x86/hdaps.c
4819
Hans Verkuil48fc9e22013-04-11 03:36:49 -03004820HDPVR USB VIDEO ENCODER DRIVER
4821M: Hans Verkuil <hverkuil@xs4all.nl>
4822L: linux-media@vger.kernel.org
4823T: git git://linuxtv.org/media_tree.git
4824W: http://linuxtv.org
4825S: Odd Fixes
Joe Perches14430812013-09-11 14:23:50 -07004826F: drivers/media/usb/hdpvr/
Hans Verkuil48fc9e22013-04-11 03:36:49 -03004827
Harry Wei71a6d0a2011-05-11 15:13:33 -07004828HWPOISON MEMORY FAILURE HANDLING
Andi Kleenf9625c42014-06-04 16:05:32 -07004829M: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
Harry Wei71a6d0a2011-05-11 15:13:33 -07004830L: linux-mm@kvack.org
Harry Wei71a6d0a2011-05-11 15:13:33 -07004831S: Maintained
4832F: mm/memory-failure.c
4833F: mm/hwpoison-inject.c
4834
4835HYPERVISOR VIRTUAL CONSOLE DRIVER
4836L: linuxppc-dev@lists.ozlabs.org
4837S: Odd Fixes
4838F: drivers/tty/hvc/
4839
Antti Palosaarie5ab1472014-09-10 04:20:15 -03004840HACKRF MEDIA DRIVER
4841M: Antti Palosaari <crope@iki.fi>
4842L: linux-media@vger.kernel.org
4843W: http://linuxtv.org/
4844W: http://palosaari.fi/linux/
4845Q: http://patchwork.linuxtv.org/project/linux-media/list/
4846T: git git://linuxtv.org/anttip/media_tree.git
4847S: Maintained
4848F: drivers/media/usb/hackrf/
4849
Michael Buesch844dd052006-06-26 00:24:59 -07004850HARDWARE MONITORING
Jiri Slabyd8130622015-07-17 16:23:20 -07004851M: Jean Delvare <jdelvare@suse.com>
Guenter Roeckca462082012-06-01 23:28:23 -07004852M: Guenter Roeck <linux@roeck-us.net>
Robert Love860e1d62005-08-31 23:57:59 -04004853L: lm-sensors@lm-sensors.org
4854W: http://www.lm-sensors.org/
Jean Delvarea94ef4e2015-04-27 16:37:39 +02004855T: quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07004856T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02004857S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01004858F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07004859F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01004860F: include/linux/hwmon*.h
Robert Love860e1d62005-08-31 23:57:59 -04004861
4862HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07004863M: Matt Mackall <mpm@selenic.com>
4864M: Herbert Xu <herbert@gondor.apana.org.au>
Michael S. Tsirkin3eda71672015-01-16 09:16:00 +02004865L: linux-crypto@vger.kernel.org
Joe Perchesc0d07872009-09-23 15:57:17 -07004866S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07004867F: Documentation/hw_random.txt
4868F: drivers/char/hw_random/
4869F: include/linux/hw_random.h
Robert Love860e1d62005-08-31 23:57:59 -04004870
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03004871HARDWARE SPINLOCK CORE
4872M: Ohad Ben-Cohen <ohad@wizery.com>
4873S: Maintained
4874F: Documentation/hwspinlock.txt
4875F: drivers/hwspinlock/hwspinlock_*
4876F: include/linux/hwspinlock.h
4877
Linus Torvalds1da177e2005-04-16 15:20:36 -07004878HARMONY SOUND DRIVER
Kyle McMartinac6aecb2007-12-03 22:04:34 +00004879L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004880S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004881F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004882
Antti Palosaari91952bc2012-10-01 12:28:46 -03004883HD29L2 MEDIA DRIVER
4884M: Antti Palosaari <crope@iki.fi>
4885L: linux-media@vger.kernel.org
4886W: http://linuxtv.org/
4887W: http://palosaari.fi/linux/
4888Q: http://patchwork.linuxtv.org/project/linux-media/list/
4889T: git git://linuxtv.org/anttip/media_tree.git
4890S: Maintained
4891F: drivers/media/dvb-frontends/hd29l2*
4892
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004893HEWLETT-PACKARD SMART2 RAID DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004894L: iss_storagedev@hp.com
Michael Opdenackeraf9f1b32014-10-13 15:51:28 -07004895S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004896F: Documentation/blockdev/cpqarray.txt
4897F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004898
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05004899HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Don Brace693373d2014-10-15 22:32:41 +00004900M: Don Brace <don.brace@pmcs.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05004901L: iss_storagedev@hp.com
Don Brace693373d2014-10-15 22:32:41 +00004902L: storagedev@pmcs.com
4903L: linux-scsi@vger.kernel.org
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05004904S: Supported
4905F: Documentation/scsi/hpsa.txt
4906F: drivers/scsi/hpsa*.[ch]
4907F: include/linux/cciss*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004908F: include/uapi/linux/cciss*.h
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05004909
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004910HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Don Brace693373d2014-10-15 22:32:41 +00004911M: Don Brace <don.brace@pmcs.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004912L: iss_storagedev@hp.com
Don Brace693373d2014-10-15 22:32:41 +00004913L: storagedev@pmcs.com
4914L: linux-scsi@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004915S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004916F: Documentation/blockdev/cciss.txt
4917F: drivers/block/cciss*
4918F: include/linux/cciss_ioctl.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004919F: include/uapi/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004920
Linus Torvalds1da177e2005-04-16 15:20:36 -07004921HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02004922L: linux-fsdevel@vger.kernel.org
4923S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004924F: Documentation/filesystems/hfs.txt
4925F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004926
Geert Uytterhoevenef575f42014-01-23 15:54:21 -08004927HFSPLUS FILESYSTEM
4928L: linux-fsdevel@vger.kernel.org
4929S: Orphan
4930F: Documentation/filesystems/hfsplus.txt
4931F: fs/hfsplus/
4932
Linus Torvalds1da177e2005-04-16 15:20:36 -07004933HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004934M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004935L: linux-nvidia@lists.surfsouth.com
4936W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
4937S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09004938F: drivers/video/fbdev/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004939
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004940HIBERNATION (aka Software Suspend, aka swsusp)
Rafael J. Wysocki49db1902013-10-09 01:47:53 +02004941M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Rafael J. Wysocki7fb06082014-03-20 03:34:47 +01004942M: Pavel Machek <pavel@ucw.cz>
WANG Congbf1c1382011-10-08 20:57:50 +02004943L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004944S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004945F: arch/x86/power/
4946F: drivers/base/power/
4947F: kernel/power/
4948F: include/linux/suspend.h
4949F: include/linux/freezer.h
4950F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07004951F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004952
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01004953HID CORE LAYER
Jiri Kosinae5f64502015-08-09 09:11:34 +02004954M: Jiri Kosina <jikos@kernel.org>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04004955L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004956T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01004957S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004958F: drivers/hid/
4959F: include/linux/hid*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004960F: include/uapi/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01004961
Srinivas Pandruvada30ee72f2015-05-15 11:35:38 -07004962HID SENSOR HUB DRIVERS
Jiri Kosinae5f64502015-08-09 09:11:34 +02004963M: Jiri Kosina <jikos@kernel.org>
Srinivas Pandruvada30ee72f2015-05-15 11:35:38 -07004964M: Jonathan Cameron <jic23@kernel.org>
4965M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
4966L: linux-input@vger.kernel.org
4967L: linux-iio@vger.kernel.org
4968S: Maintained
4969F: Documentation/hid/hid-sensor*
4970F: drivers/hid/hid-sensor-*
4971F: drivers/iio/*/hid-*
4972F: include/linux/hid-sensor-*
4973
Ingo Molnar38bed542007-02-22 09:09:34 +01004974HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07004975M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar981c3a42014-01-21 10:59:20 +01004976L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004977T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Ingo Molnar38bed542007-02-22 09:09:34 +01004978S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004979F: Documentation/timers/
Thomas Gleixner5cee9642014-06-22 12:06:40 +02004980F: kernel/time/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01004981F: kernel/time/clockevents.c
4982F: kernel/time/tick*.*
4983F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07004984F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07004985F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01004986
Linus Torvalds1da177e2005-04-16 15:20:36 -07004987HIGH-SPEED SCC DRIVER FOR AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -07004988L: linux-hams@vger.kernel.org
Uwe Kleine-König8b64f2a2012-05-29 15:07:11 -07004989S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004990F: drivers/net/hamradio/dmascc.c
4991F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004992
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08004993HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004994M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08004995W: http://www.highpoint-tech.com
4996S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004997F: Documentation/scsi/hptiop.txt
4998F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08004999
Linus Torvalds1da177e2005-04-16 15:20:36 -07005000HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07005001M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005002L: linux-hippi@sunsite.dk
5003S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005004F: include/linux/hippidevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005005F: include/uapi/linux/if_hippi.h
Joe Perches679655d2009-04-07 20:44:32 -07005006F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07005007F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005008
Jouni Malinenff1d2762005-05-12 22:54:16 -04005009HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005010M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07005011L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07005012L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04005013W: http://hostap.epitest.fi/
5014S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005015F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04005016
Carlos Corbachodd8cd772008-02-05 02:17:15 +00005017HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd09448532010-02-11 10:40:13 -05005018L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01005019S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005020F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00005021
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005022HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07005023M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005024S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07005025F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005026
Joe Perches7d2c86b2009-04-07 20:59:01 -07005027HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07005028M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08005029S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005030F: Documentation/timers/hpet.txt
5031F: drivers/char/hpet.c
5032F: include/linux/hpet.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005033F: include/uapi/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08005034
Jiri Kosinae07b5d72010-03-18 10:59:57 +01005035HPET: x86
Joe Perches9e06f632014-04-03 14:48:53 -07005036S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005037F: arch/x86/kernel/hpet.c
5038F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08005039
Linus Torvalds1da177e2005-04-16 15:20:36 -07005040HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005041M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005042W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
5043S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005044F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005045
Sebastian Reichel3441cde2013-11-27 10:17:22 +01005046HSI SUBSYSTEM
Sebastian Reichel56459ea2014-03-28 19:57:59 +01005047M: Sebastian Reichel <sre@kernel.org>
5048T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
Sebastian Reichel3441cde2013-11-27 10:17:22 +01005049S: Maintained
5050F: Documentation/ABI/testing/sysfs-bus-hsi
Sebastian Reichel56459ea2014-03-28 19:57:59 +01005051F: Documentation/hsi.txt
Sebastian Reichel3441cde2013-11-27 10:17:22 +01005052F: drivers/hsi/
5053F: include/linux/hsi/
5054F: include/uapi/linux/hsi/
5055
Joe Perches7d2c86b2009-04-07 20:59:01 -07005056HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005057M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00005058W: http://www.pharscape.org
5059S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005060F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00005061
Arvid Brodin19990e22013-11-29 23:36:00 +01005062HSR NETWORK PROTOCOL
5063M: Arvid Brodin <arvid.brodin@alten.se>
5064L: netdev@vger.kernel.org
5065S: Maintained
5066F: net/hsr/
5067
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04005068HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005069M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04005070L: linux-input@vger.kernel.org
5071S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005072F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04005073
Linus Torvalds1da177e2005-04-16 15:20:36 -07005074HUGETLB FILESYSTEM
Nadia Yvette Chambers6d49e352012-12-06 10:39:54 +01005075M: Nadia Yvette Chambers <nyc@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005076S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005077F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005078
K. Y. Srinivasan05183182011-12-01 14:31:30 -08005079Hyper-V CORE AND DRIVERS
Joe Perches9c3646d2015-06-25 15:02:00 -07005080M: "K. Y. Srinivasan" <kys@microsoft.com>
K. Y. Srinivasan05183182011-12-01 14:31:30 -08005081M: Haiyang Zhang <haiyangz@microsoft.com>
5082L: devel@linuxdriverproject.org
5083S: Maintained
Haiyang Zhanga4162742013-05-09 14:34:55 -07005084F: arch/x86/include/asm/mshyperv.h
5085F: arch/x86/include/uapi/asm/hyperv.h
5086F: arch/x86/kernel/cpu/mshyperv.c
K. Y. Srinivasan05183182011-12-01 14:31:30 -08005087F: drivers/hid/hid-hyperv.c
Haiyang Zhanga4162742013-05-09 14:34:55 -07005088F: drivers/hv/
Haiyang Zhangf92ca802013-11-21 14:32:10 -08005089F: drivers/input/serio/hyperv-keyboard.c
K. Y. Srinivasan05183182011-12-01 14:31:30 -08005090F: drivers/net/hyperv/
Haiyang Zhanga4162742013-05-09 14:34:55 -07005091F: drivers/scsi/storvsc_drv.c
Jingoo Han8a61f012014-07-01 15:36:01 +09005092F: drivers/video/fbdev/hyperv_fb.c
Haiyang Zhanga4162742013-05-09 14:34:55 -07005093F: include/linux/hyperv.h
5094F: tools/hv/
Dexuan Cui54bf7252015-08-05 00:52:45 -07005095F: Documentation/ABI/stable/sysfs-bus-vmbus
K. Y. Srinivasan05183182011-12-01 14:31:30 -08005096
Jean Delvared85c8a6a2012-11-13 22:27:19 +01005097I2C OVER PARALLEL PORT
Jiri Slabyd8130622015-07-17 16:23:20 -07005098M: Jean Delvare <jdelvare@suse.com>
Jean Delvared85c8a6a2012-11-13 22:27:19 +01005099L: linux-i2c@vger.kernel.org
5100S: Maintained
5101F: Documentation/i2c/busses/i2c-parport
5102F: Documentation/i2c/busses/i2c-parport-light
5103F: drivers/i2c/busses/i2c-parport.c
5104F: drivers/i2c/busses/i2c-parport-light.c
5105
5106I2C/SMBUS CONTROLLER DRIVERS FOR PC
Jiri Slabyd8130622015-07-17 16:23:20 -07005107M: Jean Delvare <jdelvare@suse.com>
Jean Delvared85c8a6a2012-11-13 22:27:19 +01005108L: linux-i2c@vger.kernel.org
5109S: Maintained
5110F: Documentation/i2c/busses/i2c-ali1535
5111F: Documentation/i2c/busses/i2c-ali1563
5112F: Documentation/i2c/busses/i2c-ali15x3
5113F: Documentation/i2c/busses/i2c-amd756
5114F: Documentation/i2c/busses/i2c-amd8111
5115F: Documentation/i2c/busses/i2c-i801
5116F: Documentation/i2c/busses/i2c-nforce2
5117F: Documentation/i2c/busses/i2c-piix4
5118F: Documentation/i2c/busses/i2c-sis5595
5119F: Documentation/i2c/busses/i2c-sis630
5120F: Documentation/i2c/busses/i2c-sis96x
5121F: Documentation/i2c/busses/i2c-via
5122F: Documentation/i2c/busses/i2c-viapro
5123F: drivers/i2c/busses/i2c-ali1535.c
5124F: drivers/i2c/busses/i2c-ali1563.c
5125F: drivers/i2c/busses/i2c-ali15x3.c
5126F: drivers/i2c/busses/i2c-amd756.c
5127F: drivers/i2c/busses/i2c-amd756-s4882.c
5128F: drivers/i2c/busses/i2c-amd8111.c
5129F: drivers/i2c/busses/i2c-i801.c
5130F: drivers/i2c/busses/i2c-isch.c
5131F: drivers/i2c/busses/i2c-nforce2.c
5132F: drivers/i2c/busses/i2c-nforce2-s4985.c
5133F: drivers/i2c/busses/i2c-piix4.c
5134F: drivers/i2c/busses/i2c-sis5595.c
5135F: drivers/i2c/busses/i2c-sis630.c
5136F: drivers/i2c/busses/i2c-sis96x.c
5137F: drivers/i2c/busses/i2c-via.c
5138F: drivers/i2c/busses/i2c-viapro.c
5139
Neil Hormancb7f07a2013-02-10 11:59:03 -05005140I2C/SMBUS ISMT DRIVER
5141M: Seth Heasley <seth.heasley@intel.com>
5142M: Neil Horman <nhorman@tuxdriver.com>
5143L: linux-i2c@vger.kernel.org
5144F: drivers/i2c/busses/i2c-ismt.c
5145F: Documentation/i2c/busses/i2c-ismt
5146
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005147I2C/SMBUS STUB DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07005148M: Jean Delvare <jdelvare@suse.com>
Jean Delvare846557d2008-10-30 15:55:47 +01005149L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005150S: Maintained
Cesar Eduardo Barros8547a5b2012-12-16 21:11:54 +01005151F: drivers/i2c/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005152
Jean Delvare5b543962005-08-15 19:51:02 +02005153I2C SUBSYSTEM
Wolfram Sang14d77c42013-02-08 20:54:40 +01005154M: Wolfram Sang <wsa@the-dreams.de>
Jean Delvare846557d2008-10-30 15:55:47 +01005155L: linux-i2c@vger.kernel.org
Wolfram Sang9d4ea272014-04-02 20:25:59 +02005156W: https://i2c.wiki.kernel.org/
5157Q: https://patchwork.ozlabs.org/project/linux-i2c/list/
Wolfram Sang14d77c42013-02-08 20:54:40 +01005158T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005159S: Maintained
Wolfram Sang40ed1b42014-12-08 10:53:13 +01005160F: Documentation/devicetree/bindings/i2c/
Joe Perches679655d2009-04-07 20:44:32 -07005161F: Documentation/i2c/
5162F: drivers/i2c/
5163F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01005164F: include/linux/i2c-*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005165F: include/uapi/linux/i2c.h
5166F: include/uapi/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005167
Wolfram Sang4560d672014-08-19 10:08:35 -05005168I2C ACPI SUPPORT
5169M: Mika Westerberg <mika.westerberg@linux.intel.com>
5170L: linux-i2c@vger.kernel.org
5171L: linux-acpi@vger.kernel.org
5172S: Maintained
Wolfram Sang4560d672014-08-19 10:08:35 -05005173
Jean Delvared85c8a6a2012-11-13 22:27:19 +01005174I2C-TAOS-EVM DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07005175M: Jean Delvare <jdelvare@suse.com>
Jean Delvared85c8a6a2012-11-13 22:27:19 +01005176L: linux-i2c@vger.kernel.org
5177S: Maintained
5178F: Documentation/i2c/busses/i2c-taos-evm
5179F: drivers/i2c/busses/i2c-taos-evm.c
5180
Till Harbaume8c76ee2007-05-01 23:26:35 +02005181I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005182M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01005183L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07005184W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02005185S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005186F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02005187
Linus Torvalds1da177e2005-04-16 15:20:36 -07005188i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07005189M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005190S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005191F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005192
5193i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07005194M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07005195T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005196S: Maintained
5197
Linus Torvalds1da177e2005-04-16 15:20:36 -07005198IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07005199M: Tony Luck <tony.luck@intel.com>
5200M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005201L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07005202T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005203S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005204F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005205
Leonidas Da Silva Barbosa4cd38752015-08-08 18:29:27 -03005206IBM Power VMX Cryptographic instructions
5207M: Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
Paulo Flabiano Smorigo5cd01fe2015-08-10 16:14:17 -03005208M: Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
Leonidas Da Silva Barbosa4cd38752015-08-08 18:29:27 -03005209L: linux-crypto@vger.kernel.org
5210S: Supported
5211F: drivers/crypto/vmx/Makefile
5212F: drivers/crypto/vmx/Kconfig
5213F: drivers/crypto/vmx/vmx.c
5214F: drivers/crypto/vmx/aes*
5215F: drivers/crypto/vmx/ghash*
5216F: drivers/crypto/vmx/ppc-xlate.pl
5217
Kent Yoder956c2032012-09-07 04:17:01 +08005218IBM Power in-Nest Crypto Acceleration
Leonidas Da Silva Barbosa4cd38752015-08-08 18:29:27 -03005219M: Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
Paulo Flabiano Smorigo5cd01fe2015-08-10 16:14:17 -03005220M: Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
Kent Yoder956c2032012-09-07 04:17:01 +08005221L: linux-crypto@vger.kernel.org
5222S: Supported
Dan Streetman28bceea2015-06-18 12:28:32 -04005223F: drivers/crypto/nx/Makefile
5224F: drivers/crypto/nx/Kconfig
5225F: drivers/crypto/nx/nx-aes*
5226F: drivers/crypto/nx/nx-sha*
5227F: drivers/crypto/nx/nx.*
5228F: drivers/crypto/nx/nx_csbcpb.h
5229F: drivers/crypto/nx/nx_debugfs.h
Kent Yoder956c2032012-09-07 04:17:01 +08005230
Seth Jennings0e16aaf2012-07-19 09:42:40 -05005231IBM Power 842 compression accelerator
Dan Streetman41656aa2015-07-29 19:50:46 -04005232M: Dan Streetman <ddstreet@ieee.org>
Seth Jennings0e16aaf2012-07-19 09:42:40 -05005233S: Supported
Dan Streetman28bceea2015-06-18 12:28:32 -04005234F: drivers/crypto/nx/Makefile
5235F: drivers/crypto/nx/Kconfig
Dan Streetman7011a122015-05-07 13:49:17 -04005236F: drivers/crypto/nx/nx-842*
Dan Streetman2da572c2015-05-07 13:49:14 -04005237F: include/linux/sw842.h
Dan Streetman2062c5b2015-05-07 13:49:15 -04005238F: crypto/842.c
Dan Streetman2da572c2015-05-07 13:49:14 -04005239F: lib/842/
Seth Jennings0e16aaf2012-07-19 09:42:40 -05005240
Linus Torvalds1da177e2005-04-16 15:20:36 -07005241IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07005242M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005243S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005244F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005245
Santiago Leon9d348af2010-09-03 18:29:53 +00005246IBM Power Virtual Ethernet Device Driver
Thomas Falconeddd63a2015-01-09 14:29:40 -06005247M: Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
Santiago Leon9d348af2010-09-03 18:29:53 +00005248L: netdev@vger.kernel.org
5249S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07005250F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00005251
Nathan Fontenote6babec2014-04-09 13:32:06 -05005252IBM Power Virtual SCSI Device Drivers
Tyrel Datwylerbcbde522015-01-12 16:31:34 -08005253M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
Robert Jennings4b7652c2012-07-31 12:34:36 -05005254L: linux-scsi@vger.kernel.org
5255S: Supported
Nathan Fontenote6babec2014-04-09 13:32:06 -05005256F: drivers/scsi/ibmvscsi/ibmvscsi*
5257F: drivers/scsi/ibmvscsi/viosrp.h
5258
5259IBM Power Virtual FC Device Drivers
Tyrel Datwyler44b4dad2015-01-12 16:31:35 -08005260M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
Nathan Fontenote6babec2014-04-09 13:32:06 -05005261L: linux-scsi@vger.kernel.org
5262S: Supported
5263F: drivers/scsi/ibmvscsi/ibmvfc*
Robert Jennings4b7652c2012-07-31 12:34:36 -05005264
Linus Torvalds1da177e2005-04-16 15:20:36 -07005265IBM ServeRAID RAID DRIVER
Michael Opdenackerf9213e72014-08-08 14:23:50 -07005266S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005267F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005268
Peter Tyser6ed9f9c2012-04-18 09:48:24 -05005269ICH LPC AND GPIO DRIVER
5270M: Peter Tyser <ptyser@xes-inc.com>
5271S: Maintained
5272F: drivers/mfd/lpc_ich.c
5273F: drivers/gpio/gpio-ich.c
5274
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01005275IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005276M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005277L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005278Q: http://patchwork.ozlabs.org/project/linux-ide/list/
Joe Perches08deed12012-03-23 15:01:57 -07005279T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005280S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005281F: Documentation/ide/
5282F: drivers/ide/
5283F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005284
Ike Panhc6cb8c132011-08-25 22:28:45 +08005285IDEAPAD LAPTOP EXTRAS DRIVER
5286M: Ike Panhc <ike.pan@canonical.com>
5287L: platform-driver-x86@vger.kernel.org
5288W: http://launchpad.net/ideapad-laptop
5289S: Maintained
5290F: drivers/platform/x86/ideapad-laptop.c
5291
Andrey Moiseev1ea4c162013-08-25 22:51:15 -07005292IDEAPAD LAPTOP SLIDEBAR DRIVER
5293M: Andrey Moiseev <o2g.org.ru@gmail.com>
5294L: linux-input@vger.kernel.org
5295W: https://github.com/o2genum/ideapad-slidebar
5296S: Maintained
5297F: drivers/input/misc/ideapad_slidebar.c
5298
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02005299IDE/ATAPI DRIVERS
Borislav Petkov487ba8e2012-10-29 18:40:10 +01005300M: Borislav Petkov <bp@alien8.de>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01005301L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01005302S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005303F: Documentation/cdrom/ide-cd
5304F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005305
Andy Henroid27471fd2008-10-09 11:45:22 -07005306IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07005307M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02005308L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07005309S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005310F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07005311
Sergey Lapin02cf2282009-06-08 12:18:50 +00005312IEEE 802.15.4 SUBSYSTEM
Alexander Aringb6e195f2014-07-03 23:13:19 +02005313M: Alexander Aring <alex.aring@gmail.com>
Varka Bhadramebef9c12014-08-08 17:32:45 +05305314L: linux-wpan@vger.kernel.org
5315W: https://github.com/linux-wpan
5316T: git git://github.com/linux-wpan/linux-wpan-next.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00005317S: Maintained
5318F: net/ieee802154/
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00005319F: net/mac802154/
Cesar Eduardo Barros251741b2013-01-04 15:35:30 -08005320F: drivers/net/ieee802154/
Alexander Aring580947d2014-10-25 09:41:05 +02005321F: include/linux/nl802154.h
5322F: include/linux/ieee802154.h
5323F: include/net/nl802154.h
5324F: include/net/mac802154.h
5325F: include/net/af_ieee802154.h
5326F: include/net/cfg802154.h
5327F: include/net/ieee802154_netdev.h
Varka Bhadramebef9c12014-08-08 17:32:45 +05305328F: Documentation/networking/ieee802154.txt
Sergey Lapin02cf2282009-06-08 12:18:50 +00005329
Sean Youngb1c97192014-10-23 17:58:22 -03005330IGORPLUG-USB IR RECEIVER
5331M: Sean Young <sean@mess.org>
5332L: linux-media@vger.kernel.org
5333S: Maintained
5334F: drivers/media/rc/igorplugusb.c
5335
Sean Young40ad4a32012-11-19 10:32:53 -03005336IGUANAWORKS USB IR TRANSCEIVER
5337M: Sean Young <sean@mess.org>
5338L: linux-media@vger.kernel.org
5339S: Maintained
5340F: drivers/media/rc/iguanair.c
5341
Ameya Palande9545f862012-01-10 09:00:58 -08005342IIO SUBSYSTEM AND DRIVERS
Sachin Kamat030a13d2013-09-11 11:00:00 +01005343M: Jonathan Cameron <jic23@kernel.org>
Lars-Peter Clausenf0d61162014-08-18 09:29:00 +01005344R: Hartmut Knaack <knaack.h@gmx.de>
5345R: Lars-Peter Clausen <lars@metafoo.de>
5346R: Peter Meerwald <pmeerw@pmeerw.net>
Ameya Palande9545f862012-01-10 09:00:58 -08005347L: linux-iio@vger.kernel.org
5348S: Maintained
Lars-Peter Clausen03e7c252012-04-26 13:46:42 +02005349F: drivers/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08005350F: drivers/staging/iio/
Daniel Baluta8fe671f2014-11-13 15:19:47 -08005351F: include/linux/iio/
Roberta Dobrescu817020c2015-02-26 10:49:25 +02005352F: tools/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08005353
Stanislaw Gruszka65519262011-01-08 15:19:40 +01005354IKANOS/ADI EAGLE ADSL USB DRIVER
5355M: Matthieu Castet <castet.matthieu@free.fr>
5356M: Stanislaw Gruszka <stf_xl@wp.pl>
5357S: Maintained
5358F: drivers/usb/atm/ueagle-atm.c
5359
Guenter Roecke89ab512013-03-08 08:13:09 -08005360INA209 HARDWARE MONITOR DRIVER
5361M: Guenter Roeck <linux@roeck-us.net>
5362L: lm-sensors@lm-sensors.org
5363S: Maintained
5364F: Documentation/hwmon/ina209
5365F: Documentation/devicetree/bindings/i2c/ina209.txt
5366F: drivers/hwmon/ina209.c
5367
5368INA2XX HARDWARE MONITOR DRIVER
5369M: Guenter Roeck <linux@roeck-us.net>
5370L: lm-sensors@lm-sensors.org
5371S: Maintained
5372F: Documentation/hwmon/ina2xx
5373F: drivers/hwmon/ina2xx.c
5374F: include/linux/platform_data/ina2xx.h
5375
Samuel Iglesias Gonsalvez14dc1242012-11-16 16:19:59 +01005376INDUSTRY PACK SUBSYSTEM (IPACK)
5377M: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
5378M: Jens Taprogge <jens.taprogge@taprogge.org>
5379M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5380L: industrypack-devel@lists.sourceforge.net
5381W: http://industrypack.sourceforge.net
5382S: Maintained
5383F: drivers/ipack/
5384
Zubair Lutfullah Kakakhel8adc53f2015-03-18 16:16:37 +00005385INGENIC JZ4780 DMA Driver
5386M: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
5387S: Maintained
5388F: drivers/dma/dma-jz4780.c
5389
Mimi Zoharaa7168f2009-02-04 09:07:03 -05005390INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Mimi Zohar74dd7442014-02-27 08:44:45 -05005391M: Mimi Zohar <zohar@linux.vnet.ibm.com>
Dmitry Kasatkinbfd33c42015-01-15 14:18:18 +02005392M: Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
Mimi Zohar74dd7442014-02-27 08:44:45 -05005393L: linux-ima-devel@lists.sourceforge.net
5394L: linux-ima-user@lists.sourceforge.net
5395L: linux-security-module@vger.kernel.org
Mimi Zoharaa7168f2009-02-04 09:07:03 -05005396S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005397F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05005398
James Hogan9a4ea5a2014-11-17 09:17:49 -03005399IMGTEC IR DECODER DRIVER
5400M: James Hogan <james.hogan@imgtec.com>
5401S: Maintained
5402F: drivers/media/rc/img-ir/
5403
Linus Torvalds1da177e2005-04-16 15:20:36 -07005404IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005405L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09005406S: Orphan
Jingoo Han8a61f012014-07-01 15:36:01 +09005407F: drivers/video/fbdev/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005408
5409INFINIBAND SUBSYSTEM
Doug Ledfordb6b2bbe2015-05-05 12:57:09 -04005410M: Doug Ledford <dledford@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005411M: Sean Hefty <sean.hefty@intel.com>
5412M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07005413L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07005414W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08005415Q: http://patchwork.kernel.org/project/linux-rdma/list/
Doug Ledford2936ae02015-05-11 21:03:36 -04005416T: git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005417S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005418F: Documentation/infiniband/
5419F: drivers/infiniband/
Doug Ledford2dfcad32015-08-27 14:18:57 -04005420F: drivers/staging/rdma/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005421F: include/uapi/linux/if_infiniband.h
Yann Droneaud954138d2015-05-04 14:31:03 +02005422F: include/uapi/rdma/
5423F: include/rdma/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005424
Robert Lovec9f04f52005-07-15 12:21:07 -04005425INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07005426M: John McCutchan <john@johnmccutchan.com>
5427M: Robert Love <rlove@rlove.org>
5428M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04005429S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005430F: Documentation/filesystems/inotify.txt
5431F: fs/notify/inotify/
5432F: include/linux/inotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005433F: include/uapi/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04005434
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005435INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005436M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005437L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005438Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07005439T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005440S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005441F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07005442F: include/linux/input.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005443F: include/uapi/linux/input.h
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07005444F: include/linux/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005445
Henrik Rydberg3267a872010-06-24 19:10:40 -07005446INPUT MULTITOUCH (MT) PROTOCOL
Henrik Rydberg75dd1122015-01-08 14:32:21 -08005447M: Henrik Rydberg <rydberg@bitmath.org>
Henrik Rydberg3267a872010-06-24 19:10:40 -07005448L: linux-input@vger.kernel.org
Henrik Rydberg75dd1122015-01-08 14:32:21 -08005449S: Odd fixes
Henrik Rydberg3267a872010-06-24 19:10:40 -07005450F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01005451F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07005452K: \b(ABS|SYN)_MT_
5453
Jie Yang97fa99a2015-02-02 16:55:27 +08005454INTEL ASoC BDW/HSW DRIVERS
5455M: Jie Yang <yang.jie@linux.intel.com>
Jim Davise5747e42015-06-25 15:01:58 -07005456L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Jie Yang97fa99a2015-02-02 16:55:27 +08005457S: Supported
Joe Perchese8e12252015-06-30 14:59:39 -07005458F: sound/soc/intel/common/sst-dsp*
5459F: sound/soc/intel/common/sst-firmware.c
5460F: sound/soc/intel/boards/broadwell.c
5461F: sound/soc/intel/haswell/
Jie Yang97fa99a2015-02-02 16:55:27 +08005462
Dave Jiang4ac13e12011-07-29 17:16:55 -07005463INTEL C600 SERIES SAS CONTROLLER DRIVER
5464M: Intel SCU Linux support <intel-linux-scu@intel.com>
Lukasz Doraufdc58132014-04-07 15:39:58 -07005465M: Artur Paszkiewicz <artur.paszkiewicz@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07005466L: linux-scsi@vger.kernel.org
Dave Jiang71068912012-09-25 15:24:56 -07005467T: git git://git.code.sf.net/p/intel-sas/isci
5468S: Supported
Dave Jiang4ac13e12011-07-29 17:16:55 -07005469F: drivers/scsi/isci/
Dave Jiang4ac13e12011-07-29 17:16:55 -07005470
Len Brown26717172010-03-08 14:07:30 -05005471INTEL IDLE DRIVER
5472M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02005473L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005474T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05005475S: Supported
5476F: drivers/idle/intel_idle.c
5477
Kristen Carlson Accardi7c1ac182014-12-15 15:58:24 -08005478INTEL PSTATE DRIVER
5479M: Kristen Carlson Accardi <kristen@linux.intel.com>
5480L: linux-pm@vger.kernel.org
5481S: Supported
5482F: drivers/cpufreq/intel_pstate.c
5483
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005484INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08005485M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005486L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005487S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005488F: Documentation/fb/intelfb.txt
Jingoo Han8a61f012014-07-01 15:36:01 +09005489F: drivers/video/fbdev/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005490
Linus Torvalds1da177e2005-04-16 15:20:36 -07005491INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005492M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005493L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005494S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09005495F: drivers/video/fbdev/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005496
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05305497INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005498M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05005499L: platform-driver-x86@vger.kernel.org
Rafael J. Wysocki5ca92bd2013-10-10 23:03:44 +02005500W: https://01.org/linux-acpi
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05305501S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005502F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05305503
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07005504INTEL I/OAT DMA DRIVER
Dave Jiang18ebd562013-10-22 15:29:20 -07005505M: Dave Jiang <dave.jiang@intel.com>
Dan Williams08223d82014-08-19 06:07:56 -07005506R: Dan Williams <dan.j.williams@intel.com>
Dave Jiang18ebd562013-10-22 15:29:20 -07005507L: dmaengine@vger.kernel.org
5508Q: https://patchwork.kernel.org/project/linux-dmaengine/list/
5509S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005510F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07005511
David Woodhouse6c8909b2008-10-18 16:12:17 +01005512INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07005513M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01005514L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07005515T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01005516S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07005517F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07005518F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01005519
Dan Williamsb3e5f262007-08-07 10:26:35 -07005520INTEL IOP-ADMA DMA DRIVER
Dan Williams08223d82014-08-19 06:07:56 -07005521R: Dan Williams <dan.j.williams@intel.com>
Dan Williams1dd83722012-08-15 19:20:02 -07005522S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07005523F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07005524
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01005525INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Krzysztof Hałasa5529c2c2014-09-30 10:32:58 +02005526M: Krzysztof Halasa <khalasa@piap.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01005527S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005528F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
5529F: arch/arm/mach-ixp4xx/include/mach/npe.h
5530F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
5531F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07005532F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07005533F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01005534
Michael Buesch844dd052006-06-26 00:24:59 -07005535INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005536M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07005537S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005538F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07005539
Jeff Kirsher2f302322015-03-25 17:01:03 -07005540INTEL ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005541M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Jeff Kirsher2f302322015-03-25 17:01:03 -07005542R: Jesse Brandeburg <jesse.brandeburg@intel.com>
5543R: Shannon Nelson <shannon.nelson@intel.com>
5544R: Carolyn Wyborny <carolyn.wyborny@intel.com>
5545R: Don Skidmore <donald.c.skidmore@intel.com>
5546R: Matthew Vick <matthew.vick@intel.com>
5547R: John Ronciak <john.ronciak@intel.com>
5548R: Mitch Williams <mitch.a.williams@intel.com>
5549L: intel-wired-lan@lists.osuosl.org
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00005550W: http://www.intel.com/support/feedback.htm
Auke Kokd94e6fe2008-03-03 14:37:47 -08005551W: http://e1000.sourceforge.net/
Jeff Kirsher2f302322015-03-25 17:01:03 -07005552Q: http://patchwork.ozlabs.org/project/intel-wired-lan/list/
5553T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
5554T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005555S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00005556F: Documentation/networking/e100.txt
5557F: Documentation/networking/e1000.txt
5558F: Documentation/networking/e1000e.txt
5559F: Documentation/networking/igb.txt
5560F: Documentation/networking/igbvf.txt
5561F: Documentation/networking/ixgb.txt
5562F: Documentation/networking/ixgbe.txt
5563F: Documentation/networking/ixgbevf.txt
Jesse Brandeburg1bff6522013-09-11 08:40:23 +00005564F: Documentation/networking/i40e.txt
Greg Rose105bf2f2013-12-21 06:13:16 +00005565F: Documentation/networking/i40evf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07005566F: drivers/net/ethernet/intel/
Joe Perchesbc90d292014-02-25 13:35:53 -08005567F: drivers/net/ethernet/intel/*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005568
Linus Walleij0963d59b2013-10-19 15:39:17 +02005569INTEL-MID GPIO DRIVER
5570M: David Cohen <david.a.cohen@linux.intel.com>
5571L: linux-gpio@vger.kernel.org
5572S: Maintained
5573F: drivers/gpio/gpio-intel-mid.c
5574
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04005575INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
5576M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07005577L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04005578S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005579F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07005580F: Documentation/networking/README.ipw2200
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04005581F: drivers/net/wireless/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06005582
Alexander Shishkin5760b0a2015-09-22 15:47:20 +03005583INTEL(R) TRACE HUB
5584M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
5585S: Supported
5586F: Documentation/trace/intel_th.txt
5587F: drivers/hwtracing/intel_th/
5588
Shane Wang4bd96a72010-03-10 14:36:10 +08005589INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
Gang Weie9b7d7c2012-09-17 14:08:59 -07005590M: Richard L Maliszewski <richard.l.maliszewski@intel.com>
5591M: Gang Wei <gang.wei@intel.com>
Shane Wang4bd96a72010-03-10 14:36:10 +08005592M: Shane Wang <shane.wang@intel.com>
5593L: tboot-devel@lists.sourceforge.net
5594W: http://tboot.sourceforge.net
Gang Weie9b7d7c2012-09-17 14:08:59 -07005595T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
Shane Wang4bd96a72010-03-10 14:36:10 +08005596S: Supported
5597F: Documentation/intel_txt.txt
5598F: include/linux/tboot.h
5599F: arch/x86/kernel/tboot.c
5600
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08005601INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07005602M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08005603M: linux-wimax@intel.com
Joe Perches49e7d9d2015-04-15 16:17:31 -07005604L: wimax@linuxwimax.org (subscribers-only)
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08005605S: Supported
5606W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07005607F: Documentation/wimax/README.i2400m
5608F: drivers/net/wimax/i2400m/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005609F: include/uapi/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08005610
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01005611INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
5612M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08005613L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01005614S: Supported
Wey-Yi Guyefa31442011-02-22 16:43:05 -08005615F: drivers/net/wireless/iwlegacy/
5616
Zhu Yib481de92007-09-25 17:54:57 -07005617INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07005618M: Johannes Berg <johannes.berg@intel.com>
Johannes Berg6161b022013-07-23 14:03:39 +02005619M: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
Johannes Berg7b9aebf2015-09-08 17:03:20 +02005620M: Intel Linux Wireless <linuxwifi@intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07005621L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07005622W: http://intellinuxwireless.org
Wey-Yi Guyb62ff712011-09-22 15:14:49 -07005623T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07005624S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005625F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07005626
Tomas Winklerde8fe022012-05-09 16:39:02 +03005627INTEL MANAGEMENT ENGINE (mei)
5628M: Tomas Winkler <tomas.winkler@intel.com>
5629L: linux-kernel@vger.kernel.org
5630S: Supported
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005631F: include/uapi/linux/mei.h
Tomas Winkler5069288b2015-06-13 22:11:33 +03005632F: include/linux/mei_cl_bus.h
Tomas Winklerde8fe022012-05-09 16:39:02 +03005633F: drivers/misc/mei/*
Cesar Eduardo Barrose07950a12013-01-04 15:35:36 -08005634F: Documentation/misc-devices/mei/*
Tomas Winklerde8fe022012-05-09 16:39:02 +03005635
Sudeep Dutt50ceb982015-10-13 11:21:19 -07005636INTEL MIC DRIVERS (mic)
5637M: Sudeep Dutt <sudeep.dutt@intel.com>
5638M: Ashutosh Dixit <ashutosh.dixit@intel.com>
5639S: Supported
5640W: https://github.com/sudeepdutt/mic
5641W: http://software.intel.com/en-us/mic-developer
5642F: include/linux/mic_bus.h
5643F: include/linux/scif.h
5644F: include/uapi/linux/mic_common.h
5645F: include/uapi/linux/mic_ioctl.h
5646F include/uapi/linux/scif_ioctl.h
5647F: drivers/misc/mic/
5648F: drivers/dma/mic_x100_dma.c
5649F: drivers/dma/mic_x100_dma.h
5650F Documentation/mic/
5651
qipeng.zha0a8b8352015-06-27 00:32:15 +08005652INTEL PMC IPC DRIVER
5653M: Zha Qipeng<qipeng.zha@intel.com>
5654L: platform-driver-x86@vger.kernel.org
5655S: Maintained
5656F: drivers/platform/x86/intel_pmc_ipc.c
5657F: arch/x86/include/asm/intel_pmc_ipc.h
5658
Ralf Baechlecb109a02007-08-30 23:56:30 -07005659IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005660M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005661L: linux-mips@linux-mips.org
5662S: Maintained
Jeff Kirsher8862bf12011-05-20 07:50:27 -07005663F: drivers/net/ethernet/sgi/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005664
Ralf Baechlecb109a02007-08-30 23:56:30 -07005665IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005666M: Pat Gefre <pfg@sgi.com>
Ralf Baechled39e0722010-10-19 18:32:41 +01005667L: linux-serial@vger.kernel.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07005668S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08005669F: drivers/tty/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07005670
Stephen Warren0b6e8562013-09-13 13:10:27 -06005671IOMMU DRIVERS
5672M: Joerg Roedel <joro@8bytes.org>
5673L: iommu@lists.linux-foundation.org
5674T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
5675S: Maintained
5676F: drivers/iommu/
5677
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005678IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07005679M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005680S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005681F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005682
Francois Romieu1202d6f2007-09-17 17:13:55 -07005683IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005684M: Francois Romieu <romieu@fr.zoreil.com>
5685M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07005686L: netdev@vger.kernel.org
5687S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07005688F: drivers/net/ethernet/icplus/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07005689
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005690IPATH DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04005691M: Mike Marciniszyn <infinipath@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07005692L: linux-rdma@vger.kernel.org
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07005693S: Maintained
Dennis Dalessandro6f9b3892015-07-30 09:25:42 -04005694F: drivers/staging/rdma/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08005695
Corey Minyard4409ebe2006-04-20 02:43:12 -07005696IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005697M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08005698L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07005699W: http://openipmi.sourceforge.net/
5700S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005701F: Documentation/IPMI.txt
5702F: drivers/char/ipmi/
5703F: include/linux/ipmi*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005704F: include/uapi/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07005705
Kenneth Westfield2d800892015-03-03 16:21:50 -08005706QCOM AUDIO (ASoC) DRIVERS
5707M: Patrick Lai <plai@codeaurora.org>
5708M: Banajit Goswami <bgoswami@codeaurora.org>
5709L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5710S: Supported
5711F: sound/soc/qcom/
5712
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005713IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005714M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005715L: linux-scsi@vger.kernel.org
5716W: http://www.adaptec.com/
5717S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005718F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005719
5720IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07005721M: Wensong Zhang <wensong@linux-vs.org>
5722M: Simon Horman <horms@verge.net.au>
5723M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005724L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005725L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005726S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005727F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07005728F: include/net/ip_vs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005729F: include/uapi/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07005730F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005731
Randy Dunlape7839f22008-10-12 16:11:45 -07005732IPWIRELESS DRIVER
Jiri Kosinae5f64502015-08-09 09:11:34 +02005733M: Jiri Kosina <jikos@kernel.org>
Jiri Slabyd8130622015-07-17 16:23:20 -07005734M: David Sterba <dsterba@suse.com>
Jiri Kosina92094aa2011-11-13 21:41:00 +01005735S: Odd Fixes
Greg Kroah-Hartman282361a2011-02-22 16:23:22 -08005736F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01005737
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005738IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005739M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005740L: netdev@vger.kernel.org
5741S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005742F: include/net/ipx.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005743F: include/uapi/linux/ipx.h
Joe Perches679655d2009-04-07 20:44:32 -07005744F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005745
Linus Torvalds1da177e2005-04-16 15:20:36 -07005746IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005747M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07005748L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01005749L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005750W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07005751S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02005752T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07005753F: Documentation/networking/irda.txt
5754F: drivers/net/irda/
5755F: include/net/irda/
5756F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005757
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02005758IRQ SUBSYSTEM
5759M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar981c3a42014-01-21 10:59:20 +01005760L: linux-kernel@vger.kernel.org
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02005761S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005762T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02005763F: kernel/irq/
Jason Cooper2ed9fd22014-05-13 18:47:01 +00005764
5765IRQCHIP DRIVERS
5766M: Thomas Gleixner <tglx@linutronix.de>
5767M: Jason Cooper <jason@lakedaemon.net>
Thomas Gleixner54d9ffc2015-07-30 12:38:06 +02005768M: Marc Zyngier <marc.zyngier@arm.com>
Jason Cooper2ed9fd22014-05-13 18:47:01 +00005769L: linux-kernel@vger.kernel.org
5770S: Maintained
5771T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5772T: git git://git.infradead.org/users/jcooper/linux.git irqchip/core
Geert Uytterhoeven5b5a9062014-08-28 09:56:47 +02005773F: Documentation/devicetree/bindings/interrupt-controller/
Thomas Petazzoniedd96902012-10-28 10:05:40 +01005774F: drivers/irqchip/
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02005775
Grant Likely7ab3a832012-02-14 14:06:47 -07005776IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
Thomas Gleixnerb09dec22015-07-30 12:40:55 +02005777M: Jiang Liu <jiang.liu@linux.intel.com>
5778M: Marc Zyngier <marc.zyngier@arm.com>
Grant Likely7ab3a832012-02-14 14:06:47 -07005779S: Maintained
Thomas Gleixnerb09dec22015-07-30 12:40:55 +02005780T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Grant Likely7ab3a832012-02-14 14:06:47 -07005781F: Documentation/IRQ-domain.txt
5782F: include/linux/irqdomain.h
5783F: kernel/irq/irqdomain.c
Thomas Gleixnerb09dec22015-07-30 12:40:55 +02005784F: kernel/irq/msi.c
Grant Likely7ab3a832012-02-14 14:06:47 -07005785
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005786ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07005787M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005788S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005789F: Documentation/isapnp.txt
5790F: drivers/pnp/isapnp/
5791F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005792
Hans Verkuild39b84202012-11-23 07:07:02 -03005793ISA RADIO MODULE
5794M: Hans Verkuil <hverkuil@xs4all.nl>
5795L: linux-media@vger.kernel.org
5796T: git git://linuxtv.org/media_tree.git
5797W: http://linuxtv.org
5798S: Maintained
5799F: drivers/media/radio/radio-isa*
5800
Harry Wei71a6d0a2011-05-11 15:13:33 -07005801iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
5802M: Peter Jones <pjones@redhat.com>
5803M: Konrad Rzeszutek Wilk <konrad@kernel.org>
5804S: Maintained
5805F: drivers/firmware/iscsi_ibft*
5806
Mike Christie14816b1e2007-11-28 16:22:06 -08005807ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07005808M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b1e2007-11-28 16:22:06 -08005809L: open-iscsi@googlegroups.com
5810W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07005811T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08005812S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005813F: drivers/scsi/*iscsi*
5814F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08005815
Or Gerlitz1e65eb42013-05-08 12:21:19 +00005816ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
5817M: Or Gerlitz <ogerlitz@mellanox.com>
Or Gerlitzb261aea2014-10-01 14:02:17 +03005818M: Sagi Grimberg <sagig@mellanox.com>
Or Gerlitz1e65eb42013-05-08 12:21:19 +00005819M: Roi Dayan <roid@mellanox.com>
5820L: linux-rdma@vger.kernel.org
5821S: Supported
5822W: http://www.openfabrics.org
5823W: www.open-iscsi.org
5824Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches14430812013-09-11 14:23:50 -07005825F: drivers/infiniband/ulp/iser/
Or Gerlitz1e65eb42013-05-08 12:21:19 +00005826
Sagi Grimberg2b70e5f2015-01-07 12:54:44 +02005827ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
5828M: Sagi Grimberg <sagig@mellanox.com>
5829T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
5830L: linux-rdma@vger.kernel.org
5831L: target-devel@vger.kernel.org
5832S: Supported
5833W: http://www.linux-iscsi.org
5834F: drivers/infiniband/ulp/isert
5835
Linus Torvalds1da177e2005-04-16 15:20:36 -07005836ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005837M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07005838L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07005839L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005840W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07005841T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005842S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005843F: Documentation/isdn/
5844F: drivers/isdn/
5845F: include/linux/isdn.h
5846F: include/linux/isdn/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005847F: include/uapi/linux/isdn.h
5848F: include/uapi/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005849
5850ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07005851M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07005852L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005853W: http://www.melware.de
5854S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005855F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005856
Jean Delvared6248702010-03-05 22:17:20 +01005857IT87 HARDWARE MONITORING DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07005858M: Jean Delvare <jdelvare@suse.com>
Jean Delvared6248702010-03-05 22:17:20 +01005859L: lm-sensors@lm-sensors.org
5860S: Maintained
5861F: Documentation/hwmon/it87
5862F: drivers/hwmon/it87.c
5863
Malcolm Priestley68620bd2012-11-04 19:16:31 +01005864IT913X MEDIA DRIVER
Antti Palosaarid7104bf2013-03-09 22:58:13 -03005865M: Antti Palosaari <crope@iki.fi>
5866L: linux-media@vger.kernel.org
5867W: http://linuxtv.org/
5868W: http://palosaari.fi/linux/
5869Q: http://patchwork.linuxtv.org/project/linux-media/list/
5870T: git git://linuxtv.org/anttip/media_tree.git
5871S: Maintained
Antti Palosaari249c6972014-09-01 19:44:59 -03005872F: drivers/media/tuners/it913x*
Antti Palosaarid7104bf2013-03-09 22:58:13 -03005873
Hans Verkuil91821ff2007-12-02 09:35:33 -03005874IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03005875M: Andy Walls <awalls@md.metrocast.net>
Joe Perches7b212ed2014-12-10 15:51:24 -08005876L: ivtv-devel@ivtvdriver.org (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005877L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005878T: git git://linuxtv.org/media_tree.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03005879W: http://www.ivtvdriver.org
5880S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005881F: Documentation/video4linux/*.ivtv
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005882F: drivers/media/pci/ivtv/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005883F: include/uapi/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03005884
Malcolm Priestley68620bd2012-11-04 19:16:31 +01005885IX2505V MEDIA DRIVER
5886M: Malcolm Priestley <tvboxspy@gmail.com>
5887L: linux-media@vger.kernel.org
5888W: http://linuxtv.org/
5889Q: http://patchwork.linuxtv.org/project/linux-media/list/
5890S: Maintained
5891F: drivers/media/dvb-frontends/ix2505v*
5892
Guenter Roeck4453d732010-08-09 17:21:08 -07005893JC42.4 TEMPERATURE SENSOR DRIVER
5894M: Guenter Roeck <linux@roeck-us.net>
5895L: lm-sensors@lm-sensors.org
5896S: Maintained
5897F: drivers/hwmon/jc42.c
5898F: Documentation/hwmon/jc42
5899
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005900JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06005901M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005902L: jfs-discussion@lists.sourceforge.net
5903W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07005904T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05005905S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005906F: Documentation/filesystems/jfs.txt
5907F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005908
Guo-Fu Tseng95252232008-09-16 01:00:11 +08005909JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005910M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08005911L: netdev@vger.kernel.org
5912S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07005913F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08005914
Linus Torvalds1da177e2005-04-16 15:20:36 -07005915JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07005916M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04005917L: linux-mtd@lists.infradead.org
5918W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07005919S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005920F: fs/jffs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005921F: include/uapi/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005922
Theodore Ts'od183e112011-05-26 09:53:09 -04005923JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
5924M: "Theodore Ts'o" <tytso@mit.edu>
Jan Karac290ea02015-06-18 16:52:29 +02005925M: Jan Kara <jack@suse.com>
Theodore Ts'od183e112011-05-26 09:53:09 -04005926L: linux-ext4@vger.kernel.org
5927S: Maintained
5928F: fs/jbd2/
5929F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07005930
Mikhail Ulyanov207dab52015-07-22 08:23:05 -03005931JPU V4L2 MEM2MEM DRIVER FOR RENESAS
5932M: Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
5933L: linux-media@vger.kernel.org
5934S: Maintained
5935F: drivers/media/platform/rcar_jpu.c
5936
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03005937JSM Neo PCI based serial card
Thadeu Lima de Souza Cascardo9d141cb2013-05-22 15:15:24 -03005938M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03005939L: linux-serial@vger.kernel.org
5940S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08005941F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03005942
Clemens Ladischaf399172011-01-10 16:32:54 +01005943K10TEMP HARDWARE MONITORING DRIVER
5944M: Clemens Ladisch <clemens@ladisch.de>
5945L: lm-sensors@lm-sensors.org
5946S: Maintained
5947F: Documentation/hwmon/k10temp
5948F: drivers/hwmon/k10temp.c
5949
Rudolf Marek4660cb32006-10-08 22:01:26 +02005950K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005951M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02005952L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005953S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005954F: Documentation/hwmon/k8temp
5955F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005956
5957KCONFIG
Michal Marek5eb1f992013-10-30 12:02:27 +01005958M: "Yann E. MORIN" <yann.morin.1998@free.fr>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02005959L: linux-kbuild@vger.kernel.org
Joe Perchescea83212014-03-03 15:38:38 -08005960T: git git://gitorious.org/linux-kconfig/linux-kconfig
Michal Marek5eb1f992013-10-30 12:02:27 +01005961S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005962F: Documentation/kbuild/kconfig-language.txt
5963F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005964
Vivek Goyalea6c2082006-05-20 14:59:55 -07005965KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07005966M: Vivek Goyal <vgoyal@redhat.com>
5967M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07005968L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07005969W: http://lse.sourceforge.net/kdump/
5970S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005971F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07005972
Hans Verkuilf41bf022012-11-23 07:04:36 -03005973KEENE FM RADIO TRANSMITTER DRIVER
5974M: Hans Verkuil <hverkuil@xs4all.nl>
5975L: linux-media@vger.kernel.org
5976T: git git://linuxtv.org/media_tree.git
5977W: http://linuxtv.org
5978S: Maintained
5979F: drivers/media/radio/radio-keene*
5980
Linus Torvalds1da177e2005-04-16 15:20:36 -07005981KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07005982M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08005983L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005984S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005985F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005986
Michal Marek70fb7ba2010-01-29 14:22:43 +01005987KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Jiri Slabyd8130622015-07-17 16:23:20 -07005988M: Michal Marek <mmarek@suse.com>
Joe Perches08deed12012-03-23 15:01:57 -07005989T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
5990T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02005991L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08005992S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005993F: Documentation/kbuild/
5994F: Makefile
5995F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01005996F: scripts/basic/
5997F: scripts/mk*
5998F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005999
6000KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07006001L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07006002W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07006003S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07006004
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04006005KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006006M: "J. Bruce Fields" <bfields@fieldses.org>
J. Bruce Fields883985f62015-08-24 16:44:40 -04006007M: Jeff Layton <jlayton@poochiereds.net>
Neil Brown16141c02007-12-11 16:16:12 -08006008L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006009W: http://nfs.sourceforge.net/
NeilBrown98fac23f2007-01-26 00:56:57 -08006010S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006011F: fs/nfsd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006012F: include/uapi/linux/nfsd/
Joe Perches679655d2009-04-07 20:44:32 -07006013F: fs/lockd/
6014F: fs/nfs_common/
6015F: net/sunrpc/
6016F: include/linux/lockd/
6017F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006018F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006019
Shuah Khan13b122b2014-10-13 15:51:21 -07006020KERNEL SELFTEST FRAMEWORK
6021M: Shuah Khan <shuahkh@osg.samsung.com>
6022L: linux-api@vger.kernel.org
6023T: git git://git.kernel.org/pub/scm/shuah/linux-kselftest
6024S: Maintained
6025F: tools/testing/selftests
6026
Avi Kivity426d62e2006-12-13 00:34:03 -08006027KERNEL VIRTUAL MACHINE (KVM)
Gleb Natapov0a00a772013-11-27 16:35:22 +02006028M: Gleb Natapov <gleb@kernel.org>
Paolo Bonzinic93a64f2013-05-15 19:02:24 +02006029M: Paolo Bonzini <pbonzini@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03006030L: kvm@vger.kernel.org
Ramkumar Ramachandrae3e58472013-10-31 16:16:34 +05306031W: http://www.linux-kvm.org
Ramkumar Ramachandraa94b40a2013-10-31 16:29:23 +05306032T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
Avi Kivity426d62e2006-12-13 00:34:03 -08006033S: Supported
Paolo Bonzinic93a64f2013-05-15 19:02:24 +02006034F: Documentation/*/kvm*.txt
6035F: Documentation/virtual/kvm/
Joe Perches679655d2009-04-07 20:44:32 -07006036F: arch/*/kvm/
Christian Borntraeger1662e862015-03-12 14:59:26 +01006037F: arch/x86/kernel/kvm.c
6038F: arch/x86/kernel/kvmclock.c
Joe Perches679655d2009-04-07 20:44:32 -07006039F: arch/*/include/asm/kvm*
6040F: include/linux/kvm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006041F: include/uapi/linux/kvm*
Joe Perches679655d2009-04-07 20:44:32 -07006042F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08006043
Joerg Roedelad8003d2008-09-10 20:01:07 +02006044KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joerg Roedel7de609c2012-10-29 19:08:21 +01006045M: Joerg Roedel <joro@8bytes.org>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07006046L: kvm@vger.kernel.org
Dirk Müller038161d2015-10-01 13:46:01 +02006047W: http://www.linux-kvm.org/
Joerg Roedel7de609c2012-10-29 19:08:21 +01006048S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006049F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07006050F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07006051
Hollis Blanchard513014b2008-04-16 23:28:08 -05006052KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Jiri Slabyd8130622015-07-17 16:23:20 -07006053M: Alexander Graf <agraf@suse.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03006054L: kvm-ppc@vger.kernel.org
Dirk Müller038161d2015-10-01 13:46:01 +02006055W: http://www.linux-kvm.org/
Michael Ellerman6a7f9722012-10-15 19:01:05 +00006056T: git git://github.com/agraf/linux-2.6.git
Hollis Blanchard513014b2008-04-16 23:28:08 -05006057S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006058F: arch/powerpc/include/asm/kvm*
6059F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05006060
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01006061KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07006062M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02006063M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01006064L: linux-s390@vger.kernel.org
6065W: http://www.ibm.com/developerworks/linux/linux390/
6066S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006067F: Documentation/s390/kvm.txt
6068F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07006069F: arch/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01006070
Christoffer Dalla7494742013-01-20 18:42:26 -05006071KERNEL VIRTUAL MACHINE (KVM) FOR ARM
Christoffer Dall0f4ca792013-06-21 13:54:36 -07006072M: Christoffer Dall <christoffer.dall@linaro.org>
Marc Zyngier5c8818b2014-04-26 03:43:01 -07006073M: Marc Zyngier <marc.zyngier@arm.com>
6074L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Christoffer Dalla7494742013-01-20 18:42:26 -05006075L: kvmarm@lists.cs.columbia.edu
6076W: http://systems.cs.columbia.edu/projects/kvm-arm
Christoffer Dall0f4ca792013-06-21 13:54:36 -07006077S: Supported
Christoffer Dalla7494742013-01-20 18:42:26 -05006078F: arch/arm/include/uapi/asm/kvm*
6079F: arch/arm/include/asm/kvm*
6080F: arch/arm/kvm/
Marc Zyngier5c8818b2014-04-26 03:43:01 -07006081F: virt/kvm/arm/
6082F: include/kvm/arm_*
Christoffer Dalla7494742013-01-20 18:42:26 -05006083
Marc Zyngier6394a3e2013-04-02 17:49:40 +01006084KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
Marc Zyngier5c8818b2014-04-26 03:43:01 -07006085M: Christoffer Dall <christoffer.dall@linaro.org>
Marc Zyngier6394a3e2013-04-02 17:49:40 +01006086M: Marc Zyngier <marc.zyngier@arm.com>
6087L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6088L: kvmarm@lists.cs.columbia.edu
6089S: Maintained
6090F: arch/arm64/include/uapi/asm/kvm*
6091F: arch/arm64/include/asm/kvm*
6092F: arch/arm64/kvm/
6093
Eric W. Biedermandc009d92005-06-25 14:57:52 -07006094KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07006095M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07006096W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07006097L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07006098S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006099F: include/linux/kexec.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006100F: include/uapi/linux/kexec.h
Joe Perches679655d2009-04-07 20:44:32 -07006101F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07006102
David Howellse9714612010-03-29 23:42:09 +01006103KEYS/KEYRINGS:
6104M: David Howells <dhowells@redhat.com>
David Howellsaa62eff2015-08-11 13:29:48 +01006105L: keyrings@vger.kernel.org
David Howellse9714612010-03-29 23:42:09 +01006106S: Maintained
Randy Dunlapd410fa4e2011-05-19 15:59:38 -07006107F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01006108F: include/linux/key.h
6109F: include/linux/key-type.h
6110F: include/keys/
6111F: security/keys/
6112
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006113KEYS-TRUSTED
Mimi Zohar74dd7442014-02-27 08:44:45 -05006114M: David Safford <safford@us.ibm.com>
6115M: Mimi Zohar <zohar@linux.vnet.ibm.com>
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006116L: linux-security-module@vger.kernel.org
David Howellsaa62eff2015-08-11 13:29:48 +01006117L: keyrings@vger.kernel.org
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006118S: Supported
Randy Dunlapd410fa4e2011-05-19 15:59:38 -07006119F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006120F: include/keys/trusted-type.h
6121F: security/keys/trusted.c
6122F: security/keys/trusted.h
6123
6124KEYS-ENCRYPTED
Mimi Zohar74dd7442014-02-27 08:44:45 -05006125M: Mimi Zohar <zohar@linux.vnet.ibm.com>
6126M: David Safford <safford@us.ibm.com>
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006127L: linux-security-module@vger.kernel.org
David Howellsaa62eff2015-08-11 13:29:48 +01006128L: keyrings@vger.kernel.org
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006129S: Supported
Randy Dunlapd410fa4e2011-05-19 15:59:38 -07006130F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006131F: include/keys/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08006132F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006133
Jason Wessel5b778da2010-05-20 21:04:28 -05006134KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07006135M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05006136W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05006137L: kgdb-bugreport@lists.sourceforge.net
6138S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006139F: Documentation/DocBook/kgdb.tmpl
6140F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006141F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05006142F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07006143F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05006144F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05006145
Pekka Enberg456db8c2008-04-28 22:47:29 +03006146KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07006147M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02006148M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03006149S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08006150F: Documentation/kmemcheck.txt
6151F: arch/x86/include/asm/kmemcheck.h
6152F: arch/x86/mm/kmemcheck/
6153F: include/linux/kmemcheck.h
6154F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03006155
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01006156KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07006157M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01006158S: Maintained
6159F: Documentation/kmemleak.txt
6160F: include/linux/kmemleak.h
6161F: mm/kmemleak.c
6162F: mm/kmemleak-test.c
6163
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07006164KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07006165M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
6166M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
6167M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07006168M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07006169S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006170F: Documentation/kprobes.txt
6171F: include/linux/kprobes.h
6172F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07006173
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08006174KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006175M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07006176W: http://miguelojeda.es/auxdisplay.htm
6177W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08006178S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006179F: Documentation/auxdisplay/ks0108
6180F: drivers/auxdisplay/ks0108.c
6181F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08006182
David Ahern1b69c6d2015-09-29 20:07:11 -07006183L3MDEV
6184M: David Ahern <dsa@cumulusnetworks.com>
6185L: netdev@vger.kernel.org
6186S: Maintained
6187F: net/l3mdev
6188F: include/net/l3mdev.h
6189
Linus Torvalds1da177e2005-04-16 15:20:36 -07006190LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07006191L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07006192S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006193F: Documentation/networking/lapb-module.txt
6194F: include/*/lapb.h
6195F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006196
6197LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07006198M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006199L: linux-scsi@vger.kernel.org
6200S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006201F: Documentation/scsi/53c700.txt
6202F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006203
Richard Purdie263de9b2006-05-15 09:44:16 -07006204LED SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006205M: Richard Purdie <rpurdie@rpsys.net>
Andrew Morton48b945a2015-05-05 16:23:30 -07006206M: Jacek Anaszewski <j.anaszewski@samsung.com>
Bryan Wuaa69cb82012-05-31 19:51:37 +08006207L: linux-leds@vger.kernel.org
Jacek Anaszewskib8926ba2015-08-20 08:59:35 +02006208T: git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07006209S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006210F: drivers/leds/
6211F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07006212
Jean Delvareb0461a42011-06-15 15:08:46 -07006213LEGACY EEPROM DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07006214M: Jean Delvare <jdelvare@suse.com>
Jean Delvareb0461a42011-06-15 15:08:46 -07006215S: Maintained
6216F: Documentation/misc-devices/eeprom
6217F: drivers/misc/eeprom/eeprom.c
6218
Linus Torvalds1da177e2005-04-16 15:20:36 -07006219LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07006220M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006221L: legousb-devel@lists.sourceforge.net
6222W: http://legousb.sourceforge.net/
6223S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006224F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006225
Michael Krufky055616a2012-10-02 00:56:06 -03006226LG2160 MEDIA DRIVER
6227M: Michael Krufky <mkrufky@linuxtv.org>
6228L: linux-media@vger.kernel.org
6229W: http://linuxtv.org/
6230W: http://github.com/mkrufky
6231Q: http://patchwork.linuxtv.org/project/linux-media/list/
6232T: git git://linuxtv.org/mkrufky/tuners.git
6233S: Maintained
6234F: drivers/media/dvb-frontends/lg2160.*
6235
Michael Krufky6f0e7722012-10-02 00:56:00 -03006236LGDT3305 MEDIA DRIVER
6237M: Michael Krufky <mkrufky@linuxtv.org>
6238L: linux-media@vger.kernel.org
6239W: http://linuxtv.org/
6240W: http://github.com/mkrufky
6241Q: http://patchwork.linuxtv.org/project/linux-media/list/
6242T: git git://linuxtv.org/mkrufky/tuners.git
6243S: Maintained
6244F: drivers/media/dvb-frontends/lgdt3305.*
6245
Rusty Russell568a17f2007-10-25 14:12:24 +10006246LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07006247M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006248L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10006249W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06006250S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08006251F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07006252F: arch/x86/lguest/
6253F: drivers/lguest/
6254F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08006255F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10006256
Tejun Heo32ac7cb2015-01-06 18:36:44 -05006257LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
6258M: Tejun Heo <tj@kernel.org>
6259L: linux-ide@vger.kernel.org
6260T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6261S: Maintained
6262F: drivers/ata/
6263F: include/linux/ata.h
6264F: include/linux/libata.h
6265
6266LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
Viresh Kumarda899472015-07-17 16:23:50 -07006267M: Viresh Kumar <vireshk@kernel.org>
Tejun Heo32ac7cb2015-01-06 18:36:44 -05006268L: linux-ide@vger.kernel.org
6269T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6270S: Maintained
6271F: include/linux/pata_arasan_cf_data.h
6272F: drivers/ata/pata_arasan_cf.c
6273
Bartlomiej Zolnierkiewiczc7fa0562014-12-02 17:29:08 +01006274LIBATA PATA DRIVERS
6275M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6276M: Tejun Heo <tj@kernel.org>
6277L: linux-ide@vger.kernel.org
6278T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6279S: Maintained
6280F: drivers/ata/pata_*.c
6281F: drivers/ata/ata_generic.c
6282
Tejun Heo32ac7cb2015-01-06 18:36:44 -05006283LIBATA SATA AHCI PLATFORM devices support
6284M: Hans de Goede <hdegoede@redhat.com>
6285M: Tejun Heo <tj@kernel.org>
6286L: linux-ide@vger.kernel.org
6287T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6288S: Maintained
6289F: drivers/ata/ahci_platform.c
6290F: drivers/ata/libahci_platform.c
6291F: include/linux/ahci_platform.h
6292
6293LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
6294M: Mikael Pettersson <mikpelinux@gmail.com>
6295L: linux-ide@vger.kernel.org
6296T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6297S: Maintained
6298F: drivers/ata/sata_promise.*
6299
Sasha Levin1acd4372013-06-13 18:41:24 -04006300LIBLOCKDEP
6301M: Sasha Levin <sasha.levin@oracle.com>
6302S: Maintained
6303F: tools/lib/lockdep/
6304
Dan Williamsbc301962015-06-25 04:48:19 -04006305LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
6306M: Dan Williams <dan.j.williams@intel.com>
6307L: linux-nvdimm@lists.01.org
6308Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
6309S: Supported
6310F: drivers/nvdimm/*
6311F: include/linux/nd.h
6312F: include/linux/libnvdimm.h
6313F: include/uapi/linux/ndctl.h
6314
6315LIBNVDIMM BLK: MMIO-APERTURE DRIVER
6316M: Ross Zwisler <ross.zwisler@linux.intel.com>
6317L: linux-nvdimm@lists.01.org
6318Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
6319S: Supported
6320F: drivers/nvdimm/blk.c
6321F: drivers/nvdimm/region_devs.c
6322F: drivers/acpi/nfit*
6323
6324LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
6325M: Vishal Verma <vishal.l.verma@intel.com>
6326L: linux-nvdimm@lists.01.org
6327Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
6328S: Supported
6329F: drivers/nvdimm/btt*
6330
6331LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
6332M: Ross Zwisler <ross.zwisler@linux.intel.com>
6333L: linux-nvdimm@lists.01.org
6334Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
6335S: Supported
6336F: drivers/nvdimm/pmem.c
Ross Zwislerb864bc12015-07-10 11:06:10 -06006337F: include/linux/pmem.h
Ross Zwisler40603522015-08-18 13:55:36 -06006338F: arch/*/include/asm/pmem.h
Dan Williamsbc301962015-06-25 04:48:19 -04006339
Matias Bjørlingcd9e9802015-10-28 19:54:55 +01006340LIGHTNVM PLATFORM SUPPORT
6341M: Matias Bjorling <mb@lightnvm.io>
6342W: http://github/OpenChannelSSD
6343S: Maintained
6344F: drivers/lightnvm/
6345F: include/linux/lightnvm.h
6346F: include/uapi/linux/lightnvm.h
6347
Linus Torvalds1da177e2005-04-16 15:20:36 -07006348LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07006349M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006350W: http://www.ibm.com/linux/ltc/projects/ppc
6351S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00006352F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006353
Paul Mackerras852bb9f2008-07-04 21:04:42 +10006354LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07006355M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
6356M: Paul Mackerras <paulus@samba.org>
Benjamin Herrenschmidtea668932014-07-28 13:54:37 +10006357M: Michael Ellerman <mpe@ellerman.id.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006358W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006359L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08006360Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Michael Ellerman99580842015-07-07 19:16:23 +10006361T: git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006362S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00006363F: Documentation/powerpc/
6364F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006365
6366LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07006367M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006368W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006369L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006370S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00006371F: arch/powerpc/platforms/powermac/
6372F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006373
Grant Likely77a76362008-07-12 12:11:43 -06006374LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00006375M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006376L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschincba5b1c2014-10-02 16:16:59 -07006377T: git git://git.denx.de/linux-denx-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006378S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00006379F: arch/powerpc/platforms/512x/
6380F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006381
6382LINUX FOR POWERPC EMBEDDED PPC4XX
Joe Perches49e7d9d2015-04-15 16:17:31 -07006383M: Alistair Popple <alistair@popple.id.au>
Joe Perches8b58be82009-07-29 15:04:30 -07006384M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006385W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006386L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006387S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00006388F: arch/powerpc/platforms/40x/
6389F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006390
Grant Likely260c02a2007-10-02 12:15:34 +10006391LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006392L: linuxppc-dev@lists.ozlabs.org
Grant Likelycdeb8992013-07-22 01:38:32 +01006393S: Orphan
Joe Perches11c34c72009-12-04 07:16:59 +00006394F: arch/powerpc/*/*virtex*
6395F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006396
Tom Rinie93adf12005-07-26 12:49:53 -07006397LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07006398M: Vitaly Bordug <vitb@kernel.crashing.org>
Tom Rinie93adf12005-07-26 12:49:53 -07006399W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006400L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07006401S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07006402F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07006403
Linus Torvalds1da177e2005-04-16 15:20:36 -07006404LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Scott Wooda1e0fb42014-05-05 20:46:43 -05006405M: Scott Wood <scottwood@freescale.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006406M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01006407W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006408L: linuxppc-dev@lists.ozlabs.org
Scott Wooda1e0fb42014-05-05 20:46:43 -05006409T: git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
Jim Cromiece00f852006-11-30 04:49:44 +01006410S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00006411F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03006412F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006413
Olof Johanssonab06ff32006-09-06 14:44:54 -05006414LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07006415M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006416L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00006417S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00006418F: arch/powerpc/platforms/pasemi/
6419F: drivers/*/*pasemi*
6420F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05006421
Linus Torvalds1da177e2005-04-16 15:20:36 -07006422LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07006423M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08006424L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006425S: Supported
6426
Harry Weia23ce6d2011-02-11 16:52:20 +01006427LIS3LV02D ACCELEROMETER DRIVER
6428M: Eric Piel <eric.piel@tremplin-utc.net>
6429S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01006430F: Documentation/misc-devices/lis3lv02d
6431F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07006432F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01006433
Seth Jenningsb700e7f2014-12-16 11:58:19 -06006434LIVE PATCHING
6435M: Josh Poimboeuf <jpoimboe@redhat.com>
6436M: Seth Jennings <sjenning@redhat.com>
Jiri Kosinae5f64502015-08-09 09:11:34 +02006437M: Jiri Kosina <jikos@kernel.org>
Jiri Slabyd8130622015-07-17 16:23:20 -07006438M: Vojtech Pavlik <vojtech@suse.com>
Seth Jenningsb700e7f2014-12-16 11:58:19 -06006439S: Maintained
6440F: kernel/livepatch/
6441F: include/linux/livepatch.h
6442F: arch/x86/include/asm/livepatch.h
6443F: arch/x86/kernel/livepatch.c
6444F: Documentation/ABI/testing/sysfs-kernel-livepatch
Seth Jennings13d1cf72014-12-16 11:58:20 -06006445F: samples/livepatch/
Seth Jenningsb700e7f2014-12-16 11:58:19 -06006446L: live-patching@vger.kernel.org
Jiri Kosina74d50da2014-12-22 13:40:20 +01006447T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
Seth Jenningsb700e7f2014-12-16 11:58:19 -06006448
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006449LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07006450M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006451S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006452F: include/linux/llc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006453F: include/uapi/linux/llc.h
Joe Perches679655d2009-04-07 20:44:32 -07006454F: include/net/llc*
6455F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006456
Adrien Demarez4e233cb2009-12-09 20:35:50 +01006457LM73 HARDWARE MONITOR DRIVER
6458M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
6459L: lm-sensors@lm-sensors.org
6460S: Maintained
6461F: drivers/hwmon/lm73.c
6462
Jean Delvare156e2d12011-07-25 21:46:11 +02006463LM78 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07006464M: Jean Delvare <jdelvare@suse.com>
Jean Delvare156e2d12011-07-25 21:46:11 +02006465L: lm-sensors@lm-sensors.org
6466S: Maintained
6467F: Documentation/hwmon/lm78
6468F: drivers/hwmon/lm78.c
6469
Linus Torvalds1da177e2005-04-16 15:20:36 -07006470LM83 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07006471M: Jean Delvare <jdelvare@suse.com>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02006472L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006473S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006474F: Documentation/hwmon/lm83
6475F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006476
6477LM90 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07006478M: Jean Delvare <jdelvare@suse.com>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02006479L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006480S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006481F: Documentation/hwmon/lm90
Wei Niaae7bce2013-11-15 10:40:39 +01006482F: Documentation/devicetree/bindings/hwmon/lm90.txt
Joe Perches679655d2009-04-07 20:44:32 -07006483F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006484
Guenter Roeck917cc4e2013-05-19 20:44:27 -07006485LM95234 HARDWARE MONITOR DRIVER
6486M: Guenter Roeck <linux@roeck-us.net>
6487L: lm-sensors@lm-sensors.org
6488S: Maintained
6489F: Documentation/hwmon/lm95234
6490F: drivers/hwmon/lm95234.c
6491
Malcolm Priestley68620bd2012-11-04 19:16:31 +01006492LME2510 MEDIA DRIVER
6493M: Malcolm Priestley <tvboxspy@gmail.com>
6494L: linux-media@vger.kernel.org
6495W: http://linuxtv.org/
6496Q: http://patchwork.linuxtv.org/project/linux-media/list/
6497S: Maintained
6498F: drivers/media/usb/dvb-usb-v2/lmedm04*
6499
Peter Zijlstra512e67f2007-10-11 22:11:11 +02006500LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07006501M: Peter Zijlstra <peterz@infradead.org>
6502M: Ingo Molnar <mingo@redhat.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +01006503L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006504T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02006505S: Maintained
Davidlohr Bueso214e0ae2014-07-30 13:41:55 -07006506F: Documentation/locking/lockdep*.txt
6507F: Documentation/locking/lockstat.txt
Joe Perches679655d2009-04-07 20:44:32 -07006508F: include/linux/lockdep.h
Joe Perches7486d6da2013-11-14 14:59:45 -08006509F: kernel/locking/
Peter Zijlstra512e67f2007-10-11 22:11:11 +02006510
Anton Altaparmakovdde33342007-05-21 09:37:42 +01006511LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07006512M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01006513L: linux-ntfs-dev@lists.sourceforge.net
6514W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006515S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006516F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08006517F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006518
Joern Engelef6ada32009-11-20 22:17:12 +01006519LogFS
6520M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05306521M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01006522L: logfs@logfs.org
6523W: logfs.org
6524S: Maintained
6525F: fs/logfs/
6526
Roland Stiggeb62d7942013-04-02 19:37:11 +02006527LPC32XX MACHINE SUPPORT
6528M: Roland Stigge <stigge@antcom.de>
6529L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6530S: Maintained
6531F: arch/arm/mach-lpc32xx/
6532
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07006533LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
Reddy, Sreekanth3a980502014-06-13 20:48:04 +05306534M: Nagalakshmi Nandigama <nagalakshmi.nandigama@avagotech.com>
6535M: Praveen Krishnamoorthy <praveen.krishnamoorthy@avagotech.com>
6536M: Sreekanth Reddy <sreekanth.reddy@avagotech.com>
6537M: Abhijit Mahajan <abhijit.mahajan@avagotech.com>
6538L: MPT-FusionLinux.pdl@avagotech.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07006539L: linux-scsi@vger.kernel.org
6540W: http://www.lsilogic.com/support
6541S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006542F: drivers/message/fusion/
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05306543F: drivers/scsi/mpt2sas/
6544F: drivers/scsi/mpt3sas/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07006545
Linus Torvalds1da177e2005-04-16 15:20:36 -07006546LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07006547M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006548L: linux-scsi@vger.kernel.org
6549S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006550F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006551
Guenter Roecke5f5c992010-06-25 11:59:54 -07006552LTC4261 HARDWARE MONITOR DRIVER
6553M: Guenter Roeck <linux@roeck-us.net>
6554L: lm-sensors@lm-sensors.org
6555S: Maintained
6556F: Documentation/hwmon/ltc4261
6557F: drivers/hwmon/ltc4261.c
6558
Mike Frysinger81365c32008-10-29 14:01:12 -07006559LTP (Linux Test Project)
Joe Perches28b8e8d2010-03-23 13:35:20 -07006560M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07006561M: Cyril Hrubis <chrubis@suse.cz>
Cyril Hrubis05261092015-09-17 16:01:57 -07006562M: Wanlong Gao <wanlong.gao@gmail.com>
Cyril Hrubisf2eb7f62014-05-09 15:36:58 -07006563M: Jan Stancek <jstancek@redhat.com>
6564M: Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
6565M: Alexey Kodanev <alexey.kodanev@oracle.com>
Cyril Hrubis05261092015-09-17 16:01:57 -07006566L: ltp@lists.linux.it (subscribers-only)
Cyril Hrubisf2eb7f62014-05-09 15:36:58 -07006567W: http://linux-test-project.github.io/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07006568T: git git://github.com/linux-test-project/ltp.git
Mike Frysinger81365c32008-10-29 14:01:12 -07006569S: Maintained
6570
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07006571M32R ARCHITECTURE
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07006572W: http://www.linux-m32r.org/
Michael Opdenackerb4174862014-10-13 15:51:26 -07006573S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006574F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07006575
Linus Torvalds1da177e2005-04-16 15:20:36 -07006576M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07006577M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006578L: linux-m68k@lists.linux-m68k.org
6579W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07006580T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006581S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006582F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07006583F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006584
6585M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07006586M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006587W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01006588L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006589S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07006590F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006591
6592M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07006593M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006594W: http://www.tazenda.demon.co.uk/phil/linux-hp
6595S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006596F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006597
Antti Palosaari74425542013-11-06 14:03:32 -03006598M88DS3103 MEDIA DRIVER
6599M: Antti Palosaari <crope@iki.fi>
6600L: linux-media@vger.kernel.org
6601W: http://linuxtv.org/
6602W: http://palosaari.fi/linux/
6603Q: http://patchwork.linuxtv.org/project/linux-media/list/
6604T: git git://linuxtv.org/anttip/media_tree.git
6605S: Maintained
6606F: drivers/media/dvb-frontends/m88ds3103*
6607
Malcolm Priestley68620bd2012-11-04 19:16:31 +01006608M88RS2000 MEDIA DRIVER
6609M: Malcolm Priestley <tvboxspy@gmail.com>
6610L: linux-media@vger.kernel.org
6611W: http://linuxtv.org/
6612Q: http://patchwork.linuxtv.org/project/linux-media/list/
6613S: Maintained
6614F: drivers/media/dvb-frontends/m88rs2000*
6615
Alexey Klimov07a092f2012-11-12 02:57:32 -03006616MA901 MASTERKIT USB FM RADIO DRIVER
Joe Perchesb75f0052014-03-03 15:38:37 -08006617M: Alexey Klimov <klimov.linux@gmail.com>
6618L: linux-media@vger.kernel.org
6619T: git git://linuxtv.org/media_tree.git
6620S: Maintained
6621F: drivers/media/radio/radio-ma901.c
Alexey Klimov07a092f2012-11-12 02:57:32 -03006622
Jiri Benc64a327a2007-05-05 11:47:08 -07006623MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07006624M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07006625L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006626W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02006627T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6628T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07006629S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006630F: Documentation/networking/mac80211-injection.txt
6631F: include/net/mac80211.h
6632F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07006633
Patrick McHardyb863ceb2007-07-14 18:55:06 -07006634MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006635M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07006636L: netdev@vger.kernel.org
6637S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006638F: drivers/net/macvlan.c
6639F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07006640
Jassi Brar2b6d83e2014-06-12 22:31:19 +05306641MAILBOX API
6642M: Jassi Brar <jassisinghbrar@gmail.com>
6643L: linux-kernel@vger.kernel.org
6644S: Maintained
6645F: drivers/mailbox/
6646F: include/linux/mailbox_client.h
6647F: include/linux/mailbox_controller.h
6648
Michael Kerriskfaf16682005-07-31 22:34:47 -07006649MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07006650M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006651W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07006652L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07006653S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07006654
Russell King8427def2014-02-28 22:40:53 +00006655MARVELL ARMADA DRM SUPPORT
6656M: Russell King <rmk+kernel@arm.linux.org.uk>
6657S: Maintained
6658F: drivers/gpu/drm/armada/
6659
Guenter Roeck3ad50cc2014-10-29 10:44:56 -07006660MARVELL 88E6352 DSA support
6661M: Guenter Roeck <linux@roeck-us.net>
6662S: Maintained
6663F: drivers/net/dsa/mv88e6352.c
6664
Thomas Petazzonic4d007b2015-10-09 17:39:02 +02006665MARVELL CRYPTO DRIVER
6666M: Boris Brezillon <boris.brezillon@free-electrons.com>
6667M: Arnaud Ebalard <arno@natisbad.org>
6668F: drivers/crypto/marvell/
6669S: Maintained
6670L: linux-crypto@vger.kernel.org
6671
stephen hemminger44c14c12012-04-02 12:59:47 +00006672MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
6673M: Mirko Lindner <mlindner@marvell.com>
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08006674M: Stephen Hemminger <stephen@networkplumber.org>
stephen hemminger44c14c12012-04-02 12:59:47 +00006675L: netdev@vger.kernel.org
6676S: Maintained
6677F: drivers/net/ethernet/marvell/sk*
6678
Stefano Brivio74cda162007-11-19 20:27:46 +01006679MARVELL LIBERTAS WIRELESS DRIVER
Stefano Brivio74cda162007-11-19 20:27:46 +01006680L: libertas-dev@lists.infradead.org
Dan Williams8ac3e992013-03-26 14:40:51 -05006681S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006682F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01006683
Dale Farnsworthb60d6972006-01-16 16:45:45 -07006684MARVELL MV643XX ETHERNET DRIVER
Sebastian Hesselbarth4e3faf82013-10-04 12:56:39 +02006685M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07006686L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00006687S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07006688F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07006689F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006690
Thomas Petazzoni370b8ed2012-09-04 15:06:42 +02006691MARVELL MVNETA ETHERNET DRIVER
6692M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
6693L: netdev@vger.kernel.org
6694S: Maintained
6695F: drivers/net/ethernet/marvell/mvneta.*
6696
Bing Zhaofcad5842011-07-13 13:11:58 -07006697MARVELL MWIFIEX WIRELESS DRIVER
Bing Zhaob9d31702014-07-30 13:57:16 -07006698M: Amitkumar Karwar <akarwar@marvell.com>
Avinash Patil550795f2015-06-24 16:52:21 +05306699M: Nishant Sarmukadam <nishants@marvell.com>
Bing Zhaofcad5842011-07-13 13:11:58 -07006700L: linux-wireless@vger.kernel.org
6701S: Maintained
6702F: drivers/net/wireless/mwifiex/
6703
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02006704MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01006705M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02006706L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02006707S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02006708F: drivers/net/wireless/mwl8k.c
6709
Pierre Ossman2a695672009-03-16 19:52:26 +01006710MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04006711M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04006712S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07006713F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01006714
Linus Torvalds1da177e2005-04-16 15:20:36 -07006715MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006716L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07006717S: Orphan
Jingoo Han8a61f012014-07-01 15:36:01 +09006718F: drivers/video/fbdev/matrox/matroxfb_*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006719F: include/uapi/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006720
Guenter Roeckca462082012-06-01 23:28:23 -07006721MAX16065 HARDWARE MONITOR DRIVER
6722M: Guenter Roeck <linux@roeck-us.net>
6723L: lm-sensors@lm-sensors.org
6724S: Maintained
6725F: Documentation/hwmon/max16065
6726F: drivers/hwmon/max16065.c
6727
Guenter Roeck1f61cab2015-06-08 11:15:23 -07006728MAX20751 HARDWARE MONITOR DRIVER
6729M: Guenter Roeck <linux@roeck-us.net>
6730L: lm-sensors@lm-sensors.org
6731S: Maintained
6732F: Documentation/hwmon/max20751
6733F: drivers/hwmon/max20751.c
6734
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02006735MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07006736M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02006737L: lm-sensors@lm-sensors.org
6738S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006739F: Documentation/hwmon/max6650
6740F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02006741
Guenter Roecke89ab512013-03-08 08:13:09 -08006742MAX6697 HARDWARE MONITOR DRIVER
6743M: Guenter Roeck <linux@roeck-us.net>
6744L: lm-sensors@lm-sensors.org
6745S: Maintained
6746F: Documentation/hwmon/max6697
6747F: Documentation/devicetree/bindings/i2c/max6697.txt
6748F: drivers/hwmon/max6697.c
6749F: include/linux/platform_data/max6697.h
6750
Krzysztof Kozlowskif8f847b52015-01-20 11:00:56 +01006751MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
6752M: Krzysztof Kozlowski <k.kozlowski@samsung.com>
6753L: linux-pm@vger.kernel.org
6754S: Supported
6755F: drivers/power/max14577_charger.c
6756F: drivers/power/max77693_charger.c
6757
Javier Martinez Canillas38114052015-07-17 10:17:58 +02006758MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS
6759M: Javier Martinez Canillas <javier@osg.samsung.com>
6760L: linux-kernel@vger.kernel.org
6761S: Supported
6762F: drivers/*/*max77802.c
6763F: Documentation/devicetree/bindings/*/*max77802.txt
6764F: include/dt-bindings/*/*max77802.h
6765
Krzysztof Kozlowskibefeb592015-02-16 16:00:23 -08006766MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
6767M: Chanwoo Choi <cw00.choi@samsung.com>
6768M: Krzysztof Kozlowski <k.kozlowski@samsung.com>
6769L: linux-kernel@vger.kernel.org
6770S: Supported
6771F: drivers/*/max14577.c
6772F: drivers/*/max77686.c
6773F: drivers/*/max77693.c
6774F: drivers/extcon/extcon-max14577.c
6775F: drivers/extcon/extcon-max77693.c
6776F: drivers/rtc/rtc-max77686.c
6777F: drivers/clk/clk-max77686.c
6778F: Documentation/devicetree/bindings/mfd/max14577.txt
Javier Martinez Canillas377452f2015-07-17 10:17:57 +02006779F: Documentation/devicetree/bindings/*/max77686.txt
Krzysztof Kozlowskibefeb592015-02-16 16:00:23 -08006780F: Documentation/devicetree/bindings/mfd/max77693.txt
6781F: Documentation/devicetree/bindings/clock/maxim,max77686.txt
6782F: include/linux/mfd/max14577*.h
6783F: include/linux/mfd/max77686*.h
6784F: include/linux/mfd/max77693*.h
6785
Hans Verkuil9be3c9a2012-11-23 07:12:43 -03006786MAXIRADIO FM RADIO RECEIVER DRIVER
6787M: Hans Verkuil <hverkuil@xs4all.nl>
6788L: linux-media@vger.kernel.org
6789T: git git://linuxtv.org/media_tree.git
6790W: http://linuxtv.org
6791S: Maintained
6792F: drivers/media/radio/radio-maxiradio*
6793
Peter Rosinc05dc2c2015-09-23 16:26:23 +02006794MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVER
6795M: Peter Rosin <peda@axentia.se>
6796L: linux-iio@vger.kernel.org
6797S: Maintained
6798F: drivers/iio/potentiometer/mcp4531.c
6799
Laurent Pinchart6f32a8c2015-03-04 09:12:20 -03006800MEDIA DRIVERS FOR RENESAS - VSP1
6801M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6802L: linux-media@vger.kernel.org
6803L: linux-sh@vger.kernel.org
6804T: git git://linuxtv.org/media_tree.git
6805S: Supported
6806F: Documentation/devicetree/bindings/media/renesas,vsp1.txt
6807F: drivers/media/platform/vsp1/
6808
Kozlov Sergeydacf9ce2015-07-28 11:33:01 -03006809MEDIA DRIVERS FOR ASCOT2E
6810M: Sergey Kozlov <serjk@netup.ru>
6811L: linux-media@vger.kernel.org
6812W: http://linuxtv.org
6813W: http://netup.tv/
6814T: git git://linuxtv.org/media_tree.git
6815S: Supported
6816F: drivers/media/dvb-frontends/ascot2e*
6817
Kozlov Sergeya6dc60ff2015-07-28 11:33:03 -03006818MEDIA DRIVERS FOR CXD2841ER
6819M: Sergey Kozlov <serjk@netup.ru>
6820L: linux-media@vger.kernel.org
6821W: http://linuxtv.org/
6822W: http://netup.tv/
6823T: git git://linuxtv.org/media_tree.git
6824S: Supported
6825F: drivers/media/dvb-frontends/cxd2841er*
6826
Kozlov Sergeya5d32b32015-07-28 11:33:00 -03006827MEDIA DRIVERS FOR HORUS3A
6828M: Sergey Kozlov <serjk@netup.ru>
6829L: linux-media@vger.kernel.org
6830W: http://linuxtv.org/
6831W: http://netup.tv/
6832T: git git://linuxtv.org/media_tree.git
6833S: Supported
6834F: drivers/media/dvb-frontends/horus3a*
6835
Kozlov Sergeye0252732015-07-28 11:33:02 -03006836MEDIA DRIVERS FOR LNBH25
6837M: Sergey Kozlov <serjk@netup.ru>
6838L: linux-media@vger.kernel.org
6839W: http://linuxtv.org/
6840W: http://netup.tv/
6841T: git git://linuxtv.org/media_tree.git
6842S: Supported
6843F: drivers/media/dvb-frontends/lnbh25*
6844
Kozlov Sergey52b1eaf2015-07-28 11:33:04 -03006845MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
6846M: Sergey Kozlov <serjk@netup.ru>
6847L: linux-media@vger.kernel.org
6848W: http://linuxtv.org/
6849W: http://netup.tv/
6850T: git git://linuxtv.org/media_tree.git
6851S: Supported
6852F: drivers/media/pci/netup_unidvb/*
6853
Joe Perches127c49a2009-04-08 08:34:04 -07006854MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02006855M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Joe Perches127c49a2009-04-08 08:34:04 -07006856P: LinuxTV.org Project
6857L: linux-media@vger.kernel.org
6858W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08006859Q: http://patchwork.kernel.org/project/linux-media/list/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006860T: git git://linuxtv.org/media_tree.git
Joe Perches127c49a2009-04-08 08:34:04 -07006861S: Maintained
6862F: Documentation/dvb/
6863F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02006864F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07006865F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02006866F: drivers/staging/media/
Joe Perches127c49a2009-04-08 08:34:04 -07006867F: include/media/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02006868F: include/uapi/linux/dvb/
6869F: include/uapi/linux/videodev2.h
6870F: include/uapi/linux/media.h
6871F: include/uapi/linux/v4l2-*
6872F: include/uapi/linux/meye.h
6873F: include/uapi/linux/ivtv*
6874F: include/uapi/linux/uvcvideo.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07006875
Jakub Kicinskic869f772015-05-26 11:16:00 +02006876MEDIATEK MT7601U WIRELESS LAN DRIVER
6877M: Jakub Kicinski <kubakici@wp.pl>
6878L: linux-wireless@vger.kernel.org
6879S: Maintained
6880F: drivers/net/wireless/mediatek/mt7601u/
6881
Sumit.Saxena@avagotech.come3990652014-11-17 15:24:03 +05306882MEGARAID SCSI/SAS DRIVERS
6883M: Kashyap Desai <kashyap.desai@avagotech.com>
6884M: Sumit Saxena <sumit.saxena@avagotech.com>
6885M: Uday Lingala <uday.lingala@avagotech.com>
6886L: megaraidlinux.pdl@avagotech.com
Jean Delvarebaaea1d2008-09-20 12:34:33 +02006887L: linux-scsi@vger.kernel.org
Sumit.Saxena@avagotech.come3990652014-11-17 15:24:03 +05306888W: http://www.lsi.com
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07006889S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006890F: Documentation/scsi/megaraid.txt
6891F: drivers/scsi/megaraid.*
6892F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07006893
Amir Vadai2c46c9d2012-12-02 03:49:21 +00006894MELLANOX ETHERNET DRIVER (mlx4_en)
6895M: Amir Vadai <amirv@mellanox.com>
Joe Perchesb75f0052014-03-03 15:38:37 -08006896L: netdev@vger.kernel.org
Amir Vadai2c46c9d2012-12-02 03:49:21 +00006897S: Supported
6898W: http://www.mellanox.com
6899Q: http://patchwork.ozlabs.org/project/netdev/list/
6900F: drivers/net/ethernet/mellanox/mlx4/en_*
6901
Jiri Pirko93c1edb2015-07-29 23:33:46 +02006902MELLANOX ETHERNET SWITCH DRIVERS
6903M: Jiri Pirko <jiri@mellanox.com>
6904M: Ido Schimmel <idosch@mellanox.com>
6905L: netdev@vger.kernel.org
6906S: Supported
6907W: http://www.mellanox.com
6908Q: http://patchwork.ozlabs.org/project/netdev/list/
6909F: drivers/net/ethernet/mellanox/mlxsw/
6910
Mathieu Desnoyers5b25b132015-09-11 13:07:39 -07006911MEMBARRIER SUPPORT
6912M: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
6913M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
6914L: linux-kernel@vger.kernel.org
6915S: Supported
6916F: kernel/membarrier.c
6917F: include/uapi/linux/membarrier.h
6918
Steven Rostedt70ea91f2006-07-30 03:03:53 -07006919MEMORY MANAGEMENT
6920L: linux-mm@kvack.org
Steven Rostedt70ea91f2006-07-30 03:03:53 -07006921W: http://www.linux-mm.org
6922S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006923F: include/linux/mm.h
Cody P Schafer551450b2013-02-21 16:43:13 -08006924F: include/linux/gfp.h
6925F: include/linux/mmzone.h
6926F: include/linux/memory_hotplug.h
6927F: include/linux/vmalloc.h
Joe Perches679655d2009-04-07 20:44:32 -07006928F: mm/
Steven Rostedt70ea91f2006-07-30 03:03:53 -07006929
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04006930MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07006931M: David Woodhouse <dwmw2@infradead.org>
Brian Norris242c3252013-12-04 15:28:45 -08006932M: Brian Norris <computersforpeace@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006933L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08006934W: http://www.linux-mtd.infradead.org/
6935Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
Brian Norris242c3252013-12-04 15:28:45 -08006936T: git git://git.infradead.org/linux-mtd.git
Brian Norrisab95eac2014-09-15 21:56:17 -07006937T: git git://git.infradead.org/l2-mtd.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006938S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006939F: drivers/mtd/
6940F: include/linux/mtd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006941F: include/uapi/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006942
Johannes Thumshirn26c57ef2013-06-18 17:19:45 +02006943MEN A21 WATCHDOG DRIVER
Johannes Thumshirn30c74692015-05-07 10:21:24 +02006944M: Johannes Thumshirn <morbidrsa@gmail.com>
Johannes Thumshirn26c57ef2013-06-18 17:19:45 +02006945L: linux-watchdog@vger.kernel.org
Johannes Thumshirn30c74692015-05-07 10:21:24 +02006946S: Maintained
Johannes Thumshirn26c57ef2013-06-18 17:19:45 +02006947F: drivers/watchdog/mena21_wdt.c
6948
Johannes Thumshirn3764e822014-02-26 17:29:05 +01006949MEN CHAMELEON BUS (mcb)
Johannes Thumshirn30c74692015-05-07 10:21:24 +02006950M: Johannes Thumshirn <morbidrsa@gmail.com>
6951S: Maintained
Johannes Thumshirn3764e822014-02-26 17:29:05 +01006952F: drivers/mcb/
6953F: include/linux/mcb.h
Johannes Thumshirnb9f2f452015-07-17 12:23:01 +02006954F: Documentation/men-chameleon-bus.txt
Johannes Thumshirn3764e822014-02-26 17:29:05 +01006955
Andreas Werner48b490d2014-09-15 09:36:30 +02006956MEN F21BMC (Board Management Controller)
6957M: Andreas Werner <andreas.werner@men.de>
6958S: Supported
6959F: drivers/mfd/menf21bmc.c
6960F: drivers/watchdog/menf21bmc_wdt.c
6961F: drivers/leds/leds-menf21bmc.c
6962F: drivers/hwmon/menf21bmc_hwmon.c
6963F: Documentation/hwmon/menf21bmc
6964
James Hogan12285942012-10-10 12:59:49 +01006965METAG ARCHITECTURE
6966M: James Hogan <james.hogan@imgtec.com>
James Hogand668d9e2013-07-22 09:51:38 +01006967L: linux-metag@vger.kernel.org
James Hogan12285942012-10-10 12:59:49 +01006968S: Supported
6969F: arch/metag/
6970F: Documentation/metag/
6971F: Documentation/devicetree/bindings/metag/
James Hogana2c5d4e2012-10-09 10:54:39 +01006972F: drivers/clocksource/metag_generic.c
James Hogan5698c502012-10-09 10:54:47 +01006973F: drivers/irqchip/irq-metag.c
6974F: drivers/irqchip/irq-metag-ext.c
James Hoganae85ac72012-09-21 17:38:15 +01006975F: drivers/tty/metag_da.c
James Hogan12285942012-10-10 12:59:49 +01006976
Michal Simekc6375b02009-03-27 14:25:52 +01006977MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07006978M: Michal Simek <monstr@monstr.eu>
Michal Simekc6375b02009-03-27 14:25:52 +01006979W: http://www.monstr.eu/fdt/
6980T: git git://git.monstr.eu/linux-2.6-microblaze.git
6981S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02006982F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006983
Chen Yu2508a452015-08-18 23:30:25 +08006984MICROSOFT SURFACE PRO 3 BUTTON DRIVER
6985M: Chen Yu <yu.c.chen@intel.com>
6986L: platform-driver-x86@vger.kernel.org
6987S: Supported
6988F: drivers/platform/x86/surfacepro3_button.c
6989
Linus Torvalds1da177e2005-04-16 15:20:36 -07006990MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02006991M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006992S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006993F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006994
6995MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07006996M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006997L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01006998W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00006999T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01007000Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00007001S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007002F: Documentation/mips/
7003F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007004
Hans Verkuil08b76202012-11-23 07:15:42 -03007005MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
7006M: Hans Verkuil <hverkuil@xs4all.nl>
7007L: linux-media@vger.kernel.org
7008T: git git://linuxtv.org/media_tree.git
7009W: http://linuxtv.org
7010S: Odd Fixes
7011F: drivers/media/radio/radio-miropcm20*
7012
Eli Cohene126ba92013-07-07 17:25:49 +03007013Mellanox MLX5 core VPI driver
7014M: Eli Cohen <eli@mellanox.com>
7015L: netdev@vger.kernel.org
7016L: linux-rdma@vger.kernel.org
7017W: http://www.mellanox.com
7018Q: http://patchwork.ozlabs.org/project/netdev/list/
7019Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perchescea83212014-03-03 15:38:38 -08007020T: git git://openfabrics.org/~eli/connect-ib.git
Eli Cohene126ba92013-07-07 17:25:49 +03007021S: Supported
7022F: drivers/net/ethernet/mellanox/mlx5/core/
7023F: include/linux/mlx5/
7024
7025Mellanox MLX5 IB driver
Joe Perchesb75f0052014-03-03 15:38:37 -08007026M: Eli Cohen <eli@mellanox.com>
7027L: linux-rdma@vger.kernel.org
7028W: http://www.mellanox.com
7029Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perchescea83212014-03-03 15:38:38 -08007030T: git git://openfabrics.org/~eli/connect-ib.git
Joe Perchesb75f0052014-03-03 15:38:37 -08007031S: Supported
7032F: include/linux/mlx5/
7033F: drivers/infiniband/hw/mlx5/
Eli Cohene126ba92013-07-07 17:25:49 +03007034
Crt Mori764589b2015-08-17 19:34:33 +02007035MELEXIS MLX90614 DRIVER
7036M: Crt Mori <cmo@melexis.com>
7037L: linux-iio@vger.kernel.org
7038W: http://www.melexis.com
7039S: Supported
7040F: drivers/iio/temperature/mlx90614.c
7041
Antti Palosaari0ce277e2014-11-12 00:35:42 -03007042MN88472 MEDIA DRIVER
7043M: Antti Palosaari <crope@iki.fi>
7044L: linux-media@vger.kernel.org
7045W: http://linuxtv.org/
7046W: http://palosaari.fi/linux/
7047Q: http://patchwork.linuxtv.org/project/linux-media/list/
7048T: git git://linuxtv.org/anttip/media_tree.git
7049S: Maintained
7050F: drivers/staging/media/mn88472/
7051F: drivers/media/dvb-frontends/mn88472.h
7052
Antti Palosaari4f4d2382014-11-12 00:53:57 -03007053MN88473 MEDIA DRIVER
7054M: Antti Palosaari <crope@iki.fi>
7055L: linux-media@vger.kernel.org
7056W: http://linuxtv.org/
7057W: http://palosaari.fi/linux/
7058Q: http://patchwork.linuxtv.org/project/linux-media/list/
7059T: git git://linuxtv.org/anttip/media_tree.git
7060S: Maintained
7061F: drivers/staging/media/mn88473/
7062F: drivers/media/dvb-frontends/mn88473.h
7063
Linus Torvalds1da177e2005-04-16 15:20:36 -07007064MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007065M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007066S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007067F: include/linux/module.h
7068F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007069
7070MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07007071W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08007072S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007073F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007074F: drivers/media/pci/meye/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02007075F: include/uapi/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007076
Jiri Slabyb9705b62008-04-30 00:53:48 -07007077MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07007078M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08007079S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007080F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07007081F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08007082
Alexey Klimov889b2f82012-11-16 17:43:59 -03007083MR800 AVERMEDIA USB FM RADIO DRIVER
7084M: Alexey Klimov <klimov.linux@gmail.com>
7085L: linux-media@vger.kernel.org
7086T: git git://linuxtv.org/media_tree.git
7087S: Maintained
7088F: drivers/media/radio/radio-mr800.c
7089
Alan Ottd7155692014-08-16 17:09:03 -04007090MRF24J40 IEEE 802.15.4 RADIO DRIVER
7091M: Alan Ott <alan@signal11.us>
7092L: linux-wpan@vger.kernel.org
7093S: Maintained
7094F: drivers/net/ieee802154/mrf24j40.c
Alexander Aring2e6fd642015-09-21 11:24:26 +02007095F: Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
Alan Ottd7155692014-08-16 17:09:03 -04007096
Lennart Poettering8c4c7312006-10-06 01:27:02 -04007097MSI LAPTOP SUPPORT
Lee, Chun-Yi182ae552012-12-14 16:14:24 +08007098M: "Lee, Chun-Yi" <jlee@suse.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05007099L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04007100S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007101F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04007102
Anisse Astier0f1006b2009-12-17 11:28:49 +01007103MSI WMI SUPPORT
Matthew Garrettd09448532010-02-11 10:40:13 -05007104L: platform-driver-x86@vger.kernel.org
Anisse Astier5ee70412015-06-14 22:32:23 +02007105S: Orphan
Anisse Astier0f1006b2009-12-17 11:28:49 +01007106F: drivers/platform/x86/msi-wmi.c
7107
Antti Palosaari19a628a2014-02-02 23:51:30 -03007108MSI001 MEDIA DRIVER
7109M: Antti Palosaari <crope@iki.fi>
7110L: linux-media@vger.kernel.org
7111W: http://linuxtv.org/
7112W: http://palosaari.fi/linux/
7113Q: http://patchwork.linuxtv.org/project/linux-media/list/
7114T: git git://linuxtv.org/anttip/media_tree.git
7115S: Maintained
Antti Palosaari0185e192014-07-12 08:58:32 -03007116F: drivers/media/tuners/msi001*
Antti Palosaari19a628a2014-02-02 23:51:30 -03007117
Antti Palosaari75705892014-07-13 21:35:47 -03007118MSI2500 MEDIA DRIVER
Antti Palosaari2c572132014-02-02 23:55:12 -03007119M: Antti Palosaari <crope@iki.fi>
7120L: linux-media@vger.kernel.org
7121W: http://linuxtv.org/
7122W: http://palosaari.fi/linux/
7123Q: http://patchwork.linuxtv.org/project/linux-media/list/
7124T: git git://linuxtv.org/anttip/media_tree.git
7125S: Maintained
Antti Palosaari75705892014-07-13 21:35:47 -03007126F: drivers/media/usb/msi2500/
Antti Palosaari2c572132014-02-02 23:55:12 -03007127
Robert Jarzmik159eeea2015-06-25 19:14:18 +02007128MSYSTEMS DISKONCHIP G3 MTD DRIVER
7129M: Robert Jarzmik <robert.jarzmik@free.fr>
7130L: linux-mtd@lists.infradead.org
7131S: Maintained
7132F: drivers/mtd/devices/docg3*
7133
Laurent Pinchart62a37dc2013-08-09 08:46:11 -03007134MT9M032 APTINA SENSOR DRIVER
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007135M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7136L: linux-media@vger.kernel.org
7137T: git git://linuxtv.org/media_tree.git
7138S: Maintained
7139F: drivers/media/i2c/mt9m032.c
7140F: include/media/mt9m032.h
7141
Laurent Pinchart62a37dc2013-08-09 08:46:11 -03007142MT9P031 APTINA CAMERA SENSOR
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007143M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7144L: linux-media@vger.kernel.org
7145T: git git://linuxtv.org/media_tree.git
7146S: Maintained
7147F: drivers/media/i2c/mt9p031.c
7148F: include/media/mt9p031.h
7149
Laurent Pinchart62a37dc2013-08-09 08:46:11 -03007150MT9T001 APTINA CAMERA SENSOR
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007151M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7152L: linux-media@vger.kernel.org
7153T: git git://linuxtv.org/media_tree.git
7154S: Maintained
7155F: drivers/media/i2c/mt9t001.c
7156F: include/media/mt9t001.h
7157
Laurent Pinchart62a37dc2013-08-09 08:46:11 -03007158MT9V032 APTINA CAMERA SENSOR
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007159M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7160L: linux-media@vger.kernel.org
7161T: git git://linuxtv.org/media_tree.git
7162S: Maintained
Laurent Pinchartf2272e12014-01-01 14:40:35 -03007163F: Documentation/devicetree/bindings/media/i2c/mt9v032.txt
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007164F: drivers/media/i2c/mt9v032.c
7165F: include/media/mt9v032.h
7166
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07007167MULTIFUNCTION DEVICES (MFD)
Samuel Ortizf7d32102013-05-17 00:53:42 +02007168M: Lee Jones <lee.jones@linaro.org>
Lee Jones7caa7992014-07-22 13:24:38 +01007169T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07007170S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007171F: drivers/mfd/
Mark Brown55b59402013-06-28 15:14:11 +01007172F: include/linux/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07007173
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02007174MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Ulf Hanssone18eaf82014-02-19 00:01:05 +01007175M: Ulf Hansson <ulf.hansson@linaro.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07007176L: linux-mmc@vger.kernel.org
Ulf Hansson708dce32014-05-14 14:32:53 +02007177T: git git://git.linaro.org/people/ulf.hansson/mmc.git
Chris Ball245feaa2010-09-10 12:05:24 -04007178S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007179F: drivers/mmc/
7180F: include/linux/mmc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007181F: include/uapi/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01007182
David Brownell15a05802007-08-08 09:12:54 -07007183MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06007184S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007185F: drivers/mmc/host/mmc_spi.c
7186F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07007187
Linus Torvalds1da177e2005-04-16 15:20:36 -07007188MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007189M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007190S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007191F: Documentation/sound/oss/MultiSound
7192F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007193
Jiri Slabyd7354102006-12-08 02:38:35 -08007194MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02007195S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07007196F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07007197F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08007198
Felipe Balbi550a7372008-07-24 12:27:36 +03007199MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03007200M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007201L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03007202T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02007203S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007204F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03007205
Michael Krufkyea0af5f2012-10-02 00:55:41 -03007206MXL5007T MEDIA DRIVER
7207M: Michael Krufky <mkrufky@linuxtv.org>
7208L: linux-media@vger.kernel.org
7209W: http://linuxtv.org/
7210W: http://github.com/mkrufky
7211Q: http://patchwork.linuxtv.org/project/linux-media/list/
7212T: git git://linuxtv.org/mkrufky/tuners.git
7213S: Maintained
7214F: drivers/media/tuners/mxl5007t.*
7215
Brice Goglin2d3cf582008-05-17 12:45:36 +02007216MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Hyong-Youb Kim205057a2013-08-12 02:20:02 -07007217M: Hyong-Youb Kim <hykim@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02007218L: netdev@vger.kernel.org
Hyong-Youb Kim205057a2013-08-12 02:20:02 -07007219W: https://www.myricom.com/support/downloads/myri10ge.html
Brice Goglin2d3cf582008-05-17 12:45:36 +02007220S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07007221F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02007222
Linus Torvalds1da177e2005-04-16 15:20:36 -07007223NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04007224S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07007225F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007226
Daniel Mack23dc05a2011-05-18 11:28:38 +02007227NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
7228M: Daniel Mack <zonque@gmail.com>
7229S: Maintained
Jim Davise5747e42015-06-25 15:01:58 -07007230L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Daniel Mack23dc05a2011-05-18 11:28:38 +02007231W: http://www.native-instruments.com
7232F: sound/usb/caiaq/
7233
Linus Torvalds1da177e2005-04-16 15:20:36 -07007234NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07007235M: Petr Vandrovec <petr@vandrovec.name>
7236S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07007237F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007238
Finn Thaina79b0322014-05-05 15:35:30 +10007239NCR 5380 SCSI DRIVERS
7240M: Finn Thain <fthain@telegraphics.com.au>
7241M: Michael Schmitz <schmitzmic@gmail.com>
7242L: linux-scsi@vger.kernel.org
7243S: Maintained
7244F: Documentation/scsi/g_NCR5380.txt
7245F: drivers/scsi/NCR5380.*
7246F: drivers/scsi/arm/cumana_1.c
7247F: drivers/scsi/arm/oak.c
7248F: drivers/scsi/atari_NCR5380.c
7249F: drivers/scsi/atari_scsi.*
7250F: drivers/scsi/dmx3191d.c
7251F: drivers/scsi/dtc.*
7252F: drivers/scsi/g_NCR5380.*
7253F: drivers/scsi/g_NCR5380_mmio.c
7254F: drivers/scsi/mac_scsi.*
7255F: drivers/scsi/pas16.*
Finn Thaina79b0322014-05-05 15:35:30 +10007256F: drivers/scsi/sun3_scsi.*
7257F: drivers/scsi/sun3_scsi_vme.c
7258F: drivers/scsi/t128.*
7259
Linus Torvalds1da177e2005-04-16 15:20:36 -07007260NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07007261M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007262L: linux-scsi@vger.kernel.org
7263S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007264F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007265
Guenter Roeck4aa3eb42013-04-03 14:12:11 -07007266NCT6775 HARDWARE MONITOR DRIVER
7267M: Guenter Roeck <linux@roeck-us.net>
7268L: lm-sensors@lm-sensors.org
7269S: Maintained
7270F: Documentation/hwmon/nct6775
7271F: drivers/hwmon/nct6775.c
7272
Glenn Streiff3c2d7742008-02-04 20:20:45 -08007273NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07007274M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07007275L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00007276W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08007277S: Supported
7278F: drivers/infiniband/hw/nes/
7279
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07007280NETEM NETWORK EMULATOR
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08007281M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07007282L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07007283S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007284F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07007285
Jon Masonb2f5a052010-07-15 08:47:27 +00007286NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00007287M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07007288L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07007289S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007290F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00007291F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07007292F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07007293
Pablo Neira Ayusodb9cf3a2014-06-16 13:01:52 +02007294NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01007295M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07007296M: Patrick McHardy <kaber@trash.net>
Pablo Neira Ayuso42010ed2013-05-06 12:22:57 +02007297M: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
Patrick McHardy1a03b812007-09-18 13:19:26 -07007298L: netfilter-devel@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07007299L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007300W: http://www.netfilter.org/
7301W: http://www.iptables.org/
Pablo Neira Ayuso42010ed2013-05-06 12:22:57 +02007302Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/
7303T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
7304T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007305S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007306F: include/linux/netfilter*
7307F: include/linux/netfilter/
7308F: include/net/netfilter/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007309F: include/uapi/linux/netfilter*
7310F: include/uapi/linux/netfilter/
Joe Perches679655d2009-04-07 20:44:32 -07007311F: net/*/netfilter.c
7312F: net/*/netfilter/
7313F: net/netfilter/
Pablo Neira Ayuso91c269a2015-07-06 20:55:35 +02007314F: net/bridge/br_netfilter*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007315
Paul Moore4cc67732006-09-25 15:57:13 -07007316NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00007317M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07007318W: http://netlabel.sf.net
7319L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00007320S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07007321F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07007322F: include/net/netlabel.h
7323F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07007324
Linus Torvalds1da177e2005-04-16 15:20:36 -07007325NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07007326M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007327L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02007328W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007329S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007330F: include/net/netrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007331F: include/uapi/linux/netrom.h
Joe Perches679655d2009-04-07 20:44:32 -07007332F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007333
Pavel Machek5ddb88c2006-09-29 02:01:29 -07007334NETWORK BLOCK DEVICE (NBD)
Markus Pargmann4ca58292015-01-28 19:35:38 +01007335M: Markus Pargmann <mpa@pengutronix.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007336S: Maintained
Wouter Verhelst5e4b2692013-02-27 17:05:27 -08007337L: nbd-general@lists.sourceforge.net
Markus Pargmann4ca58292015-01-28 19:35:38 +01007338T: git git://git.pengutronix.de/git/mpa/linux-nbd.git
Joe Perches679655d2009-04-07 20:44:32 -07007339F: Documentation/blockdev/nbd.txt
7340F: drivers/block/nbd.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007341F: include/uapi/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007342
Neil Horman6e436502009-10-05 03:56:55 +00007343NETWORK DROP MONITOR
7344M: Neil Horman <nhorman@tuxdriver.com>
7345L: netdev@vger.kernel.org
7346S: Maintained
7347W: https://fedorahosted.org/dropwatch/
7348F: net/core/drop_monitor.c
7349
Linus Torvalds1da177e2005-04-16 15:20:36 -07007350NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07007351M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07007352L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00007353W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00007354Q: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00007355T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7356T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007357S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007358F: net/
7359F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00007360F: include/linux/in.h
7361F: include/linux/net.h
7362F: include/linux/netdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007363F: include/uapi/linux/in.h
7364F: include/uapi/linux/net.h
7365F: include/uapi/linux/netdevice.h
Nicolas Dichtel0c7aecd2015-01-15 15:11:15 +01007366F: include/uapi/linux/net_namespace.h
Tobias Klauser7e814a62014-03-11 12:06:24 +01007367F: tools/net/
Daniel Borkmannf4e53f92014-03-13 10:18:53 +01007368F: tools/testing/selftests/net/
Sasha Levin335a67d2014-03-27 02:01:34 -04007369F: lib/random32.c
Daniel Borkmanna101ccd2014-06-10 12:31:10 +02007370F: lib/test_bpf.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007371
7372NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07007373M: "David S. Miller" <davem@davemloft.net>
7374M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07007375M: James Morris <jmorris@namei.org>
7376M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
7377M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07007378L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007379T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007380S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007381F: net/ipv4/
7382F: net/ipv6/
7383F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00007384F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007385
David S. Miller73b76562012-10-16 14:08:40 -04007386NETWORKING [IPSEC]
7387M: Steffen Klassert <steffen.klassert@secunet.com>
7388M: Herbert Xu <herbert@gondor.apana.org.au>
7389M: "David S. Miller" <davem@davemloft.net>
7390L: netdev@vger.kernel.org
Steffen Klassertd1fc5022013-12-13 12:56:05 +01007391T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
7392T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
David S. Miller73b76562012-10-16 14:08:40 -04007393S: Maintained
Fan Du5826bdd2014-01-18 09:55:28 +08007394F: net/core/flow.c
David S. Miller73b76562012-10-16 14:08:40 -04007395F: net/xfrm/
7396F: net/key/
7397F: net/ipv4/xfrm*
Steffen Klassertd1fc5022013-12-13 12:56:05 +01007398F: net/ipv4/esp4.c
7399F: net/ipv4/ah4.c
7400F: net/ipv4/ipcomp.c
7401F: net/ipv4/ip_vti.c
David S. Miller73b76562012-10-16 14:08:40 -04007402F: net/ipv6/xfrm*
Steffen Klassertd1fc5022013-12-13 12:56:05 +01007403F: net/ipv6/esp6.c
7404F: net/ipv6/ah6.c
7405F: net/ipv6/ipcomp6.c
7406F: net/ipv6/ip6_vti.c
David S. Miller73b76562012-10-16 14:08:40 -04007407F: include/uapi/linux/xfrm.h
7408F: include/net/xfrm.h
7409
James Morris10e2ff12007-08-25 14:41:28 -07007410NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00007411M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07007412L: netdev@vger.kernel.org
7413S: Maintained
7414
John W. Linville29f8f632006-01-18 14:52:48 -08007415NETWORKING [WIRELESS]
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08007416L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007417Q: http://patchwork.kernel.org/project/linux-wireless/list/
John W. Linville29f8f632006-01-18 14:52:48 -08007418
Joe Perches788873a2009-04-16 09:38:45 +00007419NETWORKING DRIVERS
7420L: netdev@vger.kernel.org
7421W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00007422Q: http://patchwork.ozlabs.org/project/netdev/list/
Joe Perches08deed12012-03-23 15:01:57 -07007423T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7424T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00007425S: Odd Fixes
7426F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00007427F: include/linux/if_*
Jean Delvare0b63bf12012-10-18 22:11:38 +02007428F: include/linux/netdevice.h
Jean Delvare0b63bf12012-10-18 22:11:38 +02007429F: include/linux/etherdevice.h
7430F: include/linux/fcdevice.h
7431F: include/linux/fddidevice.h
7432F: include/linux/hippidevice.h
7433F: include/linux/inetdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007434F: include/uapi/linux/if_*
7435F: include/uapi/linux/netdevice.h
Joe Perches788873a2009-04-16 09:38:45 +00007436
John W. Linville0e324cf2014-12-17 12:07:05 -05007437NETWORKING DRIVERS (WIRELESS)
7438M: Kalle Valo <kvalo@codeaurora.org>
7439L: linux-wireless@vger.kernel.org
7440Q: http://patchwork.kernel.org/project/linux-wireless/list/
7441T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git/
7442S: Maintained
7443F: drivers/net/wireless/
7444
Amit S. Kale3d396eb2006-10-21 15:33:03 -04007445NETXEN (1/10) GbE SUPPORT
Manish Chopra86223152013-03-28 23:54:08 +00007446M: Manish Chopra <manish.chopra@qlogic.com>
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07007447M: Sony Chacko <sony.chacko@qlogic.com>
7448M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04007449L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00007450W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04007451S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07007452F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04007453
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03007454NFC SUBSYSTEM
7455M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
7456M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
7457M: Samuel Ortiz <sameo@linux.intel.com>
7458L: linux-wireless@vger.kernel.org
Dan Carpenter1eb3b212014-08-11 13:14:25 +03007459L: linux-nfc@lists.01.org (subscribers-only)
Samuel Ortiz0293ba22013-06-24 14:39:35 +02007460S: Supported
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03007461F: net/nfc/
Ilan Elias55eb94f2011-09-18 11:19:34 +03007462F: include/net/nfc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007463F: include/uapi/linux/nfc.h
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03007464F: drivers/nfc/
Marcel Holtmann08eaa1e2012-10-24 11:45:38 -07007465F: include/linux/platform_data/pn544.h
Mark A. Greer7ebb88e2014-03-10 11:56:25 -07007466F: Documentation/devicetree/bindings/net/nfc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007467
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04007468NFS, SUNRPC, AND LOCKD CLIENTS
Trond Myklebustcd7b9962013-12-04 12:29:49 -05007469M: Trond Myklebust <trond.myklebust@primarydata.com>
Trond Myklebust0e3b1372015-02-03 17:13:58 -05007470M: Anna Schumaker <anna.schumaker@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05007471L: linux-nfs@vger.kernel.org
7472W: http://client.linux-nfs.org
Trond Myklebustcd7b9962013-12-04 12:29:49 -05007473T: git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007474S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007475F: fs/lockd/
7476F: fs/nfs/
7477F: fs/nfs_common/
7478F: net/sunrpc/
7479F: include/linux/lockd/
7480F: include/linux/nfs*
7481F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007482F: include/uapi/linux/nfs*
7483F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007484
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07007485NILFS2 FILESYSTEM
Ryusuke Konishie2126932014-04-03 14:50:25 -07007486M: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09007487L: linux-nilfs@vger.kernel.org
Ryusuke Konishif9472262014-04-03 14:50:32 -07007488W: http://nilfs.sourceforge.net/
Ryusuke Konishie2126932014-04-03 14:50:25 -07007489T: git git://github.com/konis/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07007490S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007491F: Documentation/filesystems/nilfs2.txt
7492F: fs/nilfs2/
7493F: include/linux/nilfs2_fs.h
Ryusuke Konishic35c7ac2015-11-06 16:32:11 -08007494F: include/trace/events/nilfs2.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07007495
Linus Torvalds1da177e2005-04-16 15:20:36 -07007496NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007497M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007498W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7499S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007500F: Documentation/scsi/NinjaSCSI.txt
7501F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007502
7503NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007504M: GOTO Masanori <gotom@debian.or.jp>
7505M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007506W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7507S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007508F: Documentation/scsi/NinjaSCSI.txt
7509F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007510
Ley Foon Tan383b8fb2014-11-06 15:20:14 +08007511NIOS2 ARCHITECTURE
7512M: Ley Foon Tan <lftan@altera.com>
7513L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
Ley Foon Tan0094dc42015-09-08 01:50:05 +08007514T: git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
Ley Foon Tan383b8fb2014-11-06 15:20:14 +08007515S: Maintained
7516F: arch/nios2/
7517
Pali Rohár2a6afdd2015-03-29 15:35:54 +02007518NOKIA N900 POWER SUPPLY DRIVERS
7519M: Pali Rohár <pali.rohar@gmail.com>
7520S: Maintained
7521F: include/linux/power/bq2415x_charger.h
Andrew F. Davis081bab22015-09-22 14:35:06 -05007522F: include/linux/power/bq27xxx_battery.h
Pali Rohár2a6afdd2015-03-29 15:35:54 +02007523F: include/linux/power/isp1704_charger.h
7524F: drivers/power/bq2415x_charger.c
Andrew F. Davis081bab22015-09-22 14:35:06 -05007525F: drivers/power/bq27xxx_battery.c
Pali Rohár2a6afdd2015-03-29 15:35:54 +02007526F: drivers/power/isp1704_charger.c
7527F: drivers/power/rx51_battery.c
7528
Allen Hubbea1bd3ba2015-04-09 10:33:20 -04007529NTB DRIVER CORE
Jon Mason9ef6bf62014-06-19 10:44:24 -07007530M: Jon Mason <jdmason@kudzu.us>
7531M: Dave Jiang <dave.jiang@intel.com>
Allen Hubbea1bd3ba2015-04-09 10:33:20 -04007532M: Allen Hubbe <Allen.Hubbe@emc.com>
Jon Mason5e9fd732015-07-04 14:48:33 -04007533L: linux-ntb@googlegroups.com
Jon Masonfce8a7b2012-11-16 19:27:12 -07007534S: Supported
Jon Mason29844112013-07-30 16:29:48 -07007535W: https://github.com/jonmason/ntb/wiki
7536T: git git://github.com/jonmason/ntb.git
Jon Masonfce8a7b2012-11-16 19:27:12 -07007537F: drivers/ntb/
Jon Mason548c2372012-11-16 19:27:13 -07007538F: drivers/net/ntb_netdev.c
Jon Masonfce8a7b2012-11-16 19:27:12 -07007539F: include/linux/ntb.h
Allen Hubbea1bd3ba2015-04-09 10:33:20 -04007540F: include/linux/ntb_transport.h
Jon Masonfce8a7b2012-11-16 19:27:12 -07007541
Allen Hubbee26a5842015-04-09 10:33:20 -04007542NTB INTEL DRIVER
7543M: Jon Mason <jdmason@kudzu.us>
7544M: Dave Jiang <dave.jiang@intel.com>
Jon Mason5e9fd732015-07-04 14:48:33 -04007545L: linux-ntb@googlegroups.com
Allen Hubbee26a5842015-04-09 10:33:20 -04007546S: Supported
7547W: https://github.com/jonmason/ntb/wiki
7548T: git git://github.com/jonmason/ntb.git
7549F: drivers/ntb/hw/intel/
Joe Perches679655d2009-04-07 20:44:32 -07007550
7551NTFS FILESYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07007552M: Anton Altaparmakov <anton@tuxera.com>
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08007553L: linux-ntfs-dev@lists.sourceforge.net
Joe Perches8b58be82009-07-29 15:04:30 -07007554W: http://www.tuxera.com/
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01007555T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Jim Cromiece00f852006-11-30 04:49:44 +01007556S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007557F: Documentation/filesystems/ntfs.txt
7558F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007559
Tony Lindgrenf5525782009-05-28 13:23:53 -07007560NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches0e24bdd2009-10-26 16:49:40 -07007561M: Antonino Daplas <adaplas@gmail.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007562L: linux-fbdev@vger.kernel.org
7563S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09007564F: drivers/video/fbdev/riva/
7565F: drivers/video/fbdev/nvidia/
Tony Lindgrenf5525782009-05-28 13:23:53 -07007566
Matthew Wilcox79461682012-11-10 08:54:53 -05007567NVM EXPRESS DRIVER
Jay Freyenseeb3975e92015-10-28 16:37:51 +09007568M: Keith Busch <keith.busch@intel.com>
7569M: Jens Axboe <axboe@fb.com>
Matthew Wilcox79461682012-11-10 08:54:53 -05007570L: linux-nvme@lists.infradead.org
Jay Freyenseeb3975e92015-10-28 16:37:51 +09007571T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
7572W: https://kernel.googlesource.com/pub/scm/linux/kernel/git/axboe/linux-block/
Matthew Wilcox79461682012-11-10 08:54:53 -05007573S: Supported
Jay Sternberg57dacad2015-10-09 18:17:06 +02007574F: drivers/nvme/host/
Matthew Wilcox79461682012-11-10 08:54:53 -05007575F: include/linux/nvme.h
7576
Srinivas Kandagatlaaee4b9b2015-07-27 12:17:24 +01007577NVMEM FRAMEWORK
7578M: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
7579M: Maxime Ripard <maxime.ripard@free-electrons.com>
7580S: Maintained
7581F: drivers/nvmem/
7582F: Documentation/devicetree/bindings/nvmem/
7583F: include/linux/nvmem-consumer.h
7584F: include/linux/nvmem-provider.h
7585
Clément Perrochauddece4582015-03-09 11:12:04 +01007586NXP-NCI NFC DRIVER
7587M: Clément Perrochaud <clement.perrochaud@effinnov.com>
7588R: Charles Gorand <charles.gorand@effinnov.com>
7589L: linux-nfc@lists.01.org (moderated for non-subscribers)
7590S: Supported
7591F: drivers/nfc/nxp-nci
7592
Russell Kingf50d7142014-03-03 12:18:14 +00007593NXP TDA998X DRM DRIVER
7594M: Russell King <rmk+kernel@arm.linux.org.uk>
7595S: Supported
7596F: drivers/gpu/drm/i2c/tda998x_drv.c
7597F: include/drm/i2c/tda998x.h
7598
Peter Rosinfbace432014-11-08 14:40:17 +01007599NXP TFA9879 DRIVER
7600M: Peter Rosin <peda@axentia.se>
7601L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7602S: Maintained
7603F: sound/soc/codecs/tfa9879*
7604
Tony Lindgrenf5525782009-05-28 13:23:53 -07007605OMAP SUPPORT
7606M: Tony Lindgren <tony@atomide.com>
7607L: linux-omap@vger.kernel.org
7608W: http://www.muru.com/linux/omap/
7609W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08007610Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02007611T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07007612S: Maintained
Felipe Contreras4e04d5a32009-09-21 17:04:25 -07007613F: arch/arm/*omap*/
Felipe Balbi026da812015-01-19 16:13:53 -06007614F: arch/arm/configs/omap1_defconfig
7615F: arch/arm/configs/omap2plus_defconfig
Jean Delvare046d0a32012-01-12 20:32:05 +01007616F: drivers/i2c/busses/i2c-omap.c
Felipe Balbidc68cd12014-11-06 08:37:19 -06007617F: drivers/irqchip/irq-omap-intc.c
7618F: drivers/mfd/*omap*.c
7619F: drivers/mfd/menelaus.c
7620F: drivers/mfd/palmas.c
7621F: drivers/mfd/tps65217.c
7622F: drivers/mfd/tps65218.c
7623F: drivers/mfd/tps65910.c
7624F: drivers/mfd/twl-core.[ch]
7625F: drivers/mfd/twl4030*.c
7626F: drivers/mfd/twl6030*.c
7627F: drivers/mfd/twl6040*.c
7628F: drivers/regulator/palmas-regulator*.c
7629F: drivers/regulator/pbias-regulator.c
7630F: drivers/regulator/tps65217-regulator.c
7631F: drivers/regulator/tps65218-regulator.c
7632F: drivers/regulator/tps65910-regulator.c
7633F: drivers/regulator/twl-regulator.c
Jean Delvare046d0a32012-01-12 20:32:05 +01007634F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07007635
Tony Lindgren50f29fb2012-12-16 11:29:59 -08007636OMAP DEVICE TREE SUPPORT
Benoit Coussoncdb55ab2013-08-09 23:19:15 +02007637M: Benoît Cousson <bcousson@baylibre.com>
Tony Lindgren50f29fb2012-12-16 11:29:59 -08007638M: Tony Lindgren <tony@atomide.com>
7639L: linux-omap@vger.kernel.org
Grant Likelyd0fb18c2013-07-19 20:10:12 -07007640L: devicetree@vger.kernel.org
Tony Lindgren50f29fb2012-12-16 11:29:59 -08007641S: Maintained
7642F: arch/arm/boot/dts/*omap*
7643F: arch/arm/boot/dts/*am3*
Nishanth Menon05eb20f2014-10-21 09:24:22 -05007644F: arch/arm/boot/dts/*am4*
7645F: arch/arm/boot/dts/*am5*
7646F: arch/arm/boot/dts/*dra7*
Tony Lindgren50f29fb2012-12-16 11:29:59 -08007647
Tony Lindgrenf5525782009-05-28 13:23:53 -07007648OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007649M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007650L: linux-omap@vger.kernel.org
7651S: Maintained
7652F: arch/arm/*omap*/*clock*
7653
7654OMAP POWER MANAGEMENT SUPPORT
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08007655M: Kevin Hilman <khilman@deeprootsystems.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007656L: linux-omap@vger.kernel.org
7657S: Maintained
7658F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07007659F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07007660
Joe Perchesd21db562013-09-11 14:23:35 -07007661OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
Paul Walmsley692ab1f2011-03-09 18:44:28 -07007662M: Rajendra Nayak <rnayak@ti.com>
7663M: Paul Walmsley <paul@pwsan.com>
7664L: linux-omap@vger.kernel.org
7665S: Maintained
Joe Perchesd21db562013-09-11 14:23:35 -07007666F: arch/arm/mach-omap2/prm*
Paul Walmsley692ab1f2011-03-09 18:44:28 -07007667
Tony Lindgrenf5525782009-05-28 13:23:53 -07007668OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03007669M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03007670M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Jim Davise5747e42015-06-25 15:01:58 -07007671L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Tony Lindgrenf5525782009-05-28 13:23:53 -07007672L: linux-omap@vger.kernel.org
7673S: Maintained
7674F: sound/soc/omap/
7675
Tony Lindgren18640192014-11-20 09:13:42 -08007676OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
7677M: Roger Quadros <rogerq@ti.com>
7678M: Tony Lindgren <tony@atomide.com>
7679L: linux-omap@vger.kernel.org
7680S: Maintained
7681F: drivers/memory/omap-gpmc.c
7682F: arch/arm/mach-omap2/*gpmc*
7683
Tony Lindgrenf5525782009-05-28 13:23:53 -07007684OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02007685M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01007686L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07007687L: linux-omap@vger.kernel.org
7688S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09007689F: drivers/video/fbdev/omap/
Tony Lindgrenf5525782009-05-28 13:23:53 -07007690
Tomi Valkeinen676eec02010-01-07 13:18:04 +02007691OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02007692M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03007693L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02007694L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03007695S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09007696F: drivers/video/fbdev/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03007697F: Documentation/arm/OMAP/DSS
7698
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03007699OMAP HARDWARE SPINLOCK SUPPORT
7700M: Ohad Ben-Cohen <ohad@wizery.com>
7701L: linux-omap@vger.kernel.org
7702S: Maintained
7703F: drivers/hwspinlock/omap_hwspinlock.c
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03007704
Tony Lindgrenf5525782009-05-28 13:23:53 -07007705OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007706M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007707L: linux-omap@vger.kernel.org
7708S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07007709F: drivers/mmc/host/omap.c
7710
7711OMAP HS MMC SUPPORT
Venkatraman S0a4585c2012-08-17 23:59:53 +05307712L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07007713L: linux-omap@vger.kernel.org
Balaji T Kdfa5d192014-09-17 22:50:11 +05307714S: Orphan
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07007715F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07007716
7717OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007718M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007719S: Maintained
7720F: drivers/char/hw_random/omap-rng.c
7721
Paul Walmsleyf400c822010-12-06 19:08:54 -07007722OMAP HWMOD SUPPORT
Benoit Coussoncdb55ab2013-08-09 23:19:15 +02007723M: Benoît Cousson <bcousson@baylibre.com>
Paul Walmsleyf400c822010-12-06 19:08:54 -07007724M: Paul Walmsley <paul@pwsan.com>
7725L: linux-omap@vger.kernel.org
7726S: Maintained
Zhang Yanfei8fc8b122013-01-11 14:32:03 -08007727F: arch/arm/mach-omap2/omap_hwmod.*
Paul Walmsleyf400c822010-12-06 19:08:54 -07007728
Paul Walmsley8633fb32015-01-19 23:49:50 -07007729OMAP HWMOD DATA
7730M: Paul Walmsley <paul@pwsan.com>
7731L: linux-omap@vger.kernel.org
7732S: Maintained
7733F: arch/arm/mach-omap2/omap_hwmod*data*
7734
Paul Walmsleyf400c822010-12-06 19:08:54 -07007735OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
Benoit Coussoncdb55ab2013-08-09 23:19:15 +02007736M: Benoît Cousson <bcousson@baylibre.com>
Paul Walmsleyf400c822010-12-06 19:08:54 -07007737L: linux-omap@vger.kernel.org
7738S: Maintained
7739F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
7740
Laurent Pinchart0db83ce2014-06-06 12:08:59 -03007741OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03007742M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7743L: linux-media@vger.kernel.org
7744S: Maintained
Sakari Ailus7eec52d2015-03-19 01:50:22 +02007745F: Documentation/devicetree/bindings/media/ti,omap3isp.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007746F: drivers/media/platform/omap3isp/
Laurent Pinchart0db83ce2014-06-06 12:08:59 -03007747F: drivers/staging/media/omap4iss/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03007748
Tony Lindgrenf5525782009-05-28 13:23:53 -07007749OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03007750M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007751L: linux-usb@vger.kernel.org
7752L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03007753T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07007754S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07007755F: drivers/usb/*/*omap*
7756F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07007757
Kevin Hilman6d994712012-07-16 10:05:07 -07007758OMAP GPIO DRIVER
Javier Martinez Canillasa1415a82014-04-06 16:58:17 +02007759M: Javier Martinez Canillas <javier@dowhile0.org>
Santosh Shilimkar97215802014-10-13 14:16:28 -04007760M: Santosh Shilimkar <ssantosh@kernel.org>
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08007761M: Kevin Hilman <khilman@deeprootsystems.com>
Kevin Hilman6d994712012-07-16 10:05:07 -07007762L: linux-omap@vger.kernel.org
7763S: Maintained
7764F: drivers/gpio/gpio-omap.c
7765
Mark Jacksonc351e292013-10-04 09:15:01 +01007766OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
7767M: Mark Jackson <mpfj@newflow.co.uk>
7768L: linux-omap@vger.kernel.org
7769S: Maintained
7770F: arch/arm/boot/dts/am335x-nano.dts
7771
Bob Copeland0ad122d2008-07-25 19:45:18 -07007772OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007773M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07007774L: linux-karma-devel@lists.sourceforge.net
7775S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007776F: Documentation/filesystems/omfs.txt
7777F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07007778
Harald Weltec1986ee2005-11-13 16:06:29 -08007779OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007780M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08007781S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007782F: drivers/char/pcmcia/cm4000_cs.c
7783F: include/linux/cm4000_cs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007784F: include/uapi/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08007785
Harald Welte77c44ab2005-11-13 16:06:26 -08007786OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007787M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08007788S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007789F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08007790
Jonathan Corbet77d51402007-03-22 19:44:17 -03007791OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007792M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007793L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02007794T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03007795S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007796F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03007797
Thomas Gleixner431bca72007-05-02 09:31:35 +02007798ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007799M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02007800L: linux-mtd@lists.infradead.org
7801S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007802F: drivers/mtd/onenand/
7803F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02007804
Linus Torvalds1da177e2005-04-16 15:20:36 -07007805ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007806M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007807L: osst-users@lists.sourceforge.net
7808L: linux-scsi@vger.kernel.org
7809S: Maintained
Jean Delvaref7269cf2013-07-03 15:05:08 -07007810F: Documentation/scsi/osst.txt
7811F: drivers/scsi/osst.*
7812F: drivers/scsi/osst_*.h
7813F: drivers/scsi/st.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007814
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007815OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007816M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01007817L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007818S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007819F: Documentation/i2c/busses/i2c-ocores
7820F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007821
Grant Likely860c44c2009-10-26 16:49:49 -07007822OPEN FIRMWARE AND FLATTENED DEVICE TREE
Rob Herring5d3ad8a2013-12-03 10:20:16 -06007823M: Rob Herring <robh+dt@kernel.org>
Grant Likelyc8fb70a2015-08-23 13:34:08 -07007824M: Frank Rowand <frowand.list@gmail.com>
7825M: Grant Likely <grant.likely@linaro.org>
Grant Likelyd0fb18c2013-07-19 20:10:12 -07007826L: devicetree@vger.kernel.org
Rob Herringa7fefe92014-12-26 14:05:54 -06007827W: http://www.devicetree.org/
7828T: git git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux.git
Grant Likely860c44c2009-10-26 16:49:49 -07007829S: Maintained
Grant Likelyf8828202013-07-19 18:57:39 -07007830F: drivers/of/
Grant Likely860c44c2009-10-26 16:49:49 -07007831F: include/linux/of*.h
Grant Likelyf8828202013-07-19 18:57:39 -07007832F: scripts/dtc/
Grant Likely860c44c2009-10-26 16:49:49 -07007833
Grant Likelyf8828202013-07-19 18:57:39 -07007834OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
Rob Herring5d3ad8a2013-12-03 10:20:16 -06007835M: Rob Herring <robh+dt@kernel.org>
Grant Likelyf8828202013-07-19 18:57:39 -07007836M: Pawel Moll <pawel.moll@arm.com>
7837M: Mark Rutland <mark.rutland@arm.com>
Ian Campbellde809632013-08-30 09:50:42 +01007838M: Ian Campbell <ijc+devicetree@hellion.org.uk>
Kumar Galabdbff6b2013-08-08 10:51:15 -05007839M: Kumar Gala <galak@codeaurora.org>
Grant Likelyf8828202013-07-19 18:57:39 -07007840L: devicetree@vger.kernel.org
7841S: Maintained
7842F: Documentation/devicetree/
7843F: arch/*/boot/dts/
7844F: include/dt-bindings/
7845
Pantelis Antoniou2bb65f52015-03-17 22:30:57 +02007846OPEN FIRMWARE AND DEVICE TREE OVERLAYS
7847M: Pantelis Antoniou <pantelis.antoniou@konsulko.com>
7848L: devicetree@vger.kernel.org
7849S: Maintained
7850F: Documentation/devicetree/dynamic-resolution-notes.txt
7851F: Documentation/devicetree/overlay-notes.txt
7852F: drivers/of/overlay.c
7853F: drivers/of/resolver.c
7854
Jonas Bonn19f9d392011-06-04 22:00:38 +03007855OPENRISC ARCHITECTURE
7856M: Jonas Bonn <jonas@southpole.se>
7857W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02007858L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03007859S: Maintained
7860T: git git://openrisc.net/~jonas/linux
Joe Perches14430812013-09-11 14:23:50 -07007861F: arch/openrisc/
Jonas Bonn19f9d392011-06-04 22:00:38 +03007862
Jesse Grossccb13522011-10-25 19:26:31 -07007863OPENVSWITCH
Jesse Gross4f337ed2014-05-16 15:57:59 -07007864M: Pravin Shelar <pshelar@nicira.com>
Pravin B Shelarb422da72015-01-02 11:18:21 -08007865L: netdev@vger.kernel.org
Jesse Grossccb13522011-10-25 19:26:31 -07007866L: dev@openvswitch.org
7867W: http://openvswitch.org
Jesse Grossccb13522011-10-25 19:26:31 -07007868S: Maintained
7869F: net/openvswitch/
Pravin B Shelarb422da72015-01-02 11:18:21 -08007870F: include/uapi/linux/openvswitch.h
Jesse Grossccb13522011-10-25 19:26:31 -07007871
Clemens Ladischaf399172011-01-10 16:32:54 +01007872OPL4 DRIVER
7873M: Clemens Ladisch <clemens@ladisch.de>
7874L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7875T: git git://git.alsa-project.org/alsa-kernel.git
7876S: Maintained
7877F: sound/drivers/opl4/
7878
Linus Torvalds1da177e2005-04-16 15:20:36 -07007879OPROFILE
Robert Richter4cf7e712012-10-29 18:53:25 +01007880M: Robert Richter <rric@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007881L: oprofile-list@lists.sf.net
7882S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02007883F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07007884F: arch/*/oprofile/
7885F: drivers/oprofile/
7886F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007887
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007888ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07007889M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08007890M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007891L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
Mark Fasheh01945fa2015-02-27 15:51:40 -08007892W: http://ocfs2.wiki.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007893S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007894F: Documentation/filesystems/ocfs2.txt
7895F: Documentation/filesystems/dlmfs.txt
7896F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007897
Linus Torvalds1da177e2005-04-16 15:20:36 -07007898ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07007899L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02007900W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07007901W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01007902S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007903F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007904
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03007905OSD LIBRARY and FILESYSTEM
Boaz Harroshfadc0752014-10-19 19:19:57 +03007906M: Boaz Harrosh <ooo@electrozaur.com>
Benny Halevyf1f66302014-02-10 11:57:29 +02007907M: Benny Halevy <bhalevy@primarydata.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02007908L: osd-dev@open-osd.org
7909W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07007910T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02007911S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03007912F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07007913F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03007914F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02007915
Miklos Szeredief94b182014-11-20 16:39:59 +01007916OVERLAY FILESYSTEM
Neil Brown7c37fbd2014-10-24 00:14:39 +02007917M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi1d113732014-11-20 16:40:01 +01007918L: linux-unionfs@vger.kernel.org
7919T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
Neil Brown7c37fbd2014-10-24 00:14:39 +02007920S: Supported
Miklos Szeredi1d113732014-11-20 16:40:01 +01007921F: fs/overlayfs/
Neil Brown7c37fbd2014-10-24 00:14:39 +02007922F: Documentation/filesystems/overlayfs.txt
7923
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007924P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02007925M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007926L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02007927W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007928S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007929F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007930
Olof Johanssonf5cd7872007-01-31 21:43:54 -06007931PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007932M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06007933L: netdev@vger.kernel.org
7934S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07007935F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06007936
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01007937PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007938M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01007939L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01007940S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007941F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01007942
Steffen Klassert48fc2672010-08-13 10:10:46 -04007943PADATA PARALLEL EXECUTION MECHANISM
7944M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04007945L: linux-crypto@vger.kernel.org
7946S: Maintained
7947F: kernel/padata.c
7948F: include/linux/padata.h
7949F: Documentation/padata.txt
7950
Harald Welte709ee532008-09-23 17:46:57 +02007951PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007952M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd09448532010-02-11 10:40:13 -05007953L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02007954S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007955F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02007956
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01007957PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07007958M: David Howells <dhowells@redhat.com>
7959M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01007960L: linux-am33-list@redhat.com (moderated for non-subscribers)
7961W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
7962S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007963F: Documentation/mn10300/
7964F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01007965
Sudip Mukherjee64dfff02015-05-20 20:57:02 +05307966PARALLEL PORT SUBSYSTEM
7967M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
7968M: Sudip Mukherjee <sudip@vectorindia.org>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07007969L: linux-parport@lists.infradead.org (subscribers-only)
Sudip Mukherjee64dfff02015-05-20 20:57:02 +05307970S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007971F: drivers/parport/
7972F: include/linux/parport*.h
7973F: drivers/char/ppdev.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007974F: include/uapi/linux/ppdev.h
Sudip Mukherjee64dfff02015-05-20 20:57:02 +05307975F: Documentation/parport*.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07007976
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007977PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08007978M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07007979M: Chris Wright <chrisw@sous-sol.org>
7980M: Alok Kataria <akataria@vmware.com>
7981M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00007982L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007983S: Supported
Luis R. Rodrigueza2e19992015-02-13 17:13:40 +10307984F: Documentation/virtual/paravirt_ops.txt
Joe Perches679655d2009-04-07 20:44:32 -07007985F: arch/*/kernel/paravirt*
7986F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007987
Linus Torvalds1da177e2005-04-16 15:20:36 -07007988PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07007989M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07007990L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007991S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007992F: Documentation/blockdev/paride.txt
7993F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007994
7995PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00007996M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05007997M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00007998L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007999W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08008000Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07008001T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Helge Dellerfbb46caa2013-05-16 21:00:16 +00008002T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008003S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008004F: arch/parisc/
Helge Deller2b6bac92013-05-30 13:48:07 +00008005F: Documentation/parisc/
Joe Perches679655d2009-04-07 20:44:32 -07008006F: drivers/parisc/
Helge Deller2b6bac92013-05-30 13:48:07 +00008007F: drivers/char/agp/parisc-agp.c
8008F: drivers/input/serio/gscps2.c
8009F: drivers/parport/parport_gsc.*
8010F: drivers/tty/serial/8250/8250_gsc.c
Jingoo Han8a61f012014-07-01 15:36:01 +09008011F: drivers/video/fbdev/sti*
Helge Deller2b6bac92013-05-30 13:48:07 +00008012F: drivers/video/console/sti*
8013F: drivers/video/logo/logo_parisc*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008014
Jim Cromie1662d322006-10-06 00:43:59 -07008015PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008016M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07008017L: lm-sensors@lm-sensors.org
8018S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008019F: Documentation/hwmon/pc87360
8020F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07008021
8022PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008023M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07008024S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008025F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07008026
Jean Delvare1ad107f2010-08-14 21:09:00 +02008027PC87427 HARDWARE MONITORING DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07008028M: Jean Delvare <jdelvare@suse.com>
Jean Delvare1ad107f2010-08-14 21:09:00 +02008029L: lm-sensors@lm-sensors.org
8030S: Maintained
8031F: Documentation/hwmon/pc87427
8032F: drivers/hwmon/pc87427.c
8033
Riku Voipiob26e0ed2009-03-03 21:37:17 +02008034PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008035M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02008036S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07008037F: drivers/leds/leds-pca9532.c
8038F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02008039
Guenter Roeck5ce914a2010-10-24 18:16:59 +02008040PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07008041M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02008042L: linux-i2c@vger.kernel.org
8043S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02008044F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02008045
Khalid Aziz3971dae2012-04-12 12:49:13 -07008046PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07008047M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07008048S: Maintained
8049F: drivers/firmware/pcdp.*
8050
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06008051PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07008052M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07008053L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06008054S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008055F: Documentation/PCI/pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06008056
Linus Torvalds1da177e2005-04-16 15:20:36 -07008057PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07008058M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07008059L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06008060Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06008061T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008062S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008063F: Documentation/PCI/
8064F: drivers/pci/
8065F: include/linux/pci*
Bjorn Helgaas6b49ee42013-10-09 14:39:08 -06008066F: arch/x86/pci/
Bjorn Helgaascad01f92014-04-05 15:07:00 -06008067F: arch/x86/kernel/quirks.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008068
Rob Herringb7e78172015-01-28 10:16:18 -06008069PCI DRIVER FOR ARM VERSATILE PLATFORM
8070M: Rob Herring <robh@kernel.org>
8071L: linux-pci@vger.kernel.org
8072L: linux-arm-kernel@lists.infradead.org
8073S: Maintained
8074F: Documentation/devicetree/bindings/pci/versatile.txt
8075F: drivers/pci/host/pci-versatile.c
8076
Tanmay Inamdar5f6b6cc2014-10-01 13:01:35 -06008077PCI DRIVER FOR APPLIEDMICRO XGENE
8078M: Tanmay Inamdar <tinamdar@apm.com>
8079L: linux-pci@vger.kernel.org
8080L: linux-arm-kernel@lists.infradead.org
8081S: Maintained
8082F: Documentation/devicetree/bindings/pci/xgene-pci.txt
8083F: drivers/pci/host/pci-xgene.c
8084
Minghuan Lian62d0ff832014-11-05 16:45:11 +08008085PCI DRIVER FOR FREESCALE LAYERSCAPE
8086M: Minghuan Lian <minghuan.Lian@freescale.com>
8087M: Mingkai Hu <mingkai.hu@freescale.com>
8088M: Roy Zang <tie-fei.zang@freescale.com>
8089L: linuxppc-dev@lists.ozlabs.org
8090L: linux-pci@vger.kernel.org
8091L: linux-arm-kernel@lists.infradead.org
8092S: Maintained
8093F: drivers/pci/host/*layerscape*
8094
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008095PCI DRIVER FOR IMX6
Lucas Stachf175aa22015-01-19 11:17:31 +01008096M: Richard Zhu <Richard.Zhu@freescale.com>
Lucas Stach1ba55f52014-07-31 20:16:04 +02008097M: Lucas Stach <l.stach@pengutronix.de>
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008098L: linux-pci@vger.kernel.org
8099L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8100S: Maintained
8101F: drivers/pci/host/*imx6*
8102
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -06008103PCI DRIVER FOR TI KEYSTONE
8104M: Murali Karicheri <m-karicheri2@ti.com>
8105L: linux-pci@vger.kernel.org
8106L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8107S: Maintained
8108F: drivers/pci/host/*keystone*
8109
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008110PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
8111M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8112M: Jason Cooper <jason@lakedaemon.net>
8113L: linux-pci@vger.kernel.org
8114L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8115S: Maintained
8116F: drivers/pci/host/*mvebu*
8117
Thierry Reding0447cfd2013-08-09 16:49:32 +02008118PCI DRIVER FOR NVIDIA TEGRA
8119M: Thierry Reding <thierry.reding@gmail.com>
8120L: linux-tegra@vger.kernel.org
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008121L: linux-pci@vger.kernel.org
Thierry Reding0447cfd2013-08-09 16:49:32 +02008122S: Supported
8123F: Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
8124F: drivers/pci/host/pci-tegra.c
8125
Kishon Vijay Abraham I47ff3de2014-07-22 15:23:45 -06008126PCI DRIVER FOR TI DRA7XX
8127M: Kishon Vijay Abraham I <kishon@ti.com>
8128L: linux-omap@vger.kernel.org
8129L: linux-pci@vger.kernel.org
8130S: Supported
8131F: Documentation/devicetree/bindings/pci/ti-pci.txt
8132F: drivers/pci/host/pci-dra7xx.c
8133
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008134PCI DRIVER FOR RENESAS R-CAR
8135M: Simon Horman <horms@verge.net.au>
8136L: linux-pci@vger.kernel.org
8137L: linux-sh@vger.kernel.org
8138S: Maintained
8139F: drivers/pci/host/*rcar*
8140
Jingoo Han4af82252013-09-12 20:29:24 +09008141PCI DRIVER FOR SAMSUNG EXYNOS
Jingoo Hanb7701752015-05-14 15:17:07 -07008142M: Jingoo Han <jingoohan1@gmail.com>
Jingoo Han4af82252013-09-12 20:29:24 +09008143L: linux-pci@vger.kernel.org
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008144L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8145L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Jingoo Han4af82252013-09-12 20:29:24 +09008146S: Maintained
8147F: drivers/pci/host/pci-exynos.c
8148
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008149PCI DRIVER FOR SYNOPSIS DESIGNWARE
Jingoo Hanb7701752015-05-14 15:17:07 -07008150M: Jingoo Han <jingoohan1@gmail.com>
Pratyush Anand110baab2015-04-30 09:46:07 +05308151M: Pratyush Anand <pratyush.anand@gmail.com>
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008152L: linux-pci@vger.kernel.org
8153S: Maintained
8154F: drivers/pci/host/*designware*
8155
Will Deaconcf288552014-05-01 12:04:28 +01008156PCI DRIVER FOR GENERIC OF HOSTS
8157M: Will Deacon <will.deacon@arm.com>
8158L: linux-pci@vger.kernel.org
8159L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8160S: Maintained
8161F: Documentation/devicetree/bindings/pci/host-generic-pci.txt
8162F: drivers/pci/host/pci-host-generic.c
8163
Pratyush Anand51b66a62014-02-11 11:39:26 +05308164PCIE DRIVER FOR ST SPEAR13XX
Pratyush Anand110baab2015-04-30 09:46:07 +05308165M: Pratyush Anand <pratyush.anand@gmail.com>
Pratyush Anand51b66a62014-02-11 11:39:26 +05308166L: linux-pci@vger.kernel.org
Pratyush Anand110baab2015-04-30 09:46:07 +05308167S: Maintained
Pratyush Anand51b66a62014-02-11 11:39:26 +05308168F: drivers/pci/host/*spear*
8169
Duc Dangdcd19de2015-06-05 15:56:34 -05008170PCI MSI DRIVER FOR APPLIEDMICRO XGENE
8171M: Duc Dang <dhdang@apm.com>
8172L: linux-pci@vger.kernel.org
8173L: linux-arm-kernel@lists.infradead.org
8174S: Maintained
8175F: Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
8176F: drivers/pci/host/pci-xgene-msi.c
8177
Linus Torvalds1da177e2005-04-16 15:20:36 -07008178PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07008179P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07008180L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08008181W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07008182T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07008183S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008184F: Documentation/pcmcia/
8185F: drivers/pcmcia/
8186F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008187
8188PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08008189M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07008190L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008191S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07008192F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008193
Steffen Klassert48fc2672010-08-13 10:10:46 -04008194PCRYPT PARALLEL CRYPTO ENGINE
8195M: Steffen Klassert <steffen.klassert@secunet.com>
8196L: linux-crypto@vger.kernel.org
8197S: Maintained
8198F: crypto/pcrypt.c
8199F: include/crypto/pcrypt.h
8200
Tejun Heoe72df0b2010-12-10 17:02:49 +01008201PER-CPU MEMORY ALLOCATOR
8202M: Tejun Heo <tj@kernel.org>
8203M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01008204T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
8205S: Maintained
8206F: include/linux/percpu*.h
8207F: mm/percpu*.c
8208F: arch/*/include/asm/percpu.h
8209
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07008210PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07008211M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07008212S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008213F: include/linux/delayacct.h
8214F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07008215
Ingo Molnar57c0c152009-09-21 12:20:38 +02008216PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008217M: Peter Zijlstra <a.p.zijlstra@chello.nl>
Ingo Molnardd9b2382012-03-19 21:03:46 +01008218M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melof80c5392014-03-27 17:36:14 -03008219M: Arnaldo Carvalho de Melo <acme@kernel.org>
Ingo Molnar981c3a42014-01-21 10:59:20 +01008220L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008221T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10008222S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09008223F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02008224F: include/linux/perf_event.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008225F: include/uapi/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01008226F: arch/*/kernel/perf_event*.c
8227F: arch/*/kernel/*/perf_event*.c
8228F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02008229F: arch/*/include/asm/perf_event.h
Vincent Legolla0032362009-10-13 14:48:14 +02008230F: arch/*/kernel/perf_callchain.c
8231F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10008232
Jim Cromiedd49d0f2006-03-24 18:08:17 +01008233PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07008234M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01008235L: linux-abi-devel@lists.sourceforge.net
8236S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008237F: include/linux/personality.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008238F: include/uapi/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01008239
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00008240PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00008241M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00008242S: Supported
8243F: Documentation/networking/phonet.txt
8244F: include/linux/phonet.h
8245F: include/net/phonet/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008246F: include/uapi/linux/phonet.h
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00008247F: net/phonet/
8248
Linus Torvalds1da177e2005-04-16 15:20:36 -07008249PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008250M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008251L: linux-mtd@lists.infradead.org
8252S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008253F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008254
Bruno Prémontefdbb102012-07-30 21:39:03 +02008255PICOLCD HID DRIVER
8256M: Bruno Prémont <bonbons@linux-vserver.org>
8257L: linux-input@vger.kernel.org
8258S: Maintained
8259F: drivers/hid/hid-picolcd*
8260
Jamie Ilesa53bfa02011-12-12 20:28:42 +00008261PICOXCELL SUPPORT
8262M: Jamie Iles <jamie@jamieiles.com>
8263L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8264T: git git://github.com/jamieiles/linux-2.6-ji.git
8265S: Supported
Joe Perchesb8733982014-08-08 14:25:12 -07008266F: arch/arm/boot/dts/picoxcell*
Joe Perches14430812013-09-11 14:23:50 -07008267F: arch/arm/mach-picoxcell/
Joe Perchesb8733982014-08-08 14:25:12 -07008268F: drivers/crypto/picoxcell*
Jamie Ilesa53bfa02011-12-12 20:28:42 +00008269
Linus Walleij2744e8a2011-05-02 20:50:54 +02008270PIN CONTROL SUBSYSTEM
8271M: Linus Walleij <linus.walleij@linaro.org>
David Cohenc11f0422014-10-16 19:06:59 -07008272L: linux-gpio@vger.kernel.org
Linus Walleijdbe752a2015-01-19 11:27:19 +01008273T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
Linus Walleij2744e8a2011-05-02 20:50:54 +02008274S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07008275F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02008276F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02008277
Jean-Christophe PLAGNIOL-VILLARD2201bbb2012-10-27 19:53:12 +02008278PIN CONTROLLER - ATMEL AT91
8279M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
8280L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8281S: Maintained
Alexandre Bellonic654b6bf2014-10-17 11:49:40 +02008282F: drivers/pinctrl/pinctrl-at91.*
Jean-Christophe PLAGNIOL-VILLARD2201bbb2012-10-27 19:53:12 +02008283
Ludovic Desroches33d36902015-09-16 17:36:59 +02008284PIN CONTROLLER - ATMEL AT91 PIO4
8285M: Ludovic Desroches <ludovic.desroches@atmel.com>
8286L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8287L: linux-gpio@vger.kernel.org
8288S: Supported
8289F: drivers/pinctrl/pinctrl-at91-pio4.*
8290
Mika Westerbergcbd1b652014-10-24 15:16:53 +03008291PIN CONTROLLER - INTEL
8292M: Mika Westerberg <mika.westerberg@linux.intel.com>
8293M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
8294S: Maintained
8295F: drivers/pinctrl/intel/
Viresh Kumardeda8282012-03-28 22:27:07 +05308296
Laurent Pinchart9963b532014-07-02 16:33:31 +02008297PIN CONTROLLER - RENESAS
8298M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8299L: linux-sh@vger.kernel.org
8300S: Maintained
8301F: drivers/pinctrl/sh-pfc/
8302
Doug Andersonb75e60d2013-06-16 15:17:46 -07008303PIN CONTROLLER - SAMSUNG
Tomasz Figafea685e2014-08-26 16:30:53 +02008304M: Tomasz Figa <tomasz.figa@gmail.com>
Doug Andersonb75e60d2013-06-16 15:17:46 -07008305L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8306L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8307S: Maintained
Sachin Kamat9b5b33f2014-07-11 14:29:50 +05308308F: drivers/pinctrl/samsung/
Doug Andersonb75e60d2013-06-16 15:17:46 -07008309
Viresh Kumardeda8282012-03-28 22:27:07 +05308310PIN CONTROLLER - ST SPEAR
Viresh Kumarda899472015-07-17 16:23:50 -07008311M: Viresh Kumar <vireshk@kernel.org>
Viresh Kumardeda8282012-03-28 22:27:07 +05308312L: spear-devel@list.st.com
8313L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8314W: http://www.st.com/spear
8315S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02008316F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05308317
Peter Osterlund249a6772005-09-27 21:45:30 -07008318PKTCDVD DRIVER
Jiri Kosinae5f64502015-08-09 09:11:34 +02008319M: Jiri Kosina <jikos@kernel.org>
Peter Osterlund249a6772005-09-27 21:45:30 -07008320S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008321F: drivers/block/pktcdvd.c
8322F: include/linux/pktcdvd.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008323F: include/uapi/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07008324
GuanXuetaob31d8272011-01-16 00:35:49 +08008325PKUNITY SOC DRIVERS
8326M: Guan Xuetao <gxt@mprc.pku.edu.cn>
8327W: http://mprc.pku.edu.cn/~guanxuetao/linux
8328S: Maintained
Guan Xuetaoceebf4d2014-05-27 07:53:10 +08008329T: git git://github.com/gxt/linux.git
GuanXuetaob31d8272011-01-16 00:35:49 +08008330F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08008331F: drivers/i2c/busses/i2c-puv3.c
Jingoo Han8a61f012014-07-01 15:36:01 +09008332F: drivers/video/fbdev/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08008333F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08008334
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07008335PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07008336M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07008337L: lm-sensors@lm-sensors.org
8338W: http://www.lm-sensors.org/
8339W: http://www.roeck-us.net/linux/drivers/
8340T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8341S: Maintained
8342F: Documentation/hwmon/pmbus
8343F: drivers/hwmon/pmbus/
8344F: include/linux/i2c/pmbus.h
8345
Anil Ravindranath89a36812009-08-25 17:35:18 -07008346PMC SIERRA MaxRAID DRIVER
Anil Ravindranath89a36812009-08-25 17:35:18 -07008347L: linux-scsi@vger.kernel.org
8348W: http://www.pmc-sierra.com/
Joe Perches3cdea4d712015-09-09 15:36:14 -07008349S: Orphan
Anil Ravindranath89a36812009-08-25 17:35:18 -07008350F: drivers/scsi/pmcraid.*
8351
jack wangdbf9bfe2009-10-14 16:19:21 +08008352PMC SIERRA PM8001 DRIVER
Jack Wangd32477e2015-07-29 12:02:50 +02008353M: Jack Wang <jinpu.wang@profitbricks.com>
jack wangdbf9bfe2009-10-14 16:19:21 +08008354M: lindar_liu@usish.com
Suresh Thiagarajanf5a7b522014-07-30 17:37:43 +05308355L: pmchba@pmcs.com
jack wangdbf9bfe2009-10-14 16:19:21 +08008356L: linux-scsi@vger.kernel.org
8357S: Supported
8358F: drivers/scsi/pm8001/
8359
Linus Torvalds1da177e2005-04-16 15:20:36 -07008360POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07008361M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar981c3a42014-01-21 10:59:20 +01008362L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008363T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner5cee9642014-06-22 12:06:40 +02008364S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008365F: fs/timerfd.c
8366F: include/linux/timer*
Thomas Gleixner5cee9642014-06-22 12:06:40 +02008367F: kernel/time/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008368
Anton Vorontsov3be86142007-07-15 04:43:36 +04008369POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Sebastian Reichelad8464a2014-07-16 20:14:30 +02008370M: Sebastian Reichel <sre@kernel.org>
Dmitry Eremin-Solenikov57318932014-01-21 03:33:09 +04008371M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008372M: David Woodhouse <dwmw2@infradead.org>
Sebastian Reichelad8464a2014-07-16 20:14:30 +02008373L: linux-pm@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07008374T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04008375S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008376F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07008377F: drivers/power/
Sebastian Reichel26305022015-07-24 23:11:28 +02008378X: drivers/power/avs/
Anton Vorontsov3be86142007-07-15 04:43:36 +04008379
Mark Rutland514f1612015-07-31 15:46:20 +01008380POWER STATE COORDINATION INTERFACE (PSCI)
8381M: Mark Rutland <mark.rutland@arm.com>
8382M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
8383L: linux-arm-kernel@lists.infradead.org
8384S: Maintained
8385F: drivers/firmware/psci.c
8386F: include/linux/psci.h
8387F: include/uapi/linux/psci.h
8388
Linus Torvalds1da177e2005-04-16 15:20:36 -07008389PNP SUPPORT
Joe Perches9c3646d2015-06-25 15:02:00 -07008390M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008391S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008392F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008393
Vitaly Wool999445d2007-01-04 13:07:03 +01008394PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008395M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01008396L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01008397S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008398F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01008399
Linus Torvalds1da177e2005-04-16 15:20:36 -07008400PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07008401M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008402L: linux-ppp@vger.kernel.org
8403S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07008404F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008405
8406PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07008407M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008408S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008409F: net/atm/pppoatm.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008410F: include/uapi/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008411
8412PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07008413M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008414S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07008415F: drivers/net/ppp/pppoe.c
8416F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008417
James Chapmana6d23702007-06-27 15:53:17 -07008418PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07008419M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07008420S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07008421F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07008422F: include/linux/if_pppol2tp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008423F: include/uapi/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07008424
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07008425PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07008426M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07008427W: http://wiki.enneenne.com/index.php/LinuxPPS_support
8428L: linuxpps@ml.enneenne.com (subscribers-only)
8429S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07008430F: Documentation/pps/
8431F: drivers/pps/
8432F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07008433
Harry Wei71a6d0a2011-05-11 15:13:33 -07008434PPTP DRIVER
8435M: Dmitry Kozlov <xeb@mail.ru>
8436L: netdev@vger.kernel.org
8437S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07008438F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07008439W: http://sourceforge.net/projects/accel-pptp
8440
Linus Torvalds1da177e2005-04-16 15:20:36 -07008441PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07008442M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008443L: kpreempt-tech@lists.sourceforge.net
8444W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
8445S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008446F: Documentation/preempt-locking.txt
8447F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008448
8449PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008450M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07008451L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04008452W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04008453S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07008454F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008455
Masakazu Mokuno02c18892007-07-05 20:11:16 +09008456PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00008457M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09008458L: netdev@vger.kernel.org
Michael Ellermana14ab6b2015-05-01 13:20:25 +10008459L: linuxppc-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00008460S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07008461F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09008462
Geoff Levandf58a9d12006-11-23 00:46:51 +01008463PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00008464M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10008465L: linuxppc-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00008466S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008467F: arch/powerpc/boot/ps3*
8468F: arch/powerpc/include/asm/lv1call.h
8469F: arch/powerpc/include/asm/ps3*.h
8470F: arch/powerpc/platforms/ps3/
8471F: drivers/*/ps3*
8472F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00008473F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07008474F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00008475F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01008476
Jim Pariscffb4add2009-01-06 11:32:10 +00008477PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008478M: Jim Paris <jim@jtan.com>
Geoff Levand3715a5d2015-06-10 18:00:18 +00008479M: Geoff Levand <geoff@infradead.org>
Michael Ellermana14ab6b2015-05-01 13:20:25 +10008480L: linuxppc-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00008481S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07008482F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00008483
Anton Vorontsov8defe592012-08-03 18:07:20 -07008484PSTORE FILESYSTEM
Anton Vorontsov9d5e2a02013-06-09 09:41:23 -07008485M: Anton Vorontsov <anton@enomsg.org>
Anton Vorontsov8defe592012-08-03 18:07:20 -07008486M: Colin Cross <ccross@android.com>
8487M: Kees Cook <keescook@chromium.org>
8488M: Tony Luck <tony.luck@intel.com>
8489S: Maintained
8490T: git git://git.infradead.org/users/cbou/linux-pstore.git
8491F: fs/pstore/
8492F: include/linux/pstore*
Matt Fleming04851772013-02-08 15:48:51 +00008493F: drivers/firmware/efi/efi-pstore.c
Anton Vorontsov8defe592012-08-03 18:07:20 -07008494F: drivers/acpi/apei/erst.c
8495
Richard Cochran7fbc4152012-03-10 01:55:53 +00008496PTP HARDWARE CLOCK SUPPORT
8497M: Richard Cochran <richardcochran@gmail.com>
Jiri Bence7333e32013-03-26 04:01:12 +00008498L: netdev@vger.kernel.org
Richard Cochran7fbc4152012-03-10 01:55:53 +00008499S: Maintained
8500W: http://linuxptp.sourceforge.net/
8501F: Documentation/ABI/testing/sysfs-ptp
8502F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07008503F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00008504F: drivers/net/phy/dp83640*
8505F: drivers/ptp/*
8506F: include/linux/ptp_cl*
8507
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07008508PTRACE SUPPORT
Richard Weinbergere846ee52014-08-08 14:23:46 -07008509M: Roland McGrath <roland@hack.frob.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008510M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07008511S: Maintained
8512F: include/asm-generic/syscall.h
8513F: include/linux/ptrace.h
8514F: include/linux/regset.h
8515F: include/linux/tracehook.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008516F: include/uapi/linux/ptrace.h
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07008517F: kernel/ptrace.c
8518
Michael Krufky83202042006-07-03 00:24:18 -07008519PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008520M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03008521L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008522L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07008523W: http://www.isely.net/pvrusb2/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008524T: git git://linuxtv.org/media_tree.git
Michael Krufky83202042006-07-03 00:24:18 -07008525S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008526F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008527F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07008528
Hans de Goede39532e62012-11-04 17:05:59 -03008529PWC WEBCAM DRIVER
8530M: Hans de Goede <hdegoede@redhat.com>
8531L: linux-media@vger.kernel.org
8532T: git git://linuxtv.org/media_tree.git
8533S: Maintained
8534F: drivers/media/usb/pwc/*
8535
Kamil Debski93c090b2014-08-20 11:29:23 +02008536PWM FAN DRIVER
8537M: Kamil Debski <k.debski@samsung.com>
8538L: lm-sensors@lm-sensors.org
8539S: Supported
8540F: Documentation/devicetree/bindings/hwmon/pwm-fan.txt
8541F: Documentation/hwmon/pwm-fan
8542F: drivers/hwmon/pwm-fan.c
8543
Thierry Reding200efed2012-03-27 13:16:18 +02008544PWM SUBSYSTEM
Thierry Redingaa3495f2013-05-06 12:50:36 +02008545M: Thierry Reding <thierry.reding@gmail.com>
8546L: linux-pwm@vger.kernel.org
Sascha Hauer0c2498f2011-01-28 09:40:40 +01008547S: Maintained
Thierry Reding006e8542013-11-01 11:15:05 +01008548T: git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
Thierry Reding200efed2012-03-27 13:16:18 +02008549F: Documentation/pwm.txt
8550F: Documentation/devicetree/bindings/pwm/
8551F: include/linux/pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01008552F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07008553F: drivers/video/backlight/pwm_bl.c
8554F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01008555
Eric Miao30ec2612008-06-12 15:21:41 -07008556PXA2xx/PXA3xx SUPPORT
Robert Jarzmik8da5e302014-09-24 23:08:00 +02008557M: Daniel Mack <daniel@zonque.org>
Haojian Zhuanga323f662012-03-14 18:33:07 +08008558M: Haojian Zhuang <haojian.zhuang@gmail.com>
Robert Jarzmik8da5e302014-09-24 23:08:00 +02008559M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -07008560L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08008561T: git git://github.com/hzhuang1/linux.git
Robert Jarzmik8da5e302014-09-24 23:08:00 +02008562T: git git://github.com/rjarzmik/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008563S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008564F: arch/arm/mach-pxa/
Robert Jarzmik820439f2015-05-25 23:29:19 +02008565F: drivers/dma/pxa*
Joe Perches679655d2009-04-07 20:44:32 -07008566F: drivers/pcmcia/pxa2xx*
Joe Perches9df92e62012-01-10 15:09:06 -08008567F: drivers/spi/spi-pxa2xx*
Joe Perchesfaf2e1d2014-08-08 14:26:18 -07008568F: drivers/usb/gadget/udc/pxa2*
Joe Perches679655d2009-04-07 20:44:32 -07008569F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01008570F: sound/arm/pxa*
Joe Perches14430812013-09-11 14:23:50 -07008571F: sound/soc/pxa/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008572
Ezequiel Garciaec64d3b2013-12-04 15:28:46 -08008573PXA3xx NAND FLASH DRIVER
8574M: Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
8575L: linux-mtd@lists.infradead.org
8576S: Maintained
Joe Perches9a67f092014-08-08 14:25:10 -07008577F: drivers/mtd/nand/pxa3xx_nand.c
Ezequiel Garciaec64d3b2013-12-04 15:28:46 -08008578
Haojian Zhuang3f640c62011-12-09 09:58:41 +08008579MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07008580M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08008581M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08008582L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08008583T: git git://github.com/hzhuang1/linux.git
8584T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08008585S: Maintained
Haojian Zhuang3f640c62011-12-09 09:58:41 +08008586F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08008587
Pierre Ossman272f1332007-05-14 21:25:26 +02008588PXA MMCI DRIVER
8589S: Orphan
8590
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08008591PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008592M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08008593L: rtc-linux@googlegroups.com
8594S: Maintained
8595
Tadeusz Strukcea40012014-06-05 13:44:39 -07008596QAT DRIVER
Joe Perches49e7d9d2015-04-15 16:17:31 -07008597M: Tadeusz Struk <tadeusz.struk@intel.com>
8598L: qat-linux@intel.com
8599S: Supported
8600F: drivers/crypto/qat/
Tadeusz Strukcea40012014-06-05 13:44:39 -07008601
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07008602QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04008603M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07008604L: linux-rdma@vger.kernel.org
8605S: Supported
8606F: drivers/infiniband/hw/qib/
8607
Jes Sorensen5e9772b2010-06-30 15:37:38 +02008608QLOGIC QLA1280 SCSI DRIVER
8609M: Michael Reed <mdr@sgi.com>
8610L: linux-scsi@vger.kernel.org
8611S: Maintained
8612F: drivers/scsi/qla1280.[ch]
8613
Linus Torvalds1da177e2005-04-16 15:20:36 -07008614QLOGIC QLA2XXX FC-SCSI DRIVER
Saurav Kashyap2c804eb2013-10-30 03:38:28 -04008615M: qla2xxx-upstream@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07008616L: linux-scsi@vger.kernel.org
8617S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008618F: Documentation/scsi/LICENSE.qla2xxx
8619F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008620
Ravi Anand883c98f2010-04-28 11:45:49 +05308621QLOGIC QLA4XXX iSCSI DRIVER
Nilesh Javali1018b8b2015-01-07 00:49:23 -05008622M: QLogic-Storage-Upstream@qlogic.com
Ravi Anand883c98f2010-04-28 11:45:49 +05308623L: linux-scsi@vger.kernel.org
8624S: Supported
Vikas Chaudharybacfb812013-07-11 02:09:43 -04008625F: Documentation/scsi/LICENSE.qla4xxx
Ravi Anand883c98f2010-04-28 11:45:49 +05308626F: drivers/scsi/qla4xxx/
8627
Ron Mercer5a4faa872006-07-25 00:40:21 -07008628QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00008629M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008630M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa872006-07-25 00:40:21 -07008631M: linux-driver@qlogic.com
8632L: netdev@vger.kernel.org
8633S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008634F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07008635F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07008636
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00008637QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Shahed Shaikh9f35a3c2014-08-27 12:43:21 -04008638M: Dept-GELinuxNICDev@qlogic.com
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00008639L: netdev@vger.kernel.org
8640S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07008641F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00008642
Ron Mercerc4e84bd2008-09-18 11:56:28 -04008643QLOGIC QLGE 10Gb ETHERNET DRIVER
Harish Patilc9b1a5b2014-09-18 17:27:25 -04008644M: Harish Patil <harish.patil@qlogic.com>
8645M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
8646M: Dept-GELinuxNICDev@qlogic.com
Joe Perches4cbfbe22009-07-29 15:04:21 -07008647M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04008648L: netdev@vger.kernel.org
8649S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07008650F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04008651
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02008652QLOGIC QL4xxx ETHERNET DRIVER
8653M: Yuval Mintz <Yuval.Mintz@qlogic.com>
8654M: Ariel Elior <Ariel.Elior@qlogic.com>
8655M: everest-linux-l2@qlogic.com
8656L: netdev@vger.kernel.org
8657S: Supported
8658F: drivers/net/ethernet/qlogic/qed/
8659F: include/linux/qed/
8660F: drivers/net/ethernet/qlogic/qede/
8661
Linus Torvalds1da177e2005-04-16 15:20:36 -07008662QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008663M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008664W: http://www.alarsen.net/linux/qnx4fs/
8665S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07008666F: fs/qnx4/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008667F: include/uapi/linux/qnx4_fs.h
8668F: include/uapi/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008669
Antti Palosaari91952bc2012-10-01 12:28:46 -03008670QT1010 MEDIA DRIVER
8671M: Antti Palosaari <crope@iki.fi>
8672L: linux-media@vger.kernel.org
8673W: http://linuxtv.org/
8674W: http://palosaari.fi/linux/
8675Q: http://patchwork.linuxtv.org/project/linux-media/list/
8676T: git git://linuxtv.org/anttip/media_tree.git
8677S: Maintained
8678F: drivers/media/tuners/qt1010*
8679
Sujith Manoharan966fb5e2013-11-06 10:43:27 +05308680QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
8681M: QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
8682L: linux-wireless@vger.kernel.org
8683L: ath9k-devel@lists.ath9k.org
8684W: http://wireless.kernel.org/en/users/Drivers/ath9k
8685S: Supported
8686F: drivers/net/wireless/ath/ath9k/
8687
Kalle Valo2ea0ffc2013-07-22 12:22:19 +03008688QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
8689M: Kalle Valo <kvalo@qca.qualcomm.com>
8690L: ath10k@lists.infradead.org
8691W: http://wireless.kernel.org/en/users/Drivers/ath10k
8692T: git git://github.com/kvalo/ath.git
8693S: Supported
8694F: drivers/net/wireless/ath/ath10k/
8695
Richard Kuo4f4567c2011-10-31 18:56:38 -05008696QUALCOMM HEXAGON ARCHITECTURE
8697M: Richard Kuo <rkuo@codeaurora.org>
8698L: linux-hexagon@vger.kernel.org
8699S: Supported
8700F: arch/hexagon/
8701
Eugene Krasnikov8e84c252013-10-08 21:25:58 +01008702QUALCOMM WCN36XX WIRELESS DRIVER
8703M: Eugene Krasnikov <k.eugene.e@gmail.com>
8704L: wcn36xx@lists.infradead.org
8705W: http://wireless.kernel.org/en/users/Drivers/wcn36xx
8706T: git git://github.com/KrasnikovEugene/wcn36xx.git
8707S: Supported
8708F: drivers/net/wireless/ath/wcn36xx/
8709
Yehuda Sadeh602adf42010-08-12 16:11:25 -07008710RADOS BLOCK DEVICE (RBD)
Sage Weil0f5417c2015-02-19 10:10:40 -08008711M: Ilya Dryomov <idryomov@gmail.com>
8712M: Sage Weil <sage@redhat.com>
Alex Elder527a88b2013-12-26 08:37:43 -06008713M: Alex Elder <elder@kernel.org>
Sage Weil398ecff52015-07-09 11:46:14 -04008714L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07008715W: http://ceph.com/
8716T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil6e67b7a2015-07-09 11:47:37 -04008717T: git git://github.com/ceph/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07008718S: Supported
Sage Weil398ecff52015-07-09 11:46:14 -04008719F: Documentation/ABI/testing/sysfs-bus-rbd
Yehuda Sadeh602adf42010-08-12 16:11:25 -07008720F: drivers/block/rbd.c
8721F: drivers/block/rbd_types.h
8722
Linus Torvalds1da177e2005-04-16 15:20:36 -07008723RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008724M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008725L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008726S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09008727F: drivers/video/fbdev/aty/radeon*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008728F: include/uapi/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008729
Hans de Goedec6c9b342012-11-04 17:03:58 -03008730RADIOSHARK RADIO DRIVER
8731M: Hans de Goede <hdegoede@redhat.com>
8732L: linux-media@vger.kernel.org
8733T: git git://linuxtv.org/media_tree.git
8734S: Maintained
8735F: drivers/media/radio/radio-shark.c
8736
8737RADIOSHARK2 RADIO DRIVER
8738M: Hans de Goede <hdegoede@redhat.com>
8739L: linux-media@vger.kernel.org
8740T: git git://linuxtv.org/media_tree.git
8741S: Maintained
8742F: drivers/media/radio/radio-shark2.c
8743F: drivers/media/radio/radio-tea5777.c
8744
Linus Torvalds1da177e2005-04-16 15:20:36 -07008745RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008746M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008747L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008748S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09008749F: drivers/video/fbdev/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008750
Randy Dunlape7839f22008-10-12 16:11:45 -07008751RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07008752P: rt2x00 project
Stanislaw Gruszkab1824272014-09-28 14:03:06 +02008753M: Stanislaw Gruszka <sgruszka@redhat.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01008754M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07008755L: linux-wireless@vger.kernel.org
Ivo van Doorn95ea3622007-09-25 17:57:13 -07008756S: Maintained
8757F: drivers/net/wireless/rt2x00/
8758
Nick Piggin9db55792008-02-08 04:19:49 -08008759RAMDISK RAM BLOCK DEVICE DRIVER
Ross Zwislerea7618e2015-03-17 12:56:30 -06008760M: Jens Axboe <axboe@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08008761S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008762F: Documentation/blockdev/ramdisk.txt
8763F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08008764
Matt Mackall9e95ce22005-04-16 15:25:56 -07008765RANDOM NUMBER DRIVER
Christoph Hellwig0624bca2014-04-25 01:12:01 -07008766M: "Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07008767S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008768F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07008769
Matt Porter394b7012005-11-07 01:00:15 -08008770RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008771M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08008772M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08008773S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008774F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08008775
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008776RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008777L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04008778S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07008779F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008780
8781RCUTORTURE MODULE
Josh Triplette0198b292014-07-30 16:08:42 -07008782M: Josh Triplett <josh@joshtriplett.org>
Joe Perches8b58be82009-07-29 15:04:30 -07008783M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +01008784L: linux-kernel@vger.kernel.org
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08008785S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07008786T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07008787F: Documentation/RCU/torture.txt
Joe Perches34e2d562014-07-03 15:08:00 -07008788F: kernel/rcu/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008789
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -07008790RCUTORTURE TEST FRAMEWORK
8791M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyab0afd62014-06-03 08:17:06 -07008792M: Josh Triplett <josh@joshtriplett.org>
Paul E. McKenney4632a192014-05-30 15:37:24 -07008793R: Steven Rostedt <rostedt@goodmis.org>
8794R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Lai Jiangshan96a39bc2015-07-01 15:26:27 +08008795R: Lai Jiangshan <jiangshanlai@gmail.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +01008796L: linux-kernel@vger.kernel.org
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -07008797S: Supported
8798T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8799F: tools/testing/selftests/rcutorture
8800
Florian Fainellic1f766b2008-02-06 22:39:44 +01008801RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07008802M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01008803S: Maintained
8804
Florian Fainellidb17f3952007-12-19 11:30:30 +01008805RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008806M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f3952007-12-19 11:30:30 +01008807L: netdev@vger.kernel.org
8808S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07008809F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f3952007-12-19 11:30:30 +01008810
Andy Grovera09ed662009-02-24 15:30:41 +00008811RDS - RELIABLE DATAGRAM SOCKETS
Venkat Venkatsubra8a85ac42014-01-30 13:28:47 -08008812M: Chien Yen <chien.yen@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00008813L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00008814S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008815F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00008816
Josh Triplett595182b2006-10-04 02:17:21 -07008817READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07008818M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyab0afd62014-06-03 08:17:06 -07008819M: Josh Triplett <josh@joshtriplett.org>
Paul E. McKenney4632a192014-05-30 15:37:24 -07008820R: Steven Rostedt <rostedt@goodmis.org>
8821R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Lai Jiangshan96a39bc2015-07-01 15:26:27 +08008822R: Lai Jiangshan <jiangshanlai@gmail.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +01008823L: linux-kernel@vger.kernel.org
Paul E. McKenney9fab97872012-05-07 09:36:34 -07008824W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07008825S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07008826T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08008827F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07008828X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08008829F: include/linux/rcu*
Paul E. McKenney4102ada2013-10-08 20:23:47 -07008830X: include/linux/srcu.h
8831F: kernel/rcu/
Joe Perches34e2d562014-07-03 15:08:00 -07008832X: kernel/torture.c
Josh Triplett595182b2006-10-04 02:17:21 -07008833
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08008834REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008835M: Alessandro Zummo <a.zummo@towertech.it>
Alexandre Belloni7c6f84f2015-04-16 12:45:43 -07008836M: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Alessandro Zummo764654932006-12-10 02:19:06 -08008837L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08008838Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alexandre Belloni4733f392015-05-26 11:13:04 +02008839T: git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08008840S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008841F: Documentation/rtc.txt
8842F: drivers/rtc/
8843F: include/linux/rtc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008844F: include/uapi/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08008845
Mark Brown0e400c52014-07-31 12:38:31 +01008846REALTEK AUDIO CODECS
8847M: Bard Liao <bardliao@realtek.com>
8848M: Oder Chiou <oder_chiou@realtek.com>
8849S: Maintained
8850F: sound/soc/codecs/rt*
8851F: include/sound/rt*.h
8852
Linus Torvalds1da177e2005-04-16 15:20:36 -07008853REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07008854L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008855S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008856F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008857
Mark Brownb83a3132011-05-11 19:59:58 +02008858REGISTER MAP ABSTRACTION
Mark Brownb02e48f2013-04-12 11:39:57 +01008859M: Mark Brown <broonie@kernel.org>
Mark Browndd060bc2014-08-16 12:30:58 +01008860L: linux-kernel@vger.kernel.org
Mark Brownb83a3132011-05-11 19:59:58 +02008861T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
8862S: Supported
8863F: drivers/base/regmap/
8864F: include/linux/regmap.h
8865
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02008866REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
8867M: Ohad Ben-Cohen <ohad@wizery.com>
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03008868T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02008869S: Maintained
8870F: drivers/remoteproc/
8871F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07008872F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02008873
Ohad Ben-Cohend8115db2013-04-16 20:34:49 +03008874REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
8875M: Ohad Ben-Cohen <ohad@wizery.com>
8876T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
8877S: Maintained
8878F: drivers/rpmsg/
8879F: Documentation/rpmsg.txt
8880F: include/linux/rpmsg.h
8881
Philipp Zabel1b0fe6b2014-05-27 15:58:09 +02008882RESET CONTROLLER FRAMEWORK
8883M: Philipp Zabel <p.zabel@pengutronix.de>
8884S: Maintained
8885F: drivers/reset/
8886F: Documentation/devicetree/bindings/reset/
Philipp Zabelb2f6dd72015-02-13 12:14:40 +01008887F: include/dt-bindings/reset/
Philipp Zabel1b0fe6b2014-05-27 15:58:09 +02008888F: include/linux/reset.h
8889F: include/linux/reset-controller.h
8890
Ivo van Doorne08976452008-04-12 19:23:55 +02008891RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07008892M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02008893L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02008894W: http://wireless.kernel.org/
8895T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
8896T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02008897S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08008898F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07008899F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02008900
Thomas Graf933685c2015-01-13 01:01:24 +01008901RHASHTABLE
8902M: Thomas Graf <tgraf@suug.ch>
8903L: netdev@vger.kernel.org
8904S: Maintained
8905F: lib/rhashtable.c
8906F: include/linux/rhashtable.h
8907
Maxim Levitsky67e054e2010-02-22 20:39:42 +02008908RICOH SMARTMEDIA/XD DRIVER
8909M: Maxim Levitsky <maximlevitsky@gmail.com>
8910S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07008911F: drivers/mtd/nand/r852.c
8912F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02008913
Maxim Levitsky92634122011-03-25 01:56:59 -07008914RICOH R5C592 MEMORYSTICK DRIVER
8915M: Maxim Levitsky <maximlevitsky@gmail.com>
8916S: Maintained
8917F: drivers/memstick/host/r592.*
8918
Stefan Achatz27f1d2f2013-09-05 06:36:01 +02008919ROCCAT DRIVERS
8920M: Stefan Achatz <erazor_de@users.sourceforge.net>
8921W: http://sourceforge.net/projects/roccat/
8922S: Maintained
8923F: drivers/hid/hid-roccat*
8924F: include/linux/hid-roccat*
8925F: Documentation/ABI/*/sysfs-driver-hid-roccat*
8926
Jiri Pirko4b8ac962014-11-28 14:34:26 +01008927ROCKER DRIVER
8928M: Jiri Pirko <jiri@resnulli.us>
8929M: Scott Feldman <sfeldma@gmail.com>
8930L: netdev@vger.kernel.org
8931S: Supported
8932F: drivers/net/ethernet/rocker/
8933
Linus Torvalds1da177e2005-04-16 15:20:36 -07008934ROCKETPORT DRIVER
8935P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008936W: http://www.comtrol.com
8937S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008938F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07008939F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008940
Kevin Cernekee7645c2f2014-10-21 15:23:06 -07008941ROCKETPORT EXPRESS/INFINITY DRIVER
8942M: Kevin Cernekee <cernekee@gmail.com>
8943L: linux-serial@vger.kernel.org
8944S: Odd Fixes
8945F: drivers/tty/serial/rp2.*
8946
Linus Torvalds1da177e2005-04-16 15:20:36 -07008947ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07008948M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008949L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02008950W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008951S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008952F: include/net/rose.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008953F: include/uapi/linux/rose.h
Joe Perches679655d2009-04-07 20:44:32 -07008954F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008955
Antti Palosaari91952bc2012-10-01 12:28:46 -03008956RTL2830 MEDIA DRIVER
8957M: Antti Palosaari <crope@iki.fi>
8958L: linux-media@vger.kernel.org
8959W: http://linuxtv.org/
8960W: http://palosaari.fi/linux/
8961Q: http://patchwork.linuxtv.org/project/linux-media/list/
8962T: git git://linuxtv.org/anttip/media_tree.git
8963S: Maintained
8964F: drivers/media/dvb-frontends/rtl2830*
8965
Antti Palosaari27a0aac2013-04-09 20:30:43 -03008966RTL2832 MEDIA DRIVER
8967M: Antti Palosaari <crope@iki.fi>
8968L: linux-media@vger.kernel.org
8969W: http://linuxtv.org/
8970W: http://palosaari.fi/linux/
8971Q: http://patchwork.linuxtv.org/project/linux-media/list/
8972T: git git://linuxtv.org/anttip/media_tree.git
8973S: Maintained
8974F: drivers/media/dvb-frontends/rtl2832*
8975
Antti Palosaariba6e6f62014-02-03 00:00:32 -03008976RTL2832_SDR MEDIA DRIVER
8977M: Antti Palosaari <crope@iki.fi>
8978L: linux-media@vger.kernel.org
8979W: http://linuxtv.org/
8980W: http://palosaari.fi/linux/
8981Q: http://patchwork.linuxtv.org/project/linux-media/list/
8982T: git git://linuxtv.org/anttip/media_tree.git
8983S: Maintained
Antti Palosaarib4bb1c22014-07-14 21:19:29 -03008984F: drivers/media/dvb-frontends/rtl2832_sdr*
Antti Palosaariba6e6f62014-02-03 00:00:32 -03008985
Larry Finger59840482008-11-12 17:13:09 -06008986RTL8180 WIRELESS DRIVER
Michael Wu605bebe2007-05-14 01:41:02 -04008987L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02008988W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07008989T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
John W. Linville7be6ff62014-12-04 16:52:41 -05008990S: Orphan
John W. Linville3cfeb0c2010-12-20 15:16:53 -05008991F: drivers/net/wireless/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04008992
Larry Finger59840482008-11-12 17:13:09 -06008993RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03008994M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008995M: Hin-Tak Leung <htl10@users.sourceforge.net>
8996M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07008997L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02008998W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07008999T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07009000S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05009001F: drivers/net/wireless/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06009002
Larry Finger3cf0c8a2010-12-16 09:13:21 -06009003RTL8192CE WIRELESS DRIVER
9004M: Larry Finger <Larry.Finger@lwfinger.net>
9005M: Chaoming Li <chaoming_li@realsil.com.cn>
9006L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02009007W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06009008T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9009S: Maintained
9010F: drivers/net/wireless/rtlwifi/
Larry Fingerf0b3e4b2010-12-17 16:04:11 -06009011F: drivers/net/wireless/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02009012
Jes Sorensen26f1fad2015-10-14 20:44:51 -04009013RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
9014M: Jes Sorensen <Jes.Sorensen@redhat.com>
9015L: linux-wireless@vger.kernel.org
9016T: git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8723au-mac80211
9017S: Maintained
9018F: drivers/net/wireless/realtek/rtl8xxxu/
9019
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08009020S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009021M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01009022L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08009023S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09009024F: drivers/video/fbdev/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08009025
Linus Torvalds1da177e2005-04-16 15:20:36 -07009026S390
Joe Perches8b58be82009-07-29 15:04:30 -07009027M: Martin Schwidefsky <schwidefsky@de.ibm.com>
9028M: Heiko Carstens <heiko.carstens@de.ibm.com>
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01009029L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08009030W: http://www.ibm.com/developerworks/linux/linux390/
9031S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009032F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01009033F: drivers/s390/
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02009034F: Documentation/s390/
9035F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08009036
Sebastian Ott322986c2014-02-17 15:16:30 +01009037S390 COMMON I/O LAYER
9038M: Sebastian Ott <sebott@linux.vnet.ibm.com>
9039M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
9040L: linux-s390@vger.kernel.org
9041W: http://www.ibm.com/developerworks/linux/linux390/
9042S: Supported
9043F: drivers/s390/cio/
9044
9045S390 DASD DRIVER
9046M: Stefan Weinhuber <wein@de.ibm.com>
9047M: Stefan Haberland <stefan.haberland@de.ibm.com>
9048L: linux-s390@vger.kernel.org
9049W: http://www.ibm.com/developerworks/linux/linux390/
9050S: Supported
9051F: drivers/s390/block/dasd*
9052F: block/partitions/ibm.c
9053
Heiko Carstens5238da42006-02-11 17:56:01 -08009054S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07009055M: Ursula Braun <ursula.braun@de.ibm.com>
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01009056L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08009057W: http://www.ibm.com/developerworks/linux/linux390/
9058S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009059F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08009060
Sebastian Ott322986c2014-02-17 15:16:30 +01009061S390 PCI SUBSYSTEM
9062M: Sebastian Ott <sebott@linux.vnet.ibm.com>
9063M: Gerald Schaefer <gerald.schaefer@de.ibm.com>
9064L: linux-s390@vger.kernel.org
9065W: http://www.ibm.com/developerworks/linux/linux390/
9066S: Supported
9067F: arch/s390/pci/
9068F: drivers/pci/hotplug/s390_pci_hpc.c
9069
Felix Beckfeed9b62009-03-26 15:24:23 +01009070S390 ZCRYPT DRIVER
Ingo Tuchscherer5c8d0982013-01-14 10:07:05 +01009071M: Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01009072L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01009073W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01009074S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07009075F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01009076
Heiko Carstens5238da42006-02-11 17:56:01 -08009077S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01009078M: Steffen Maier <maier@linux.vnet.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/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009081S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009082F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009083
Ursula Braundd96df22007-09-19 13:09:02 +02009084S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07009085M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02009086L: linux-s390@vger.kernel.org
9087W: http://www.ibm.com/developerworks/linux/linux390/
9088S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009089F: drivers/s390/net/*iucv*
9090F: include/net/iucv/
9091F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02009092
Gerald Schaefer8128f23c2015-08-27 15:33:03 +02009093S390 IOMMU (PCI)
9094M: Gerald Schaefer <gerald.schaefer@de.ibm.com>
9095L: linux-s390@vger.kernel.org
9096W: http://www.ibm.com/developerworks/linux/linux390/
9097S: Supported
9098F: drivers/iommu/s390-iommu.c
9099
Ben Dooks4dde7f72008-06-30 22:40:38 +01009100S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07009101M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07009102L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01009103S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009104F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01009105
Hans Verkuil1f15a222012-11-23 07:45:29 -03009106SAA6588 RDS RECEIVER DRIVER
9107M: Hans Verkuil <hverkuil@xs4all.nl>
9108L: linux-media@vger.kernel.org
9109T: git git://linuxtv.org/media_tree.git
9110W: http://linuxtv.org
9111S: Odd Fixes
9112F: drivers/media/i2c/saa6588*
9113
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02009114SAA7134 VIDEO4LINUX DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02009115M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02009116L: linux-media@vger.kernel.org
9117W: http://linuxtv.org
9118T: git git://linuxtv.org/media_tree.git
9119S: Odd fixes
Cesar Eduardo Barrose42bf502013-03-02 21:53:47 -03009120F: Documentation/video4linux/*.saa7134
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02009121F: drivers/media/pci/saa7134/
9122
Linus Torvalds1da177e2005-04-16 15:20:36 -07009123SAA7146 VIDEO4LINUX-2 DRIVER
Hans Verkuil566b8152012-11-23 09:58:12 -03009124M: Hans Verkuil <hverkuil@xs4all.nl>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03009125L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02009126T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07009127S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03009128F: drivers/media/common/saa7146/
9129F: drivers/media/pci/saa7146/
9130F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009131
Corentin Chary92304a42011-12-05 12:38:35 -05009132SAMSUNG LAPTOP DRIVER
Corentin Chary5909c652012-12-17 16:00:05 -08009133M: Corentin Chary <corentin.chary@gmail.com>
Corentin Chary92304a42011-12-05 12:38:35 -05009134L: platform-driver-x86@vger.kernel.org
9135S: Maintained
9136F: drivers/platform/x86/samsung-laptop.c
9137
Mark Brown4a109cc2010-09-24 10:50:46 +01009138SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09009139M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01009140L: alsa-devel@alsa-project.org (moderated for non-subscribers)
9141S: Supported
Joe Perches14430812013-09-11 14:23:50 -07009142F: sound/soc/samsung/
Mark Brown4a109cc2010-09-24 10:50:46 +01009143
Jingoo Han0d89a282011-12-19 11:09:35 +09009144SAMSUNG FRAMEBUFFER DRIVER
Jingoo Hanb7701752015-05-14 15:17:07 -07009145M: Jingoo Han <jingoohan1@gmail.com>
Jingoo Han0d89a282011-12-19 11:09:35 +09009146L: linux-fbdev@vger.kernel.org
9147S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09009148F: drivers/video/fbdev/s3c-fb.c
Jingoo Han0d89a282011-12-19 11:09:35 +09009149
Krzysztof Kozlowskib40f0632015-05-06 14:19:36 +09009150SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09009151M: Sangbeom Kim <sbkim73@samsung.com>
Krzysztof Kozlowskib40f0632015-05-06 14:19:36 +09009152M: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09009153L: linux-kernel@vger.kernel.org
Krzysztof Kozlowskib40f0632015-05-06 14:19:36 +09009154L: linux-samsung-soc@vger.kernel.org
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09009155S: Supported
9156F: drivers/mfd/sec*.c
9157F: drivers/regulator/s2m*.c
9158F: drivers/regulator/s5m*.c
Krzysztof Kozlowskib40f0632015-05-06 14:19:36 +09009159F: drivers/clk/clk-s2mps11.c
9160F: drivers/rtc/rtc-s5m.c
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09009161F: include/linux/mfd/samsung/
Krzysztof Kozlowskib40f0632015-05-06 14:19:36 +09009162F: Documentation/devicetree/bindings/regulator/s5m8767-regulator.txt
9163F: Documentation/devicetree/bindings/mfd/s2mp*.txt
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09009164
Sylwester Nawrocki038f5c42013-05-28 18:26:20 -03009165SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
9166M: Kyungmin Park <kyungmin.park@samsung.com>
9167M: Sylwester Nawrocki <s.nawrocki@samsung.com>
9168L: linux-media@vger.kernel.org
9169Q: https://patchwork.linuxtv.org/project/linux-media/list/
9170S: Supported
9171F: drivers/media/platform/exynos4-is/
Sylwester Nawrocki038f5c42013-05-28 18:26:20 -03009172
Sylwester Nawrocki6fd86ab2012-11-15 18:05:15 -03009173SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
9174M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
9175L: linux-media@vger.kernel.org
9176L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9177S: Maintained
9178F: drivers/media/platform/s3c-camif/
9179F: include/media/s3c_camif.h
9180
Andrzej Hajdab84ef242013-01-31 07:03:05 -03009181SAMSUNG S5C73M3 CAMERA DRIVER
9182M: Kyungmin Park <kyungmin.park@samsung.com>
9183M: Andrzej Hajda <a.hajda@samsung.com>
9184L: linux-media@vger.kernel.org
9185S: Supported
9186F: drivers/media/i2c/s5c73m3/*
9187
Andrzej Hajda7d4599372013-12-05 08:38:39 -03009188SAMSUNG S5K5BAF CAMERA DRIVER
9189M: Kyungmin Park <kyungmin.park@samsung.com>
9190M: Andrzej Hajda <a.hajda@samsung.com>
9191L: linux-media@vger.kernel.org
9192S: Supported
9193F: drivers/media/i2c/s5k5baf.c
9194
Robert Baldygac04c6742015-08-20 17:26:02 +02009195SAMSUNG S3FWRN5 NFC DRIVER
9196M: Robert Baldyga <r.baldyga@samsung.com>
9197L: linux-nfc@lists.01.org (moderated for non-subscribers)
9198S: Supported
9199F: drivers/nfc/s3fwrn5
9200
Tomasz Figa310e39c2013-11-09 03:17:34 +01009201SAMSUNG SOC CLOCK DRIVERS
Tomasz Figafea685e2014-08-26 16:30:53 +02009202M: Sylwester Nawrocki <s.nawrocki@samsung.com>
9203M: Tomasz Figa <tomasz.figa@gmail.com>
Tomasz Figa310e39c2013-11-09 03:17:34 +01009204S: Supported
9205L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9206F: drivers/clk/samsung/
9207
Byungho An66890ed2014-03-25 12:11:07 -07009208SAMSUNG SXGBE DRIVERS
9209M: Byungho An <bh74.an@samsung.com>
9210M: Girish K S <ks.giri@samsung.com>
Byungho An66890ed2014-03-25 12:11:07 -07009211M: Vipul Pandya <vipul.pandya@samsung.com>
9212S: Supported
9213L: netdev@vger.kernel.org
9214F: drivers/net/ethernet/samsung/sxgbe/
9215
Lukasz Majewski93c537a2015-02-24 16:31:28 +01009216SAMSUNG THERMAL DRIVER
9217M: Lukasz Majewski <l.majewski@samsung.com>
9218L: linux-pm@vger.kernel.org
9219L: linux-samsung-soc@vger.kernel.org
9220S: Supported
9221T: https://github.com/lmajewski/linux-samsung-thermal.git
9222F: drivers/thermal/samsung/
9223
Kamil Debskie296cd32014-08-21 11:33:37 +02009224SAMSUNG USB2 PHY DRIVER
9225M: Kamil Debski <k.debski@samsung.com>
9226L: linux-kernel@vger.kernel.org
9227S: Supported
9228F: Documentation/devicetree/bindings/phy/samsung-phy.txt
9229F: Documentation/phy/samsung-usb2.txt
9230F: drivers/phy/phy-exynos4210-usb2.c
9231F: drivers/phy/phy-exynos4x12-usb2.c
9232F: drivers/phy/phy-exynos5250-usb2.c
9233F: drivers/phy/phy-s5pv210-usb2.c
9234F: drivers/phy/phy-samsung-usb2.c
9235F: drivers/phy/phy-samsung-usb2.h
9236
Alan Coxca749e22011-03-18 13:56:14 +00009237SERIAL DRIVERS
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08009238M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Alan Coxca749e22011-03-18 13:56:14 +00009239L: linux-serial@vger.kernel.org
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08009240S: Maintained
Joe Perches14430812013-09-11 14:23:50 -07009241F: drivers/tty/serial/
Alan Coxca749e22011-03-18 13:56:14 +00009242
Viresh Kumaraecb7b62011-05-24 14:04:09 +05309243SYNOPSYS DESIGNWARE DMAC DRIVER
Viresh Kumarda899472015-07-17 16:23:50 -07009244M: Viresh Kumar <vireshk@kernel.org>
Viresh Kumar337ae472013-07-19 09:13:58 +05309245M: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05309246S: Maintained
Andy Shevchenko1fb200d2015-01-19 18:23:06 +02009247F: include/linux/dma/dw.h
Andy Shevchenko3d598f42014-08-19 20:29:12 +03009248F: include/linux/platform_data/dma-dw.h
Andy Shevchenko61a76492013-06-05 15:26:44 +03009249F: drivers/dma/dw/
Viresh Kumaraecb7b62011-05-24 14:04:09 +05309250
Lars Persson058999c2015-07-28 12:01:50 +02009251SYNOPSYS DESIGNWARE ETHERNET QOS 4.10a driver
9252M: Lars Persson <lars.persson@axis.com>
9253L: netdev@vger.kernel.org
9254S: Supported
9255F: Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt
9256F: drivers/net/ethernet/synopsys/dwc_eth_qos.c
9257
Wolfram Sangfc531d92015-10-15 15:50:15 +02009258SYNOPSYS DESIGNWARE I2C DRIVER
9259M: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9260M: Jarkko Nikula <jarkko.nikula@linux.intel.com>
9261M: Mika Westerberg <mika.westerberg@linux.intel.com>
9262L: linux-i2c@vger.kernel.org
9263S: Maintained
9264F: drivers/i2c/busses/i2c-designware-*
9265F: include/linux/platform_data/i2c-designware.h
9266
Seungwon Jeonf9e37132013-01-17 21:33:23 +09009267SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
9268M: Seungwon Jeon <tgih.jun@samsung.com>
9269M: Jaehoon Chung <jh80.chung@samsung.com>
9270L: linux-mmc@vger.kernel.org
9271S: Maintained
9272F: include/linux/mmc/dw_mmc.h
9273F: drivers/mmc/host/dw_mmc*
9274
Alexander Shishkina961e692015-09-22 15:47:11 +03009275SYSTEM TRACE MODULE CLASS
9276M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
9277S: Maintained
9278F: Documentation/trace/stm.txt
9279F: drivers/hwtracing/stm/
9280F: include/linux/stm.h
9281F: include/uapi/linux/stm.h
9282
Andreas Noever1db121d2014-07-10 18:58:04 +02009283THUNDERBOLT DRIVER
9284M: Andreas Noever <andreas.noever@gmail.com>
9285S: Maintained
9286F: drivers/thunderbolt/
9287
John Stultz9222d242013-07-16 16:45:31 +02009288TIMEKEEPING, CLOCKSOURCE CORE, NTP
John Stultz50363732012-12-13 13:08:47 -05009289M: John Stultz <john.stultz@linaro.org>
Thomas Gleixner88606e82010-12-14 21:37:13 +01009290M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar981c3a42014-01-21 10:59:20 +01009291L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01009292T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01009293S: Supported
9294F: include/linux/clocksource.h
9295F: include/linux/time.h
9296F: include/linux/timex.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009297F: include/uapi/linux/time.h
9298F: include/uapi/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01009299F: kernel/time/clocksource.c
9300F: kernel/time/time*.c
9301F: kernel/time/ntp.c
John Stultz7fe5f1c2015-03-11 17:40:15 -07009302F: tools/testing/selftests/timers/
Thomas Gleixner88606e82010-12-14 21:37:13 +01009303
Linus Torvalds1da177e2005-04-16 15:20:36 -07009304SC1200 WDT DRIVER
Jean Delvareb3006452013-11-12 15:08:56 -08009305M: Zwane Mwaikambo <zwanem@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009306S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009307F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07009308
9309SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01009310M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07009311M: Peter Zijlstra <peterz@infradead.org>
Ingo Molnar981c3a42014-01-21 10:59:20 +01009312L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01009313T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07009314S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09009315F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07009316F: include/linux/sched.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009317F: include/uapi/linux/sched.h
Peter Zijlstrac2eb5052013-10-02 11:49:47 +02009318F: include/linux/wait.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009319
Chen Liqin6bcf6732009-06-13 15:24:33 +08009320SCORE ARCHITECTURE
Lennox Wued386652013-09-26 01:41:22 +08009321M: Chen Liqin <liqin.linux@gmail.com>
Joe Perchesa2681a72009-10-26 16:49:43 -07009322M: Lennox Wu <lennox.wu@gmail.com>
Lennox Wued386652013-09-26 01:41:22 +08009323W: http://www.sunplus.com
Chen Liqin6bcf6732009-06-13 15:24:33 +08009324S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07009325F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08009326
Linus Torvalds1da177e2005-04-16 15:20:36 -07009327SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009328M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009329L: linux-scsi@vger.kernel.org
9330W: http://www.kernel.dk
9331S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009332F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009333
Roland Dreierfb50a832010-10-07 09:54:53 -07009334SCSI RDMA PROTOCOL (SRP) INITIATOR
Bart Van Assche3453bddb2015-02-06 15:27:56 +01009335M: Bart Van Assche <bart.vanassche@sandisk.com>
Roland Dreierfb50a832010-10-07 09:54:53 -07009336L: linux-rdma@vger.kernel.org
9337S: Supported
9338W: http://www.openfabrics.org
9339Q: http://patchwork.kernel.org/project/linux-rdma/list/
9340T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
9341F: drivers/infiniband/ulp/srp/
9342F: include/scsi/srp.h
9343
Linus Torvalds1da177e2005-04-16 15:20:36 -07009344SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009345M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009346L: linux-scsi@vger.kernel.org
Douglas Gilbert59ab3c92013-10-31 09:10:46 -04009347W: http://sg.danny.cz/sg
Linus Torvalds1da177e2005-04-16 15:20:36 -07009348S: Maintained
Douglas Gilbert59ab3c92013-10-31 09:10:46 -04009349F: Documentation/scsi/scsi-generic.txt
Joe Perches679655d2009-04-07 20:44:32 -07009350F: drivers/scsi/sg.c
9351F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009352
9353SCSI SUBSYSTEM
James Bottomley0351b8f2015-04-01 09:09:36 +00009354M: "James E.J. Bottomley" <JBottomley@odin.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009355L: linux-scsi@vger.kernel.org
James Bottomley0351b8f2015-04-01 09:09:36 +00009356T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07009357S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009358F: drivers/scsi/
9359F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009360
9361SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009362M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009363L: linux-scsi@vger.kernel.org
9364S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009365F: Documentation/scsi/st.txt
Jean Delvaref7269cf2013-07-03 15:05:08 -07009366F: drivers/scsi/st.*
9367F: drivers/scsi/st_*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009368
9369SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00009370M: Vlad Yasevich <vyasevich@gmail.com>
Neil Horman02c38d02012-10-24 09:26:51 +00009371M: Neil Horman <nhorman@tuxdriver.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07009372L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07009373W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00009374S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009375F: Documentation/networking/sctp.txt
9376F: include/linux/sctp.h
Daniel Borkmann4d58c022013-07-23 14:51:48 +02009377F: include/uapi/linux/sctp.h
Joe Perches679655d2009-04-07 20:44:32 -07009378F: include/net/sctp/
9379F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009380
9381SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07009382M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07009383S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07009384F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07009385F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07009386F: drivers/watchdog/scx200_wdt.c
9387F: drivers/i2c/busses/scx200*
9388F: drivers/mtd/maps/scx200_docflash.c
9389F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07009390
9391SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009392M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07009393S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009394F: drivers/char/scx200_gpio.c
9395F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07009396
9397SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009398M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07009399S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009400F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07009401
Sascha Sommer6a369132008-07-15 14:21:29 +02009402SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009403M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02009404L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
9405S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009406F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02009407
Randy Dunlape7839f22008-10-12 16:11:45 -07009408SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Joe Perches7a241d62009-10-26 16:49:42 -07009409L: linux-mmc@vger.kernel.org
Ulf Hanssona1cb1d12015-03-13 13:39:03 +01009410S: Orphan
Joe Perches7a241d62009-10-26 16:49:42 -07009411F: drivers/mmc/host/sdhci.*
Joe Perchesd4a45782012-01-10 15:08:54 -08009412F: drivers/mmc/host/sdhci-pltfm.[ch]
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009413
Kees Cookc04f9d62014-07-18 11:28:33 -07009414SECURE COMPUTING
9415M: Kees Cook <keescook@chromium.org>
Kees Cooka0cfd752014-08-12 15:41:17 -07009416R: Andy Lutomirski <luto@amacapital.net>
9417R: Will Drewry <wad@chromium.org>
Kees Cookc04f9d62014-07-18 11:28:33 -07009418T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
9419S: Supported
9420F: kernel/seccomp.c
9421F: include/uapi/linux/seccomp.h
9422F: include/linux/seccomp.h
Kees Cookc99ee512015-06-16 10:54:14 -07009423F: tools/testing/selftests/seccomp/*
Kees Cookc04f9d62014-07-18 11:28:33 -07009424K: \bsecure_computing
9425K: \bTIF_SECCOMP\b
9426
Ben Dooks0d1bb412009-06-14 13:52:37 +01009427SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009428M: Ben Dooks <ben-linux@fluff.org>
Ulf Hanssondc524882015-03-20 10:15:29 +01009429M: Jaehoon Chung <jh80.chung@samsung.com>
Joe Perches7a241d62009-10-26 16:49:42 -07009430L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01009431S: Maintained
Ulf Hanssondc524882015-03-20 10:15:29 +01009432F: drivers/mmc/host/sdhci-s3c*
Ben Dooks0d1bb412009-06-14 13:52:37 +01009433
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07009434SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Viresh Kumarda899472015-07-17 16:23:50 -07009435M: Viresh Kumar <vireshk@kernel.org>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07009436L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07009437L: linux-mmc@vger.kernel.org
9438S: Maintained
9439F: drivers/mmc/host/sdhci-spear.c
9440
James Morris8711cca2008-12-04 03:19:45 +11009441SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11009442M: James Morris <james.l.morris@oracle.com>
Joe Perches9c3646d2015-06-25 15:02:00 -07009443M: "Serge E. Hallyn" <serge@hallyn.com>
James Morris8711cca2008-12-04 03:19:45 +11009444L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11009445T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10009446W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11009447S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07009448F: security/
James Morris8711cca2008-12-04 03:19:45 +11009449
Linus Torvalds1da177e2005-04-16 15:20:36 -07009450SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07009451M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009452S: Supported
9453
9454SELINUX SECURITY MODULE
Paul Moore5a5f2ac2013-09-18 13:14:04 -04009455M: Paul Moore <paul@paul-moore.com>
Paul Mooree0238b42014-02-06 07:51:54 -05009456M: Stephen Smalley <sds@tycho.nsa.gov>
9457M: Eric Paris <eparis@parisplace.org>
9458L: selinux@tycho.nsa.gov (moderated for non-subscribers)
Stephen Smalleyf0589252008-09-11 09:20:26 -04009459W: http://selinuxproject.org
Paul Moore5a5f2ac2013-09-18 13:14:04 -04009460T: git git://git.infradead.org/users/pcmoore/selinux
Linus Torvalds1da177e2005-04-16 15:20:36 -07009461S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009462F: include/linux/selinux*
9463F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04009464F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009465
John Johansenc1c124e2010-07-29 14:48:09 -07009466APPARMOR SECURITY MODULE
9467M: John Johansen <john.johansen@canonical.com>
9468L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
9469W: apparmor.wiki.kernel.org
9470T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
9471S: Supported
9472F: security/apparmor/
9473
Kees Cook730daa12015-07-23 18:02:48 -07009474YAMA SECURITY MODULE
9475M: Kees Cook <keescook@chromium.org>
9476T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
9477S: Supported
9478F: security/yama/
9479
Jiri Slabycef2cf02007-05-08 00:31:45 -07009480SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07009481M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07009482S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009483F: drivers/misc/phantom.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009484F: include/uapi/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07009485
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05309486SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Minh Tran4627de92015-05-14 23:16:17 -07009487M: Jayamohan Kallickal <jayamohan.kallickal@avagotech.com>
Ketan Mukadam9d27e212015-07-04 04:12:23 +05309488M: Ketan Mukadam <ketan.mukadam@avagotech.com>
9489M: John Soni Jose <sony.john@avagotech.com>
Joe Perches3387f652009-11-11 14:26:11 -08009490L: linux-scsi@vger.kernel.org
Minh Tran4627de92015-05-14 23:16:17 -07009491W: http://www.avagotech.com
Joe Perches3387f652009-11-11 14:26:11 -08009492S: Supported
9493F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05309494
Sathya Perla6938f852015-05-12 02:13:50 -04009495Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER
9496M: Sathya Perla <sathya.perla@avagotech.com>
9497M: Ajit Khaparde <ajit.khaparde@avagotech.com>
9498M: Padmanabh Ratnakar <padmanabh.ratnakar@avagotech.com>
9499M: Sriharsha Basavapatna <sriharsha.basavapatna@avagotech.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07009500L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08009501W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07009502S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07009503F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07009504
Selvin Xavierd2928a82015-03-15 00:09:41 +05309505EMULEX ONECONNECT ROCE DRIVER
Laurent Navet2b8e7332015-06-30 14:59:33 -07009506M: Selvin Xavier <selvin.xavier@avagotech.com>
9507M: Devesh Sharma <devesh.sharma@avagotech.com>
9508M: Mitesh Ahuja <mitesh.ahuja@avagotech.com>
Selvin Xavierd2928a82015-03-15 00:09:41 +05309509L: linux-rdma@vger.kernel.org
9510W: http://www.emulex.com
9511S: Supported
9512F: drivers/infiniband/hw/ocrdma/
9513
Ben Hutchings8ceee662008-04-27 12:55:59 +01009514SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00009515M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Shradha Shah8533ccf2014-01-23 13:19:55 +00009516M: Shradha Shah <sshah@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +00009517L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01009518S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07009519F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01009520
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009521SGI GRU DRIVER
Bjorn Helgaascc883af2013-01-29 15:48:37 -07009522M: Dimitri Sivanich <sivanich@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009523S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009524F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009525
9526SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009527M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009528L: linux-ia64@vger.kernel.org
9529S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009530F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08009531F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07009532F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009533
Jack Steiner75312612008-08-15 00:40:42 -07009534SGI XP/XPC/XPNET DRIVER
Robin Holte1803832013-08-16 18:01:42 -05009535M: Cliff Whickman <cpw@sgi.com>
9536M: Robin Holt <robinmholt@gmail.com>
Jack Steiner75312612008-08-15 00:40:42 -07009537S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009538F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07009539
Antti Palosaari46eacf32014-04-15 06:21:03 -03009540SI2157 MEDIA DRIVER
9541M: Antti Palosaari <crope@iki.fi>
9542L: linux-media@vger.kernel.org
9543W: http://linuxtv.org/
9544W: http://palosaari.fi/linux/
9545Q: http://patchwork.linuxtv.org/project/linux-media/list/
9546T: git git://linuxtv.org/anttip/media_tree.git
9547S: Maintained
9548F: drivers/media/tuners/si2157*
9549
Antti Palosaari75e2d5b2014-04-15 06:17:53 -03009550SI2168 MEDIA DRIVER
9551M: Antti Palosaari <crope@iki.fi>
9552L: linux-media@vger.kernel.org
9553W: http://linuxtv.org/
9554W: http://palosaari.fi/linux/
9555Q: http://patchwork.linuxtv.org/project/linux-media/list/
9556T: git git://linuxtv.org/anttip/media_tree.git
9557S: Maintained
9558F: drivers/media/dvb-frontends/si2168*
9559
Hans Verkuil49cc6292012-11-30 07:13:29 -03009560SI470X FM RADIO RECEIVER I2C DRIVER
9561M: Hans Verkuil <hverkuil@xs4all.nl>
9562L: linux-media@vger.kernel.org
9563T: git git://linuxtv.org/media_tree.git
9564W: http://linuxtv.org
9565S: Odd Fixes
9566F: drivers/media/radio/si470x/radio-si470x-i2c.c
9567
9568SI470X FM RADIO RECEIVER USB DRIVER
9569M: Hans Verkuil <hverkuil@xs4all.nl>
9570L: linux-media@vger.kernel.org
9571T: git git://linuxtv.org/media_tree.git
9572W: http://linuxtv.org
9573S: Maintained
9574F: drivers/media/radio/si470x/radio-si470x-common.c
9575F: drivers/media/radio/si470x/radio-si470x.h
9576F: drivers/media/radio/si470x/radio-si470x-usb.c
9577
Eduardo Valentinc937ca02013-02-27 10:37:39 -03009578SI4713 FM RADIO TRANSMITTER I2C DRIVER
9579M: Eduardo Valentin <edubezval@gmail.com>
9580L: linux-media@vger.kernel.org
9581T: git git://linuxtv.org/media_tree.git
9582W: http://linuxtv.org
9583S: Odd Fixes
Dinesh Ram99995de2013-10-15 12:24:43 -03009584F: drivers/media/radio/si4713/si4713.?
Eduardo Valentinc937ca02013-02-27 10:37:39 -03009585
9586SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
9587M: Eduardo Valentin <edubezval@gmail.com>
9588L: linux-media@vger.kernel.org
9589T: git git://linuxtv.org/media_tree.git
9590W: http://linuxtv.org
9591S: Odd Fixes
Dinesh Ram99995de2013-10-15 12:24:43 -03009592F: drivers/media/radio/si4713/radio-platform-si4713.c
9593
9594SI4713 FM RADIO TRANSMITTER USB DRIVER
9595M: Hans Verkuil <hverkuil@xs4all.nl>
9596L: linux-media@vger.kernel.org
9597T: git git://linuxtv.org/media_tree.git
9598W: http://linuxtv.org
9599S: Maintained
9600F: drivers/media/radio/si4713/radio-usb-si4713.c
Eduardo Valentinc937ca02013-02-27 10:37:39 -03009601
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03009602SIANO DVB DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02009603M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03009604L: linux-media@vger.kernel.org
9605W: http://linuxtv.org
9606T: git git://linuxtv.org/media_tree.git
9607S: Odd fixes
9608F: drivers/media/common/siano/
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03009609F: drivers/media/usb/siano/
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03009610F: drivers/media/usb/siano/
Joe Perches14430812013-09-11 14:23:50 -07009611F: drivers/media/mmc/siano/
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03009612
Hans de Goede6f15b602014-11-14 13:26:46 +01009613SIMPLEFB FB DRIVER
9614M: Hans de Goede <hdegoede@redhat.com>
9615L: linux-fbdev@vger.kernel.org
9616S: Maintained
9617F: Documentation/devicetree/bindings/video/simple-framebuffer.txt
9618F: drivers/video/fbdev/simplefb.c
9619F: include/linux/platform_data/simplefb.h
9620
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03009621SH_VEU V4L2 MEM2MEM DRIVER
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03009622L: linux-media@vger.kernel.org
Guennadi Liakhovetskibb60fcb2013-11-24 17:44:08 -03009623S: Orphan
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03009624F: drivers/media/platform/sh_veu.c
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03009625
9626SH_VOU V4L2 OUTPUT DRIVER
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03009627L: linux-media@vger.kernel.org
Guennadi Liakhovetskibb60fcb2013-11-24 17:44:08 -03009628S: Orphan
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03009629F: drivers/media/platform/sh_vou.c
9630F: include/media/sh_vou.h
9631
Len Brown6349d992009-08-14 15:07:14 -04009632SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07009633M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04009634L: sfi-devel@simplefirmware.org
9635W: http://simplefirmware.org/
9636T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009637S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07009638F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04009639F: drivers/sfi/
9640F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009641
Linus Torvalds1da177e2005-04-16 15:20:36 -07009642SIMTEC EB110ATX (Chalice CATS)
9643P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08009644P: Vincent Sanders <vince@simtec.co.uk>
9645M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009646W: http://www.simtec.co.uk/products/EB110ATX/
9647S: Supported
9648
9649SIMTEC EB2410ITX (BAST)
9650P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08009651P: Vincent Sanders <vince@simtec.co.uk>
9652M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009653W: http://www.simtec.co.uk/products/EB2410ITX/
9654S: Supported
Joe Perches15dba382013-09-11 14:23:36 -07009655F: arch/arm/mach-s3c24xx/mach-bast.c
9656F: arch/arm/mach-s3c24xx/bast-ide.c
9657F: arch/arm/mach-s3c24xx/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07009658
Kevin Hilman4c5adde2009-06-19 12:02:33 -07009659TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08009660M: Sekhar Nori <nsekhar@ti.com>
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08009661M: Kevin Hilman <khilman@deeprootsystems.com>
Sekhar Noric9f46a82012-01-27 21:12:20 +05309662T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -08009663Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07009664S: Supported
Joe Perches14430812013-09-11 14:23:50 -07009665F: arch/arm/mach-davinci/
Jean Delvare046d0a32012-01-12 20:32:05 +01009666F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -07009667
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03009668TI DAVINCI SERIES MEDIA DRIVER
Joe Perchese43cdb52015-06-25 15:02:03 -07009669M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03009670L: linux-media@vger.kernel.org
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03009671W: http://linuxtv.org/
9672Q: http://patchwork.linuxtv.org/project/linux-media/list/
9673T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
Lad, Prabhakar9ce5eca2013-04-15 01:32:44 -03009674S: Maintained
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03009675F: drivers/media/platform/davinci/
9676F: include/media/davinci/
9677
Benoit Parrot417d2e52014-12-09 16:43:44 -03009678TI AM437X VPFE DRIVER
Joe Perchese43cdb52015-06-25 15:02:03 -07009679M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
Benoit Parrot417d2e52014-12-09 16:43:44 -03009680L: linux-media@vger.kernel.org
9681W: http://linuxtv.org/
9682Q: http://patchwork.linuxtv.org/project/linux-media/list/
9683T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9684S: Maintained
9685F: drivers/media/platform/am437x/
9686
Benoit Parrotc4c02832015-03-20 18:03:52 -03009687OV2659 OMNIVISION SENSOR DRIVER
Joe Perchese43cdb52015-06-25 15:02:03 -07009688M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
Benoit Parrotc4c02832015-03-20 18:03:52 -03009689L: linux-media@vger.kernel.org
9690W: http://linuxtv.org/
9691Q: http://patchwork.linuxtv.org/project/linux-media/list/
9692T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9693S: Maintained
9694F: drivers/media/i2c/ov2659.c
9695F: include/media/ov2659.h
9696
Sudip Mukherjee3a6779f2015-08-07 18:31:15 +05309697SILICON MOTION SM712 FRAME BUFFER DRIVER
9698M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
9699M: Teddy Wang <teddy.wang@siliconmotion.com>
9700M: Sudip Mukherjee <sudip@vectorindia.org>
9701L: linux-fbdev@vger.kernel.org
9702S: Maintained
9703F: drivers/video/fbdev/sm712*
9704F: Documentation/fb/sm712fb.txt
9705
Francois Romieu92aab3c2005-07-30 13:11:18 +02009706SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009707M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02009708L: netdev@vger.kernel.org
9709S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07009710F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02009711
Linus Torvalds1da177e2005-04-16 15:20:36 -07009712SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009713M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009714W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07009715L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07009716S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07009717F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009718
9719SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009720M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009721W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03009722S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009723F: Documentation/fb/sisfb.txt
Jingoo Han8a61f012014-07-01 15:36:01 +09009724F: drivers/video/fbdev/sis/
Joe Perches679655d2009-04-07 20:44:32 -07009725F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009726
9727SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009728M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009729W: http://www.winischhofer.at/linuxsisusbvga.shtml
9730S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009731F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009732
Christoph Lameter415ad262007-07-26 10:40:56 -07009733SLAB ALLOCATOR
Christoph Lameter16e943b2014-06-23 13:22:03 -07009734M: Christoph Lameter <cl@linux.com>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02009735M: Pekka Enberg <penberg@kernel.org>
Christoph Lameter16e943b2014-06-23 13:22:03 -07009736M: David Rientjes <rientjes@google.com>
9737M: Joonsoo Kim <iamjoonsoo.kim@lge.com>
9738M: Andrew Morton <akpm@linux-foundation.org>
Christoph Lameter415ad262007-07-26 10:40:56 -07009739L: linux-mm@kvack.org
9740S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009741F: include/linux/sl?b*.h
Christoph Lameter16e943b2014-06-23 13:22:03 -07009742F: mm/sl?b*
Christoph Lameter415ad262007-07-26 10:40:56 -07009743
Paul E. McKenney9fab97872012-05-07 09:36:34 -07009744SLEEPABLE READ-COPY UPDATE (SRCU)
Lai Jiangshan96a39bc2015-07-01 15:26:27 +08009745M: Lai Jiangshan <jiangshanlai@gmail.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -07009746M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyab0afd62014-06-03 08:17:06 -07009747M: Josh Triplett <josh@joshtriplett.org>
Paul E. McKenney4632a192014-05-30 15:37:24 -07009748R: Steven Rostedt <rostedt@goodmis.org>
9749R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +01009750L: linux-kernel@vger.kernel.org
Paul E. McKenney9fab97872012-05-07 09:36:34 -07009751W: http://www.rdrop.com/users/paulmck/RCU/
9752S: Supported
9753T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenney4102ada2013-10-08 20:23:47 -07009754F: include/linux/srcu.h
9755F: kernel/rcu/srcu.c
Paul E. McKenney9fab97872012-05-07 09:36:34 -07009756
Casey Schaufler66372842012-05-23 18:34:52 -07009757SMACK SECURITY MODULE
9758M: Casey Schaufler <casey@schaufler-ca.com>
9759L: linux-security-module@vger.kernel.org
9760W: http://schaufler-ca.com
9761T: git git://git.gitorious.org/smack-next/kernel.git
9762S: Maintained
9763F: Documentation/security/Smack.txt
9764F: security/smack/
9765
Kevin Hilman20651e02014-09-24 16:30:00 -07009766DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
Kevin Hilman68ace3e2013-08-06 16:57:14 -07009767M: Kevin Hilman <khilman@kernel.org>
9768M: Nishanth Menon <nm@ti.com>
9769S: Maintained
Kevin Hilman20651e02014-09-24 16:30:00 -07009770F: drivers/power/avs/
Kevin Hilman68ace3e2013-08-06 16:57:14 -07009771F: include/linux/power/smartreflex.h
9772L: linux-pm@vger.kernel.org
9773
Linus Torvalds1da177e2005-04-16 15:20:36 -07009774SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04009775M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04009776S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -07009777F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009778
Sakari Ailuse8e31622012-11-12 18:14:39 -03009779SMIA AND SMIA++ IMAGE SENSOR DRIVER
9780M: Sakari Ailus <sakari.ailus@iki.fi>
9781L: linux-media@vger.kernel.org
9782S: Maintained
Joe Perches14430812013-09-11 14:23:50 -07009783F: drivers/media/i2c/smiapp/
Sakari Ailuse8e31622012-11-12 18:14:39 -03009784F: include/media/smiapp.h
9785F: drivers/media/i2c/smiapp-pll.c
9786F: drivers/media/i2c/smiapp-pll.h
Sakari Ailusfd2bfdc2014-11-16 12:08:44 -03009787F: include/uapi/linux/smiapp.h
Sakari Ailusa2cec3c2014-11-06 18:16:13 -03009788F: Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
Sakari Ailuse8e31622012-11-12 18:14:39 -03009789
Guenter Roeck920fa1f2010-08-09 17:21:06 -07009790SMM665 HARDWARE MONITOR DRIVER
9791M: Guenter Roeck <linux@roeck-us.net>
9792L: lm-sensors@lm-sensors.org
9793S: Maintained
9794F: Documentation/hwmon/smm665
9795F: drivers/hwmon/smm665.c
9796
Steve Glendinning9df73052010-08-14 21:08:54 +02009797SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01009798M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning9df73052010-08-14 21:08:54 +02009799L: lm-sensors@lm-sensors.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01009800S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +02009801F: Documentation/hwmon/emc2103
9802F: drivers/hwmon/emc2103.c
9803
Hans de Goedea98d5062011-03-21 17:59:36 +01009804SMSC SCH5627 HARDWARE MONITOR DRIVER
9805M: Hans de Goede <hdegoede@redhat.com>
9806L: lm-sensors@lm-sensors.org
9807S: Supported
9808F: Documentation/hwmon/sch5627
9809F: drivers/hwmon/sch5627.c
9810
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04009811SMSC47B397 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07009812M: Jean Delvare <jdelvare@suse.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04009813L: lm-sensors@lm-sensors.org
9814S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009815F: Documentation/hwmon/smsc47b397
9816F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04009817
Steve Glendinningfd9abb32008-11-05 00:35:37 +00009818SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01009819M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00009820L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01009821S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009822F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -07009823F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00009824
Steve Glendinning2cb37722008-12-11 20:54:30 -08009825SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01009826M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -08009827L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01009828S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -07009829F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08009830
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01009831SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01009832M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01009833L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01009834S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09009835F: drivers/video/fbdev/smscufx.c
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01009836
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03009837SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07009838M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03009839L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02009840T: git git://linuxtv.org/media_tree.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02009841S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03009842F: include/media/soc*
9843F: drivers/media/i2c/soc_camera/
9844F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03009845
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009846SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07009847M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009848S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009849F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009850
Joe Perchese3994db2014-07-30 00:38:42 -03009851SOFTLOGIC 6x10 MPEG CODEC
Andrey Utkin9661975d2014-11-17 13:59:23 -03009852M: Bluecherry Maintainers <maintainers@bluecherrydvr.com>
9853M: Andrey Utkin <andrey.utkin@corp.bluecherry.net>
9854M: Andrey Utkin <andrey.krieger.utkin@gmail.com>
Ismael Luceno1f141f62015-01-20 11:43:50 -03009855M: Ismael Luceno <ismael@iodev.co.uk>
Joe Perchese3994db2014-07-30 00:38:42 -03009856L: linux-media@vger.kernel.org
9857S: Supported
9858F: drivers/media/pci/solo6x10/
9859
Linus Torvalds1da177e2005-04-16 15:20:36 -07009860SOFTWARE RAID (Multiple Disks) SUPPORT
Jiri Slabyd8130622015-07-17 16:23:20 -07009861M: Neil Brown <neilb@suse.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009862L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08009863S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009864F: drivers/md/
9865F: include/linux/raid/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009866F: include/uapi/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009867
Linus Torvalds1da177e2005-04-16 15:20:36 -07009868SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009869M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07009870L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07009871S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07009872F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009873
Michael Buesch61e115a2007-09-18 15:12:50 -04009874SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +02009875M: Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04009876L: netdev@vger.kernel.org
9877S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009878F: drivers/ssb/
9879F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04009880
Linus Torvalds1da177e2005-04-16 15:20:36 -07009881SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009882M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd09448532010-02-11 10:40:13 -05009883L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01009884W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07009885S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009886F: Documentation/laptops/sony-laptop.txt
9887F: drivers/char/sonypi.c
9888F: drivers/platform/x86/sony-laptop.c
9889F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009890
Alex Dubovbaf85322008-02-09 10:20:54 -08009891SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07009892M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08009893W: http://tifmxx.berlios.de/
9894S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009895F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08009896
Maxim Levitsky0ab30492013-09-11 14:26:02 -07009897SONY MEMORYSTICK STANDARD SUPPORT
9898M: Maxim Levitsky <maximlevitsky@gmail.com>
9899S: Maintained
9900F: drivers/memstick/core/ms_block.*
9901
Linus Torvalds1da177e2005-04-16 15:20:36 -07009902SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07009903M: Jaroslav Kysela <perex@perex.cz>
Jiri Slabyd8130622015-07-17 16:23:20 -07009904M: Takashi Iwai <tiwai@suse.com>
Joe Perches93711662009-06-16 15:34:07 -07009905L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07009906W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +02009907T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -07009908T: git git://git.alsa-project.org/alsa-kernel.git
Takashi Iwaiff4a8f32014-05-13 14:55:51 +02009909Q: http://patchwork.kernel.org/project/alsa-devel/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009910S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07009911F: Documentation/sound/
9912F: include/sound/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009913F: include/uapi/sound/
Joe Perches679655d2009-04-07 20:44:32 -07009914F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009915
Mark Brown33bbe142013-08-09 18:10:50 +01009916SOUND - COMPRESSED AUDIO
9917M: Vinod Koul <vinod.koul@intel.com>
9918L: alsa-devel@alsa-project.org (moderated for non-subscribers)
9919T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
9920S: Supported
Vinod Koulf672f312013-08-12 11:15:27 +05309921F: Documentation/sound/alsa/compress_offload.txt
Mark Brown33bbe142013-08-09 18:10:50 +01009922F: include/sound/compress_driver.h
Vinod Koulf672f312013-08-12 11:15:27 +05309923F: include/uapi/sound/compress_*
Mark Brown33bbe142013-08-09 18:10:50 +01009924F: sound/core/compress_offload.c
9925F: sound/soc/soc-compress.c
9926
Mark Brownbd903bd2008-11-19 19:16:05 +00009927SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood6b9cf5c2013-01-15 15:13:27 +00009928M: Liam Girdwood <lgirdwood@gmail.com>
Mark Brownb02e48f2013-04-12 11:39:57 +01009929M: Mark Brown <broonie@kernel.org>
Mark Brown86f14df2011-11-02 21:36:32 +00009930T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -07009931L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01009932W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02009933S: Supported
Mark Brown2820f612013-08-11 19:35:11 +01009934F: Documentation/sound/alsa/soc/
Joe Perches679655d2009-04-07 20:44:32 -07009935F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01009936F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02009937
Mark Brownd7f87612013-10-19 14:33:54 +01009938SOUND - DMAENGINE HELPERS
9939M: Lars-Peter Clausen <lars@metafoo.de>
9940S: Supported
9941F: include/sound/dmaengine_pcm.h
9942F: sound/core/pcm_dmaengine.c
9943F: sound/soc/soc-generic-dmaengine-pcm.c
9944
Olli Salonen990a6a92014-08-22 13:50:42 -03009945SP2 MEDIA DRIVER
9946M: Olli Salonen <olli.salonen@iki.fi>
9947L: linux-media@vger.kernel.org
9948W: http://linuxtv.org/
9949Q: http://patchwork.linuxtv.org/project/linux-media/list/
9950S: Maintained
9951F: drivers/media/dvb-frontends/sp2*
9952
Sam Ravnborg473321f2009-01-04 15:47:49 -08009953SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07009954M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009955L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08009956Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -07009957T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
9958T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07009959S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009960F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07009961F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009962
David S. Miller6404fcc2010-03-16 01:00:17 -07009963SPARC SERIAL DRIVERS
9964M: "David S. Miller" <davem@davemloft.net>
9965L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07009966T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
9967T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -07009968S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -05009969F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08009970F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08009971F: drivers/tty/serial/sunhv.c
9972F: drivers/tty/serial/sunsab.c
9973F: drivers/tty/serial/sunsab.h
9974F: drivers/tty/serial/sunsu.c
9975F: drivers/tty/serial/sunzilog.c
9976F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -07009977
Christopher Li389325b2012-04-05 14:25:14 -07009978SPARSE CHECKER
9979M: "Christopher Li" <sparse@chrisli.org>
9980L: linux-sparse@vger.kernel.org
9981W: https://sparse.wiki.kernel.org/
9982T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
9983T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
9984S: Maintained
9985F: include/linux/compiler.h
9986
viresh kumarfc0c1952010-04-01 12:31:21 +01009987SPEAR PLATFORM SUPPORT
Viresh Kumarda899472015-07-17 16:23:50 -07009988M: Viresh Kumar <vireshk@kernel.org>
Viresh Kumar9cc23682014-04-18 15:07:16 -07009989M: Shiraz Hashim <shiraz.linux.kernel@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07009990L: spear-devel@list.st.com
9991L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01009992W: http://www.st.com/spear
9993S: Maintained
Joe Perches281e1922013-09-11 14:23:37 -07009994F: arch/arm/mach-spear/
viresh kumarfc0c1952010-04-01 12:31:21 +01009995
9996SPEAR CLOCK FRAMEWORK SUPPORT
Viresh Kumarda899472015-07-17 16:23:50 -07009997M: Viresh Kumar <vireshk@kernel.org>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07009998L: spear-devel@list.st.com
9999L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +010010000W: http://www.st.com/spear
10001S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +053010002F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +010010003
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010004SPI SUBSYSTEM
Mark Brownb02e48f2013-04-12 11:39:57 +010010005M: Mark Brown <broonie@kernel.org>
Mark Browndfbe4032013-05-17 13:12:52 +010010006L: linux-spi@vger.kernel.org
Mark Browne7e4e132013-04-18 18:18:47 +010010007T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
Joe Perches8a6e2532010-03-05 13:43:11 -080010008Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010009S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010010F: Documentation/spi/
10011F: drivers/spi/
10012F: include/linux/spi/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010013F: include/uapi/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010014
Jim Lewis2752e4012006-09-29 02:01:19 -070010015SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -070010016M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
Jim Lewis2752e4012006-09-29 02:01:19 -070010017L: netdev@vger.kernel.org
10018S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010019F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -070010020F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e4012006-09-29 02:01:19 -070010021
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010022SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070010023M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +100010024L: linuxppc-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010025W: http://www.ibm.com/developerworks/power/cell/
10026S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010027F: Documentation/filesystems/spufs.txt
10028F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010029
Phillip Lougherfc555842009-01-05 08:46:29 +000010030SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +010010031M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +000010032L: squashfs-devel@lists.sourceforge.net (subscribers-only)
10033W: http://squashfs.org.uk
10034S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010035F: Documentation/filesystems/squashfs.txt
10036F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +000010037
Linus Torvalds1da177e2005-04-16 15:20:36 -070010038SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -070010039M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010040S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010041F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070010042
Linus Torvalds26e9a392008-10-17 09:50:12 -070010043STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -080010044M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -080010045L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -080010046S: Supported
Greg Kroah-Hartman7b175c42013-06-18 12:58:12 -070010047F: Documentation/stable_kernel_rules.txt
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010048
Linus Torvalds26e9a392008-10-17 09:50:12 -070010049STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -080010050M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -070010051T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -070010052L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -080010053S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010054F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -070010055
Joe Perchesebd3d012011-07-05 09:42:02 -070010056STAGING - COMEDI
10057M: Ian Abbott <abbotti@mev.co.uk>
Lidza Louina81b884c2013-07-24 11:29:33 -040010058M: H Hartley Sweeten <hsweeten@visionengravers.com>
Joe Perchesebd3d012011-07-05 09:42:02 -070010059S: Odd Fixes
10060F: drivers/staging/comedi/
10061
Joe Perchesa0138162011-07-05 15:21:34 -070010062STAGING - FLARION FT1000 DRIVERS
10063M: Marek Belisko <marek.belisko@gmail.com>
10064S: Odd Fixes
10065F: drivers/staging/ft1000/
10066
Joe Perches6c1bb422011-07-05 09:42:07 -070010067STAGING - INDUSTRIAL IO
Sachin Kamat030a13d2013-09-11 11:00:00 +010010068M: Jonathan Cameron <jic23@kernel.org>
Joe Perchesa0138162011-07-05 15:21:34 -070010069L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -070010070S: Odd Fixes
10071F: drivers/staging/iio/
10072
Joe Perchesa0138162011-07-05 15:21:34 -070010073STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
10074M: Jarod Wilson <jarod@wilsonet.com>
10075W: http://www.lirc.org/
10076S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -080010077F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -070010078
Oleg Drokinf5e5de12014-08-15 12:48:14 -040010079STAGING - LUSTRE PARALLEL FILESYSTEM
10080M: Oleg Drokin <oleg.drokin@intel.com>
10081M: Andreas Dilger <andreas.dilger@intel.com>
Andreas Dilgerd98229f2015-08-24 11:11:49 -040010082L: lustre-devel@lists.lustre.org (moderated for non-subscribers)
10083W: http://wiki.lustre.org/
Oleg Drokinf5e5de12014-08-15 12:48:14 -040010084S: Maintained
10085F: drivers/staging/lustre
10086
Marc Dietrich7c6b6c72011-09-27 19:00:46 +020010087STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
10088M: Marc Dietrich <marvin24@gmx.de>
10089L: ac100@lists.launchpad.net (moderated for non-subscribers)
Stephen Warren5d96bf42013-02-27 17:02:54 -080010090L: linux-tegra@vger.kernel.org
Marc Dietrich7c6b6c72011-09-27 19:00:46 +020010091S: Maintained
10092F: drivers/staging/nvec/
10093
Joe Perchesa0138162011-07-05 15:21:34 -070010094STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
Jens Frederich3140b452013-08-04 20:57:43 +020010095M: Jens Frederich <jfrederich@gmail.com>
10096M: Daniel Drake <dsd@laptop.org>
Joe Perchesa0138162011-07-05 15:21:34 -070010097M: Jon Nettleton <jon.nettleton@gmail.com>
10098W: http://wiki.laptop.org/go/DCON
Jens Frederich3140b452013-08-04 20:57:43 +020010099S: Maintained
Joe Perchesa0138162011-07-05 15:21:34 -070010100F: drivers/staging/olpc_dcon/
10101
10102STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
Joe Perches29e70172011-07-05 09:42:08 -070010103M: Willy Tarreau <willy@meta-x.org>
10104S: Odd Fixes
10105F: drivers/staging/panel/
10106
Joe Perchesa0138162011-07-05 15:21:34 -070010107STAGING - REALTEK RTL8712U DRIVERS
10108M: Larry Finger <Larry.Finger@lwfinger.net>
10109M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
10110S: Odd Fixes
10111F: drivers/staging/rtl8712/
10112
Jes Sorensen7591ba82014-04-26 18:54:48 +020010113STAGING - REALTEK RTL8723U WIRELESS DRIVER
10114M: Larry Finger <Larry.Finger@lwfinger.net>
10115M: Jes Sorensen <Jes.Sorensen@redhat.com>
10116L: linux-wireless@vger.kernel.org
10117S: Maintained
10118F: drivers/staging/rtl8723au/
10119
Sudip Mukherjee980ac4d2015-03-03 16:21:07 +053010120STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
10121M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10122M: Teddy Wang <teddy.wang@siliconmotion.com>
10123M: Sudip Mukherjee <sudip@vectorindia.org>
10124L: linux-fbdev@vger.kernel.org
10125S: Maintained
10126F: drivers/staging/sm750fb/
10127
Joe Perches510fa4082014-02-10 16:37:56 -080010128STAGING - SLICOSS
10129M: Lior Dotan <liodot@gmail.com>
10130M: Christopher Harrer <charrer@alacritech.com>
10131S: Odd Fixes
10132F: drivers/staging/slicoss/
10133
Joe Perchesa0138162011-07-05 15:21:34 -070010134STAGING - SPEAKUP CONSOLE SPEECH DRIVER
10135M: William Hubbs <w.d.hubbs@gmail.com>
10136M: Chris Brannon <chris@the-brannons.com>
William Hubbsd33bce32013-05-12 13:49:54 -050010137M: Kirk Reiser <kirk@reisers.ca>
Joe Perchesa0138162011-07-05 15:21:34 -070010138M: Samuel Thibault <samuel.thibault@ens-lyon.org>
Samuel Thibaulte6a152e2014-07-17 23:34:58 +020010139L: speakup@linux-speakup.org
Joe Perchesa0138162011-07-05 15:21:34 -070010140W: http://www.linux-speakup.org/
10141S: Odd Fixes
10142F: drivers/staging/speakup/
10143
Joe Perchesb3e871c2011-07-05 09:42:10 -070010144STAGING - VIA VT665X DRIVERS
10145M: Forest Bond <forest@alittletooquiet.net>
10146S: Odd Fixes
10147F: drivers/staging/vt665?/
10148
Johnny Kima30baec2015-05-11 14:30:57 +090010149STAGING - WILC1000 WIFI DRIVER
10150M: Johnny Kim <johnny.kim@atmel.com>
Tony Cho0c9dbce2015-10-28 17:43:27 +090010151M: Austin Shin <austin.shin@atmel.com>
Johnny Kima30baec2015-05-11 14:30:57 +090010152M: Chris Park <chris.park@atmel.com>
Tony Cho06b54862015-09-08 17:08:01 +090010153M: Tony Cho <tony.cho@atmel.com>
10154M: Glen Lee <glen.lee@atmel.com>
10155M: Leo Kim <leo.kim@atmel.com>
Johnny Kima30baec2015-05-11 14:30:57 +090010156L: linux-wireless@vger.kernel.org
10157S: Supported
10158F: drivers/staging/wilc1000/
10159
Joe Perches709bcb02011-07-05 09:42:13 -070010160STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +020010161M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -070010162S: Odd Fixes
10163F: drivers/staging/xgifb/
10164
Mike Marciniszyn77241052015-07-30 15:17:43 -040010165HFI1 DRIVER
10166M: Mike Marciniszyn <infinipath@intel.com>
10167L: linux-rdma@vger.kernel.org
10168S: Supported
10169F: drivers/staging/rdma/hfi1
10170
Linus Torvalds1da177e2005-04-16 15:20:36 -070010171STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010172M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -070010173S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -070010174F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010175
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010176SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -070010177M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010178W: http://sammy.net/sun3/
10179S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010180F: arch/m68k/kernel/*sun3*
10181F: arch/m68k/sun3*/
10182F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -070010183F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010184
Hans de Goedeaf6a5af2014-12-18 09:24:50 -080010185SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
10186M: Hans de Goede <hdegoede@redhat.com>
10187L: linux-input@vger.kernel.org
10188S: Maintained
10189F: Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
10190F: drivers/input/keyboard/sun4i-lradc-keys.c
10191
Denis Kirjanov2bc9ff02013-08-17 09:08:49 +040010192SUNDANCE NETWORK DRIVER
10193M: Denis Kirjanov <kda@linux-powerpc.org>
10194L: netdev@vger.kernel.org
10195S: Maintained
10196F: drivers/net/ethernet/dlink/sundance.c
10197
Paul Mundt2cbb12a2007-11-19 13:08:37 +090010198SUPERH
Paul Mundt2cbb12a2007-11-19 13:08:37 +090010199L: linux-sh@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -080010200Q: http://patchwork.kernel.org/project/linux-sh/list/
Geert Uytterhoevendcaa57d2014-04-03 14:48:47 -070010201S: Orphan
Paul Mundt066069e2009-04-14 06:32:08 +090010202F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -070010203F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +090010204F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010205
Randy Dunlap4480f15b2008-10-12 16:11:58 -070010206SUSPEND TO RAM
Rafael J. Wysocki7fb06082014-03-20 03:34:47 +010010207M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Joe Perches8b58be82009-07-29 15:04:30 -070010208M: Len Brown <len.brown@intel.com>
10209M: Pavel Machek <pavel@ucw.cz>
WANG Congbf1c1382011-10-08 20:57:50 +020010210L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010211S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010212F: Documentation/power/
10213F: arch/x86/kernel/acpi/
10214F: drivers/base/power/
10215F: kernel/power/
10216F: include/linux/suspend.h
10217F: include/linux/freezer.h
10218F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070010219
10220SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -070010221M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010222L: linux-video@atrey.karlin.mff.cuni.cz
10223S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010224F: Documentation/svga.txt
10225F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010226
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -070010227SWIOTLB SUBSYSTEM
10228M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10229L: linux-kernel@vger.kernel.org
10230S: Supported
10231F: lib/swiotlb.c
10232F: arch/*/kernel/pci-swiotlb.c
10233F: include/linux/swiotlb.h
10234
Jiri Pirko007f7902014-11-28 14:34:17 +010010235SWITCHDEV
10236M: Jiri Pirko <jiri@resnulli.us>
10237L: netdev@vger.kernel.org
10238S: Supported
10239F: net/switchdev/
10240F: include/net/switchdev.h
10241
Vineet Guptadb8e35d2013-01-18 15:12:25 +053010242SYNOPSYS ARC ARCHITECTURE
10243M: Vineet Gupta <vgupta@synopsys.com>
Vineet Gupta9acdc912015-10-26 10:52:57 +053010244L: linux-snps-arc@lists.infraded.org
Vineet Guptadb8e35d2013-01-18 15:12:25 +053010245S: Supported
10246F: arch/arc/
Vineet Gupta9b288292014-11-18 17:36:11 +053010247F: Documentation/devicetree/bindings/arc/*
Joe Perchesc6a0fe42013-09-11 14:23:45 -070010248F: drivers/tty/serial/arc_uart.c
Baruch Siachb7182d12015-08-11 12:08:32 +030010249T: git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
Vineet Guptadb8e35d2013-01-18 15:12:25 +053010250
Alexey Brodkin556cc1c2014-01-27 14:51:34 +010010251SYNOPSYS ARC SDP platform support
10252M: Alexey Brodkin <abrodkin@synopsys.com>
10253S: Supported
10254F: arch/arc/plat-axs10x
10255F: arch/arc/boot/dts/ax*
10256F: Documentation/devicetree/bindings/arc/axs10*
10257
Lee Jones6c284c92015-05-12 14:13:58 +010010258SYSTEM CONFIGURATION (SYSCON)
10259M: Lee Jones <lee.jones@linaro.org>
10260M: Arnd Bergmann <arnd@arndb.de>
10261T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
10262S: Supported
10263F: drivers/mfd/syscon.c
10264
Linus Torvalds1da177e2005-04-16 15:20:36 -070010265SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070010266M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010267S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010268F: Documentation/filesystems/sysv-fs.txt
10269F: fs/sysv/
10270F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070010271
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -070010272TARGET SUBSYSTEM
Joe Perches9c3646d2015-06-25 15:02:00 -070010273M: "Nicholas A. Bellinger" <nab@linux-iscsi.org>
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -070010274L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +000010275L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -070010276W: http://www.linux-iscsi.org
Joe Perchescf015e92014-02-25 15:01:47 -080010277W: http://groups.google.com/group/linux-iscsi-target-dev
Nicholas Bellinger452cf322013-05-11 16:27:56 -070010278T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -070010279S: Supported
10280F: drivers/target/
10281F: include/target/
10282F: Documentation/target/
10283
Alan Cox4e688522008-04-30 00:52:11 -070010284TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -070010285M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -070010286S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010287F: Documentation/accounting/taskstats*
10288F: include/linux/taskstats*
10289F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -070010290
Stephen Hemminger781b456a2006-07-10 20:25:29 -070010291TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +000010292M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-07-10 20:25:29 -070010293L: netdev@vger.kernel.org
10294S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010295F: include/net/pkt_cls.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010296F: include/uapi/linux/pkt_cls.h
Joe Perches679655d2009-04-07 20:44:32 -070010297F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -070010298
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -070010299TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -070010300M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
10301M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -070010302W: http://tcp-lp-mod.sourceforge.net/
10303S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010304F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -070010305
Antti Palosaari91952bc2012-10-01 12:28:46 -030010306TDA10071 MEDIA DRIVER
10307M: Antti Palosaari <crope@iki.fi>
10308L: linux-media@vger.kernel.org
10309W: http://linuxtv.org/
10310W: http://palosaari.fi/linux/
10311Q: http://patchwork.linuxtv.org/project/linux-media/list/
10312T: git git://linuxtv.org/anttip/media_tree.git
10313S: Maintained
10314F: drivers/media/dvb-frontends/tda10071*
10315
10316TDA18212 MEDIA DRIVER
10317M: Antti Palosaari <crope@iki.fi>
10318L: linux-media@vger.kernel.org
10319W: http://linuxtv.org/
10320W: http://palosaari.fi/linux/
10321Q: http://patchwork.linuxtv.org/project/linux-media/list/
10322T: git git://linuxtv.org/anttip/media_tree.git
10323S: Maintained
10324F: drivers/media/tuners/tda18212*
10325
10326TDA18218 MEDIA DRIVER
10327M: Antti Palosaari <crope@iki.fi>
10328L: linux-media@vger.kernel.org
10329W: http://linuxtv.org/
10330W: http://palosaari.fi/linux/
10331Q: http://patchwork.linuxtv.org/project/linux-media/list/
10332T: git git://linuxtv.org/anttip/media_tree.git
10333S: Maintained
10334F: drivers/media/tuners/tda18218*
10335
Michael Krufky3b2f6ab2012-10-02 00:55:32 -030010336TDA18271 MEDIA DRIVER
10337M: Michael Krufky <mkrufky@linuxtv.org>
10338L: linux-media@vger.kernel.org
10339W: http://linuxtv.org/
10340W: http://github.com/mkrufky
10341Q: http://patchwork.linuxtv.org/project/linux-media/list/
10342T: git git://linuxtv.org/mkrufky/tuners.git
10343S: Maintained
10344F: drivers/media/tuners/tda18271*
10345
Michael Krufkye48307a2012-10-02 00:56:33 -030010346TDA827x MEDIA DRIVER
10347M: Michael Krufky <mkrufky@linuxtv.org>
10348L: linux-media@vger.kernel.org
10349W: http://linuxtv.org/
10350W: http://github.com/mkrufky
10351Q: http://patchwork.linuxtv.org/project/linux-media/list/
10352T: git git://linuxtv.org/mkrufky/tuners.git
10353S: Maintained
10354F: drivers/media/tuners/tda8290.*
10355
Michael Krufky66cf9212012-10-02 00:56:28 -030010356TDA8290 MEDIA DRIVER
10357M: Michael Krufky <mkrufky@linuxtv.org>
10358L: linux-media@vger.kernel.org
10359W: http://linuxtv.org/
10360W: http://github.com/mkrufky
10361Q: http://patchwork.linuxtv.org/project/linux-media/list/
10362T: git git://linuxtv.org/mkrufky/tuners.git
10363S: Maintained
10364F: drivers/media/tuners/tda8290.*
10365
Hans Verkuil4b9fba32012-11-23 10:02:05 -030010366TDA9840 MEDIA DRIVER
10367M: Hans Verkuil <hverkuil@xs4all.nl>
10368L: linux-media@vger.kernel.org
10369T: git git://linuxtv.org/media_tree.git
10370W: http://linuxtv.org
10371S: Maintained
10372F: drivers/media/i2c/tda9840*
10373
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -020010374TEA5761 TUNER DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -020010375M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -020010376L: linux-media@vger.kernel.org
10377W: http://linuxtv.org
10378T: git git://linuxtv.org/media_tree.git
10379S: Odd fixes
10380F: drivers/media/tuners/tea5761.*
10381
10382TEA5767 TUNER DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -020010383M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -020010384L: linux-media@vger.kernel.org
10385W: http://linuxtv.org
10386T: git git://linuxtv.org/media_tree.git
10387S: Maintained
10388F: drivers/media/tuners/tea5767.*
10389
Hans Verkuil4b9fba32012-11-23 10:02:05 -030010390TEA6415C 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/tea6415c*
10397
10398TEA6420 MEDIA DRIVER
10399M: Hans Verkuil <hverkuil@xs4all.nl>
10400L: linux-media@vger.kernel.org
10401T: git git://linuxtv.org/media_tree.git
10402W: http://linuxtv.org
10403S: Maintained
10404F: drivers/media/i2c/tea6420*
10405
Jiri Pirko3d249d42011-11-11 22:16:48 +000010406TEAM DRIVER
Jiri Pirkodca9ab92013-02-15 23:55:05 +000010407M: Jiri Pirko <jiri@resnulli.us>
Jiri Pirko3d249d42011-11-11 22:16:48 +000010408L: netdev@vger.kernel.org
10409S: Supported
10410F: drivers/net/team/
10411F: include/linux/if_team.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010412F: include/uapi/linux/if_team.h
Jiri Pirko3d249d42011-11-11 22:16:48 +000010413
Vivien Didelot7d029122013-01-04 16:18:14 -050010414TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
Joe Perches9c3646d2015-06-25 15:02:00 -070010415M: "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
Vivien Didelot7d029122013-01-04 16:18:14 -050010416S: Maintained
10417F: arch/x86/platform/ts5500/
10418
Sean Young40ad4a32012-11-19 10:32:53 -030010419TECHNOTREND USB IR RECEIVER
10420M: Sean Young <sean@mess.org>
10421L: linux-media@vger.kernel.org
10422S: Maintained
10423F: drivers/media/rc/ttusbir.c
10424
Stephen Warrenadabdb02013-09-13 13:00:57 -060010425TEGRA ARCHITECTURE SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -070010426M: Stephen Warren <swarren@wwwdotorg.org>
Stephen Warrenadabdb02013-09-13 13:00:57 -060010427M: Thierry Reding <thierry.reding@gmail.com>
Stephen Warren554077c2014-10-03 09:50:32 -060010428M: Alexandre Courbot <gnurou@gmail.com>
Erik Gilling84b94142010-06-09 15:35:53 -070010429L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -070010430Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
Andreas Färberb779b882014-07-28 12:06:26 -060010431T: git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
Erik Gilling84b94142010-06-09 15:35:53 -070010432S: Supported
Stephen Warrenbbbe96e2013-04-29 16:17:23 -070010433N: [^a-z]tegra
Erik Gilling84b94142010-06-09 15:35:53 -070010434
Stephen Warrenadabdb02013-09-13 13:00:57 -060010435TEGRA CLOCK DRIVER
10436M: Peter De Schrijver <pdeschrijver@nvidia.com>
10437M: Prashant Gaikwad <pgaikwad@nvidia.com>
10438S: Supported
10439F: drivers/clk/tegra/
10440
10441TEGRA DMA DRIVER
10442M: Laxman Dewangan <ldewangan@nvidia.com>
10443S: Supported
10444F: drivers/dma/tegra20-apb-dma.c
10445
Stephen Warrenadabdb02013-09-13 13:00:57 -060010446TEGRA I2C DRIVER
10447M: Laxman Dewangan <ldewangan@nvidia.com>
10448S: Supported
10449F: drivers/i2c/busses/i2c-tegra.c
10450
10451TEGRA IOMMU DRIVERS
10452M: Hiroshi Doyu <hdoyu@nvidia.com>
10453S: Supported
10454F: drivers/iommu/tegra*
10455
10456TEGRA KBC DRIVER
10457M: Rakesh Iyer <riyer@nvidia.com>
10458M: Laxman Dewangan <ldewangan@nvidia.com>
10459S: Supported
10460F: drivers/input/keyboard/tegra-kbc.c
10461
Stephen Warrenadabdb02013-09-13 13:00:57 -060010462TEGRA PWM DRIVER
10463M: Thierry Reding <thierry.reding@gmail.com>
10464S: Supported
10465F: drivers/pwm/pwm-tegra.c
10466
10467TEGRA SERIAL DRIVER
10468M: Laxman Dewangan <ldewangan@nvidia.com>
10469S: Supported
10470F: drivers/tty/serial/serial-tegra.c
10471
10472TEGRA SPI DRIVER
10473M: Laxman Dewangan <ldewangan@nvidia.com>
10474S: Supported
10475F: drivers/spi/spi-tegra*
10476
Andy Gospodarek1a348cc2007-09-17 18:50:36 -070010477TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010478M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -070010479L: netdev@vger.kernel.org
10480S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -070010481F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -070010482
Alan Cox4e688522008-04-30 00:52:11 -070010483Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -070010484M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -070010485S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010486F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -070010487
Randy Dunlap4480f15b2008-10-12 16:11:58 -070010488TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -070010489M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -070010490M: Max Filippov <jcmvbkbc@gmail.com>
10491L: linux-xtensa@linux-xtensa.org
Alan Cox4e688522008-04-30 00:52:11 -070010492S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010493F: arch/xtensa/
Max Filippov3dc99852014-04-03 14:48:48 -070010494F: drivers/irqchip/irq-xtensa-*
Alan Cox4e688522008-04-30 00:52:11 -070010495
Hans Verkuil5313ba62013-12-13 09:00:38 -030010496THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
10497M: Hans Verkuil <hverkuil@xs4all.nl>
10498L: linux-media@vger.kernel.org
10499T: git git://linuxtv.org/media_tree.git
10500W: http://linuxtv.org
10501S: Maintained
10502F: drivers/media/radio/radio-raremono.c
10503
Zhang Ruid3fb6952012-11-15 08:58:27 +080010504THERMAL
Joe Perchesb75f0052014-03-03 15:38:37 -080010505M: Zhang Rui <rui.zhang@intel.com>
Lee Jonesf14d1c22014-05-30 11:03:28 +010010506M: Eduardo Valentin <edubezval@gmail.com>
Joe Perchesb75f0052014-03-03 15:38:37 -080010507L: linux-pm@vger.kernel.org
10508T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
10509T: git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
10510Q: https://patchwork.kernel.org/project/linux-pm/list/
10511S: Supported
10512F: drivers/thermal/
10513F: include/linux/thermal.h
Florian Fainelliaf6c9f12014-11-19 18:11:00 -080010514F: include/uapi/linux/thermal.h
Joe Perchesb75f0052014-03-03 15:38:37 -080010515F: include/linux/cpu_cooling.h
10516F: Documentation/devicetree/bindings/thermal/
Zhang Ruid3fb6952012-11-15 08:58:27 +080010517
Viresh Kumar64e05d82015-08-27 07:32:11 +053010518THERMAL/CPU_COOLING
10519M: Amit Daniel Kachhap <amit.kachhap@gmail.com>
10520M: Viresh Kumar <viresh.kumar@linaro.org>
10521M: Javi Merino <javi.merino@arm.com>
10522L: linux-pm@vger.kernel.org
10523S: Supported
10524F: Documentation/thermal/cpu-cooling-api.txt
10525F: drivers/thermal/cpu_cooling.c
10526F: include/linux/cpu_cooling.h
10527
Vivien Didelot30ba2fb2013-01-22 12:01:21 -050010528THINGM BLINK(1) USB RGB LED DRIVER
10529M: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
10530S: Maintained
10531F: drivers/hid/hid-thingm.c
10532
Alan Cox4e688522008-04-30 00:52:11 -070010533THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010534M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -070010535L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd09448532010-02-11 10:40:13 -050010536L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -070010537W: http://ibm-acpi.sourceforge.net
10538W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -070010539T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -070010540S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010541F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -070010542
Eduardo Valentin1b46f2a2013-03-15 09:00:34 -040010543TI BANDGAP AND THERMAL DRIVER
Lee Jonesf14d1c22014-05-30 11:03:28 +010010544M: Eduardo Valentin <edubezval@gmail.com>
Eduardo Valentin1b46f2a2013-03-15 09:00:34 -040010545L: linux-pm@vger.kernel.org
Nishanth Menon531ff132015-01-03 13:13:30 -060010546L: linux-omap@vger.kernel.org
Eduardo Valentin5a723e82015-01-05 17:48:13 -040010547S: Maintained
Eduardo Valentin794b2e22013-05-15 15:46:01 +000010548F: drivers/thermal/ti-soc-thermal/
Eduardo Valentin1b46f2a2013-03-15 09:00:34 -040010549
Max Filippov0c7665c2015-01-12 10:20:46 +030010550TI CDCE706 CLOCK DRIVER
10551M: Max Filippov <jcmvbkbc@gmail.com>
10552S: Maintained
10553F: drivers/clk/clk-cdce706.c
10554
Tero Kristo49b6a5e2014-07-02 17:03:50 +030010555TI CLOCK DRIVER
10556M: Tero Kristo <t-kristo@ti.com>
10557L: linux-omap@vger.kernel.org
10558S: Maintained
10559F: drivers/clk/ti/
10560F: include/linux/clk/ti.h
10561
Alex Dubov4020f2d2006-10-04 02:15:37 -070010562TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010563M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020010564S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010565F: drivers/misc/tifm*
10566F: drivers/mmc/host/tifm_sd.c
10567F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -070010568
Santosh Shilimkare0c52402014-07-10 11:30:08 -040010569TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
Santosh Shilimkar97215802014-10-13 14:16:28 -040010570M: Santosh Shilimkar <ssantosh@kernel.org>
Santosh Shilimkare0c52402014-07-10 11:30:08 -040010571L: linux-kernel@vger.kernel.org
10572L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10573S: Maintained
10574F: drivers/soc/ti/*
10575T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
10576
10577
M R Swami Reddy152ad442012-04-02 20:02:31 +053010578TI LM49xxx FAMILY ASoC CODEC DRIVERS
10579M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +053010580M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +053010581L: alsa-devel@alsa-project.org (moderated for non-subscribers)
10582S: Maintained
10583F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +053010584F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +053010585
Kim, Milo0edd8072012-12-17 16:01:17 -080010586TI LP855x BACKLIGHT DRIVER
10587M: Milo Kim <milo.kim@ti.com>
10588S: Maintained
10589F: Documentation/backlight/lp855x-driver.txt
10590F: drivers/video/backlight/lp855x_bl.c
10591F: include/linux/platform_data/lp855x.h
10592
Kim, Milofaf13f62012-12-10 05:27:03 +000010593TI LP8727 CHARGER DRIVER
10594M: Milo Kim <milo.kim@ti.com>
10595S: Maintained
10596F: drivers/power/lp8727_charger.c
10597F: include/linux/platform_data/lp8727.h
10598
Kim, Milo22f12292012-12-10 05:27:55 +000010599TI LP8788 MFD DRIVER
10600M: Milo Kim <milo.kim@ti.com>
10601S: Maintained
10602F: drivers/iio/adc/lp8788_adc.c
10603F: drivers/leds/leds-lp8788.c
10604F: drivers/mfd/lp8788*.c
10605F: drivers/power/lp8788-charger.c
10606F: drivers/regulator/lp8788-*.c
10607F: include/linux/mfd/lp8788*.h
10608
Karicheri, Muralidharan84640e22015-01-15 19:12:50 -050010609TI NETCP ETHERNET DRIVER
10610M: Wingman Kwok <w-kwok2@ti.com>
10611M: Murali Karicheri <m-karicheri2@ti.com>
10612L: netdev@vger.kernel.org
10613S: Maintained
10614F: drivers/net/ethernet/ti/netcp*
10615
Kevin Cernekee217e0ca2015-05-03 17:00:19 -070010616TI TAS571X FAMILY ASoC CODEC DRIVER
10617M: Kevin Cernekee <cernekee@chromium.org>
10618L: alsa-devel@alsa-project.org (moderated for non-subscribers)
10619S: Odd Fixes
10620F: sound/soc/codecs/tas571x*
10621
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +030010622TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +030010623M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +030010624L: alsa-devel@alsa-project.org (moderated for non-subscribers)
10625S: Maintained
10626F: sound/soc/codecs/twl4030*
10627
Luciano Coelho90921012011-11-20 21:40:41 +020010628TI WILINK WIRELESS DRIVERS
Luciano Coelho90921012011-11-20 21:40:41 +020010629L: linux-wireless@vger.kernel.org
10630W: http://wireless.kernel.org/en/users/Drivers/wl12xx
10631W: http://wireless.kernel.org/en/users/Drivers/wl1251
10632T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
Luciano Coelho22d072f2013-12-09 22:28:32 +020010633S: Orphan
Luciano Coelho90921012011-11-20 21:40:41 +020010634F: drivers/net/wireless/ti/
10635F: include/linux/wl12xx.h
10636
Per Lidene86eaa32006-01-12 16:45:18 +010010637TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -070010638M: Jon Maloy <jon.maloy@ericsson.com>
Jon Paul Maloy115403d2015-03-09 14:44:13 -040010639M: Ying Xue <ying.xue@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -050010640L: netdev@vger.kernel.org (core kernel code)
10641L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +010010642W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +010010643S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010644F: include/uapi/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -070010645F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +010010646
Chris Metcalf867e3592010-05-28 23:09:12 -040010647TILE ARCHITECTURE
Chris Metcalfc47b15c2014-11-13 09:41:58 -050010648M: Chris Metcalf <cmetcalf@ezchip.com>
Chris Metcalf740e1432015-02-13 13:16:49 -050010649W: http://www.ezchip.com/scm/
Chris Metcalf867e3592010-05-28 23:09:12 -040010650S: Supported
10651F: arch/tile/
Chris Metcalf6b940602013-08-07 10:45:01 -040010652F: drivers/char/tile-srom.c
Chris Metcalf5c770752011-03-01 13:01:49 -050010653F: drivers/edac/tile_edac.c
Chris Metcalf6b940602013-08-07 10:45:01 -040010654F: drivers/net/ethernet/tile/
10655F: drivers/rtc/rtc-tile.c
10656F: drivers/tty/hvc/hvc_tile.c
Chris Metcalfb5c6c1a2013-08-12 14:11:44 -040010657F: drivers/tty/serial/tilegx.c
Chris Metcalf6b940602013-08-07 10:45:01 -040010658F: drivers/usb/host/*-tilegx.c
10659F: include/linux/usb/tilegx.h
Chris Metcalf867e3592010-05-28 23:09:12 -040010660
Linus Torvalds1da177e2005-04-16 15:20:36 -070010661TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010662M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +080010663L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010664W: http://sourceforge.net/projects/tlan/
10665S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010666F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -070010667F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010668
Kentaro Takedad74db3b2009-02-05 17:18:18 +090010669TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -070010670M: Kentaro Takeda <takedakn@nttdata.co.jp>
10671M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +090010672L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
10673L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +090010674L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
10675L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
10676W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +090010677T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +090010678S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010679F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +090010680
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -030010681TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -030010682M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd09448532010-02-11 10:40:13 -050010683L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -030010684S: Maintained
10685F: drivers/platform/x86/topstar-laptop.c
10686
Linus Torvalds1da177e2005-04-16 15:20:36 -070010687TOSHIBA ACPI EXTRAS DRIVER
Azael Avalos0a63ca12015-03-06 18:14:42 -070010688M: Azael Avalos <coproscefalo@gmail.com>
Matthew Garrettd09448532010-02-11 10:40:13 -050010689L: platform-driver-x86@vger.kernel.org
Azael Avalos0a63ca12015-03-06 18:14:42 -070010690S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010691F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070010692
Azael Avalos0a63ca12015-03-06 18:14:42 -070010693TOSHIBA BLUETOOTH DRIVER
10694M: Azael Avalos <coproscefalo@gmail.com>
10695L: platform-driver-x86@vger.kernel.org
10696S: Maintained
10697F: drivers/platform/x86/toshiba_bluetooth.c
10698
10699TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
10700M: Azael Avalos <coproscefalo@gmail.com>
10701L: platform-driver-x86@vger.kernel.org
10702S: Maintained
10703F: drivers/platform/x86/toshiba_haps.c
10704
Azael Avalos14991fc2015-09-28 20:32:28 -060010705TOSHIBA WMI HOTKEYS DRIVER
10706M: Azael Avalos <coproscefalo@gmail.com>
10707L: platform-driver-x86@vger.kernel.org
10708S: Maintained
10709F: drivers/platform/x86/toshiba-wmi.c
10710
Linus Torvalds1da177e2005-04-16 15:20:36 -070010711TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010712M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010713W: http://www.buzzard.org.uk/toshiba/
10714S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010715F: drivers/char/toshiba.c
10716F: include/linux/toshiba.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010717F: include/uapi/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070010718
Mats Randgaardd32d9862015-07-09 05:45:47 -030010719TOSHIBA TC358743 DRIVER
10720M: Mats Randgaard <matrandg@cisco.com>
10721L: linux-media@vger.kernel.org
10722S: Maintained
10723F: drivers/media/i2c/tc358743*
10724F: include/media/tc358743.h
10725
Pierre Ossmand719f902009-03-24 21:06:09 +010010726TMIO MMC DRIVER
Ben Hutchingsc4b13fb2015-04-27 00:01:53 +010010727M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +020010728L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +010010729S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +020010730F: drivers/mmc/host/tmio_mmc*
10731F: drivers/mmc/host/sh_mobile_sdhi.c
10732F: include/linux/mmc/tmio.h
10733F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +010010734
Guenter Roeck917cc4e2013-05-19 20:44:27 -070010735TMP401 HARDWARE MONITOR DRIVER
10736M: Guenter Roeck <linux@roeck-us.net>
10737L: lm-sensors@lm-sensors.org
10738S: Maintained
10739F: Documentation/hwmon/tmp401
10740F: drivers/hwmon/tmp401.c
10741
Hugh Dickins98f32602009-05-21 20:33:58 +010010742TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -070010743M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +010010744L: linux-mm@kvack.org
10745S: Maintained
10746F: include/linux/shmem_fs.h
10747F: mm/shmem.c
10748
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -020010749TM6000 VIDEO4LINUX DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -020010750M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -020010751L: linux-media@vger.kernel.org
10752W: http://linuxtv.org
10753T: git git://linuxtv.org/media_tree.git
10754S: Odd fixes
10755F: drivers/media/usb/tm6000/
10756
Hans Verkuilc65fde12014-08-10 05:16:39 -030010757TW68 VIDEO4LINUX DRIVER
10758M: Hans Verkuil <hverkuil@xs4all.nl>
10759L: linux-media@vger.kernel.org
10760T: git git://linuxtv.org/media_tree.git
10761W: http://linuxtv.org
10762S: Odd Fixes
10763F: drivers/media/pci/tw68/
10764
Alan Cox4e688522008-04-30 00:52:11 -070010765TPM DEVICE DRIVER
Peter Huewe901486b2013-10-22 19:28:30 +020010766M: Peter Huewe <peterhuewe@gmx.de>
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -030010767M: Marcel Selhorst <tpmdd@selhorst.net>
Jarkko Sakkinen89adb832015-10-16 12:14:28 +030010768M: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
Peter Huewece93b4b2015-03-15 01:05:31 +010010769R: Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
Peter Huewe383dec12013-10-30 20:54:45 +010010770W: http://tpmdd.sourceforge.net
Rajiv Andrade63a10df2008-10-15 22:04:36 -070010771L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Peter Huewef78c81b2015-01-17 15:17:51 +010010772Q: git git://github.com/PeterHuewe/linux-tpmdd.git
10773T: https://github.com/PeterHuewe/linux-tpmdd
Alan Cox4e688522008-04-30 00:52:11 -070010774S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010775F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -070010776
Ashley Lai1a0f1b22014-12-04 21:01:51 -060010777TPM IBM_VTPM DEVICE DRIVER
10778M: Ashley Lai <ashleydlai@gmail.com>
10779W: http://tpmdd.sourceforge.net
10780L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
10781S: Maintained
10782F: drivers/char/tpm/tpm_ibmvtpm*
10783
Joe Perchesd6f005a2009-10-26 16:49:40 -070010784TRACING
10785M: Steven Rostedt <rostedt@goodmis.org>
Joe Perchesd6f005a2009-10-26 16:49:40 -070010786M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +010010787T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -070010788S: Maintained
10789F: Documentation/trace/ftrace.txt
10790F: arch/*/*/*/ftrace.h
10791F: arch/*/kernel/ftrace.c
10792F: include/*/ftrace.h
10793F: include/linux/trace*.h
10794F: include/trace/
10795F: kernel/trace/
Masami Hiramatsu6e68e6c2014-09-22 23:42:50 +000010796F: tools/testing/selftests/ftrace/
Joe Perchesd6f005a2009-10-26 16:49:40 -070010797
Linus Torvalds1da177e2005-04-16 15:20:36 -070010798TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -070010799M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -070010800T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070010801S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +020010802K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -070010803
Alan Cox4e688522008-04-30 00:52:11 -070010804TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -080010805M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jiri Slabyd8130622015-07-17 16:23:20 -070010806M: Jiri Slaby <jslaby@suse.com>
Greg KH879a5a02012-01-31 20:02:00 -080010807S: Supported
Joe Perches08deed12012-03-23 15:01:57 -070010808T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Baruch Siach84e1eb82015-06-04 10:56:58 +030010809F: Documentation/serial/
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -020010810F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -080010811F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +010010812F: include/linux/serial_core.h
10813F: include/linux/serial.h
10814F: include/linux/tty.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010815F: include/uapi/linux/serial_core.h
10816F: include/uapi/linux/serial.h
10817F: include/uapi/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -070010818
Antti Palosaari91952bc2012-10-01 12:28:46 -030010819TUA9001 MEDIA DRIVER
10820M: Antti Palosaari <crope@iki.fi>
10821L: linux-media@vger.kernel.org
10822W: http://linuxtv.org/
10823W: http://palosaari.fi/linux/
10824Q: http://patchwork.linuxtv.org/project/linux-media/list/
10825T: git git://linuxtv.org/anttip/media_tree.git
10826S: Maintained
10827F: drivers/media/tuners/tua9001*
10828
Grant Grundler740db6d2008-02-17 11:53:49 -070010829TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -070010830M: Grant Grundler <grundler@parisc-linux.org>
Grant Grundler740db6d2008-02-17 11:53:49 -070010831L: netdev@vger.kernel.org
10832S: Maintained
Joe Perches0f04e2a2012-01-10 15:08:56 -080010833F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010834
10835TUN/TAP driver
Jiri Slabyba57b6f2012-11-30 07:05:40 +000010836M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010837W: http://vtun.sourceforge.net/tun
10838S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010839F: Documentation/networking/tuntap.txt
10840F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010841
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -080010842TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070010843M: "Maciej W. Rozycki" <macro@linux-mips.org>
Ralf Baechlec4063392014-04-03 13:29:06 +020010844M: Ralf Baechle <ralf@linux-mips.org>
10845L: linux-mips@linux-mips.org
10846Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -080010847S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010848F: drivers/tc/
10849F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -080010850
Linus Torvalds1da177e2005-04-16 15:20:36 -070010851U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010852M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010853L: linux-scsi@vger.kernel.org
10854S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010855F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070010856
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010857UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +030010858M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +030010859M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010860L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +030010861T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010862W: http://www.linux-mtd.infradead.org/doc/ubifs.html
10863S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010864F: Documentation/filesystems/ubifs.txt
10865F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010866
Greg Ungerere1632fa2015-06-19 10:40:03 +100010867UCLINUX (M68KNOMMU AND COLDFIRE)
Joe Perches8b58be82009-07-29 15:04:30 -070010868M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +010010869W: http://www.uclinux.org/
Greg Ungerere1632fa2015-06-19 10:40:03 +100010870L: linux-m68k@lists.linux-m68k.org
Alan Coxcc2020e2008-05-19 14:21:51 +010010871L: uclinux-dev@uclinux.org (subscribers-only)
Greg Ungerere1632fa2015-06-19 10:40:03 +100010872T: git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
Alan Coxcc2020e2008-05-19 14:21:51 +010010873S: Maintained
Greg Ungerere1632fa2015-06-19 10:40:03 +100010874F: arch/m68k/coldfire/
10875F: arch/m68k/68*/
Joe Perches61bc02b2011-04-14 15:22:04 -070010876F: arch/m68k/*/*_no.*
10877F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +010010878
Linus Torvalds1da177e2005-04-16 15:20:36 -070010879UDF FILESYSTEM
Jiri Slabyd8130622015-07-17 16:23:20 -070010880M: Jan Kara <jack@suse.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010881S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010882F: Documentation/filesystems/udf.txt
10883F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010884
Alan Coxcc2020e2008-05-19 14:21:51 +010010885UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070010886M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +010010887S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010888F: Documentation/filesystems/ufs.txt
10889F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +010010890
David Herrmann0a09d3a2012-06-10 15:16:28 +020010891UHID USERSPACE HID IO DRIVER:
10892M: David Herrmann <dh.herrmann@googlemail.com>
10893L: linux-input@vger.kernel.org
10894S: Maintained
10895F: drivers/hid/uhid.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010896F: include/uapi/linux/uhid.h
David Herrmann0a09d3a2012-06-10 15:16:28 +020010897
David Vrabel18332a82008-09-17 16:34:44 +010010898ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +010010899L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +010010900S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +000010901F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -070010902F: include/linux/uwb.h
10903F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +010010904
GuanXuetaob31d8272011-01-16 00:35:49 +080010905UNICORE32 ARCHITECTURE:
10906M: Guan Xuetao <gxt@mprc.pku.edu.cn>
10907W: http://mprc.pku.edu.cn/~guanxuetao/linux
10908S: Maintained
Guan Xuetaoceebf4d2014-05-27 07:53:10 +080010909T: git git://github.com/gxt/linux.git
GuanXuetaob31d8272011-01-16 00:35:49 +080010910F: arch/unicore32/
10911
Tony Finchd8379ab2009-11-27 15:50:30 +000010912UNIFDEF
10913M: Tony Finch <dot@dotat.at>
10914W: http://dotat.at/prog/unifdef
10915S: Maintained
10916F: scripts/unifdef.c
10917
Linus Torvalds1da177e2005-04-16 15:20:36 -070010918UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010919M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010920W: http://www.kernel.dk
10921S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010922F: Documentation/cdrom/
10923F: drivers/cdrom/cdrom.c
10924F: include/linux/cdrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010925F: include/uapi/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070010926
Benjamin Romer56df0122014-03-07 13:02:21 -060010927UNISYS S-PAR DRIVERS
Joe Perches49e7d9d2015-04-15 16:17:31 -070010928M: Benjamin Romer <benjamin.romer@unisys.com>
10929M: David Kershner <david.kershner@unisys.com>
10930L: sparmaintainer@unisys.com (Unisys internal)
10931S: Supported
10932F: drivers/staging/unisys/
Benjamin Romer56df0122014-03-07 13:02:21 -060010933
Vinayak Holikatti9941fa62012-04-20 14:11:50 +053010934UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
10935M: Vinayak Holikatti <vinholikatti@gmail.com>
Vinayak Holikatti9941fa62012-04-20 14:11:50 +053010936L: linux-scsi@vger.kernel.org
10937S: Supported
10938F: Documentation/scsi/ufs.txt
10939F: drivers/scsi/ufs/
10940
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010941UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +030010942M: Artem Bityutskiy <dedekind1@gmail.com>
Richard Weinberger346be9b2015-01-28 12:28:24 +010010943M: Richard Weinberger <richard@nod.at>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010944W: http://www.linux-mtd.infradead.org/
10945L: linux-mtd@lists.infradead.org
Artem Bityutskiyb6b44e02014-01-02 16:43:51 +020010946T: git git://git.infradead.org/ubifs-2.6.git
Richard Weinberger346be9b2015-01-28 12:28:24 +010010947S: Supported
Joe Perches80811492009-04-08 20:20:27 -070010948F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -070010949F: include/linux/mtd/ubi.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010950F: include/uapi/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010951
Linus Torvalds1da177e2005-04-16 15:20:36 -070010952USB ACM DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +020010953M: Oliver Neukum <oliver@neukum.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -070010954L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070010955S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010956F: Documentation/usb/acm.txt
10957F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010958
Pontus Fuchsb7d572e2012-10-23 20:33:57 +020010959USB AR5523 WIRELESS DRIVER
10960M: Pontus Fuchs <pontus.fuchs@gmail.com>
10961L: linux-wireless@vger.kernel.org
10962S: Maintained
10963F: drivers/net/wireless/ath/ar5523/
10964
Matthew Wilcox115bb1f2010-10-07 13:05:23 +020010965USB ATTACHED SCSI
Hans de Goedef50a4962013-10-28 10:48:04 +000010966M: Hans de Goede <hdegoede@redhat.com>
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +010010967M: Gerd Hoffmann <kraxel@redhat.com>
Matthew Wilcox115bb1f2010-10-07 13:05:23 +020010968L: linux-usb@vger.kernel.org
10969L: linux-scsi@vger.kernel.org
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +010010970S: Maintained
Matthew Wilcox115bb1f2010-10-07 13:05:23 +020010971F: drivers/usb/storage/uas.c
10972
Linus Torvalds1da177e2005-04-16 15:20:36 -070010973USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +020010974M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +020010975L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070010976S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010977F: drivers/net/usb/cdc_*.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010978F: include/uapi/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070010979
Keith Packard66e3e592015-03-19 20:36:49 -070010980USB CHAOSKEY DRIVER
10981M: Keith Packard <keithp@keithp.com>
10982L: linux-usb@vger.kernel.org
10983S: Maintained
10984F: drivers/usb/misc/chaoskey.c
10985
Peter Korsgaardb02b3712008-04-27 08:59:44 +020010986USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010987M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +020010988L: linux-usb@vger.kernel.org
10989S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010990F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +020010991
Peter Korsgaardd0374f42007-02-16 17:03:54 +010010992USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010993M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +020010994L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +010010995W: http://www.linux-usb.org/usbnet
10996S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010997F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +010010998
Alan Coxcc2020e2008-05-19 14:21:51 +010010999USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011000M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +010011001L: rio500-users@lists.sourceforge.net
11002W: http://rio500.sourceforge.net
11003S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011004F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +010011005
Linus Torvalds1da177e2005-04-16 15:20:36 -070011006USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -040011007M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011008L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -040011009S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011010F: Documentation/usb/ehci.txt
11011F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011012
David Brownell69ae9e32006-11-14 02:03:31 -080011013USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f662011-06-08 19:16:28 +030011014M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011015L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -080011016W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +030011017T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11018S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011019F: drivers/usb/gadget/
11020F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -080011021
Jiri Kosina2dea64b2007-07-11 12:12:11 +020011022USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Jiri Kosinae5f64502015-08-09 09:11:34 +020011023M: Jiri Kosina <jikos@kernel.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011024L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -070011025T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070011026S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -070011027F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -070011028F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011029
Olav Kongas959eea22005-11-03 17:38:14 +020011030USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011031M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011032L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +020011033S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011034F: drivers/usb/host/isp116x*
11035F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +020011036
Linus Torvalds1da177e2005-04-16 15:20:36 -070011037USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011038M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011039L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -080011040L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -070011041S: Maintained
11042W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -070011043F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011044
Clemens Ladischaf399172011-01-10 16:32:54 +010011045USB MIDI DRIVER
11046M: Clemens Ladisch <clemens@ladisch.de>
11047L: alsa-devel@alsa-project.org (moderated for non-subscribers)
11048T: git git://git.alsa-project.org/alsa-kernel.git
11049S: Maintained
11050F: sound/usb/midi.*
11051
Joe Perches444ce9d2013-08-01 21:03:32 -070011052USB NETWORKING DRIVERS
11053L: linux-usb@vger.kernel.org
11054S: Odd Fixes
11055F: drivers/net/usb/
11056
Linus Torvalds1da177e2005-04-16 15:20:36 -070011057USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -040011058M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011059L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -040011060S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011061F: Documentation/usb/ohci.txt
11062F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011063
Peter Chen963ffa32015-02-15 12:22:59 +080011064USB OTG FSM (Finite State Machine)
11065M: Peter Chen <Peter.Chen@freescale.com>
Peter Chen83738562015-03-23 19:57:36 +080011066T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
Peter Chen963ffa32015-02-15 12:22:59 +080011067L: linux-usb@vger.kernel.org
11068S: Maintained
11069F: drivers/usb/common/usb-otg-fsm.c
11070
Valentina Manea563da3a2014-08-20 07:31:02 +030011071USB OVER IP DRIVER
11072M: Valentina Manea <valentina.manea.m@gmail.com>
11073M: Shuah Khan <shuah.kh@samsung.com>
11074L: linux-usb@vger.kernel.org
11075S: Maintained
11076F: drivers/usb/usbip/
11077F: tools/usb/usbip/
11078
Linus Torvalds1da177e2005-04-16 15:20:36 -070011079USB PEGASUS DRIVER
Petko Manolova16b9452013-04-29 16:17:25 -070011080M: Petko Manolov <petkan@nucleusys.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011081L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +020011082L: netdev@vger.kernel.org
Petko Manolov052e3122013-11-15 11:51:54 +020011083T: git git://github.com/petkan/pegasus.git
11084W: https://github.com/petkan/pegasus
Linus Torvalds1da177e2005-04-16 15:20:36 -070011085S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011086F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011087
Felipe Balbid3ad5582012-05-21 16:24:49 +030011088USB PHY LAYER
11089M: Felipe Balbi <balbi@ti.com>
11090L: linux-usb@vger.kernel.org
11091T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11092S: Maintained
11093F: drivers/usb/phy/
Felipe Balbid3ad5582012-05-21 16:24:49 +030011094
Pete Zaitcev73e4fb32007-06-21 15:18:35 -070011095USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -070011096M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011097L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -070011098S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070011099F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070011100
11101USB RTL8150 DRIVER
Petko Manolova16b9452013-04-29 16:17:25 -070011102M: Petko Manolov <petkan@nucleusys.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011103L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +020011104L: netdev@vger.kernel.org
Petko Manolov052e3122013-11-15 11:51:54 +020011105T: git git://github.com/petkan/rtl8150.git
11106W: https://github.com/petkan/rtl8150
Linus Torvalds1da177e2005-04-16 15:20:36 -070011107S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011108F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070011109
Greg KHf896b792013-10-30 11:07:31 -070011110USB SERIAL SUBSYSTEM
Johan Hovold66085692014-06-23 12:33:15 +020011111M: Johan Hovold <johan@kernel.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011112L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -070011113S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011114F: Documentation/usb/usb-serial.txt
Greg KHf896b792013-10-30 11:07:31 -070011115F: drivers/usb/serial/
Joe Perches679655d2009-04-07 20:44:32 -070011116F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011117
Steve Glendinningb3f0db12012-08-15 21:53:38 +000011118USB SMSC75XX ETHERNET DRIVER
11119M: Steve Glendinning <steve.glendinning@shawell.net>
11120L: netdev@vger.kernel.org
11121S: Maintained
11122F: drivers/net/usb/smsc75xx.*
11123
Steve Glendinning2f7ca802008-10-02 05:27:57 +000011124USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +010011125M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +000011126L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +010011127S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011128F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +000011129
Linus Torvalds1da177e2005-04-16 15:20:36 -070011130USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -080011131M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011132L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070011133W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -070011134T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070011135S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070011136F: Documentation/usb/
Joe Perches679655d2009-04-07 20:44:32 -070011137F: drivers/usb/
11138F: include/linux/usb.h
11139F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011140
11141USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011142M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011143L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070011144S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011145F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011146
David Brownell69ae9e32006-11-14 02:03:31 -080011147USB "USBNET" DRIVER FRAMEWORK
Jiri Slabyd8130622015-07-17 16:23:20 -070011148M: Oliver Neukum <oneukum@suse.com>
Peter Korsgaard043600a2007-06-27 21:18:18 +020011149L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -080011150W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -070011151S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011152F: drivers/net/usb/usbnet.c
11153F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011154
Laurent Pinchartc0efd232008-06-30 15:04:50 -030011155USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -070011156M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -030011157L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -030011158L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -020011159T: git git://linuxtv.org/media_tree.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -030011160W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -030011161S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -030011162F: drivers/media/usb/uvc/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -020011163F: include/uapi/linux/uvcvideo.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011164
Hans Verkuilb60b9c42012-11-23 07:54:42 -030011165USB VISION DRIVER
11166M: Hans Verkuil <hverkuil@xs4all.nl>
11167L: linux-media@vger.kernel.org
11168T: git git://linuxtv.org/media_tree.git
11169W: http://linuxtv.org
11170S: Odd Fixes
11171F: drivers/media/usb/usbvision/
11172
Laurent Pinchart8282da42012-10-04 02:32:42 +020011173USB WEBCAM GADGET
11174M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11175L: linux-usb@vger.kernel.org
11176S: Maintained
Andrzej Pietrasiewicz3a83c162014-09-09 02:02:09 +030011177F: drivers/usb/gadget/function/*uvc*
Joe Perchesfaf2e1d2014-08-08 14:26:18 -070011178F: drivers/usb/gadget/legacy/webcam.c
Laurent Pinchart8282da42012-10-04 02:32:42 +020011179
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +020011180USB WIRELESS RNDIS DRIVER (rndis_wlan)
Jussi Kivilinnae6146c52013-03-07 22:33:38 +020011181M: Jussi Kivilinna <jussi.kivilinna@iki.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +020011182L: linux-wireless@vger.kernel.org
11183S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011184F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +020011185
Sarah Sharpeb6bab12009-04-29 19:07:13 -070011186USB XHCI DRIVER
Sarah Sharp03d85052014-03-20 16:20:56 -070011187M: Mathias Nyman <mathias.nyman@intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -070011188L: linux-usb@vger.kernel.org
11189S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -080011190F: drivers/usb/host/xhci*
11191F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -070011192
Linus Torvalds1da177e2005-04-16 15:20:36 -070011193USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -040011194L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070011195W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -040011196S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -070011197F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011198
Antoine Jacquetb7eee612007-04-27 12:30:59 -030011199USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011200M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011201L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -030011202L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -020011203T: git git://linuxtv.org/media_tree.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -030011204W: http://royale.zerezo.com/zr364xx/
11205S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011206F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -030011207F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -030011208
Heikki Krogerus289fcff2015-05-13 15:26:42 +030011209ULPI BUS
11210M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
11211L: linux-usb@vger.kernel.org
11212S: Maintained
11213F: drivers/usb/common/ulpi.c
11214F: include/linux/ulpi/
11215
Randy Dunlape7839f22008-10-12 16:11:45 -070011216USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -070011217M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +010011218M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011219L: user-mode-linux-devel@lists.sourceforge.net
11220L: user-mode-linux-user@lists.sourceforge.net
11221W: http://user-mode-linux.sourceforge.net
11222S: Maintained
Rob Landley61516582011-05-06 09:27:36 -070011223F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -070011224F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +020011225F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -070011226F: fs/hostfs/
11227F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -030011228
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +010011229USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -070011230M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -080011231M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +010011232S: Maintained
Mandeep Sandhu3d3fecb2015-01-10 19:15:45 -080011233T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Joe Perches679655d2009-04-07 20:44:32 -070011234F: Documentation/DocBook/uio-howto.tmpl
11235F: drivers/uio/
11236F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +010011237
Karel Zak256cccb2012-06-01 10:13:09 +020011238UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -070011239M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +020011240L: util-linux@vger.kernel.org
11241W: http://en.wikipedia.org/wiki/Util-linux
11242T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -070011243S: Maintained
11244
Michal Januszewskic1fd1c02008-10-15 22:03:48 -070011245UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011246M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +010011247L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -070011248W: http://dev.gentoo.org/~spock/projects/uvesafb/
11249S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011250F: Documentation/fb/uvesafb.txt
Jingoo Han8a61f012014-07-01 15:36:01 +090011251F: drivers/video/fbdev/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -070011252
Randy Dunlap4480f15b2008-10-12 16:11:58 -070011253VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070011254M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011255S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011256F: Documentation/filesystems/vfat.txt
11257F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011258
Alex Williamsoncba33452012-07-31 08:16:22 -060011259VFIO DRIVER
11260M: Alex Williamson <alex.williamson@redhat.com>
11261L: kvm@vger.kernel.org
11262S: Maintained
11263F: Documentation/vfio.txt
11264F: drivers/vfio/
11265F: include/linux/vfio.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011266F: include/uapi/linux/vfio.h
Alex Williamsoncba33452012-07-31 08:16:22 -060011267
Alex Williamsona714ea52015-06-18 11:59:22 -060011268VFIO PLATFORM DRIVER
11269M: Baptiste Reynal <b.reynal@virtualopensystems.com>
11270L: kvm@vger.kernel.org
11271S: Maintained
11272F: drivers/vfio/platform/
11273
Pawel Osciak9e6f3432011-06-15 15:08:32 -070011274VIDEOBUF2 FRAMEWORK
11275M: Pawel Osciak <pawel@osciak.com>
11276M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -030011277M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -070011278L: linux-media@vger.kernel.org
11279S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -030011280F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -070011281F: include/media/videobuf2-*
11282
Amit Shah9a824462010-03-23 18:23:09 +053011283VIRTIO CONSOLE DRIVER
11284M: Amit Shah <amit.shah@redhat.com>
11285L: virtualization@lists.linux-foundation.org
11286S: Maintained
11287F: drivers/char/virtio_console.c
11288F: include/linux/virtio_console.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011289F: include/uapi/linux/virtio_console.h
Amit Shah9a824462010-03-23 18:23:09 +053011290
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +103011291VIRTIO CORE, NET AND BLOCK DRIVERS
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +103011292M: "Michael S. Tsirkin" <mst@redhat.com>
11293L: virtualization@lists.linux-foundation.org
11294S: Maintained
11295F: drivers/virtio/
Michael S. Tsirkinc893c8d2013-07-08 11:31:13 +093011296F: tools/virtio/
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +103011297F: drivers/net/virtio_net.c
11298F: drivers/block/virtio_blk.c
11299F: include/linux/virtio_*.h
Amos Kong916cdab2013-04-02 16:42:02 +103011300F: include/uapi/linux/virtio_*.h
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +103011301
Cornelia Huckf2dbda32015-07-01 17:15:37 +020011302VIRTIO DRIVERS FOR S390
11303M: Christian Borntraeger <borntraeger@de.ibm.com>
11304M: Cornelia Huck <cornelia.huck@de.ibm.com>
11305L: linux-s390@vger.kernel.org
11306L: virtualization@lists.linux-foundation.org
11307L: kvm@vger.kernel.org
11308S: Supported
Cornelia Huck1b568d92015-07-07 11:41:01 +020011309F: drivers/s390/virtio/
Cornelia Huckf2dbda32015-07-01 17:15:37 +020011310
Gerd Hoffmann4ad6ee92015-06-02 10:49:03 +020011311VIRTIO GPU DRIVER
11312M: David Airlie <airlied@linux.ie>
11313M: Gerd Hoffmann <kraxel@redhat.com>
11314L: dri-devel@lists.freedesktop.org
11315L: virtualization@lists.linux-foundation.org
11316S: Maintained
11317F: drivers/gpu/drm/virtio/
11318F: include/uapi/linux/virtio_gpu.h
11319
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000011320VIRTIO HOST (VHOST)
11321M: "Michael S. Tsirkin" <mst@redhat.com>
11322L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +000011323L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000011324L: netdev@vger.kernel.org
11325S: Maintained
11326F: drivers/vhost/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011327F: include/uapi/linux/vhost.h
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000011328
Gerd Hoffmann271c8652015-03-27 12:46:12 +103011329VIRTIO INPUT DRIVER
11330M: Gerd Hoffmann <kraxel@redhat.com>
11331S: Maintained
11332F: drivers/virtio/virtio_input.c
11333F: include/uapi/linux/virtio_input.h
11334
Linus Torvalds1da177e2005-04-16 15:20:36 -070011335VIA RHINE NETWORK DRIVER
Roger Luethi210347e2015-05-26 19:12:54 +020011336S: Orphan
Jeff Kirsherf2148a42011-05-20 20:43:09 -070011337F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070011338
Harald Weltef0bf7f62009-06-17 20:22:39 +020011339VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -080011340M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -070011341M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +020011342S: Maintained
11343F: drivers/mmc/host/via-sdmmc.c
11344
Joseph Chan69e4a7c2008-10-15 22:03:31 -070011345VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +000011346M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +010011347L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -070011348S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +000011349F: include/linux/via-core.h
11350F: include/linux/via-gpio.h
11351F: include/linux/via_i2c.h
Jingoo Han8a61f012014-07-01 15:36:01 +090011352F: drivers/video/fbdev/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -070011353
Francois Romieu01f20732007-01-26 00:57:17 -080011354VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011355M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -080011356L: netdev@vger.kernel.org
11357S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -070011358F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011359
Alex Williamsonf73f8172015-09-18 22:29:39 +080011360VIRT LIB
11361M: Alex Williamson <alex.williamson@redhat.com>
11362M: Paolo Bonzini <pbonzini@redhat.com>
11363L: kvm@vger.kernel.org
11364S: Supported
11365F: virt/lib/
11366
Hans Verkuil77911fd2014-12-10 04:22:37 -030011367VIVID VIRTUAL VIDEO DRIVER
Hans Verkuil0b7bc1f2012-11-23 08:21:50 -030011368M: Hans Verkuil <hverkuil@xs4all.nl>
11369L: linux-media@vger.kernel.org
11370T: git git://linuxtv.org/media_tree.git
11371W: http://linuxtv.org
11372S: Maintained
Hans Verkuil77911fd2014-12-10 04:22:37 -030011373F: drivers/media/platform/vivid/*
Hans Verkuil0b7bc1f2012-11-23 08:21:50 -030011374
Patrick McHardybe7f8272007-10-23 20:26:36 -070011375VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -070011376M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -070011377L: netdev@vger.kernel.org
11378S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011379F: drivers/net/macvlan.c
11380F: include/linux/if_*vlan.h
11381F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -070011382
Florian Fainelli55e331c2009-06-16 15:33:53 -070011383VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -070011384M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -080011385L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -070011386S: Maintained
11387F: drivers/vlynq/vlynq.c
11388F: include/linux/vlynq.h
11389
Martyn Welch390beae2012-05-03 17:52:36 +010011390VME SUBSYSTEM
Martyn Welch74c600e2015-09-17 20:38:47 +010011391M: Martyn Welch <martyn@welchs.me.uk>
Manohar Vanga1bd289d2012-06-14 15:57:01 +020011392M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +010011393M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11394L: devel@driverdev.osuosl.org
11395S: Maintained
11396T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11397F: Documentation/vme_api.txt
11398F: drivers/staging/vme/
11399F: drivers/vme/
11400F: include/linux/vme*
11401
Alok Kataria4488e092013-09-04 14:23:41 +053011402VMWARE HYPERVISOR INTERFACE
11403M: Alok Kataria <akataria@vmware.com>
11404L: virtualization@lists.linux-foundation.org
11405S: Supported
11406F: arch/x86/kernel/cpu/vmware.c
11407
Dmitry Torokhov73b35d02014-06-20 10:14:58 -070011408VMWARE BALLOON DRIVER
11409M: Xavier Deguillard <xdeguillard@vmware.com>
11410M: Philip Moltmann <moltmann@vmware.com>
11411M: "VMware, Inc." <pv-drivers@vmware.com>
11412L: linux-kernel@vger.kernel.org
11413S: Maintained
11414F: drivers/misc/vmw_balloon.c
11415
Thomas Hellstrom8b8be512015-04-14 10:06:38 -070011416VMWARE VMMOUSE SUBDRIVER
11417M: "VMware Graphics" <linux-graphics-maintainer@vmware.com>
11418M: "VMware, Inc." <pv-drivers@vmware.com>
11419L: linux-input@vger.kernel.org
11420S: Maintained
11421F: drivers/input/mouse/vmmouse.c
11422F: drivers/input/mouse/vmmouse.h
11423
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -070011424VMWARE VMXNET3 ETHERNET DRIVER
Shrikrishna Khare04e1b732015-08-24 14:24:11 -070011425M: Shrikrishna Khare <skhare@vmware.com>
Joe Perches65c8bb52009-11-11 14:26:12 -080011426M: "VMware, Inc." <pv-drivers@vmware.com>
11427L: netdev@vger.kernel.org
11428S: Maintained
11429F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -070011430
Alok Kataria851b1642009-10-13 14:51:05 -070011431VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -080011432M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -070011433M: VMware PV-Drivers <pv-drivers@vmware.com>
11434L: linux-scsi@vger.kernel.org
11435S: Maintained
11436F: drivers/scsi/vmw_pvscsi.c
11437F: drivers/scsi/vmw_pvscsi.h
11438
Liam Girdwoode53e86c2008-07-10 15:48:00 +010011439VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Axel Lin88dd75a2013-03-25 16:49:51 +080011440M: Liam Girdwood <lgirdwood@gmail.com>
Mark Brownb02e48f2013-04-12 11:39:57 +010011441M: Mark Brown <broonie@kernel.org>
Mark Brown5cdeb2c2014-08-16 12:31:11 +010011442L: linux-kernel@vger.kernel.org
Liam Girdwood1dd68f02009-02-02 21:43:31 +000011443W: http://www.slimlogic.co.uk/?p=48
Sachin Kamat6febb5a2013-07-04 12:08:50 +053011444T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +010011445S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070011446F: drivers/regulator/
11447F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +010011448
David Ahern081958e2015-08-25 10:26:22 -070011449VRF
11450M: David Ahern <dsa@cumulusnetworks.com>
11451M: Shrijeet Mukherjee <shm@cumulusnetworks.com>
11452L: netdev@vger.kernel.org
11453S: Maintained
11454F: drivers/net/vrf.c
David Ahern562d8972015-09-15 10:50:14 -060011455F: Documentation/networking/vrf.txt
David Ahern081958e2015-08-25 10:26:22 -070011456
Juerg Haefligerab413192006-09-24 20:54:04 +020011457VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011458M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +020011459L: lm-sensors@lm-sensors.org
11460S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011461F: Documentation/hwmon/vt1211
11462F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +020011463
Roger Lucas1de9e372005-11-26 20:20:05 +010011464VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011465M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +010011466L: lm-sensors@lm-sensors.org
11467S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011468F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +010011469
Tony Olech88095e72011-05-14 16:48:13 -040011470VUB300 USB to SDIO/SD/MMC bridge chip
11471M: Tony Olech <tony.olech@elandigitalsystems.com>
11472L: linux-mmc@vger.kernel.org
11473L: linux-usb@vger.kernel.org
11474S: Supported
11475F: drivers/mmc/host/vub300.c
11476
Linus Torvalds1da177e2005-04-16 15:20:36 -070011477W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -070011478M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011479S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011480F: Documentation/w1/
11481F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011482
Charles Spirakis13927072006-07-05 18:05:15 +020011483W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011484M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +020011485L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -040011486S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011487F: Documentation/hwmon/w83791d
11488F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +020011489
Rudolf Marek61db0112006-12-12 18:18:30 +010011490W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011491M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +010011492L: lm-sensors@lm-sensors.org
11493S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011494F: Documentation/hwmon/w83793
11495F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +010011496
Jean Delvaree3760b42010-10-28 20:31:49 +020011497W83795 HARDWARE MONITORING DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -070011498M: Jean Delvare <jdelvare@suse.com>
Jean Delvaree3760b42010-10-28 20:31:49 +020011499L: lm-sensors@lm-sensors.org
11500S: Maintained
11501F: drivers/hwmon/w83795.c
11502
Linus Torvalds1da177e2005-04-16 15:20:36 -070011503W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011504M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011505S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011506F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011507
Hans de Goedeb4e05922014-07-20 13:35:44 -070011508WACOM PROTOCOL 4 SERIAL TABLETS
11509M: Julian Squires <julian@cipht.net>
11510M: Hans de Goede <hdegoede@redhat.com>
11511L: linux-input@vger.kernel.org
11512S: Maintained
11513F: drivers/input/tablet/wacom_serial4.c
11514
Wim Van Sebroeck35277612006-01-15 21:21:14 +010011515WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -070011516M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +000011517L: linux-watchdog@vger.kernel.org
11518W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +010011519T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +010011520S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011521F: Documentation/watchdog/
11522F: drivers/watchdog/
11523F: include/linux/watchdog.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011524F: include/uapi/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +010011525
Linus Torvalds1da177e2005-04-16 15:20:36 -070011526WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011527M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011528L: linux-scsi@vger.kernel.org
11529S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011530F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070011531
David Herrmannb22e00f2011-09-06 13:50:40 +020011532WIIMOTE HID DRIVER
11533M: David Herrmann <dh.herrmann@googlemail.com>
11534L: linux-input@vger.kernel.org
11535S: Maintained
11536F: drivers/hid/hid-wiimote*
11537
David Härdemane258b802009-09-21 17:04:53 -070011538WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -070011539M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -070011540S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -070011541F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -070011542
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -080011543WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -070011544M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -080011545M: linux-wimax@intel.com
Joe Perches49e7d9d2015-04-15 16:17:31 -070011546L: wimax@linuxwimax.org (subscribers-only)
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -080011547S: Supported
11548W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -070011549F: Documentation/wimax/README.wimax
Joe Perches315987d2010-08-09 17:20:50 -070011550F: include/linux/wimax/debug.h
11551F: include/net/wimax.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011552F: include/uapi/linux/wimax.h
Joe Perches315987d2010-08-09 17:20:50 -070011553F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -080011554
Dmitry Torokhov5fc146802005-11-20 00:50:06 -050011555WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011556M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -050011557S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011558F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -050011559
Linus Torvalds1da177e2005-04-16 15:20:36 -070011560WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011561M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -070011562L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -030011563W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -070011564S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011565F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011566
Mark Brown055bcbc2010-08-13 14:18:12 +010011567WOLFSON MICROELECTRONICS DRIVERS
Mark Brownfef95162012-04-04 12:06:24 +010011568L: patches@opensource.wolfsonmicro.com
Richard Fitzgeraldf0e03db2015-09-22 15:30:33 +010011569T: git https://github.com/CirrusLogic/linux-drivers.git
11570W: https://github.com/CirrusLogic/linux-drivers/wiki
Mark Brownb75ea162009-07-02 16:43:08 +010011571S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -080011572F: Documentation/hwmon/wm83??
Charles Keepaxf4949932015-10-27 16:01:59 +000011573F: Documentation/devicetree/bindings/extcon/extcon-arizona.txt
11574F: Documentation/devicetree/bindings/regulator/arizona-regulator.txt
11575F: Documentation/devicetree/bindings/mfd/arizona.txt
Mark Brownaf1c5382011-10-14 21:09:43 +010011576F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +010011577F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +010011578F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +010011579F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +010011580F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +010011581F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -050011582F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +090011583F: drivers/input/misc/wm831x-on.c
11584F: drivers/input/touchscreen/wm831x-ts.c
11585F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +010011586F: drivers/mfd/arizona*
11587F: drivers/mfd/wm*.c
Mark Brownb75ea162009-07-02 16:43:08 +010011588F: drivers/power/wm83*.c
11589F: drivers/rtc/rtc-wm83*.c
11590F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +010011591F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +010011592F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +010011593F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +010011594F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +010011595F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -080011596F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +090011597F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +010011598F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +010011599F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +010011600F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +010011601
Tejun Heo3e6cd7a2010-12-10 17:20:23 +010011602WORKQUEUE
11603M: Tejun Heo <tj@kernel.org>
Lai Jiangshanbadb7f52015-07-01 15:38:04 +080011604R: Lai Jiangshan <jiangshanlai@gmail.com>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +010011605T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
11606S: Maintained
11607F: include/linux/workqueue.h
11608F: kernel/workqueue.c
11609F: Documentation/workqueue.txt
11610
Linus Torvalds1da177e2005-04-16 15:20:36 -070011611X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +000011612M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011613L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +000011614S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -070011615F: Documentation/networking/x25*
11616F: include/net/x25*
11617F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011618
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011619X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -070011620M: Thomas Gleixner <tglx@linutronix.de>
11621M: Ingo Molnar <mingo@redhat.com>
11622M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -080011623M: x86@kernel.org
Ingo Molnar981c3a42014-01-21 10:59:20 +010011624L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +010011625T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011626S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011627F: Documentation/x86/
11628F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011629
Matthew Garrettd09448532010-02-11 10:40:13 -050011630X86 PLATFORM DRIVERS
Darren Harte181ba12014-08-27 23:36:06 -070011631M: Darren Hart <dvhart@infradead.org>
Matthew Garrettd09448532010-02-11 10:40:13 -050011632L: platform-driver-x86@vger.kernel.org
Darren Harte181ba12014-08-27 23:36:06 -070011633T: git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
Matthew Garrettd09448532010-02-11 10:40:13 -050011634S: Maintained
Joe Perches14430812013-09-11 14:23:50 -070011635F: drivers/platform/x86/
Darren Hart3a4bcee2015-10-06 23:17:04 +010011636F: drivers/platform/olpc/
Matthew Garrettd09448532010-02-11 10:40:13 -050011637
Ingo Molnarc1f5c542011-06-18 22:51:13 +020011638X86 MCE INFRASTRUCTURE
11639M: Tony Luck <tony.luck@intel.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +010011640M: Borislav Petkov <bp@alien8.de>
Ingo Molnarc1f5c542011-06-18 22:51:13 +020011641L: linux-edac@vger.kernel.org
11642S: Maintained
11643F: arch/x86/kernel/cpu/mcheck/*
11644
Borislav Petkov79ebdc92015-10-20 11:54:49 +020011645X86 MICROCODE UPDATE SUPPORT
11646M: Borislav Petkov <bp@alien8.de>
11647S: Maintained
11648F: arch/x86/kernel/cpu/microcode/*
11649
Andy Lutomirskif0905c52014-12-12 16:25:47 -080011650X86 VDSO
11651M: Andy Lutomirski <luto@amacapital.net>
11652L: linux-kernel@vger.kernel.org
11653T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
11654S: Maintained
Ingo Molnard603c8e2015-06-03 18:05:44 +020011655F: arch/x86/entry/vdso/
Andy Lutomirskif0905c52014-12-12 16:25:47 -080011656
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -020011657XC2028/3028 TUNER DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -020011658M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -020011659L: linux-media@vger.kernel.org
11660W: http://linuxtv.org
11661T: git git://linuxtv.org/media_tree.git
11662S: Maintained
11663F: drivers/media/tuners/tuner-xc2028.*
11664
Ian Campbellc4468082011-04-27 15:26:46 -070011665XEN HYPERVISOR INTERFACE
Ian Campbellc4468082011-04-27 15:26:46 -070011666M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Konrad Rzeszutek Wilk3eeef8f2013-08-05 14:01:49 -040011667M: Boris Ostrovsky <boris.ostrovsky@oracle.com>
11668M: David Vrabel <david.vrabel@citrix.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040011669L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
David Vrabelea70ba32014-01-17 11:51:51 +000011670T: git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
Ian Campbellc4468082011-04-27 15:26:46 -070011671S: Supported
11672F: arch/x86/xen/
11673F: drivers/*/xen-*front.c
11674F: drivers/xen/
11675F: arch/x86/include/asm/xen/
11676F: include/xen/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011677F: include/uapi/xen/
Ian Campbellc4468082011-04-27 15:26:46 -070011678
Stefano Stabellini77bfb472012-09-14 13:35:15 +000011679XEN HYPERVISOR ARM
11680M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040011681L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
Stefano Stabellini77bfb472012-09-14 13:35:15 +000011682S: Supported
11683F: arch/arm/xen/
11684F: arch/arm/include/asm/xen/
11685
Stefano Stabellinib475e832013-06-04 16:13:23 +000011686XEN HYPERVISOR ARM64
11687M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040011688L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
Stefano Stabellinib475e832013-06-04 16:13:23 +000011689S: Supported
11690F: arch/arm64/xen/
11691F: arch/arm64/include/asm/xen/
11692
Ian Campbell9b57e1a2011-04-03 23:12:23 +000011693XEN NETWORK BACKEND DRIVER
11694M: Ian Campbell <ian.campbell@citrix.com>
Wei Liu83860402013-09-26 12:41:53 +010011695M: Wei Liu <wei.liu2@citrix.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040011696L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
Ian Campbell9b57e1a2011-04-03 23:12:23 +000011697L: netdev@vger.kernel.org
11698S: Supported
11699F: drivers/net/xen-netback/*
11700
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -040011701XEN PCI SUBSYSTEM
11702M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040011703L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +020011704S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -040011705F: arch/x86/pci/*xen*
11706F: drivers/pci/*xen*
11707
Konrad Rzeszutek Wilka2c5ae62014-06-27 10:10:45 -040011708XEN BLOCK SUBSYSTEM
11709M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Roger Pau Monnebcadb692015-01-23 17:14:29 +010011710M: Roger Pau Monné <roger.pau@citrix.com>
Konrad Rzeszutek Wilka2c5ae62014-06-27 10:10:45 -040011711L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
11712S: Supported
11713F: drivers/block/xen-blkback/*
11714F: drivers/block/xen*
11715
Juergen Gross15d03602014-08-28 06:44:13 +020011716XEN PVSCSI DRIVERS
11717M: Juergen Gross <jgross@suse.com>
11718L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
11719L: linux-scsi@vger.kernel.org
11720S: Supported
11721F: drivers/scsi/xen-scsifront.c
11722F: drivers/xen/xen-scsiback.c
11723F: include/xen/interface/io/vscsiif.h
11724
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -040011725XEN SWIOTLB SUBSYSTEM
11726M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040011727L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -040011728S: Supported
11729F: arch/x86/xen/*swiotlb*
11730F: drivers/xen/*swiotlb*
11731
Linus Torvalds1da177e2005-04-16 15:20:36 -070011732XFS FILESYSTEM
11733P: Silicon Graphics Inc
Namjae Jeon809625c2013-12-08 23:33:50 +090011734M: Dave Chinner <david@fromorbit.com>
Ben Myers18caa672012-04-12 17:05:05 +000011735M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +100011736L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -070011737W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -070011738T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070011739S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070011740F: Documentation/filesystems/xfs.txt
11741F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011742
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +000011743XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +000011744M: Anirudha Sarangi <anirudh@xilinx.com>
11745M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +000011746S: Maintained
11747F: drivers/net/ethernet/xilinx/xilinx_axienet*
11748
Peter Korsgaard238b8722006-12-06 20:35:17 -080011749XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011750M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -080011751L: linux-serial@vger.kernel.org
11752S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -080011753F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -080011754
Laurent Pinchartdf330512013-05-15 11:36:19 -030011755XILINX VIDEO IP CORES
11756M: Hyun Kwon <hyun.kwon@xilinx.com>
11757M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11758L: linux-media@vger.kernel.org
11759T: git git://linuxtv.org/media_tree.git
11760S: Supported
11761F: Documentation/devicetree/bindings/media/xilinx/
11762F: drivers/media/platform/xilinx/
Laurent Pincharta5562f62013-05-15 11:36:56 -030011763F: include/uapi/linux/xilinx-v4l2-controls.h
Laurent Pinchartdf330512013-05-15 11:36:19 -030011764
Eli Billauer74316942014-09-09 09:38:01 +030011765XILLYBUS DRIVER
11766M: Eli Billauer <eli.billauer@gmail.com>
11767L: linux-kernel@vger.kernel.org
11768S: Supported
11769F: drivers/char/xillybus/
11770
Max Filippovf620e4b2014-03-12 21:55:26 +040011771XTENSA XTFPGA PLATFORM SUPPORT
11772M: Max Filippov <jcmvbkbc@gmail.com>
11773L: linux-xtensa@linux-xtensa.org
11774S: Maintained
11775F: drivers/spi/spi-xtensa-xtfpga.c
Max Filippov57b70682014-12-26 20:19:38 +030011776F: sound/soc/xtensa/xtfpga-i2s.c
Max Filippovf620e4b2014-03-12 21:55:26 +040011777
Linus Torvalds1da177e2005-04-16 15:20:36 -070011778YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -070011779M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011780L: linux-hams@vger.kernel.org
11781S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011782F: drivers/net/hamradio/yam*
11783F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011784
Henkaf64a5e2005-10-12 15:02:56 +020011785YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011786M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +020011787L: usbb2k-api-dev@nongnu.org
11788S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011789F: Documentation/input/yealink.txt
11790F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +020011791
Linus Torvalds1da177e2005-04-16 15:20:36 -070011792Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -070011793M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011794W: http://yaina.de/jreuter/
11795W: http://www.qsl.net/dl1bke/
11796L: linux-hams@vger.kernel.org
11797S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011798F: Documentation/networking/z8530drv.txt
11799F: drivers/net/hamradio/*scc.c
11800F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011801
Seth Jennings0cf31ec2013-07-08 16:00:05 -070011802ZBUD COMPRESSED PAGE ALLOCATOR
Seth Jennings0e3b7e52014-05-06 12:50:02 -070011803M: Seth Jennings <sjennings@variantweb.net>
Seth Jennings0cf31ec2013-07-08 16:00:05 -070011804L: linux-mm@kvack.org
11805S: Maintained
11806F: mm/zbud.c
11807F: include/linux/zbud.h
11808
Daniel Drake7c0c3af2006-07-16 13:55:17 +010011809ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011810M: Daniel Drake <dsd@gentoo.org>
11811M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +010011812W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -070011813L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +010011814L: zd1211-devs@lists.sourceforge.net (subscribers-only)
11815S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011816F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +010011817
Dan Streetman20263022015-06-30 14:59:57 -070011818ZPOOL COMPRESSED PAGE STORAGE API
11819M: Dan Streetman <ddstreet@ieee.org>
11820L: linux-mm@kvack.org
11821S: Maintained
11822F: mm/zpool.c
11823F: include/linux/zpool.h
11824
Linus Torvalds1da177e2005-04-16 15:20:36 -070011825ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -070011826L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -030011827L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070011828W: http://mjpeg.sourceforge.net/driver-zoran/
Joe Perchescea83212014-03-03 15:38:38 -080011829T: hg http://linuxtv.org/hg/v4l-dvb
Trent Piephof63145e2009-01-24 20:52:41 -030011830S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -030011831F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011832
Minchan Kim6920f2c2014-01-30 15:45:56 -080011833ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
11834M: Minchan Kim <minchan@kernel.org>
11835M: Nitin Gupta <ngupta@vflare.org>
Minchan Kim74f30372015-05-05 16:23:28 -070011836R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
Minchan Kim6920f2c2014-01-30 15:45:56 -080011837L: linux-kernel@vger.kernel.org
11838S: Maintained
11839F: drivers/block/zram/
11840F: Documentation/blockdev/zram.txt
11841
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -070011842ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011843M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -070011844S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -080011845F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -070011846
Minchan Kimeae70d02014-01-30 15:45:57 -080011847ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
11848M: Minchan Kim <minchan@kernel.org>
11849M: Nitin Gupta <ngupta@vflare.org>
Sergey Senozhatsky41192a22015-10-22 13:32:13 -070011850R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
Minchan Kimeae70d02014-01-30 15:45:57 -080011851L: linux-mm@kvack.org
11852S: Maintained
11853F: mm/zsmalloc.c
11854F: include/linux/zsmalloc.h
Minchan Kimd02be502015-04-15 16:15:46 -070011855F: Documentation/vm/zsmalloc.txt
Minchan Kimeae70d02014-01-30 15:45:57 -080011856
Seth Jennings0cf31ec2013-07-08 16:00:05 -070011857ZSWAP COMPRESSED SWAP CACHING
Seth Jennings0e3b7e52014-05-06 12:50:02 -070011858M: Seth Jennings <sjennings@variantweb.net>
Seth Jennings0cf31ec2013-07-08 16:00:05 -070011859L: linux-mm@kvack.org
11860S: Maintained
11861F: mm/zswap.c
11862
Linus Torvalds1da177e2005-04-16 15:20:36 -070011863THE REST
Joe Perches8b58be82009-07-29 15:04:30 -070011864M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -070011865L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -080011866Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -040011867T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070011868S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -070011869F: *
11870F: */