blob: 30aca4aa5467b53d6a171a27b57a4357fa09127b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03002
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 List of maintainers and how to submit kernel changes
4
5Please try to follow the guidelines below. This will make things
6easier on the maintainers. Not all of these guidelines matter for every
7trivial patch so apply some common sense.
8
91. Always _test_ your changes, however small, on at least 4 or
10 5 people, preferably many more.
11
122. Try to release a few ALPHA test versions to the net. Announce
13 them onto the kernel channel and await results. This is especially
14 important for device drivers, because often that's the only way
15 you will find things like the fact version 3 firmware needs
16 a magic fix you didn't know about, or some clown changed the
17 chips on a board and not its name. (Don't laugh! Look at the
18 SMC etherpower for that.)
19
203. Make sure your changes compile correctly in multiple
21 configurations. In particular check that changes work both as a
22 module and built into the kernel.
23
244. When you are happy with a change make it generally available for
25 testing and await feedback.
26
275. Make a patch available to the relevant maintainer in the list. Use
28 'diff -u' to make the patch easy to merge. Be prepared to get your
29 changes sent back with seemingly silly requests about formatting
30 and variable names. These aren't as silly as they seem. One
31 job the maintainers (and especially Linus) do is to keep things
32 looking the same. Sometimes this means that the clever hack in
33 your driver to get around a problem actually needs to become a
Andy Whitcroft0a920b52007-06-01 00:46:48 -070034 generalized kernel feature ready for next time.
35
36 PLEASE check your patch with the automated style checker
Akash Shende6f9e2452015-02-16 15:59:48 -080037 (scripts/checkpatch.pl) to catch trivial style violations.
Andy Whitcroft0a920b52007-06-01 00:46:48 -070038 See Documentation/CodingStyle for guidance here.
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Joe Perchesf70f8732009-06-16 15:34:08 -070040 PLEASE CC: the maintainers and mailing lists that are generated
41 by scripts/get_maintainer.pl. The results returned by the
42 script will be best if you have git installed and are making
43 your changes in a branch derived from Linus' latest git tree.
44 See Documentation/SubmittingPatches for details.
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 PLEASE try to include any credit lines you want added with the
47 patch. It avoids people being missed off by mistake and makes
48 it easier to know who wants adding and who doesn't.
49
50 PLEASE document known bugs. If it doesn't work for everything
51 or does something very odd once a month document it.
52
Alan Coxc9ee1332006-05-20 15:00:12 -070053 PLEASE remember that submissions must be made under the terms
Stephen Hemminger08602d72015-06-03 13:32:02 -070054 of the Linux Foundation certificate of contribution and should
55 include a Signed-off-by: line. The current version of this
56 "Developer's Certificate of Origin" (DCO) is listed in the file
Randy Dunlap45003712007-08-30 23:56:37 -070057 Documentation/SubmittingPatches.
Alan Coxc9ee1332006-05-20 15:00:12 -070058
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596. Make sure you have the right to send any changes you make. If you
60 do changes at work you may find your employer owns the patch
61 not you.
62
Alan Coxc9ee1332006-05-20 15:00:12 -0700637. When sending security related changes or reports to a maintainer
64 please Cc: security@kernel.org, especially if the maintainer
65 does not respond.
66
678. Happy hacking.
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Joe Perchesc7c4fb12009-10-26 16:49:48 -070069Descriptions of section entries:
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Joe Perchesc7c4fb12009-10-26 16:49:48 -070071 P: Person (obsolete)
72 M: Mail patches to: FullName <address@domain>
Paul E. McKenneyeafbaac2014-06-02 09:06:37 -070073 R: Designated reviewer: FullName <address@domain>
74 These reviewers should be CCed on patches.
Joe Perchesc7c4fb12009-10-26 16:49:48 -070075 L: Mailing list that is relevant to this area
76 W: Web-page with status/info
Joe Perches8a6e2532010-03-05 13:43:11 -080077 Q: Patchwork web based patch tracking system site
Joe Perchescea83212014-03-03 15:38:38 -080078 T: SCM tree type and location.
79 Type is one of: git, hg, quilt, stgit, topgit
Joe Perchesc7c4fb12009-10-26 16:49:48 -070080 S: Status, one of the following:
81 Supported: Someone is actually paid to look after this.
82 Maintained: Someone actually looks after it.
83 Odd Fixes: It has a maintainer but they don't have time to do
84 much other than throw the odd patch in. See below..
85 Orphan: No current maintainer [but maybe you could take the
86 role as you write your new code].
87 Obsolete: Old code. Something tagged obsolete generally means
88 it has been replaced by a better system and you
89 should be using that.
90 F: Files and directories with wildcard patterns.
91 A trailing slash includes all files and subdirectory files.
92 F: drivers/net/ all files in and below drivers/net
93 F: drivers/net/* all files in drivers/net, but not below
94 F: */net/* all files in "any top level directory"/net
95 One pattern per line. Multiple F: lines acceptable.
Stephen Warrenbbbe96e2013-04-29 16:17:23 -070096 N: Files and directories with regex patterns.
97 N: [^a-z]tegra all files whose path contains the word tegra
98 One pattern per line. Multiple N: lines acceptable.
Joe Perches6ab88e02014-01-23 15:54:22 -080099 scripts/get_maintainer.pl has different behavior for files that
100 match F: pattern and matches of N: patterns. By default,
101 get_maintainer will not look at git log history when an F: pattern
102 match occurs. When an N: match occurs, git log history is used
103 to also notify the people that have git commit signatures.
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700104 X: Files and directories that are NOT maintained, same rules as F:
105 Files exclusions are tested before file matches.
106 Can be useful for excluding a specific subdirectory, for instance:
107 F: net/
108 X: net/ipv6/
109 matches all files in and below net excluding net/ipv6/
110 K: Keyword perl extended regex pattern to match content in a
Stephen Warrenbbbe96e2013-04-29 16:17:23 -0700111 patch or file. For instance:
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700112 K: of_get_profile
Stephen Warrenbbbe96e2013-04-29 16:17:23 -0700113 matches patches or files that contain "of_get_profile"
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700114 K: \b(printk|pr_(info|err))\b
Stephen Warrenbbbe96e2013-04-29 16:17:23 -0700115 matches patches or files that contain one or more of the words
116 printk, pr_info or pr_err
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700117 One regex pattern per line. Multiple K: lines acceptable.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
119Note: For the hard of thinking, this list is meant to remain in alphabetical
120order. If you could add yourselves to it in alphabetical order that would be
121so much easier [Ed]
122
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700123Maintainers List (try to look for most precise areas first)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700125 -----------------------------------
Joe Perches679655d2009-04-07 20:44:32 -0700126
Steffen Klasserta6d89912007-08-10 14:05:27 -07001273C59X NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700128M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
Steffen Klasserta6d89912007-08-10 14:05:27 -0700129L: netdev@vger.kernel.org
130S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700131F: Documentation/networking/vortex.txt
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700132F: drivers/net/ethernet/3com/3c59x.c
Steffen Klasserta6d89912007-08-10 14:05:27 -0700133
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343CR990 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700135M: David Dillow <dave@thedillows.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700136L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137S: Maintained
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700138F: drivers/net/ethernet/3com/typhoon*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
adam radfordc4de0ce2010-03-08 12:40:36 -08001403WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
141M: Adam Radford <linuxraid@lsi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142L: linux-scsi@vger.kernel.org
adam radfordc4de0ce2010-03-08 12:40:36 -0800143W: http://www.lsi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144S: Supported
adam radfordc4de0ce2010-03-08 12:40:36 -0800145F: drivers/scsi/3w-*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
14753C700 AND 53C700-66 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700148M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149L: linux-scsi@vger.kernel.org
150S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700151F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Alexander Aring68d96dc2014-07-11 10:24:19 +02001536LOWPAN GENERIC (BTLE/IEEE 802.15.4)
154M: Alexander Aring <alex.aring@gmail.com>
Jukka Rissanen6970c342014-09-15 11:03:36 +0300155M: Jukka Rissanen <jukka.rissanen@linux.intel.com>
Alexander Aring68d96dc2014-07-11 10:24:19 +0200156L: linux-bluetooth@vger.kernel.org
Varka Bhadramebef9c12014-08-08 17:32:45 +0530157L: linux-wpan@vger.kernel.org
Alexander Aring68d96dc2014-07-11 10:24:19 +0200158S: Maintained
159F: net/6lowpan/
Alexander Aring6304f8f2014-07-28 15:16:30 +0200160F: include/net/6lowpan.h
Alexander Aringea9eb692015-08-11 21:44:10 +0200161F: Documentation/networking/6lowpan.txt
Alexander Aring68d96dc2014-07-11 10:24:19 +0200162
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636PACK NETWORK DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -0700164M: Andreas Koensgen <ajk@comnets.uni-bremen.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165L: linux-hams@vger.kernel.org
166S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700167F: drivers/net/hamradio/6pack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698169 10/100/1000 GIGABIT ETHERNET DRIVER
Francois Romieuc8a75b32011-04-17 17:46:40 -0700170M: Realtek linux nic maintainers <nic_swsd@realtek.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700171L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172S: Maintained
Jeff Kirshera8fe65b2011-05-19 23:27:55 -0700173F: drivers/net/ethernet/realtek/r8169.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
1758250/16?50 (AND CLONE UARTS) SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -0800176M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177L: linux-serial@vger.kernel.org
178W: http://serial.sourceforge.net
Greg Kroah-Hartman8ee16a12010-10-06 13:29:44 -0700179S: Maintained
Joe Perches08deed12012-03-23 15:01:57 -0700180T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -0800181F: drivers/tty/serial/8250*
Joe Perches679655d2009-04-07 20:44:32 -0700182F: include/linux/serial_8250.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
1848390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
Ralf Baechle979b6c12005-06-13 14:30:40 -0700185L: netdev@vger.kernel.org
Paul Gortmaker0cf445c2011-01-01 13:28:30 +0000186S: Orphan / Obsolete
Jeff Kirsher644570b2011-04-02 06:20:12 -0700187F: drivers/net/ethernet/8390/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Eric Van Hensbergen67543e52006-03-25 03:07:29 -08001899P FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -0700190M: Eric Van Hensbergen <ericvh@gmail.com>
191M: Ron Minnich <rminnich@sandia.gov>
192M: Latchesar Ionkov <lucho@ionkov.net>
Jim Cromiece00f852006-11-30 04:49:44 +0100193L: v9fs-developer@lists.sourceforge.net
Eric Van Hensbergen27a2a5f2007-07-23 13:06:13 -0500194W: http://swik.net/v9fs
Joe Perches8a6e2532010-03-05 13:43:11 -0800195Q: http://patchwork.kernel.org/project/v9fs-devel/list/
Joe Percheseeba4442009-11-11 14:26:44 -0800196T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
Jim Cromiece00f852006-11-30 04:49:44 +0100197S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700198F: Documentation/filesystems/9p.txt
199F: fs/9p/
Rob Landley2315cb12013-05-28 13:47:58 -0500200F: net/9p/
201F: include/net/9p/
202F: include/uapi/linux/virtio_9p.h
203F: include/trace/events/9p.h
204
Eric Van Hensbergen67543e52006-03-25 03:07:29 -0800205
Antti Palosaari91952bc2012-10-01 12:28:46 -0300206A8293 MEDIA DRIVER
207M: Antti Palosaari <crope@iki.fi>
208L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -0200209W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -0300210W: 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 Gray6ddcf9b2015-11-23 12:54:50 -0500243ACCES 104-IDI-48 GPIO DRIVER
244M: "William Breathitt Gray" <vilhelm.gray@gmail.com>
245L: linux-gpio@vger.kernel.org
246S: Maintained
247F: drivers/gpio/gpio-104-idi-48.c
248
William Breathitt Graye2558982015-10-28 17:24:16 -0400249ACCES 104-IDIO-16 GPIO DRIVER
250M: "William Breathitt Gray" <vilhelm.gray@gmail.com>
251L: linux-gpio@vger.kernel.org
252S: Maintained
253F: drivers/gpio/gpio-104-idio-16.c
254
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255ACENIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700256M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257L: linux-acenic@sunsite.dk
258S: Maintained
Jeff Kirsher531c4f82011-08-13 00:37:14 -0700259F: drivers/net/ethernet/alteon/acenic*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Peter Feuerere86435e2009-06-21 18:53:03 +0200261ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700262M: Peter Feuerer <peter@piie.net>
Matthew Garrettd0944852010-02-11 10:40:13 -0500263L: platform-driver-x86@vger.kernel.org
Joe Perches4fc26e32009-07-29 15:04:22 -0700264W: http://piie.net/?section=acerhdf
265S: Maintained
266F: drivers/platform/x86/acerhdf.c
Peter Feuerere86435e2009-06-21 18:53:03 +0200267
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000268ACER WMI LAPTOP EXTRAS
Lee, Chun-Yi182ae552012-12-14 16:14:24 +0800269M: "Lee, Chun-Yi" <jlee@suse.com>
Matthew Garrettd0944852010-02-11 10:40:13 -0500270L: platform-driver-x86@vger.kernel.org
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000271S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700272F: drivers/platform/x86/acer-wmi.c
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000273
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274ACPI
Joe Perches9c3646d2015-06-25 15:02:00 -0700275M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Rafael J. Wysocki7fb06082014-03-20 03:34:47 +0100276M: Len Brown <lenb@kernel.org>
Len Brown6968e502005-12-30 00:32:49 -0500277L: linux-acpi@vger.kernel.org
Rafael J. Wysocki360818b2013-10-09 01:48:26 +0200278W: https://01.org/linux-acpi
279Q: https://patchwork.kernel.org/project/linux-acpi/list/
280T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
Len Brown8b59a452007-01-08 19:03:28 -0500281S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700282F: drivers/acpi/
283F: drivers/pnp/pnpacpi/
284F: include/linux/acpi.h
Felipe Contreras43368e72009-09-21 17:04:24 -0700285F: include/acpi/
Yaowei Bai3a75ef02015-01-17 15:31:07 +0800286F: Documentation/acpi/
Lv Zheng89ca78a2013-06-20 08:02:44 +0800287F: Documentation/ABI/testing/sysfs-bus-acpi
Bjorn Helgaas15fd8302013-06-26 13:38:37 -0600288F: drivers/pci/*acpi*
289F: drivers/pci/*/*acpi*
290F: drivers/pci/*/*/*acpi*
Yaowei Bai3a75ef02015-01-17 15:31:07 +0800291F: tools/power/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500292
Rafael J. Wysocki37749292013-10-09 01:48:35 +0200293ACPI COMPONENT ARCHITECTURE (ACPICA)
294M: Robert Moore <robert.moore@intel.com>
295M: Lv Zheng <lv.zheng@intel.com>
Joe Perches9c3646d2015-06-25 15:02:00 -0700296M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
Rafael J. Wysocki37749292013-10-09 01:48:35 +0200297L: linux-acpi@vger.kernel.org
298L: devel@acpica.org
299W: https://acpica.org/
300W: https://github.com/acpica/acpica/
301Q: https://patchwork.kernel.org/project/linux-acpi/list/
302T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
303S: Supported
304F: drivers/acpi/acpica/
305F: include/acpi/
Lv Zheng2754c442014-01-15 12:04:24 +0800306F: tools/power/acpi/
Rafael J. Wysocki37749292013-10-09 01:48:35 +0200307
Len Brown8b59a452007-01-08 19:03:28 -0500308ACPI FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700309M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500310L: linux-acpi@vger.kernel.org
Rafael J. Wysocki5ca92bd2013-10-10 23:03:44 +0200311W: https://01.org/linux-acpi
Len Brown8b59a452007-01-08 19:03:28 -0500312S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700313F: drivers/acpi/fan.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Len Brown8b59a452007-01-08 19:03:28 -0500315ACPI THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700316M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500317L: linux-acpi@vger.kernel.org
Rafael J. Wysocki5ca92bd2013-10-10 23:03:44 +0200318W: https://01.org/linux-acpi
Len Brown8b59a452007-01-08 19:03:28 -0500319S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700320F: drivers/acpi/*thermal*
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700321
Len Brown359acec2007-02-10 01:59:24 -0500322ACPI VIDEO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700323M: Zhang Rui <rui.zhang@intel.com>
Len Brown359acec2007-02-10 01:59:24 -0500324L: linux-acpi@vger.kernel.org
Rafael J. Wysocki5ca92bd2013-10-10 23:03:44 +0200325W: https://01.org/linux-acpi
Len Brown359acec2007-02-10 01:59:24 -0500326S: Supported
Dan Carpenter86f98a32015-12-01 11:58:40 +0300327F: drivers/acpi/acpi_video.c
Len Brown359acec2007-02-10 01:59:24 -0500328
Carlos Corbachobff431e2008-02-05 02:17:04 +0000329ACPI WMI DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -0500330L: platform-driver-x86@vger.kernel.org
Carlos Corbacho5b927252011-05-02 09:57:13 +0100331S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700332F: drivers/platform/x86/wmi.c
Carlos Corbachobff431e2008-02-05 02:17:04 +0000333
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100334AD1889 ALSA SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700335M: Thibaut Varene <T-Bone@parisc-linux.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200336W: http://wiki.parisc-linux.org/AD1889
337L: linux-parisc@vger.kernel.org
338S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700339F: sound/pci/ad1889.*
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100340
Michael Hennerich527a1a82010-10-28 11:31:28 +0000341AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
342M: Michael Hennerich <michael.hennerich@analog.com>
Joe Perchesa3f531a2011-03-22 16:34:28 -0700343W: http://wiki.analog.com/AD5254
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800344W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000345S: Supported
346F: drivers/misc/ad525x_dpot.c
347
348AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
349M: Michael Hennerich <michael.hennerich@analog.com>
Joe Perchesa3f531a2011-03-22 16:34:28 -0700350W: http://wiki.analog.com/AD5398
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800351W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000352S: Supported
353F: drivers/regulator/ad5398.c
354
355AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
356M: Michael Hennerich <michael.hennerich@analog.com>
Joe Perchesa3f531a2011-03-22 16:34:28 -0700357W: http://wiki.analog.com/AD7142
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800358W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000359S: Supported
360F: drivers/input/misc/ad714x.c
361
362AD7877 TOUCHSCREEN DRIVER
363M: Michael Hennerich <michael.hennerich@analog.com>
Joe Perchesa3f531a2011-03-22 16:34:28 -0700364W: http://wiki.analog.com/AD7877
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800365W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000366S: Supported
367F: drivers/input/touchscreen/ad7877.c
368
369AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
370M: Michael Hennerich <michael.hennerich@analog.com>
Joe Perchesa3f531a2011-03-22 16:34:28 -0700371W: http://wiki.analog.com/AD7879
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800372W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000373S: Supported
374F: drivers/input/touchscreen/ad7879.c
375
Jiri Kosina1330b0d2011-10-31 17:11:41 -0700376ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
Jiri Kosinae5f64502015-08-09 09:11:34 +0200377M: Jiri Kosina <jikos@kernel.org>
Jiri Kosina1330b0d2011-10-31 17:11:41 -0700378S: Maintained
379
Michael Hennerich7302b9d2015-12-11 11:17:15 +0100380ADF7242 IEEE 802.15.4 RADIO DRIVER
381M: Michael Hennerich <michael.hennerich@analog.com>
382W: https://wiki.analog.com/ADF7242
383W: http://ez.analog.com/community/linux-device-drivers
384L: linux-wpan@vger.kernel.org
385S: Supported
386F: drivers/net/ieee802154/adf7242.c
387F: Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
388
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389ADM1025 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -0700390M: Jean Delvare <jdelvare@suse.com>
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200391L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700393F: Documentation/hwmon/adm1025
394F: drivers/hwmon/adm1025.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
Corentin Labbecae2caa2007-02-14 21:15:04 +0100396ADM1029 HARDWARE MONITOR DRIVER
LABBE Corentinfce8ffa2014-05-08 16:07:45 +0200397M: Corentin Labbe <clabbe.montjoie@gmail.com>
Corentin Labbecae2caa2007-02-14 21:15:04 +0100398L: lm-sensors@lm-sensors.org
399S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700400F: drivers/hwmon/adm1029.c
Corentin Labbecae2caa2007-02-14 21:15:04 +0100401
Michael Wucc0b88c2007-08-31 01:15:25 -0400402ADM8211 WIRELESS DRIVER
Michael Wucc0b88c2007-08-31 01:15:25 -0400403L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +0200404W: http://wireless.kernel.org/
John W. Linvillee71bcbd2010-07-12 16:03:07 -0400405S: Orphan
Kalle Valod4a17302015-11-17 19:49:19 +0200406F: drivers/net/wireless/admtek/adm8211.*
Michael Wucc0b88c2007-08-31 01:15:25 -0400407
Sakari Ailuse8e31622012-11-12 18:14:39 -0300408ADP1653 FLASH CONTROLLER DRIVER
409M: Sakari Ailus <sakari.ailus@iki.fi>
410L: linux-media@vger.kernel.org
411S: Maintained
412F: drivers/media/i2c/adp1653.c
Mauro Carvalho Chehabb5dcee22015-11-10 12:01:44 -0200413F: include/media/i2c/adp1653.h
Sakari Ailuse8e31622012-11-12 18:14:39 -0300414
Michael Hennerich527a1a82010-10-28 11:31:28 +0000415ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
416M: Michael Hennerich <michael.hennerich@analog.com>
Joe Perchesa3f531a2011-03-22 16:34:28 -0700417W: http://wiki.analog.com/ADP5520
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800418W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000419S: Supported
420F: drivers/mfd/adp5520.c
421F: drivers/video/backlight/adp5520_bl.c
Joe Perches45b4e0d2011-03-22 16:34:27 -0700422F: drivers/leds/leds-adp5520.c
Joe Perches77278d52012-01-10 15:08:44 -0800423F: drivers/gpio/gpio-adp5520.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000424F: drivers/input/keyboard/adp5520-keys.c
425
426ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
427M: Michael Hennerich <michael.hennerich@analog.com>
Joe Perchesa3f531a2011-03-22 16:34:28 -0700428W: http://wiki.analog.com/ADP5588
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800429W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000430S: Supported
431F: drivers/input/keyboard/adp5588-keys.c
Joe Perches77278d52012-01-10 15:08:44 -0800432F: drivers/gpio/gpio-adp5588.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000433
434ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
435M: Michael Hennerich <michael.hennerich@analog.com>
Joe Perchesa3f531a2011-03-22 16:34:28 -0700436W: http://wiki.analog.com/ADP8860
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800437W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000438S: Supported
439F: drivers/video/backlight/adp8860_bl.c
440
Dirk Eibach8c22a8f2011-03-21 17:59:36 +0100441ADS1015 HARDWARE MONITOR DRIVER
442M: Dirk Eibach <eibach@gdsys.de>
443L: lm-sensors@lm-sensors.org
444S: Maintained
445F: Documentation/hwmon/ads1015
446F: drivers/hwmon/ads1015.c
447F: include/linux/i2c/ads1015.h
448
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449ADT746X FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700450M: Colin Leroy <colin@colino.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700452F: drivers/macintosh/therm_adt746x.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Jean Delvareb058b852009-12-09 20:36:08 +0100454ADT7475 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -0700455M: Jean Delvare <jdelvare@suse.com>
Jean Delvareb058b852009-12-09 20:36:08 +0100456L: lm-sensors@lm-sensors.org
457S: Maintained
458F: Documentation/hwmon/adt7475
459F: drivers/hwmon/adt7475.c
460
Michael Hennerich527a1a82010-10-28 11:31:28 +0000461ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
462M: Michael Hennerich <michael.hennerich@analog.com>
Joe Perchesa3f531a2011-03-22 16:34:28 -0700463W: http://wiki.analog.com/ADXL345
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800464W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000465S: Supported
466F: drivers/input/misc/adxl34x.c
467
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400468ADVANSYS SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700469M: Matthew Wilcox <matthew@wil.cx>
Jiri Slabyd8130622015-07-17 16:23:20 -0700470M: Hannes Reinecke <hare@suse.com>
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400471L: linux-scsi@vger.kernel.org
472S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700473F: Documentation/scsi/advansys.txt
474F: drivers/scsi/advansys.c
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400475
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476AEDSP16 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700477M: Riccardo Facchetti <fizban@tin.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700479F: sound/oss/aedsp16.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
Antti Palosaari91952bc2012-10-01 12:28:46 -0300481AF9013 MEDIA DRIVER
482M: Antti Palosaari <crope@iki.fi>
483L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -0200484W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -0300485W: http://palosaari.fi/linux/
486Q: http://patchwork.linuxtv.org/project/linux-media/list/
487T: git git://linuxtv.org/anttip/media_tree.git
488S: Maintained
489F: drivers/media/dvb-frontends/af9013*
490
491AF9033 MEDIA DRIVER
492M: Antti Palosaari <crope@iki.fi>
493L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -0200494W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -0300495W: http://palosaari.fi/linux/
496Q: http://patchwork.linuxtv.org/project/linux-media/list/
497T: git git://linuxtv.org/anttip/media_tree.git
498S: Maintained
499F: drivers/media/dvb-frontends/af9033*
500
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501AFFS FILE SYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +0200502L: linux-fsdevel@vger.kernel.org
503S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700504F: Documentation/filesystems/affs.txt
505F: fs/affs/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700507AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
Joe Perches8b58be82009-07-29 15:04:30 -0700508M: David Howells <dhowells@redhat.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700509L: linux-afs@lists.infradead.org
510S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700511F: fs/afs/
512F: include/net/af_rxrpc.h
513F: net/rxrpc/af_rxrpc.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700514
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515AGPGART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700516M: David Airlie <airlied@linux.ie>
Dave Airlie878eaf62014-02-27 14:51:55 +1000517T: git git://people.freedesktop.org/~airlied/linux (part of drm maint)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700519F: drivers/char/agp/
520F: include/linux/agp*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -0800521F: include/uapi/linux/agp*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
523AHA152X SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700524M: "Juergen E. Fischer" <fischer@norbit.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525L: linux-scsi@vger.kernel.org
526S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700527F: drivers/scsi/aha152x*
528F: drivers/scsi/pcmcia/aha152x*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Hannes Reinecke64624d42007-10-19 10:32:29 +0200530AIC7XXX / AIC79XX SCSI DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -0700531M: Hannes Reinecke <hare@suse.com>
Hannes Reinecke64624d42007-10-19 10:32:29 +0200532L: linux-scsi@vger.kernel.org
533S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700534F: drivers/scsi/aic7xxx/
Hannes Reinecke64624d42007-10-19 10:32:29 +0200535
Hans Verkuil450500a2012-11-23 07:11:33 -0300536AIMSLAB FM RADIO RECEIVER DRIVER
537M: Hans Verkuil <hverkuil@xs4all.nl>
538L: linux-media@vger.kernel.org
539T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -0200540W: https://linuxtv.org
Hans Verkuil450500a2012-11-23 07:11:33 -0300541S: Maintained
542F: drivers/media/radio/radio-aimslab*
543
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700544AIO
Joe Perches8b58be82009-07-29 15:04:30 -0700545M: Benjamin LaHaise <bcrl@kvack.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700546L: linux-aio@kvack.org
547S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700548F: fs/aio.c
549F: include/linux/*aio*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700550
Antti Palosaari469d4ec2014-07-17 21:57:14 -0300551AIRSPY MEDIA DRIVER
552M: Antti Palosaari <crope@iki.fi>
553L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -0200554W: https://linuxtv.org
Antti Palosaari469d4ec2014-07-17 21:57:14 -0300555W: http://palosaari.fi/linux/
556Q: http://patchwork.linuxtv.org/project/linux-media/list/
557T: git git://linuxtv.org/anttip/media_tree.git
558S: Maintained
559F: drivers/media/usb/airspy/
560
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561ALCATEL SPEEDTOUCH USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700562M: Duncan Sands <duncan.sands@free.fr>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -0700563L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564W: http://www.linux-usb.org/SpeedTouch/
565S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700566F: drivers/usb/atm/speedtch.c
567F: drivers/usb/atm/usbatm.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Pierre Ossman272f1332007-05-14 21:25:26 +0200569ALCHEMY AU1XX0 MMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700570M: Manuel Lauss <manuel.lauss@gmail.com>
Manuel Lauss08fcb722008-06-09 08:40:35 +0200571S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700572F: drivers/mmc/host/au1xmmc.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200573
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000574ALI1563 I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700575M: Rudolf Marek <r.marek@assembler.cz>
Jean Delvare846557d2008-10-30 15:55:47 +0100576L: linux-i2c@vger.kernel.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000577S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700578F: Documentation/i2c/busses/i2c-ali1563
579F: drivers/i2c/busses/i2c-ali1563.c
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000580
LABBE Corentinbc368792015-07-17 16:39:42 +0200581ALLWINNER SECURITY SYSTEM
582M: Corentin Labbe <clabbe.montjoie@gmail.com>
583L: linux-crypto@vger.kernel.org
584S: Maintained
585F: drivers/crypto/sunxi-ss/
586
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587ALPHA PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700588M: Richard Henderson <rth@twiddle.net>
Joe Perches8b58be82009-07-29 15:04:30 -0700589M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Matt Turnerabd4d602010-01-14 13:15:20 -0500590M: Matt Turner <mattst88@gmail.com>
Joe Perchesc89f4f92012-03-23 15:01:57 -0700591S: Odd Fixes
Cheng Renquana9406692009-03-31 15:23:35 -0700592L: linux-alpha@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -0700593F: arch/alpha/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Ley Foon Tanf62092f2015-02-04 16:32:18 +0800595ALTERA MAILBOX DRIVER
596M: Ley Foon Tan <lftan@altera.com>
597L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
598S: Maintained
599F: drivers/mailbox/mailbox-altera.c
600
Tien Hock Lohc5abbba2015-02-24 01:53:03 -0800601ALTERA PIO DRIVER
602M: Tien Hock Loh <thloh@altera.com>
603L: linux-gpio@vger.kernel.org
604S: Maintained
605F: drivers/gpio/gpio-altera.c
606
Vince Bridgers16b8b922014-03-17 17:52:40 -0500607ALTERA TRIPLE SPEED ETHERNET DRIVER
Vince Bridgersc53fed02014-10-09 10:08:42 -0500608M: Vince Bridgers <vbridger@opensource.altera.com>
Vince Bridgers16b8b922014-03-17 17:52:40 -0500609L: netdev@vger.kernel.org
610L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
611S: Maintained
612F: drivers/net/ethernet/altera/
613
Tobias Klauseradf92512011-02-09 10:58:29 +0100614ALTERA UART/JTAG UART SERIAL DRIVERS
615M: Tobias Klauser <tklauser@distanz.ch>
616L: linux-serial@vger.kernel.org
Tobias Klauser61bd0942014-02-25 15:01:49 -0800617L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
Tobias Klauseradf92512011-02-09 10:58:29 +0100618S: Maintained
619F: drivers/tty/serial/altera_uart.c
620F: drivers/tty/serial/altera_jtaguart.c
621F: include/linux/altera_uart.h
622F: include/linux/altera_jtaguart.h
623
Tom Lendackyf4875e12013-11-12 11:46:57 -0600624AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
625M: Tom Lendacky <thomas.lendacky@amd.com>
626L: linux-crypto@vger.kernel.org
627S: Supported
628F: drivers/crypto/ccp/
629F: include/linux/ccp.h
630
Andreas Herrmann512d1022011-05-25 20:43:31 +0200631AMD FAM15H PROCESSOR POWER MONITORING DRIVER
Huang Rui96818b52015-12-10 11:56:11 +0800632M: Huang Rui <ray.huang@amd.com>
Andreas Herrmann512d1022011-05-25 20:43:31 +0200633L: lm-sensors@lm-sensors.org
Huang Rui96818b52015-12-10 11:56:11 +0800634S: Supported
Andreas Herrmann512d1022011-05-25 20:43:31 +0200635F: Documentation/hwmon/fam15h_power
636F: drivers/hwmon/fam15h_power.c
637
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700638AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
Jordan Crouse67d76712008-05-12 14:02:22 -0700639L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Greg Kroah-Hartmanb4731972015-09-25 20:45:27 -0700640S: Orphan
Joe Perchesfaf2e1d2014-08-08 14:26:18 -0700641F: drivers/usb/gadget/udc/amd5536udc.*
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700642
Jordan Crousef90b8112006-01-06 00:12:14 -0800643AMD GEODE PROCESSOR/CHIPSET SUPPORT
Andres Salomon69006092010-12-21 17:24:23 -0800644P: Andres Salomon <dilinger@queued.net>
Jordan Crouse67d76712008-05-12 14:02:22 -0700645L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Jordan Crousef90b8112006-01-06 00:12:14 -0800646W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
647S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700648F: drivers/char/hw_random/geode-rng.c
649F: drivers/crypto/geode*
Jingoo Han8a61f012014-07-01 15:36:01 +0900650F: drivers/video/fbdev/geode/
Joe Perches679655d2009-04-07 20:44:32 -0700651F: arch/x86/include/asm/geode.h
Jordan Crousef90b8112006-01-06 00:12:14 -0800652
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200653AMD IOMMU (AMD-VI)
Joerg Roedele4110562012-10-23 16:16:23 +0200654M: Joerg Roedel <joro@8bytes.org>
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200655L: iommu@lists.linux-foundation.org
Joerg Roedel525b2332012-03-15 11:56:44 +0100656T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
Joerg Roedele4110562012-10-23 16:16:23 +0200657S: Maintained
Joe Perchesb2c16392011-12-08 20:21:40 -0800658F: drivers/iommu/amd_iommu*.[ch]
659F: include/linux/amd-iommu.h
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200660
Oded Gabbay16423d62014-07-15 13:08:36 +0300661AMD KFD
Oded Gabbay1241e0b2015-05-10 12:37:28 +0300662M: Oded Gabbay <oded.gabbay@gmail.com>
Joe Perches49e7d9d2015-04-15 16:17:31 -0700663L: dri-devel@lists.freedesktop.org
664T: git git://people.freedesktop.org/~gabbayo/linux.git
665S: Supported
Oded Gabbay130e0372015-06-12 21:35:14 +0300666F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
667F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
Oded Gabbay32c22e92015-06-12 21:38:22 +0300668F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
Ben Gozff758a12014-10-07 14:43:07 +0300669F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
Joe Perches49e7d9d2015-04-15 16:17:31 -0700670F: drivers/gpu/drm/amd/amdkfd/
Oded Gabbay04df25d2015-01-05 18:15:45 +0200671F: drivers/gpu/drm/amd/include/cik_structs.h
672F: drivers/gpu/drm/amd/include/kgd_kfd_interface.h
Ben Gozff758a12014-10-07 14:43:07 +0300673F: drivers/gpu/drm/amd/include/vi_structs.h
Joe Perches49e7d9d2015-04-15 16:17:31 -0700674F: drivers/gpu/drm/radeon/radeon_kfd.c
675F: drivers/gpu/drm/radeon/radeon_kfd.h
676F: include/uapi/linux/kfd_ioctl.h
Oded Gabbay16423d62014-07-15 13:08:36 +0300677
Lendacky, Thomas45198c72014-06-05 09:15:24 -0500678AMD XGBE DRIVER
679M: Tom Lendacky <thomas.lendacky@amd.com>
680L: netdev@vger.kernel.org
681S: Supported
682F: drivers/net/ethernet/amd/xgbe/
Lendacky, Thomas45198c72014-06-05 09:15:24 -0500683
Stelian Pop284f42b2006-12-12 18:18:31 +0100684AMS (Apple Motion Sensor) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700685M: Michael Hanselmann <linux-kernel@hansmi.ch>
Stelian Pop284f42b2006-12-12 18:18:31 +0100686S: Supported
Jean Delvarebd5f47e2010-10-28 20:31:50 +0200687F: drivers/macintosh/ams/
Stelian Pop284f42b2006-12-12 18:18:31 +0100688
Tom Tuckerf94b5332006-09-22 15:22:48 -0700689AMSO1100 RNIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700690M: Tom Tucker <tom@opengridcomputing.com>
691M: Steve Wise <swise@opengridcomputing.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -0700692L: linux-rdma@vger.kernel.org
Tom Tuckerf94b5332006-09-22 15:22:48 -0700693S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700694F: drivers/infiniband/hw/amso1100/
Tom Tuckerf94b5332006-09-22 15:22:48 -0700695
Hans Verkuil531fca12012-11-23 06:53:24 -0300696ANALOG DEVICES INC AD9389B DRIVER
697M: Hans Verkuil <hans.verkuil@cisco.com>
698L: linux-media@vger.kernel.org
699S: Maintained
700F: drivers/media/i2c/ad9389b*
701
Lars-Peter Clausen614b4382015-01-23 12:52:34 -0300702ANALOG DEVICES INC ADV7180 DRIVER
703M: Lars-Peter Clausen <lars@metafoo.de>
704L: linux-media@vger.kernel.org
705W: http://ez.analog.com/community/linux-device-drivers
706S: Supported
707F: drivers/media/i2c/adv7180.c
708
Hans Verkuilc40ddfa2013-08-12 10:02:48 -0300709ANALOG DEVICES INC ADV7511 DRIVER
710M: Hans Verkuil <hans.verkuil@cisco.com>
711L: linux-media@vger.kernel.org
712S: Maintained
713F: drivers/media/i2c/adv7511*
714
Hans Verkuil531fca12012-11-23 06:53:24 -0300715ANALOG DEVICES INC ADV7604 DRIVER
716M: Hans Verkuil <hans.verkuil@cisco.com>
717L: linux-media@vger.kernel.org
718S: Maintained
719F: drivers/media/i2c/adv7604*
720
Hans Verkuilc40ddfa2013-08-12 10:02:48 -0300721ANALOG DEVICES INC ADV7842 DRIVER
722M: Hans Verkuil <hans.verkuil@cisco.com>
723L: linux-media@vger.kernel.org
724S: Maintained
725F: drivers/media/i2c/adv7842*
726
Michael Hennerich527a1a82010-10-28 11:31:28 +0000727ANALOG DEVICES INC ASOC CODEC DRIVERS
Lars-Peter Clausen535bd162011-10-17 20:33:05 +0200728M: Lars-Peter Clausen <lars@metafoo.de>
Michael Hennerich527a1a82010-10-28 11:31:28 +0000729L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perchesa3f531a2011-03-22 16:34:28 -0700730W: http://wiki.analog.com/
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800731W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000732S: Supported
Mark Brown39c9d192011-06-17 11:22:27 +0100733F: sound/soc/codecs/adau*
Lars-Peter Clausencc526882011-06-27 17:04:01 +0200734F: sound/soc/codecs/adav*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000735F: sound/soc/codecs/ad1*
Mark Brownae48f5e2013-08-07 18:01:08 +0100736F: sound/soc/codecs/ad7*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000737F: sound/soc/codecs/ssm*
Lars-Peter Clausen40216ce2011-11-28 09:44:17 +0100738F: sound/soc/codecs/sigmadsp.*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000739
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400740ANALOG DEVICES INC ASOC DRIVERS
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -0700741L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400742L: alsa-devel@alsa-project.org (moderated for non-subscribers)
743W: http://blackfin.uclinux.org/
744S: Supported
745F: sound/soc/blackfin/*
Rob Herring7d1f9012014-12-26 13:47:30 -0600746
Lars-Peter Clausen4ce72ab2014-08-18 09:08:00 +0100747ANALOG DEVICES INC IIO DRIVERS
748M: Lars-Peter Clausen <lars@metafoo.de>
749M: Michael Hennerich <Michael.Hennerich@analog.com>
750W: http://wiki.analog.com/
751W: http://ez.analog.com/community/linux-device-drivers
752S: Supported
753F: drivers/iio/*/ad*
754X: drivers/iio/*/adjd*
755F: drivers/staging/iio/*/ad*
756F: staging/iio/trigger/iio-trig-bfin-timer.c
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400757
Lars-Peter Clausen0e3b67b2015-08-20 17:39:13 +0200758ANALOG DEVICES INC DMA DRIVERS
759M: Lars-Peter Clausen <lars@metafoo.de>
760W: http://ez.analog.com/community/linux-device-drivers
761S: Supported
762F: drivers/dma/dma-axi-dmac.c
763
Greg KH41c9e952015-01-18 16:33:24 +0900764ANDROID DRIVERS
765M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Baruch Siach27682402015-03-18 21:29:10 +0200766M: Arve Hjønnevåg <arve@android.com>
Greg KH41c9e952015-01-18 16:33:24 +0900767M: Riley Andrews <riandrews@android.com>
Lee Campbell0e4a5662015-05-24 14:47:38 -0700768T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg KH41c9e952015-01-18 16:33:24 +0900769L: devel@driverdev.osuosl.org
770S: Supported
771F: drivers/android/
772F: drivers/staging/android/
773
Johannes Berg42269062006-07-25 16:15:50 +0200774AOA (Apple Onboard Audio) ALSA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700775M: Johannes Berg <johannes@sipsolutions.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +1000776L: linuxppc-dev@lists.ozlabs.org
Joe Perches93711662009-06-16 15:34:07 -0700777L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Johannes Berg42269062006-07-25 16:15:50 +0200778S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700779F: sound/aoa/
Johannes Berg42269062006-07-25 16:15:50 +0200780
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781APM DRIVER
Jiri Kosinae5f64502015-08-09 09:11:34 +0200782M: Jiri Kosina <jikos@kernel.org>
Jiri Kosina81024fc2011-05-04 13:41:31 +0200783S: Odd fixes
Fengguang Wu9f273c22016-01-20 15:03:25 -0800784T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
Joe Perches679655d2009-04-07 20:44:32 -0700785F: arch/x86/kernel/apm_32.c
786F: include/linux/apm_bios.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -0800787F: include/uapi/linux/apm_bios.h
Jiri Kosina81024fc2011-05-04 13:41:31 +0200788F: drivers/char/apm-emulation.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700790APPLE BCM5974 MULTITOUCH DRIVER
Henrik Rydberg75dd1122015-01-08 14:32:21 -0800791M: Henrik Rydberg <rydberg@bitmath.org>
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700792L: linux-input@vger.kernel.org
Henrik Rydberg75dd1122015-01-08 14:32:21 -0800793S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -0700794F: drivers/input/mouse/bcm5974.c
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700795
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700796APPLE SMC DRIVER
Henrik Rydberg75dd1122015-01-08 14:32:21 -0800797M: Henrik Rydberg <rydberg@bitmath.org>
Henrik Rydbergd618540f2010-04-14 16:14:11 +0200798L: lm-sensors@lm-sensors.org
Henrik Rydberg75dd1122015-01-08 14:32:21 -0800799S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -0700800F: drivers/hwmon/applesmc.c
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700801
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802APPLETALK NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -0700803M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700805F: drivers/net/appletalk/
806F: net/appletalk/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
Duc Dang21c75322015-08-12 17:01:12 -0700808APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
809M: Duc Dang <dhdang@apm.com>
810S: Supported
811F: arch/arm64/boot/dts/apm/
812
Iyappan Subramanian24299502014-08-07 15:14:25 -0700813APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
814M: Iyappan Subramanian <isubramanian@apm.com>
815M: Keyur Chudgar <kchudgar@apm.com>
Iyappan Subramanian24299502014-08-07 15:14:25 -0700816S: Supported
817F: drivers/net/ethernet/apm/xgene/
818F: Documentation/devicetree/bindings/net/apm-xgene-enet.txt
819
Laurent Pinchart62a37dc2013-08-09 08:46:11 -0300820APTINA CAMERA SENSOR PLL
821M: Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
822L: linux-media@vger.kernel.org
823S: Maintained
824F: drivers/media/i2c/aptina-pll.*
825
Jaya Kumar1154ea72005-06-21 17:17:04 -0700826ARC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700827M: Jaya Kumar <jayalk@intworks.biz>
Jaya Kumar1154ea72005-06-21 17:17:04 -0700828S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +0900829F: drivers/video/fbdev/arcfb.c
830F: drivers/video/fbdev/core/fb_defio.c
Jaya Kumar1154ea72005-06-21 17:17:04 -0700831
Michael Grzeschikc38f6ac2015-09-17 15:26:16 +0200832ARCNET NETWORK LAYER
833M: Michael Grzeschik <m.grzeschik@pengutronix.de>
834L: netdev@vger.kernel.org
835S: Maintained
836F: drivers/net/arcnet/
837F: include/uapi/linux/if_arcnet.h
838
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839ARM MFM AND FLOPPY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -0700840M: Ian Molton <spyro@f2s.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700842F: arch/arm/lib/floppydma.S
843F: arch/arm/include/asm/floppy.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
Will Deacon6f965212011-07-01 14:38:53 +0100845ARM PMU PROFILING AND DEBUGGING
846M: Will Deacon <will.deacon@arm.com>
Mark Rutland70e238d2015-10-02 10:55:08 +0100847R: Mark Rutland <mark.rutland@arm.com>
Will Deacon6f965212011-07-01 14:38:53 +0100848S: Maintained
Mark Rutlanddd06a842015-10-02 10:55:07 +0100849F: arch/arm*/kernel/perf_*
Will Deacon6f965212011-07-01 14:38:53 +0100850F: arch/arm/oprofile/common.c
Mark Rutlanddd06a842015-10-02 10:55:07 +0100851F: arch/arm*/kernel/hw_breakpoint.c
852F: arch/arm*/include/asm/hw_breakpoint.h
853F: arch/arm*/include/asm/perf_event.h
Mark Rutlandfa8ad782015-07-06 12:23:53 +0100854F: drivers/perf/arm_pmu.c
855F: include/linux/perf/arm_pmu.h
Will Deacon6f965212011-07-01 14:38:53 +0100856
Russell Kingd4275352009-04-16 14:05:27 +0100857ARM PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700858M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700859L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100860W: http://www.arm.linux.org.uk/
861S: Maintained
862F: arch/arm/
863
Stephen Boydd323c2432012-10-24 11:00:29 -0700864ARM SUB-ARCHITECTURES
865L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Zhang Yanfei56ca9d92013-01-11 14:32:04 -0800866S: Maintained
Stephen Boydd323c2432012-10-24 11:00:29 -0700867F: arch/arm/mach-*/
868F: arch/arm/plat-*/
869T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
870
Russell Kingcefbf4e2009-11-22 17:40:28 +0000871ARM PRIMECELL AACI PL041 DRIVER
872M: Russell King <linux@arm.linux.org.uk>
873S: Maintained
874F: sound/arm/aaci.*
875
876ARM PRIMECELL CLCD PL110 DRIVER
877M: Russell King <linux@arm.linux.org.uk>
878S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +0900879F: drivers/video/fbdev/amba-clcd.*
Russell Kingcefbf4e2009-11-22 17:40:28 +0000880
881ARM PRIMECELL KMI PL050 DRIVER
882M: Russell King <linux@arm.linux.org.uk>
883S: Maintained
884F: drivers/input/serio/ambakmi.*
885F: include/linux/amba/kmi.h
886
Russell King2761f5c2007-05-24 06:56:08 +0200887ARM PRIMECELL MMCI PL180/1 DRIVER
Russell King08a5c9a2013-02-11 15:28:51 +0000888M: Russell King <linux@arm.linux.org.uk>
889S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700890F: drivers/mmc/host/mmci.*
Russell King2f748aa2013-02-11 15:28:05 +0000891F: include/linux/amba/mmci.h
Russell King2761f5c2007-05-24 06:56:08 +0200892
Russell King1b4304e2013-02-11 15:26:27 +0000893ARM PRIMECELL UART PL010 AND PL011 DRIVERS
894M: Russell King <linux@arm.linux.org.uk>
895S: Maintained
896F: drivers/tty/serial/amba-pl01*.c
897F: include/linux/amba/serial.h
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800898
Russell Kingcefbf4e2009-11-22 17:40:28 +0000899ARM PRIMECELL BUS SUPPORT
900M: Russell King <linux@arm.linux.org.uk>
901S: Maintained
902F: drivers/amba/
903F: include/linux/amba/bus.h
904
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800905ARM/ADS SPHERE MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700906M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700907L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800908S: Maintained
909
Sergey Lapin9c784f92008-08-03 02:29:48 +0100910ARM/AFEB9260 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700911M: Sergey Lapin <slapin@ossfans.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700912L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sergey Lapin9c784f92008-08-03 02:29:48 +0100913S: Maintained
914
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800915ARM/AJECO 1ARM MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700916M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700917L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800918S: Maintained
919
Maxime Ripard5c6dcd72015-10-07 18:39:40 +0100920ARM/Allwinner sunXi SoC support
Maxime Ripard1b106692012-11-15 21:51:26 +0100921M: Maxime Ripard <maxime.ripard@free-electrons.com>
Maxime Ripard5c6dcd72015-10-07 18:39:40 +0100922M: Chen-Yu Tsai <wens@csie.org>
Maxime Ripard1b106692012-11-15 21:51:26 +0100923L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
924S: Maintained
Maxime Ripard5c6dcd72015-10-07 18:39:40 +0100925N: sun[x456789]i
Maxime Ripard60b0f382013-12-30 16:03:33 +0100926
927ARM/Allwinner SoC Clock Support
928M: Emilio López <emilio@elopez.com.ar>
929S: Maintained
930F: drivers/clk/sunxi/
Maxime Ripard1b106692012-11-15 21:51:26 +0100931
Carlo Caione7c1e3872014-09-12 20:18:31 +0200932ARM/Amlogic MesonX SoC support
933M: Carlo Caione <carlo@caione.org>
934L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
935S: Maintained
Beniamino Galvani12ddbad2014-11-18 17:22:34 -0300936F: drivers/media/rc/meson-ir.c
Carlo Caione7c1e3872014-09-12 20:18:31 +0200937N: meson[x68]
938
Tsahee Zidenbergeff506f2015-03-12 13:53:25 +0200939ARM/Annapurna Labs ALPINE ARCHITECTURE
940M: Tsahee Zidenberg <tsahee@annapurnalabs.com>
941S: Maintained
942F: arch/arm/mach-alpine/
943
Alexandre Belloni8dca5ce2015-09-02 18:24:21 +0200944ARM/ATMEL AT91RM9200, AT91SAM9 AND SAMA5 SOC SUPPORT
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800945M: Nicolas Ferre <nicolas.ferre@atmel.com>
Nicolas Ferred68b35f2015-04-29 11:57:18 +0200946M: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800947M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700948L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800949W: http://www.linux4sam.org
Fengguang Wu9f273c22016-01-20 15:03:25 -0800950T: git git://git.kernel.org/pub/scm/linux/kernel/git/nferre/linux-at91.git
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800951S: Supported
952F: arch/arm/mach-at91/
Alexandre Bellonif0a0a582014-11-07 21:58:21 +0100953F: include/soc/at91/
Mark Brown70e389c2013-10-16 12:04:07 +0100954F: arch/arm/boot/dts/at91*.dts
955F: arch/arm/boot/dts/at91*.dtsi
956F: arch/arm/boot/dts/sama*.dts
957F: arch/arm/boot/dts/sama*.dtsi
Alexandre Belloni5f58c972015-01-12 19:42:14 +0100958F: arch/arm/include/debug/at91.S
Andrew Victord4a89c72006-12-04 13:56:21 +0100959
Boris BREZILLON6e05dd42014-05-27 13:39:28 +0200960ARM/ATMEL AT91 Clock Support
961M: Boris Brezillon <boris.brezillon@free-electrons.com>
962S: Maintained
963F: drivers/clk/at91
964
Rob Herring986cf2e2011-06-22 11:28:53 -0500965ARM/CALXEDA HIGHBANK ARCHITECTURE
Rob Herring5d3ad8a2013-12-03 10:20:16 -0600966M: Rob Herring <robh@kernel.org>
Rob Herring986cf2e2011-06-22 11:28:53 -0500967L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
968S: Maintained
969F: arch/arm/mach-highbank/
970
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300971ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
Krzysztof Hałasa5529c2c2014-09-30 10:32:58 +0200972M: Krzysztof Halasa <khalasa@piap.pl>
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300973S: Maintained
974F: arch/arm/mach-cns3xxx/
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300975
Sunil Goutham4863dea2015-05-26 19:20:15 -0700976ARM/CAVIUM THUNDER NETWORK DRIVER
977M: Sunil Goutham <sgoutham@cavium.com>
978M: Robert Richter <rric@kernel.org>
979L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
980S: Supported
Aleksey Makarov322e5cc2015-08-30 12:29:09 +0300981F: drivers/net/ethernet/cavium/thunder/
Sunil Goutham4863dea2015-05-26 19:20:15 -0700982
Alexander Shiyan386ab512012-11-17 17:57:24 +0400983ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
984M: Alexander Shiyan <shc_work@mail.ru>
985L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
986S: Odd Fixes
Alexander Shiyanb8ba3872014-02-15 12:05:33 +0400987N: clps711x
Alexander Shiyan386ab512012-11-17 17:57:24 +0400988
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800989ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100990M: Hartley Sweeten <hsweeten@visionengravers.com>
Ryan Mallon1c5454e2011-06-15 14:45:36 +1000991M: Ryan Mallon <rmallon@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700992L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800993S: Maintained
Hartley Sweetend19d3662009-07-10 23:02:59 +0100994F: arch/arm/mach-ep93xx/
995F: arch/arm/mach-ep93xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800996
997ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700998M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700999L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001000S: Maintained
1001
Russell Kingd4275352009-04-16 14:05:27 +01001002ARM/CLKDEV SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001003M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001004L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches37417042012-03-23 15:01:58 -07001005S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01001006F: arch/arm/include/asm/clkdev.h
Joe Perches4fa26512011-03-22 16:34:31 -07001007F: drivers/clk/clkdev.c
Russell Kingd4275352009-04-16 14:05:27 +01001008
Mike Rapoportd48134e72008-08-20 09:03:26 +01001009ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001010M: Mike Rapoport <mike@compulab.co.il>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001011L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +01001012S: Maintained
1013
Hubert Feurstein94150092009-10-07 08:36:07 +01001014ARM/CONTEC MICRO9 MACHINE SUPPORT
1015M: Hubert Feurstein <hubert.feurstein@contec.at>
1016S: Maintained
1017F: arch/arm/mach-ep93xx/micro9.c
1018
Pratik Patela06ae862014-11-03 11:07:35 -07001019ARM/CORESIGHT FRAMEWORK AND DRIVERS
1020M: Mathieu Poirier <mathieu.poirier@linaro.org>
1021L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1022S: Maintained
Mathieu Poirier01081f52015-03-30 14:13:41 -06001023F: drivers/hwtracing/coresight/*
Pratik Patela06ae862014-11-03 11:07:35 -07001024F: Documentation/trace/coresight.txt
1025F: Documentation/devicetree/bindings/arm/coresight.txt
Mathieu Poirier7a25ec82014-11-10 14:06:42 -07001026F: Documentation/ABI/testing/sysfs-bus-coresight-devices-*
Pratik Patela06ae862014-11-03 11:07:35 -07001027
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028ARM/CORGI MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001029M: Richard Purdie <rpurdie@rpsys.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030S: Maintained
1031
Paulius Zaleckas881a95f2009-03-26 10:06:27 +02001032ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
Hans Ulli Kroll162500b2010-05-13 06:43:59 +01001033M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001034L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Krollb60e23b2015-05-07 19:29:03 +02001035T: git git://github.com/ulli-kroll/linux.git
Hans Ulli Kroll162500b2010-05-13 06:43:59 +01001036S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +03001037F: arch/arm/mach-gemini/
Hans Ulli Kroll98a9bb52015-05-20 17:49:31 +02001038F: drivers/rtc/rtc-gemini.c
Paulius Zaleckas881a95f2009-03-26 10:06:27 +02001039
Barry Songa990cbd2011-07-12 21:44:10 +08001040ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
Barry Song5abf58b2013-09-29 22:45:10 +08001041M: Barry Song <baohua@kernel.org>
Barry Songa990cbd2011-07-12 21:44:10 +08001042L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Barry Song85529d12013-06-17 09:44:26 +08001043T: git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
Barry Songa990cbd2011-07-12 21:44:10 +08001044S: Maintained
1045F: arch/arm/mach-prima2/
Joe Perches4a9c44f2014-08-08 14:25:03 -07001046F: drivers/clk/sirf/
Barry Song05f30e82013-09-29 22:45:09 +08001047F: drivers/clocksource/timer-prima2.c
Barry Song5833ac92015-01-12 00:04:43 +08001048F: drivers/clocksource/timer-atlas7.c
Barry Songf8505ef2014-01-03 11:24:13 +08001049N: [^a-z]sirf
Barry Songa990cbd2011-07-12 21:44:10 +08001050
Baruch Siachc9d862c2015-04-28 13:59:43 +03001051ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1052M: Baruch Siach <baruch@tkos.co.il>
1053L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1054S: Maintained
Baruch Siachcde137a2015-07-06 14:41:46 +03001055F: arch/arm/boot/dts/cx92755*
Baruch Siachc9d862c2015-04-28 13:59:43 +03001056N: digicolor
1057
Russell Kingd4275352009-04-16 14:05:27 +01001058ARM/EBSA110 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001059M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001060L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001061W: http://www.arm.linux.org.uk/
1062S: Maintained
1063F: arch/arm/mach-ebsa110/
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07001064F: drivers/net/ethernet/amd/am79c961a.*
Russell Kingd4275352009-04-16 14:05:27 +01001065
Uwe Kleine-König4721f3c2013-12-20 21:21:59 +01001066ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1067M: Uwe Kleine-König <kernel@pengutronix.de>
1068L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1069S: Maintained
1070N: efm32
1071
Russell Kinga9da4f72008-07-12 21:42:04 +01001072ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
Joe Perches8b58be82009-07-29 15:04:30 -07001073M: Daniel Ribeiro <drwyrm@gmail.com>
1074M: Stefan Schmidt <stefan@openezx.org>
1075M: Harald Welte <laforge@openezx.org>
Paul Bolled66f18862011-04-06 22:34:00 +02001076L: openezx-devel@lists.openezx.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +01001077W: http://www.openezx.org/
1078S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +02001079T: topgit git://git.openezx.org/openezx.git
1080F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +01001081
Paulius Zaleckas6a915af2009-03-25 13:10:20 +02001082ARM/FARADAY FA526 PORT
Hans Ulli Kroll162500b2010-05-13 06:43:59 +01001083M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001084L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +01001085S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -07001086T: git git://git.berlios.de/gemini-board
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +03001087F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +02001088
Russell Kingd4275352009-04-16 14:05:27 +01001089ARM/FOOTBRIDGE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001090M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001091L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001092W: http://www.arm.linux.org.uk/
1093S: Maintained
1094F: arch/arm/include/asm/hardware/dec21285.h
1095F: arch/arm/mach-footbridge/
1096
Sascha Hauer86183a52008-07-24 23:50:35 +02001097ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
Shawn Guo7609ea22015-06-03 19:34:10 +08001098M: Shawn Guo <shawnguo@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07001099M: Sascha Hauer <kernel@pengutronix.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001100L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer86183a52008-07-24 23:50:35 +02001101S: Maintained
Shawn Guof1c12832014-03-11 22:57:53 +08001102T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
Shawn Guo2a82f952013-12-10 22:19:21 +08001103F: arch/arm/mach-imx/
Shawn Guoce515a62014-07-02 15:37:10 +08001104F: arch/arm/mach-mxs/
Shawn Guo2a82f952013-12-10 22:19:21 +08001105F: arch/arm/boot/dts/imx*
1106F: arch/arm/configs/imx*_defconfig
Shawn Guocf209682015-04-26 21:58:12 +08001107F: drivers/clk/imx/
1108F: include/soc/imx/
Shawn Guo8bcb9762011-10-07 22:24:18 +08001109
Stefan Agner142109d2015-03-02 00:09:02 +01001110ARM/FREESCALE VYBRID ARM ARCHITECTURE
Shawn Guo7609ea22015-06-03 19:34:10 +08001111M: Shawn Guo <shawnguo@kernel.org>
Stefan Agner142109d2015-03-02 00:09:02 +01001112M: Sascha Hauer <kernel@pengutronix.de>
1113R: Stefan Agner <stefan@agner.ch>
1114L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1115S: Maintained
1116T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1117F: arch/arm/mach-imx/*vf610*
1118F: arch/arm/boot/dts/vf*
1119
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001120ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001121M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001122L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001123S: Maintained
1124
Jaya Kumar90b8fc32008-03-15 05:11:07 +01001125ARM/GUMSTIX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001126M: Steve Sakoman <sakoman@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001127L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jaya Kumar90b8fc32008-03-15 05:11:07 +01001128S: Maintained
1129
Philipp Zabelef47d5f2009-05-28 07:07:47 +02001130ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001131M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel12a93f32012-02-26 12:40:19 +01001132M: Paul Parsons <lost.distance@yahoo.com>
1133L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Philipp Zabelef47d5f2009-05-28 07:07:47 +02001134S: Maintained
1135F: arch/arm/mach-pxa/hx4700.c
1136F: arch/arm/mach-pxa/include/mach/hx4700.h
Philipp Zabel12a93f32012-02-26 12:40:19 +01001137F: sound/soc/pxa/hx4700.c
Philipp Zabelef47d5f2009-05-28 07:07:47 +02001138
Wei Xu4dfad062014-07-07 10:41:53 +08001139ARM/HISILICON SOC SUPPORT
1140M: Wei Xu <xuwei5@hisilicon.com>
1141L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1142W: http://www.hisilicon.com
1143S: Supported
1144T: git git://github.com/hisilicon/linux-hisi.git
1145F: arch/arm/mach-hisi/
1146
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +01001147ARM/HP JORNADA 7XX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001148M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02001149W: www.jlime.com
1150S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07001151T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1152F: arch/arm/mach-sa1100/jornada720.c
1153F: arch/arm/mach-sa1100/include/mach/jornada720.h
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +01001154
Javier Martinez Canillas5e767ab2012-10-08 10:47:34 +02001155ARM/IGEP MACHINE SUPPORT
1156M: Enric Balletbo i Serra <eballetbo@gmail.com>
1157M: Javier Martinez Canillas <javier@dowhile0.org>
1158L: linux-omap@vger.kernel.org
1159L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1160S: Maintained
Javier Martinez Canillas06ff74f2013-10-18 17:37:53 +02001161F: arch/arm/boot/dts/omap3-igep*
Javier Martinez Canillas5e767ab2012-10-08 10:47:34 +02001162
Marek Vasut403d2972010-05-22 00:29:39 +02001163ARM/INCOME PXA270 SUPPORT
1164M: Marek Vasut <marek.vasut@gmail.com>
1165L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1166S: Maintained
Joe Perchesec154082010-10-26 14:22:59 -07001167F: arch/arm/mach-pxa/colibri-pxa270-income.c
Marek Vasut403d2972010-05-22 00:29:39 +02001168
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001169ARM/INTEL IOP32X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001170M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001171L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -07001172S: Maintained
Dan Williamse2bdb172007-01-02 18:32:37 +01001173
1174ARM/INTEL IOP33X ARM ARCHITECTURE
Joe Perchesefc03ec2009-09-21 17:04:27 -07001175L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williams08223d82014-08-19 06:07:56 -07001176S: Orphan
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001177
1178ARM/INTEL IOP13XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001179M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001180L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -07001181S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001182
1183ARM/INTEL IQ81342EX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001184M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001185L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -07001186S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001187
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001188ARM/INTEL IXDP2850 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001189M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001190L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001191S: Maintained
1192
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +02001193ARM/INTEL IXP4XX ARM ARCHITECTURE
1194M: Imre Kaloz <kaloz@openwrt.org>
Krzysztof Hałasa5529c2c2014-09-30 10:32:58 +02001195M: Krzysztof Halasa <khalasa@piap.pl>
Russell Kingbaea7b92009-09-24 21:22:33 +01001196L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +02001197S: Maintained
1198F: arch/arm/mach-ixp4xx/
1199
Joe Perches838553c2010-10-26 14:22:59 -07001200ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
Jonathan Cameron7f49a7f2009-10-15 16:39:30 +01001201M: Jonathan Cameron <jic23@cam.ac.uk>
1202L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1203S: Maintained
1204F: arch/arm/mach-pxa/stargate2.c
1205F: drivers/pcmcia/pxa2xx_stargate2.c
1206
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001207ARM/INTEL XSC3 (MANZANO) ARM CORE
Joe Perches8b58be82009-07-29 15:04:30 -07001208M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001209L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -07001210S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001211
1212ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001213M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001214L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001215S: Maintained
1216
Santosh Shilimkar1154f852013-08-05 14:11:14 -04001217ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
Santosh Shilimkar97215802014-10-13 14:16:28 -04001218M: Santosh Shilimkar <ssantosh@kernel.org>
Santosh Shilimkar1154f852013-08-05 14:11:14 -04001219L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1220S: Maintained
1221F: arch/arm/mach-keystone/
Santosh Shilimkar317929c2013-11-23 17:31:27 -05001222T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
Santosh Shilimkar1154f852013-08-05 14:11:14 -04001223
Santosh Shilimkarbc6aa562014-06-22 16:06:22 -04001224ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
Santosh Shilimkar97215802014-10-13 14:16:28 -04001225M: Santosh Shilimkar <ssantosh@kernel.org>
Santosh Shilimkarbc6aa562014-06-22 16:06:22 -04001226L: linux-kernel@vger.kernel.org
1227S: Maintained
1228F: drivers/clk/keystone/
1229
1230ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
Santosh Shilimkar97215802014-10-13 14:16:28 -04001231M: Santosh Shilimkar <ssantosh@kernel.org>
Santosh Shilimkarbc6aa562014-06-22 16:06:22 -04001232L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1233L: linux-kernel@vger.kernel.org
1234S: Maintained
1235F: drivers/clocksource/timer-keystone.c
1236
1237ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
Santosh Shilimkar97215802014-10-13 14:16:28 -04001238M: Santosh Shilimkar <ssantosh@kernel.org>
Santosh Shilimkarbc6aa562014-06-22 16:06:22 -04001239L: linux-kernel@vger.kernel.org
1240S: Maintained
1241F: drivers/power/reset/keystone-reset.c
1242
1243ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
Santosh Shilimkar97215802014-10-13 14:16:28 -04001244M: Santosh Shilimkar <ssantosh@kernel.org>
Santosh Shilimkarbc6aa562014-06-22 16:06:22 -04001245L: linux-kernel@vger.kernel.org
1246S: Maintained
1247F: drivers/memory/*emif*
1248
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001249ARM/LOGICPD PXA270 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001250M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001251L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001252S: Maintained
1253
Joachim Eastwood31438752015-05-19 20:59:21 +02001254ARM/LPC18XX ARCHITECTURE
1255M: Joachim Eastwood <manabian@gmail.com>
1256L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1257S: Maintained
Joachim Eastwood19c1c322015-10-11 22:40:42 +02001258F: arch/arm/boot/dts/lpc43*
1259F: drivers/clk/nxp/clk-lpc18xx*
1260F: drivers/clocksource/time-lpc32xx.c
1261F: drivers/i2c/busses/i2c-lpc2k.c
1262F: drivers/memory/pl172.c
1263F: drivers/mtd/spi-nor/nxp-spifi.c
1264F: drivers/rtc/rtc-lpc24xx.c
Joachim Eastwood31438752015-05-19 20:59:21 +02001265N: lpc18xx
1266
Philipp Zabel3b8861712008-07-09 21:27:15 +01001267ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001268M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +01001269S: Maintained
1270
Gregory CLEMENT31c17ac2015-05-15 14:25:43 +02001271ARM/Marvell Kirkwood and Armada 370, 375, 38x, XP SOC support
Thomas Petazzoni75f41272012-06-01 18:50:52 +02001272M: Jason Cooper <jason@lakedaemon.net>
1273M: Andrew Lunn <andrew@lunn.ch>
1274M: Gregory Clement <gregory.clement@free-electrons.com>
Jason Cooperdcb71502013-10-14 18:32:21 +00001275M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Thomas Petazzoni75f41272012-06-01 18:50:52 +02001276L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1277S: Maintained
1278F: arch/arm/mach-mvebu/
Joe Perches59ec9672015-03-25 15:55:17 -07001279F: drivers/rtc/rtc-armada38x.c
Gregory CLEMENT31c17ac2015-05-15 14:25:43 +02001280F: arch/arm/boot/dts/armada*
1281F: arch/arm/boot/dts/kirkwood*
1282
Thomas Petazzoni75f41272012-06-01 18:50:52 +02001283
Sebastian Hesselbarth40f49782013-10-08 12:52:30 +02001284ARM/Marvell Berlin SoC support
1285M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1286L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1287S: Maintained
1288F: arch/arm/mach-berlin/
Gregory CLEMENT31c17ac2015-05-15 14:25:43 +02001289F: arch/arm/boot/dts/berlin*
1290
Sebastian Hesselbarth40f49782013-10-08 12:52:30 +02001291
Andrew Lunn4cfab572014-07-16 22:32:51 +02001292ARM/Marvell Dove/MV78xx0/Orion SOC support
Nicolas Pitre4f1312b2012-04-30 13:44:48 -04001293M: Jason Cooper <jason@lakedaemon.net>
1294M: Andrew Lunn <andrew@lunn.ch>
Jason Cooperdcb71502013-10-14 18:32:21 +00001295M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Gregory CLEMENTbfda4032015-03-13 14:41:45 +01001296M: Gregory Clement <gregory.clement@free-electrons.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001297L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Pitre4f1312b2012-04-30 13:44:48 -04001298S: Maintained
1299F: arch/arm/mach-dove/
Nicolas Pitre54a246f2009-08-11 23:28:51 -04001300F: arch/arm/mach-mv78xx0/
1301F: arch/arm/mach-orion5x/
1302F: arch/arm/plat-orion/
Gregory CLEMENT31c17ac2015-05-15 14:25:43 +02001303F: arch/arm/boot/dts/dove*
1304F: arch/arm/boot/dts/orion5x*
1305
Nicolas Pitre54a246f2009-08-11 23:28:51 -04001306
Alexander Clouterd69ac132011-04-14 15:22:02 -07001307ARM/Orion SoC/Technologic Systems TS-78xx platform support
1308M: Alexander Clouter <alex@digriz.org.uk>
1309L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1310W: http://www.digriz.org.uk/ts78xx/kernel
1311S: Maintained
1312F: arch/arm/mach-orion5x/ts78xx-*
1313
Eddie Huang607b8fc2015-05-06 15:23:42 +08001314ARM/Mediatek RTC DRIVER
1315M: Eddie Huang <eddie.huang@mediatek.com>
1316L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1317L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1318S: Maintained
1319F: drivers/rtc/rtc-mt6397.c
1320
Matthias Bruggere54951c2014-09-26 11:45:55 +02001321ARM/Mediatek SoC support
1322M: Matthias Brugger <matthias.bgg@gmail.com>
1323L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Matthias Brugger17b199d2015-04-16 12:49:21 -07001324L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
Matthias Bruggere54951c2014-09-26 11:45:55 +02001325S: Maintained
1326F: arch/arm/boot/dts/mt6*
1327F: arch/arm/boot/dts/mt8*
1328F: arch/arm/mach-mediatek/
1329N: mtk
1330K: mediatek
1331
Chunfeng Yun0f8669e2015-10-12 10:41:57 +08001332ARM/Mediatek USB3 PHY DRIVER
1333M: Chunfeng Yun <chunfeng.yun@mediatek.com>
1334L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1335L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1336S: Maintained
1337F: drivers/phy/phy-mt65xx-usb3.c
1338
Arnd Bergmannadcb0792012-09-07 12:21:56 +00001339ARM/MICREL KS8695 ARCHITECTURE
1340M: Greg Ungerer <gerg@uclinux.org>
1341L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches14430812013-09-11 14:23:50 -07001342F: arch/arm/mach-ks8695/
Arnd Bergmannadcb0792012-09-07 12:21:56 +00001343S: Odd Fixes
1344
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +02001345ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001346M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001347L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +02001348F: arch/arm/mach-pxa/mioa701.c
1349S: Maintained
1350
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +01001351ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001352M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +01001353S: Maintained
1354
Alessandro Rubinie0ee9852009-12-02 14:01:03 +01001355ARM/NOMADIK ARCHITECTURE
Joe Perches28b8e8d2010-03-23 13:35:20 -07001356M: Alessandro Rubini <rubini@unipv.it>
Linus Walleije4651a92012-08-06 09:52:52 +02001357M: Linus Walleij <linus.walleij@linaro.org>
Joe Perches28b8e8d2010-03-23 13:35:20 -07001358L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1359S: Maintained
1360F: arch/arm/mach-nomadik/
Joe Perchesecc265f2014-08-08 14:26:20 -07001361F: drivers/pinctrl/nomadik/
Linus Walleij87572882010-12-22 09:18:29 +01001362F: drivers/i2c/busses/i2c-nomadik.c
Linus Walleije4651a92012-08-06 09:52:52 +02001363T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
Alessandro Rubinie0ee9852009-12-02 14:01:03 +01001364
Andy Green9d762952009-05-19 06:41:42 -03001365ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001366M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -03001367L: openmoko-kernel@lists.openmoko.org (subscribers-only)
1368W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
1369S: Supported
1370
Dirk Opfer8459c152005-11-06 14:27:52 +00001371ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001372M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1373M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +00001374S: Maintained
1375
Marek Vasut5d783a22009-07-16 13:26:48 +02001376ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
Joe Perches933d35f2009-10-01 15:43:59 -07001377M: Marek Vasut <marek.vasut@gmail.com>
Marek Vasut75280782009-08-22 00:49:53 +02001378L: linux-arm-kernel@lists.infradead.org
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001379W: http://hackndev.com
1380S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001381F: arch/arm/mach-pxa/include/mach/palmtx.h
1382F: arch/arm/mach-pxa/palmtx.c
1383F: arch/arm/mach-pxa/include/mach/palmt5.h
1384F: arch/arm/mach-pxa/palmt5.c
1385F: arch/arm/mach-pxa/include/mach/palmld.h
1386F: arch/arm/mach-pxa/palmld.c
1387F: arch/arm/mach-pxa/include/mach/palmte2.h
1388F: arch/arm/mach-pxa/palmte2.c
1389F: arch/arm/mach-pxa/include/mach/palmtc.h
1390F: arch/arm/mach-pxa/palmtc.c
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001391
Joe Perchesb57fe922009-12-14 18:00:52 -08001392ARM/PALM TREO SUPPORT
Jiri Slabyd8130622015-07-17 16:23:20 -07001393M: Tomas Cech <sleep_walker@suse.com>
Marek Vasut75280782009-08-22 00:49:53 +02001394L: linux-arm-kernel@lists.infradead.org
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001395W: http://hackndev.com
1396S: Maintained
Joe Perchesb57fe922009-12-14 18:00:52 -08001397F: arch/arm/mach-pxa/include/mach/palmtreo.h
1398F: arch/arm/mach-pxa/palmtreo.c
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001399
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001400ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001401M: Sergey Lapin <slapin@ossfans.org>
Marek Vasut75280782009-08-22 00:49:53 +02001402L: linux-arm-kernel@lists.infradead.org
Joe Perches7d2c86b2009-04-07 20:59:01 -07001403W: http://hackndev.com
1404S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001405F: arch/arm/mach-pxa/include/mach/palmz72.h
1406F: arch/arm/mach-pxa/palmz72.c
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001407
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001409M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1411S: Maintained
1412
1413ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001414M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001415L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416W: http://www.arm.linux.org.uk/
1417S: Maintained
1418
Kumar Gala8fc1b0f2014-01-21 17:14:10 -06001419ARM/QUALCOMM SUPPORT
Andy Grossbbeaa592015-12-10 21:07:03 -06001420M: Andy Gross <andy.gross@linaro.org>
1421M: David Brown <david.brown@linaro.org>
Kumar Gala8fc1b0f2014-01-21 17:14:10 -06001422L: linux-arm-msm@vger.kernel.org
Andy Grossf5d3af92015-01-21 22:39:24 -06001423L: linux-soc@vger.kernel.org
Kumar Gala8fc1b0f2014-01-21 17:14:10 -06001424S: Maintained
Bjorn Andersson0c4cbf92015-11-23 21:55:03 -08001425F: arch/arm/boot/dts/qcom-*.dts
1426F: arch/arm/boot/dts/qcom-*.dtsi
Kumar Gala8fc1b0f2014-01-21 17:14:10 -06001427F: arch/arm/mach-qcom/
Andy Grossf5d3af92015-01-21 22:39:24 -06001428F: drivers/soc/qcom/
Stephen Boydc0c89fa2015-03-13 11:09:34 -07001429F: drivers/tty/serial/msm_serial.h
1430F: drivers/tty/serial/msm_serial.c
1431F: drivers/*/pm8???-*
1432F: drivers/mfd/ssbi.c
Kumar Gala916f7432015-02-26 15:49:09 -06001433F: drivers/firmware/qcom_scm.c
Andy Grossbbeaa592015-12-10 21:07:03 -06001434T: git git://git.kernel.org/pub/scm/linux/kernel/git/agross/linux.git
Kumar Gala8fc1b0f2014-01-21 17:14:10 -06001435
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001436ARM/RADISYS ENP2611 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001437M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001438L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001439S: Maintained
1440
Simon Hormanb138e112015-10-02 15:42:21 +09001441ARM/RENESAS ARM64 ARCHITECTURE
1442M: Simon Horman <horms@verge.net.au>
1443M: Magnus Damm <magnus.damm@gmail.com>
1444L: linux-sh@vger.kernel.org
1445Q: http://patchwork.kernel.org/project/linux-sh/list/
1446T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1447S: Supported
1448F: arch/arm64/boot/dts/renesas/
1449
Russell Kingd4275352009-04-16 14:05:27 +01001450ARM/RISCPC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001451M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001452L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001453W: http://www.arm.linux.org.uk/
1454S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01001455F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1456F: arch/arm/include/asm/hardware/ioc.h
1457F: arch/arm/include/asm/hardware/iomd.h
1458F: arch/arm/include/asm/hardware/memc.h
1459F: arch/arm/mach-rpc/
Jeff Kirsher1a6422f2011-11-04 12:58:41 +00001460F: drivers/net/ethernet/8390/etherh.c
Jeff Kirsher9e13fbf2011-07-15 03:18:21 -07001461F: drivers/net/ethernet/i825xx/ether1*
1462F: drivers/net/ethernet/seeq/ether3*
Russell Kingd4275352009-04-16 14:05:27 +01001463F: drivers/scsi/arm/
1464
Heiko Stuebner08ddbb02013-10-14 23:19:58 +02001465ARM/Rockchip SoC support
1466M: Heiko Stuebner <heiko@sntech.de>
1467L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Heiko Stuebner00250b52014-08-20 12:31:03 +02001468L: linux-rockchip@lists.infradead.org
Fengguang Wu9f273c22016-01-20 15:03:25 -08001469T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
Heiko Stuebner08ddbb02013-10-14 23:19:58 +02001470S: Maintained
Heiko Stübner541555e2014-08-27 00:05:50 +02001471F: arch/arm/boot/dts/rk3*
Heiko Stuebner08ddbb02013-10-14 23:19:58 +02001472F: arch/arm/mach-rockchip/
Heiko Stübner541555e2014-08-27 00:05:50 +02001473F: drivers/clk/rockchip/
1474F: drivers/i2c/busses/i2c-rk3x.c
Heiko Stuebner08ddbb02013-10-14 23:19:58 +02001475F: drivers/*/*rockchip*
Heiko Stübner541555e2014-08-27 00:05:50 +02001476F: drivers/*/*/*rockchip*
1477F: sound/soc/rockchip/
Heiko Stuebnerb4331b42015-03-14 19:32:06 +01001478N: rockchip
Heiko Stuebner08ddbb02013-10-14 23:19:58 +02001479
Kukjin Kim5bfb9372014-11-14 16:54:57 +09001480ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1481M: Kukjin Kim <kgene@kernel.org>
Krzysztof Kozlowskie8f98452015-05-14 21:15:20 +09001482M: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001483L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Mark Brown7a549d72011-12-02 13:52:12 +09001484L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +01001485S: Maintained
Mark Brown6f0589c2013-10-08 07:18:21 +09001486F: arch/arm/boot/dts/s3c*
1487F: arch/arm/boot/dts/exynos*
Krzysztof Kozlowskid97236e2015-06-06 19:02:19 +09001488F: arch/arm64/boot/dts/exynos/
Kukjin Kim482ce512010-06-29 15:05:26 -07001489F: arch/arm/plat-samsung/
Heiko Stuebner769bbb62011-12-02 13:51:56 +09001490F: arch/arm/mach-s3c24*/
1491F: arch/arm/mach-s3c64xx/
Kukjin Kim5bfb9372014-11-14 16:54:57 +09001492F: arch/arm/mach-s5p*/
1493F: arch/arm/mach-exynos*/
Ben Dookseb2ffca2011-02-01 15:52:36 -08001494F: drivers/*/*s3c2410*
1495F: drivers/*/*/*s3c2410*
Mark Brown40c76662011-12-02 13:54:25 +09001496F: drivers/spi/spi-s3c*
1497F: sound/soc/samsung/*
Krzysztof Kozlowskid6b9aea2015-10-24 05:07:19 +09001498F: Documentation/arm/Samsung/
1499F: Documentation/devicetree/bindings/arm/samsung/
1500F: Documentation/devicetree/bindings/sram/samsung-sram.txt
1501F: Documentation/devicetree/bindings/power/pd-samsung.txt
Doug Anderson33d43cd2013-06-18 07:02:23 +09001502N: exynos
Kukjin Kimf556cb072010-09-30 15:15:35 -07001503
Kyungmin Park10ffa962011-03-04 17:36:26 -08001504ARM/SAMSUNG MOBILE MACHINE SUPPORT
1505M: Kyungmin Park <kyungmin.park@samsung.com>
1506L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1507S: Maintained
Christian Kujau004bbd32014-10-13 15:51:17 -07001508F: arch/arm/mach-s5pv210/
Kyungmin Park10ffa962011-03-04 17:36:26 -08001509
Kamil Debski3ce4ccb2012-11-28 06:14:22 -03001510ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1511M: Kyungmin Park <kyungmin.park@samsung.com>
1512M: Kamil Debski <k.debski@samsung.com>
1513L: linux-arm-kernel@lists.infradead.org
1514L: linux-media@vger.kernel.org
1515S: Maintained
1516F: drivers/media/platform/s5p-g2d/
1517
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001518ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1519M: Kyungmin Park <kyungmin.park@samsung.com>
1520M: Kamil Debski <k.debski@samsung.com>
Joe Perches63059022012-06-07 14:21:10 -07001521M: Jeongtae Park <jtp.park@samsung.com>
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001522L: linux-arm-kernel@lists.infradead.org
1523L: linux-media@vger.kernel.org
1524S: Maintained
Cesar Eduardo Barros934455d2013-01-04 15:35:17 -08001525F: arch/arm/plat-samsung/s5p-dev-mfc.c
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001526F: drivers/media/platform/s5p-mfc/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001527
1528ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1529M: Kyungmin Park <kyungmin.park@samsung.com>
1530M: Tomasz Stanislawski <t.stanislaws@samsung.com>
1531L: linux-arm-kernel@lists.infradead.org
1532L: linux-media@vger.kernel.org
1533S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001534F: drivers/media/platform/s5p-tv/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001535
Andrzej Pietrasiewicz7d9f9bf2015-09-18 11:20:59 -03001536ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
1537M: Andrzej Pietrasiewicz <andrzej.p@samsung.com>
1538M: Jacek Anaszewski <j.anaszewski@samsung.com>
1539L: linux-arm-kernel@lists.infradead.org
1540L: linux-media@vger.kernel.org
1541S: Maintained
1542F: drivers/media/platform/s5p-jpeg/
1543
Paul Mundtd48d38e2010-02-08 12:50:24 +09001544ARM/SHMOBILE ARM ARCHITECTURE
Simon Horman5e212592012-11-27 11:41:49 +09001545M: Simon Horman <horms@verge.net.au>
Paul Mundtd48d38e2010-02-08 12:50:24 +09001546M: Magnus Damm <magnus.damm@gmail.com>
Simon Horman4a121092016-01-18 10:04:33 +09001547L: linux-renesas-soc@vger.kernel.org
Simon Horman4a121092016-01-18 10:04:33 +09001548Q: http://patchwork.kernel.org/project/linux-renesas-soc/list/
Simon Horman5e212592012-11-27 11:41:49 +09001549T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
Paul Mundtd48d38e2010-02-08 12:50:24 +09001550S: Supported
Simon Horman0b514fd2014-05-15 08:48:21 +09001551F: arch/arm/boot/dts/emev2*
1552F: arch/arm/boot/dts/r7s*
1553F: arch/arm/boot/dts/r8a*
1554F: arch/arm/boot/dts/sh*
Simon Horman0b514fd2014-05-15 08:48:21 +09001555F: arch/arm/configs/shmobile_defconfig
Geert Uytterhoeven7a2071c2014-11-14 16:49:47 +01001556F: arch/arm/include/debug/renesas-scif.S
Paul Mundtd48d38e2010-02-08 12:50:24 +09001557F: arch/arm/mach-shmobile/
1558F: drivers/sh/
1559
Dinh Nguyen66314222012-07-18 16:07:18 -06001560ARM/SOCFPGA ARCHITECTURE
Dinh Nguyenba2b7d02014-08-06 16:31:27 -05001561M: Dinh Nguyen <dinguyen@opensource.altera.com>
Dinh Nguyen66314222012-07-18 16:07:18 -06001562S: Maintained
1563F: arch/arm/mach-socfpga/
Dinh Nguyenefadb752015-04-20 14:13:12 -05001564F: arch/arm/boot/dts/socfpga*
1565F: arch/arm/configs/socfpga_defconfig
Dinh Nguyenba2b7d02014-08-06 16:31:27 -05001566W: http://www.rocketboards.org
Dinh Nguyenefadb752015-04-20 14:13:12 -05001567T: git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
Dinh Nguyen66314222012-07-18 16:07:18 -06001568
1569ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
Dinh Nguyenba2b7d02014-08-06 16:31:27 -05001570M: Dinh Nguyen <dinguyen@opensource.altera.com>
Dinh Nguyen66314222012-07-18 16:07:18 -06001571S: Maintained
1572F: drivers/clk/socfpga/
1573
Thor Thayer71bcada2014-09-03 10:27:54 -05001574ARM/SOCFPGA EDAC SUPPORT
1575M: Thor Thayer <tthayer@opensource.altera.com>
1576S: Maintained
1577F: drivers/edac/altera_edac.
1578
Srinivas Kandagatla65ebcc12013-06-25 12:15:10 +01001579ARM/STI ARCHITECTURE
Srinivas Kandagatlaa92177e2014-03-03 11:28:59 +00001580M: Srinivas Kandagatla <srinivas.kandagatla@gmail.com>
1581M: Maxime Coquelin <maxime.coquelin@st.com>
1582M: Patrice Chotard <patrice.chotard@st.com>
Srinivas Kandagatla65ebcc12013-06-25 12:15:10 +01001583L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1584L: kernel@stlinux.com
1585W: http://www.stlinux.com
1586S: Maintained
1587F: arch/arm/mach-sti/
Srinivas Kandagatlaa92177e2014-03-03 11:28:59 +00001588F: arch/arm/boot/dts/sti*
Lee Jonesb8e31bf2015-09-17 14:45:57 +01001589F: drivers/char/hw_random/st-rng.c
Srinivas Kandagatlaa92177e2014-03-03 11:28:59 +00001590F: drivers/clocksource/arm_global_timer.c
Lee Jones82805d12015-05-12 13:58:17 +01001591F: drivers/clocksource/clksrc_st_lpc.c
Srinivas Kandagatlaa92177e2014-03-03 11:28:59 +00001592F: drivers/i2c/busses/i2c-st.c
Greg Kroah-Hartman346e2e42014-09-25 13:11:52 +02001593F: drivers/media/rc/st_rc.c
Peter Griffin95d66b12015-07-30 14:09:01 -03001594F: drivers/media/platform/sti/c8sectpfe/
Peter Griffinf53b2bf2014-06-04 17:30:24 +01001595F: drivers/mmc/host/sdhci-st.c
Peter Griffine95cf392015-04-01 07:42:41 +01001596F: drivers/phy/phy-miphy28lp.c
1597F: drivers/phy/phy-miphy365x.c
Peter Griffin6da969a2014-09-11 18:02:46 +01001598F: drivers/phy/phy-stih407-usb.c
Peter Griffin26389c72014-09-08 11:33:02 +01001599F: drivers/phy/phy-stih41x-usb.c
Greg Kroah-Hartman346e2e42014-09-25 13:11:52 +02001600F: drivers/pinctrl/pinctrl-st.c
1601F: drivers/reset/sti/
Lee Jonesdb4112e2015-04-09 15:47:34 +01001602F: drivers/rtc/rtc-st-lpc.c
Greg Kroah-Hartman346e2e42014-09-25 13:11:52 +02001603F: drivers/tty/serial/st-asc.c
Peter Griffineb11ada2014-09-05 16:36:32 +01001604F: drivers/usb/dwc3/dwc3-st.c
Peter Griffin62f6f082014-09-08 13:04:48 +01001605F: drivers/usb/host/ehci-st.c
1606F: drivers/usb/host/ohci-st.c
Lee Jonesdb4112e2015-04-09 15:47:34 +01001607F: drivers/watchdog/st_lpc_wdt.c
Peter Griffindaac6f82014-11-19 08:44:54 +00001608F: drivers/ata/ahci_st.c
Srinivas Kandagatla65ebcc12013-06-25 12:15:10 +01001609
Maxime Coquelinee6e7872015-05-09 09:53:58 +02001610ARM/STM32 ARCHITECTURE
1611M: Maxime Coquelin <mcoquelin.stm32@gmail.com>
1612L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1613S: Maintained
1614T: git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git
1615N: stm32
1616F: drivers/clocksource/armv7m_systick.c
1617
Marc Gonzalezd6de5b02015-12-15 10:41:13 +01001618ARM/TANGO ARCHITECTURE
1619M: Marc Gonzalez <marc_gonzalez@sigmadesigns.com>
1620L: linux-arm-kernel@lists.infradead.org
1621S: Maintained
1622F: arch/arm/mach-tango/
1623F: arch/arm/boot/dts/tango*
1624
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001625ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001626M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001627L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001628S: Maintained
1629
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001630ARM/TETON BGA MACHINE SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07001631M: "Mark F. Brown" <mark.brown314@gmail.com>
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001632L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1633S: Maintained
1634
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001635ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001636M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001637L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001638S: Maintained
1639
wanzongshun98ad6e32009-02-13 06:04:32 +01001640ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001641M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001642L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -07001643W: http://www.mcuos.com
1644S: Maintained
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001645F: arch/arm/mach-w90x900/
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001646F: drivers/input/keyboard/w90p910_keypad.c
1647F: drivers/input/touchscreen/w90p910_ts.c
1648F: drivers/watchdog/nuc900_wdt.c
Jeff Kirsher679ec0e2011-07-17 00:20:45 -07001649F: drivers/net/ethernet/nuvoton/w90p910_ether.c
Joe Perches53516842010-08-09 17:20:37 -07001650F: drivers/mtd/nand/nuc900_nand.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001651F: drivers/rtc/rtc-nuc900.c
Joe Perches9df92e62012-01-10 15:09:06 -08001652F: drivers/spi/spi-nuc900.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001653F: drivers/usb/host/ehci-w90x900.c
Jingoo Han8a61f012014-07-01 15:36:01 +09001654F: drivers/video/fbdev/nuc900fb.c
wanzongshun98ad6e32009-02-13 06:04:32 +01001655
Linus Walleij54274d72010-04-04 10:58:03 +01001656ARM/U300 MACHINE SUPPORT
Linus Walleije4651a92012-08-06 09:52:52 +02001657M: Linus Walleij <linus.walleij@linaro.org>
Linus Walleij54274d72010-04-04 10:58:03 +01001658L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1659S: Supported
1660F: arch/arm/mach-u300/
Linus Walleij9affbd22014-01-21 15:04:14 +01001661F: drivers/clocksource/timer-u300.c
Linus Walleij54274d72010-04-04 10:58:03 +01001662F: drivers/i2c/busses/i2c-stu300.c
1663F: drivers/rtc/rtc-coh901331.c
1664F: drivers/watchdog/coh901327_wdt.c
1665F: drivers/dma/coh901318*
Linus Walleij87572882010-12-22 09:18:29 +01001666F: drivers/mfd/ab3100*
1667F: drivers/rtc/rtc-ab3100.c
1668F: drivers/rtc/rtc-coh901331.c
1669T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Linus Walleij54274d72010-04-04 10:58:03 +01001670
Masahiro Yamada3d00d042015-05-08 13:07:14 +09001671ARM/UNIPHIER ARCHITECTURE
1672M: Masahiro Yamada <yamada.masahiro@socionext.com>
1673L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1674S: Maintained
Masahiro Yamadaa3ff83d2015-07-25 16:23:24 +09001675F: arch/arm/boot/dts/uniphier*
Masahiro Yamadae7ecbc02015-10-02 13:42:19 +09001676F: arch/arm/include/asm/hardware/cache-uniphier.h
Masahiro Yamada3d00d042015-05-08 13:07:14 +09001677F: arch/arm/mach-uniphier/
Masahiro Yamadae7ecbc02015-10-02 13:42:19 +09001678F: arch/arm/mm/cache-uniphier.c
Masahiro Yamadae1a0ebc2015-11-28 02:22:31 +09001679F: arch/arm64/boot/dts/socionext/
Masahiro Yamada4b7f48d2015-12-09 15:52:59 +09001680F: drivers/bus/uniphier-system-bus.c
Masahiro Yamadadd6fd4a2015-10-23 19:51:59 +09001681F: drivers/i2c/busses/i2c-uniphier*
Masahiro Yamadaa3ff83d2015-07-25 16:23:24 +09001682F: drivers/pinctrl/uniphier/
1683F: drivers/tty/serial/8250/8250_uniphier.c
Masahiro Yamada3d00d042015-05-08 13:07:14 +09001684N: uniphier
1685
Linus Walleij87572882010-12-22 09:18:29 +01001686ARM/Ux500 ARM ARCHITECTURE
Linus Walleije4651a92012-08-06 09:52:52 +02001687M: Linus Walleij <linus.walleij@linaro.org>
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001688L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1689S: Maintained
1690F: arch/arm/mach-ux500/
Linus Walleije4651a92012-08-06 09:52:52 +02001691F: drivers/clocksource/clksrc-dbx500-prcmu.c
Linus Walleij87572882010-12-22 09:18:29 +01001692F: drivers/dma/ste_dma40*
Linus Walleije4651a92012-08-06 09:52:52 +02001693F: drivers/hwspinlock/u8500_hsem.c
Linus Walleij87572882010-12-22 09:18:29 +01001694F: drivers/mfd/abx500*
1695F: drivers/mfd/ab8500*
Linus Walleije4651a92012-08-06 09:52:52 +02001696F: drivers/mfd/dbx500*
1697F: drivers/mfd/db8500*
Joe Perchesecc265f2014-08-08 14:26:20 -07001698F: drivers/pinctrl/nomadik/pinctrl-ab*
1699F: drivers/pinctrl/nomadik/pinctrl-nomadik*
Linus Walleij87572882010-12-22 09:18:29 +01001700F: drivers/rtc/rtc-ab8500.c
Linus Walleije4651a92012-08-06 09:52:52 +02001701F: drivers/rtc/rtc-pl031.c
Linus Walleij87572882010-12-22 09:18:29 +01001702T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001703
Ulf Hanssone93fde22013-11-12 11:41:12 +01001704ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1705M: Ulf Hansson <ulf.hansson@linaro.org>
1706L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1707T: git git://git.linaro.org/people/ulfh/clk.git
1708S: Maintained
1709F: drivers/clk/ux500/
1710F: include/linux/platform_data/clk-ux500.h
1711
Pawel Moll740d93b2014-11-26 12:13:05 +00001712ARM/VERSATILE EXPRESS PLATFORM
1713M: Liviu Dudau <liviu.dudau@arm.com>
1714M: Sudeep Holla <sudeep.holla@arm.com>
1715M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
1716L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1717S: Maintained
1718F: arch/arm/boot/dts/vexpress*
Kristina Martsenko9ccd6082015-07-01 13:36:03 +01001719F: arch/arm64/boot/dts/arm/vexpress*
Pawel Moll740d93b2014-11-26 12:13:05 +00001720F: arch/arm/mach-vexpress/
1721F: */*/vexpress*
Pawel Moll7e8f4032014-12-01 14:16:33 +00001722F: */*/*/vexpress*
Pawel Moll740d93b2014-11-26 12:13:05 +00001723F: drivers/clk/versatile/clk-vexpress-osc.c
1724F: drivers/clocksource/versatile.c
1725
Russell Kingd4275352009-04-16 14:05:27 +01001726ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001727M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001728L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001729W: http://www.arm.linux.org.uk/
1730S: Maintained
1731F: arch/arm/vfp/
1732
Marek Vasute66b6d82010-03-26 06:51:32 +01001733ARM/VOIPAC PXA270 SUPPORT
1734M: Marek Vasut <marek.vasut@gmail.com>
1735L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1736S: Maintained
1737F: arch/arm/mach-pxa/vpac270.c
Joe Perchese0cca112010-08-09 17:20:38 -07001738F: arch/arm/mach-pxa/include/mach/vpac270.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001739
Tony Prisk04529fe2012-07-24 04:19:37 +12001740ARM/VT8500 ARM ARCHITECTURE
1741M: Tony Prisk <linux@prisktech.co.nz>
1742L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1743S: Maintained
1744F: arch/arm/mach-vt8500/
Tony Prisk41fd91b2013-02-08 18:18:03 +13001745F: drivers/clocksource/vt8500_timer.c
Tony Prisk560746e2013-06-15 09:52:16 +12001746F: drivers/i2c/busses/i2c-wmt.c
Tony Prisk41fd91b2013-02-08 18:18:03 +13001747F: drivers/mmc/host/wmt-sdmmc.c
1748F: drivers/pwm/pwm-vt8500.c
1749F: drivers/rtc/rtc-vt8500.c
1750F: drivers/tty/serial/vt8500_serial.c
Joe Perches4f311022013-09-11 14:23:46 -07001751F: drivers/usb/host/ehci-platform.c
Tony Prisk41fd91b2013-02-08 18:18:03 +13001752F: drivers/usb/host/uhci-platform.c
Jingoo Han8a61f012014-07-01 15:36:01 +09001753F: drivers/video/fbdev/vt8500lcdfb.*
1754F: drivers/video/fbdev/wm8505fb*
1755F: drivers/video/fbdev/wmt_ge_rops.*
Tony Prisk04529fe2012-07-24 04:19:37 +12001756
Marek Vasute66b6d82010-03-26 06:51:32 +01001757ARM/ZIPIT Z2 SUPPORT
1758M: Marek Vasut <marek.vasut@gmail.com>
1759L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1760S: Maintained
1761F: arch/arm/mach-pxa/z2.c
Joe Perches6ab2a852010-08-09 17:20:38 -07001762F: arch/arm/mach-pxa/include/mach/z2.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001763
Jun Nie5ecc4b52015-04-28 17:18:06 +08001764ARM/ZTE ARCHITECTURE
1765M: Jun Nie <jun.nie@linaro.org>
1766L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1767S: Maintained
1768F: arch/arm/mach-zx/
1769F: drivers/clk/zte/
1770F: Documentation/devicetree/bindings/arm/zte.txt
1771F: Documentation/devicetree/bindings/clock/zx296702-clk.txt
1772
Michal Simek51f29d42013-01-21 17:41:46 +01001773ARM/ZYNQ ARCHITECTURE
1774M: Michal Simek <michal.simek@xilinx.com>
Soren Brinkmannf0fd9ad2014-10-23 09:29:22 -07001775R: Sören Brinkmann <soren.brinkmann@xilinx.com>
Michal Simek51f29d42013-01-21 17:41:46 +01001776L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1777W: http://wiki.xilinx.com
Soren Brinkmannd6448b72015-06-26 09:04:32 -07001778T: git https://github.com/Xilinx/linux-xlnx.git
Michal Simek51f29d42013-01-21 17:41:46 +01001779S: Supported
1780F: arch/arm/mach-zynq/
Michal Simekbd2a3372013-06-04 07:17:39 +00001781F: drivers/cpuidle/cpuidle-zynq.c
Michal Simekfb9d4952014-10-13 15:51:15 -07001782F: drivers/block/xsysace.c
Michal Simekc2fd4e32014-01-02 12:58:50 -08001783N: zynq
1784N: xilinx
1785F: drivers/clocksource/cadence_ttc_timer.c
Soren Brinkmanndf8eb562014-04-04 14:27:55 -07001786F: drivers/i2c/busses/i2c-cadence.c
Soren Brinkmanne3ec3a32013-12-02 10:02:36 -08001787F: drivers/mmc/host/sdhci-of-arasan.c
Punnaiah Choudary Kalluriae9b56e2015-01-06 23:13:47 +05301788F: drivers/edac/synopsys_edac.c
Michal Simek51f29d42013-01-21 17:41:46 +01001789
Will Deacon48ec83b2015-05-27 17:25:59 +01001790ARM SMMU DRIVERS
Will Deaconb8f98792013-06-24 18:31:26 +01001791M: Will Deacon <will.deacon@arm.com>
1792L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1793S: Maintained
1794F: drivers/iommu/arm-smmu.c
Will Deacon48ec83b2015-05-27 17:25:59 +01001795F: drivers/iommu/arm-smmu-v3.c
Will Deacone1d3c0f2014-11-14 17:18:23 +00001796F: drivers/iommu/io-pgtable-arm.c
Will Deaconb8f98792013-06-24 18:31:26 +01001797
Catalin Marinas38074222012-03-05 11:49:34 +00001798ARM64 PORT (AARCH64 ARCHITECTURE)
1799M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasd19766e2012-12-11 13:58:05 +00001800M: Will Deacon <will.deacon@arm.com>
Catalin Marinas38074222012-03-05 11:49:34 +00001801L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Fengguang Wu9f273c22016-01-20 15:03:25 -08001802T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
Catalin Marinas38074222012-03-05 11:49:34 +00001803S: Maintained
1804F: arch/arm64/
Catalin Marinasd19766e2012-12-11 13:58:05 +00001805F: Documentation/arm64/
Catalin Marinas38074222012-03-05 11:49:34 +00001806
Laurent Pinchart9d7005f92012-12-10 20:38:24 -03001807AS3645A LED FLASH CONTROLLER DRIVER
1808M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1809L: linux-media@vger.kernel.org
1810T: git git://linuxtv.org/media_tree.git
1811S: Maintained
1812F: drivers/media/i2c/as3645a.c
Mauro Carvalho Chehabb5dcee22015-11-10 12:01:44 -02001813F: include/media/i2c/as3645a.h
Laurent Pinchart9d7005f92012-12-10 20:38:24 -03001814
George Josephd58de032010-03-05 22:17:25 +01001815ASC7621 HARDWARE MONITOR DRIVER
1816M: George Joseph <george.joseph@fairview5.com>
1817L: lm-sensors@lm-sensors.org
1818S: Maintained
1819F: Documentation/hwmon/asc7621
1820F: drivers/hwmon/asc7621.c
1821
Corentin Charyb229ece2011-02-26 10:20:40 +01001822ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
Corentin Chary5909c652012-12-17 16:00:05 -08001823M: Corentin Chary <corentin.chary@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05001825L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001826W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827S: Maintained
Corentin Charyb229ece2011-02-26 10:20:40 +01001828F: drivers/platform/x86/asus*.c
1829F: drivers/platform/x86/eeepc*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830
João Paulo Rechi Vitaf6a6bba2016-01-05 11:16:53 -05001831ASUS WIRELESS RADIO CONTROL DRIVER
1832M: João Paulo Rechi Vita <jprvita@gmail.com>
1833L: platform-driver-x86@vger.kernel.org
1834S: Maintained
1835F: drivers/platform/x86/asus-wireless.c
1836
Andrew Morton953a6472008-11-06 12:53:28 -08001837ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williams08223d82014-08-19 06:07:56 -07001838R: Dan Williams <dan.j.williams@intel.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001839W: http://sourceforge.net/projects/xscaleiop
Dan Williams08223d82014-08-19 06:07:56 -07001840S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07001841F: Documentation/crypto/async-tx-api.txt
1842F: crypto/async_tx/
1843F: drivers/dma/
1844F: include/linux/dmaengine.h
1845F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001846
Wolfram Sanga1867d32009-09-18 22:45:51 +02001847AT24 EEPROM DRIVER
Wolfram Sang14d77c42013-02-08 20:54:40 +01001848M: Wolfram Sang <wsa@the-dreams.de>
Wolfram Sanga1867d32009-09-18 22:45:51 +02001849L: linux-i2c@vger.kernel.org
1850S: Maintained
1851F: drivers/misc/eeprom/at24.c
Vivien Didelot25f73ed2013-09-27 15:06:28 -04001852F: include/linux/platform_data/at24.h
Wolfram Sanga1867d32009-09-18 22:45:51 +02001853
Randy Dunlape7839f22008-10-12 16:11:45 -07001854ATA OVER ETHERNET (AOE) DRIVER
Ed Cashinfb903812015-03-25 15:55:06 -07001855M: "Ed L. Cashin" <ed.cashin@acm.org>
1856W: http://www.openaoe.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001858F: Documentation/aoe/
1859F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860
Alban Bedelaad7a212015-10-30 11:36:29 +01001861ATHEROS 71XX/9XXX GPIO DRIVER
1862M: Alban Bedel <albeu@free.fr>
1863W: https://github.com/AlbanBedel/linux
1864T: git git://github.com/AlbanBedel/linux
1865S: Maintained
1866F: drivers/gpio/gpio-ath79.c
1867F: Documentation/devicetree/bindings/gpio/gpio-ath79.txt
1868
Joe Perches9a10a872010-12-01 09:37:55 -08001869ATHEROS ATH GENERIC UTILITIES
Luis R. Rodriguezf726ee62013-12-14 20:11:39 +01001870M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
Joe Perches9a10a872010-12-01 09:37:55 -08001871L: linux-wireless@vger.kernel.org
1872S: Supported
1873F: drivers/net/wireless/ath/*
1874
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001875ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001876M: Jiri Slaby <jirislaby@gmail.com>
1877M: Nick Kossifidis <mickflemm@gmail.com>
Luis R. Rodriguezf726ee62013-12-14 20:11:39 +01001878M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001879L: linux-wireless@vger.kernel.org
Joe Perches72c706b2009-09-07 11:34:30 -07001880W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001881S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001882F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001883
Kalle Valo12e62d62011-09-13 10:21:25 +03001884ATHEROS ATH6KL WIRELESS DRIVER
1885M: Kalle Valo <kvalo@qca.qualcomm.com>
1886L: linux-wireless@vger.kernel.org
1887W: http://wireless.kernel.org/en/users/Drivers/ath6kl
Fengguang Wu9f273c22016-01-20 15:03:25 -08001888T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
Kalle Valo12e62d62011-09-13 10:21:25 +03001889S: Supported
1890F: drivers/net/wireless/ath/ath6kl/
1891
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001892WILOCITY WIL6210 WIRELESS DRIVER
Vladimir Kondratiev23ba8a62015-11-08 14:03:17 +02001893M: Maya Erez <qca_merez@qca.qualcomm.com>
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001894L: linux-wireless@vger.kernel.org
1895L: wil6210@qca.qualcomm.com
1896S: Supported
1897W: http://wireless.kernel.org/en/users/Drivers/wil6210
1898F: drivers/net/wireless/ath/wil6210/
Vladimir Kondratievdba4b742014-10-01 15:05:25 +03001899F: include/uapi/linux/wil6210_uapi.h
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001900
Christian Lamparter1d7e1e62010-09-06 01:10:25 +02001901CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1902M: Christian Lamparter <chunkeey@googlemail.com>
1903L: linux-wireless@vger.kernel.org
1904W: http://wireless.kernel.org/en/users/Drivers/carl9170
1905S: Maintained
1906F: drivers/net/wireless/ath/carl9170/
1907
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001908ATK0110 HWMON DRIVER
1909M: Luca Tettamanti <kronos.it@gmail.com>
1910L: lm-sensors@lm-sensors.org
1911S: Maintained
1912F: drivers/hwmon/asus_atk0110.c
1913
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001914ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001915M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001916S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001917F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001918
Chris Snook7ae115b2008-09-09 03:26:57 -04001919ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001920M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +00001921M: Chris Snook <chris.snook@gmail.com>
Chris Snooke443e382010-09-16 22:00:28 -07001922L: netdev@vger.kernel.org
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001923W: http://sourceforge.net/projects/atl1
1924W: http://atl1.sourceforge.net
1925S: Maintained
Jeff Kirsher2b133ad2011-05-20 06:55:16 -07001926F: drivers/net/ethernet/atheros/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001927
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928ATM
chas williams - CONTRACTOR366c1bd2015-03-11 16:18:01 -04001929M: Chas Williams <3chas3@gmail.com>
Joe Perches476604d2009-10-26 16:49:41 -07001930L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001931L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932W: http://linux-atm.sourceforge.net
1933S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001934F: drivers/atm/
1935F: include/linux/atm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001936F: include/uapi/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001938ATMEL AT91 / AT32 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001939M: Ludovic Desroches <ludovic.desroches@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001940S: Maintained
1941F: drivers/mmc/host/atmel-mci.c
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001942
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001943ATMEL AT91 / AT32 SERIAL DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001944M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001945S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001946F: drivers/tty/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001947
Bo Shendfae90e2014-09-28 09:57:19 +08001948ATMEL Audio ALSA driver
Nicolas Ferre3a820022015-03-31 15:34:51 +02001949M: Nicolas Ferre <nicolas.ferre@atmel.com>
Bo Shendfae90e2014-09-28 09:57:19 +08001950L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1951S: Supported
1952F: sound/soc/atmel
1953
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001954ATMEL DMA DRIVER
1955M: Nicolas Ferre <nicolas.ferre@atmel.com>
1956L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1957S: Supported
1958F: drivers/dma/at_hdmac.c
1959F: drivers/dma/at_hdmac_regs.h
Cesar Eduardo Barros6f0d65a2013-01-04 15:35:20 -08001960F: include/linux/platform_data/dma-atmel.h
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001961
Ludovic Desroches6bd0f432014-10-22 17:22:20 +02001962ATMEL XDMA DRIVER
1963M: Ludovic Desroches <ludovic.desroches@atmel.com>
1964L: linux-arm-kernel@lists.infradead.org
1965L: dmaengine@vger.kernel.org
1966S: Supported
1967F: drivers/dma/at_xdmac.c
1968
Ludovic Desroches888f2802013-03-15 05:32:57 +00001969ATMEL I2C DRIVER
1970M: Ludovic Desroches <ludovic.desroches@atmel.com>
1971L: linux-i2c@vger.kernel.org
1972S: Supported
1973F: drivers/i2c/busses/i2c-at91.c
1974
Josh Wu15515542012-03-23 17:56:29 +08001975ATMEL ISI DRIVER
Nicolas Ferre50cb2ef2015-11-17 11:14:28 +01001976M: Ludovic Desroches <ludovic.desroches@atmel.com>
Josh Wu15515542012-03-23 17:56:29 +08001977L: linux-media@vger.kernel.org
1978S: Supported
Cesar Eduardo Barrosf2294c22013-01-04 15:35:21 -08001979F: drivers/media/platform/soc_camera/atmel-isi.c
Josh Wu15515542012-03-23 17:56:29 +08001980F: include/media/atmel-isi.h
1981
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001982ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001983M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01001984L: linux-fbdev@vger.kernel.org
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001985S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09001986F: drivers/video/fbdev/atmel_lcdfb.c
Joe Perches679655d2009-04-07 20:44:32 -07001987F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001988
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001989ATMEL MACB ETHERNET DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001990M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001991S: Supported
Jeff Kirsher9f2f3812011-06-18 01:52:36 -07001992F: drivers/net/ethernet/cadence/
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001993
Josh Wu5cbac982014-10-13 15:51:24 -07001994ATMEL NAND DRIVER
Nicolas Ferre50cb2ef2015-11-17 11:14:28 +01001995M: Wenyou Yang <wenyou.yang@atmel.com>
1996M: Josh Wu <rainyfeeling@outlook.com>
Josh Wu5cbac982014-10-13 15:51:24 -07001997L: linux-mtd@lists.infradead.org
1998S: Supported
1999F: drivers/mtd/nand/atmel_nand*
2000
ludovic.desroches@atmel.com05c441e2015-07-29 16:22:48 +02002001ATMEL SDMMC DRIVER
2002M: Ludovic Desroches <ludovic.desroches@atmel.com>
2003L: linux-mmc@vger.kernel.org
2004S: Supported
2005F: drivers/mmc/host/sdhci-of-at91.c
2006
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08002007ATMEL SPI DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07002008M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08002009S: Supported
Joe Perches9df92e62012-01-10 15:09:06 -08002010F: drivers/spi/spi-atmel.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08002011
Bo Shen0ef09012014-09-28 09:57:18 +08002012ATMEL SSC DRIVER
Nicolas Ferre03515f32015-03-19 10:49:42 +01002013M: Nicolas Ferre <nicolas.ferre@atmel.com>
Bo Shen0ef09012014-09-28 09:57:18 +08002014L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2015S: Supported
2016F: drivers/misc/atmel-ssc.c
2017F: include/linux/atmel-ssc.h
2018
Nicolas Ferree9cb1c52012-03-26 15:59:32 +02002019ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
2020M: Nicolas Ferre <nicolas.ferre@atmel.com>
2021L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2022S: Supported
2023F: drivers/misc/atmel_tclib.c
2024F: drivers/clocksource/tcb_clksrc.c
2025
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07002026ATMEL USBA UDC DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07002027M: Nicolas Ferre <nicolas.ferre@atmel.com>
2028L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07002029S: Supported
Joe Perchesfaf2e1d2014-08-08 14:26:18 -07002030F: drivers/usb/gadget/udc/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07002031
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002033M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07002034L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035W: http://www.thekelleys.org.uk/atmel
2036W: http://atmelwlandriver.sourceforge.net/
2037S: Maintained
Kalle Valo30fe0f92015-11-17 19:49:20 +02002038F: drivers/net/wireless/atmel/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039
Nick Dyera14c0f82015-08-04 16:22:54 -07002040ATMEL MAXTOUCH DRIVER
2041M: Nick Dyer <nick.dyer@itdev.co.uk>
2042T: git git://github.com/atmel-maxtouch/linux.git
2043S: Supported
2044F: Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2045F: drivers/input/touchscreen/atmel_mxt_ts.c
2046F: include/linux/platform_data/atmel_mxt_ts.h
2047
Bradley Grove26780d92013-08-23 10:35:45 -04002048ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
Joe Perchesb75f0052014-03-03 15:38:37 -08002049M: Bradley Grove <linuxdrivers@attotech.com>
2050L: linux-scsi@vger.kernel.org
2051W: http://www.attotech.com
2052S: Supported
2053F: drivers/scsi/esas2r
Bradley Grove26780d92013-08-23 10:35:45 -04002054
Stefan Schmidtbc6e17b2015-05-29 10:51:28 +02002055ATUSB IEEE 802.15.4 RADIO DRIVER
2056M: Stefan Schmidt <stefan@osg.samsung.com>
2057L: linux-wpan@vger.kernel.org
2058S: Maintained
2059F: drivers/net/ieee802154/atusb.c
2060F: drivers/net/ieee802154/atusb.h
2061F: drivers/net/ieee802154/at86rf230.h
2062
Chris Wrighta92b7b82005-07-07 18:12:23 -07002063AUDIT SUBSYSTEM
Paul Moore915f3892014-10-20 11:59:43 -04002064M: Paul Moore <paul@paul-moore.com>
Joe Perches8b58be82009-07-29 15:04:30 -07002065M: Eric Paris <eparis@redhat.com>
Paul Moore915f3892014-10-20 11:59:43 -04002066L: linux-audit@redhat.com (moderated for non-subscribers)
David Woodhousead3f9a22005-07-13 15:28:29 +01002067W: http://people.redhat.com/sgrubb/audit/
Paul Moore915f3892014-10-20 11:59:43 -04002068T: git git://git.infradead.org/users/pcmoore/audit
Chris Wrighta92b7b82005-07-07 18:12:23 -07002069S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002070F: include/linux/audit.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002071F: include/uapi/linux/audit.h
Joe Perches679655d2009-04-07 20:44:32 -07002072F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07002073
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002074AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002075M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07002076W: http://miguelojeda.es/auxdisplay.htm
2077W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002078S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002079F: drivers/auxdisplay/
2080F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002081
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07002082AVR32 ARCHITECTURE
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02002083M: Haavard Skinnemoen <hskinnemoen@gmail.com>
2084M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07002085W: http://www.atmel.com/products/AVR32/
Matthias Brugger249d9d92013-02-04 14:28:47 -08002086W: http://mirror.egtvedt.no/avr32linux.org/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07002087W: http://avrfreaks.net/
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02002088S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002089F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07002090
2091AVR32/AT32AP MACHINE SUPPORT
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02002092M: Haavard Skinnemoen <hskinnemoen@gmail.com>
2093M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
2094S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002095F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07002096
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07002098M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002100W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002102F: include/uapi/linux/ax25.h
Joe Perches679655d2009-04-07 20:44:32 -07002103F: include/net/ax25.h
2104F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105
Mauro Carvalho Chehabd5269392012-11-02 12:00:30 -02002106AZ6007 DVB DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02002107M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehabd5269392012-11-02 12:00:30 -02002108L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02002109W: https://linuxtv.org
Mauro Carvalho Chehabd5269392012-11-02 12:00:30 -02002110T: git git://linuxtv.org/media_tree.git
2111S: Maintained
2112F: drivers/media/usb/dvb-usb-v2/az6007.c
2113
Hans Verkuil67773762012-11-23 07:09:23 -03002114AZTECH FM RADIO RECEIVER DRIVER
2115M: Hans Verkuil <hverkuil@xs4all.nl>
2116L: linux-media@vger.kernel.org
2117T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02002118W: https://linuxtv.org
Hans Verkuil67773762012-11-23 07:09:23 -03002119S: Maintained
2120F: drivers/media/radio/radio-aztech*
2121
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002122B43 WIRELESS DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002123L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01002124L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02002125W: http://wireless.kernel.org/en/users/Drivers/b43
Joe Perches8a72ed62015-04-15 16:17:39 -07002126S: Odd Fixes
Kalle Valo58619b12015-11-17 19:49:23 +02002127F: drivers/net/wireless/broadcom/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002128
2129B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002130M: Larry Finger <Larry.Finger@lwfinger.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002131L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01002132L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02002133W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002134S: Maintained
Kalle Valo423e3ce2015-11-17 19:49:26 +02002135F: drivers/net/wireless/broadcom/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002136
Richard Purdie300abeb2007-02-07 22:21:07 +00002137BACKLIGHT CLASS/SUBSYSTEM
Jingoo Hanb7701752015-05-14 15:17:07 -07002138M: Jingoo Han <jingoohan1@gmail.com>
Jingoo Han70d14fc2014-04-03 14:48:46 -07002139M: Lee Jones <lee.jones@linaro.org>
Fengguang Wu9f273c22016-01-20 15:03:25 -08002140T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
Richard Purdie300abeb2007-02-07 22:21:07 +00002141S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002142F: drivers/video/backlight/
2143F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00002144
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002145BATMAN ADVANCED
Antonio Quartulli207df492013-09-21 13:46:56 +02002146M: Marek Lindner <mareklindner@neomailbox.ch>
Simon Wunderlichc679ff82013-10-10 23:59:10 +02002147M: Simon Wunderlich <sw@simonwunderlich.de>
Antonio Quartullica8e9402015-11-07 19:20:34 +01002148M: Antonio Quartulli <a@unstable.cc>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002149L: b.a.t.m.a.n@lists.open-mesh.org
2150W: http://www.open-mesh.org/
2151S: Maintained
2152F: net/batman-adv/
2153
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002154BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002155M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002156L: linux-hams@vger.kernel.org
2157W: http://www.baycom.org/~tom/ham/ham.html
2158S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002159F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002160
Kent Overstreetcafe5632013-03-23 16:11:31 -07002161BCACHE (BLOCK LAYER CACHE)
Joe Perchesd1aa1ab2015-06-30 14:59:54 -07002162M: Kent Overstreet <kent.overstreet@gmail.com>
Kent Overstreetcafe5632013-03-23 16:11:31 -07002163L: linux-bcache@vger.kernel.org
2164W: http://bcache.evilpiepirate.org
Joe Perchesd1aa1ab2015-06-30 14:59:54 -07002165S: Maintained
Kent Overstreetcafe5632013-03-23 16:11:31 -07002166F: drivers/md/bcache/
2167
Hans Verkuil04bd8442015-06-08 09:26:20 -03002168BDISP ST MEDIA DRIVER
2169M: Fabien Dessenne <fabien.dessenne@st.com>
2170L: linux-media@vger.kernel.org
2171T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02002172W: https://linuxtv.org
Hans Verkuil04bd8442015-06-08 09:26:20 -03002173S: Supported
2174F: drivers/media/platform/sti/bdisp
2175
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002176BEFS FILE SYSTEM
Joe Perches55817d32010-08-09 17:20:52 -07002177S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002178F: Documentation/filesystems/befs.txt
2179F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002180
Dariusz Marcinkiewicz564ee362014-08-15 17:50:47 +02002181BECKHOFF CX5020 ETHERCAT MASTER DRIVER
Joe Perches49e7d9d2015-04-15 16:17:31 -07002182M: Dariusz Marcinkiewicz <reksio@newterm.pl>
2183L: netdev@vger.kernel.org
2184S: Maintained
2185F: drivers/net/ethernet/ec_bhf.c
Dariusz Marcinkiewicz564ee362014-08-15 17:50:47 +02002186
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002187BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002188M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002189S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002190F: Documentation/filesystems/bfs.txt
2191F: fs/bfs/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002192F: include/uapi/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002193
Bryan Wu1394f032007-05-06 14:50:22 -07002194BLACKFIN ARCHITECTURE
Sonic Zhanga4edbc12014-01-29 14:05:55 -08002195M: Steven Miao <realmz6@gmail.com>
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002196L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Michael Opdenacker14431762014-03-10 15:49:49 -07002197T: git git://git.code.sf.net/p/adi-linux/code
Bryan Wue3b2d3f2007-06-11 15:31:30 +08002198W: http://blackfin.uclinux.org
2199S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002200F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07002201
Bryan Wue190d6b2007-07-17 14:43:44 +08002202BLACKFIN EMAC DRIVER
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002203L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Bryan Wue190d6b2007-07-17 14:43:44 +08002204W: http://blackfin.uclinux.org
2205S: Supported
Jeff Kirsher7b35f032011-06-18 00:01:26 -07002206F: drivers/net/ethernet/adi/
Bryan Wue190d6b2007-07-17 14:43:44 +08002207
Mike Frysinger566da5b2007-06-11 15:31:30 +08002208BLACKFIN RTC DRIVER
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002209L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Mike Frysinger566da5b2007-06-11 15:31:30 +08002210W: http://blackfin.uclinux.org
2211S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002212F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08002213
Mike Frysinger936ed492010-03-10 15:20:38 -08002214BLACKFIN SDH DRIVER
Sonic Zhang109ec8c2012-08-08 12:16:08 +08002215M: Sonic Zhang <sonic.zhang@analog.com>
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002216L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Mike Frysinger936ed492010-03-10 15:20:38 -08002217W: http://blackfin.uclinux.org
2218S: Supported
2219F: drivers/mmc/host/bfin_sdh.c
2220
Bryan Wu1394f032007-05-06 14:50:22 -07002221BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002222M: Sonic Zhang <sonic.zhang@analog.com>
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002223L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Bryan Wue3b2d3f2007-06-11 15:31:30 +08002224W: http://blackfin.uclinux.org
2225S: Supported
Joe Perches84602412012-01-10 15:09:04 -08002226F: drivers/tty/serial/bfin_uart.c
Bryan Wu1394f032007-05-06 14:50:22 -07002227
Bryan Wu1e6d3202007-07-15 02:50:02 +08002228BLACKFIN WATCHDOG DRIVER
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002229L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Bryan Wu1e6d3202007-07-15 02:50:02 +08002230W: http://blackfin.uclinux.org
2231S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002232F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08002233
Bryan Wud24ecfc2007-05-01 23:26:32 +02002234BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002235M: Sonic Zhang <sonic.zhang@analog.com>
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002236L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Bryan Wud24ecfc2007-05-01 23:26:32 +02002237W: http://blackfin.uclinux.org/
2238S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002239F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02002240
Scott Jiang1e204372013-01-18 17:09:47 -03002241BLACKFIN MEDIA DRIVER
2242M: Scott Jiang <scott.jiang.linux@gmail.com>
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002243L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Scott Jiang1e204372013-01-18 17:09:47 -03002244W: http://blackfin.uclinux.org/
2245S: Supported
2246F: drivers/media/platform/blackfin/
2247F: drivers/media/i2c/adv7183*
2248F: drivers/media/i2c/vs6624*
2249
Jan-Simon Möllerb54cf352012-07-20 16:49:06 +08002250BLINKM RGB LED DRIVER
2251M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
2252S: Maintained
2253F: drivers/leds/leds-blinkm.c
2254
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07002256M: Jens Axboe <axboe@kernel.dk>
Jens Axboe82c426e2015-11-05 13:29:25 -07002257L: linux-block@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07002258T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002260F: block/
Steven Rostedtae11f7e2015-06-09 17:30:11 -04002261F: kernel/trace/blktrace.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262
Joern Engel2b54aae2008-02-06 01:38:02 -08002263BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002264M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08002265L: linux-mtd@lists.infradead.org
2266S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002267F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08002268
Marcel Holtmann63fbd242008-08-18 13:23:53 +02002269BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002270M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07002271M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07002272M: Johan Hedberg <johan.hedberg@gmail.com>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02002273L: linux-bluetooth@vger.kernel.org
2274W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02002275T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2276T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Marcel Holtmann63fbd242008-08-18 13:23:53 +02002277S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002278F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02002279
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002281M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07002282M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07002283M: Johan Hedberg <johan.hedberg@gmail.com>
Pavel Machek781c2842008-03-20 15:41:02 -07002284L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02002285W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02002286T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2287T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002289F: net/bluetooth/
2290F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292BONDING DRIVER
Jay Vosburgh79b30752014-03-27 10:33:44 -07002293M: Jay Vosburgh <j.vosburgh@gmail.com>
Veaceslav Falico898602a2014-03-27 18:43:50 +01002294M: Veaceslav Falico <vfalico@gmail.com>
Andy Gospodarek31639b92015-02-25 17:00:16 -05002295M: Andy Gospodarek <gospo@cumulusnetworks.com>
Simon Hormana6c36ee2010-11-21 09:58:04 -08002296L: netdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01002297W: http://sourceforge.net/projects/bonding/
2298S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002299F: drivers/net/bonding/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002300F: include/uapi/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301
Alexei Starovoitovb5f4df32014-07-22 23:01:59 -07002302BPF (Safe dynamic programs and tools)
2303M: Alexei Starovoitov <ast@kernel.org>
2304L: netdev@vger.kernel.org
2305L: linux-kernel@vger.kernel.org
2306S: Supported
2307F: kernel/bpf/
2308
Gary Zambrano39105892006-06-22 17:26:20 -07002309BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002310M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07002311L: netdev@vger.kernel.org
2312S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07002313F: drivers/net/ethernet/broadcom/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07002314
Florian Fainelli32ec90d2014-02-13 16:08:51 -08002315BROADCOM GENET ETHERNET DRIVER
2316M: Florian Fainelli <f.fainelli@gmail.com>
2317L: netdev@vger.kernel.org
2318S: Supported
2319F: drivers/net/ethernet/broadcom/genet/
2320
Michael Chan948c51e2006-06-04 02:51:39 -07002321BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Jitendra Kalsariaf1d1bae2014-06-23 15:10:35 -04002322M: Sony Chacko <sony.chacko@qlogic.com>
2323M: Dept-HSGLinuxNICDev@qlogic.com
Michael Chan948c51e2006-06-04 02:51:39 -07002324L: netdev@vger.kernel.org
2325S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07002326F: drivers/net/ethernet/broadcom/bnx2.*
2327F: drivers/net/ethernet/broadcom/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07002328
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08002329BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Ariel Elior08f6dd82014-05-27 13:11:36 +03002330M: Ariel Elior <ariel.elior@qlogic.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08002331L: netdev@vger.kernel.org
2332S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07002333F: drivers/net/ethernet/broadcom/bnx2x/
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08002334
Matt Porter90f4c592014-05-06 12:09:45 -04002335BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
Florian Fainellif18cf052014-09-19 11:17:12 -07002336M: Florian Fainelli <f.fainelli@gmail.com>
Florian Fainellid3cc2e82015-04-10 11:49:44 -07002337M: Ray Jui <rjui@broadcom.com>
2338M: Scott Branden <sbranden@broadcom.com>
Christian Daudt497a0452013-09-24 15:27:47 -07002339L: bcm-kernel-feedback-list@broadcom.com
Matt Porter90f4c592014-05-06 12:09:45 -04002340T: git git://github.com/broadcom/mach-bcm
Christian Daudtaf4b8e32013-09-11 14:23:49 -07002341S: Maintained
2342F: arch/arm/mach-bcm/
2343F: arch/arm/boot/dts/bcm113*
Matt Porter90f4c592014-05-06 12:09:45 -04002344F: arch/arm/boot/dts/bcm216*
Christian Daudtaf4b8e32013-09-11 14:23:49 -07002345F: arch/arm/boot/dts/bcm281*
2346F: arch/arm/configs/bcm_defconfig
Joe Perchese4ef47f2014-08-08 14:25:08 -07002347F: drivers/mmc/host/sdhci-bcm-kona.c
Christian Daudtaf4b8e32013-09-11 14:23:49 -07002348F: drivers/clocksource/bcm_kona_timer.c
2349
Scott Branden9209bec2014-10-16 21:57:16 -06002350BROADCOM BCM2835 ARM ARCHITECTURE
Stephen Warrenf680f252012-09-15 00:18:54 -06002351M: Stephen Warren <swarren@wwwdotorg.org>
Stephen Warren8bcdd922014-11-04 20:27:17 -07002352M: Lee Jones <lee@kernel.org>
Eric Anholt10b9e8872015-07-22 12:55:36 -07002353M: Eric Anholt <eric@anholt.net>
Stephen Warrenf680f252012-09-15 00:18:54 -06002354L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
Eric Anholt82481122015-07-22 12:55:37 -07002355L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Stephen Warren8bcdd922014-11-04 20:27:17 -07002356T: git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git
Stephen Warrenf680f252012-09-15 00:18:54 -06002357S: Maintained
Scott Branden9209bec2014-10-16 21:57:16 -06002358N: bcm2835
Stephen Warrenf680f252012-09-15 00:18:54 -06002359
Kevin Cernekeea2f67342014-10-20 21:28:06 -07002360BROADCOM BCM33XX MIPS ARCHITECTURE
2361M: Kevin Cernekee <cernekee@gmail.com>
2362L: linux-mips@linux-mips.org
2363S: Maintained
2364F: arch/mips/bcm3384/*
2365F: arch/mips/include/asm/mach-bcm3384/*
2366F: arch/mips/kernel/*bmips*
2367
Rafał Miłecki5564f092015-05-29 07:39:26 +02002368BROADCOM BCM47XX MIPS ARCHITECTURE
2369M: Hauke Mehrtens <hauke@hauke-m.de>
2370M: Rafał Miłecki <zajec5@gmail.com>
2371L: linux-mips@linux-mips.org
2372S: Maintained
2373F: arch/mips/bcm47xx/*
2374F: arch/mips/include/asm/mach-bcm47xx/*
2375
Scott Branden9209bec2014-10-16 21:57:16 -06002376BROADCOM BCM5301X ARM ARCHITECTURE
Hauke Mehrtens5b293eb2014-02-04 00:01:43 +01002377M: Hauke Mehrtens <hauke@hauke-m.de>
2378L: linux-arm-kernel@lists.infradead.org
2379S: Maintained
2380F: arch/arm/mach-bcm/bcm_5301x.c
2381F: arch/arm/boot/dts/bcm5301x.dtsi
2382F: arch/arm/boot/dts/bcm470*
2383
Florian Fainellie076e962014-03-04 18:14:58 -08002384BROADCOM BCM63XX ARM ARCHITECTURE
2385M: Florian Fainelli <f.fainelli@gmail.com>
2386L: linux-arm-kernel@lists.infradead.org
Florian Fainellieb6725d2015-01-29 15:21:56 -08002387T: git git://github.com/broadcom/arm-bcm63xx.git
Florian Fainellie076e962014-03-04 18:14:58 -08002388S: Maintained
2389F: arch/arm/mach-bcm/bcm63xx.c
2390F: arch/arm/include/debug/bcm63xx.S
2391
Kevin Cernekee7110e2272014-10-20 21:28:07 -07002392BROADCOM BCM63XX/BCM33XX UDC DRIVER
2393M: Kevin Cernekee <cernekee@gmail.com>
2394L: linux-usb@vger.kernel.org
2395S: Maintained
2396F: drivers/usb/gadget/udc/bcm63xx_udc.*
2397
Brian Norris2df94fd2014-07-14 18:06:03 -07002398BROADCOM BCM7XXX ARM ARCHITECTURE
Brian Norris2df94fd2014-07-14 18:06:03 -07002399M: Brian Norris <computersforpeace@gmail.com>
Florian Fainelli3b4b6fe2014-11-14 12:53:43 -08002400M: Gregory Fong <gregory.0xf0@gmail.com>
2401M: Florian Fainelli <f.fainelli@gmail.com>
Brian Norris2df94fd2014-07-14 18:06:03 -07002402L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Florian Fainelli1e65a342015-11-18 15:19:57 -08002403L: bcm-kernel-feedback-list@broadcom.com
Florian Fainellieb6725d2015-01-29 15:21:56 -08002404T: git git://github.com/broadcom/stblinux.git
Brian Norris2df94fd2014-07-14 18:06:03 -07002405S: Maintained
2406F: arch/arm/mach-bcm/*brcmstb*
2407F: arch/arm/boot/dts/bcm7*.dts*
Florian Fainellie36661e2014-11-14 12:53:44 -08002408F: drivers/bus/brcmstb_gisb.c
Brian Norris5009a282015-03-18 18:09:05 -07002409N: brcmstb
Brian Norris2df94fd2014-07-14 18:06:03 -07002410
Kevin Cernekee70371ce2014-11-15 16:17:45 -08002411BROADCOM BMIPS MIPS ARCHITECTURE
2412M: Kevin Cernekee <cernekee@gmail.com>
2413M: Florian Fainelli <f.fainelli@gmail.com>
2414L: linux-mips@linux-mips.org
Florian Fainellieb6725d2015-01-29 15:21:56 -08002415T: git git://github.com/broadcom/stblinux.git
Kevin Cernekee70371ce2014-11-15 16:17:45 -08002416S: Maintained
2417F: arch/mips/bmips/*
2418F: arch/mips/include/asm/mach-bmips/*
2419F: arch/mips/kernel/*bmips*
Joe Perches338808d2015-06-30 14:59:42 -07002420F: arch/mips/boot/dts/brcm/bcm*.dts*
Kevin Cernekee70371ce2014-11-15 16:17:45 -08002421F: drivers/irqchip/irq-bcm7*
2422F: drivers/irqchip/irq-brcmstb*
Simon Arlott3271e612015-12-13 22:45:30 +00002423F: include/linux/bcm963xx_nvram.h
Simon Arlott8fce60b2015-12-13 22:46:59 +00002424F: include/linux/bcm963xx_tag.h
Kevin Cernekee70371ce2014-11-15 16:17:45 -08002425
Michael Chan948c51e2006-06-04 02:51:39 -07002426BROADCOM TG3 GIGABIT ETHERNET DRIVER
Prashant Sreedharan23629472014-06-27 16:21:50 -07002427M: Prashant Sreedharan <prashant@broadcom.com>
Joe Perches8b58be82009-07-29 15:04:30 -07002428M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07002429L: netdev@vger.kernel.org
2430S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07002431F: drivers/net/ethernet/broadcom/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07002432
Henry Ptasinskia9533e72010-09-08 21:04:42 -07002433BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2434M: Brett Rudley <brudley@broadcom.com>
Henry Ptasinski818c07b2010-12-08 13:09:49 -08002435M: Arend van Spriel <arend@broadcom.com>
Roland Vossen85d63682011-06-01 13:44:56 +02002436M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
Arend van Spriel006a8f12012-11-28 21:44:04 +01002437M: Hante Meuleman <meuleman@broadcom.com>
Henry Ptasinskia9533e72010-09-08 21:04:42 -07002438L: linux-wireless@vger.kernel.org
Arend van Spriel56151712012-06-14 14:16:27 +02002439L: brcm80211-dev-list@broadcom.com
Henry Ptasinskia9533e72010-09-08 21:04:42 -07002440S: Supported
Kalle Valo05491d22015-11-17 19:52:05 +02002441F: drivers/net/wireless/broadcom/brcm80211/
Henry Ptasinskia9533e72010-09-08 21:04:42 -07002442
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07002443BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
Vikas Chaudhary3b7f0402014-07-03 08:18:29 -04002444M: QLogic-Storage-Upstream@qlogic.com
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07002445L: linux-scsi@vger.kernel.org
2446S: Supported
2447F: drivers/scsi/bnx2fc/
2448
Eddie Wai6a6b5ad02013-07-11 17:15:56 -07002449BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
Vikas Chaudhary3b7f0402014-07-03 08:18:29 -04002450M: QLogic-Storage-Upstream@qlogic.com
Eddie Wai6a6b5ad02013-07-11 17:15:56 -07002451L: linux-scsi@vger.kernel.org
2452S: Supported
2453F: drivers/scsi/bnx2i/
2454
Jon Mason63f37dd2015-08-26 18:35:30 -04002455BROADCOM IPROC ARM ARCHITECTURE
Scott Branden36c02372014-09-12 16:50:56 -07002456M: Ray Jui <rjui@broadcom.com>
2457M: Scott Branden <sbranden@broadcom.com>
Jon Mason63f37dd2015-08-26 18:35:30 -04002458M: Jon Mason <jonmason@broadcom.com>
Scott Branden36c02372014-09-12 16:50:56 -07002459L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2460L: bcm-kernel-feedback-list@broadcom.com
Florian Fainellieb6725d2015-01-29 15:21:56 -08002461T: git git://github.com/broadcom/cygnus-linux.git
Scott Branden36c02372014-09-12 16:50:56 -07002462S: Maintained
2463N: iproc
2464N: cygnus
Jon Mason63f37dd2015-08-26 18:35:30 -04002465N: nsp
Scott Branden36c02372014-09-12 16:50:56 -07002466N: bcm9113*
2467N: bcm9583*
Jon Mason63f37dd2015-08-26 18:35:30 -04002468N: bcm9585*
2469N: bcm9586*
2470N: bcm988312
Scott Branden36c02372014-09-12 16:50:56 -07002471N: bcm113*
Jon Mason63f37dd2015-08-26 18:35:30 -04002472N: bcm583*
2473N: bcm585*
2474N: bcm586*
2475N: bcm88312
Scott Branden36c02372014-09-12 16:50:56 -07002476
Gregory Fong3b0213d2015-05-28 19:14:05 -07002477BROADCOM BRCMSTB GPIO DRIVER
2478M: Gregory Fong <gregory.0xf0@gmail.com>
Florian Fainelli9c2abe22015-11-18 15:22:13 -08002479L: bcm-kernel-feedback-list@broadcom.com
Gregory Fong3b0213d2015-05-28 19:14:05 -07002480S: Supported
2481F: drivers/gpio/gpio-brcmstb.c
2482F: Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2483
Markus Mayer7b7f5882014-02-12 15:42:27 -08002484BROADCOM KONA GPIO DRIVER
Markus Mayer5e163902014-07-29 11:10:07 -07002485M: Ray Jui <rjui@broadcom.com>
Markus Mayer7b7f5882014-02-12 15:42:27 -08002486L: bcm-kernel-feedback-list@broadcom.com
2487S: Supported
2488F: drivers/gpio/gpio-bcm-kona.c
Joe Perches1db12cd2015-06-30 14:59:45 -07002489F: Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
Markus Mayer7b7f5882014-02-12 15:42:27 -08002490
Rafał Miłeckif6e734a2015-06-10 23:05:08 +02002491BROADCOM NVRAM DRIVER
2492M: Rafał Miłecki <zajec5@gmail.com>
2493L: linux-mips@linux-mips.org
2494S: Maintained
2495F: drivers/firmware/broadcom/*
2496
Brian Norris02787da2015-05-12 17:16:50 -07002497BROADCOM STB NAND FLASH DRIVER
2498M: Brian Norris <computersforpeace@gmail.com>
Kamal Dasu1ddaa022015-11-17 13:50:08 -05002499M: Kamal Dasu <kdasu.kdev@gmail.com>
Brian Norris02787da2015-05-12 17:16:50 -07002500L: linux-mtd@lists.infradead.org
Florian Fainelli12857342015-11-16 15:34:15 -08002501L: bcm-kernel-feedback-list@broadcom.com
Brian Norris02787da2015-05-12 17:16:50 -07002502S: Maintained
2503F: drivers/mtd/nand/brcmnand/
2504
Rafał Miłeckic9678d82012-01-13 22:55:05 +01002505BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2506M: Rafał Miłecki <zajec5@gmail.com>
2507L: linux-wireless@vger.kernel.org
2508S: Maintained
2509F: drivers/bcma/
2510F: include/linux/bcma/
2511
Florian Fainellib8302202014-04-24 18:09:00 -07002512BROADCOM SYSTEMPORT ETHERNET DRIVER
2513M: Florian Fainelli <f.fainelli@gmail.com>
2514L: netdev@vger.kernel.org
2515S: Supported
2516F: drivers/net/ethernet/broadcom/bcmsysport.*
2517
Jing Huang7725ccf2009-09-23 17:46:15 -07002518BROCADE BFA FC SCSI DRIVER
Anil Gurumurthyaa803372014-02-26 06:08:42 -05002519M: Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2520M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
Joe Perches455518e2009-11-11 14:26:10 -08002521L: linux-scsi@vger.kernel.org
2522S: Supported
2523F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07002524
Rasesh Mody8b230ed2010-08-23 20:24:12 -07002525BROCADE BNA 10 GIGABIT ETHERNET DRIVER
Rasesh Mody439e9572014-10-01 17:20:41 -04002526M: Rasesh Mody <rasesh.mody@qlogic.com>
Rasesh Mody8b230ed2010-08-23 20:24:12 -07002527L: netdev@vger.kernel.org
2528S: Supported
Jeff Kirsherf844a0e2011-05-13 01:00:03 -07002529F: drivers/net/ethernet/brocade/bna/
Rasesh Mody8b230ed2010-08-23 20:24:12 -07002530
Jens Axboe5cdf7f72007-07-17 08:58:06 +02002531BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07002532M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02002533L: linux-scsi@vger.kernel.org
2534S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002535F: block/bsg.c
2536F: include/linux/bsg.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002537F: include/uapi/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02002538
Clemens Ladischaf399172011-01-10 16:32:54 +01002539BT87X AUDIO DRIVER
2540M: Clemens Ladisch <clemens@ladisch.de>
2541L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2542T: git git://git.alsa-project.org/alsa-kernel.git
2543S: Maintained
2544F: Documentation/sound/alsa/Bt87x.txt
2545F: sound/pci/bt87x.c
2546
Michael Bueschff1d5c22008-07-25 01:46:10 -07002547BT8XXGPIO DRIVER
Michael Büscheb032b92011-07-04 20:50:05 +02002548M: Michael Buesch <m@bues.ch>
Michael Bueschff1d5c22008-07-25 01:46:10 -07002549W: http://bu3sch.de/btgpio.php
2550S: Maintained
Joe Perches72dbb702012-01-10 15:08:46 -08002551F: drivers/gpio/gpio-bt8xx.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07002552
Joe Percheseb1eb042009-01-21 10:49:16 -05002553BTRFS FILE SYSTEM
Chris Masonc0778e22013-12-03 20:16:03 -05002554M: Chris Mason <clm@fb.com>
2555M: Josef Bacik <jbacik@fb.com>
Jiri Slabyd8130622015-07-17 16:23:20 -07002556M: David Sterba <dsterba@suse.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05002557L: linux-btrfs@vger.kernel.org
2558W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08002559Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Liu Bo9c106402012-06-14 02:23:25 -06002560T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
Joe Percheseb1eb042009-01-21 10:49:16 -05002561S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002562F: Documentation/filesystems/btrfs.txt
2563F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05002564
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02002566M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002567L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02002568W: https://linuxtv.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02002569T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehabf96236e2012-11-02 11:14:18 -02002570S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07002571F: Documentation/video4linux/bttv/
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002572F: drivers/media/pci/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573
Khalid Aziz1f349232013-06-25 09:57:27 -06002574BUSLOGIC SCSI DRIVER
2575M: Khalid Aziz <khalid@gonehiking.org>
2576L: linux-scsi@vger.kernel.org
2577S: Maintained
2578F: drivers/scsi/BusLogic.*
2579F: drivers/scsi/FlashPoint.*
2580
Clemens Ladischaf399172011-01-10 16:32:54 +01002581C-MEDIA CMI8788 DRIVER
2582M: Clemens Ladisch <clemens@ladisch.de>
2583L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2584T: git git://git.alsa-project.org/alsa-kernel.git
2585S: Maintained
2586F: sound/pci/oxygen/
2587
Mark Salter21413552011-10-04 11:21:42 -04002588C6X ARCHITECTURE
2589M: Mark Salter <msalter@redhat.com>
2590M: Aurelien Jacquiot <a-jacquiot@ti.com>
2591L: linux-c6x-dev@linux-c6x.org
2592W: http://www.linux-c6x.org/wiki/index.php/Main_Page
2593S: Maintained
2594F: arch/c6x/
2595
David Howellsa5432f52009-04-20 15:46:45 +01002596CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07002597M: David Howells <dhowells@redhat.com>
Geert Uytterhoevene62d6e22015-11-12 11:46:33 +00002598L: linux-cachefs@redhat.com (moderated for non-subscribers)
David Howellsa5432f52009-04-20 15:46:45 +01002599S: Supported
2600F: Documentation/filesystems/caching/cachefiles.txt
2601F: fs/cachefiles/
2602
Hans Verkuilc815ca32012-11-23 07:05:54 -03002603CADET FM/AM RADIO RECEIVER DRIVER
2604M: Hans Verkuil <hverkuil@xs4all.nl>
2605L: linux-media@vger.kernel.org
2606T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02002607W: https://linuxtv.org
Hans Verkuilc815ca32012-11-23 07:05:54 -03002608S: Maintained
2609F: drivers/media/radio/radio-cadet*
2610
Jonathan Corbet77d51402007-03-22 19:44:17 -03002611CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002612M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002613L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02002614T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03002615S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002616F: Documentation/video4linux/cafe_ccic
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002617F: drivers/media/platform/marvell-ccic/
Jonathan Corbet77d51402007-03-22 19:44:17 -03002618
Joe Perches201b6ba2010-09-07 20:33:24 +00002619CAIF NETWORK LAYER
sjur.brandeland@stericsson.com5c574f52013-04-22 23:57:00 +00002620M: Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
Joe Perches201b6ba2010-09-07 20:33:24 +00002621L: netdev@vger.kernel.org
2622S: Supported
2623F: Documentation/networking/caif/
2624F: drivers/net/caif/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002625F: include/uapi/linux/caif/
Joe Perches201b6ba2010-09-07 20:33:24 +00002626F: include/net/caif/
2627F: net/caif/
2628
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02002629CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07002630M: Muli Ben-Yehuda <muli@il.ibm.com>
2631M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02002632L: discuss@x86-64.org
2633S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002634F: arch/x86/kernel/pci-calgary_64.c
2635F: arch/x86/kernel/tce_64.c
2636F: arch/x86/include/asm/calgary.h
2637F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02002638
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002639CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00002640M: Oliver Hartkopp <socketcan@hartkopp.net>
Marc Kleine-Buddef7214cf2015-03-06 09:00:38 +01002641M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00002642L: linux-can@vger.kernel.org
Marc Kleine-Budde84b0d712015-03-06 08:58:33 +01002643W: https://github.com/linux-can
Marc Kleine-Budde870482a2015-01-15 16:56:26 +01002644T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2645T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002646S: Maintained
John Whitmoref35f6c82013-12-06 12:49:08 +00002647F: Documentation/networking/can.txt
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00002648F: net/can/
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00002649F: include/linux/can/core.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002650F: include/uapi/linux/can.h
2651F: include/uapi/linux/can/bcm.h
2652F: include/uapi/linux/can/raw.h
2653F: include/uapi/linux/can/gw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002654
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00002655CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002656M: Wolfgang Grandegger <wg@grandegger.com>
Oliver Hartkoppec782132012-01-03 08:40:28 +00002657M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00002658L: linux-can@vger.kernel.org
Marc Kleine-Budde84b0d712015-03-06 08:58:33 +01002659W: https://github.com/linux-can
Marc Kleine-Budde870482a2015-01-15 16:56:26 +01002660T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2661T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00002662S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00002663F: drivers/net/can/
2664F: include/linux/can/dev.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00002665F: include/linux/can/platform/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002666F: include/uapi/linux/can/error.h
2667F: include/uapi/linux/can/netlink.h
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00002668
James Morris95d16c72012-03-16 12:05:48 +11002669CAPABILITIES
2670M: Serge Hallyn <serge.hallyn@canonical.com>
2671L: linux-security-module@vger.kernel.org
Joe Perches63059022012-06-07 14:21:10 -07002672S: Supported
James Morris95d16c72012-03-16 12:05:48 +11002673F: include/linux/capability.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002674F: include/uapi/linux/capability.h
Joe Perches63059022012-06-07 14:21:10 -07002675F: security/commoncap.c
James Morris38a94112012-04-09 11:03:36 +10002676F: kernel/capability.c
James Morris95d16c72012-03-16 12:05:48 +11002677
Kevin Tsaib84894c2015-01-15 17:41:04 -08002678CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
2679M: Kevin Tsai <ktsai@capellamicro.com>
2680S: Maintained
2681F: drivers/iio/light/cm*
2682F: Documentation/devicetree/bindings/i2c/trivial-devices.txt
2683
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002684CAVIUM LIQUIDIO NETWORK DRIVER
2685M: Derek Chickles <derek.chickles@caviumnetworks.com>
2686M: Satanand Burla <satananda.burla@caviumnetworks.com>
2687M: Felix Manlunas <felix.manlunas@caviumnetworks.com>
2688M: Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
2689L: netdev@vger.kernel.org
2690W: http://www.cavium.com
2691S: Supported
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002692F: drivers/net/ethernet/cavium/liquidio/
2693
Varka Bhadramef0bbac2014-10-29 16:15:22 +05302694CC2520 IEEE-802.15.4 RADIO DRIVER
2695M: Varka Bhadram <varkabhadram@gmail.com>
2696L: linux-wpan@vger.kernel.org
2697S: Maintained
2698F: drivers/net/ieee802154/cc2520.c
2699F: include/linux/spi/cc2520.h
2700F: Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
2701
Arnd Bergmannb8154542008-05-16 11:10:59 +02002702CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07002703M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002704L: linuxppc-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02002705W: http://www.ibm.com/developerworks/power/cell/
2706S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002707F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07002708F: arch/powerpc/include/asm/spu*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002709F: arch/powerpc/include/uapi/asm/spu*.h
Joe Perches679655d2009-04-07 20:44:32 -07002710F: arch/powerpc/oprofile/*cell*
2711F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02002712
Sage Weil398ecff52015-07-09 11:46:14 -04002713CEPH COMMON CODE (LIBCEPH)
2714M: Ilya Dryomov <idryomov@gmail.com>
Joe Perchese43cdb52015-06-25 15:02:03 -07002715M: "Yan, Zheng" <zyan@redhat.com>
Sage Weil0f5417c2015-02-19 10:10:40 -08002716M: Sage Weil <sage@redhat.com>
Sage Weil82593f82010-03-29 09:53:23 -07002717L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07002718W: http://ceph.com/
Sage Weilfb99f882009-12-03 15:04:08 -08002719T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil6e67b7a2015-07-09 11:47:37 -04002720T: git git://github.com/ceph/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07002721S: Supported
Joe Perches14430812013-09-11 14:23:50 -07002722F: net/ceph/
2723F: include/linux/ceph/
2724F: include/linux/crush/
Sage Weil9030aaf2009-10-06 11:31:15 -07002725
Sage Weil398ecff52015-07-09 11:46:14 -04002726CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
2727M: "Yan, Zheng" <zyan@redhat.com>
2728M: Sage Weil <sage@redhat.com>
2729M: Ilya Dryomov <idryomov@gmail.com>
2730L: ceph-devel@vger.kernel.org
2731W: http://ceph.com/
2732T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil6e67b7a2015-07-09 11:47:37 -04002733T: git git://github.com/ceph/ceph-client.git
Sage Weil398ecff52015-07-09 11:46:14 -04002734S: Supported
2735F: Documentation/filesystems/ceph.txt
2736F: fs/ceph/
2737
David Howellscfc411e2015-08-14 15:20:41 +01002738CERTIFICATE HANDLING:
2739M: David Howells <dhowells@redhat.com>
2740M: David Woodhouse <dwmw2@infradead.org>
David Howellsd8d80382016-01-14 15:50:20 +00002741L: keyrings@vger.kernel.org
David Howellscfc411e2015-08-14 15:20:41 +01002742S: Maintained
2743F: Documentation/module-signing.txt
2744F: certs/
David Howellsd8d80382016-01-14 15:50:20 +00002745F: scripts/sign-file.c
David Howellscfc411e2015-08-14 15:20:41 +01002746F: scripts/extract-cert.c
2747
David Vrabel18332a82008-09-17 16:34:44 +01002748CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01002749L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01002750S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002751F: Documentation/usb/WUSB-Design-overview.txt
2752F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00002753F: drivers/usb/host/hwa-hc.c
2754F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07002755F: drivers/usb/wusbcore/
2756F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01002757
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002758CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002759M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07002760W: http://miguelojeda.es/auxdisplay.htm
2761W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002762S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002763F: drivers/auxdisplay/cfag12864b.c
2764F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002765
2766CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002767M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07002768W: http://miguelojeda.es/auxdisplay.htm
2769W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002770S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002771F: drivers/auxdisplay/cfag12864bfb.c
2772F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002773
Johannes Berg704232c2007-04-23 12:20:05 -07002774CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07002775M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07002776L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02002777W: http://wireless.kernel.org/
2778T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2779T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Johannes Berg704232c2007-04-23 12:20:05 -07002780S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002781F: include/uapi/linux/nl80211.h
Joe Perches679655d2009-04-07 20:44:32 -07002782F: include/net/cfg80211.h
2783F: net/wireless/*
2784X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07002785
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002786CHAR and MISC DRIVERS
2787M: Arnd Bergmann <arnd@arndb.de>
Greg KH879a5a02012-01-31 20:02:00 -08002788M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002789T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Greg KH879a5a02012-01-31 20:02:00 -08002790S: Supported
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002791F: drivers/char/*
2792F: drivers/misc/*
Robert P. J. Day471322a2014-05-16 04:41:09 -04002793F: include/linux/miscdevice.h
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002794
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002795CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07002796M: Andy Whitcroft <apw@canonical.com>
Joe Perches10d83f02013-02-21 16:44:15 -08002797M: Joe Perches <joe@perches.com>
2798S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002799F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002800
Harry Weif8407f22011-02-25 14:44:15 -08002801CHINESE DOCUMENTATION
2802M: Harry Wei <harryxiyou@gmail.com>
Joe Perches97401532012-12-17 16:00:00 -08002803L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
Harry Weif8407f22011-02-25 14:44:15 -08002804L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
2805S: Maintained
2806F: Documentation/zh_CN/
2807
Alexander Shishkin2721ea22012-05-11 17:25:59 +03002808CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
Peter Chen60d77b32015-12-25 15:54:32 +08002809M: Peter Chen <Peter.Chen@nxp.com>
Peter Chen83738562015-03-23 19:57:36 +08002810T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
Alexander Shishkin2721ea22012-05-11 17:25:59 +03002811L: linux-usb@vger.kernel.org
2812S: Maintained
2813F: drivers/usb/chipidea/
2814
Hans de Goedea93ad652015-03-21 20:40:45 -07002815CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
2816M: Hans de Goede <hdegoede@redhat.com>
2817L: linux-input@vger.kernel.org
2818S: Maintained
2819F: Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
2820F: drivers/input/touchscreen/chipone_icn8318.c
2821
Olof Johanssonab043102013-11-07 14:25:45 -08002822CHROME HARDWARE PLATFORM SUPPORT
2823M: Olof Johansson <olof@lixom.net>
2824S: Maintained
Fengguang Wu9f273c22016-01-20 15:03:25 -08002825T: git git://git.kernel.org/pub/scm/linux/kernel/git/olof/chrome-platform.git
Olof Johanssonab043102013-11-07 14:25:45 -08002826F: drivers/platform/chrome/
2827
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00002828CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri2360d2e2011-02-04 16:17:26 +00002829M: Christian Benvenuti <benve@cisco.com>
govindarajulu.v001e1c12013-09-04 11:17:18 +05302830M: Sujith Sankar <ssujith@cisco.com>
Govindarajulu Varadarajanc327e8f2014-05-20 03:14:32 +05302831M: Govindarajulu Varadarajan <_govind@gmx.com>
Neel Patel5c6652f2012-02-03 08:25:25 +00002832M: Neel Patel <neepatel@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08002833S: Supported
Jeff Kirshera6a55802011-05-13 22:20:35 -07002834F: drivers/net/ethernet/cisco/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08002835
Upinder Malhie3cf00d2013-09-10 03:38:16 +00002836CISCO VIC LOW LATENCY NIC DRIVER
Dave Goodell \(dgoodell\)35ef4a92015-10-15 20:01:29 -07002837M: Christian Benvenuti <benve@cisco.com>
2838M: Dave Goodell <dgoodell@cisco.com>
Joe Perchesb75f0052014-03-03 15:38:37 -08002839S: Supported
Dave Goodell \(dgoodell\)35ef4a92015-10-15 20:01:29 -07002840F: drivers/infiniband/hw/usnic/
Upinder Malhie3cf00d2013-09-10 03:38:16 +00002841
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002842CIRRUS LOGIC EP93XX ETHERNET DRIVER
H Hartley Sweeten55879122011-06-09 15:00:21 -07002843M: Hartley Sweeten <hsweeten@visionengravers.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002844L: netdev@vger.kernel.org
2845S: Maintained
Jeff Kirsher57d0b7a2011-07-16 23:50:52 -07002846F: drivers/net/ethernet/cirrus/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002847
Mark Brown3d4cfdc2014-02-04 20:28:12 +00002848CIRRUS LOGIC AUDIO CODEC DRIVERS
2849M: Brian Austin <brian.austin@cirrus.com>
2850M: Paul Handrigan <Paul.Handrigan@cirrus.com>
2851L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2852S: Maintained
2853F: sound/soc/codecs/cs*
2854
Konrad Rzeszutek Wilk94574d92012-03-19 11:47:18 -04002855CLEANCACHE API
2856M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2857L: linux-kernel@vger.kernel.org
2858S: Maintained
2859F: mm/cleancache.c
2860F: include/linux/cleancache.h
2861
Russell Kingd4275352009-04-16 14:05:27 +01002862CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07002863M: Russell King <linux@arm.linux.org.uk>
Paul Walmsleyaa571b12015-03-25 18:32:59 +00002864L: linux-clk@vger.kernel.org
Joe Perches37417042012-03-23 15:01:58 -07002865S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01002866F: include/linux/clk.h
2867
John Stultz9222d242013-07-16 16:45:31 +02002868CLOCKSOURCE, CLOCKEVENT DRIVERS
2869M: Daniel Lezcano <daniel.lezcano@linaro.org>
2870M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar981c3a42014-01-21 10:59:20 +01002871L: linux-kernel@vger.kernel.org
John Stultz9222d242013-07-16 16:45:31 +02002872T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
2873S: Supported
2874F: drivers/clocksource
2875
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002876CISCO FCOE HBA DRIVER
Hiral Patel8fc89a72012-12-10 01:21:29 -08002877M: Hiral Patel <hiralpat@cisco.com>
2878M: Suma Ramars <sramars@cisco.com>
Abhijeet Joglekard7e01dc2011-06-13 21:21:17 -07002879M: Brian Uchino <buchino@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002880L: linux-scsi@vger.kernel.org
2881S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07002882F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002883
Narsimhulu Musinic8806b62015-05-29 01:04:01 -07002884CISCO SCSI HBA DRIVER
2885M: Narsimhulu Musini <nmusini@cisco.com>
2886M: Sesidhar Baddela <sebaddel@cisco.com>
2887L: linux-scsi@vger.kernel.org
2888S: Supported
2889F: drivers/scsi/snic/
2890
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002891CMPC ACPI DRIVER
2892M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2893M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd0944852010-02-11 10:40:13 -05002894L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002895S: Supported
2896F: drivers/platform/x86/classmate-laptop.c
2897
Hans Verkuil85756a02015-05-12 08:52:21 -03002898COBALT MEDIA DRIVER
2899M: Hans Verkuil <hans.verkuil@cisco.com>
2900L: linux-media@vger.kernel.org
2901T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02002902W: https://linuxtv.org
Hans Verkuil85756a02015-05-12 08:52:21 -03002903S: Supported
2904F: drivers/media/pci/cobalt/
2905
Nicolas Palix74425ee2010-06-06 17:15:01 +02002906COCCINELLE/Semantic Patches (SmPL)
Nicolas Palix26de9c22012-09-20 22:52:42 +02002907M: Julia Lawall <Julia.Lawall@lip6.fr>
Nicolas Palix74425ee2010-06-06 17:15:01 +02002908M: Gilles Muller <Gilles.Muller@lip6.fr>
Nicolas Palix26de9c22012-09-20 22:52:42 +02002909M: Nicolas Palix <nicolas.palix@imag.fr>
Jiri Slabyd8130622015-07-17 16:23:20 -07002910M: Michal Marek <mmarek@suse.com>
Nicolas Palix26de9c22012-09-20 22:52:42 +02002911L: cocci@systeme.lip6.fr (moderated for non-subscribers)
Nicolas Palixc00b5112013-06-06 23:39:53 +02002912T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
Nicolas Palix74425ee2010-06-06 17:15:01 +02002913W: http://coccinelle.lip6.fr/
2914S: Supported
Nicolas Palix4b92b2a2013-06-20 13:10:55 +02002915F: Documentation/coccinelle.txt
Nicolas Palix74425ee2010-06-06 17:15:01 +02002916F: scripts/coccinelle/
2917F: scripts/coccicheck
2918
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002920M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921M: coda@cs.cmu.edu
2922L: codalist@coda.cs.cmu.edu
2923W: http://www.coda.cs.cmu.edu/
2924S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002925F: Documentation/filesystems/coda.txt
2926F: fs/coda/
2927F: include/linux/coda*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002928F: include/uapi/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929
Philipp Zabel0b142612014-11-04 07:26:35 -03002930CODA V4L2 MEM2MEM DRIVER
2931M: Philipp Zabel <p.zabel@pengutronix.de>
2932L: linux-media@vger.kernel.org
2933S: Maintained
2934F: Documentation/devicetree/bindings/media/coda.txt
2935F: drivers/media/platform/coda/
2936
Mike Turquette7704add2012-05-02 18:37:45 -07002937COMMON CLK FRAMEWORK
Michael Turquettea85fa002015-06-17 13:41:04 -07002938M: Michael Turquette <mturquette@baylibre.com>
Michael Turquettef9561652014-11-12 16:43:47 -08002939M: Stephen Boyd <sboyd@codeaurora.org>
Paul Walmsleyaa571b12015-03-25 18:32:59 +00002940L: linux-clk@vger.kernel.org
Michael Turquettebaeb0d92014-11-13 17:18:20 -08002941T: git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
Mike Turquette7704add2012-05-02 18:37:45 -07002942S: Maintained
Stephen Warren60bea3b2013-06-05 09:50:30 -06002943F: drivers/clk/
2944X: drivers/clk/clkdev.c
Mike Turquette7704add2012-05-02 18:37:45 -07002945F: include/linux/clk-pr*
Stephen Warren60bea3b2013-06-05 09:50:30 -06002946F: include/linux/clk/
Mike Turquette7704add2012-05-02 18:37:45 -07002947
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002948COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07002949M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04002950L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08002951L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002952W: http://linux-cifs.samba.org/
Kevin Cernekeebb1d5dd2014-11-10 13:09:24 -08002953T: git git://git.samba.org/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002954S: Supported
Joe Perchesec421a72014-08-08 14:24:59 -07002955F: Documentation/filesystems/cifs/
Joe Perches679655d2009-04-07 20:44:32 -07002956F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002957
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002959M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002960L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002961S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002962F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963
2964COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002965M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002966L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002967S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002968F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969
2970COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002971M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002972L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002973S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002974F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002976COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002977M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05002978L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002979S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002980F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002981
Simon Arlott949be0f2007-03-06 02:47:46 -08002982CONEXANT ACCESSRUNNER USB DRIVER
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02002983L: accessrunner-general@lists.sourceforge.net
2984W: http://accessrunner.sourceforge.net/
Simon Arlott44243ef2015-11-15 17:12:08 +00002985S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002986F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08002987
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002988CONFIGFS
Joel Beckerd6351db2011-01-07 18:10:32 -08002989M: Joel Becker <jlbec@evilplan.org>
Christoph Hellwig1609bac2016-01-04 12:33:13 +01002990M: Christoph Hellwig <hch@lst.de>
2991T: git git://git.infradead.org/users/hch/configfs.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002992S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002993F: fs/configfs/
2994F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002995
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002996CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07002997M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002998L: netdev@vger.kernel.org
2999S: Maintained
3000F: drivers/connector/
3001
Tejun Heoa3e33542014-05-13 15:49:58 -04003002CONTROL GROUP (CGROUP)
Paul Menage860ca0e2011-11-18 14:22:09 -08003003M: Tejun Heo <tj@kernel.org>
Li Zefanad50c152012-03-29 08:53:30 -07003004M: Li Zefan <lizefan@huawei.com>
Tejun Heo4d205672015-06-12 17:15:23 -05003005M: Johannes Weiner <hannes@cmpxchg.org>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08003006L: cgroups@vger.kernel.org
Paul Menage860ca0e2011-11-18 14:22:09 -08003007T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
Paul Menagefb3a0fb2008-03-04 14:28:28 -08003008S: Maintained
Tejun Heoa3e33542014-05-13 15:49:58 -04003009F: Documentation/cgroups/
Joe Perches679655d2009-04-07 20:44:32 -07003010F: include/linux/cgroup*
3011F: kernel/cgroup*
Tejun Heoa3e33542014-05-13 15:49:58 -04003012
3013CONTROL GROUP - CPUSET
3014M: Li Zefan <lizefan@huawei.com>
3015L: cgroups@vger.kernel.org
3016W: http://www.bullopensource.org/cpuset/
3017W: http://oss.sgi.com/projects/cpusets/
3018T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3019S: Maintained
3020F: Documentation/cgroups/cpusets.txt
3021F: include/linux/cpuset.h
3022F: kernel/cpuset.c
3023
3024CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
3025M: Johannes Weiner <hannes@cmpxchg.org>
Michal Hockofbd7dc72015-07-17 16:23:26 -07003026M: Michal Hocko <mhocko@kernel.org>
Johannes Weinered0f1e22015-12-11 13:40:35 -08003027M: Vladimir Davydov <vdavydov@virtuozzo.com>
Tejun Heoa3e33542014-05-13 15:49:58 -04003028L: cgroups@vger.kernel.org
3029L: linux-mm@kvack.org
3030S: Maintained
3031F: mm/memcontrol.c
Johannes Weiner5d1ea482014-12-10 15:44:55 -08003032F: mm/swap_cgroup.c
Paul Menagefb3a0fb2008-03-04 14:28:28 -08003033
Rudolf Marekbebe4672007-05-08 17:22:02 +02003034CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02003035M: Fenghua Yu <fenghua.yu@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02003036L: lm-sensors@lm-sensors.org
3037S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003038F: Documentation/hwmon/coretemp
3039F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02003040
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003042M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043W: http://www.fi.muni.cz/~kas/cosa/
3044S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003045F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046
Florian Fainelli4371ee32009-06-01 02:43:17 -07003047CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003048M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07003049L: netdev@vger.kernel.org
3050S: Maintained
Jeff Kirsherb544dba2011-06-14 12:56:50 -07003051F: drivers/net/ethernet/ti/cpmac.c
Florian Fainelli4371ee32009-06-01 02:43:17 -07003052
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053CPU FREQUENCY DRIVERS
Joe Perches9c3646d2015-06-25 15:02:00 -07003054M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
viresh kumar45c009a2013-04-26 12:53:16 +00003055M: Viresh Kumar <viresh.kumar@linaro.org>
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02003056L: linux-pm@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057S: Maintained
Viresh Kumar27209d92013-05-29 12:23:14 +05303058T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3059T: git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
Joe Perches679655d2009-04-07 20:44:32 -07003060F: drivers/cpufreq/
3061F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062
Viresh Kumar8a67f0e2013-04-01 12:57:49 +00003063CPU FREQUENCY DRIVERS - ARM BIG LITTLE
3064M: Viresh Kumar <viresh.kumar@linaro.org>
Sudeep Holla171d0ba2014-02-11 11:42:32 +00003065M: Sudeep Holla <sudeep.holla@arm.com>
Viresh Kumar8a67f0e2013-04-01 12:57:49 +00003066L: linux-pm@vger.kernel.org
3067W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php
3068S: Maintained
3069F: drivers/cpufreq/arm_big_little.h
3070F: drivers/cpufreq/arm_big_little.c
3071F: drivers/cpufreq/arm_big_little_dt.c
3072
Lorenzo Pieralisi14d2c342013-06-12 17:40:01 +02003073CPUIDLE DRIVER - ARM BIG LITTLE
Joe Perchesb75f0052014-03-03 15:38:37 -08003074M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
3075M: Daniel Lezcano <daniel.lezcano@linaro.org>
3076L: linux-pm@vger.kernel.org
3077L: linux-arm-kernel@lists.infradead.org
Joe Perchescea83212014-03-03 15:38:38 -08003078T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
Joe Perchesb75f0052014-03-03 15:38:37 -08003079S: Maintained
3080F: drivers/cpuidle/cpuidle-big_little.c
Lorenzo Pieralisi14d2c342013-06-12 17:40:01 +02003081
Bartlomiej Zolnierkiewicz0c570c12014-12-02 16:41:35 +01003082CPUIDLE DRIVER - ARM EXYNOS
3083M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
3084M: Daniel Lezcano <daniel.lezcano@linaro.org>
3085M: Kukjin Kim <kgene@kernel.org>
3086L: linux-pm@vger.kernel.org
3087L: linux-samsung-soc@vger.kernel.org
3088S: Supported
3089F: drivers/cpuidle/cpuidle-exynos.c
3090F: arch/arm/mach-exynos/pm.c
3091
Daniel Lezcanoa8e39c32013-04-26 11:05:44 +00003092CPUIDLE DRIVERS
Joe Perches9c3646d2015-06-25 15:02:00 -07003093M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Daniel Lezcanoa8e39c32013-04-26 11:05:44 +00003094M: Daniel Lezcano <daniel.lezcano@linaro.org>
3095L: linux-pm@vger.kernel.org
3096S: Maintained
Joe Perchescea83212014-03-03 15:38:38 -08003097T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
Daniel Lezcanoa8e39c32013-04-26 11:05:44 +00003098F: drivers/cpuidle/*
3099F: include/linux/cpuidle.h
3100
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003102M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003104F: arch/x86/kernel/cpuid.c
3105F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02003107CPU POWER MONITORING SUBSYSTEM
Jiri Slabyd8130622015-07-17 16:23:20 -07003108M: Thomas Renninger <trenn@suse.com>
Thomas Renninger103f1792014-07-22 16:06:01 +02003109L: linux-pm@vger.kernel.org
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02003110S: Maintained
Joe Perches14430812013-09-11 14:23:50 -07003111F: tools/power/cpupower/
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02003112
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01003114W: http://sourceforge.net/projects/cramfs/
Michael Opdenacker54886a72013-11-12 15:08:35 -08003115S: Orphan / Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07003116F: Documentation/filesystems/cramfs.txt
3117F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118
3119CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003120M: Mikael Starvik <starvik@axis.com>
3121M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02003122L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123W: http://developer.axis.com
Fengguang Wu9f273c22016-01-20 15:03:25 -08003124T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesper/cris.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003126F: arch/cris/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003127F: drivers/tty/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128
3129CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07003130M: Herbert Xu <herbert@gondor.apana.org.au>
3131M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003132L: linux-crypto@vger.kernel.org
Fengguang Wu9f273c22016-01-20 15:03:25 -08003133T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
Joe Perches54e58812009-04-07 21:08:10 -07003134T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003136F: Documentation/crypto/
Stephan Mueller2ca87a12015-03-06 21:36:21 +01003137F: Documentation/DocBook/crypto-API.tmpl
Joe Perches679655d2009-04-07 20:44:32 -07003138F: arch/*/crypto/
3139F: crypto/
3140F: drivers/crypto/
3141F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142
Neil Horman5b07bd52009-02-05 16:03:04 +11003143CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003144M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11003145L: linux-crypto@vger.kernel.org
3146S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07003147F: crypto/ansi_cprng.c
3148F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11003149
Hans Verkuilfc279cc2015-11-30 18:05:54 -02003150CS3308 MEDIA DRIVER
3151M: Hans Verkuil <hverkuil@xs4all.nl>
3152L: linux-media@vger.kernel.org
3153T: git git://linuxtv.org/media_tree.git
3154W: http://linuxtv.org
3155S: Odd Fixes
3156F: drivers/media/i2c/cs3308.c
3157F: drivers/media/i2c/cs3308.h
3158
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01003159CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07003160M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01003161S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003162F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01003163
Solomon Peachya910e4a2013-05-24 20:04:38 -04003164CW1200 WLAN driver
Joe Perchesb75f0052014-03-03 15:38:37 -08003165M: Solomon Peachy <pizza@shaftnet.org>
3166S: Maintained
Kalle Valo560424e2015-11-17 20:09:02 +02003167F: drivers/net/wireless/st/cw1200/
Solomon Peachya910e4a2013-05-24 20:04:38 -04003168
Hans Verkuil6d8425b2008-05-05 18:25:22 -03003169CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03003170M: Andy Walls <awalls@md.metrocast.net>
Joe Perches7b212ed2014-12-10 15:51:24 -08003171L: ivtv-devel@ivtvdriver.org (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003172L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003173T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003174W: https://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07003175W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b2008-05-05 18:25:22 -03003176S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003177F: Documentation/video4linux/cx18.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03003178F: drivers/media/pci/cx18/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02003179F: include/uapi/linux/ivtv*
Hans Verkuil6d8425b2008-05-05 18:25:22 -03003180
Hans Verkuil3f101d92012-11-23 07:00:02 -03003181CX2341X MPEG ENCODER HELPER MODULE
3182M: Hans Verkuil <hverkuil@xs4all.nl>
3183L: linux-media@vger.kernel.org
3184T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003185W: https://linuxtv.org
Hans Verkuil3f101d92012-11-23 07:00:02 -03003186S: Maintained
Cesar Eduardo Barrosc368360b2013-03-02 21:53:42 -03003187F: drivers/media/common/cx2341x*
Hans Verkuil3f101d92012-11-23 07:00:02 -03003188F: include/media/cx2341x*
3189
Patrick Boettcherb8fe6e22015-04-28 02:53:13 -03003190CX24120 MEDIA DRIVER
3191M: Jemma Denson <jdenson@gmail.com>
3192M: Patrick Boettcher <patrick.boettcher@posteo.de>
3193L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003194W: https://linuxtv.org
Patrick Boettcherb8fe6e22015-04-28 02:53:13 -03003195Q: http://patchwork.linuxtv.org/project/linux-media/list/
3196S: Maintained
3197F: drivers/media/dvb-frontends/cx24120*
3198
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02003199CX88 VIDEO4LINUX DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02003200M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02003201L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003202W: https://linuxtv.org
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02003203T: git git://linuxtv.org/media_tree.git
3204S: Odd fixes
3205F: Documentation/video4linux/cx88/
3206F: drivers/media/pci/cx88/
Knut Petersen9fa68ea2005-09-09 13:04:56 -07003207
Antti Palosaari91952bc2012-10-01 12:28:46 -03003208CXD2820R MEDIA DRIVER
3209M: Antti Palosaari <crope@iki.fi>
3210L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003211W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03003212W: http://palosaari.fi/linux/
3213Q: http://patchwork.linuxtv.org/project/linux-media/list/
3214T: git git://linuxtv.org/anttip/media_tree.git
3215S: Maintained
3216F: drivers/media/dvb-frontends/cxd2820r*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07003217
Steve Wisee5ec3782008-05-20 14:06:33 -07003218CXGB3 ETHERNET DRIVER (CXGB3)
Divy Le Raycdc99232013-11-11 15:01:39 -08003219M: Santosh Raspatur <santosh@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07003220L: netdev@vger.kernel.org
3221W: http://www.chelsio.com
3222S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07003223F: drivers/net/ethernet/chelsio/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07003224
Anish Bhattd8ae3c32014-11-04 15:19:22 -08003225CXGB3 ISCSI DRIVER (CXGB3I)
Joe Perches49e7d9d2015-04-15 16:17:31 -07003226M: Karen Xie <kxie@chelsio.com>
3227L: linux-scsi@vger.kernel.org
3228W: http://www.chelsio.com
3229S: Supported
3230F: drivers/scsi/cxgbi/cxgb3i
Anish Bhattd8ae3c32014-11-04 15:19:22 -08003231
Steve Wisee5ec3782008-05-20 14:06:33 -07003232CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07003233M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003234L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07003235W: http://www.openfabrics.org
3236S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003237F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07003238
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003239CXGB4 ETHERNET DRIVER (CXGB4)
Dimitris Michailidis56f16c72014-06-13 14:11:14 -07003240M: Hariprasad S <hariprasad@chelsio.com>
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003241L: netdev@vger.kernel.org
3242W: http://www.chelsio.com
3243S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07003244F: drivers/net/ethernet/chelsio/cxgb4/
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003245
Anish Bhattd8ae3c32014-11-04 15:19:22 -08003246CXGB4 ISCSI DRIVER (CXGB4I)
Joe Perches49e7d9d2015-04-15 16:17:31 -07003247M: Karen Xie <kxie@chelsio.com>
3248L: linux-scsi@vger.kernel.org
3249W: http://www.chelsio.com
3250S: Supported
3251F: drivers/scsi/cxgbi/cxgb4i
Anish Bhattd8ae3c32014-11-04 15:19:22 -08003252
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003253CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3254M: Steve Wise <swise@chelsio.com>
3255L: linux-rdma@vger.kernel.org
3256W: http://www.openfabrics.org
3257S: Supported
3258F: drivers/infiniband/hw/cxgb4/
3259
Casey Leedom5c20a5c2010-07-19 17:55:33 -07003260CXGB4VF ETHERNET DRIVER (CXGB4VF)
3261M: Casey Leedom <leedom@chelsio.com>
3262L: netdev@vger.kernel.org
3263W: http://www.chelsio.com
3264S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07003265F: drivers/net/ethernet/chelsio/cxgb4vf/
Casey Leedom5c20a5c2010-07-19 17:55:33 -07003266
Ian Munsiea9282d02014-10-08 19:55:05 +11003267CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3268M: Ian Munsie <imunsie@au1.ibm.com>
3269M: Michael Neuling <mikey@neuling.org>
3270L: linuxppc-dev@lists.ozlabs.org
3271S: Supported
3272F: drivers/misc/cxl/
Michael Neulingec249dd2015-05-27 16:07:16 +10003273F: include/misc/cxl*
Ian Munsiea9282d02014-10-08 19:55:05 +11003274F: include/uapi/misc/cxl.h
3275F: Documentation/powerpc/cxl.txt
3276F: Documentation/powerpc/cxl.txt
3277F: Documentation/ABI/testing/sysfs-class-cxl
3278
Matthew R. Ochs11f43ae2015-10-21 15:15:22 -05003279CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
3280M: Manoj N. Kumar <manoj@linux.vnet.ibm.com>
3281M: Matthew R. Ochs <mrochs@linux.vnet.ibm.com>
3282L: linux-scsi@vger.kernel.org
3283S: Supported
3284F: drivers/scsi/cxlflash/
3285F: include/uapi/scsi/cxlflash_ioctls.h
3286F: Documentation/powerpc/cxlflash.txt
3287
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08003288STMMAC ETHERNET DRIVER
3289M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
3290L: netdev@vger.kernel.org
3291W: http://www.stlinux.com
3292S: Supported
Jeff Kirsher7ac66532011-05-16 00:05:19 -07003293F: drivers/net/ethernet/stmicro/stmmac/
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08003294
Linus Torvalds1da177e2005-04-16 15:20:36 -07003295CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003296M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07003297L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298W: http://www.arm.linux.org.uk/
3299S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09003300F: drivers/video/fbdev/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07003301
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08003304S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07003305F: drivers/tty/cyclades.c
Joe Perches679655d2009-04-07 20:44:32 -07003306F: include/linux/cyclades.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003307F: include/uapi/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003308
3309CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08003311S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003312F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313
Antti Palosaari402f6ae2013-04-09 21:30:41 -03003314CYPRESS_FIRMWARE MEDIA DRIVER
3315M: Antti Palosaari <crope@iki.fi>
3316L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003317W: https://linuxtv.org
Antti Palosaari402f6ae2013-04-09 21:30:41 -03003318W: http://palosaari.fi/linux/
3319Q: http://patchwork.linuxtv.org/project/linux-media/list/
3320T: git git://linuxtv.org/anttip/media_tree.git
3321S: Maintained
3322F: drivers/media/common/cypress_firmware*
3323
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08003324CYTTSP TOUCHSCREEN DRIVER
Javier Martinez Canillasbe9a6f42013-08-29 08:43:58 -07003325M: Ferruh Yigit <fery@cypress.com>
Joe Perches63059022012-06-07 14:21:10 -07003326L: linux-input@vger.kernel.org
Javier Martinez Canillasbe9a6f42013-08-29 08:43:58 -07003327S: Supported
Joe Perches63059022012-06-07 14:21:10 -07003328F: drivers/input/touchscreen/cyttsp*
3329F: include/linux/input/cyttsp.h
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08003330
Joshua Kinardaaaf5fb2015-02-16 16:00:26 -08003331DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3332M: Joshua Kinard <kumba@gentoo.org>
3333S: Maintained
3334F: drivers/rtc/rtc-ds1685.c
3335F: include/linux/rtc/ds1685.h
3336
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07003338M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339W: http://yaina.de/jreuter/
3340W: http://www.qsl.net/dl1bke/
3341L: linux-hams@vger.kernel.org
3342S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003343F: net/ax25/af_ax25.c
3344F: net/ax25/ax25_dev.c
3345F: net/ax25/ax25_ds_*
3346F: net/ax25/ax25_in.c
3347F: net/ax25/ax25_out.c
3348F: net/ax25/ax25_timer.c
3349F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003350
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003351DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003352L: netdev@vger.kernel.org
Joe Perches5ff77422011-05-24 17:13:22 -07003353S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003354F: Documentation/networking/dmfe.txt
Joe Perches0f04e2a2012-01-10 15:08:56 -08003355F: drivers/net/ethernet/dec/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003356
3357DC390/AM53C974 SCSI driver
Jiri Slabyd8130622015-07-17 16:23:20 -07003358M: Hannes Reinecke <hare@suse.com>
Hannes Reinecke71bd8492014-11-24 15:37:30 +01003359L: linux-scsi@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003360S: Maintained
Hannes Reinecke71bd8492014-11-24 15:37:30 +01003361F: drivers/scsi/am53c974.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003362
Linus Torvalds1da177e2005-04-16 15:20:36 -07003363DC395x SCSI driver
Oliver Neukum61eee9a2012-08-01 14:32:55 +02003364M: Oliver Neukum <oliver@neukum.org>
Joe Perches8b58be82009-07-29 15:04:30 -07003365M: Ali Akcaagac <aliakc@web.de>
3366M: Jamie Lenehan <lenehan@twibble.org>
Randy Dunlapf5df58812006-07-14 00:24:29 -07003367L: dc395x@twibble.org
Joe Perchescf015e92014-02-25 15:01:47 -08003368W: http://twibble.org/dist/dc395x/
3369W: http://lists.twibble.org/mailman/listinfo/dc395x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003370S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003371F: Documentation/scsi/dc395x.txt
3372F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003373
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07003374DCCP PROTOCOL
Arnaldo Carvalho de Meloa89d0302011-02-26 16:28:54 +00003375M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07003376L: dccp@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00003377W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07003378S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003379F: include/linux/dccp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003380F: include/uapi/linux/dccp.h
Joe Perches679655d2009-04-07 20:44:32 -07003381F: include/linux/tfrc.h
3382F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07003383
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07003385W: http://linux-decnet.sourceforge.net
3386L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00003387S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003388F: Documentation/networking/decnet.txt
3389F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390
Maciej W. Rozyckiebff05b2014-04-06 23:04:00 +01003391DECSTATION PLATFORM SUPPORT
3392M: "Maciej W. Rozycki" <macro@linux-mips.org>
3393L: linux-mips@linux-mips.org
3394W: http://www.linux-mips.org/wiki/DECstation
3395S: Maintained
3396F: arch/mips/dec/
3397F: arch/mips/include/asm/dec/
3398F: arch/mips/include/asm/mach-dec/
3399
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003401M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402S: Maintained
Jeff Kirsher33f810b2011-07-31 00:06:29 -07003403F: drivers/net/fddi/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404
Matthew Garrettad8f07c2009-01-07 18:08:56 -08003405DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003406M: Matthew Garrett <mjg59@srcf.ucam.org>
Pali Rohárcdbff612015-03-29 15:38:50 +02003407M: Pali Rohár <pali.rohar@gmail.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05003408L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08003409S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003410F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08003411
Pali Rohár817a5cd2015-06-06 10:23:28 +02003412DELL LAPTOP RBTN DRIVER
3413M: Pali Rohár <pali.rohar@gmail.com>
3414S: Maintained
3415F: drivers/platform/x86/dell-rbtn.*
3416
Pali Rohárcdbff612015-03-29 15:38:50 +02003417DELL LAPTOP FREEFALL DRIVER
3418M: Pali Rohár <pali.rohar@gmail.com>
3419S: Maintained
3420F: drivers/platform/x86/dell-smo8800.c
3421
Linus Torvalds1da177e2005-04-16 15:20:36 -07003422DELL LAPTOP SMM DRIVER
Pali Rohára5afba12015-05-14 13:16:36 +02003423M: Pali Rohár <pali.rohar@gmail.com>
Guenter Roeckef3522f2014-12-21 20:54:37 +01003424S: Maintained
Pali Rohára5afba12015-05-14 13:16:36 +02003425F: drivers/hwmon/dell-smm-hwmon.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003426F: include/uapi/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427
Doug Warzecha90563ec2005-09-06 15:17:15 -07003428DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07003429M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07003430S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003431F: Documentation/dcdbas.txt
3432F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07003433
Matthew Garrett0b3f6102009-01-09 20:17:11 +00003434DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003435M: Matthew Garrett <mjg59@srcf.ucam.org>
Pali Rohárcdbff612015-03-29 15:38:50 +02003436M: Pali Rohár <pali.rohar@gmail.com>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00003437S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07003438F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00003439
Paul Zimmerman5efc75e2013-03-11 17:48:03 -07003440DESIGNWARE USB2 DRD IP DRIVER
Paul Zimmerman16272ae2015-01-15 20:14:10 +00003441M: John Youn <johnyoun@synopsys.com>
Paul Zimmerman5efc75e2013-03-11 17:48:03 -07003442L: linux-usb@vger.kernel.org
Paul Zimmerman18f340f2014-09-19 14:49:36 -07003443T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Paul Zimmerman5efc75e2013-03-11 17:48:03 -07003444S: Maintained
Paul Zimmerman197ba5f2014-01-13 13:50:09 -08003445F: drivers/usb/dwc2/
Paul Zimmerman5efc75e2013-03-11 17:48:03 -07003446
Felipe Balbi94ab23d2011-08-19 18:10:59 +03003447DESIGNWARE USB3 DRD IP DRIVER
3448M: Felipe Balbi <balbi@ti.com>
3449L: linux-usb@vger.kernel.org
3450L: linux-omap@vger.kernel.org
3451T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3452S: Maintained
3453F: drivers/usb/dwc3/
3454
Johannes Berg833c9542014-09-12 09:01:56 +02003455DEVICE COREDUMP (DEV_COREDUMP)
3456M: Johannes Berg <johannes@sipsolutions.net>
3457L: linux-kernel@vger.kernel.org
3458S: Maintained
3459F: drivers/base/devcoredump.c
3460F: include/linux/devcoredump.h
3461
Kyungmin Park89d07762012-01-10 15:09:09 -08003462DEVICE FREQUENCY (DEVFREQ)
3463M: MyungJoo Ham <myungjoo.ham@samsung.com>
3464M: Kyungmin Park <kyungmin.park@samsung.com>
MyungJoo Ham88476d32013-03-14 17:28:24 +09003465L: linux-pm@vger.kernel.org
Chanwoo Choi6a3cd722015-11-05 13:30:17 +09003466T: git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
Kyungmin Park89d07762012-01-10 15:09:09 -08003467S: Maintained
3468F: drivers/devfreq/
Chanwoo Choi6a3cd722015-11-05 13:30:17 +09003469F: include/linux/devfreq.h
3470F: Documentation/devicetree/bindings/devfreq/
Kyungmin Park89d07762012-01-10 15:09:09 -08003471
Chanwoo Choi7dbded02015-11-05 13:30:18 +09003472DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
3473M: Chanwoo Choi <cw00.choi@samsung.com>
3474L: linux-pm@vger.kernel.org
3475T: git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3476S: Supported
3477F: drivers/devfreq/event/
3478F: drivers/devfreq/devfreq-event.c
3479F: include/linux/devfreq-event.h
3480F: Documentation/devicetree/bindings/devfreq/event/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003481
3482DEVICE NUMBER REGISTRY
Joe Perches8a6e2532010-03-05 13:43:11 -08003483M: Torben Mathiasen <device@lanana.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003484W: http://lanana.org/docs/device-list/index.html
Joe Perches679655d2009-04-07 20:44:32 -07003485S: Maintained
3486
3487DEVICE-MAPPER (LVM)
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01003488M: Alasdair Kergon <agk@redhat.com>
Alasdair G Kergon8504eed2013-07-10 23:41:19 +01003489M: Mike Snitzer <snitzer@redhat.com>
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01003490M: dm-devel@redhat.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003491L: dm-devel@redhat.com
3492W: http://sources.redhat.com/dm
3493Q: http://patchwork.kernel.org/project/dm-devel/list/
Mike Snitzer41d35d22013-11-04 19:42:38 -05003494T: git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01003495T: quilt http://people.redhat.com/agk/patches/linux/editing/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003496S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003497F: Documentation/device-mapper/
3498F: drivers/md/dm*
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01003499F: drivers/md/persistent-data/
Joe Perches679655d2009-04-07 20:44:32 -07003500F: include/linux/device-mapper.h
3501F: include/linux/dm-*.h
Alasdair G Kergon8504eed2013-07-10 23:41:19 +01003502F: include/uapi/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003503
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003504DIALOG SEMICONDUCTOR DRIVERS
3505M: Support Opensource <support.opensource@diasemi.com>
3506W: http://www.dialog-semiconductor.com/products
3507S: Supported
3508F: Documentation/hwmon/da90??
Adam Thomson7c933772015-09-29 16:44:12 +01003509F: Documentation/devicetree/bindings/sound/da[79]*.txt
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003510F: drivers/gpio/gpio-da90??.c
3511F: drivers/hwmon/da90??-hwmon.c
Adam Thomson7be72c22015-02-18 14:08:37 +00003512F: drivers/iio/adc/da91??-*.c
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003513F: drivers/input/misc/da90??_onkey.c
3514F: drivers/input/touchscreen/da9052_tsi.c
3515F: drivers/leds/leds-da90??.c
3516F: drivers/mfd/da903x.c
3517F: drivers/mfd/da90??-*.c
Adam Thomson7be72c22015-02-18 14:08:37 +00003518F: drivers/mfd/da91??-*.c
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003519F: drivers/power/da9052-battery.c
Adam Thomson7be72c22015-02-18 14:08:37 +00003520F: drivers/power/da91??-*.c
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003521F: drivers/regulator/da903x.c
3522F: drivers/regulator/da9???-regulator.[ch]
3523F: drivers/rtc/rtc-da90??.c
3524F: drivers/video/backlight/da90??_bl.c
3525F: drivers/watchdog/da90??_wdt.c
3526F: include/linux/mfd/da903x.h
3527F: include/linux/mfd/da9052/
3528F: include/linux/mfd/da9055/
3529F: include/linux/mfd/da9063/
Adam Thomson7be72c22015-02-18 14:08:37 +00003530F: include/linux/mfd/da9150/
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003531F: include/sound/da[79]*.h
3532F: sound/soc/codecs/da[79]*.[ch]
3533
Lidza Louina599aa692013-09-23 16:13:15 -04003534DIGI NEO AND CLASSIC PCI PRODUCTS
3535M: Lidza Louina <lidza.louina@gmail.com>
Mark Hounschell542f3d52014-04-25 14:32:15 -04003536M: Mark Hounschell <markh@compro.net>
Lidza Louina599aa692013-09-23 16:13:15 -04003537L: driverdev-devel@linuxdriverproject.org
3538S: Maintained
3539F: drivers/staging/dgnc/
3540
3541DIGI EPCA PCI PRODUCTS
3542M: Lidza Louina <lidza.louina@gmail.com>
Daeseok Youn6d825f72014-07-12 01:25:42 +09003543M: Daeseok Youn <daeseok.youn@gmail.com>
Lidza Louina599aa692013-09-23 16:13:15 -04003544L: driverdev-devel@linuxdriverproject.org
3545S: Maintained
3546F: drivers/staging/dgap/
3547
Guenter Roeck335d7c52011-01-26 11:45:49 -08003548DIOLAN U2C-12 I2C DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07003549M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck335d7c52011-01-26 11:45:49 -08003550L: linux-i2c@vger.kernel.org
3551S: Maintained
3552F: drivers/i2c/busses/i2c-diolan-u2c.c
3553
Matthew Wilcoxd475c632015-02-16 15:58:56 -08003554DIRECT ACCESS (DAX)
3555M: Matthew Wilcox <willy@linux.intel.com>
3556L: linux-fsdevel@vger.kernel.org
3557S: Supported
3558F: fs/dax.c
3559
Randy Dunlape7839f22008-10-12 16:11:45 -07003560DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07003561M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04003562S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003563F: Documentation/filesystems/dnotify.txt
3564F: fs/notify/dnotify/
3565F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003566
3567DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07003568M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003569W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
3570W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
3571W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
3572S: Maintained
3573
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003574DISKQUOTA
Jiri Slabyd8130622015-07-17 16:23:20 -07003575M: Jan Kara <jack@suse.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003576S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003577F: Documentation/filesystems/quota.txt
3578F: fs/quota/
3579F: include/linux/quota*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003580F: include/uapi/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581
Bernie Thompson702686a2012-03-01 13:52:13 -08003582DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
3583M: Bernie Thompson <bernie@plugable.com>
3584L: linux-fbdev@vger.kernel.org
3585S: Maintained
3586W: http://plugable.com/category/projects/udlfb/
Jingoo Han8a61f012014-07-01 15:36:01 +09003587F: drivers/video/fbdev/udlfb.c
Bernie Thompson702686a2012-03-01 13:52:13 -08003588F: include/video/udlfb.h
3589F: Documentation/fb/udlfb.txt
3590
Randy Dunlape7839f22008-10-12 16:11:45 -07003591DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07003592M: Christine Caulfield <ccaulfie@redhat.com>
3593M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04003594L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003595W: http://sources.redhat.com/cluster/
Fengguang Wu9f273c22016-01-20 15:03:25 -08003596T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003597S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003598F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003599
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05303600DMA BUFFER SHARING FRAMEWORK
3601M: Sumit Semwal <sumit.semwal@linaro.org>
3602S: Maintained
3603L: linux-media@vger.kernel.org
3604L: dri-devel@lists.freedesktop.org
Randy Dunlap8ada6d22014-10-13 15:51:19 -07003605L: linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
Maarten Lankhorst35fac7e2014-07-01 12:57:08 +02003606F: drivers/dma-buf/
Joe Perchese46d12c2014-08-08 14:26:16 -07003607F: include/linux/dma-buf*
3608F: include/linux/reservation.h
3609F: include/linux/*fence.h
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05303610F: Documentation/dma-buf-sharing.txt
3611T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
3612
Dan Williamsb3e5f262007-08-07 10:26:35 -07003613DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Dan Williams4abed0a2011-02-14 00:42:08 -08003614M: Vinod Koul <vinod.koul@intel.com>
Vinod Koul17b59562013-10-22 12:58:56 +05303615L: dmaengine@vger.kernel.org
3616Q: https://patchwork.kernel.org/project/linux-dmaengine/list/
Dan Williams08223d82014-08-19 06:07:56 -07003617S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003618F: drivers/dma/
Vinod Koul0ce3c062014-12-22 20:57:13 +05303619F: include/linux/dmaengine.h
Vinod Koul979a281e2014-11-06 11:21:17 +05303620F: Documentation/dmaengine/
3621T: git git://git.infradead.org/users/vkoul/slave-dma.git
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003622
Juerg Haefligerb8250372007-06-09 10:11:16 -04003623DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003624M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04003625L: lm-sensors@lm-sensors.org
3626S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003627F: Documentation/hwmon/dme1737
3628F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04003629
Jean Delvare1f31e1b2015-03-25 15:55:31 -07003630DMI/SMBIOS SUPPORT
Jiri Slabyd8130622015-07-17 16:23:20 -07003631M: Jean Delvare <jdelvare@suse.com>
Jean Delvare1f31e1b2015-03-25 15:55:31 -07003632S: Maintained
Jean Delvared4aeef92015-06-25 09:06:56 +02003633T: quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
Ivan Khoronzhukd7f96f972015-06-25 09:06:56 +02003634F: Documentation/ABI/testing/sysfs-firmware-dmi-tables
Jean Delvare1f31e1b2015-03-25 15:55:31 -07003635F: drivers/firmware/dmi-id.c
3636F: drivers/firmware/dmi_scan.c
3637F: include/linux/dmi.h
3638
Joe Perches7d2c86b2009-04-07 20:59:01 -07003639DOCUMENTATION
Jonathan Corbetad3118b2014-10-17 08:59:26 -04003640M: Jonathan Corbet <corbet@lwn.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02003641L: linux-doc@vger.kernel.org
3642S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003643F: Documentation/
Jonathan Corbet42f41ec2015-09-11 13:23:36 -06003644F: scripts/docproc.c
3645F: scripts/kernel-doc*
Randy Dunlap97be0782014-06-27 18:28:56 -07003646X: Documentation/ABI/
3647X: Documentation/devicetree/
Jonathan Corbet933a46b2015-03-26 10:25:17 -06003648X: Documentation/acpi
3649X: Documentation/power
3650X: Documentation/spi
Jonathan Corbet6c121172015-07-24 15:08:14 +02003651X: Documentation/DocBook/media
Jonathan Corbetc51edfb2015-09-24 16:05:28 -06003652T: git git://git.lwn.net/linux.git docs-next
Randy Dunlapabbaeff2008-07-04 09:59:57 -07003653
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003655M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003656L: blinux-list@redhat.com
3657S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003658F: drivers/char/dtlk.c
3659F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003661DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003662M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003663L: linux-scsi@vger.kernel.org
3664W: http://www.adaptec.com/
3665S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003666F: drivers/scsi/dpt*
3667F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003668
Philipp Reisnerb411b362009-09-25 16:07:19 -07003669DRBD DRIVER
Roland Kammererbc2c0492015-07-07 16:37:10 +02003670M: Philipp Reisner <philipp.reisner@linbit.com>
3671M: Lars Ellenberg <lars.ellenberg@linbit.com>
3672L: drbd-dev@lists.linbit.com
Joe Perches28b8e8d2010-03-23 13:35:20 -07003673W: http://www.drbd.org
Roland Kammererbc2c0492015-07-07 16:37:10 +02003674T: git git://git.linbit.com/linux-drbd.git
3675T: git git://git.linbit.com/drbd-8.4.git
Joe Perches28b8e8d2010-03-23 13:35:20 -07003676S: Supported
3677F: drivers/block/drbd/
3678F: lib/lru_cache.c
3679F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07003680
Wolfram Sangdc7dfcd2015-04-23 17:20:54 +02003681DRIVER CORE, KOBJECTS, DEBUGFS, KERNFS AND SYSFS
Greg KH879a5a02012-01-31 20:02:00 -08003682M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perches08deed12012-03-23 15:01:57 -07003683T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003684S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003685F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07003686F: drivers/base/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07003687F: fs/debugfs/
Wolfram Sangdc7dfcd2015-04-23 17:20:54 +02003688F: fs/kernfs/
3689F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07003690F: include/linux/debugfs.h
Wolfram Sangdc7dfcd2015-04-23 17:20:54 +02003691F: include/linux/kobj*
Joe Perches679655d2009-04-07 20:44:32 -07003692F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003693
3694DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003695M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04003696L: dri-devel@lists.freedesktop.org
Alex Deucherb0447882014-02-18 10:03:44 -05003697T: git git://people.freedesktop.org/~airlied/linux
Linus Torvalds1da177e2005-04-16 15:20:36 -07003698S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003699F: drivers/gpu/drm/
Daniel Vetter433e3b32014-05-26 23:44:42 +02003700F: drivers/gpu/vga/
Joe Perches850e9412010-08-09 17:20:45 -07003701F: include/drm/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003702F: include/uapi/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003703
Alex Deucher566f5932014-02-18 10:03:43 -05003704RADEON DRM DRIVERS
3705M: Alex Deucher <alexander.deucher@amd.com>
3706M: Christian König <christian.koenig@amd.com>
3707L: dri-devel@lists.freedesktop.org
3708T: git git://people.freedesktop.org/~agd5f/linux
3709S: Supported
3710F: drivers/gpu/drm/radeon/
Alex Deucher566f5932014-02-18 10:03:43 -05003711F: include/uapi/drm/radeon*
3712
Thierry Reding03e255b2014-04-04 08:59:18 +02003713DRM PANEL DRIVERS
3714M: Thierry Reding <thierry.reding@gmail.com>
3715L: dri-devel@lists.freedesktop.org
3716T: git git://anongit.freedesktop.org/tegra/linux.git
3717S: Maintained
3718F: drivers/gpu/drm/drm_panel.c
3719F: drivers/gpu/drm/panel/
3720F: include/drm/drm_panel.h
Rob Herring2d799dd2015-11-05 13:40:40 -06003721F: Documentation/devicetree/bindings/display/panel/
Thierry Reding03e255b2014-04-04 08:59:18 +02003722
Chris Wilson8daf7472010-09-28 14:07:26 +01003723INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
Daniel Vettercbce7102014-08-28 12:17:42 +02003724M: Daniel Vetter <daniel.vetter@intel.com>
Daniel Vetter47f95642014-01-07 09:24:31 +01003725M: Jani Nikula <jani.nikula@linux.intel.com>
Daniel Vetter362132d2013-03-13 22:28:46 +01003726L: intel-gfx@lists.freedesktop.org
Chris Wilson8daf7472010-09-28 14:07:26 +01003727L: dri-devel@lists.freedesktop.org
Jani Nikula7564fde2015-10-13 11:16:48 +03003728W: https://01.org/linuxgraphics/
Daniel Vetter47f95642014-01-07 09:24:31 +01003729Q: http://patchwork.freedesktop.org/project/intel-gfx/
Daniel Vetter89258a92014-02-04 19:57:38 +01003730T: git git://anongit.freedesktop.org/drm-intel
Chris Wilson8daf7472010-09-28 14:07:26 +01003731S: Supported
Joe Perches14430812013-09-11 14:23:50 -07003732F: drivers/gpu/drm/i915/
Chris Wilson8daf7472010-09-28 14:07:26 +01003733F: include/drm/i915*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003734F: include/uapi/drm/i915*
Chris Wilson8daf7472010-09-28 14:07:26 +01003735
Boris BREZILLON99763bb2015-10-13 11:55:42 +02003736DRM DRIVERS FOR ATMEL HLCDC
3737M: Boris Brezillon <boris.brezillon@free-electrons.com>
3738L: dri-devel@lists.freedesktop.org
3739S: Supported
3740F: drivers/gpu/drm/atmel-hlcdc/
3741F: Documentation/devicetree/bindings/drm/atmel/
3742
Kyungmin Park398a6d42011-11-02 11:33:16 +09003743DRM DRIVERS FOR EXYNOS
3744M: Inki Dae <inki.dae@samsung.com>
Inki Daef1501302012-01-17 14:08:55 +09003745M: Joonyoung Shim <jy0922.shim@samsung.com>
3746M: Seung-Woo Kim <sw0312.kim@samsung.com>
3747M: Kyungmin Park <kyungmin.park@samsung.com>
Kyungmin Park398a6d42011-11-02 11:33:16 +09003748L: dri-devel@lists.freedesktop.org
Inki Dae25a58032012-10-30 16:08:05 +09003749T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
Kyungmin Park398a6d42011-11-02 11:33:16 +09003750S: Supported
Joe Perches14430812013-09-11 14:23:50 -07003751F: drivers/gpu/drm/exynos/
Kyungmin Park398a6d42011-11-02 11:33:16 +09003752F: include/drm/exynos*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003753F: include/uapi/drm/exynos*
Kyungmin Park398a6d42011-11-02 11:33:16 +09003754
Jianwei Wangb55a1b92015-08-19 22:26:33 -04003755DRM DRIVERS FOR FREESCALE DCU
3756M: Jianwei Wang <jianwei.wang.chn@gmail.com>
3757M: Alison Wang <alison.wang@freescale.com>
3758L: dri-devel@lists.freedesktop.org
3759S: Supported
3760F: drivers/gpu/drm/fsl-dcu/
Rob Herring2d799dd2015-11-05 13:40:40 -06003761F: Documentation/devicetree/bindings/display/fsl,dcu.txt
3762F: Documentation/devicetree/bindings/display/panel/nec,nl4827hc19_05b.txt
Jianwei Wangb55a1b92015-08-19 22:26:33 -04003763
Philipp Zabel0a3d7752014-11-24 16:33:35 +01003764DRM DRIVERS FOR FREESCALE IMX
3765M: Philipp Zabel <p.zabel@pengutronix.de>
3766L: dri-devel@lists.freedesktop.org
3767S: Maintained
3768F: drivers/gpu/drm/imx/
Philipp Zabelef739aa2015-06-19 16:22:38 +02003769F: drivers/gpu/ipu-v3/
Rob Herring2d799dd2015-11-05 13:40:40 -06003770F: Documentation/devicetree/bindings/display/imx/
Philipp Zabel0a3d7752014-11-24 16:33:35 +01003771
Patrik Jakobssonba2199a2015-10-12 23:14:44 +02003772DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
3773M: Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
3774L: dri-devel@lists.freedesktop.org
3775T: git git://github.com/patjak/drm-gma500
3776S: Maintained
3777F: drivers/gpu/drm/gma500
3778F: include/drm/gma500*
3779
Thierry Redingbd3b49f2012-11-28 20:45:28 +01003780DRM DRIVERS FOR NVIDIA TEGRA
Thierry Redinga5ad7a62013-05-19 14:19:21 +02003781M: Thierry Reding <thierry.reding@gmail.com>
3782M: Terje Bergström <tbergstrom@nvidia.com>
Thierry Redingbd3b49f2012-11-28 20:45:28 +01003783L: dri-devel@lists.freedesktop.org
3784L: linux-tegra@vger.kernel.org
Thierry Redinga5ad7a62013-05-19 14:19:21 +02003785T: git git://anongit.freedesktop.org/tegra/linux.git
Stephen Warrenadabdb02013-09-13 13:00:57 -06003786S: Supported
Thierry Redingdee82682013-10-09 10:32:49 +02003787F: drivers/gpu/drm/tegra/
Thierry Redinga5ad7a62013-05-19 14:19:21 +02003788F: drivers/gpu/host1x/
Thierry Redinge1e90642013-09-24 13:59:01 +02003789F: include/linux/host1x.h
Thierry Redinga5ad7a62013-05-19 14:19:21 +02003790F: include/uapi/drm/tegra_drm.h
Rob Herring2d799dd2015-11-05 13:40:40 -06003791F: Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
Thierry Redingbd3b49f2012-11-28 20:45:28 +01003792
Laurent Pincharta284e9d2014-08-19 23:04:31 +02003793DRM DRIVERS FOR RENESAS
3794M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
3795L: dri-devel@lists.freedesktop.org
Simon Horman4a121092016-01-18 10:04:33 +09003796L: linux-renesas-soc@vger.kernel.org
Laurent Pincharta284e9d2014-08-19 23:04:31 +02003797T: git git://people.freedesktop.org/~airlied/linux
3798S: Supported
3799F: drivers/gpu/drm/rcar-du/
3800F: drivers/gpu/drm/shmobile/
Laurent Pincharta284e9d2014-08-19 23:04:31 +02003801F: include/linux/platform_data/shmob_drm.h
3802
Heiko Stuebner625e0342015-04-20 00:59:50 +02003803DRM DRIVERS FOR ROCKCHIP
3804M: Mark Yao <mark.yao@rock-chips.com>
3805L: dri-devel@lists.freedesktop.org
3806S: Maintained
3807F: drivers/gpu/drm/rockchip/
Rob Herring2d799dd2015-11-05 13:40:40 -06003808F: Documentation/devicetree/bindings/display/rockchip*
Heiko Stuebner625e0342015-04-20 00:59:50 +02003809
Benjamin Gaignard7f11c472015-08-14 15:35:24 -07003810DRM DRIVERS FOR STI
3811M: Benjamin Gaignard <benjamin.gaignard@linaro.org>
3812M: Vincent Abriou <vincent.abriou@st.com>
3813L: dri-devel@lists.freedesktop.org
3814T: git http://git.linaro.org/people/benjamin.gaignard/kernel.git
3815S: Maintained
3816F: drivers/gpu/drm/sti
Rob Herring2d799dd2015-11-05 13:40:40 -06003817F: Documentation/devicetree/bindings/display/st,stih4xx.txt
Benjamin Gaignard7f11c472015-08-14 15:35:24 -07003818
Lucas Stach8bb0bce2015-12-03 17:12:07 +01003819DRM DRIVERS FOR VIVANTE GPU IP
3820M: Lucas Stach <l.stach@pengutronix.de>
3821R: Russell King <linux+etnaviv@arm.linux.org.uk>
3822R: Christian Gmeiner <christian.gmeiner@gmail.com>
3823L: dri-devel@lists.freedesktop.org
3824S: Maintained
3825F: drivers/gpu/drm/etnaviv
3826F: Documentation/devicetree/bindings/display/etnaviv
3827
Alexey Klimov598df1a2012-11-28 17:16:32 -03003828DSBR100 USB FM RADIO DRIVER
3829M: Alexey Klimov <klimov.linux@gmail.com>
3830L: linux-media@vger.kernel.org
3831T: git git://linuxtv.org/media_tree.git
3832S: Maintained
3833F: drivers/media/radio/dsbr100.c
3834
Linus Torvalds1da177e2005-04-16 15:20:36 -07003835DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003836M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08003837L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003838S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003839F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003840
Hans Verkuilcc11b142015-04-25 12:36:18 -03003841DT3155 MEDIA DRIVER
3842M: Hans Verkuil <hverkuil@xs4all.nl>
3843L: linux-media@vger.kernel.org
3844T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003845W: https://linuxtv.org
Hans Verkuilcc11b142015-04-25 12:36:18 -03003846S: Odd Fixes
3847F: drivers/media/pci/dt3155/
3848
Antti Palosaari91952bc2012-10-01 12:28:46 -03003849DVB_USB_AF9015 MEDIA DRIVER
3850M: Antti Palosaari <crope@iki.fi>
3851L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003852W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03003853W: http://palosaari.fi/linux/
3854Q: http://patchwork.linuxtv.org/project/linux-media/list/
3855T: git git://linuxtv.org/anttip/media_tree.git
3856S: Maintained
3857F: drivers/media/usb/dvb-usb-v2/af9015*
3858
3859DVB_USB_AF9035 MEDIA DRIVER
3860M: Antti Palosaari <crope@iki.fi>
3861L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003862W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03003863W: http://palosaari.fi/linux/
3864Q: http://patchwork.linuxtv.org/project/linux-media/list/
3865T: git git://linuxtv.org/anttip/media_tree.git
3866S: Maintained
3867F: drivers/media/usb/dvb-usb-v2/af9035*
3868
3869DVB_USB_ANYSEE MEDIA DRIVER
3870M: Antti Palosaari <crope@iki.fi>
3871L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003872W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03003873W: http://palosaari.fi/linux/
3874Q: http://patchwork.linuxtv.org/project/linux-media/list/
3875T: git git://linuxtv.org/anttip/media_tree.git
3876S: Maintained
3877F: drivers/media/usb/dvb-usb-v2/anysee*
3878
3879DVB_USB_AU6610 MEDIA DRIVER
3880M: Antti Palosaari <crope@iki.fi>
3881L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003882W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03003883W: http://palosaari.fi/linux/
3884Q: http://patchwork.linuxtv.org/project/linux-media/list/
3885T: git git://linuxtv.org/anttip/media_tree.git
3886S: Maintained
3887F: drivers/media/usb/dvb-usb-v2/au6610*
3888
3889DVB_USB_CE6230 MEDIA DRIVER
3890M: Antti Palosaari <crope@iki.fi>
3891L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003892W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03003893W: http://palosaari.fi/linux/
3894Q: http://patchwork.linuxtv.org/project/linux-media/list/
3895T: git git://linuxtv.org/anttip/media_tree.git
3896S: Maintained
3897F: drivers/media/usb/dvb-usb-v2/ce6230*
3898
Michael Krufkyd099dea2012-10-02 00:56:20 -03003899DVB_USB_CXUSB MEDIA DRIVER
3900M: Michael Krufky <mkrufky@linuxtv.org>
3901L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003902W: https://linuxtv.org
Michael Krufkyd099dea2012-10-02 00:56:20 -03003903W: http://github.com/mkrufky
3904Q: http://patchwork.linuxtv.org/project/linux-media/list/
3905T: git git://linuxtv.org/media_tree.git
3906S: Maintained
Cesar Eduardo Barros9819da62013-01-04 15:35:25 -08003907F: drivers/media/usb/dvb-usb/cxusb*
Michael Krufkyd099dea2012-10-02 00:56:20 -03003908
Antti Palosaari91952bc2012-10-01 12:28:46 -03003909DVB_USB_EC168 MEDIA DRIVER
3910M: Antti Palosaari <crope@iki.fi>
3911L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003912W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03003913W: http://palosaari.fi/linux/
3914Q: http://patchwork.linuxtv.org/project/linux-media/list/
3915T: git git://linuxtv.org/anttip/media_tree.git
3916S: Maintained
3917F: drivers/media/usb/dvb-usb-v2/ec168*
3918
Antti Palosaari55609832013-04-09 20:30:42 -03003919DVB_USB_GL861 MEDIA DRIVER
3920M: Antti Palosaari <crope@iki.fi>
3921L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003922W: https://linuxtv.org
Antti Palosaari55609832013-04-09 20:30:42 -03003923Q: http://patchwork.linuxtv.org/project/linux-media/list/
3924T: git git://linuxtv.org/anttip/media_tree.git
3925S: Maintained
3926F: drivers/media/usb/dvb-usb-v2/gl861*
3927
Michael Krufky8856f5f2012-10-02 00:55:50 -03003928DVB_USB_MXL111SF MEDIA DRIVER
3929M: Michael Krufky <mkrufky@linuxtv.org>
3930L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003931W: https://linuxtv.org
Michael Krufky8856f5f2012-10-02 00:55:50 -03003932W: http://github.com/mkrufky
3933Q: http://patchwork.linuxtv.org/project/linux-media/list/
3934T: git git://linuxtv.org/mkrufky/mxl111sf.git
3935S: Maintained
3936F: drivers/media/usb/dvb-usb-v2/mxl111sf*
3937
Antti Palosaari91952bc2012-10-01 12:28:46 -03003938DVB_USB_RTL28XXU MEDIA DRIVER
3939M: Antti Palosaari <crope@iki.fi>
3940L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003941W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03003942W: http://palosaari.fi/linux/
3943Q: http://patchwork.linuxtv.org/project/linux-media/list/
3944T: git git://linuxtv.org/anttip/media_tree.git
3945S: Maintained
3946F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
3947
3948DVB_USB_V2 MEDIA DRIVER
3949M: Antti Palosaari <crope@iki.fi>
3950L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003951W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03003952W: http://palosaari.fi/linux/
3953Q: http://patchwork.linuxtv.org/project/linux-media/list/
3954T: git git://linuxtv.org/anttip/media_tree.git
3955S: Maintained
3956F: drivers/media/usb/dvb-usb-v2/dvb_usb*
3957F: drivers/media/usb/dvb-usb-v2/usb_urb.c
3958
Jason Baronac0ac382011-08-11 14:36:43 -04003959DYNAMIC DEBUG
Joe Perches5c4a97d2013-07-31 13:53:32 -07003960M: Jason Baron <jbaron@akamai.com>
Jason Baronac0ac382011-08-11 14:36:43 -04003961S: Maintained
3962F: lib/dynamic_debug.c
3963F: include/linux/dynamic_debug.h
3964
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08003965DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003966M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08003967S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003968F: drivers/tty/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08003969
Moritz Fischerf17effb2015-01-10 14:10:59 -08003970E3X0 POWER BUTTON DRIVER
3971M: Moritz Fischer <moritz.fischer@ettus.com>
3972L: usrp-users@lists.ettus.com
3973W: http://www.ettus.com
3974S: Supported
3975F: drivers/input/misc/e3x0-button.c
3976F: Documentation/devicetree/bindings/input/e3x0-button.txt
3977
Antti Palosaari91952bc2012-10-01 12:28:46 -03003978E4000 MEDIA DRIVER
3979M: Antti Palosaari <crope@iki.fi>
3980L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003981W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03003982W: http://palosaari.fi/linux/
3983Q: http://patchwork.linuxtv.org/project/linux-media/list/
3984T: git git://linuxtv.org/anttip/media_tree.git
3985S: Maintained
3986F: drivers/media/tuners/e4000*
3987
Linus Torvalds1da177e2005-04-16 15:20:36 -07003988EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003989M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003990L: linux-scsi@vger.kernel.org
3991S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003992F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003993
Antti Palosaari91952bc2012-10-01 12:28:46 -03003994EC100 MEDIA DRIVER
3995M: Antti Palosaari <crope@iki.fi>
3996L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003997W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03003998W: http://palosaari.fi/linux/
3999Q: http://patchwork.linuxtv.org/project/linux-media/list/
4000T: git git://linuxtv.org/anttip/media_tree.git
4001S: Maintained
4002F: drivers/media/dvb-frontends/ec100*
4003
Michael Halcrow237fead2006-10-04 02:16:22 -07004004ECRYPT FILE SYSTEM
Tyler Hicks0de9adf2011-11-05 09:04:47 -04004005M: Tyler Hicks <tyhicks@canonical.com>
Tyler Hicksa058bfb2011-05-27 11:47:59 -05004006L: ecryptfs@vger.kernel.org
Dustin Kirkland24a923e2013-05-31 10:41:43 -05004007W: http://ecryptfs.org
Michael Halcrow6dc75162008-12-15 13:54:17 -08004008W: https://launchpad.net/ecryptfs
Fengguang Wu9f273c22016-01-20 15:03:25 -08004009T: git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
Michael Halcrow237fead2006-10-04 02:16:22 -07004010S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004011F: Documentation/filesystems/ecryptfs.txt
4012F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07004013
Alan Coxda9bb1d2006-01-18 17:44:13 -08004014EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07004015M: Doug Thompson <dougthompson@xmission.com>
Borislav Petkovaa15aa02014-03-03 15:38:17 -08004016M: Borislav Petkov <bp@alien8.de>
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02004017M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04004018L: linux-edac@vger.kernel.org
Fengguang Wu07cd6bf2015-12-18 15:51:36 +08004019T: git git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git for-next
4020T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-edac.git linux_next
Doug Thompson8c2a6a42006-06-30 01:56:09 -07004021S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004022F: Documentation/edac.txt
Chris Metcalf91445c72012-03-31 09:46:03 -04004023F: drivers/edac/
Joe Perches679655d2009-04-07 20:44:32 -07004024F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08004025
Borislav Petkovc476c232009-05-20 20:31:58 +02004026EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07004027M: Doug Thompson <dougthompson@xmission.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01004028M: Borislav Petkov <bp@alien8.de>
Chris Metcalf91445c72012-03-31 09:46:03 -04004029L: linux-edac@vger.kernel.org
Borislav Petkov487ba8e2012-10-29 18:40:10 +01004030S: Maintained
Borislav Petkovc476c232009-05-20 20:31:58 +02004031F: drivers/edac/amd64_edac*
4032
Robert Richter836dae52013-10-18 09:24:52 +02004033EDAC-CALXEDA
4034M: Doug Thompson <dougthompson@xmission.com>
4035M: Robert Richter <rric@kernel.org>
4036L: linux-edac@vger.kernel.org
Robert Richter836dae52013-10-18 09:24:52 +02004037S: Maintained
4038F: drivers/edac/highbank*
4039
Ralf Baechlef65aad42012-10-17 00:39:09 +02004040EDAC-CAVIUM
4041M: Ralf Baechle <ralf@linux-mips.org>
4042M: David Daney <david.daney@cavium.com>
4043L: linux-edac@vger.kernel.org
4044L: linux-mips@linux-mips.org
Ralf Baechlef65aad42012-10-17 00:39:09 +02004045S: Supported
4046F: drivers/edac/octeon_edac*
4047
Dave Peterson0e438e32006-03-26 01:38:55 -08004048EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07004049M: Mark Gross <mark.gross@intel.com>
4050M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04004051L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08004052S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004053F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08004054
4055EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07004056M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04004057L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08004058S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004059F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08004060
Mauro Carvalho Chehab77c5f5d2013-02-15 06:11:57 -03004061EDAC-GHES
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02004062M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab77c5f5d2013-02-15 06:11:57 -03004063L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab77c5f5d2013-02-15 06:11:57 -03004064S: Maintained
Joe Perches2caa67a2013-09-11 14:23:40 -07004065F: drivers/edac/ghes_edac.c
Mauro Carvalho Chehab77c5f5d2013-02-15 06:11:57 -03004066
Douglas Thompson6bc78402007-07-19 01:50:12 -07004067EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07004068M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04004069L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07004070S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004071F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07004072
4073EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07004074M: Jason Uhlenkott <juhlenko@akamai.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04004075L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07004076S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004077F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07004078
4079EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07004080M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04004081L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07004082S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004083F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07004084
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08004085EDAC-I5400
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02004086M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03004087L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08004088S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004089F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08004090
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03004091EDAC-I7300
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02004092M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03004093L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03004094S: Maintained
4095F: drivers/edac/i7300_edac.c
4096
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03004097EDAC-I7CORE
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02004098M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03004099L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03004100S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03004101F: drivers/edac/i7core_edac.c
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03004102
Douglas Thompsonba9a5912007-07-19 01:50:32 -07004103EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07004104M: Ranganathan Desikan <ravi@jetztechnologies.com>
Arvind R25527882011-01-21 23:13:37 +05304105M: "Arvind R." <arvino55@gmail.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04004106L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07004107S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004108F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07004109
Jason Baron791b4702014-07-09 21:13:11 +00004110EDAC-IE31200
4111M: Jason Baron <jbaron@akamai.com>
4112L: linux-edac@vger.kernel.org
Jason Baron791b4702014-07-09 21:13:11 +00004113S: Maintained
4114F: drivers/edac/ie31200_edac.c
4115
Johannes Thumshirnccdfb972013-11-17 19:25:12 +01004116EDAC-MPC85XX
Johannes Thumshirn30c74692015-05-07 10:21:24 +02004117M: Johannes Thumshirn <morbidrsa@gmail.com>
Johannes Thumshirnccdfb972013-11-17 19:25:12 +01004118L: linux-edac@vger.kernel.org
Johannes Thumshirnccdfb972013-11-17 19:25:12 +01004119S: Maintained
4120F: drivers/edac/mpc85xx_edac.[ch]
4121
Douglas Thompsonba9a5912007-07-19 01:50:32 -07004122EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07004123M: Egor Martovetsky <egor@pasemi.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04004124L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07004125S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004126F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07004127
Dave Peterson0e438e32006-03-26 01:38:55 -08004128EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07004129M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04004130L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08004131S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004132F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08004133
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02004134EDAC-SBRIDGE
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02004135M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02004136L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02004137S: Maintained
4138F: drivers/edac/sb_edac.c
4139
Loc Ho995e1de2015-05-22 17:32:57 -06004140EDAC-XGENE
4141APPLIED MICRO (APM) X-GENE SOC EDAC
4142M: Loc Ho <lho@apm.com>
4143S: Supported
4144F: drivers/edac/xgene_edac.c
4145F: Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
4146
Clemens Ladischaf399172011-01-10 16:32:54 +01004147EDIROL UA-101/UA-1000 DRIVER
4148M: Clemens Ladisch <clemens@ladisch.de>
4149L: alsa-devel@alsa-project.org (moderated for non-subscribers)
4150T: git git://git.alsa-project.org/alsa-kernel.git
4151S: Maintained
4152F: sound/usb/misc/ua101.c
4153
Matt Fleming1f7df952012-10-03 10:04:02 +01004154EXTENSIBLE FIRMWARE INTERFACE (EFI)
Matt Fleming825fcfc2015-10-10 17:22:16 +01004155M: Matt Fleming <matt@codeblueprint.co.uk>
Matt Fleming1f7df952012-10-03 10:04:02 +01004156L: linux-efi@vger.kernel.org
Matt Fleming78bef242012-10-08 11:33:05 +01004157T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
Matt Fleming1f7df952012-10-03 10:04:02 +01004158S: Maintained
Joe Perchesfb2efb52014-08-08 14:25:01 -07004159F: Documentation/efi-stub.txt
Matt Fleming1f7df952012-10-03 10:04:02 +01004160F: arch/ia64/kernel/efi.c
4161F: arch/x86/boot/compressed/eboot.[ch]
4162F: arch/x86/include/asm/efi.h
4163F: arch/x86/platform/efi/*
Tom Gundersena9499fa2013-02-08 15:37:06 +00004164F: drivers/firmware/efi/*
Matt Fleming1f7df952012-10-03 10:04:02 +01004165F: include/linux/efi*.h
4166
Matt Flemingd68772b2013-02-08 16:27:24 +00004167EFI VARIABLE FILESYSTEM
4168M: Matthew Garrett <matthew.garrett@nebula.com>
4169M: Jeremy Kerr <jk@ozlabs.org>
Matt Fleming825fcfc2015-10-10 17:22:16 +01004170M: Matt Fleming <matt@codeblueprint.co.uk>
Matt Flemingd68772b2013-02-08 16:27:24 +00004171T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4172L: linux-efi@vger.kernel.org
4173S: Maintained
4174F: fs/efivarfs/
4175
Peter Jones85a00d92010-09-22 13:05:04 -07004176EFIFB FRAMEBUFFER DRIVER
4177L: linux-fbdev@vger.kernel.org
4178M: Peter Jones <pjones@redhat.com>
4179S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09004180F: drivers/video/fbdev/efifb.c
Peter Jones85a00d92010-09-22 13:05:04 -07004181
Josh Triplett0bee8d22006-07-30 03:03:58 -07004182EFS FILESYSTEM
4183W: http://aeschi.ch.eu.org/efs/
4184S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004185F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07004186
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004187EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004188M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
4189M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004190L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07004191S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004192F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07004193
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07004194EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
Thadeu Lima de Souza Cascardo34b19012011-10-13 09:56:19 +00004195M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07004196L: netdev@vger.kernel.org
4197S: Maintained
Jeff Kirsher9aa32832011-05-13 14:29:12 -07004198F: drivers/net/ethernet/ibm/ehea/
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07004199
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02004200EM28XX VIDEO4LINUX DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02004201M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02004202L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02004203W: https://linuxtv.org
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02004204T: git git://linuxtv.org/media_tree.git
4205S: Maintained
4206F: drivers/media/usb/em28xx/
4207
David Woodhouse3e3a7d62008-05-01 04:34:46 -07004208EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07004209M: Paul Gortmaker <paul.gortmaker@windriver.com>
4210M: Matt Mackall <mpm@selenic.com>
4211M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07004212L: linux-embedded@vger.kernel.org
4213S: Maintained
4214
James Smart32505872015-05-15 13:10:58 -04004215EMULEX/AVAGO LPFC FC/FCOE SCSI DRIVER
4216M: James Smart <james.smart@avagotech.com>
4217M: Dick Kennedy <dick.kennedy@avagotech.com>
Jim Cromiece00f852006-11-30 04:49:44 +01004218L: linux-scsi@vger.kernel.org
James Smart32505872015-05-15 13:10:58 -04004219W: http://www.avagotech.com
Jim Cromiece00f852006-11-30 04:49:44 +01004220S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004221F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04004222
Michał Mirosław5f5bac82009-05-22 20:33:59 +02004223ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004224M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02004225S: Maintained
4226F: drivers/misc/cb710/
4227F: drivers/mmc/host/cb710-mmc.*
4228F: include/linux/cb710.h
4229
Maxim Levitsky931e39a2010-07-31 11:59:26 -03004230ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
4231M: Maxim Levitsky <maximlevitsky@gmail.com>
4232S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07004233F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03004234
Gavin Shanec207dc2013-06-28 21:12:14 +08004235ENHANCED ERROR HANDLING (EEH)
4236M: Gavin Shan <shangw@linux.vnet.ibm.com>
4237L: linuxppc-dev@lists.ozlabs.org
4238S: Supported
4239F: Documentation/powerpc/eeh-pci-error-recovery.txt
4240F: arch/powerpc/kernel/eeh*.c
4241
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07004242EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004243M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07004244S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07004245T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Jingoo Han8a61f012014-07-01 15:36:01 +09004246F: drivers/video/fbdev/s1d13xxxfb.c
Joe Perches679655d2009-04-07 20:44:32 -07004247F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07004248
Mark Einon38df6492014-09-30 22:29:46 +01004249ET131X NETWORK DRIVER
4250M: Mark Einon <mark.einon@gmail.com>
4251S: Odd Fixes
4252F: drivers/net/ethernet/agere/
4253
Linus Torvalds1da177e2005-04-16 15:20:36 -07004254ETHERNET BRIDGE
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08004255M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07004256L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08004257L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00004258W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07004259S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004260F: include/linux/netfilter_bridge/
4261F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004262
Florian Fainelli22f08ad2014-02-18 09:47:49 -08004263ETHERNET PHY LIBRARY
4264M: Florian Fainelli <f.fainelli@gmail.com>
4265L: netdev@vger.kernel.org
4266S: Maintained
4267F: include/linux/phy.h
4268F: include/linux/phy_fixed.h
4269F: drivers/net/phy/
4270F: Documentation/networking/phy.txt
4271F: drivers/of/of_mdio.c
4272F: drivers/of/of_net.c
4273
Linus Torvalds1da177e2005-04-16 15:20:36 -07004274EXT2 FILE SYSTEM
Jiri Slabyd8130622015-07-17 16:23:20 -07004275M: Jan Kara <jack@suse.com>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004276L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004277S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004278F: Documentation/filesystems/ext2.txt
4279F: fs/ext2/
4280F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004281
Erik Mouw72be2cc2006-12-06 20:40:49 -08004282EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004283M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02004284M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004285L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04004286W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004287Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Fengguang Wu9f273c22016-01-20 15:03:25 -08004288T: git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004289S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004290F: Documentation/filesystems/ext4.txt
4291F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004292
Mimi Zoharc5532b02011-08-17 18:52:24 -04004293Extended Verification Module (EVM)
Mimi Zohar74dd7442014-02-27 08:44:45 -05004294M: Mimi Zohar <zohar@linux.vnet.ibm.com>
4295L: linux-ima-devel@lists.sourceforge.net
4296L: linux-security-module@vger.kernel.org
Mimi Zoharc5532b02011-08-17 18:52:24 -04004297S: Supported
4298F: security/integrity/evm/
4299
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09004300EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
4301M: MyungJoo Ham <myungjoo.ham@samsung.com>
4302M: Chanwoo Choi <cw00.choi@samsung.com>
4303L: linux-kernel@vger.kernel.org
Chanwoo Choi81df63a2013-09-28 15:04:37 +09004304T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09004305S: Maintained
4306F: drivers/extcon/
Chanwoo Choicd2c3e72015-11-06 16:30:55 -08004307F: include/linux/extcon/
4308F: include/linux/extcon.h
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09004309F: Documentation/extcon/
Chanwoo Choicd2c3e72015-11-06 16:30:55 -08004310F: Documentation/devicetree/bindings/extcon/
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09004311
Jingoo Hane2a75c42014-04-10 20:24:03 +09004312EXYNOS DP DRIVER
Jingoo Hanb7701752015-05-14 15:17:07 -07004313M: Jingoo Han <jingoohan1@gmail.com>
Jingoo Hane2a75c42014-04-10 20:24:03 +09004314L: dri-devel@lists.freedesktop.org
4315S: Maintained
4316F: drivers/gpu/drm/exynos/exynos_dp*
4317
Donghwa Lee33ad3912012-03-06 11:44:58 +09004318EXYNOS MIPI DISPLAY DRIVERS
4319M: Inki Dae <inki.dae@samsung.com>
4320M: Donghwa Lee <dh09.lee@samsung.com>
4321M: Kyungmin Park <kyungmin.park@samsung.com>
4322L: linux-fbdev@vger.kernel.org
4323S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09004324F: drivers/video/fbdev/exynos/exynos_mipi*
Donghwa Lee33ad3912012-03-06 11:44:58 +09004325F: include/video/exynos_mipi*
4326
Jean Delvaree53004e2006-01-09 23:26:14 +01004327F71805F HARDWARE MONITORING DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07004328M: Jean Delvare <jdelvare@suse.com>
Jean Delvaree53004e2006-01-09 23:26:14 +01004329L: lm-sensors@lm-sensors.org
4330S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004331F: Documentation/hwmon/f71805f
4332F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01004333
Michael Büscheea977e2012-04-02 12:14:32 -03004334FC0011 TUNER DRIVER
4335M: Michael Buesch <m@bues.ch>
4336L: linux-media@vger.kernel.org
4337S: Maintained
Mauro Carvalho Chehabccae7af2012-06-14 16:35:59 -03004338F: drivers/media/tuners/fc0011.h
4339F: drivers/media/tuners/fc0011.c
Michael Büscheea977e2012-04-02 12:14:32 -03004340
Antti Palosaari91952bc2012-10-01 12:28:46 -03004341FC2580 MEDIA DRIVER
4342M: Antti Palosaari <crope@iki.fi>
4343L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02004344W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03004345W: http://palosaari.fi/linux/
4346Q: http://patchwork.linuxtv.org/project/linux-media/list/
4347T: git git://linuxtv.org/anttip/media_tree.git
4348S: Maintained
4349F: drivers/media/tuners/fc2580*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004350
Eric Paris88b2dbd2010-08-18 12:25:50 -04004351FANOTIFY
4352M: Eric Paris <eparis@redhat.com>
4353S: Maintained
4354F: fs/notify/fanotify/
4355F: include/linux/fanotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004356F: include/uapi/linux/fanotify.h
Eric Paris88b2dbd2010-08-18 12:25:50 -04004357
Linus Torvalds1da177e2005-04-16 15:20:36 -07004358FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004359M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004360W: http://www.farsite.co.uk/
4361S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004362F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004363
Akinobu Mitac5408b82007-04-23 14:41:20 -07004364FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004365M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07004366S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004367F: Documentation/fault-injection/
4368F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07004369
Noralf Trønnes053e5142015-01-23 19:29:07 +01004370FBTFT Framebuffer drivers
4371M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4372M: Noralf Trønnes <noralf@tronnes.org>
4373S: Maintained
4374F: drivers/staging/fbtft/
4375
Robert Lovecae727d2010-02-16 12:16:00 -08004376FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
Robert Love3bd746c2014-05-28 14:19:01 -07004377M: Vasu Dev <vasu.dev@intel.com>
Neil Hormanf4aaea62013-05-03 19:38:10 +00004378L: fcoe-devel@open-fcoe.org
Robert Lovecae727d2010-02-16 12:16:00 -08004379W: www.Open-FCoE.org
4380S: Supported
4381F: drivers/scsi/libfc/
4382F: drivers/scsi/fcoe/
4383F: include/scsi/fc/
4384F: include/scsi/libfc.h
4385F: include/scsi/libfcoe.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004386F: include/uapi/scsi/fc/
Robert Lovecae727d2010-02-16 12:16:00 -08004387
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004388FILE LOCKING (flock() and fcntl()/lockf())
Jeff Layton8c836fa2014-04-30 13:28:17 -04004389M: Jeff Layton <jlayton@poochiereds.net>
Joe Perches9c3646d2015-06-25 15:02:00 -07004390M: "J. Bruce Fields" <bfields@fieldses.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004391L: linux-fsdevel@vger.kernel.org
4392S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004393F: include/linux/fcntl.h
4394F: include/linux/fs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004395F: include/uapi/linux/fcntl.h
4396F: include/uapi/linux/fs.h
Joe Perches679655d2009-04-07 20:44:32 -07004397F: fs/fcntl.c
4398F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004399
4400FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07004401M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004402L: linux-fsdevel@vger.kernel.org
4403S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004404F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004405
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004406FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02004407M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004408L: lm-sensors@lm-sensors.org
4409S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07004410F: drivers/hwmon/f75375s.c
4411F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004412
Clemens Ladischa331b0c2011-05-25 09:48:48 +02004413FIREWIRE AUDIO DRIVERS
4414M: Clemens Ladisch <clemens@ladisch.de>
4415L: alsa-devel@alsa-project.org (moderated for non-subscribers)
4416T: git git://git.alsa-project.org/alsa-kernel.git
4417S: Maintained
4418F: sound/firewire/
4419
Stefan Richtereb86ec52012-11-03 09:25:20 +01004420FIREWIRE MEDIA DRIVERS (firedtv)
4421M: Stefan Richter <stefanr@s5r6.in-berlin.de>
4422L: linux-media@vger.kernel.org
4423L: linux1394-devel@lists.sourceforge.net
4424T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
4425S: Maintained
4426F: drivers/media/firewire/
4427
Chris Boota511ce32012-04-14 17:50:35 -07004428FIREWIRE SBP-2 TARGET
4429M: Chris Boot <bootc@bootc.net>
4430L: linux-scsi@vger.kernel.org
4431L: target-devel@vger.kernel.org
4432L: linux1394-devel@lists.sourceforge.net
4433T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
4434S: Maintained
4435F: drivers/target/sbp/
4436
Joe Perches7d2c86b2009-04-07 20:59:01 -07004437FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004438M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004439L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01004440W: http://ieee1394.wiki.kernel.org/
Stefan Richter2ca526b2011-12-20 21:23:28 +01004441T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004442S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004443F: drivers/firewire/
Stefan Richter8f06ce32012-12-17 16:00:07 -08004444F: include/linux/firewire.h
4445F: include/uapi/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02004446F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004447
4448FIRMWARE LOADER (request_firmware)
Ming Lei39e68082012-08-20 19:04:17 +08004449M: Ming Lei <ming.lei@canonical.com>
4450L: linux-kernel@vger.kernel.org
4451S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004452F: Documentation/firmware_class/
4453F: drivers/base/firmware*.c
4454F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004455
Philip J Kelleherf730e3d2013-06-18 14:43:58 -05004456FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
Philip J Kelleher9bb3c442013-02-27 09:24:59 -06004457M: Joshua Morris <josh.h.morris@us.ibm.com>
4458M: Philip Kelleher <pjk1939@linux.vnet.ibm.com>
4459S: Maintained
4460F: drivers/block/rsxx/
4461
Jiri Kosina8206f662012-05-18 13:52:29 +02004462FLOPPY DRIVER
Jiri Kosinae5f64502015-08-09 09:11:34 +02004463M: Jiri Kosina <jikos@kernel.org>
Jiri Kosina8206f662012-05-18 13:52:29 +02004464T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
4465S: Odd fixes
4466F: drivers/block/floppy.c
4467
Alessandro Rubini9c9f32e2013-06-12 09:13:25 +02004468FMC SUBSYSTEM
4469M: Alessandro Rubini <rubini@gnudd.com>
4470W: http://www.ohwr.org/projects/fmc-bus
4471S: Supported
4472F: drivers/fmc/
4473F: include/linux/fmc*.h
4474F: include/linux/ipmi-fru.h
4475K: fmc_d.*register
4476
Alan Tull3c0ed7d2015-10-07 20:49:23 +01004477FPGA MANAGER FRAMEWORK
4478M: Alan Tull <atull@opensource.altera.com>
Moritz Fischerdd7d6642015-11-20 15:56:51 -08004479R: Moritz Fischer <moritz.fischer@ettus.com>
Alan Tull3c0ed7d2015-10-07 20:49:23 +01004480S: Maintained
4481F: drivers/fpga/
4482F: include/linux/fpga/fpga-mgr.h
4483W: http://www.rocketboards.org
4484
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004485FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07004486M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07004487W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004488S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004489F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004490
4491FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004492L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00004493S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004494F: drivers/net/wan/dlci.c
4495F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004496
Linus Torvalds1da177e2005-04-16 15:20:36 -07004497FRAMEBUFFER LAYER
Jean-Christophe PLAGNIOL-VILLARD5489e942013-05-30 22:23:44 +02004498M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
4499M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004500L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004501W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09004502Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Jean-Christophe PLAGNIOL-VILLARD5489e942013-05-30 22:23:44 +02004503T: git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
Paul Mundt56be1412011-03-23 08:29:07 +09004504S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004505F: Documentation/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09004506F: drivers/video/
4507F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07004508F: include/linux/fb.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004509F: include/uapi/video/
4510F: include/uapi/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004511
Timur Tabia57c1882012-10-16 17:33:42 -05004512FREESCALE DIU FRAMEBUFFER DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004513M: Timur Tabi <timur@tabi.org>
Timur Tabia57c1882012-10-16 17:33:42 -05004514L: linux-fbdev@vger.kernel.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004515S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09004516F: drivers/video/fbdev/fsl-diu-fb.*
Timur Tabia57c1882012-10-16 17:33:42 -05004517
Zhang Wei173acc72008-03-01 07:42:48 -07004518FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004519M: Li Yang <leoli@freescale.com>
4520M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004521L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07004522S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004523F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07004524
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02004525FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004526M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004527L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01004528L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02004529S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004530F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02004531
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01004532FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004533M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004534L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07004535L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01004536S: Maintained
Cesar Eduardo Barrosbad985a2013-01-04 15:35:28 -08004537F: include/linux/platform_data/video-imxfb.h
Jingoo Han8a61f012014-07-01 15:36:01 +09004538F: drivers/video/fbdev/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01004539
Han Xu4d8e2ce2015-01-16 03:29:17 +08004540FREESCALE QUAD SPI DRIVER
4541M: Han Xu <han.xu@freescale.com>
4542L: linux-mtd@lists.infradead.org
4543S: Maintained
4544F: drivers/mtd/spi-nor/fsl-quadspi.c
4545
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03004546FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004547M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
4548M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004549L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03004550L: netdev@vger.kernel.org
4551S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07004552F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07004553F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03004554
Timur Tabid9e9d822008-04-24 08:45:26 +10004555FREESCALE QUICC ENGINE LIBRARY
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004556L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004557S: Orphan
Zhao Qiang7aa1aa62015-11-30 10:48:57 +08004558F: drivers/soc/fsl/qe/
4559F: include/soc/fsl/*qe*.h
4560F: include/soc/fsl/*ucc*.h
Timur Tabid9e9d822008-04-24 08:45:26 +10004561
Joe Perchesb55ef922009-10-26 16:49:46 -07004562FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004563M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07004564L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004565L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07004566S: Maintained
Joe Perchesfaf2e1d2014-08-08 14:26:18 -07004567F: drivers/usb/gadget/udc/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07004568
Li Yangbeaf53b2007-05-25 13:54:02 +08004569FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004570M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08004571L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004572L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08004573S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07004574F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08004575
Claudiu Manoilabb1ed72015-10-23 11:42:01 +03004576FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
4577M: Claudiu Manoil <claudiu.manoil@freescale.com>
4578L: netdev@vger.kernel.org
4579S: Maintained
4580F: drivers/net/ethernet/freescale/gianfar*
4581X: drivers/net/ethernet/freescale/gianfar_ptp.c
4582F: Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
4583
Timur Tabid9e9d822008-04-24 08:45:26 +10004584FREESCALE QUICC ENGINE UCC UART DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004585M: Timur Tabi <timur@tabi.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004586L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004587S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004588F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10004589
4590FREESCALE SOC SOUND DRIVERS
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004591M: Timur Tabi <timur@tabi.org>
Mark Browndc859502014-08-07 10:47:24 +01004592M: Nicolin Chen <nicoleotsuka@gmail.com>
Xiubo Lib4b98292014-12-12 16:54:14 -08004593M: Xiubo Li <Xiubo.Lee@gmail.com>
Joe Perches93711662009-06-16 15:34:07 -07004594L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004595L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004596S: Maintained
Joe Perches69aefce2009-04-09 10:39:22 -07004597F: sound/soc/fsl/fsl*
Mark Browndc859502014-08-07 10:47:24 +01004598F: sound/soc/fsl/imx*
Joe Perches69aefce2009-04-09 10:39:22 -07004599F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10004600
J. German Rivera31c88962015-03-05 19:29:09 -06004601FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER
Joe Perches9c3646d2015-06-25 15:02:00 -07004602M: "J. German Rivera" <German.Rivera@freescale.com>
J. German Rivera31c88962015-03-05 19:29:09 -06004603L: linux-kernel@vger.kernel.org
4604S: Maintained
4605F: drivers/staging/fsl-mc/
4606
Linus Torvalds1da177e2005-04-16 15:20:36 -07004607FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004608M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004609W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
4610S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004611F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004612
Pavel Machek71038f52009-01-15 13:51:02 -08004613FREEZER
Rafael J. Wysocki49db1902013-10-09 01:47:53 +02004614M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Rafael J. Wysocki7fb06082014-03-20 03:34:47 +01004615M: Pavel Machek <pavel@ucw.cz>
WANG Congbf1c1382011-10-08 20:57:50 +02004616L: linux-pm@vger.kernel.org
Pavel Machek71038f52009-01-15 13:51:02 -08004617S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004618F: Documentation/power/freezing-of-tasks.txt
4619F: include/linux/freezer.h
4620F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08004621
Konrad Rzeszutek Wilk839a1f72012-04-16 17:06:35 -04004622FRONTSWAP API
4623M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4624L: linux-kernel@vger.kernel.org
4625S: Maintained
4626F: mm/frontswap.c
4627F: include/linux/frontswap.h
4628
David Howellsa5432f52009-04-20 15:46:45 +01004629FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07004630M: David Howells <dhowells@redhat.com>
Geert Uytterhoevene62d6e22015-11-12 11:46:33 +00004631L: linux-cachefs@redhat.com (moderated for non-subscribers)
David Howellsa5432f52009-04-20 15:46:45 +01004632S: Supported
4633F: Documentation/filesystems/caching/
4634F: fs/fscache/
4635F: include/linux/fscache*.h
4636
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09004637F2FS FILE SYSTEM
Jaegeuk Kim9b29d482014-05-30 08:20:08 +09004638M: Jaegeuk Kim <jaegeuk@kernel.org>
Jaegeuk Kimf6238a72014-05-31 01:00:49 +09004639M: Changman Lee <cm224.lee@samsung.com>
Chao Yu7b2a2462015-08-12 17:47:08 +08004640R: Chao Yu <chao2.yu@samsung.com>
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09004641L: linux-f2fs-devel@lists.sourceforge.net
4642W: http://en.wikipedia.org/wiki/F2FS
4643T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
4644S: Maintained
4645F: Documentation/filesystems/f2fs.txt
Jaegeuk Kim3bac3802014-01-09 21:00:06 +09004646F: Documentation/ABI/testing/sysfs-fs-f2fs
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09004647F: fs/f2fs/
4648F: include/linux/f2fs_fs.h
Chao Yu62d43ee2015-07-06 20:29:46 +08004649F: include/trace/events/f2fs.h
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09004650
David Howells5ab7ffe2007-04-10 15:10:45 +01004651FUJITSU FR-V (FRV) PORT
David Howells0cf03052016-01-20 10:29:00 +00004652S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004653F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004654
Jonathan Woithe20b93732008-06-11 10:14:56 +09304655FUJITSU LAPTOP EXTRAS
Jonathan Woithe409a3e92012-03-27 13:01:01 +10304656M: Jonathan Woithe <jwoithe@just42.net>
Matthew Garrettd0944852010-02-11 10:40:13 -05004657L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09304658S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004659F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09304660
Heungjun Kim4da621b2011-11-11 08:05:33 -03004661FUJITSU M-5MO LS CAMERA ISP DRIVER
4662M: Kyungmin Park <kyungmin.park@samsung.com>
4663M: Heungjun Kim <riverful.kim@samsung.com>
4664L: linux-media@vger.kernel.org
4665S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004666F: drivers/media/i2c/m5mols/
Mauro Carvalho Chehabb5dcee22015-11-10 12:01:44 -02004667F: include/media/i2c/m5mols.h
Heungjun Kim4da621b2011-11-11 08:05:33 -03004668
Robert Gerlach2d24c492012-01-18 14:26:22 +01004669FUJITSU TABLET EXTRAS
4670M: Robert Gerlach <khnz@gmx.de>
4671L: platform-driver-x86@vger.kernel.org
4672S: Maintained
4673F: drivers/platform/x86/fujitsu-tablet.c
4674
Miklos Szeredi04578f12005-09-09 13:10:22 -07004675FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07004676M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07004677L: fuse-devel@lists.sourceforge.net
4678W: http://fuse.sourceforge.net/
Miklos Szeredi0a30f612015-07-01 17:10:36 +02004679T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
Miklos Szeredi04578f12005-09-09 13:10:22 -07004680S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004681F: fs/fuse/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004682F: include/uapi/linux/fuse.h
Miklos Szeredi0a30f612015-07-01 17:10:36 +02004683F: Documentation/filesystems/fuse.txt
Miklos Szeredi04578f12005-09-09 13:10:22 -07004684
Linus Torvalds1da177e2005-04-16 15:20:36 -07004685FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07004686M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004687L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02004688S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07004689F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004690
Peter Oberparleiterd8e21622013-10-16 13:46:49 -07004691GCOV BASED KERNEL PROFILING
4692M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
4693S: Maintained
4694F: kernel/gcov/
4695F: Documentation/gcov.txt
4696
Linus Torvalds1da177e2005-04-16 15:20:36 -07004697GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004698M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004699L: linux-scsi@vger.kernel.org
4700W: http://www.icp-vortex.com/
4701S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004702F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004703
Jan Kiszka158daf12015-02-17 13:47:49 -08004704GDB KERNEL DEBUGGING HELPER SCRIPTS
4705M: Jan Kiszka <jan.kiszka@siemens.com>
4706S: Supported
4707F: scripts/gdb/
4708
Hans Verkuil3169a1c2012-11-23 07:11:58 -03004709GEMTEK FM RADIO RECEIVER DRIVER
4710M: Hans Verkuil <hverkuil@xs4all.nl>
4711L: linux-media@vger.kernel.org
4712T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02004713W: https://linuxtv.org
Hans Verkuil3169a1c2012-11-23 07:11:58 -03004714S: Maintained
4715F: drivers/media/radio/radio-gemtek*
4716
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02004717GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07004718M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02004719S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004720F: drivers/i2c/busses/i2c-gpio.c
4721F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02004722
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01004723GENERIC GPIO I2C MULTIPLEXER DRIVER
4724M: Peter Korsgaard <peter.korsgaard@barco.com>
4725L: linux-i2c@vger.kernel.org
4726S: Supported
Jean Delvaree7065e22012-04-28 15:32:06 +02004727F: drivers/i2c/muxes/i2c-mux-gpio.c
4728F: include/linux/i2c-mux-gpio.h
4729F: Documentation/i2c/muxes/i2c-mux-gpio
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01004730
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004731GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004732M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004733W: http://www.kernel.org/pub/linux/utils/net/hdlc/
4734S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004735F: drivers/net/wan/c101.c
4736F: drivers/net/wan/hd6457*
4737F: drivers/net/wan/hdlc*
4738F: drivers/net/wan/n2.c
4739F: drivers/net/wan/pc300too.c
4740F: drivers/net/wan/pci200syn.c
4741F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004742
Arnd Bergmann1527aab2009-06-14 22:46:16 +02004743GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07004744M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02004745L: linux-arch@vger.kernel.org
4746T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
4747S: Maintained
Joe Perches14430812013-09-11 14:23:50 -07004748F: include/asm-generic/
4749F: include/uapi/asm-generic/
Arnd Bergmann1527aab2009-06-14 22:46:16 +02004750
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +05304751GENERIC PHY FRAMEWORK
4752M: Kishon Vijay Abraham I <kishon@ti.com>
4753L: linux-kernel@vger.kernel.org
4754T: git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
4755S: Supported
4756F: drivers/phy/
4757F: include/linux/phy/
4758
Kevin Hilmaneea97ae2015-03-12 10:33:46 -07004759GENERIC PM DOMAINS
4760M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
4761M: Kevin Hilman <khilman@kernel.org>
4762M: Ulf Hansson <ulf.hansson@linaro.org>
4763L: linux-pm@vger.kernel.org
4764S: Supported
4765F: drivers/base/power/domain*.c
4766F: include/linux/pm_domain.h
4767
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03004768GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07004769M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03004770L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03004771S: Supported
4772F: drivers/uio/uio_pci_generic.c
4773
Joe Perchesf8f1ec72014-06-04 16:05:31 -07004774GET_MAINTAINER SCRIPT
4775M: Joe Perches <joe@perches.com>
4776S: Maintained
4777F: scripts/get_maintainer.pl
4778
Steven Whitehouse5be7b502006-04-28 11:27:32 -04004779GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004780M: Steven Whitehouse <swhiteho@redhat.com>
Bob Peterson28666d62015-02-13 11:23:11 -06004781M: Bob Peterson <rpeterso@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04004782L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04004783W: http://sources.redhat.com/cluster/
Bob Peterson28666d62015-02-13 11:23:11 -06004784T: git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04004785S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004786F: Documentation/filesystems/gfs2*.txt
4787F: fs/gfs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004788F: include/uapi/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04004789
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08004790GIGASET ISDN DRIVERS
Tilman Schmidt6b096fd2015-05-02 19:23:22 +02004791M: Paul Bolle <pebolle@tiscali.nl>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08004792L: gigaset307x-common@lists.sourceforge.net
4793W: http://gigaset307x.sourceforge.net/
Tilman Schmidt6b096fd2015-05-02 19:23:22 +02004794S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004795F: Documentation/isdn/README.gigaset
4796F: drivers/isdn/gigaset/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004797F: include/uapi/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08004798
Joe Perches7eea35f2014-07-30 05:09:23 -03004799GO7007 MPEG CODEC
4800M: Hans Verkuil <hans.verkuil@cisco.com>
4801L: linux-media@vger.kernel.org
4802S: Maintained
4803F: drivers/media/usb/go7007/
4804
Bastien Noceraca96ea82014-10-31 09:26:16 -07004805GOODIX TOUCHSCREEN
4806M: Bastien Nocera <hadess@hadess.net>
4807L: linux-input@vger.kernel.org
4808S: Maintained
4809F: drivers/input/touchscreen/goodix.c
4810
Grant Likelya0dc00b2011-02-12 01:48:14 -07004811GPIO SUBSYSTEM
Linus Walleije4651a92012-08-06 09:52:52 +02004812M: Linus Walleij <linus.walleij@linaro.org>
Linus Walleijf2fa75c2013-12-10 09:43:09 +01004813M: Alexandre Courbot <gnurou@gmail.com>
Alexandre Courbotd15b7172013-05-26 11:50:54 +09004814L: linux-gpio@vger.kernel.org
Linus Walleijf2fa75c2013-12-10 09:43:09 +01004815T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
4816S: Maintained
4817F: Documentation/gpio/
Grant Likelya0dc00b2011-02-12 01:48:14 -07004818F: drivers/gpio/
Alexandre Courbotbdc6e952014-08-04 13:06:58 +09004819F: include/linux/gpio/
4820F: include/linux/gpio.h
Yang Bai9b692342012-10-04 17:12:35 -07004821F: include/asm-generic/gpio.h
Grant Likelya0dc00b2011-02-12 01:48:14 -07004822
Harry Wei71a6d0a2011-05-11 15:13:33 -07004823GRE DEMULTIPLEXER DRIVER
4824M: Dmitry Kozlov <xeb@mail.ru>
4825L: netdev@vger.kernel.org
4826S: Maintained
Joe Perches11c26772013-09-11 14:23:48 -07004827F: net/ipv4/gre_demux.c
4828F: net/ipv4/gre_offload.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07004829F: include/net/gre.h
4830
Kristoffer Glembod4c41132010-02-15 03:33:44 +00004831GRETH 10/100/1G Ethernet MAC device driver
4832M: Kristoffer Glembo <kristoffer@gaisler.com>
4833L: netdev@vger.kernel.org
4834S: Maintained
Joe Perchesa31a96a2012-01-10 15:08:58 -08004835F: drivers/net/ethernet/aeroflex/
Kristoffer Glembod4c41132010-02-15 03:33:44 +00004836
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004837GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004838M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004839L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004840T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004841S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004842F: drivers/media/usb/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004843
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03004844GSPCA GL860 SUBDRIVER
4845M: Olivier Lorin <o.lorin@laposte.net>
4846L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004847T: git git://linuxtv.org/media_tree.git
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03004848S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004849F: drivers/media/usb/gspca/gl860/
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03004850
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004851GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004852M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004853L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004854T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004855S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004856F: drivers/media/usb/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004857
4858GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004859M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004860L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004861T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004862S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004863F: drivers/media/usb/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004864
Brian Johnson261982f2009-07-19 15:58:56 -03004865GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03004866M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03004867L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004868T: git git://linuxtv.org/media_tree.git
Brian Johnson261982f2009-07-19 15:58:56 -03004869S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004870F: drivers/media/usb/gspca/sn9c20x.c
Brian Johnson261982f2009-07-19 15:58:56 -03004871
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004872GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004873M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004874L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004875T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004876S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004877F: drivers/media/usb/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004878
4879GSPCA USB WEBCAM DRIVER
Jean-Francois Moinefc3f9062012-05-24 07:29:41 -03004880M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004881L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004882T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004883S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004884F: drivers/media/usb/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004885
Davidlohr Bueso584ec972013-12-18 17:08:55 -08004886GUID PARTITION TABLE (GPT)
Andrew Morton4f973c62015-06-25 15:02:05 -07004887M: Davidlohr Bueso <dave@stgolabs.net>
Davidlohr Bueso584ec972013-12-18 17:08:55 -08004888L: linux-efi@vger.kernel.org
4889S: Maintained
4890F: block/partitions/efi.*
4891
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03004892STK1160 USB VIDEO CAPTURE DRIVER
Ezequiel Garcia3259aa52015-03-10 11:43:20 -03004893M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03004894L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004895T: git git://linuxtv.org/media_tree.git
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03004896S: Maintained
4897F: drivers/media/usb/stk1160/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004898
Yoshinori Sato4e456b82015-03-11 01:41:38 +09004899H8/300 ARCHITECTURE
4900M: Yoshinori Sato <ysato@users.sourceforge.jp>
Geert Uytterhoevenb992c762015-07-17 16:23:55 -07004901L: uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
Yoshinori Sato4e456b82015-03-11 01:41:38 +09004902W: http://uclinux-h8.sourceforge.jp
4903T: git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
4904S: Maintained
4905F: arch/h8300/
4906F: drivers/clocksource/h8300_*.c
4907F: drivers/clk/h8300/
4908F: drivers/irqchip/irq-renesas-h8*.c
4909
Harry Wei71a6d0a2011-05-11 15:13:33 -07004910HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
4911M: Frank Seidel <frank@f-seidel.de>
4912L: platform-driver-x86@vger.kernel.org
4913W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
4914S: Maintained
4915F: drivers/platform/x86/hdaps.c
4916
Hans Verkuil48fc9e22013-04-11 03:36:49 -03004917HDPVR USB VIDEO ENCODER DRIVER
4918M: Hans Verkuil <hverkuil@xs4all.nl>
4919L: linux-media@vger.kernel.org
4920T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02004921W: https://linuxtv.org
Hans Verkuil48fc9e22013-04-11 03:36:49 -03004922S: Odd Fixes
Joe Perches14430812013-09-11 14:23:50 -07004923F: drivers/media/usb/hdpvr/
Hans Verkuil48fc9e22013-04-11 03:36:49 -03004924
Harry Wei71a6d0a2011-05-11 15:13:33 -07004925HWPOISON MEMORY FAILURE HANDLING
Andi Kleenf9625c42014-06-04 16:05:32 -07004926M: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
Harry Wei71a6d0a2011-05-11 15:13:33 -07004927L: linux-mm@kvack.org
Harry Wei71a6d0a2011-05-11 15:13:33 -07004928S: Maintained
4929F: mm/memory-failure.c
4930F: mm/hwpoison-inject.c
4931
4932HYPERVISOR VIRTUAL CONSOLE DRIVER
4933L: linuxppc-dev@lists.ozlabs.org
4934S: Odd Fixes
4935F: drivers/tty/hvc/
4936
Antti Palosaarie5ab1472014-09-10 04:20:15 -03004937HACKRF MEDIA DRIVER
4938M: Antti Palosaari <crope@iki.fi>
4939L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02004940W: https://linuxtv.org
Antti Palosaarie5ab1472014-09-10 04:20:15 -03004941W: http://palosaari.fi/linux/
4942Q: http://patchwork.linuxtv.org/project/linux-media/list/
4943T: git git://linuxtv.org/anttip/media_tree.git
4944S: Maintained
4945F: drivers/media/usb/hackrf/
4946
Michael Buesch844dd052006-06-26 00:24:59 -07004947HARDWARE MONITORING
Jiri Slabyd8130622015-07-17 16:23:20 -07004948M: Jean Delvare <jdelvare@suse.com>
Guenter Roeckca462082012-06-01 23:28:23 -07004949M: Guenter Roeck <linux@roeck-us.net>
Robert Love860e1d62005-08-31 23:57:59 -04004950L: lm-sensors@lm-sensors.org
4951W: http://www.lm-sensors.org/
Jean Delvarea94ef4e2015-04-27 16:37:39 +02004952T: quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07004953T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02004954S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01004955F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07004956F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01004957F: include/linux/hwmon*.h
Robert Love860e1d62005-08-31 23:57:59 -04004958
4959HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07004960M: Matt Mackall <mpm@selenic.com>
4961M: Herbert Xu <herbert@gondor.apana.org.au>
Michael S. Tsirkin3eda71672015-01-16 09:16:00 +02004962L: linux-crypto@vger.kernel.org
Joe Perchesc0d07872009-09-23 15:57:17 -07004963S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07004964F: Documentation/hw_random.txt
4965F: drivers/char/hw_random/
4966F: include/linux/hw_random.h
Robert Love860e1d62005-08-31 23:57:59 -04004967
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03004968HARDWARE SPINLOCK CORE
4969M: Ohad Ben-Cohen <ohad@wizery.com>
4970S: Maintained
Fengguang Wu9f273c22016-01-20 15:03:25 -08004971T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/hwspinlock.git
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03004972F: Documentation/hwspinlock.txt
4973F: drivers/hwspinlock/hwspinlock_*
4974F: include/linux/hwspinlock.h
4975
Linus Torvalds1da177e2005-04-16 15:20:36 -07004976HARMONY SOUND DRIVER
Kyle McMartinac6aecb2007-12-03 22:04:34 +00004977L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004978S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004979F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004980
Antti Palosaari91952bc2012-10-01 12:28:46 -03004981HD29L2 MEDIA DRIVER
4982M: Antti Palosaari <crope@iki.fi>
4983L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02004984W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03004985W: http://palosaari.fi/linux/
4986Q: http://patchwork.linuxtv.org/project/linux-media/list/
4987T: git git://linuxtv.org/anttip/media_tree.git
4988S: Maintained
4989F: drivers/media/dvb-frontends/hd29l2*
4990
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004991HEWLETT-PACKARD SMART2 RAID DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004992L: iss_storagedev@hp.com
Michael Opdenackeraf9f1b32014-10-13 15:51:28 -07004993S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004994F: Documentation/blockdev/cpqarray.txt
4995F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004996
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05004997HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Don Brace693373d2014-10-15 22:32:41 +00004998M: Don Brace <don.brace@pmcs.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05004999L: iss_storagedev@hp.com
Don Brace693373d2014-10-15 22:32:41 +00005000L: storagedev@pmcs.com
5001L: linux-scsi@vger.kernel.org
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05005002S: Supported
5003F: Documentation/scsi/hpsa.txt
5004F: drivers/scsi/hpsa*.[ch]
5005F: include/linux/cciss*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005006F: include/uapi/linux/cciss*.h
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05005007
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005008HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Don Brace693373d2014-10-15 22:32:41 +00005009M: Don Brace <don.brace@pmcs.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005010L: iss_storagedev@hp.com
Don Brace693373d2014-10-15 22:32:41 +00005011L: storagedev@pmcs.com
5012L: linux-scsi@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005013S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005014F: Documentation/blockdev/cciss.txt
5015F: drivers/block/cciss*
5016F: include/linux/cciss_ioctl.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005017F: include/uapi/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005018
Linus Torvalds1da177e2005-04-16 15:20:36 -07005019HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02005020L: linux-fsdevel@vger.kernel.org
5021S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005022F: Documentation/filesystems/hfs.txt
5023F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005024
Geert Uytterhoevenef575f42014-01-23 15:54:21 -08005025HFSPLUS FILESYSTEM
5026L: linux-fsdevel@vger.kernel.org
5027S: Orphan
5028F: Documentation/filesystems/hfsplus.txt
5029F: fs/hfsplus/
5030
Linus Torvalds1da177e2005-04-16 15:20:36 -07005031HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005032M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005033L: linux-nvidia@lists.surfsouth.com
5034W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
5035S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09005036F: drivers/video/fbdev/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005037
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005038HIBERNATION (aka Software Suspend, aka swsusp)
Rafael J. Wysocki49db1902013-10-09 01:47:53 +02005039M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Rafael J. Wysocki7fb06082014-03-20 03:34:47 +01005040M: Pavel Machek <pavel@ucw.cz>
WANG Congbf1c1382011-10-08 20:57:50 +02005041L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005042S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005043F: arch/x86/power/
5044F: drivers/base/power/
5045F: kernel/power/
5046F: include/linux/suspend.h
5047F: include/linux/freezer.h
5048F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07005049F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005050
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01005051HID CORE LAYER
Jiri Kosinae5f64502015-08-09 09:11:34 +02005052M: Jiri Kosina <jikos@kernel.org>
Jiri Kosina406df152015-11-20 10:16:06 +01005053R: Benjamin Tissoires <benjamin.tissoires@redhat.com>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04005054L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005055T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01005056S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005057F: drivers/hid/
5058F: include/linux/hid*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005059F: include/uapi/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01005060
Srinivas Pandruvada30ee72f2015-05-15 11:35:38 -07005061HID SENSOR HUB DRIVERS
Jiri Kosinae5f64502015-08-09 09:11:34 +02005062M: Jiri Kosina <jikos@kernel.org>
Srinivas Pandruvada30ee72f2015-05-15 11:35:38 -07005063M: Jonathan Cameron <jic23@kernel.org>
5064M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
5065L: linux-input@vger.kernel.org
5066L: linux-iio@vger.kernel.org
5067S: Maintained
5068F: Documentation/hid/hid-sensor*
5069F: drivers/hid/hid-sensor-*
5070F: drivers/iio/*/hid-*
5071F: include/linux/hid-sensor-*
5072
Ingo Molnar38bed542007-02-22 09:09:34 +01005073HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07005074M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar981c3a42014-01-21 10:59:20 +01005075L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005076T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Ingo Molnar38bed542007-02-22 09:09:34 +01005077S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005078F: Documentation/timers/
Thomas Gleixner5cee9642014-06-22 12:06:40 +02005079F: kernel/time/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01005080F: kernel/time/clockevents.c
5081F: kernel/time/tick*.*
5082F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07005083F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07005084F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01005085
Linus Torvalds1da177e2005-04-16 15:20:36 -07005086HIGH-SPEED SCC DRIVER FOR AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -07005087L: linux-hams@vger.kernel.org
Uwe Kleine-König8b64f2a2012-05-29 15:07:11 -07005088S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005089F: drivers/net/hamradio/dmascc.c
5090F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005091
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08005092HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005093M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08005094W: http://www.highpoint-tech.com
5095S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005096F: Documentation/scsi/hptiop.txt
5097F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08005098
Linus Torvalds1da177e2005-04-16 15:20:36 -07005099HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07005100M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005101L: linux-hippi@sunsite.dk
5102S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005103F: include/linux/hippidevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005104F: include/uapi/linux/if_hippi.h
Joe Perches679655d2009-04-07 20:44:32 -07005105F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07005106F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005107
John Garry16c6c252015-11-18 00:50:59 +08005108HISILICON SAS Controller
5109M: John Garry <john.garry@huawei.com>
5110W: http://www.hisilicon.com
5111S: Supported
5112F: drivers/scsi/hisi_sas/
5113F: Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
5114
Jouni Malinenff1d2762005-05-12 22:54:16 -04005115HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005116M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07005117L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07005118L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04005119W: http://hostap.epitest.fi/
5120S: Maintained
Kalle Valoeb4f98d2015-11-18 09:42:58 +02005121F: drivers/net/wireless/intersil/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04005122
Carlos Corbachodd8cd772008-02-05 02:17:15 +00005123HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05005124L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01005125S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005126F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00005127
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005128HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07005129M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005130S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07005131F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005132
Joe Perches7d2c86b2009-04-07 20:59:01 -07005133HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07005134M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08005135S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005136F: Documentation/timers/hpet.txt
5137F: drivers/char/hpet.c
5138F: include/linux/hpet.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005139F: include/uapi/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08005140
Jiri Kosinae07b5d72010-03-18 10:59:57 +01005141HPET: x86
Joe Perches9e06f632014-04-03 14:48:53 -07005142S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005143F: arch/x86/kernel/hpet.c
5144F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08005145
Linus Torvalds1da177e2005-04-16 15:20:36 -07005146HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005147M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005148W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
5149S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005150F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005151
Sebastian Reichel3441cde2013-11-27 10:17:22 +01005152HSI SUBSYSTEM
Sebastian Reichel56459ea2014-03-28 19:57:59 +01005153M: Sebastian Reichel <sre@kernel.org>
5154T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
Sebastian Reichel3441cde2013-11-27 10:17:22 +01005155S: Maintained
5156F: Documentation/ABI/testing/sysfs-bus-hsi
Sebastian Reichel56459ea2014-03-28 19:57:59 +01005157F: Documentation/hsi.txt
Sebastian Reichel3441cde2013-11-27 10:17:22 +01005158F: drivers/hsi/
5159F: include/linux/hsi/
5160F: include/uapi/linux/hsi/
5161
Joe Perches7d2c86b2009-04-07 20:59:01 -07005162HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005163M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00005164W: http://www.pharscape.org
5165S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005166F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00005167
Arvid Brodin19990e22013-11-29 23:36:00 +01005168HSR NETWORK PROTOCOL
5169M: Arvid Brodin <arvid.brodin@alten.se>
5170L: netdev@vger.kernel.org
5171S: Maintained
5172F: net/hsr/
5173
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04005174HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005175M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04005176L: linux-input@vger.kernel.org
5177S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005178F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04005179
Linus Torvalds1da177e2005-04-16 15:20:36 -07005180HUGETLB FILESYSTEM
Nadia Yvette Chambers6d49e352012-12-06 10:39:54 +01005181M: Nadia Yvette Chambers <nyc@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005182S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005183F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005184
K. Y. Srinivasan05183182011-12-01 14:31:30 -08005185Hyper-V CORE AND DRIVERS
Joe Perches9c3646d2015-06-25 15:02:00 -07005186M: "K. Y. Srinivasan" <kys@microsoft.com>
K. Y. Srinivasan05183182011-12-01 14:31:30 -08005187M: Haiyang Zhang <haiyangz@microsoft.com>
5188L: devel@linuxdriverproject.org
5189S: Maintained
Haiyang Zhanga4162742013-05-09 14:34:55 -07005190F: arch/x86/include/asm/mshyperv.h
5191F: arch/x86/include/uapi/asm/hyperv.h
5192F: arch/x86/kernel/cpu/mshyperv.c
K. Y. Srinivasan05183182011-12-01 14:31:30 -08005193F: drivers/hid/hid-hyperv.c
Haiyang Zhanga4162742013-05-09 14:34:55 -07005194F: drivers/hv/
Haiyang Zhangf92ca802013-11-21 14:32:10 -08005195F: drivers/input/serio/hyperv-keyboard.c
K. Y. Srinivasan05183182011-12-01 14:31:30 -08005196F: drivers/net/hyperv/
Haiyang Zhanga4162742013-05-09 14:34:55 -07005197F: drivers/scsi/storvsc_drv.c
Jingoo Han8a61f012014-07-01 15:36:01 +09005198F: drivers/video/fbdev/hyperv_fb.c
Haiyang Zhanga4162742013-05-09 14:34:55 -07005199F: include/linux/hyperv.h
5200F: tools/hv/
Dexuan Cui54bf7252015-08-05 00:52:45 -07005201F: Documentation/ABI/stable/sysfs-bus-vmbus
K. Y. Srinivasan05183182011-12-01 14:31:30 -08005202
Jean Delvared85c8a6a2012-11-13 22:27:19 +01005203I2C OVER PARALLEL PORT
Jiri Slabyd8130622015-07-17 16:23:20 -07005204M: Jean Delvare <jdelvare@suse.com>
Jean Delvared85c8a6a2012-11-13 22:27:19 +01005205L: linux-i2c@vger.kernel.org
5206S: Maintained
5207F: Documentation/i2c/busses/i2c-parport
5208F: Documentation/i2c/busses/i2c-parport-light
5209F: drivers/i2c/busses/i2c-parport.c
5210F: drivers/i2c/busses/i2c-parport-light.c
5211
5212I2C/SMBUS CONTROLLER DRIVERS FOR PC
Jiri Slabyd8130622015-07-17 16:23:20 -07005213M: Jean Delvare <jdelvare@suse.com>
Jean Delvared85c8a6a2012-11-13 22:27:19 +01005214L: linux-i2c@vger.kernel.org
5215S: Maintained
5216F: Documentation/i2c/busses/i2c-ali1535
5217F: Documentation/i2c/busses/i2c-ali1563
5218F: Documentation/i2c/busses/i2c-ali15x3
5219F: Documentation/i2c/busses/i2c-amd756
5220F: Documentation/i2c/busses/i2c-amd8111
5221F: Documentation/i2c/busses/i2c-i801
5222F: Documentation/i2c/busses/i2c-nforce2
5223F: Documentation/i2c/busses/i2c-piix4
5224F: Documentation/i2c/busses/i2c-sis5595
5225F: Documentation/i2c/busses/i2c-sis630
5226F: Documentation/i2c/busses/i2c-sis96x
5227F: Documentation/i2c/busses/i2c-via
5228F: Documentation/i2c/busses/i2c-viapro
5229F: drivers/i2c/busses/i2c-ali1535.c
5230F: drivers/i2c/busses/i2c-ali1563.c
5231F: drivers/i2c/busses/i2c-ali15x3.c
5232F: drivers/i2c/busses/i2c-amd756.c
5233F: drivers/i2c/busses/i2c-amd756-s4882.c
5234F: drivers/i2c/busses/i2c-amd8111.c
5235F: drivers/i2c/busses/i2c-i801.c
5236F: drivers/i2c/busses/i2c-isch.c
5237F: drivers/i2c/busses/i2c-nforce2.c
5238F: drivers/i2c/busses/i2c-nforce2-s4985.c
5239F: drivers/i2c/busses/i2c-piix4.c
5240F: drivers/i2c/busses/i2c-sis5595.c
5241F: drivers/i2c/busses/i2c-sis630.c
5242F: drivers/i2c/busses/i2c-sis96x.c
5243F: drivers/i2c/busses/i2c-via.c
5244F: drivers/i2c/busses/i2c-viapro.c
5245
Neil Hormancb7f07a2013-02-10 11:59:03 -05005246I2C/SMBUS ISMT DRIVER
5247M: Seth Heasley <seth.heasley@intel.com>
5248M: Neil Horman <nhorman@tuxdriver.com>
5249L: linux-i2c@vger.kernel.org
5250F: drivers/i2c/busses/i2c-ismt.c
5251F: Documentation/i2c/busses/i2c-ismt
5252
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005253I2C/SMBUS STUB DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07005254M: Jean Delvare <jdelvare@suse.com>
Jean Delvare846557d2008-10-30 15:55:47 +01005255L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005256S: Maintained
Cesar Eduardo Barros8547a5b2012-12-16 21:11:54 +01005257F: drivers/i2c/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005258
Jean Delvare5b543962005-08-15 19:51:02 +02005259I2C SUBSYSTEM
Wolfram Sang14d77c42013-02-08 20:54:40 +01005260M: Wolfram Sang <wsa@the-dreams.de>
Jean Delvare846557d2008-10-30 15:55:47 +01005261L: linux-i2c@vger.kernel.org
Wolfram Sang9d4ea272014-04-02 20:25:59 +02005262W: https://i2c.wiki.kernel.org/
5263Q: https://patchwork.ozlabs.org/project/linux-i2c/list/
Wolfram Sang14d77c42013-02-08 20:54:40 +01005264T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005265S: Maintained
Wolfram Sang40ed1b42014-12-08 10:53:13 +01005266F: Documentation/devicetree/bindings/i2c/
Joe Perches679655d2009-04-07 20:44:32 -07005267F: Documentation/i2c/
5268F: drivers/i2c/
Wolfram Sang630bc462015-10-29 08:25:48 +01005269F: drivers/i2c/*/
Joe Perches679655d2009-04-07 20:44:32 -07005270F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01005271F: include/linux/i2c-*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005272F: include/uapi/linux/i2c.h
5273F: include/uapi/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005274
Wolfram Sang4560d672014-08-19 10:08:35 -05005275I2C ACPI SUPPORT
5276M: Mika Westerberg <mika.westerberg@linux.intel.com>
5277L: linux-i2c@vger.kernel.org
5278L: linux-acpi@vger.kernel.org
5279S: Maintained
Wolfram Sang4560d672014-08-19 10:08:35 -05005280
Jean Delvared85c8a6a2012-11-13 22:27:19 +01005281I2C-TAOS-EVM DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07005282M: Jean Delvare <jdelvare@suse.com>
Jean Delvared85c8a6a2012-11-13 22:27:19 +01005283L: linux-i2c@vger.kernel.org
5284S: Maintained
5285F: Documentation/i2c/busses/i2c-taos-evm
5286F: drivers/i2c/busses/i2c-taos-evm.c
5287
Till Harbaume8c76ee2007-05-01 23:26:35 +02005288I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005289M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01005290L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07005291W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02005292S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005293F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02005294
Linus Torvalds1da177e2005-04-16 15:20:36 -07005295i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07005296M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005297S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005298F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005299
5300i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07005301M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07005302T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005303S: Maintained
5304
Linus Torvalds1da177e2005-04-16 15:20:36 -07005305IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07005306M: Tony Luck <tony.luck@intel.com>
5307M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005308L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07005309T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005310S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005311F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005312
Leonidas Da Silva Barbosa4cd38752015-08-08 18:29:27 -03005313IBM Power VMX Cryptographic instructions
5314M: Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
Paulo Flabiano Smorigo5cd01fe2015-08-10 16:14:17 -03005315M: Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
Leonidas Da Silva Barbosa4cd38752015-08-08 18:29:27 -03005316L: linux-crypto@vger.kernel.org
5317S: Supported
5318F: drivers/crypto/vmx/Makefile
5319F: drivers/crypto/vmx/Kconfig
5320F: drivers/crypto/vmx/vmx.c
5321F: drivers/crypto/vmx/aes*
5322F: drivers/crypto/vmx/ghash*
5323F: drivers/crypto/vmx/ppc-xlate.pl
5324
Kent Yoder956c2032012-09-07 04:17:01 +08005325IBM Power in-Nest Crypto Acceleration
Leonidas Da Silva Barbosa4cd38752015-08-08 18:29:27 -03005326M: Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
Paulo Flabiano Smorigo5cd01fe2015-08-10 16:14:17 -03005327M: Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
Kent Yoder956c2032012-09-07 04:17:01 +08005328L: linux-crypto@vger.kernel.org
5329S: Supported
Dan Streetman28bceea2015-06-18 12:28:32 -04005330F: drivers/crypto/nx/Makefile
5331F: drivers/crypto/nx/Kconfig
5332F: drivers/crypto/nx/nx-aes*
5333F: drivers/crypto/nx/nx-sha*
5334F: drivers/crypto/nx/nx.*
5335F: drivers/crypto/nx/nx_csbcpb.h
5336F: drivers/crypto/nx/nx_debugfs.h
Kent Yoder956c2032012-09-07 04:17:01 +08005337
Seth Jennings0e16aaf2012-07-19 09:42:40 -05005338IBM Power 842 compression accelerator
Dan Streetman41656aa2015-07-29 19:50:46 -04005339M: Dan Streetman <ddstreet@ieee.org>
Seth Jennings0e16aaf2012-07-19 09:42:40 -05005340S: Supported
Dan Streetman28bceea2015-06-18 12:28:32 -04005341F: drivers/crypto/nx/Makefile
5342F: drivers/crypto/nx/Kconfig
Dan Streetman7011a122015-05-07 13:49:17 -04005343F: drivers/crypto/nx/nx-842*
Dan Streetman2da572c2015-05-07 13:49:14 -04005344F: include/linux/sw842.h
Dan Streetman2062c5b2015-05-07 13:49:15 -04005345F: crypto/842.c
Dan Streetman2da572c2015-05-07 13:49:14 -04005346F: lib/842/
Seth Jennings0e16aaf2012-07-19 09:42:40 -05005347
Linus Torvalds1da177e2005-04-16 15:20:36 -07005348IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07005349M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005350S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005351F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005352
Santiago Leon9d348af2010-09-03 18:29:53 +00005353IBM Power Virtual Ethernet Device Driver
Thomas Falconeddd63a2015-01-09 14:29:40 -06005354M: Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
Santiago Leon9d348af2010-09-03 18:29:53 +00005355L: netdev@vger.kernel.org
5356S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07005357F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00005358
Thomas Falcon032c5e82015-12-21 11:26:06 -06005359IBM Power SRIOV Virtual NIC Device Driver
5360M: Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5361M: John Allen <jallen@linux.vnet.ibm.com>
5362L: netdev@vger.kernel.org
5363S: Supported
5364F: drivers/net/ethernet/ibm/ibmvnic.*
5365
Nathan Fontenote6babec2014-04-09 13:32:06 -05005366IBM Power Virtual SCSI Device Drivers
Tyrel Datwylerbcbde522015-01-12 16:31:34 -08005367M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
Robert Jennings4b7652c2012-07-31 12:34:36 -05005368L: linux-scsi@vger.kernel.org
5369S: Supported
Nathan Fontenote6babec2014-04-09 13:32:06 -05005370F: drivers/scsi/ibmvscsi/ibmvscsi*
5371F: drivers/scsi/ibmvscsi/viosrp.h
5372
5373IBM Power Virtual FC Device Drivers
Tyrel Datwyler44b4dad2015-01-12 16:31:35 -08005374M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
Nathan Fontenote6babec2014-04-09 13:32:06 -05005375L: linux-scsi@vger.kernel.org
5376S: Supported
5377F: drivers/scsi/ibmvscsi/ibmvfc*
Robert Jennings4b7652c2012-07-31 12:34:36 -05005378
Linus Torvalds1da177e2005-04-16 15:20:36 -07005379IBM ServeRAID RAID DRIVER
Michael Opdenackerf9213e72014-08-08 14:23:50 -07005380S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005381F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005382
Peter Tyser6ed9f9c2012-04-18 09:48:24 -05005383ICH LPC AND GPIO DRIVER
5384M: Peter Tyser <ptyser@xes-inc.com>
5385S: Maintained
5386F: drivers/mfd/lpc_ich.c
5387F: drivers/gpio/gpio-ich.c
5388
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01005389IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005390M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005391L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005392Q: http://patchwork.ozlabs.org/project/linux-ide/list/
Joe Perches08deed12012-03-23 15:01:57 -07005393T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005394S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005395F: Documentation/ide/
5396F: drivers/ide/
5397F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005398
Ike Panhc6cb8c132011-08-25 22:28:45 +08005399IDEAPAD LAPTOP EXTRAS DRIVER
5400M: Ike Panhc <ike.pan@canonical.com>
5401L: platform-driver-x86@vger.kernel.org
5402W: http://launchpad.net/ideapad-laptop
5403S: Maintained
5404F: drivers/platform/x86/ideapad-laptop.c
5405
Andrey Moiseev1ea4c162013-08-25 22:51:15 -07005406IDEAPAD LAPTOP SLIDEBAR DRIVER
5407M: Andrey Moiseev <o2g.org.ru@gmail.com>
5408L: linux-input@vger.kernel.org
5409W: https://github.com/o2genum/ideapad-slidebar
5410S: Maintained
5411F: drivers/input/misc/ideapad_slidebar.c
5412
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02005413IDE/ATAPI DRIVERS
Borislav Petkov487ba8e2012-10-29 18:40:10 +01005414M: Borislav Petkov <bp@alien8.de>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01005415L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01005416S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005417F: Documentation/cdrom/ide-cd
5418F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005419
Andy Henroid27471fd2008-10-09 11:45:22 -07005420IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07005421M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02005422L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07005423S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005424F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07005425
Sergey Lapin02cf2282009-06-08 12:18:50 +00005426IEEE 802.15.4 SUBSYSTEM
Alexander Aringb6e195f2014-07-03 23:13:19 +02005427M: Alexander Aring <alex.aring@gmail.com>
Varka Bhadramebef9c12014-08-08 17:32:45 +05305428L: linux-wpan@vger.kernel.org
5429W: https://github.com/linux-wpan
5430T: git git://github.com/linux-wpan/linux-wpan-next.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00005431S: Maintained
5432F: net/ieee802154/
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00005433F: net/mac802154/
Cesar Eduardo Barros251741b2013-01-04 15:35:30 -08005434F: drivers/net/ieee802154/
Alexander Aring580947d2014-10-25 09:41:05 +02005435F: include/linux/nl802154.h
5436F: include/linux/ieee802154.h
5437F: include/net/nl802154.h
5438F: include/net/mac802154.h
5439F: include/net/af_ieee802154.h
5440F: include/net/cfg802154.h
5441F: include/net/ieee802154_netdev.h
Varka Bhadramebef9c12014-08-08 17:32:45 +05305442F: Documentation/networking/ieee802154.txt
Sergey Lapin02cf2282009-06-08 12:18:50 +00005443
Sean Youngb1c97192014-10-23 17:58:22 -03005444IGORPLUG-USB IR RECEIVER
5445M: Sean Young <sean@mess.org>
5446L: linux-media@vger.kernel.org
5447S: Maintained
5448F: drivers/media/rc/igorplugusb.c
5449
Sean Young40ad4a32012-11-19 10:32:53 -03005450IGUANAWORKS USB IR TRANSCEIVER
5451M: Sean Young <sean@mess.org>
5452L: linux-media@vger.kernel.org
5453S: Maintained
5454F: drivers/media/rc/iguanair.c
5455
Ameya Palande9545f862012-01-10 09:00:58 -08005456IIO SUBSYSTEM AND DRIVERS
Sachin Kamat030a13d2013-09-11 11:00:00 +01005457M: Jonathan Cameron <jic23@kernel.org>
Lars-Peter Clausenf0d61162014-08-18 09:29:00 +01005458R: Hartmut Knaack <knaack.h@gmx.de>
5459R: Lars-Peter Clausen <lars@metafoo.de>
5460R: Peter Meerwald <pmeerw@pmeerw.net>
Ameya Palande9545f862012-01-10 09:00:58 -08005461L: linux-iio@vger.kernel.org
5462S: Maintained
Lars-Peter Clausen03e7c252012-04-26 13:46:42 +02005463F: drivers/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08005464F: drivers/staging/iio/
Daniel Baluta8fe671f2014-11-13 15:19:47 -08005465F: include/linux/iio/
Roberta Dobrescu817020c2015-02-26 10:49:25 +02005466F: tools/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08005467
Stanislaw Gruszka65519262011-01-08 15:19:40 +01005468IKANOS/ADI EAGLE ADSL USB DRIVER
5469M: Matthieu Castet <castet.matthieu@free.fr>
5470M: Stanislaw Gruszka <stf_xl@wp.pl>
5471S: Maintained
5472F: drivers/usb/atm/ueagle-atm.c
5473
Guenter Roecke89ab512013-03-08 08:13:09 -08005474INA209 HARDWARE MONITOR DRIVER
5475M: Guenter Roeck <linux@roeck-us.net>
5476L: lm-sensors@lm-sensors.org
5477S: Maintained
5478F: Documentation/hwmon/ina209
5479F: Documentation/devicetree/bindings/i2c/ina209.txt
5480F: drivers/hwmon/ina209.c
5481
5482INA2XX HARDWARE MONITOR DRIVER
5483M: Guenter Roeck <linux@roeck-us.net>
5484L: lm-sensors@lm-sensors.org
5485S: Maintained
5486F: Documentation/hwmon/ina2xx
5487F: drivers/hwmon/ina2xx.c
5488F: include/linux/platform_data/ina2xx.h
5489
Samuel Iglesias Gonsalvez14dc1242012-11-16 16:19:59 +01005490INDUSTRY PACK SUBSYSTEM (IPACK)
5491M: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
5492M: Jens Taprogge <jens.taprogge@taprogge.org>
5493M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5494L: industrypack-devel@lists.sourceforge.net
5495W: http://industrypack.sourceforge.net
5496S: Maintained
5497F: drivers/ipack/
5498
Zubair Lutfullah Kakakhel8adc53f2015-03-18 16:16:37 +00005499INGENIC JZ4780 DMA Driver
5500M: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
5501S: Maintained
5502F: drivers/dma/dma-jz4780.c
5503
Mimi Zoharaa7168f2009-02-04 09:07:03 -05005504INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Mimi Zohar74dd7442014-02-27 08:44:45 -05005505M: Mimi Zohar <zohar@linux.vnet.ibm.com>
Dmitry Kasatkinbfd33c42015-01-15 14:18:18 +02005506M: Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
Mimi Zohar74dd7442014-02-27 08:44:45 -05005507L: linux-ima-devel@lists.sourceforge.net
5508L: linux-ima-user@lists.sourceforge.net
5509L: linux-security-module@vger.kernel.org
Fengguang Wu9f273c22016-01-20 15:03:25 -08005510T: git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
Mimi Zoharaa7168f2009-02-04 09:07:03 -05005511S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005512F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05005513
James Hogan9a4ea5a2014-11-17 09:17:49 -03005514IMGTEC IR DECODER DRIVER
5515M: James Hogan <james.hogan@imgtec.com>
5516S: Maintained
5517F: drivers/media/rc/img-ir/
5518
Linus Torvalds1da177e2005-04-16 15:20:36 -07005519IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005520L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09005521S: Orphan
Jingoo Han8a61f012014-07-01 15:36:01 +09005522F: drivers/video/fbdev/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005523
5524INFINIBAND SUBSYSTEM
Doug Ledfordb6b2bbe2015-05-05 12:57:09 -04005525M: Doug Ledford <dledford@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005526M: Sean Hefty <sean.hefty@intel.com>
5527M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07005528L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07005529W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08005530Q: http://patchwork.kernel.org/project/linux-rdma/list/
Doug Ledford2936ae02015-05-11 21:03:36 -04005531T: git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005532S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005533F: Documentation/infiniband/
5534F: drivers/infiniband/
Doug Ledford2dfcad32015-08-27 14:18:57 -04005535F: drivers/staging/rdma/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005536F: include/uapi/linux/if_infiniband.h
Yann Droneaud954138d2015-05-04 14:31:03 +02005537F: include/uapi/rdma/
5538F: include/rdma/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005539
Robert Lovec9f04f52005-07-15 12:21:07 -04005540INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07005541M: John McCutchan <john@johnmccutchan.com>
5542M: Robert Love <rlove@rlove.org>
5543M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04005544S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005545F: Documentation/filesystems/inotify.txt
5546F: fs/notify/inotify/
5547F: include/linux/inotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005548F: include/uapi/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04005549
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005550INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005551M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005552L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005553Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07005554T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005555S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005556F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07005557F: include/linux/input.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005558F: include/uapi/linux/input.h
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07005559F: include/linux/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005560
Henrik Rydberg3267a872010-06-24 19:10:40 -07005561INPUT MULTITOUCH (MT) PROTOCOL
Henrik Rydberg75dd1122015-01-08 14:32:21 -08005562M: Henrik Rydberg <rydberg@bitmath.org>
Henrik Rydberg3267a872010-06-24 19:10:40 -07005563L: linux-input@vger.kernel.org
Henrik Rydberg75dd1122015-01-08 14:32:21 -08005564S: Odd fixes
Henrik Rydberg3267a872010-06-24 19:10:40 -07005565F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01005566F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07005567K: \b(ABS|SYN)_MT_
5568
Jie Yang97fa99a2015-02-02 16:55:27 +08005569INTEL ASoC BDW/HSW DRIVERS
5570M: Jie Yang <yang.jie@linux.intel.com>
Jim Davise5747e42015-06-25 15:01:58 -07005571L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Jie Yang97fa99a2015-02-02 16:55:27 +08005572S: Supported
Joe Perchese8e12252015-06-30 14:59:39 -07005573F: sound/soc/intel/common/sst-dsp*
5574F: sound/soc/intel/common/sst-firmware.c
5575F: sound/soc/intel/boards/broadwell.c
5576F: sound/soc/intel/haswell/
Jie Yang97fa99a2015-02-02 16:55:27 +08005577
Dave Jiang4ac13e12011-07-29 17:16:55 -07005578INTEL C600 SERIES SAS CONTROLLER DRIVER
5579M: Intel SCU Linux support <intel-linux-scu@intel.com>
Lukasz Doraufdc58132014-04-07 15:39:58 -07005580M: Artur Paszkiewicz <artur.paszkiewicz@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07005581L: linux-scsi@vger.kernel.org
Dave Jiang71068912012-09-25 15:24:56 -07005582T: git git://git.code.sf.net/p/intel-sas/isci
5583S: Supported
Dave Jiang4ac13e12011-07-29 17:16:55 -07005584F: drivers/scsi/isci/
Dave Jiang4ac13e12011-07-29 17:16:55 -07005585
Alex Hungecc83e52015-12-18 23:31:10 +08005586INTEL HID EVENT DRIVER
5587M: Alex Hung <alex.hung@canonical.com>
5588L: platform-driver-x86@vger.kernel.org
5589S: Maintained
5590F: drivers/platform/x86/intel-hid.c
5591
Len Brown26717172010-03-08 14:07:30 -05005592INTEL IDLE DRIVER
5593M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02005594L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005595T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05005596S: Supported
5597F: drivers/idle/intel_idle.c
5598
Kristen Carlson Accardi7c1ac182014-12-15 15:58:24 -08005599INTEL PSTATE DRIVER
Srinivas Pandruvada58ac1f62015-11-02 09:45:46 -08005600M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
5601M: Len Brown <lenb@kernel.org>
Kristen Carlson Accardi7c1ac182014-12-15 15:58:24 -08005602L: linux-pm@vger.kernel.org
5603S: Supported
5604F: drivers/cpufreq/intel_pstate.c
5605
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005606INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08005607M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005608L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005609S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005610F: Documentation/fb/intelfb.txt
Jingoo Han8a61f012014-07-01 15:36:01 +09005611F: drivers/video/fbdev/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005612
Linus Torvalds1da177e2005-04-16 15:20:36 -07005613INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005614M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005615L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005616S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09005617F: drivers/video/fbdev/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005618
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05305619INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005620M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05005621L: platform-driver-x86@vger.kernel.org
Rafael J. Wysocki5ca92bd2013-10-10 23:03:44 +02005622W: https://01.org/linux-acpi
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05305623S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005624F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05305625
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07005626INTEL I/OAT DMA DRIVER
Dave Jiang18ebd562013-10-22 15:29:20 -07005627M: Dave Jiang <dave.jiang@intel.com>
Dan Williams08223d82014-08-19 06:07:56 -07005628R: Dan Williams <dan.j.williams@intel.com>
Dave Jiang18ebd562013-10-22 15:29:20 -07005629L: dmaengine@vger.kernel.org
5630Q: https://patchwork.kernel.org/project/linux-dmaengine/list/
5631S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005632F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07005633
David Woodhouse6c8909b2008-10-18 16:12:17 +01005634INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07005635M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01005636L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07005637T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01005638S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07005639F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07005640F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01005641
Dan Williamsb3e5f262007-08-07 10:26:35 -07005642INTEL IOP-ADMA DMA DRIVER
Dan Williams08223d82014-08-19 06:07:56 -07005643R: Dan Williams <dan.j.williams@intel.com>
Dan Williams1dd83722012-08-15 19:20:02 -07005644S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07005645F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07005646
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01005647INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Krzysztof Hałasa5529c2c2014-09-30 10:32:58 +02005648M: Krzysztof Halasa <khalasa@piap.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01005649S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005650F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
5651F: arch/arm/mach-ixp4xx/include/mach/npe.h
5652F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
5653F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07005654F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07005655F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01005656
Michael Buesch844dd052006-06-26 00:24:59 -07005657INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005658M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07005659S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005660F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07005661
Jeff Kirsher2f302322015-03-25 17:01:03 -07005662INTEL ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005663M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Jeff Kirsher2f302322015-03-25 17:01:03 -07005664R: Jesse Brandeburg <jesse.brandeburg@intel.com>
5665R: Shannon Nelson <shannon.nelson@intel.com>
5666R: Carolyn Wyborny <carolyn.wyborny@intel.com>
5667R: Don Skidmore <donald.c.skidmore@intel.com>
Jeff Kirsher6e80a182015-11-10 11:09:06 -08005668R: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher2f302322015-03-25 17:01:03 -07005669R: John Ronciak <john.ronciak@intel.com>
5670R: Mitch Williams <mitch.a.williams@intel.com>
5671L: intel-wired-lan@lists.osuosl.org
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00005672W: http://www.intel.com/support/feedback.htm
Auke Kokd94e6fe2008-03-03 14:37:47 -08005673W: http://e1000.sourceforge.net/
Jeff Kirsher2f302322015-03-25 17:01:03 -07005674Q: http://patchwork.ozlabs.org/project/intel-wired-lan/list/
5675T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
5676T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005677S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00005678F: Documentation/networking/e100.txt
5679F: Documentation/networking/e1000.txt
5680F: Documentation/networking/e1000e.txt
5681F: Documentation/networking/igb.txt
5682F: Documentation/networking/igbvf.txt
5683F: Documentation/networking/ixgb.txt
5684F: Documentation/networking/ixgbe.txt
5685F: Documentation/networking/ixgbevf.txt
Jesse Brandeburg1bff6522013-09-11 08:40:23 +00005686F: Documentation/networking/i40e.txt
Greg Rose105bf2f2013-12-21 06:13:16 +00005687F: Documentation/networking/i40evf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07005688F: drivers/net/ethernet/intel/
Joe Perchesbc90d292014-02-25 13:35:53 -08005689F: drivers/net/ethernet/intel/*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005690
Linus Walleij0963d59b2013-10-19 15:39:17 +02005691INTEL-MID GPIO DRIVER
5692M: David Cohen <david.a.cohen@linux.intel.com>
5693L: linux-gpio@vger.kernel.org
5694S: Maintained
5695F: drivers/gpio/gpio-intel-mid.c
5696
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04005697INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
5698M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07005699L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04005700S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005701F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07005702F: Documentation/networking/README.ipw2200
Kalle Valo367a1092015-11-17 20:24:59 +02005703F: drivers/net/wireless/intel/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06005704
Alexander Shishkin5760b0a2015-09-22 15:47:20 +03005705INTEL(R) TRACE HUB
5706M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
5707S: Supported
5708F: Documentation/trace/intel_th.txt
5709F: drivers/hwtracing/intel_th/
5710
Shane Wang4bd96a72010-03-10 14:36:10 +08005711INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
Wei, Gang74b18e12015-12-02 07:07:20 +00005712M: Ning Sun <ning.sun@intel.com>
Shane Wang4bd96a72010-03-10 14:36:10 +08005713L: tboot-devel@lists.sourceforge.net
5714W: http://tboot.sourceforge.net
Gang Weie9b7d7c2012-09-17 14:08:59 -07005715T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
Shane Wang4bd96a72010-03-10 14:36:10 +08005716S: Supported
5717F: Documentation/intel_txt.txt
5718F: include/linux/tboot.h
5719F: arch/x86/kernel/tboot.c
5720
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08005721INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07005722M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08005723M: linux-wimax@intel.com
Joe Perches49e7d9d2015-04-15 16:17:31 -07005724L: wimax@linuxwimax.org (subscribers-only)
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08005725S: Supported
5726W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07005727F: Documentation/wimax/README.i2400m
5728F: drivers/net/wimax/i2400m/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005729F: include/uapi/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08005730
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01005731INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
5732M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08005733L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01005734S: Supported
Kalle Valo7ac9a362015-11-17 20:37:11 +02005735F: drivers/net/wireless/intel/iwlegacy/
Wey-Yi Guyefa31442011-02-22 16:43:05 -08005736
Zhu Yib481de92007-09-25 17:54:57 -07005737INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07005738M: Johannes Berg <johannes.berg@intel.com>
Johannes Berg6161b022013-07-23 14:03:39 +02005739M: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
Johannes Berg7b9aebf2015-09-08 17:03:20 +02005740M: Intel Linux Wireless <linuxwifi@intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07005741L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07005742W: http://intellinuxwireless.org
Wey-Yi Guyb62ff7182011-09-22 15:14:49 -07005743T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07005744S: Supported
Kalle Valoe705c122015-11-17 20:57:38 +02005745F: drivers/net/wireless/intel/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07005746
Tomas Winklerde8fe022012-05-09 16:39:02 +03005747INTEL MANAGEMENT ENGINE (mei)
5748M: Tomas Winkler <tomas.winkler@intel.com>
5749L: linux-kernel@vger.kernel.org
5750S: Supported
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005751F: include/uapi/linux/mei.h
Tomas Winkler5069288b2015-06-13 22:11:33 +03005752F: include/linux/mei_cl_bus.h
Tomas Winklerde8fe022012-05-09 16:39:02 +03005753F: drivers/misc/mei/*
Cesar Eduardo Barrose07950a2013-01-04 15:35:36 -08005754F: Documentation/misc-devices/mei/*
Tomas Winklerde8fe022012-05-09 16:39:02 +03005755
Sudeep Dutt50ceb982015-10-13 11:21:19 -07005756INTEL MIC DRIVERS (mic)
5757M: Sudeep Dutt <sudeep.dutt@intel.com>
5758M: Ashutosh Dixit <ashutosh.dixit@intel.com>
5759S: Supported
5760W: https://github.com/sudeepdutt/mic
5761W: http://software.intel.com/en-us/mic-developer
5762F: include/linux/mic_bus.h
5763F: include/linux/scif.h
5764F: include/uapi/linux/mic_common.h
5765F: include/uapi/linux/mic_ioctl.h
Fengguang Wu9f273c22016-01-20 15:03:25 -08005766F: include/uapi/linux/scif_ioctl.h
Sudeep Dutt50ceb982015-10-13 11:21:19 -07005767F: drivers/misc/mic/
5768F: drivers/dma/mic_x100_dma.c
5769F: drivers/dma/mic_x100_dma.h
Fengguang Wu9f273c22016-01-20 15:03:25 -08005770F: Documentation/mic/
Sudeep Dutt50ceb982015-10-13 11:21:19 -07005771
Qipeng Zhafdca4f12015-12-11 22:45:00 +08005772INTEL PMC/P-Unit IPC DRIVER
qipeng.zha0a8b8352015-06-27 00:32:15 +08005773M: Zha Qipeng<qipeng.zha@intel.com>
5774L: platform-driver-x86@vger.kernel.org
5775S: Maintained
5776F: drivers/platform/x86/intel_pmc_ipc.c
Qipeng Zhafdca4f12015-12-11 22:45:00 +08005777F: drivers/platform/x86/intel_punit_ipc.c
qipeng.zha0a8b8352015-06-27 00:32:15 +08005778F: arch/x86/include/asm/intel_pmc_ipc.h
Qipeng Zhafdca4f12015-12-11 22:45:00 +08005779F: arch/x86/include/asm/intel_punit_ipc.h
qipeng.zha0a8b8352015-06-27 00:32:15 +08005780
Souvik Kumar Chakravarty378f9562016-01-12 16:00:33 +05305781INTEL TELEMETRY DRIVER
5782M: Souvik Kumar Chakravarty <souvik.k.chakravarty@intel.com>
5783L: platform-driver-x86@vger.kernel.org
5784S: Maintained
Souvik Kumar Chakravarty378f9562016-01-12 16:00:33 +05305785F: arch/x86/include/asm/intel_telemetry.h
Souvik Kumar Chakravartyf1fc3cd2016-01-21 09:30:50 +05305786F: drivers/platform/x86/intel_telemetry*
Ralf Baechlecb109a02007-08-30 23:56:30 -07005787
Joe Perches8b58be82009-07-29 15:04:30 -07005788IOC3 ETHERNET DRIVER
Ralf Baechled39e0722010-10-19 18:32:41 +01005789M: Ralf Baechle <ralf@linux-mips.org>
Ralf Baechlecb109a02007-08-30 23:56:30 -07005790L: linux-mips@linux-mips.org
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08005791S: Maintained
Ralf Baechlecb109a02007-08-30 23:56:30 -07005792F: drivers/net/ethernet/sgi/ioc3-eth.c
Stephen Warren0b6e8562013-09-13 13:10:27 -06005793
5794IOC3 SERIAL DRIVER
5795M: Pat Gefre <pfg@sgi.com>
5796L: linux-serial@vger.kernel.org
5797S: Maintained
5798F: drivers/tty/serial/ioc3_serial.c
5799
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005800IOMMU DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005801M: Joerg Roedel <joro@8bytes.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005802L: iommu@lists.linux-foundation.org
Joe Perches679655d2009-04-07 20:44:32 -07005803T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005804S: Maintained
Francois Romieu1202d6f2007-09-17 17:13:55 -07005805F: drivers/iommu/
Joe Perches8b58be82009-07-29 15:04:30 -07005806
5807IP MASQUERADING
Francois Romieu1202d6f2007-09-17 17:13:55 -07005808M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
5809S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07005810F: net/ipv4/netfilter/ipt_MASQUERADE.c
Francois Romieu1202d6f2007-09-17 17:13:55 -07005811
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005812IPATH DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04005813M: Mike Marciniszyn <infinipath@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07005814L: linux-rdma@vger.kernel.org
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07005815S: Maintained
Dennis Dalessandro6f9b3892015-07-30 09:25:42 -04005816F: drivers/staging/rdma/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08005817
Corey Minyard4409ebe2006-04-20 02:43:12 -07005818IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005819M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08005820L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07005821W: http://openipmi.sourceforge.net/
5822S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005823F: Documentation/IPMI.txt
5824F: drivers/char/ipmi/
5825F: include/linux/ipmi*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005826F: include/uapi/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07005827
Kenneth Westfield2d800892015-03-03 16:21:50 -08005828QCOM AUDIO (ASoC) DRIVERS
5829M: Patrick Lai <plai@codeaurora.org>
5830M: Banajit Goswami <bgoswami@codeaurora.org>
5831L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5832S: Supported
5833F: sound/soc/qcom/
5834
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005835IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005836M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005837L: linux-scsi@vger.kernel.org
5838W: http://www.adaptec.com/
5839S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005840F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005841
5842IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07005843M: Wensong Zhang <wensong@linux-vs.org>
5844M: Simon Horman <horms@verge.net.au>
5845M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005846L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005847L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005848S: Maintained
Fengguang Wu9f273c22016-01-20 15:03:25 -08005849T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
5850T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
Joe Perches679655d2009-04-07 20:44:32 -07005851F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07005852F: include/net/ip_vs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005853F: include/uapi/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07005854F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005855
Randy Dunlape7839f22008-10-12 16:11:45 -07005856IPWIRELESS DRIVER
Jiri Kosinae5f64502015-08-09 09:11:34 +02005857M: Jiri Kosina <jikos@kernel.org>
Jiri Slabyd8130622015-07-17 16:23:20 -07005858M: David Sterba <dsterba@suse.com>
Jiri Kosina92094aa2011-11-13 21:41:00 +01005859S: Odd Fixes
Greg Kroah-Hartman282361a2011-02-22 16:23:22 -08005860F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01005861
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005862IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005863M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005864L: netdev@vger.kernel.org
5865S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005866F: include/net/ipx.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005867F: include/uapi/linux/ipx.h
Joe Perches679655d2009-04-07 20:44:32 -07005868F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005869
Linus Torvalds1da177e2005-04-16 15:20:36 -07005870IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005871M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07005872L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01005873L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005874W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07005875S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02005876T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07005877F: Documentation/networking/irda.txt
5878F: drivers/net/irda/
5879F: include/net/irda/
5880F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005881
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02005882IRQ SUBSYSTEM
5883M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar981c3a42014-01-21 10:59:20 +01005884L: linux-kernel@vger.kernel.org
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02005885S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005886T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02005887F: kernel/irq/
Jason Cooper2ed9fd22014-05-13 18:47:01 +00005888
5889IRQCHIP DRIVERS
5890M: Thomas Gleixner <tglx@linutronix.de>
5891M: Jason Cooper <jason@lakedaemon.net>
Thomas Gleixner54d9ffc2015-07-30 12:38:06 +02005892M: Marc Zyngier <marc.zyngier@arm.com>
Jason Cooper2ed9fd22014-05-13 18:47:01 +00005893L: linux-kernel@vger.kernel.org
5894S: Maintained
5895T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5896T: git git://git.infradead.org/users/jcooper/linux.git irqchip/core
Geert Uytterhoeven5b5a9062014-08-28 09:56:47 +02005897F: Documentation/devicetree/bindings/interrupt-controller/
Thomas Petazzoniedd96902012-10-28 10:05:40 +01005898F: drivers/irqchip/
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02005899
Grant Likely7ab3a832012-02-14 14:06:47 -07005900IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
Thomas Gleixnerb09dec22015-07-30 12:40:55 +02005901M: Jiang Liu <jiang.liu@linux.intel.com>
5902M: Marc Zyngier <marc.zyngier@arm.com>
Grant Likely7ab3a832012-02-14 14:06:47 -07005903S: Maintained
Thomas Gleixnerb09dec22015-07-30 12:40:55 +02005904T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Grant Likely7ab3a832012-02-14 14:06:47 -07005905F: Documentation/IRQ-domain.txt
5906F: include/linux/irqdomain.h
5907F: kernel/irq/irqdomain.c
Thomas Gleixnerb09dec22015-07-30 12:40:55 +02005908F: kernel/irq/msi.c
Grant Likely7ab3a832012-02-14 14:06:47 -07005909
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005910ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07005911M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005912S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005913F: Documentation/isapnp.txt
5914F: drivers/pnp/isapnp/
5915F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005916
Hans Verkuild39b8422012-11-23 07:07:02 -03005917ISA RADIO MODULE
5918M: Hans Verkuil <hverkuil@xs4all.nl>
5919L: linux-media@vger.kernel.org
5920T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02005921W: https://linuxtv.org
Hans Verkuild39b8422012-11-23 07:07:02 -03005922S: Maintained
5923F: drivers/media/radio/radio-isa*
5924
Harry Wei71a6d0a2011-05-11 15:13:33 -07005925iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
5926M: Peter Jones <pjones@redhat.com>
5927M: Konrad Rzeszutek Wilk <konrad@kernel.org>
5928S: Maintained
5929F: drivers/firmware/iscsi_ibft*
5930
Mike Christie14816b12007-11-28 16:22:06 -08005931ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07005932M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b12007-11-28 16:22:06 -08005933L: open-iscsi@googlegroups.com
5934W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07005935T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b12007-11-28 16:22:06 -08005936S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005937F: drivers/scsi/*iscsi*
5938F: include/scsi/*iscsi*
Mike Christie14816b12007-11-28 16:22:06 -08005939
Or Gerlitz1e65eb42013-05-08 12:21:19 +00005940ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
5941M: Or Gerlitz <ogerlitz@mellanox.com>
Or Gerlitzb261aea2014-10-01 14:02:17 +03005942M: Sagi Grimberg <sagig@mellanox.com>
Or Gerlitz1e65eb42013-05-08 12:21:19 +00005943M: Roi Dayan <roid@mellanox.com>
5944L: linux-rdma@vger.kernel.org
5945S: Supported
5946W: http://www.openfabrics.org
5947W: www.open-iscsi.org
5948Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches14430812013-09-11 14:23:50 -07005949F: drivers/infiniband/ulp/iser/
Or Gerlitz1e65eb42013-05-08 12:21:19 +00005950
Sagi Grimberg2b70e5f2015-01-07 12:54:44 +02005951ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
5952M: Sagi Grimberg <sagig@mellanox.com>
5953T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
5954L: linux-rdma@vger.kernel.org
5955L: target-devel@vger.kernel.org
5956S: Supported
5957W: http://www.linux-iscsi.org
5958F: drivers/infiniband/ulp/isert
5959
Linus Torvalds1da177e2005-04-16 15:20:36 -07005960ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005961M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07005962L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07005963L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005964W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07005965T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005966S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005967F: Documentation/isdn/
5968F: drivers/isdn/
5969F: include/linux/isdn.h
5970F: include/linux/isdn/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005971F: include/uapi/linux/isdn.h
5972F: include/uapi/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005973
5974ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07005975M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07005976L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005977W: http://www.melware.de
5978S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005979F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005980
Jean Delvared6248702010-03-05 22:17:20 +01005981IT87 HARDWARE MONITORING DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07005982M: Jean Delvare <jdelvare@suse.com>
Jean Delvared6248702010-03-05 22:17:20 +01005983L: lm-sensors@lm-sensors.org
5984S: Maintained
5985F: Documentation/hwmon/it87
5986F: drivers/hwmon/it87.c
5987
Malcolm Priestley68620bd2012-11-04 19:16:31 +01005988IT913X MEDIA DRIVER
Antti Palosaarid7104bf2013-03-09 22:58:13 -03005989M: Antti Palosaari <crope@iki.fi>
5990L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02005991W: https://linuxtv.org
Antti Palosaarid7104bf2013-03-09 22:58:13 -03005992W: http://palosaari.fi/linux/
5993Q: http://patchwork.linuxtv.org/project/linux-media/list/
5994T: git git://linuxtv.org/anttip/media_tree.git
5995S: Maintained
Antti Palosaari249c6972014-09-01 19:44:59 -03005996F: drivers/media/tuners/it913x*
Antti Palosaarid7104bf2013-03-09 22:58:13 -03005997
Hans Verkuil91821ff2007-12-02 09:35:33 -03005998IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03005999M: Andy Walls <awalls@md.metrocast.net>
Joe Perches7b212ed2014-12-10 15:51:24 -08006000L: ivtv-devel@ivtvdriver.org (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006001L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006002T: git git://linuxtv.org/media_tree.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03006003W: http://www.ivtvdriver.org
6004S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006005F: Documentation/video4linux/*.ivtv
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006006F: drivers/media/pci/ivtv/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006007F: include/uapi/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03006008
Malcolm Priestley68620bd2012-11-04 19:16:31 +01006009IX2505V MEDIA DRIVER
6010M: Malcolm Priestley <tvboxspy@gmail.com>
6011L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006012W: https://linuxtv.org
Malcolm Priestley68620bd2012-11-04 19:16:31 +01006013Q: http://patchwork.linuxtv.org/project/linux-media/list/
6014S: Maintained
6015F: drivers/media/dvb-frontends/ix2505v*
6016
Guenter Roeck4453d732010-08-09 17:21:08 -07006017JC42.4 TEMPERATURE SENSOR DRIVER
6018M: Guenter Roeck <linux@roeck-us.net>
6019L: lm-sensors@lm-sensors.org
6020S: Maintained
6021F: drivers/hwmon/jc42.c
6022F: Documentation/hwmon/jc42
6023
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006024JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06006025M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006026L: jfs-discussion@lists.sourceforge.net
6027W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07006028T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05006029S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006030F: Documentation/filesystems/jfs.txt
6031F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006032
Guo-Fu Tseng95252232008-09-16 01:00:11 +08006033JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006034M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08006035L: netdev@vger.kernel.org
6036S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07006037F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08006038
Linus Torvalds1da177e2005-04-16 15:20:36 -07006039JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07006040M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04006041L: linux-mtd@lists.infradead.org
6042W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07006043S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006044F: fs/jffs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006045F: include/uapi/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006046
Theodore Ts'od183e112011-05-26 09:53:09 -04006047JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
6048M: "Theodore Ts'o" <tytso@mit.edu>
Jan Karac290ea02015-06-18 16:52:29 +02006049M: Jan Kara <jack@suse.com>
Theodore Ts'od183e112011-05-26 09:53:09 -04006050L: linux-ext4@vger.kernel.org
6051S: Maintained
6052F: fs/jbd2/
6053F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07006054
Mikhail Ulyanov207dab52015-07-22 08:23:05 -03006055JPU V4L2 MEM2MEM DRIVER FOR RENESAS
6056M: Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
6057L: linux-media@vger.kernel.org
6058S: Maintained
6059F: drivers/media/platform/rcar_jpu.c
6060
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03006061JSM Neo PCI based serial card
Thadeu Lima de Souza Cascardo9d141cb2013-05-22 15:15:24 -03006062M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03006063L: linux-serial@vger.kernel.org
6064S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006065F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03006066
Clemens Ladischaf399172011-01-10 16:32:54 +01006067K10TEMP HARDWARE MONITORING DRIVER
6068M: Clemens Ladisch <clemens@ladisch.de>
6069L: lm-sensors@lm-sensors.org
6070S: Maintained
6071F: Documentation/hwmon/k10temp
6072F: drivers/hwmon/k10temp.c
6073
Rudolf Marek4660cb32006-10-08 22:01:26 +02006074K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006075M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02006076L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006077S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006078F: Documentation/hwmon/k8temp
6079F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006080
6081KCONFIG
Michal Marek5eb1f992013-10-30 12:02:27 +01006082M: "Yann E. MORIN" <yann.morin.1998@free.fr>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02006083L: linux-kbuild@vger.kernel.org
Joe Perchescea83212014-03-03 15:38:38 -08006084T: git git://gitorious.org/linux-kconfig/linux-kconfig
Michal Marek5eb1f992013-10-30 12:02:27 +01006085S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006086F: Documentation/kbuild/kconfig-language.txt
6087F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006088
Vivek Goyalea6c2082006-05-20 14:59:55 -07006089KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07006090M: Vivek Goyal <vgoyal@redhat.com>
6091M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07006092L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07006093W: http://lse.sourceforge.net/kdump/
6094S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07006095F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07006096
Hans Verkuilf41bf022012-11-23 07:04:36 -03006097KEENE FM RADIO TRANSMITTER DRIVER
6098M: Hans Verkuil <hverkuil@xs4all.nl>
6099L: linux-media@vger.kernel.org
6100T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006101W: https://linuxtv.org
Hans Verkuilf41bf022012-11-23 07:04:36 -03006102S: Maintained
6103F: drivers/media/radio/radio-keene*
6104
Linus Torvalds1da177e2005-04-16 15:20:36 -07006105KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07006106M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08006107L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006108S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006109F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006110
Michal Marek70fb7ba2010-01-29 14:22:43 +01006111KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Jiri Slabyd8130622015-07-17 16:23:20 -07006112M: Michal Marek <mmarek@suse.com>
Joe Perches08deed12012-03-23 15:01:57 -07006113T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
6114T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02006115L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08006116S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006117F: Documentation/kbuild/
6118F: Makefile
6119F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01006120F: scripts/basic/
6121F: scripts/mk*
6122F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006123
6124KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07006125L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07006126W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07006127S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07006128
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04006129KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006130M: "J. Bruce Fields" <bfields@fieldses.org>
J. Bruce Fields883985f2015-08-24 16:44:40 -04006131M: Jeff Layton <jlayton@poochiereds.net>
Neil Brown16141c02007-12-11 16:16:12 -08006132L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006133W: http://nfs.sourceforge.net/
Fengguang Wu9f273c22016-01-20 15:03:25 -08006134T: git git://linux-nfs.org/~bfields/linux.git
NeilBrown98fac232007-01-26 00:56:57 -08006135S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006136F: fs/nfsd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006137F: include/uapi/linux/nfsd/
Joe Perches679655d2009-04-07 20:44:32 -07006138F: fs/lockd/
6139F: fs/nfs_common/
6140F: net/sunrpc/
6141F: include/linux/lockd/
6142F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006143F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006144
Shuah Khan13b122b2014-10-13 15:51:21 -07006145KERNEL SELFTEST FRAMEWORK
6146M: Shuah Khan <shuahkh@osg.samsung.com>
6147L: linux-api@vger.kernel.org
6148T: git git://git.kernel.org/pub/scm/shuah/linux-kselftest
6149S: Maintained
6150F: tools/testing/selftests
6151
Avi Kivity426d62e2006-12-13 00:34:03 -08006152KERNEL VIRTUAL MACHINE (KVM)
Gleb Natapov0a00a772013-11-27 16:35:22 +02006153M: Gleb Natapov <gleb@kernel.org>
Paolo Bonzinic93a64f2013-05-15 19:02:24 +02006154M: Paolo Bonzini <pbonzini@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03006155L: kvm@vger.kernel.org
Ramkumar Ramachandrae3e58472013-10-31 16:16:34 +05306156W: http://www.linux-kvm.org
Ramkumar Ramachandraa94b40a2013-10-31 16:29:23 +05306157T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
Avi Kivity426d62e2006-12-13 00:34:03 -08006158S: Supported
Paolo Bonzinic93a64f2013-05-15 19:02:24 +02006159F: Documentation/*/kvm*.txt
6160F: Documentation/virtual/kvm/
Joe Perches679655d2009-04-07 20:44:32 -07006161F: arch/*/kvm/
Christian Borntraeger1662e862015-03-12 14:59:26 +01006162F: arch/x86/kernel/kvm.c
6163F: arch/x86/kernel/kvmclock.c
Joe Perches679655d2009-04-07 20:44:32 -07006164F: arch/*/include/asm/kvm*
6165F: include/linux/kvm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006166F: include/uapi/linux/kvm*
Joe Perches679655d2009-04-07 20:44:32 -07006167F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08006168
Joerg Roedelad8003d2008-09-10 20:01:07 +02006169KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joerg Roedel7de609c2012-10-29 19:08:21 +01006170M: Joerg Roedel <joro@8bytes.org>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07006171L: kvm@vger.kernel.org
Dirk Müller038161d2015-10-01 13:46:01 +02006172W: http://www.linux-kvm.org/
Joerg Roedel7de609c2012-10-29 19:08:21 +01006173S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006174F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07006175F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07006176
Hollis Blanchard513014b2008-04-16 23:28:08 -05006177KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Jiri Slabyd8130622015-07-17 16:23:20 -07006178M: Alexander Graf <agraf@suse.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03006179L: kvm-ppc@vger.kernel.org
Dirk Müller038161d2015-10-01 13:46:01 +02006180W: http://www.linux-kvm.org/
Michael Ellerman6a7f9722012-10-15 19:01:05 +00006181T: git git://github.com/agraf/linux-2.6.git
Hollis Blanchard513014b2008-04-16 23:28:08 -05006182S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006183F: arch/powerpc/include/asm/kvm*
6184F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05006185
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01006186KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07006187M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02006188M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01006189L: linux-s390@vger.kernel.org
6190W: http://www.ibm.com/developerworks/linux/linux390/
Fengguang Wu9f273c22016-01-20 15:03:25 -08006191T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01006192S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006193F: Documentation/s390/kvm.txt
6194F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07006195F: arch/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01006196
Christoffer Dalla7494742013-01-20 18:42:26 -05006197KERNEL VIRTUAL MACHINE (KVM) FOR ARM
Christoffer Dall0f4ca792013-06-21 13:54:36 -07006198M: Christoffer Dall <christoffer.dall@linaro.org>
Marc Zyngier5c8818b2014-04-26 03:43:01 -07006199M: Marc Zyngier <marc.zyngier@arm.com>
6200L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Christoffer Dalla7494742013-01-20 18:42:26 -05006201L: kvmarm@lists.cs.columbia.edu
6202W: http://systems.cs.columbia.edu/projects/kvm-arm
Fengguang Wu1b1ebe82015-12-18 15:51:44 +08006203T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
Christoffer Dall0f4ca792013-06-21 13:54:36 -07006204S: Supported
Christoffer Dalla7494742013-01-20 18:42:26 -05006205F: arch/arm/include/uapi/asm/kvm*
6206F: arch/arm/include/asm/kvm*
6207F: arch/arm/kvm/
Marc Zyngier5c8818b2014-04-26 03:43:01 -07006208F: virt/kvm/arm/
6209F: include/kvm/arm_*
Christoffer Dalla7494742013-01-20 18:42:26 -05006210
Marc Zyngier6394a3e2013-04-02 17:49:40 +01006211KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
Marc Zyngier5c8818b2014-04-26 03:43:01 -07006212M: Christoffer Dall <christoffer.dall@linaro.org>
Marc Zyngier6394a3e2013-04-02 17:49:40 +01006213M: Marc Zyngier <marc.zyngier@arm.com>
6214L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6215L: kvmarm@lists.cs.columbia.edu
6216S: Maintained
6217F: arch/arm64/include/uapi/asm/kvm*
6218F: arch/arm64/include/asm/kvm*
6219F: arch/arm64/kvm/
6220
James Hoganbfd3d532015-12-16 23:49:41 +00006221KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
6222M: James Hogan <james.hogan@imgtec.com>
6223L: linux-mips@linux-mips.org
6224S: Supported
6225F: arch/mips/include/uapi/asm/kvm*
6226F: arch/mips/include/asm/kvm*
6227F: arch/mips/kvm/
6228
Eric W. Biedermandc009d92005-06-25 14:57:52 -07006229KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07006230M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07006231W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07006232L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07006233S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006234F: include/linux/kexec.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006235F: include/uapi/linux/kexec.h
Joe Perches679655d2009-04-07 20:44:32 -07006236F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07006237
David Howellse9714612010-03-29 23:42:09 +01006238KEYS/KEYRINGS:
6239M: David Howells <dhowells@redhat.com>
David Howellsaa62eff2015-08-11 13:29:48 +01006240L: keyrings@vger.kernel.org
David Howellse9714612010-03-29 23:42:09 +01006241S: Maintained
Randy Dunlapd410fa42011-05-19 15:59:38 -07006242F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01006243F: include/linux/key.h
6244F: include/linux/key-type.h
6245F: include/keys/
6246F: security/keys/
6247
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006248KEYS-TRUSTED
Mimi Zohar74dd7442014-02-27 08:44:45 -05006249M: David Safford <safford@us.ibm.com>
6250M: Mimi Zohar <zohar@linux.vnet.ibm.com>
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006251L: linux-security-module@vger.kernel.org
David Howellsaa62eff2015-08-11 13:29:48 +01006252L: keyrings@vger.kernel.org
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006253S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07006254F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006255F: include/keys/trusted-type.h
6256F: security/keys/trusted.c
6257F: security/keys/trusted.h
6258
6259KEYS-ENCRYPTED
Mimi Zohar74dd7442014-02-27 08:44:45 -05006260M: Mimi Zohar <zohar@linux.vnet.ibm.com>
6261M: David Safford <safford@us.ibm.com>
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006262L: linux-security-module@vger.kernel.org
David Howellsaa62eff2015-08-11 13:29:48 +01006263L: keyrings@vger.kernel.org
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006264S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07006265F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006266F: include/keys/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08006267F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006268
Jason Wessel5b778da2010-05-20 21:04:28 -05006269KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07006270M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05006271W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05006272L: kgdb-bugreport@lists.sourceforge.net
Fengguang Wu9f273c22016-01-20 15:03:25 -08006273T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
Jason Wessele3e2aaf2008-03-20 13:43:45 -05006274S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006275F: Documentation/DocBook/kgdb.tmpl
6276F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006277F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05006278F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07006279F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05006280F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05006281
Pekka Enberg456db8c2008-04-28 22:47:29 +03006282KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07006283M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02006284M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03006285S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08006286F: Documentation/kmemcheck.txt
6287F: arch/x86/include/asm/kmemcheck.h
6288F: arch/x86/mm/kmemcheck/
6289F: include/linux/kmemcheck.h
6290F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03006291
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01006292KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07006293M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01006294S: Maintained
6295F: Documentation/kmemleak.txt
6296F: include/linux/kmemleak.h
6297F: mm/kmemleak.c
6298F: mm/kmemleak-test.c
6299
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07006300KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07006301M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
6302M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
6303M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07006304M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07006305S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006306F: Documentation/kprobes.txt
6307F: include/linux/kprobes.h
6308F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07006309
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08006310KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006311M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07006312W: http://miguelojeda.es/auxdisplay.htm
6313W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08006314S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006315F: Documentation/auxdisplay/ks0108
6316F: drivers/auxdisplay/ks0108.c
6317F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08006318
David Ahern1b69c6d2015-09-29 20:07:11 -07006319L3MDEV
6320M: David Ahern <dsa@cumulusnetworks.com>
6321L: netdev@vger.kernel.org
6322S: Maintained
6323F: net/l3mdev
6324F: include/net/l3mdev.h
6325
John Crispin9ca44352016-01-04 20:28:12 +01006326LANTIQ MIPS ARCHITECTURE
6327M: John Crispin <blogic@openwrt.org>
6328L: linux-mips@linux-mips.org
6329S: Maintained
6330F: arch/mips/lantiq
6331
Linus Torvalds1da177e2005-04-16 15:20:36 -07006332LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07006333L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07006334S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006335F: Documentation/networking/lapb-module.txt
6336F: include/*/lapb.h
6337F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006338
6339LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07006340M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006341L: linux-scsi@vger.kernel.org
6342S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006343F: Documentation/scsi/53c700.txt
6344F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006345
Richard Purdie263de9b2006-05-15 09:44:16 -07006346LED SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006347M: Richard Purdie <rpurdie@rpsys.net>
Andrew Morton48b945a2015-05-05 16:23:30 -07006348M: Jacek Anaszewski <j.anaszewski@samsung.com>
Bryan Wuaa69cb82012-05-31 19:51:37 +08006349L: linux-leds@vger.kernel.org
Jacek Anaszewskib8926ba2015-08-20 08:59:35 +02006350T: git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07006351S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006352F: drivers/leds/
6353F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07006354
Jean Delvareb0461a42011-06-15 15:08:46 -07006355LEGACY EEPROM DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07006356M: Jean Delvare <jdelvare@suse.com>
Jean Delvareb0461a42011-06-15 15:08:46 -07006357S: Maintained
6358F: Documentation/misc-devices/eeprom
6359F: drivers/misc/eeprom/eeprom.c
6360
Linus Torvalds1da177e2005-04-16 15:20:36 -07006361LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07006362M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006363L: legousb-devel@lists.sourceforge.net
6364W: http://legousb.sourceforge.net/
6365S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006366F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006367
Michael Krufky055616a2012-10-02 00:56:06 -03006368LG2160 MEDIA DRIVER
6369M: Michael Krufky <mkrufky@linuxtv.org>
6370L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006371W: https://linuxtv.org
Michael Krufky055616a2012-10-02 00:56:06 -03006372W: http://github.com/mkrufky
6373Q: http://patchwork.linuxtv.org/project/linux-media/list/
6374T: git git://linuxtv.org/mkrufky/tuners.git
6375S: Maintained
6376F: drivers/media/dvb-frontends/lg2160.*
6377
Michael Krufky6f0e7722012-10-02 00:56:00 -03006378LGDT3305 MEDIA DRIVER
6379M: Michael Krufky <mkrufky@linuxtv.org>
6380L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006381W: https://linuxtv.org
Michael Krufky6f0e7722012-10-02 00:56:00 -03006382W: http://github.com/mkrufky
6383Q: http://patchwork.linuxtv.org/project/linux-media/list/
6384T: git git://linuxtv.org/mkrufky/tuners.git
6385S: Maintained
6386F: drivers/media/dvb-frontends/lgdt3305.*
6387
Rusty Russell568a17f2007-10-25 14:12:24 +10006388LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07006389M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006390L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10006391W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06006392S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08006393F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07006394F: arch/x86/lguest/
6395F: drivers/lguest/
6396F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08006397F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10006398
Tejun Heo32ac7cb2015-01-06 18:36:44 -05006399LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
6400M: Tejun Heo <tj@kernel.org>
6401L: linux-ide@vger.kernel.org
6402T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6403S: Maintained
6404F: drivers/ata/
6405F: include/linux/ata.h
6406F: include/linux/libata.h
6407
6408LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
Viresh Kumarda899472015-07-17 16:23:50 -07006409M: Viresh Kumar <vireshk@kernel.org>
Tejun Heo32ac7cb2015-01-06 18:36:44 -05006410L: linux-ide@vger.kernel.org
6411T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6412S: Maintained
6413F: include/linux/pata_arasan_cf_data.h
6414F: drivers/ata/pata_arasan_cf.c
6415
Bartlomiej Zolnierkiewiczc7fa0562014-12-02 17:29:08 +01006416LIBATA PATA DRIVERS
6417M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6418M: Tejun Heo <tj@kernel.org>
6419L: linux-ide@vger.kernel.org
6420T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6421S: Maintained
6422F: drivers/ata/pata_*.c
6423F: drivers/ata/ata_generic.c
6424
Tejun Heo32ac7cb2015-01-06 18:36:44 -05006425LIBATA SATA AHCI PLATFORM devices support
6426M: Hans de Goede <hdegoede@redhat.com>
6427M: Tejun Heo <tj@kernel.org>
6428L: linux-ide@vger.kernel.org
6429T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6430S: Maintained
6431F: drivers/ata/ahci_platform.c
6432F: drivers/ata/libahci_platform.c
6433F: include/linux/ahci_platform.h
6434
6435LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
6436M: Mikael Pettersson <mikpelinux@gmail.com>
6437L: linux-ide@vger.kernel.org
6438T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6439S: Maintained
6440F: drivers/ata/sata_promise.*
6441
Sasha Levin1acd4372013-06-13 18:41:24 -04006442LIBLOCKDEP
6443M: Sasha Levin <sasha.levin@oracle.com>
6444S: Maintained
6445F: tools/lib/lockdep/
6446
Dan Williamsbc301962015-06-25 04:48:19 -04006447LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
6448M: Dan Williams <dan.j.williams@intel.com>
6449L: linux-nvdimm@lists.01.org
6450Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
Fengguang Wu9f273c22016-01-20 15:03:25 -08006451T: git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
Dan Williamsbc301962015-06-25 04:48:19 -04006452S: Supported
6453F: drivers/nvdimm/*
6454F: include/linux/nd.h
6455F: include/linux/libnvdimm.h
6456F: include/uapi/linux/ndctl.h
6457
6458LIBNVDIMM BLK: MMIO-APERTURE DRIVER
6459M: Ross Zwisler <ross.zwisler@linux.intel.com>
6460L: linux-nvdimm@lists.01.org
6461Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
6462S: Supported
6463F: drivers/nvdimm/blk.c
6464F: drivers/nvdimm/region_devs.c
6465F: drivers/acpi/nfit*
6466
6467LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
6468M: Vishal Verma <vishal.l.verma@intel.com>
6469L: linux-nvdimm@lists.01.org
6470Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
6471S: Supported
6472F: drivers/nvdimm/btt*
6473
6474LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
6475M: Ross Zwisler <ross.zwisler@linux.intel.com>
6476L: linux-nvdimm@lists.01.org
6477Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
6478S: Supported
6479F: drivers/nvdimm/pmem.c
Ross Zwislerb864bc12015-07-10 11:06:10 -06006480F: include/linux/pmem.h
Ross Zwisler40603522015-08-18 13:55:36 -06006481F: arch/*/include/asm/pmem.h
Dan Williamsbc301962015-06-25 04:48:19 -04006482
Matias Bjørlingcd9e9802015-10-28 19:54:55 +01006483LIGHTNVM PLATFORM SUPPORT
6484M: Matias Bjorling <mb@lightnvm.io>
6485W: http://github/OpenChannelSSD
Matias Bjørling4ead1a22015-11-16 15:34:35 +01006486L: linux-block@vger.kernel.org
Matias Bjørlingcd9e9802015-10-28 19:54:55 +01006487S: Maintained
6488F: drivers/lightnvm/
6489F: include/linux/lightnvm.h
6490F: include/uapi/linux/lightnvm.h
6491
Linus Torvalds1da177e2005-04-16 15:20:36 -07006492LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07006493M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006494W: http://www.ibm.com/linux/ltc/projects/ppc
6495S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00006496F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006497
Paul Mackerras852bb9f2008-07-04 21:04:42 +10006498LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07006499M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
6500M: Paul Mackerras <paulus@samba.org>
Benjamin Herrenschmidtea668932014-07-28 13:54:37 +10006501M: Michael Ellerman <mpe@ellerman.id.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006502W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006503L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08006504Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Michael Ellerman99580842015-07-07 19:16:23 +10006505T: git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006506S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00006507F: Documentation/powerpc/
6508F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006509
6510LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07006511M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006512W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006513L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006514S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00006515F: arch/powerpc/platforms/powermac/
6516F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006517
Grant Likely77a76362008-07-12 12:11:43 -06006518LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00006519M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006520L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschincba5b1c2014-10-02 16:16:59 -07006521T: git git://git.denx.de/linux-denx-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006522S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00006523F: arch/powerpc/platforms/512x/
6524F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006525
6526LINUX FOR POWERPC EMBEDDED PPC4XX
Joe Perches49e7d9d2015-04-15 16:17:31 -07006527M: Alistair Popple <alistair@popple.id.au>
Joe Perches8b58be82009-07-29 15:04:30 -07006528M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006529W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006530L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006531S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00006532F: arch/powerpc/platforms/40x/
6533F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006534
Grant Likely260c02a2007-10-02 12:15:34 +10006535LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006536L: linuxppc-dev@lists.ozlabs.org
Grant Likelycdeb8992013-07-22 01:38:32 +01006537S: Orphan
Joe Perches11c34c72009-12-04 07:16:59 +00006538F: arch/powerpc/*/*virtex*
6539F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006540
Tom Rinie93adf12005-07-26 12:49:53 -07006541LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07006542M: Vitaly Bordug <vitb@kernel.crashing.org>
Tom Rinie93adf12005-07-26 12:49:53 -07006543W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006544L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07006545S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07006546F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07006547
Linus Torvalds1da177e2005-04-16 15:20:36 -07006548LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Scott Wood44451d42015-12-31 12:57:26 -06006549M: Scott Wood <oss@buserror.net>
Joe Perches8b58be82009-07-29 15:04:30 -07006550M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01006551W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006552L: linuxppc-dev@lists.ozlabs.org
Scott Wooda1e0fb42014-05-05 20:46:43 -05006553T: git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
Jim Cromiece00f852006-11-30 04:49:44 +01006554S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00006555F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03006556F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006557
Olof Johanssonab06ff32006-09-06 14:44:54 -05006558LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07006559M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006560L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00006561S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00006562F: arch/powerpc/platforms/pasemi/
6563F: drivers/*/*pasemi*
6564F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05006565
Linus Torvalds1da177e2005-04-16 15:20:36 -07006566LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07006567M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08006568L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006569S: Supported
6570
Harry Weia23ce6d2011-02-11 16:52:20 +01006571LIS3LV02D ACCELEROMETER DRIVER
6572M: Eric Piel <eric.piel@tremplin-utc.net>
6573S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01006574F: Documentation/misc-devices/lis3lv02d
6575F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07006576F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01006577
Seth Jenningsb700e7f2014-12-16 11:58:19 -06006578LIVE PATCHING
6579M: Josh Poimboeuf <jpoimboe@redhat.com>
6580M: Seth Jennings <sjenning@redhat.com>
Jiri Kosinae5f64502015-08-09 09:11:34 +02006581M: Jiri Kosina <jikos@kernel.org>
Jiri Slabyd8130622015-07-17 16:23:20 -07006582M: Vojtech Pavlik <vojtech@suse.com>
Seth Jenningsb700e7f2014-12-16 11:58:19 -06006583S: Maintained
6584F: kernel/livepatch/
6585F: include/linux/livepatch.h
6586F: arch/x86/include/asm/livepatch.h
6587F: arch/x86/kernel/livepatch.c
6588F: Documentation/ABI/testing/sysfs-kernel-livepatch
Seth Jennings13d1cf72014-12-16 11:58:20 -06006589F: samples/livepatch/
Seth Jenningsb700e7f2014-12-16 11:58:19 -06006590L: live-patching@vger.kernel.org
Jiri Kosina74d50da2014-12-22 13:40:20 +01006591T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
Seth Jenningsb700e7f2014-12-16 11:58:19 -06006592
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006593LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07006594M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006595S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006596F: include/linux/llc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006597F: include/uapi/linux/llc.h
Joe Perches679655d2009-04-07 20:44:32 -07006598F: include/net/llc*
6599F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006600
Adrien Demarez4e233cb2009-12-09 20:35:50 +01006601LM73 HARDWARE MONITOR DRIVER
6602M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
6603L: lm-sensors@lm-sensors.org
6604S: Maintained
6605F: drivers/hwmon/lm73.c
6606
Jean Delvare156e2d12011-07-25 21:46:11 +02006607LM78 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07006608M: Jean Delvare <jdelvare@suse.com>
Jean Delvare156e2d12011-07-25 21:46:11 +02006609L: lm-sensors@lm-sensors.org
6610S: Maintained
6611F: Documentation/hwmon/lm78
6612F: drivers/hwmon/lm78.c
6613
Linus Torvalds1da177e2005-04-16 15:20:36 -07006614LM83 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07006615M: Jean Delvare <jdelvare@suse.com>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02006616L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006617S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006618F: Documentation/hwmon/lm83
6619F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006620
6621LM90 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07006622M: Jean Delvare <jdelvare@suse.com>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02006623L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006624S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006625F: Documentation/hwmon/lm90
Wei Niaae7bce2013-11-15 10:40:39 +01006626F: Documentation/devicetree/bindings/hwmon/lm90.txt
Joe Perches679655d2009-04-07 20:44:32 -07006627F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006628
Guenter Roeck917cc4e2013-05-19 20:44:27 -07006629LM95234 HARDWARE MONITOR DRIVER
6630M: Guenter Roeck <linux@roeck-us.net>
6631L: lm-sensors@lm-sensors.org
6632S: Maintained
6633F: Documentation/hwmon/lm95234
6634F: drivers/hwmon/lm95234.c
6635
Malcolm Priestley68620bd2012-11-04 19:16:31 +01006636LME2510 MEDIA DRIVER
6637M: Malcolm Priestley <tvboxspy@gmail.com>
6638L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006639W: https://linuxtv.org
Malcolm Priestley68620bd2012-11-04 19:16:31 +01006640Q: http://patchwork.linuxtv.org/project/linux-media/list/
6641S: Maintained
6642F: drivers/media/usb/dvb-usb-v2/lmedm04*
6643
Peter Zijlstra512e67f2007-10-11 22:11:11 +02006644LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07006645M: Peter Zijlstra <peterz@infradead.org>
6646M: Ingo Molnar <mingo@redhat.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +01006647L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006648T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02006649S: Maintained
Davidlohr Bueso214e0ae2014-07-30 13:41:55 -07006650F: Documentation/locking/lockdep*.txt
6651F: Documentation/locking/lockstat.txt
Joe Perches679655d2009-04-07 20:44:32 -07006652F: include/linux/lockdep.h
Joe Perches7486d6d2013-11-14 14:59:45 -08006653F: kernel/locking/
Peter Zijlstra512e67f2007-10-11 22:11:11 +02006654
Anton Altaparmakovdde33342007-05-21 09:37:42 +01006655LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07006656M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01006657L: linux-ntfs-dev@lists.sourceforge.net
6658W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006659S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006660F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08006661F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006662
Joern Engelef6ada32009-11-20 22:17:12 +01006663LogFS
6664M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05306665M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01006666L: logfs@logfs.org
6667W: logfs.org
6668S: Maintained
6669F: fs/logfs/
6670
Roland Stiggeb62d7942013-04-02 19:37:11 +02006671LPC32XX MACHINE SUPPORT
6672M: Roland Stigge <stigge@antcom.de>
6673L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6674S: Maintained
6675F: arch/arm/mach-lpc32xx/
6676
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07006677LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
Reddy, Sreekanth3a980502014-06-13 20:48:04 +05306678M: Nagalakshmi Nandigama <nagalakshmi.nandigama@avagotech.com>
6679M: Praveen Krishnamoorthy <praveen.krishnamoorthy@avagotech.com>
6680M: Sreekanth Reddy <sreekanth.reddy@avagotech.com>
6681M: Abhijit Mahajan <abhijit.mahajan@avagotech.com>
6682L: MPT-FusionLinux.pdl@avagotech.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07006683L: linux-scsi@vger.kernel.org
6684W: http://www.lsilogic.com/support
6685S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006686F: drivers/message/fusion/
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05306687F: drivers/scsi/mpt2sas/
6688F: drivers/scsi/mpt3sas/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07006689
Linus Torvalds1da177e2005-04-16 15:20:36 -07006690LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07006691M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006692L: linux-scsi@vger.kernel.org
6693S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006694F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006695
Guenter Roecke5f5c992010-06-25 11:59:54 -07006696LTC4261 HARDWARE MONITOR DRIVER
6697M: Guenter Roeck <linux@roeck-us.net>
6698L: lm-sensors@lm-sensors.org
6699S: Maintained
6700F: Documentation/hwmon/ltc4261
6701F: drivers/hwmon/ltc4261.c
6702
Mike Frysinger81365c32008-10-29 14:01:12 -07006703LTP (Linux Test Project)
Joe Perches28b8e8d2010-03-23 13:35:20 -07006704M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07006705M: Cyril Hrubis <chrubis@suse.cz>
Cyril Hrubis05261092015-09-17 16:01:57 -07006706M: Wanlong Gao <wanlong.gao@gmail.com>
Cyril Hrubisf2eb7f62014-05-09 15:36:58 -07006707M: Jan Stancek <jstancek@redhat.com>
6708M: Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
6709M: Alexey Kodanev <alexey.kodanev@oracle.com>
Cyril Hrubis05261092015-09-17 16:01:57 -07006710L: ltp@lists.linux.it (subscribers-only)
Cyril Hrubisf2eb7f62014-05-09 15:36:58 -07006711W: http://linux-test-project.github.io/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07006712T: git git://github.com/linux-test-project/ltp.git
Mike Frysinger81365c32008-10-29 14:01:12 -07006713S: Maintained
6714
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07006715M32R ARCHITECTURE
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07006716W: http://www.linux-m32r.org/
Michael Opdenackerb4174862014-10-13 15:51:26 -07006717S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006718F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07006719
Linus Torvalds1da177e2005-04-16 15:20:36 -07006720M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07006721M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006722L: linux-m68k@lists.linux-m68k.org
6723W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07006724T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006725S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006726F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07006727F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006728
6729M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07006730M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006731W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01006732L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006733S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07006734F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006735
6736M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07006737M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006738W: http://www.tazenda.demon.co.uk/phil/linux-hp
6739S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006740F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006741
Antti Palosaari74425542013-11-06 14:03:32 -03006742M88DS3103 MEDIA DRIVER
6743M: Antti Palosaari <crope@iki.fi>
6744L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006745W: https://linuxtv.org
Antti Palosaari74425542013-11-06 14:03:32 -03006746W: http://palosaari.fi/linux/
6747Q: http://patchwork.linuxtv.org/project/linux-media/list/
6748T: git git://linuxtv.org/anttip/media_tree.git
6749S: Maintained
6750F: drivers/media/dvb-frontends/m88ds3103*
6751
Malcolm Priestley68620bd2012-11-04 19:16:31 +01006752M88RS2000 MEDIA DRIVER
6753M: Malcolm Priestley <tvboxspy@gmail.com>
6754L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006755W: https://linuxtv.org
Malcolm Priestley68620bd2012-11-04 19:16:31 +01006756Q: http://patchwork.linuxtv.org/project/linux-media/list/
6757S: Maintained
6758F: drivers/media/dvb-frontends/m88rs2000*
6759
Alexey Klimov07a092f2012-11-12 02:57:32 -03006760MA901 MASTERKIT USB FM RADIO DRIVER
Joe Perchesb75f0052014-03-03 15:38:37 -08006761M: Alexey Klimov <klimov.linux@gmail.com>
6762L: linux-media@vger.kernel.org
6763T: git git://linuxtv.org/media_tree.git
6764S: Maintained
6765F: drivers/media/radio/radio-ma901.c
Alexey Klimov07a092f2012-11-12 02:57:32 -03006766
Jiri Benc64a327a2007-05-05 11:47:08 -07006767MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07006768M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07006769L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006770W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02006771T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6772T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07006773S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006774F: Documentation/networking/mac80211-injection.txt
6775F: include/net/mac80211.h
6776F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07006777
Patrick McHardyb863ceb2007-07-14 18:55:06 -07006778MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006779M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07006780L: netdev@vger.kernel.org
6781S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006782F: drivers/net/macvlan.c
6783F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07006784
Jassi Brar2b6d83e2014-06-12 22:31:19 +05306785MAILBOX API
6786M: Jassi Brar <jassisinghbrar@gmail.com>
6787L: linux-kernel@vger.kernel.org
6788S: Maintained
6789F: drivers/mailbox/
6790F: include/linux/mailbox_client.h
6791F: include/linux/mailbox_controller.h
6792
Michael Kerriskfaf16682005-07-31 22:34:47 -07006793MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07006794M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006795W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07006796L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07006797S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07006798
Russell King8427def2014-02-28 22:40:53 +00006799MARVELL ARMADA DRM SUPPORT
6800M: Russell King <rmk+kernel@arm.linux.org.uk>
6801S: Maintained
6802F: drivers/gpu/drm/armada/
6803
Guenter Roeck3ad50cc2014-10-29 10:44:56 -07006804MARVELL 88E6352 DSA support
6805M: Guenter Roeck <linux@roeck-us.net>
6806S: Maintained
6807F: drivers/net/dsa/mv88e6352.c
6808
Thomas Petazzonic4d007b2015-10-09 17:39:02 +02006809MARVELL CRYPTO DRIVER
6810M: Boris Brezillon <boris.brezillon@free-electrons.com>
6811M: Arnaud Ebalard <arno@natisbad.org>
6812F: drivers/crypto/marvell/
6813S: Maintained
6814L: linux-crypto@vger.kernel.org
6815
stephen hemminger44c14c12012-04-02 12:59:47 +00006816MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
6817M: Mirko Lindner <mlindner@marvell.com>
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08006818M: Stephen Hemminger <stephen@networkplumber.org>
stephen hemminger44c14c12012-04-02 12:59:47 +00006819L: netdev@vger.kernel.org
6820S: Maintained
6821F: drivers/net/ethernet/marvell/sk*
6822
Stefano Brivio74cda162007-11-19 20:27:46 +01006823MARVELL LIBERTAS WIRELESS DRIVER
Stefano Brivio74cda162007-11-19 20:27:46 +01006824L: libertas-dev@lists.infradead.org
Dan Williams8ac3e992013-03-26 14:40:51 -05006825S: Orphan
Kalle Valof988d642015-11-17 21:07:19 +02006826F: drivers/net/wireless/marvell/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01006827
Dale Farnsworthb60d6972006-01-16 16:45:45 -07006828MARVELL MV643XX ETHERNET DRIVER
Sebastian Hesselbarth4e3faf82013-10-04 12:56:39 +02006829M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07006830L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00006831S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07006832F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07006833F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006834
Thomas Petazzoni370b8ed2012-09-04 15:06:42 +02006835MARVELL MVNETA ETHERNET DRIVER
6836M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
6837L: netdev@vger.kernel.org
6838S: Maintained
6839F: drivers/net/ethernet/marvell/mvneta.*
6840
Bing Zhaofcad5842011-07-13 13:11:58 -07006841MARVELL MWIFIEX WIRELESS DRIVER
Bing Zhaob9d31702014-07-30 13:57:16 -07006842M: Amitkumar Karwar <akarwar@marvell.com>
Avinash Patil550795f2015-06-24 16:52:21 +05306843M: Nishant Sarmukadam <nishants@marvell.com>
Bing Zhaofcad5842011-07-13 13:11:58 -07006844L: linux-wireless@vger.kernel.org
6845S: Maintained
Kalle Valo277b0242015-11-17 21:14:51 +02006846F: drivers/net/wireless/marvell/mwifiex/
Bing Zhaofcad5842011-07-13 13:11:58 -07006847
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02006848MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01006849M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02006850L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02006851S: Odd Fixes
Kalle Valode60f1d2015-11-17 21:18:12 +02006852F: drivers/net/wireless/marvell/mwl8k.c
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02006853
Pierre Ossman2a695672009-03-16 19:52:26 +01006854MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04006855M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04006856S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07006857F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01006858
Linus Torvalds1da177e2005-04-16 15:20:36 -07006859MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006860L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07006861S: Orphan
Jingoo Han8a61f012014-07-01 15:36:01 +09006862F: drivers/video/fbdev/matrox/matroxfb_*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006863F: include/uapi/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006864
Guenter Roeckca462082012-06-01 23:28:23 -07006865MAX16065 HARDWARE MONITOR DRIVER
6866M: Guenter Roeck <linux@roeck-us.net>
6867L: lm-sensors@lm-sensors.org
6868S: Maintained
6869F: Documentation/hwmon/max16065
6870F: drivers/hwmon/max16065.c
6871
Guenter Roeck1f61cab2015-06-08 11:15:23 -07006872MAX20751 HARDWARE MONITOR DRIVER
6873M: Guenter Roeck <linux@roeck-us.net>
6874L: lm-sensors@lm-sensors.org
6875S: Maintained
6876F: Documentation/hwmon/max20751
6877F: drivers/hwmon/max20751.c
6878
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02006879MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07006880M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02006881L: lm-sensors@lm-sensors.org
6882S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006883F: Documentation/hwmon/max6650
6884F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02006885
Guenter Roecke89ab512013-03-08 08:13:09 -08006886MAX6697 HARDWARE MONITOR DRIVER
6887M: Guenter Roeck <linux@roeck-us.net>
6888L: lm-sensors@lm-sensors.org
6889S: Maintained
6890F: Documentation/hwmon/max6697
6891F: Documentation/devicetree/bindings/i2c/max6697.txt
6892F: drivers/hwmon/max6697.c
6893F: include/linux/platform_data/max6697.h
6894
Krzysztof Kozlowskif8f847b2015-01-20 11:00:56 +01006895MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
6896M: Krzysztof Kozlowski <k.kozlowski@samsung.com>
6897L: linux-pm@vger.kernel.org
6898S: Supported
6899F: drivers/power/max14577_charger.c
6900F: drivers/power/max77693_charger.c
6901
Javier Martinez Canillas38114052015-07-17 10:17:58 +02006902MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS
6903M: Javier Martinez Canillas <javier@osg.samsung.com>
6904L: linux-kernel@vger.kernel.org
6905S: Supported
6906F: drivers/*/*max77802.c
6907F: Documentation/devicetree/bindings/*/*max77802.txt
6908F: include/dt-bindings/*/*max77802.h
6909
Krzysztof Kozlowskibefeb592015-02-16 16:00:23 -08006910MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
6911M: Chanwoo Choi <cw00.choi@samsung.com>
6912M: Krzysztof Kozlowski <k.kozlowski@samsung.com>
6913L: linux-kernel@vger.kernel.org
6914S: Supported
6915F: drivers/*/max14577.c
6916F: drivers/*/max77686.c
6917F: drivers/*/max77693.c
6918F: drivers/extcon/extcon-max14577.c
6919F: drivers/extcon/extcon-max77693.c
6920F: drivers/rtc/rtc-max77686.c
6921F: drivers/clk/clk-max77686.c
6922F: Documentation/devicetree/bindings/mfd/max14577.txt
Javier Martinez Canillas377452f2015-07-17 10:17:57 +02006923F: Documentation/devicetree/bindings/*/max77686.txt
Krzysztof Kozlowskibefeb592015-02-16 16:00:23 -08006924F: Documentation/devicetree/bindings/mfd/max77693.txt
6925F: Documentation/devicetree/bindings/clock/maxim,max77686.txt
6926F: include/linux/mfd/max14577*.h
6927F: include/linux/mfd/max77686*.h
6928F: include/linux/mfd/max77693*.h
6929
Hans Verkuil9be3c9a2012-11-23 07:12:43 -03006930MAXIRADIO FM RADIO RECEIVER DRIVER
6931M: Hans Verkuil <hverkuil@xs4all.nl>
6932L: linux-media@vger.kernel.org
6933T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006934W: https://linuxtv.org
Hans Verkuil9be3c9a2012-11-23 07:12:43 -03006935S: Maintained
6936F: drivers/media/radio/radio-maxiradio*
6937
Peter Rosinc05dc2c2015-09-23 16:26:23 +02006938MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVER
6939M: Peter Rosin <peda@axentia.se>
6940L: linux-iio@vger.kernel.org
6941S: Maintained
6942F: drivers/iio/potentiometer/mcp4531.c
6943
Laurent Pinchart6f32a8c2015-03-04 09:12:20 -03006944MEDIA DRIVERS FOR RENESAS - VSP1
6945M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6946L: linux-media@vger.kernel.org
Simon Horman4a121092016-01-18 10:04:33 +09006947L: linux-renesas-soc@vger.kernel.org
Laurent Pinchart6f32a8c2015-03-04 09:12:20 -03006948T: git git://linuxtv.org/media_tree.git
6949S: Supported
6950F: Documentation/devicetree/bindings/media/renesas,vsp1.txt
6951F: drivers/media/platform/vsp1/
6952
Kozlov Sergeydacf9ce2015-07-28 11:33:01 -03006953MEDIA DRIVERS FOR ASCOT2E
6954M: Sergey Kozlov <serjk@netup.ru>
6955L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006956W: https://linuxtv.org
Kozlov Sergeydacf9ce2015-07-28 11:33:01 -03006957W: http://netup.tv/
6958T: git git://linuxtv.org/media_tree.git
6959S: Supported
6960F: drivers/media/dvb-frontends/ascot2e*
6961
Kozlov Sergeya6dc60ff2015-07-28 11:33:03 -03006962MEDIA DRIVERS FOR CXD2841ER
6963M: Sergey Kozlov <serjk@netup.ru>
6964L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006965W: https://linuxtv.org
Kozlov Sergeya6dc60ff2015-07-28 11:33:03 -03006966W: http://netup.tv/
6967T: git git://linuxtv.org/media_tree.git
6968S: Supported
6969F: drivers/media/dvb-frontends/cxd2841er*
6970
Kozlov Sergeya5d32b32015-07-28 11:33:00 -03006971MEDIA DRIVERS FOR HORUS3A
6972M: Sergey Kozlov <serjk@netup.ru>
6973L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006974W: https://linuxtv.org
Kozlov Sergeya5d32b32015-07-28 11:33:00 -03006975W: http://netup.tv/
6976T: git git://linuxtv.org/media_tree.git
6977S: Supported
6978F: drivers/media/dvb-frontends/horus3a*
6979
Kozlov Sergeye0252732015-07-28 11:33:02 -03006980MEDIA DRIVERS FOR LNBH25
6981M: Sergey Kozlov <serjk@netup.ru>
6982L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006983W: https://linuxtv.org
Kozlov Sergeye0252732015-07-28 11:33:02 -03006984W: http://netup.tv/
6985T: git git://linuxtv.org/media_tree.git
6986S: Supported
6987F: drivers/media/dvb-frontends/lnbh25*
6988
Kozlov Sergey52b1eaf2015-07-28 11:33:04 -03006989MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
6990M: Sergey Kozlov <serjk@netup.ru>
6991L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006992W: https://linuxtv.org
Kozlov Sergey52b1eaf2015-07-28 11:33:04 -03006993W: http://netup.tv/
6994T: git git://linuxtv.org/media_tree.git
6995S: Supported
6996F: drivers/media/pci/netup_unidvb/*
6997
Joe Perches127c49a2009-04-08 08:34:04 -07006998MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02006999M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Joe Perches127c49a2009-04-08 08:34:04 -07007000P: LinuxTV.org Project
7001L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007002W: https://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007003Q: http://patchwork.kernel.org/project/linux-media/list/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02007004T: git git://linuxtv.org/media_tree.git
Joe Perches127c49a2009-04-08 08:34:04 -07007005S: Maintained
7006F: Documentation/dvb/
7007F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02007008F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07007009F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02007010F: drivers/staging/media/
Mauro Carvalho Chehabeb4b0ec2015-11-16 08:35:53 -02007011F: include/linux/platform_data/media/
Joe Perches127c49a2009-04-08 08:34:04 -07007012F: include/media/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02007013F: include/uapi/linux/dvb/
7014F: include/uapi/linux/videodev2.h
7015F: include/uapi/linux/media.h
7016F: include/uapi/linux/v4l2-*
7017F: include/uapi/linux/meye.h
7018F: include/uapi/linux/ivtv*
7019F: include/uapi/linux/uvcvideo.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07007020
Jakub Kicinskic869f772015-05-26 11:16:00 +02007021MEDIATEK MT7601U WIRELESS LAN DRIVER
7022M: Jakub Kicinski <kubakici@wp.pl>
7023L: linux-wireless@vger.kernel.org
7024S: Maintained
7025F: drivers/net/wireless/mediatek/mt7601u/
7026
Sumit.Saxena@avagotech.come3990652014-11-17 15:24:03 +05307027MEGARAID SCSI/SAS DRIVERS
7028M: Kashyap Desai <kashyap.desai@avagotech.com>
7029M: Sumit Saxena <sumit.saxena@avagotech.com>
7030M: Uday Lingala <uday.lingala@avagotech.com>
7031L: megaraidlinux.pdl@avagotech.com
Jean Delvarebaaea1d2008-09-20 12:34:33 +02007032L: linux-scsi@vger.kernel.org
Sumit.Saxena@avagotech.come3990652014-11-17 15:24:03 +05307033W: http://www.lsi.com
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07007034S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007035F: Documentation/scsi/megaraid.txt
7036F: drivers/scsi/megaraid.*
7037F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07007038
Amir Vadai2c46c9d2012-12-02 03:49:21 +00007039MELLANOX ETHERNET DRIVER (mlx4_en)
Or Gerlitze7523a42015-11-17 18:25:07 +02007040M: Eugenia Emantayev <eugenia@mellanox.com>
Joe Perchesb75f0052014-03-03 15:38:37 -08007041L: netdev@vger.kernel.org
Amir Vadai2c46c9d2012-12-02 03:49:21 +00007042S: Supported
7043W: http://www.mellanox.com
7044Q: http://patchwork.ozlabs.org/project/netdev/list/
7045F: drivers/net/ethernet/mellanox/mlx4/en_*
7046
Or Gerlitze7523a42015-11-17 18:25:07 +02007047MELLANOX ETHERNET DRIVER (mlx5e)
7048M: Saeed Mahameed <saeedm@mellanox.com>
7049L: netdev@vger.kernel.org
7050S: Supported
7051W: http://www.mellanox.com
7052Q: http://patchwork.ozlabs.org/project/netdev/list/
7053F: drivers/net/ethernet/mellanox/mlx5/core/en_*
7054
Jiri Pirko93c1edb2015-07-29 23:33:46 +02007055MELLANOX ETHERNET SWITCH DRIVERS
7056M: Jiri Pirko <jiri@mellanox.com>
7057M: Ido Schimmel <idosch@mellanox.com>
7058L: netdev@vger.kernel.org
7059S: Supported
7060W: http://www.mellanox.com
7061Q: http://patchwork.ozlabs.org/project/netdev/list/
7062F: drivers/net/ethernet/mellanox/mlxsw/
7063
Mathieu Desnoyers5b25b132015-09-11 13:07:39 -07007064MEMBARRIER SUPPORT
7065M: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7066M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7067L: linux-kernel@vger.kernel.org
7068S: Supported
7069F: kernel/membarrier.c
7070F: include/uapi/linux/membarrier.h
7071
Steven Rostedt70ea91f2006-07-30 03:03:53 -07007072MEMORY MANAGEMENT
7073L: linux-mm@kvack.org
Steven Rostedt70ea91f2006-07-30 03:03:53 -07007074W: http://www.linux-mm.org
7075S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007076F: include/linux/mm.h
Cody P Schafer551450b2013-02-21 16:43:13 -08007077F: include/linux/gfp.h
7078F: include/linux/mmzone.h
7079F: include/linux/memory_hotplug.h
7080F: include/linux/vmalloc.h
Joe Perches679655d2009-04-07 20:44:32 -07007081F: mm/
Steven Rostedt70ea91f2006-07-30 03:03:53 -07007082
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04007083MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07007084M: David Woodhouse <dwmw2@infradead.org>
Brian Norris242c3252013-12-04 15:28:45 -08007085M: Brian Norris <computersforpeace@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007086L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007087W: http://www.linux-mtd.infradead.org/
7088Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
Brian Norris242c3252013-12-04 15:28:45 -08007089T: git git://git.infradead.org/linux-mtd.git
Brian Norrisab95eac2014-09-15 21:56:17 -07007090T: git git://git.infradead.org/l2-mtd.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007091S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007092F: drivers/mtd/
7093F: include/linux/mtd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007094F: include/uapi/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007095
Johannes Thumshirn26c57ef2013-06-18 17:19:45 +02007096MEN A21 WATCHDOG DRIVER
Johannes Thumshirn30c74692015-05-07 10:21:24 +02007097M: Johannes Thumshirn <morbidrsa@gmail.com>
Johannes Thumshirn26c57ef2013-06-18 17:19:45 +02007098L: linux-watchdog@vger.kernel.org
Johannes Thumshirn30c74692015-05-07 10:21:24 +02007099S: Maintained
Johannes Thumshirn26c57ef2013-06-18 17:19:45 +02007100F: drivers/watchdog/mena21_wdt.c
7101
Johannes Thumshirn3764e822014-02-26 17:29:05 +01007102MEN CHAMELEON BUS (mcb)
Johannes Thumshirn30c74692015-05-07 10:21:24 +02007103M: Johannes Thumshirn <morbidrsa@gmail.com>
7104S: Maintained
Johannes Thumshirn3764e822014-02-26 17:29:05 +01007105F: drivers/mcb/
7106F: include/linux/mcb.h
Johannes Thumshirnb9f2f452015-07-17 12:23:01 +02007107F: Documentation/men-chameleon-bus.txt
Johannes Thumshirn3764e822014-02-26 17:29:05 +01007108
Andreas Werner48b490d2014-09-15 09:36:30 +02007109MEN F21BMC (Board Management Controller)
7110M: Andreas Werner <andreas.werner@men.de>
7111S: Supported
7112F: drivers/mfd/menf21bmc.c
7113F: drivers/watchdog/menf21bmc_wdt.c
7114F: drivers/leds/leds-menf21bmc.c
7115F: drivers/hwmon/menf21bmc_hwmon.c
7116F: Documentation/hwmon/menf21bmc
7117
James Hogan12285942012-10-10 12:59:49 +01007118METAG ARCHITECTURE
7119M: James Hogan <james.hogan@imgtec.com>
James Hogand668d9e2013-07-22 09:51:38 +01007120L: linux-metag@vger.kernel.org
Fengguang Wu9f273c22016-01-20 15:03:25 -08007121T: git git://git.kernel.org/pub/scm/linux/kernel/git/jhogan/metag.git
James Hoganf23d0e22015-11-09 18:40:59 +00007122S: Odd Fixes
James Hogan12285942012-10-10 12:59:49 +01007123F: arch/metag/
7124F: Documentation/metag/
7125F: Documentation/devicetree/bindings/metag/
Rob Herring2d799dd2015-11-05 13:40:40 -06007126F: Documentation/devicetree/bindings/interrupt-controller/img,*
James Hogana2c5d4e2012-10-09 10:54:39 +01007127F: drivers/clocksource/metag_generic.c
James Hogan5698c502012-10-09 10:54:47 +01007128F: drivers/irqchip/irq-metag.c
7129F: drivers/irqchip/irq-metag-ext.c
James Hoganae85ac72012-09-21 17:38:15 +01007130F: drivers/tty/metag_da.c
James Hogan12285942012-10-10 12:59:49 +01007131
Michal Simekc6375b02009-03-27 14:25:52 +01007132MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07007133M: Michal Simek <monstr@monstr.eu>
Michal Simekc6375b02009-03-27 14:25:52 +01007134W: http://www.monstr.eu/fdt/
7135T: git git://git.monstr.eu/linux-2.6-microblaze.git
7136S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02007137F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007138
Chen Yu2508a452015-08-18 23:30:25 +08007139MICROSOFT SURFACE PRO 3 BUTTON DRIVER
7140M: Chen Yu <yu.c.chen@intel.com>
7141L: platform-driver-x86@vger.kernel.org
7142S: Supported
7143F: drivers/platform/x86/surfacepro3_button.c
7144
Linus Torvalds1da177e2005-04-16 15:20:36 -07007145MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007146M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007147S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007148F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007149
7150MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07007151M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007152L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01007153W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00007154T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01007155Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00007156S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007157F: Documentation/mips/
7158F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007159
Hans Verkuil08b76202012-11-23 07:15:42 -03007160MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
7161M: Hans Verkuil <hverkuil@xs4all.nl>
7162L: linux-media@vger.kernel.org
7163T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007164W: https://linuxtv.org
Hans Verkuil08b76202012-11-23 07:15:42 -03007165S: Odd Fixes
7166F: drivers/media/radio/radio-miropcm20*
7167
Or Gerlitzc09befc2015-12-23 18:30:58 +02007168MELLANOX MLX4 core VPI driver
7169M: Yishai Hadas <yishaih@mellanox.com>
Eli Cohene126ba92013-07-07 17:25:49 +03007170L: netdev@vger.kernel.org
7171L: linux-rdma@vger.kernel.org
7172W: http://www.mellanox.com
7173Q: http://patchwork.ozlabs.org/project/netdev/list/
Or Gerlitzc09befc2015-12-23 18:30:58 +02007174S: Supported
7175F: drivers/net/ethernet/mellanox/mlx4/
7176F: include/linux/mlx4/
7177
7178MELLANOX MLX4 IB driver
7179M: Yishai Hadas <yishaih@mellanox.com>
7180L: linux-rdma@vger.kernel.org
7181W: http://www.mellanox.com
Eli Cohene126ba92013-07-07 17:25:49 +03007182Q: http://patchwork.kernel.org/project/linux-rdma/list/
Or Gerlitzc09befc2015-12-23 18:30:58 +02007183S: Supported
7184F: drivers/infiniband/hw/mlx4/
7185F: include/linux/mlx4/
7186
Or Gerlitz595a4d82015-12-23 18:30:57 +02007187MELLANOX MLX5 core VPI driver
7188M: Matan Barak <matanb@mellanox.com>
7189M: Leon Romanovsky <leonro@mellanox.com>
Eli Cohene126ba92013-07-07 17:25:49 +03007190L: netdev@vger.kernel.org
7191L: linux-rdma@vger.kernel.org
7192W: http://www.mellanox.com
7193Q: http://patchwork.ozlabs.org/project/netdev/list/
Eli Cohene126ba92013-07-07 17:25:49 +03007194S: Supported
7195F: drivers/net/ethernet/mellanox/mlx5/core/
7196F: include/linux/mlx5/
7197
Or Gerlitz595a4d82015-12-23 18:30:57 +02007198MELLANOX MLX5 IB driver
7199M: Matan Barak <matanb@mellanox.com>
7200M: Leon Romanovsky <leonro@mellanox.com>
Joe Perchesb75f0052014-03-03 15:38:37 -08007201L: linux-rdma@vger.kernel.org
7202W: http://www.mellanox.com
7203Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perchesb75f0052014-03-03 15:38:37 -08007204S: Supported
Joe Perchesb75f0052014-03-03 15:38:37 -08007205F: drivers/infiniband/hw/mlx5/
Or Gerlitz595a4d82015-12-23 18:30:57 +02007206F: include/linux/mlx5/
Eli Cohene126ba92013-07-07 17:25:49 +03007207
Crt Mori764589b2015-08-17 19:34:33 +02007208MELEXIS MLX90614 DRIVER
7209M: Crt Mori <cmo@melexis.com>
7210L: linux-iio@vger.kernel.org
7211W: http://www.melexis.com
7212S: Supported
7213F: drivers/iio/temperature/mlx90614.c
7214
Antti Palosaari0ce277e2014-11-12 00:35:42 -03007215MN88472 MEDIA DRIVER
7216M: Antti Palosaari <crope@iki.fi>
7217L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007218W: https://linuxtv.org
Antti Palosaari0ce277e2014-11-12 00:35:42 -03007219W: http://palosaari.fi/linux/
7220Q: http://patchwork.linuxtv.org/project/linux-media/list/
7221T: git git://linuxtv.org/anttip/media_tree.git
7222S: Maintained
7223F: drivers/staging/media/mn88472/
7224F: drivers/media/dvb-frontends/mn88472.h
7225
Antti Palosaari4f4d2382014-11-12 00:53:57 -03007226MN88473 MEDIA DRIVER
7227M: Antti Palosaari <crope@iki.fi>
7228L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007229W: https://linuxtv.org
Antti Palosaari4f4d2382014-11-12 00:53:57 -03007230W: http://palosaari.fi/linux/
7231Q: http://patchwork.linuxtv.org/project/linux-media/list/
7232T: git git://linuxtv.org/anttip/media_tree.git
7233S: Maintained
7234F: drivers/staging/media/mn88473/
7235F: drivers/media/dvb-frontends/mn88473.h
7236
Linus Torvalds1da177e2005-04-16 15:20:36 -07007237MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007238M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007239S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007240F: include/linux/module.h
7241F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007242
7243MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07007244W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08007245S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007246F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007247F: drivers/media/pci/meye/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02007248F: include/uapi/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007249
Jiri Slabyb9705b62008-04-30 00:53:48 -07007250MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07007251M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08007252S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007253F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07007254F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08007255
Alexey Klimov889b2f82012-11-16 17:43:59 -03007256MR800 AVERMEDIA USB FM RADIO DRIVER
7257M: Alexey Klimov <klimov.linux@gmail.com>
7258L: linux-media@vger.kernel.org
7259T: git git://linuxtv.org/media_tree.git
7260S: Maintained
7261F: drivers/media/radio/radio-mr800.c
7262
Alan Ottd7155692014-08-16 17:09:03 -04007263MRF24J40 IEEE 802.15.4 RADIO DRIVER
7264M: Alan Ott <alan@signal11.us>
7265L: linux-wpan@vger.kernel.org
7266S: Maintained
7267F: drivers/net/ieee802154/mrf24j40.c
Alexander Aring2e6fd642015-09-21 11:24:26 +02007268F: Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
Alan Ottd7155692014-08-16 17:09:03 -04007269
Lennart Poettering8c4c7312006-10-06 01:27:02 -04007270MSI LAPTOP SUPPORT
Lee, Chun-Yi182ae552012-12-14 16:14:24 +08007271M: "Lee, Chun-Yi" <jlee@suse.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05007272L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04007273S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007274F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04007275
Anisse Astier0f1006b2009-12-17 11:28:49 +01007276MSI WMI SUPPORT
Matthew Garrettd0944852010-02-11 10:40:13 -05007277L: platform-driver-x86@vger.kernel.org
Anisse Astier5ee70412015-06-14 22:32:23 +02007278S: Orphan
Anisse Astier0f1006b2009-12-17 11:28:49 +01007279F: drivers/platform/x86/msi-wmi.c
7280
Antti Palosaari19a628a2014-02-02 23:51:30 -03007281MSI001 MEDIA DRIVER
7282M: Antti Palosaari <crope@iki.fi>
7283L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007284W: https://linuxtv.org
Antti Palosaari19a628a2014-02-02 23:51:30 -03007285W: http://palosaari.fi/linux/
7286Q: http://patchwork.linuxtv.org/project/linux-media/list/
7287T: git git://linuxtv.org/anttip/media_tree.git
7288S: Maintained
Antti Palosaari0185e192014-07-12 08:58:32 -03007289F: drivers/media/tuners/msi001*
Antti Palosaari19a628a2014-02-02 23:51:30 -03007290
Antti Palosaari75705892014-07-13 21:35:47 -03007291MSI2500 MEDIA DRIVER
Antti Palosaari2c572132014-02-02 23:55:12 -03007292M: Antti Palosaari <crope@iki.fi>
7293L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007294W: https://linuxtv.org
Antti Palosaari2c572132014-02-02 23:55:12 -03007295W: http://palosaari.fi/linux/
7296Q: http://patchwork.linuxtv.org/project/linux-media/list/
7297T: git git://linuxtv.org/anttip/media_tree.git
7298S: Maintained
Antti Palosaari75705892014-07-13 21:35:47 -03007299F: drivers/media/usb/msi2500/
Antti Palosaari2c572132014-02-02 23:55:12 -03007300
Robert Jarzmik159eeea2015-06-25 19:14:18 +02007301MSYSTEMS DISKONCHIP G3 MTD DRIVER
7302M: Robert Jarzmik <robert.jarzmik@free.fr>
7303L: linux-mtd@lists.infradead.org
7304S: Maintained
7305F: drivers/mtd/devices/docg3*
7306
Laurent Pinchart62a37dc2013-08-09 08:46:11 -03007307MT9M032 APTINA SENSOR DRIVER
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007308M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7309L: linux-media@vger.kernel.org
7310T: git git://linuxtv.org/media_tree.git
7311S: Maintained
7312F: drivers/media/i2c/mt9m032.c
Mauro Carvalho Chehabb5dcee22015-11-10 12:01:44 -02007313F: include/media/i2c/mt9m032.h
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007314
Laurent Pinchart62a37dc2013-08-09 08:46:11 -03007315MT9P031 APTINA CAMERA SENSOR
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007316M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7317L: linux-media@vger.kernel.org
7318T: git git://linuxtv.org/media_tree.git
7319S: Maintained
7320F: drivers/media/i2c/mt9p031.c
Mauro Carvalho Chehabb5dcee22015-11-10 12:01:44 -02007321F: include/media/i2c/mt9p031.h
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007322
Laurent Pinchart62a37dc2013-08-09 08:46:11 -03007323MT9T001 APTINA CAMERA SENSOR
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007324M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7325L: linux-media@vger.kernel.org
7326T: git git://linuxtv.org/media_tree.git
7327S: Maintained
7328F: drivers/media/i2c/mt9t001.c
Mauro Carvalho Chehabb5dcee22015-11-10 12:01:44 -02007329F: include/media/i2c/mt9t001.h
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007330
Laurent Pinchart62a37dc2013-08-09 08:46:11 -03007331MT9V032 APTINA CAMERA SENSOR
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007332M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7333L: linux-media@vger.kernel.org
7334T: git git://linuxtv.org/media_tree.git
7335S: Maintained
Laurent Pinchartf2272e12014-01-01 14:40:35 -03007336F: Documentation/devicetree/bindings/media/i2c/mt9v032.txt
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007337F: drivers/media/i2c/mt9v032.c
Mauro Carvalho Chehabb5dcee22015-11-10 12:01:44 -02007338F: include/media/i2c/mt9v032.h
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007339
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07007340MULTIFUNCTION DEVICES (MFD)
Samuel Ortizf7d32102013-05-17 00:53:42 +02007341M: Lee Jones <lee.jones@linaro.org>
Lee Jones7caa7992014-07-22 13:24:38 +01007342T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07007343S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007344F: drivers/mfd/
Mark Brown55b59402013-06-28 15:14:11 +01007345F: include/linux/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07007346
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02007347MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Ulf Hanssone18eaf82014-02-19 00:01:05 +01007348M: Ulf Hansson <ulf.hansson@linaro.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07007349L: linux-mmc@vger.kernel.org
Ulf Hansson708dce32014-05-14 14:32:53 +02007350T: git git://git.linaro.org/people/ulf.hansson/mmc.git
Chris Ball245feaa2010-09-10 12:05:24 -04007351S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007352F: drivers/mmc/
7353F: include/linux/mmc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007354F: include/uapi/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01007355
David Brownell15a05802007-08-08 09:12:54 -07007356MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06007357S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007358F: drivers/mmc/host/mmc_spi.c
7359F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07007360
Linus Torvalds1da177e2005-04-16 15:20:36 -07007361MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007362M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007363S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007364F: Documentation/sound/oss/MultiSound
7365F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007366
Jiri Slabyd7354102006-12-08 02:38:35 -08007367MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02007368S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07007369F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07007370F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08007371
Felipe Balbi550a7372008-07-24 12:27:36 +03007372MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03007373M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007374L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03007375T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02007376S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007377F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03007378
Michael Krufkyea0af5f2012-10-02 00:55:41 -03007379MXL5007T MEDIA DRIVER
7380M: Michael Krufky <mkrufky@linuxtv.org>
7381L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007382W: https://linuxtv.org
Michael Krufkyea0af5f2012-10-02 00:55:41 -03007383W: http://github.com/mkrufky
7384Q: http://patchwork.linuxtv.org/project/linux-media/list/
7385T: git git://linuxtv.org/mkrufky/tuners.git
7386S: Maintained
7387F: drivers/media/tuners/mxl5007t.*
7388
Brice Goglin2d3cf582008-05-17 12:45:36 +02007389MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Hyong-Youb Kim205057a2013-08-12 02:20:02 -07007390M: Hyong-Youb Kim <hykim@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02007391L: netdev@vger.kernel.org
Hyong-Youb Kim205057a2013-08-12 02:20:02 -07007392W: https://www.myricom.com/support/downloads/myri10ge.html
Brice Goglin2d3cf582008-05-17 12:45:36 +02007393S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07007394F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02007395
Linus Torvalds1da177e2005-04-16 15:20:36 -07007396NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04007397S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07007398F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007399
Daniel Mack23dc05a2011-05-18 11:28:38 +02007400NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
7401M: Daniel Mack <zonque@gmail.com>
7402S: Maintained
Jim Davise5747e42015-06-25 15:01:58 -07007403L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Daniel Mack23dc05a2011-05-18 11:28:38 +02007404W: http://www.native-instruments.com
7405F: sound/usb/caiaq/
7406
Linus Torvalds1da177e2005-04-16 15:20:36 -07007407NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07007408M: Petr Vandrovec <petr@vandrovec.name>
7409S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07007410F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007411
Finn Thaina79b0322014-05-05 15:35:30 +10007412NCR 5380 SCSI DRIVERS
7413M: Finn Thain <fthain@telegraphics.com.au>
7414M: Michael Schmitz <schmitzmic@gmail.com>
7415L: linux-scsi@vger.kernel.org
7416S: Maintained
7417F: Documentation/scsi/g_NCR5380.txt
7418F: drivers/scsi/NCR5380.*
7419F: drivers/scsi/arm/cumana_1.c
7420F: drivers/scsi/arm/oak.c
7421F: drivers/scsi/atari_NCR5380.c
7422F: drivers/scsi/atari_scsi.*
7423F: drivers/scsi/dmx3191d.c
7424F: drivers/scsi/dtc.*
7425F: drivers/scsi/g_NCR5380.*
7426F: drivers/scsi/g_NCR5380_mmio.c
7427F: drivers/scsi/mac_scsi.*
7428F: drivers/scsi/pas16.*
Finn Thaina79b0322014-05-05 15:35:30 +10007429F: drivers/scsi/sun3_scsi.*
7430F: drivers/scsi/sun3_scsi_vme.c
7431F: drivers/scsi/t128.*
7432
Linus Torvalds1da177e2005-04-16 15:20:36 -07007433NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07007434M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007435L: linux-scsi@vger.kernel.org
7436S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007437F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007438
Guenter Roeck4aa3eb42013-04-03 14:12:11 -07007439NCT6775 HARDWARE MONITOR DRIVER
7440M: Guenter Roeck <linux@roeck-us.net>
7441L: lm-sensors@lm-sensors.org
7442S: Maintained
7443F: Documentation/hwmon/nct6775
7444F: drivers/hwmon/nct6775.c
7445
Glenn Streiff3c2d7742008-02-04 20:20:45 -08007446NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07007447M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07007448L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00007449W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08007450S: Supported
7451F: drivers/infiniband/hw/nes/
7452
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07007453NETEM NETWORK EMULATOR
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08007454M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07007455L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07007456S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007457F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07007458
Jon Masonb2f5a052010-07-15 08:47:27 +00007459NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00007460M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07007461L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07007462S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007463F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00007464F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07007465F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07007466
Pablo Neira Ayusodb9cf3a2014-06-16 13:01:52 +02007467NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01007468M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07007469M: Patrick McHardy <kaber@trash.net>
Pablo Neira Ayuso42010ed2013-05-06 12:22:57 +02007470M: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
Patrick McHardy1a03b812007-09-18 13:19:26 -07007471L: netfilter-devel@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07007472L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007473W: http://www.netfilter.org/
7474W: http://www.iptables.org/
Pablo Neira Ayuso42010ed2013-05-06 12:22:57 +02007475Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/
7476T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
7477T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007478S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007479F: include/linux/netfilter*
7480F: include/linux/netfilter/
7481F: include/net/netfilter/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007482F: include/uapi/linux/netfilter*
7483F: include/uapi/linux/netfilter/
Joe Perches679655d2009-04-07 20:44:32 -07007484F: net/*/netfilter.c
7485F: net/*/netfilter/
7486F: net/netfilter/
Pablo Neira Ayuso91c269a2015-07-06 20:55:35 +02007487F: net/bridge/br_netfilter*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007488
Paul Moore4cc67732006-09-25 15:57:13 -07007489NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00007490M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07007491W: http://netlabel.sf.net
7492L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00007493S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07007494F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07007495F: include/net/netlabel.h
7496F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07007497
Linus Torvalds1da177e2005-04-16 15:20:36 -07007498NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07007499M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007500L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02007501W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007502S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007503F: include/net/netrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007504F: include/uapi/linux/netrom.h
Joe Perches679655d2009-04-07 20:44:32 -07007505F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007506
Jakub Kicinski4c352362015-12-01 14:55:22 +00007507NETRONOME ETHERNET DRIVERS
7508M: Jakub Kicinski <jakub.kicinski@netronome.com>
7509M: Rolf Neugebauer <rolf.neugebauer@netronome.com>
7510L: oss-drivers@netronome.com
7511S: Maintained
7512F: drivers/net/ethernet/netronome/
7513
Pavel Machek5ddb88c2006-09-29 02:01:29 -07007514NETWORK BLOCK DEVICE (NBD)
Markus Pargmann4ca58292015-01-28 19:35:38 +01007515M: Markus Pargmann <mpa@pengutronix.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007516S: Maintained
Wouter Verhelst5e4b2692013-02-27 17:05:27 -08007517L: nbd-general@lists.sourceforge.net
Markus Pargmann4ca58292015-01-28 19:35:38 +01007518T: git git://git.pengutronix.de/git/mpa/linux-nbd.git
Joe Perches679655d2009-04-07 20:44:32 -07007519F: Documentation/blockdev/nbd.txt
7520F: drivers/block/nbd.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007521F: include/uapi/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007522
Neil Horman6e436502009-10-05 03:56:55 +00007523NETWORK DROP MONITOR
7524M: Neil Horman <nhorman@tuxdriver.com>
7525L: netdev@vger.kernel.org
7526S: Maintained
7527W: https://fedorahosted.org/dropwatch/
7528F: net/core/drop_monitor.c
7529
Linus Torvalds1da177e2005-04-16 15:20:36 -07007530NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07007531M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07007532L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00007533W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00007534Q: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00007535T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7536T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007537S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007538F: net/
7539F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00007540F: include/linux/in.h
7541F: include/linux/net.h
7542F: include/linux/netdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007543F: include/uapi/linux/in.h
7544F: include/uapi/linux/net.h
7545F: include/uapi/linux/netdevice.h
Nicolas Dichtel0c7aecd2015-01-15 15:11:15 +01007546F: include/uapi/linux/net_namespace.h
Tobias Klauser7e814a62014-03-11 12:06:24 +01007547F: tools/net/
Daniel Borkmannf4e53f92014-03-13 10:18:53 +01007548F: tools/testing/selftests/net/
Sasha Levin335a67d2014-03-27 02:01:34 -04007549F: lib/random32.c
Daniel Borkmanna101ccd2014-06-10 12:31:10 +02007550F: lib/test_bpf.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007551
7552NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07007553M: "David S. Miller" <davem@davemloft.net>
7554M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07007555M: James Morris <jmorris@namei.org>
7556M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
7557M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07007558L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007559T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007560S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007561F: net/ipv4/
7562F: net/ipv6/
7563F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00007564F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007565
David S. Miller73b76562012-10-16 14:08:40 -04007566NETWORKING [IPSEC]
7567M: Steffen Klassert <steffen.klassert@secunet.com>
7568M: Herbert Xu <herbert@gondor.apana.org.au>
7569M: "David S. Miller" <davem@davemloft.net>
7570L: netdev@vger.kernel.org
Steffen Klassertd1fc5022013-12-13 12:56:05 +01007571T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
7572T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
David S. Miller73b76562012-10-16 14:08:40 -04007573S: Maintained
Fan Du5826bdd2014-01-18 09:55:28 +08007574F: net/core/flow.c
David S. Miller73b76562012-10-16 14:08:40 -04007575F: net/xfrm/
7576F: net/key/
7577F: net/ipv4/xfrm*
Steffen Klassertd1fc5022013-12-13 12:56:05 +01007578F: net/ipv4/esp4.c
7579F: net/ipv4/ah4.c
7580F: net/ipv4/ipcomp.c
7581F: net/ipv4/ip_vti.c
David S. Miller73b76562012-10-16 14:08:40 -04007582F: net/ipv6/xfrm*
Steffen Klassertd1fc5022013-12-13 12:56:05 +01007583F: net/ipv6/esp6.c
7584F: net/ipv6/ah6.c
7585F: net/ipv6/ipcomp6.c
7586F: net/ipv6/ip6_vti.c
David S. Miller73b76562012-10-16 14:08:40 -04007587F: include/uapi/linux/xfrm.h
7588F: include/net/xfrm.h
7589
James Morris10e2ff12007-08-25 14:41:28 -07007590NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00007591M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07007592L: netdev@vger.kernel.org
7593S: Maintained
7594
John W. Linville29f8f632006-01-18 14:52:48 -08007595NETWORKING [WIRELESS]
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08007596L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007597Q: http://patchwork.kernel.org/project/linux-wireless/list/
John W. Linville29f8f632006-01-18 14:52:48 -08007598
Joe Perches788873a2009-04-16 09:38:45 +00007599NETWORKING DRIVERS
7600L: netdev@vger.kernel.org
7601W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00007602Q: http://patchwork.ozlabs.org/project/netdev/list/
Joe Perches08deed12012-03-23 15:01:57 -07007603T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7604T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00007605S: Odd Fixes
7606F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00007607F: include/linux/if_*
Jean Delvare0b63bf12012-10-18 22:11:38 +02007608F: include/linux/netdevice.h
Jean Delvare0b63bf12012-10-18 22:11:38 +02007609F: include/linux/etherdevice.h
7610F: include/linux/fcdevice.h
7611F: include/linux/fddidevice.h
7612F: include/linux/hippidevice.h
7613F: include/linux/inetdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007614F: include/uapi/linux/if_*
7615F: include/uapi/linux/netdevice.h
Joe Perches788873a2009-04-16 09:38:45 +00007616
John W. Linville0e324cf2014-12-17 12:07:05 -05007617NETWORKING DRIVERS (WIRELESS)
7618M: Kalle Valo <kvalo@codeaurora.org>
7619L: linux-wireless@vger.kernel.org
7620Q: http://patchwork.kernel.org/project/linux-wireless/list/
Fengguang Wu9f273c22016-01-20 15:03:25 -08007621T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
7622T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
John W. Linville0e324cf2014-12-17 12:07:05 -05007623S: Maintained
7624F: drivers/net/wireless/
7625
Amit S. Kale3d396eb2006-10-21 15:33:03 -04007626NETXEN (1/10) GbE SUPPORT
Manish Chopra86223152013-03-28 23:54:08 +00007627M: Manish Chopra <manish.chopra@qlogic.com>
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07007628M: Sony Chacko <sony.chacko@qlogic.com>
7629M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04007630L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00007631W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04007632S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07007633F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04007634
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03007635NFC SUBSYSTEM
7636M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
7637M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
7638M: Samuel Ortiz <sameo@linux.intel.com>
7639L: linux-wireless@vger.kernel.org
Dan Carpenter1eb3b212014-08-11 13:14:25 +03007640L: linux-nfc@lists.01.org (subscribers-only)
Samuel Ortiz0293ba22013-06-24 14:39:35 +02007641S: Supported
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03007642F: net/nfc/
Ilan Elias55eb94f2011-09-18 11:19:34 +03007643F: include/net/nfc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007644F: include/uapi/linux/nfc.h
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03007645F: drivers/nfc/
Christophe Ricard397d6492015-12-23 23:45:21 +01007646F: include/linux/platform_data/microread.h
7647F: include/linux/platform_data/nfcmrvl.h
7648F: include/linux/platform_data/nxp-nci.h
Marcel Holtmann08eaa1e2012-10-24 11:45:38 -07007649F: include/linux/platform_data/pn544.h
Christophe Ricard397d6492015-12-23 23:45:21 +01007650F: include/linux/platform_data/st21nfca.h
7651F: include/linux/platform_data/st-nci.h
Mark A. Greer7ebb88e2014-03-10 11:56:25 -07007652F: Documentation/devicetree/bindings/net/nfc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007653
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04007654NFS, SUNRPC, AND LOCKD CLIENTS
Trond Myklebustcd7b9962013-12-04 12:29:49 -05007655M: Trond Myklebust <trond.myklebust@primarydata.com>
Trond Myklebust0e3b1372015-02-03 17:13:58 -05007656M: Anna Schumaker <anna.schumaker@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05007657L: linux-nfs@vger.kernel.org
7658W: http://client.linux-nfs.org
Trond Myklebustcd7b9962013-12-04 12:29:49 -05007659T: git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007660S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007661F: fs/lockd/
7662F: fs/nfs/
7663F: fs/nfs_common/
7664F: net/sunrpc/
7665F: include/linux/lockd/
7666F: include/linux/nfs*
7667F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007668F: include/uapi/linux/nfs*
7669F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007670
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07007671NILFS2 FILESYSTEM
Ryusuke Konishie2126932014-04-03 14:50:25 -07007672M: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09007673L: linux-nilfs@vger.kernel.org
Ryusuke Konishif9472262014-04-03 14:50:32 -07007674W: http://nilfs.sourceforge.net/
Ryusuke Konishie2126932014-04-03 14:50:25 -07007675T: git git://github.com/konis/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07007676S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007677F: Documentation/filesystems/nilfs2.txt
7678F: fs/nilfs2/
7679F: include/linux/nilfs2_fs.h
Ryusuke Konishic35c7ac2015-11-06 16:32:11 -08007680F: include/trace/events/nilfs2.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07007681
Linus Torvalds1da177e2005-04-16 15:20:36 -07007682NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007683M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007684W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7685S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007686F: Documentation/scsi/NinjaSCSI.txt
7687F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007688
7689NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007690M: GOTO Masanori <gotom@debian.or.jp>
7691M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007692W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7693S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007694F: Documentation/scsi/NinjaSCSI.txt
7695F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007696
Ley Foon Tan383b8fb2014-11-06 15:20:14 +08007697NIOS2 ARCHITECTURE
7698M: Ley Foon Tan <lftan@altera.com>
7699L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
Ley Foon Tan0094dc42015-09-08 01:50:05 +08007700T: git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
Ley Foon Tan383b8fb2014-11-06 15:20:14 +08007701S: Maintained
7702F: arch/nios2/
7703
Pali Rohár2a6afdd2015-03-29 15:35:54 +02007704NOKIA N900 POWER SUPPLY DRIVERS
7705M: Pali Rohár <pali.rohar@gmail.com>
7706S: Maintained
7707F: include/linux/power/bq2415x_charger.h
Andrew F. Davis081bab22015-09-22 14:35:06 -05007708F: include/linux/power/bq27xxx_battery.h
Pali Rohár2a6afdd2015-03-29 15:35:54 +02007709F: include/linux/power/isp1704_charger.h
7710F: drivers/power/bq2415x_charger.c
Andrew F. Davis081bab22015-09-22 14:35:06 -05007711F: drivers/power/bq27xxx_battery.c
Pali Rohár2a6afdd2015-03-29 15:35:54 +02007712F: drivers/power/isp1704_charger.c
7713F: drivers/power/rx51_battery.c
7714
Allen Hubbea1bd3ba2015-04-09 10:33:20 -04007715NTB DRIVER CORE
Jon Mason9ef6bf62014-06-19 10:44:24 -07007716M: Jon Mason <jdmason@kudzu.us>
7717M: Dave Jiang <dave.jiang@intel.com>
Allen Hubbea1bd3ba2015-04-09 10:33:20 -04007718M: Allen Hubbe <Allen.Hubbe@emc.com>
Jon Mason5e9fd732015-07-04 14:48:33 -04007719L: linux-ntb@googlegroups.com
Jon Masonfce8a7b2012-11-16 19:27:12 -07007720S: Supported
Jon Mason29844112013-07-30 16:29:48 -07007721W: https://github.com/jonmason/ntb/wiki
7722T: git git://github.com/jonmason/ntb.git
Jon Masonfce8a7b2012-11-16 19:27:12 -07007723F: drivers/ntb/
Jon Mason548c2372012-11-16 19:27:13 -07007724F: drivers/net/ntb_netdev.c
Jon Masonfce8a7b2012-11-16 19:27:12 -07007725F: include/linux/ntb.h
Allen Hubbea1bd3ba2015-04-09 10:33:20 -04007726F: include/linux/ntb_transport.h
Jon Masonfce8a7b2012-11-16 19:27:12 -07007727
Allen Hubbee26a5842015-04-09 10:33:20 -04007728NTB INTEL DRIVER
7729M: Jon Mason <jdmason@kudzu.us>
7730M: Dave Jiang <dave.jiang@intel.com>
Jon Mason5e9fd732015-07-04 14:48:33 -04007731L: linux-ntb@googlegroups.com
Allen Hubbee26a5842015-04-09 10:33:20 -04007732S: Supported
7733W: https://github.com/jonmason/ntb/wiki
7734T: git git://github.com/jonmason/ntb.git
7735F: drivers/ntb/hw/intel/
Joe Perches679655d2009-04-07 20:44:32 -07007736
Xiangliang Yua1b36952016-01-21 19:47:05 +08007737NTB AMD DRIVER
7738M: Xiangliang Yu <Xiangliang.Yu@amd.com>
7739L: linux-ntb@googlegroups.com
7740S: Supported
7741F: drivers/ntb/hw/amd/
7742
Linus Torvalds1da177e2005-04-16 15:20:36 -07007743NTFS FILESYSTEM
7744M: Anton Altaparmakov <anton@tuxera.com>
7745L: linux-ntfs-dev@lists.sourceforge.net
Adrian Bunk169ccbd2008-09-02 14:35:37 -07007746W: http://www.tuxera.com/
Josh Boyer1adc1232005-11-23 15:44:15 -08007747T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007748S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007749F: Documentation/filesystems/ntfs.txt
7750F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007751
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08007752NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007753M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01007754L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01007755S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09007756F: drivers/video/fbdev/riva/
7757F: drivers/video/fbdev/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007758
Matthew Wilcox79461682012-11-10 08:54:53 -05007759NVM EXPRESS DRIVER
Jay Freyenseeb3975e92015-10-28 16:37:51 +09007760M: Keith Busch <keith.busch@intel.com>
7761M: Jens Axboe <axboe@fb.com>
Matthew Wilcox79461682012-11-10 08:54:53 -05007762L: linux-nvme@lists.infradead.org
Jay Freyenseeb3975e92015-10-28 16:37:51 +09007763T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
7764W: https://kernel.googlesource.com/pub/scm/linux/kernel/git/axboe/linux-block/
Matthew Wilcox79461682012-11-10 08:54:53 -05007765S: Supported
Jay Sternberg57dacad2015-10-09 18:17:06 +02007766F: drivers/nvme/host/
Matthew Wilcox79461682012-11-10 08:54:53 -05007767F: include/linux/nvme.h
7768
Srinivas Kandagatlaaee4b9b2015-07-27 12:17:24 +01007769NVMEM FRAMEWORK
7770M: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
7771M: Maxime Ripard <maxime.ripard@free-electrons.com>
7772S: Maintained
7773F: drivers/nvmem/
7774F: Documentation/devicetree/bindings/nvmem/
7775F: include/linux/nvmem-consumer.h
7776F: include/linux/nvmem-provider.h
7777
Clément Perrochauddece4582015-03-09 11:12:04 +01007778NXP-NCI NFC DRIVER
7779M: Clément Perrochaud <clement.perrochaud@effinnov.com>
7780R: Charles Gorand <charles.gorand@effinnov.com>
7781L: linux-nfc@lists.01.org (moderated for non-subscribers)
7782S: Supported
7783F: drivers/nfc/nxp-nci
7784
Russell Kingf50d7142014-03-03 12:18:14 +00007785NXP TDA998X DRM DRIVER
7786M: Russell King <rmk+kernel@arm.linux.org.uk>
7787S: Supported
7788F: drivers/gpu/drm/i2c/tda998x_drv.c
7789F: include/drm/i2c/tda998x.h
7790
Peter Rosinfbace432014-11-08 14:40:17 +01007791NXP TFA9879 DRIVER
7792M: Peter Rosin <peda@axentia.se>
7793L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7794S: Maintained
7795F: sound/soc/codecs/tfa9879*
7796
Tony Lindgrenf5525782009-05-28 13:23:53 -07007797OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07007798M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007799L: linux-omap@vger.kernel.org
7800W: http://www.muru.com/linux/omap/
7801W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08007802Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02007803T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07007804S: Maintained
Felipe Contreras4e04d5a2009-09-21 17:04:25 -07007805F: arch/arm/*omap*/
Felipe Balbi026da812015-01-19 16:13:53 -06007806F: arch/arm/configs/omap1_defconfig
7807F: arch/arm/configs/omap2plus_defconfig
Jean Delvare046d0a32012-01-12 20:32:05 +01007808F: drivers/i2c/busses/i2c-omap.c
Felipe Balbidc68cd12014-11-06 08:37:19 -06007809F: drivers/irqchip/irq-omap-intc.c
7810F: drivers/mfd/*omap*.c
7811F: drivers/mfd/menelaus.c
7812F: drivers/mfd/palmas.c
7813F: drivers/mfd/tps65217.c
7814F: drivers/mfd/tps65218.c
7815F: drivers/mfd/tps65910.c
7816F: drivers/mfd/twl-core.[ch]
7817F: drivers/mfd/twl4030*.c
7818F: drivers/mfd/twl6030*.c
7819F: drivers/mfd/twl6040*.c
7820F: drivers/regulator/palmas-regulator*.c
7821F: drivers/regulator/pbias-regulator.c
7822F: drivers/regulator/tps65217-regulator.c
7823F: drivers/regulator/tps65218-regulator.c
7824F: drivers/regulator/tps65910-regulator.c
7825F: drivers/regulator/twl-regulator.c
Jean Delvare046d0a32012-01-12 20:32:05 +01007826F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07007827
Tony Lindgren50f29fb2012-12-16 11:29:59 -08007828OMAP DEVICE TREE SUPPORT
Benoit Coussoncdb55ab2013-08-09 23:19:15 +02007829M: Benoît Cousson <bcousson@baylibre.com>
Tony Lindgren50f29fb2012-12-16 11:29:59 -08007830M: Tony Lindgren <tony@atomide.com>
7831L: linux-omap@vger.kernel.org
Grant Likelyd0fb18c2013-07-19 20:10:12 -07007832L: devicetree@vger.kernel.org
Tony Lindgren50f29fb2012-12-16 11:29:59 -08007833S: Maintained
7834F: arch/arm/boot/dts/*omap*
7835F: arch/arm/boot/dts/*am3*
Nishanth Menon05eb20f2014-10-21 09:24:22 -05007836F: arch/arm/boot/dts/*am4*
7837F: arch/arm/boot/dts/*am5*
7838F: arch/arm/boot/dts/*dra7*
Tony Lindgren50f29fb2012-12-16 11:29:59 -08007839
Tony Lindgrenf5525782009-05-28 13:23:53 -07007840OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007841M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007842L: linux-omap@vger.kernel.org
7843S: Maintained
7844F: arch/arm/*omap*/*clock*
7845
7846OMAP POWER MANAGEMENT SUPPORT
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08007847M: Kevin Hilman <khilman@deeprootsystems.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007848L: linux-omap@vger.kernel.org
7849S: Maintained
7850F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07007851F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07007852
Joe Perchesd21db562013-09-11 14:23:35 -07007853OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
Paul Walmsley692ab1f2011-03-09 18:44:28 -07007854M: Rajendra Nayak <rnayak@ti.com>
7855M: Paul Walmsley <paul@pwsan.com>
7856L: linux-omap@vger.kernel.org
7857S: Maintained
Joe Perchesd21db562013-09-11 14:23:35 -07007858F: arch/arm/mach-omap2/prm*
Paul Walmsley692ab1f2011-03-09 18:44:28 -07007859
Tony Lindgrenf5525782009-05-28 13:23:53 -07007860OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03007861M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03007862M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Jim Davise5747e42015-06-25 15:01:58 -07007863L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Tony Lindgrenf5525782009-05-28 13:23:53 -07007864L: linux-omap@vger.kernel.org
7865S: Maintained
7866F: sound/soc/omap/
7867
Tony Lindgren18640192014-11-20 09:13:42 -08007868OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
7869M: Roger Quadros <rogerq@ti.com>
7870M: Tony Lindgren <tony@atomide.com>
7871L: linux-omap@vger.kernel.org
7872S: Maintained
7873F: drivers/memory/omap-gpmc.c
7874F: arch/arm/mach-omap2/*gpmc*
7875
Tony Lindgrenf5525782009-05-28 13:23:53 -07007876OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02007877M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01007878L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07007879L: linux-omap@vger.kernel.org
7880S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09007881F: drivers/video/fbdev/omap/
Tony Lindgrenf5525782009-05-28 13:23:53 -07007882
Tomi Valkeinen676eec02010-01-07 13:18:04 +02007883OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02007884M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03007885L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02007886L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03007887S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09007888F: drivers/video/fbdev/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03007889F: Documentation/arm/OMAP/DSS
7890
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03007891OMAP HARDWARE SPINLOCK SUPPORT
7892M: Ohad Ben-Cohen <ohad@wizery.com>
7893L: linux-omap@vger.kernel.org
7894S: Maintained
7895F: drivers/hwspinlock/omap_hwspinlock.c
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03007896
Tony Lindgrenf5525782009-05-28 13:23:53 -07007897OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007898M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007899L: linux-omap@vger.kernel.org
7900S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07007901F: drivers/mmc/host/omap.c
7902
7903OMAP HS MMC SUPPORT
Venkatraman S0a4585c2012-08-17 23:59:53 +05307904L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07007905L: linux-omap@vger.kernel.org
Balaji T Kdfa5d192014-09-17 22:50:11 +05307906S: Orphan
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07007907F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07007908
7909OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007910M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007911S: Maintained
7912F: drivers/char/hw_random/omap-rng.c
7913
Paul Walmsleyf400c822010-12-06 19:08:54 -07007914OMAP HWMOD SUPPORT
Benoit Coussoncdb55ab2013-08-09 23:19:15 +02007915M: Benoît Cousson <bcousson@baylibre.com>
Paul Walmsleyf400c822010-12-06 19:08:54 -07007916M: Paul Walmsley <paul@pwsan.com>
7917L: linux-omap@vger.kernel.org
7918S: Maintained
Zhang Yanfei8fc8b122013-01-11 14:32:03 -08007919F: arch/arm/mach-omap2/omap_hwmod.*
Paul Walmsleyf400c822010-12-06 19:08:54 -07007920
Paul Walmsley8633fb32015-01-19 23:49:50 -07007921OMAP HWMOD DATA
7922M: Paul Walmsley <paul@pwsan.com>
7923L: linux-omap@vger.kernel.org
7924S: Maintained
7925F: arch/arm/mach-omap2/omap_hwmod*data*
7926
Paul Walmsleyf400c822010-12-06 19:08:54 -07007927OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
Benoit Coussoncdb55ab2013-08-09 23:19:15 +02007928M: Benoît Cousson <bcousson@baylibre.com>
Paul Walmsleyf400c822010-12-06 19:08:54 -07007929L: linux-omap@vger.kernel.org
7930S: Maintained
7931F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
7932
Laurent Pinchart0db83ce2014-06-06 12:08:59 -03007933OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03007934M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7935L: linux-media@vger.kernel.org
7936S: Maintained
Sakari Ailus7eec52d2015-03-19 01:50:22 +02007937F: Documentation/devicetree/bindings/media/ti,omap3isp.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007938F: drivers/media/platform/omap3isp/
Laurent Pinchart0db83ce2014-06-06 12:08:59 -03007939F: drivers/staging/media/omap4iss/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03007940
Tony Lindgrenf5525782009-05-28 13:23:53 -07007941OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03007942M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007943L: linux-usb@vger.kernel.org
7944L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03007945T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07007946S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07007947F: drivers/usb/*/*omap*
7948F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07007949
Kevin Hilman6d994712012-07-16 10:05:07 -07007950OMAP GPIO DRIVER
Javier Martinez Canillasfe643522015-11-13 10:35:29 -03007951M: Grygorii Strashko <grygorii.strashko@ti.com>
Santosh Shilimkar97215802014-10-13 14:16:28 -04007952M: Santosh Shilimkar <ssantosh@kernel.org>
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08007953M: Kevin Hilman <khilman@deeprootsystems.com>
Kevin Hilman6d994712012-07-16 10:05:07 -07007954L: linux-omap@vger.kernel.org
7955S: Maintained
Javier Martinez Canillasfe643522015-11-13 10:35:29 -03007956F: Documentation/devicetree/bindings/gpio/gpio-omap.txt
Kevin Hilman6d994712012-07-16 10:05:07 -07007957F: drivers/gpio/gpio-omap.c
7958
Mark Jacksonc351e292013-10-04 09:15:01 +01007959OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
7960M: Mark Jackson <mpfj@newflow.co.uk>
7961L: linux-omap@vger.kernel.org
7962S: Maintained
7963F: arch/arm/boot/dts/am335x-nano.dts
7964
Bob Copeland0ad122d2008-07-25 19:45:18 -07007965OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007966M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07007967L: linux-karma-devel@lists.sourceforge.net
7968S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007969F: Documentation/filesystems/omfs.txt
7970F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07007971
Harald Weltec1986ee2005-11-13 16:06:29 -08007972OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007973M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08007974S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007975F: drivers/char/pcmcia/cm4000_cs.c
7976F: include/linux/cm4000_cs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007977F: include/uapi/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08007978
Harald Welte77c44ab2005-11-13 16:06:26 -08007979OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007980M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08007981S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007982F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08007983
Jonathan Corbet77d51402007-03-22 19:44:17 -03007984OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007985M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007986L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02007987T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03007988S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007989F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03007990
Thomas Gleixner431bca72007-05-02 09:31:35 +02007991ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007992M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02007993L: linux-mtd@lists.infradead.org
7994S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007995F: drivers/mtd/onenand/
7996F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02007997
Linus Torvalds1da177e2005-04-16 15:20:36 -07007998ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007999M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008000L: osst-users@lists.sourceforge.net
8001L: linux-scsi@vger.kernel.org
8002S: Maintained
Jean Delvaref7269cf2013-07-03 15:05:08 -07008003F: Documentation/scsi/osst.txt
8004F: drivers/scsi/osst.*
8005F: drivers/scsi/osst_*.h
8006F: drivers/scsi/st.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008007
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008008OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008009M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01008010L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008011S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008012F: Documentation/i2c/busses/i2c-ocores
8013F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008014
Grant Likely860c44c2009-10-26 16:49:49 -07008015OPEN FIRMWARE AND FLATTENED DEVICE TREE
Rob Herring5d3ad8a2013-12-03 10:20:16 -06008016M: Rob Herring <robh+dt@kernel.org>
Grant Likelyc8fb70a2015-08-23 13:34:08 -07008017M: Frank Rowand <frowand.list@gmail.com>
8018M: Grant Likely <grant.likely@linaro.org>
Grant Likelyd0fb18c2013-07-19 20:10:12 -07008019L: devicetree@vger.kernel.org
Rob Herringa7fefe92014-12-26 14:05:54 -06008020W: http://www.devicetree.org/
8021T: git git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux.git
Grant Likely860c44c2009-10-26 16:49:49 -07008022S: Maintained
Grant Likelyf8828202013-07-19 18:57:39 -07008023F: drivers/of/
Grant Likely860c44c2009-10-26 16:49:49 -07008024F: include/linux/of*.h
Grant Likelyf8828202013-07-19 18:57:39 -07008025F: scripts/dtc/
Grant Likely860c44c2009-10-26 16:49:49 -07008026
Grant Likelyf8828202013-07-19 18:57:39 -07008027OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
Rob Herring5d3ad8a2013-12-03 10:20:16 -06008028M: Rob Herring <robh+dt@kernel.org>
Grant Likelyf8828202013-07-19 18:57:39 -07008029M: Pawel Moll <pawel.moll@arm.com>
8030M: Mark Rutland <mark.rutland@arm.com>
Ian Campbellde809632013-08-30 09:50:42 +01008031M: Ian Campbell <ijc+devicetree@hellion.org.uk>
Kumar Galabdbff6b2013-08-08 10:51:15 -05008032M: Kumar Gala <galak@codeaurora.org>
Grant Likelyf8828202013-07-19 18:57:39 -07008033L: devicetree@vger.kernel.org
Fengguang Wu9f273c22016-01-20 15:03:25 -08008034T: git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
Grant Likelyf8828202013-07-19 18:57:39 -07008035S: Maintained
8036F: Documentation/devicetree/
8037F: arch/*/boot/dts/
8038F: include/dt-bindings/
8039
Pantelis Antoniou2bb65f52015-03-17 22:30:57 +02008040OPEN FIRMWARE AND DEVICE TREE OVERLAYS
8041M: Pantelis Antoniou <pantelis.antoniou@konsulko.com>
8042L: devicetree@vger.kernel.org
8043S: Maintained
8044F: Documentation/devicetree/dynamic-resolution-notes.txt
8045F: Documentation/devicetree/overlay-notes.txt
8046F: drivers/of/overlay.c
8047F: drivers/of/resolver.c
8048
Jonas Bonn19f9d392011-06-04 22:00:38 +03008049OPENRISC ARCHITECTURE
8050M: Jonas Bonn <jonas@southpole.se>
8051W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02008052L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03008053S: Maintained
8054T: git git://openrisc.net/~jonas/linux
Joe Perches14430812013-09-11 14:23:50 -07008055F: arch/openrisc/
Jonas Bonn19f9d392011-06-04 22:00:38 +03008056
Jesse Grossccb13522011-10-25 19:26:31 -07008057OPENVSWITCH
Jesse Gross4f337ed2014-05-16 15:57:59 -07008058M: Pravin Shelar <pshelar@nicira.com>
Pravin B Shelarb422da72015-01-02 11:18:21 -08008059L: netdev@vger.kernel.org
Jesse Grossccb13522011-10-25 19:26:31 -07008060L: dev@openvswitch.org
8061W: http://openvswitch.org
Jesse Grossccb13522011-10-25 19:26:31 -07008062S: Maintained
8063F: net/openvswitch/
Pravin B Shelarb422da72015-01-02 11:18:21 -08008064F: include/uapi/linux/openvswitch.h
Jesse Grossccb13522011-10-25 19:26:31 -07008065
Viresh Kumar875fa6f2015-11-20 15:57:27 -08008066OPERATING PERFORMANCE POINTS (OPP)
8067M: Viresh Kumar <vireshk@kernel.org>
8068M: Nishanth Menon <nm@ti.com>
8069M: Stephen Boyd <sboyd@codeaurora.org>
8070L: linux-pm@vger.kernel.org
8071S: Maintained
8072T: git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
8073F: drivers/base/power/opp/
8074F: include/linux/pm_opp.h
8075F: Documentation/power/opp.txt
8076F: Documentation/devicetree/bindings/opp/
8077
Clemens Ladischaf399172011-01-10 16:32:54 +01008078OPL4 DRIVER
8079M: Clemens Ladisch <clemens@ladisch.de>
8080L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8081T: git git://git.alsa-project.org/alsa-kernel.git
8082S: Maintained
8083F: sound/drivers/opl4/
8084
Linus Torvalds1da177e2005-04-16 15:20:36 -07008085OPROFILE
Robert Richter4cf7e712012-10-29 18:53:25 +01008086M: Robert Richter <rric@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008087L: oprofile-list@lists.sf.net
8088S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02008089F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07008090F: arch/*/oprofile/
8091F: drivers/oprofile/
8092F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008093
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008094ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07008095M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08008096M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008097L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
Mark Fasheh01945fa2015-02-27 15:51:40 -08008098W: http://ocfs2.wiki.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008099S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008100F: Documentation/filesystems/ocfs2.txt
8101F: Documentation/filesystems/dlmfs.txt
8102F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008103
Linus Torvalds1da177e2005-04-16 15:20:36 -07008104ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07008105L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02008106W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07008107W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01008108S: Orphan
Kalle Valo2be45b62015-11-18 09:57:18 +02008109F: drivers/net/wireless/intersil/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008110
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03008111OSD LIBRARY and FILESYSTEM
Boaz Harroshfadc0752014-10-19 19:19:57 +03008112M: Boaz Harrosh <ooo@electrozaur.com>
Benny Halevyf1f66302014-02-10 11:57:29 +02008113M: Benny Halevy <bhalevy@primarydata.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02008114L: osd-dev@open-osd.org
8115W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07008116T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02008117S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03008118F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07008119F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03008120F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02008121
Miklos Szeredief94b182014-11-20 16:39:59 +01008122OVERLAY FILESYSTEM
Neil Brown7c37fbd2014-10-24 00:14:39 +02008123M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi1d113732014-11-20 16:40:01 +01008124L: linux-unionfs@vger.kernel.org
8125T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
Neil Brown7c37fbd2014-10-24 00:14:39 +02008126S: Supported
Miklos Szeredi1d113732014-11-20 16:40:01 +01008127F: fs/overlayfs/
Neil Brown7c37fbd2014-10-24 00:14:39 +02008128F: Documentation/filesystems/overlayfs.txt
8129
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008130P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02008131M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008132L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02008133W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008134S: Maintained
Kalle Valod3466832015-11-18 09:49:59 +02008135F: drivers/net/wireless/intersil/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008136
Olof Johanssonf5cd7872007-01-31 21:43:54 -06008137PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008138M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06008139L: netdev@vger.kernel.org
8140S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07008141F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06008142
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01008143PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008144M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01008145L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01008146S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008147F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01008148
Steffen Klassert48fc2672010-08-13 10:10:46 -04008149PADATA PARALLEL EXECUTION MECHANISM
8150M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04008151L: linux-crypto@vger.kernel.org
8152S: Maintained
8153F: kernel/padata.c
8154F: include/linux/padata.h
8155F: Documentation/padata.txt
8156
Harald Welte709ee532008-09-23 17:46:57 +02008157PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008158M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05008159L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02008160S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008161F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02008162
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01008163PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07008164M: David Howells <dhowells@redhat.com>
8165M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01008166L: linux-am33-list@redhat.com (moderated for non-subscribers)
8167W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
8168S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008169F: Documentation/mn10300/
8170F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01008171
Sudip Mukherjee64dfff02015-05-20 20:57:02 +05308172PARALLEL PORT SUBSYSTEM
8173M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
8174M: Sudip Mukherjee <sudip@vectorindia.org>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07008175L: linux-parport@lists.infradead.org (subscribers-only)
Sudip Mukherjee64dfff02015-05-20 20:57:02 +05308176S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008177F: drivers/parport/
8178F: include/linux/parport*.h
8179F: drivers/char/ppdev.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008180F: include/uapi/linux/ppdev.h
Sudip Mukherjee64dfff02015-05-20 20:57:02 +05308181F: Documentation/parport*.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07008182
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008183PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08008184M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07008185M: Chris Wright <chrisw@sous-sol.org>
8186M: Alok Kataria <akataria@vmware.com>
8187M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00008188L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008189S: Supported
Luis R. Rodrigueza2e19992015-02-13 17:13:40 +10308190F: Documentation/virtual/paravirt_ops.txt
Joe Perches679655d2009-04-07 20:44:32 -07008191F: arch/*/kernel/paravirt*
8192F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008193
Linus Torvalds1da177e2005-04-16 15:20:36 -07008194PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07008195M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07008196L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008197S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008198F: Documentation/blockdev/paride.txt
8199F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008200
8201PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00008202M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05008203M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00008204L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008205W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08008206Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07008207T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Helge Dellerfbb46caa2013-05-16 21:00:16 +00008208T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008209S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008210F: arch/parisc/
Helge Deller2b6bac92013-05-30 13:48:07 +00008211F: Documentation/parisc/
Joe Perches679655d2009-04-07 20:44:32 -07008212F: drivers/parisc/
Helge Deller2b6bac92013-05-30 13:48:07 +00008213F: drivers/char/agp/parisc-agp.c
8214F: drivers/input/serio/gscps2.c
8215F: drivers/parport/parport_gsc.*
8216F: drivers/tty/serial/8250/8250_gsc.c
Jingoo Han8a61f012014-07-01 15:36:01 +09008217F: drivers/video/fbdev/sti*
Helge Deller2b6bac92013-05-30 13:48:07 +00008218F: drivers/video/console/sti*
8219F: drivers/video/logo/logo_parisc*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008220
Jim Cromie1662d322006-10-06 00:43:59 -07008221PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008222M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07008223L: lm-sensors@lm-sensors.org
8224S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008225F: Documentation/hwmon/pc87360
8226F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07008227
8228PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008229M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07008230S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008231F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07008232
Jean Delvare1ad107f2010-08-14 21:09:00 +02008233PC87427 HARDWARE MONITORING DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07008234M: Jean Delvare <jdelvare@suse.com>
Jean Delvare1ad107f2010-08-14 21:09:00 +02008235L: lm-sensors@lm-sensors.org
8236S: Maintained
8237F: Documentation/hwmon/pc87427
8238F: drivers/hwmon/pc87427.c
8239
Riku Voipiob26e0ed2009-03-03 21:37:17 +02008240PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008241M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02008242S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07008243F: drivers/leds/leds-pca9532.c
8244F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02008245
Guenter Roeck5ce914a2010-10-24 18:16:59 +02008246PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07008247M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02008248L: linux-i2c@vger.kernel.org
8249S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02008250F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02008251
Khalid Aziz3971dae2012-04-12 12:49:13 -07008252PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07008253M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07008254S: Maintained
8255F: drivers/firmware/pcdp.*
8256
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06008257PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07008258M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07008259L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06008260S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008261F: Documentation/PCI/pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06008262
Linus Torvalds1da177e2005-04-16 15:20:36 -07008263PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07008264M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07008265L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06008266Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06008267T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008268S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008269F: Documentation/PCI/
8270F: drivers/pci/
8271F: include/linux/pci*
Bjorn Helgaas6b49ee42013-10-09 14:39:08 -06008272F: arch/x86/pci/
Bjorn Helgaascad01f92014-04-05 15:07:00 -06008273F: arch/x86/kernel/quirks.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008274
Ley Foon Taneaa61112015-10-23 18:27:12 +08008275PCI DRIVER FOR ALTERA PCIE IP
8276M: Ley Foon Tan <lftan@altera.com>
8277L: rfi@lists.rocketboards.org (moderated for non-subscribers)
8278L: linux-pci@vger.kernel.org
8279S: Supported
8280F: Documentation/devicetree/bindings/pci/altera-pcie.txt
8281F: drivers/pci/host/pcie-altera.c
8282
Rob Herringb7e78172015-01-28 10:16:18 -06008283PCI DRIVER FOR ARM VERSATILE PLATFORM
8284M: Rob Herring <robh@kernel.org>
8285L: linux-pci@vger.kernel.org
8286L: linux-arm-kernel@lists.infradead.org
8287S: Maintained
8288F: Documentation/devicetree/bindings/pci/versatile.txt
8289F: drivers/pci/host/pci-versatile.c
8290
Tanmay Inamdar5f6b6cc2014-10-01 13:01:35 -06008291PCI DRIVER FOR APPLIEDMICRO XGENE
8292M: Tanmay Inamdar <tinamdar@apm.com>
8293L: linux-pci@vger.kernel.org
8294L: linux-arm-kernel@lists.infradead.org
8295S: Maintained
8296F: Documentation/devicetree/bindings/pci/xgene-pci.txt
8297F: drivers/pci/host/pci-xgene.c
8298
Minghuan Lian62d0ff832014-11-05 16:45:11 +08008299PCI DRIVER FOR FREESCALE LAYERSCAPE
8300M: Minghuan Lian <minghuan.Lian@freescale.com>
8301M: Mingkai Hu <mingkai.hu@freescale.com>
8302M: Roy Zang <tie-fei.zang@freescale.com>
8303L: linuxppc-dev@lists.ozlabs.org
8304L: linux-pci@vger.kernel.org
8305L: linux-arm-kernel@lists.infradead.org
8306S: Maintained
8307F: drivers/pci/host/*layerscape*
8308
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008309PCI DRIVER FOR IMX6
Lucas Stachf175aa22015-01-19 11:17:31 +01008310M: Richard Zhu <Richard.Zhu@freescale.com>
Lucas Stach1ba55f52014-07-31 20:16:04 +02008311M: Lucas Stach <l.stach@pengutronix.de>
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008312L: linux-pci@vger.kernel.org
8313L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8314S: Maintained
8315F: drivers/pci/host/*imx6*
8316
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -06008317PCI DRIVER FOR TI KEYSTONE
8318M: Murali Karicheri <m-karicheri2@ti.com>
8319L: linux-pci@vger.kernel.org
8320L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8321S: Maintained
8322F: drivers/pci/host/*keystone*
8323
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008324PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
8325M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8326M: Jason Cooper <jason@lakedaemon.net>
8327L: linux-pci@vger.kernel.org
8328L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8329S: Maintained
8330F: drivers/pci/host/*mvebu*
8331
Thierry Reding0447cfd2013-08-09 16:49:32 +02008332PCI DRIVER FOR NVIDIA TEGRA
8333M: Thierry Reding <thierry.reding@gmail.com>
8334L: linux-tegra@vger.kernel.org
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008335L: linux-pci@vger.kernel.org
Thierry Reding0447cfd2013-08-09 16:49:32 +02008336S: Supported
8337F: Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
8338F: drivers/pci/host/pci-tegra.c
8339
Kishon Vijay Abraham I47ff3de2014-07-22 15:23:45 -06008340PCI DRIVER FOR TI DRA7XX
8341M: Kishon Vijay Abraham I <kishon@ti.com>
8342L: linux-omap@vger.kernel.org
8343L: linux-pci@vger.kernel.org
8344S: Supported
8345F: Documentation/devicetree/bindings/pci/ti-pci.txt
8346F: drivers/pci/host/pci-dra7xx.c
8347
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008348PCI DRIVER FOR RENESAS R-CAR
8349M: Simon Horman <horms@verge.net.au>
8350L: linux-pci@vger.kernel.org
Simon Horman4a121092016-01-18 10:04:33 +09008351L: linux-renesas-soc@vger.kernel.org
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008352S: Maintained
8353F: drivers/pci/host/*rcar*
8354
Jingoo Han4af82252013-09-12 20:29:24 +09008355PCI DRIVER FOR SAMSUNG EXYNOS
Jingoo Hanb7701752015-05-14 15:17:07 -07008356M: Jingoo Han <jingoohan1@gmail.com>
Jingoo Han4af82252013-09-12 20:29:24 +09008357L: linux-pci@vger.kernel.org
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008358L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8359L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Jingoo Han4af82252013-09-12 20:29:24 +09008360S: Maintained
8361F: drivers/pci/host/pci-exynos.c
8362
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008363PCI DRIVER FOR SYNOPSIS DESIGNWARE
Jingoo Hanb7701752015-05-14 15:17:07 -07008364M: Jingoo Han <jingoohan1@gmail.com>
Pratyush Anand110baab2015-04-30 09:46:07 +05308365M: Pratyush Anand <pratyush.anand@gmail.com>
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008366L: linux-pci@vger.kernel.org
8367S: Maintained
8368F: drivers/pci/host/*designware*
8369
Will Deaconcf288552014-05-01 12:04:28 +01008370PCI DRIVER FOR GENERIC OF HOSTS
8371M: Will Deacon <will.deacon@arm.com>
8372L: linux-pci@vger.kernel.org
8373L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8374S: Maintained
8375F: Documentation/devicetree/bindings/pci/host-generic-pci.txt
8376F: drivers/pci/host/pci-host-generic.c
8377
Keith Busch185a3832016-01-12 13:18:10 -07008378PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
8379M: Keith Busch <keith.busch@intel.com>
8380L: linux-pci@vger.kernel.org
8381S: Supported
8382F: arch/x86/pci/vmd.c
8383
Pratyush Anand51b66a62014-02-11 11:39:26 +05308384PCIE DRIVER FOR ST SPEAR13XX
Pratyush Anand110baab2015-04-30 09:46:07 +05308385M: Pratyush Anand <pratyush.anand@gmail.com>
Pratyush Anand51b66a62014-02-11 11:39:26 +05308386L: linux-pci@vger.kernel.org
Pratyush Anand110baab2015-04-30 09:46:07 +05308387S: Maintained
Pratyush Anand51b66a62014-02-11 11:39:26 +05308388F: drivers/pci/host/*spear*
8389
Ley Foon Tanaf1169b2015-10-23 18:27:13 +08008390PCI MSI DRIVER FOR ALTERA MSI IP
8391M: Ley Foon Tan <lftan@altera.com>
8392L: rfi@lists.rocketboards.org (moderated for non-subscribers)
8393L: linux-pci@vger.kernel.org
8394S: Supported
8395F: Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
8396F: drivers/pci/host/pcie-altera-msi.c
8397
Duc Dangdcd19de2015-06-05 15:56:34 -05008398PCI MSI DRIVER FOR APPLIEDMICRO XGENE
8399M: Duc Dang <dhdang@apm.com>
8400L: linux-pci@vger.kernel.org
8401L: linux-arm-kernel@lists.infradead.org
8402S: Maintained
8403F: Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
8404F: drivers/pci/host/pci-xgene-msi.c
8405
Zhou Wang500a1d92015-10-29 20:02:51 -05008406PCIE DRIVER FOR HISILICON
8407M: Zhou Wang <wangzhou1@hisilicon.com>
Gabriele Paoloni5930fe42015-11-27 01:17:05 +08008408M: Gabriele Paoloni <gabriele.paoloni@huawei.com>
Zhou Wang500a1d92015-10-29 20:02:51 -05008409L: linux-pci@vger.kernel.org
8410S: Maintained
8411F: Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
8412F: drivers/pci/host/pcie-hisi.c
8413
Stanimir Varbanov82a82382015-12-18 14:38:57 +02008414PCIE DRIVER FOR QUALCOMM MSM
8415M: Stanimir Varbanov <svarbanov@mm-sol.com>
8416L: linux-pci@vger.kernel.org
8417L: linux-arm-msm@vger.kernel.org
8418S: Maintained
8419F: drivers/pci/host/*qcom*
8420
Linus Torvalds1da177e2005-04-16 15:20:36 -07008421PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07008422P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07008423L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08008424W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Fengguang Wu9f273c22016-01-20 15:03:25 -08008425T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07008426S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008427F: Documentation/pcmcia/
8428F: drivers/pcmcia/
8429F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008430
8431PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08008432M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07008433L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008434S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07008435F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008436
Steffen Klassert48fc2672010-08-13 10:10:46 -04008437PCRYPT PARALLEL CRYPTO ENGINE
8438M: Steffen Klassert <steffen.klassert@secunet.com>
8439L: linux-crypto@vger.kernel.org
8440S: Maintained
8441F: crypto/pcrypt.c
8442F: include/crypto/pcrypt.h
8443
Tejun Heoe72df0b2010-12-10 17:02:49 +01008444PER-CPU MEMORY ALLOCATOR
8445M: Tejun Heo <tj@kernel.org>
8446M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01008447T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
8448S: Maintained
8449F: include/linux/percpu*.h
8450F: mm/percpu*.c
8451F: arch/*/include/asm/percpu.h
8452
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07008453PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07008454M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07008455S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008456F: include/linux/delayacct.h
8457F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07008458
Ingo Molnar57c0c152009-09-21 12:20:38 +02008459PERFORMANCE EVENTS SUBSYSTEM
Peter Zijlstradaecbd2672015-11-16 11:07:44 +01008460M: Peter Zijlstra <peterz@infradead.org>
Ingo Molnardd9b2382012-03-19 21:03:46 +01008461M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melof80c5392014-03-27 17:36:14 -03008462M: Arnaldo Carvalho de Melo <acme@kernel.org>
Ingo Molnar981c3a42014-01-21 10:59:20 +01008463L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008464T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10008465S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09008466F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02008467F: include/linux/perf_event.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008468F: include/uapi/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01008469F: arch/*/kernel/perf_event*.c
8470F: arch/*/kernel/*/perf_event*.c
8471F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02008472F: arch/*/include/asm/perf_event.h
Vincent Legolla0032362009-10-13 14:48:14 +02008473F: arch/*/kernel/perf_callchain.c
8474F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10008475
Jim Cromiedd49d0f2006-03-24 18:08:17 +01008476PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07008477M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01008478L: linux-abi-devel@lists.sourceforge.net
8479S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008480F: include/linux/personality.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008481F: include/uapi/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01008482
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00008483PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00008484M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00008485S: Supported
8486F: Documentation/networking/phonet.txt
8487F: include/linux/phonet.h
8488F: include/net/phonet/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008489F: include/uapi/linux/phonet.h
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00008490F: net/phonet/
8491
Linus Torvalds1da177e2005-04-16 15:20:36 -07008492PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008493M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008494L: linux-mtd@lists.infradead.org
8495S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008496F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008497
Bruno Prémontefdbb102012-07-30 21:39:03 +02008498PICOLCD HID DRIVER
8499M: Bruno Prémont <bonbons@linux-vserver.org>
8500L: linux-input@vger.kernel.org
8501S: Maintained
8502F: drivers/hid/hid-picolcd*
8503
Jamie Ilesa53bfa02011-12-12 20:28:42 +00008504PICOXCELL SUPPORT
8505M: Jamie Iles <jamie@jamieiles.com>
8506L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8507T: git git://github.com/jamieiles/linux-2.6-ji.git
8508S: Supported
Joe Perchesb8733982014-08-08 14:25:12 -07008509F: arch/arm/boot/dts/picoxcell*
Joe Perches14430812013-09-11 14:23:50 -07008510F: arch/arm/mach-picoxcell/
Joe Perchesb8733982014-08-08 14:25:12 -07008511F: drivers/crypto/picoxcell*
Jamie Ilesa53bfa02011-12-12 20:28:42 +00008512
Linus Walleij2744e8a2011-05-02 20:50:54 +02008513PIN CONTROL SUBSYSTEM
8514M: Linus Walleij <linus.walleij@linaro.org>
David Cohenc11f0422014-10-16 19:06:59 -07008515L: linux-gpio@vger.kernel.org
Linus Walleijdbe752a2015-01-19 11:27:19 +01008516T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
Linus Walleij2744e8a2011-05-02 20:50:54 +02008517S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07008518F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02008519F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02008520
Jean-Christophe PLAGNIOL-VILLARD2201bbb2012-10-27 19:53:12 +02008521PIN CONTROLLER - ATMEL AT91
8522M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
8523L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8524S: Maintained
Alexandre Bellonic654b6b2014-10-17 11:49:40 +02008525F: drivers/pinctrl/pinctrl-at91.*
Jean-Christophe PLAGNIOL-VILLARD2201bbb2012-10-27 19:53:12 +02008526
Ludovic Desroches33d36902015-09-16 17:36:59 +02008527PIN CONTROLLER - ATMEL AT91 PIO4
8528M: Ludovic Desroches <ludovic.desroches@atmel.com>
8529L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8530L: linux-gpio@vger.kernel.org
8531S: Supported
8532F: drivers/pinctrl/pinctrl-at91-pio4.*
8533
Mika Westerbergcbd1b652014-10-24 15:16:53 +03008534PIN CONTROLLER - INTEL
8535M: Mika Westerberg <mika.westerberg@linux.intel.com>
8536M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
8537S: Maintained
8538F: drivers/pinctrl/intel/
Viresh Kumardeda8282012-03-28 22:27:07 +05308539
Laurent Pinchart9963b532014-07-02 16:33:31 +02008540PIN CONTROLLER - RENESAS
8541M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Geert Uytterhoeven1a4ca6d2015-12-16 08:47:11 +01008542M: Geert Uytterhoeven <geert+renesas@glider.be>
Simon Horman4a121092016-01-18 10:04:33 +09008543L: linux-renesas-soc@vger.kernel.org
Laurent Pinchart9963b532014-07-02 16:33:31 +02008544S: Maintained
8545F: drivers/pinctrl/sh-pfc/
8546
Doug Andersonb75e60d2013-06-16 15:17:46 -07008547PIN CONTROLLER - SAMSUNG
Tomasz Figafea685e2014-08-26 16:30:53 +02008548M: Tomasz Figa <tomasz.figa@gmail.com>
Doug Andersonb75e60d2013-06-16 15:17:46 -07008549L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8550L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8551S: Maintained
Sachin Kamat9b5b33f2014-07-11 14:29:50 +05308552F: drivers/pinctrl/samsung/
Doug Andersonb75e60d2013-06-16 15:17:46 -07008553
Tony Lindgren13cbd902015-12-10 14:27:32 -08008554PIN CONTROLLER - SINGLE
8555M: Tony Lindgren <tony@atomide.com>
8556M: Haojian Zhuang <haojian.zhuang@linaro.org>
8557L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8558L: linux-omap@vger.kernel.org
8559S: Maintained
8560F: drivers/pinctrl/pinctrl-single.c
8561
Viresh Kumardeda8282012-03-28 22:27:07 +05308562PIN CONTROLLER - ST SPEAR
Viresh Kumarda899472015-07-17 16:23:50 -07008563M: Viresh Kumar <vireshk@kernel.org>
Viresh Kumardeda8282012-03-28 22:27:07 +05308564L: spear-devel@list.st.com
8565L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8566W: http://www.st.com/spear
8567S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02008568F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05308569
Peter Osterlund249a6772005-09-27 21:45:30 -07008570PKTCDVD DRIVER
Jiri Kosinae5f64502015-08-09 09:11:34 +02008571M: Jiri Kosina <jikos@kernel.org>
Peter Osterlund249a6772005-09-27 21:45:30 -07008572S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008573F: drivers/block/pktcdvd.c
8574F: include/linux/pktcdvd.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008575F: include/uapi/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07008576
GuanXuetaob31d8272011-01-16 00:35:49 +08008577PKUNITY SOC DRIVERS
8578M: Guan Xuetao <gxt@mprc.pku.edu.cn>
8579W: http://mprc.pku.edu.cn/~guanxuetao/linux
8580S: Maintained
Guan Xuetaoceebf4d2014-05-27 07:53:10 +08008581T: git git://github.com/gxt/linux.git
GuanXuetaob31d8272011-01-16 00:35:49 +08008582F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08008583F: drivers/i2c/busses/i2c-puv3.c
Jingoo Han8a61f012014-07-01 15:36:01 +09008584F: drivers/video/fbdev/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08008585F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08008586
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07008587PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07008588M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07008589L: lm-sensors@lm-sensors.org
8590W: http://www.lm-sensors.org/
8591W: http://www.roeck-us.net/linux/drivers/
8592T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8593S: Maintained
8594F: Documentation/hwmon/pmbus
8595F: drivers/hwmon/pmbus/
8596F: include/linux/i2c/pmbus.h
8597
Anil Ravindranath89a36812009-08-25 17:35:18 -07008598PMC SIERRA MaxRAID DRIVER
Anil Ravindranath89a36812009-08-25 17:35:18 -07008599L: linux-scsi@vger.kernel.org
8600W: http://www.pmc-sierra.com/
Joe Perches3cdea4d712015-09-09 15:36:14 -07008601S: Orphan
Anil Ravindranath89a36812009-08-25 17:35:18 -07008602F: drivers/scsi/pmcraid.*
8603
jack wangdbf9bfe2009-10-14 16:19:21 +08008604PMC SIERRA PM8001 DRIVER
Jack Wangd32477e2015-07-29 12:02:50 +02008605M: Jack Wang <jinpu.wang@profitbricks.com>
jack wangdbf9bfe2009-10-14 16:19:21 +08008606M: lindar_liu@usish.com
Suresh Thiagarajanf5a7b522014-07-30 17:37:43 +05308607L: pmchba@pmcs.com
jack wangdbf9bfe2009-10-14 16:19:21 +08008608L: linux-scsi@vger.kernel.org
8609S: Supported
8610F: drivers/scsi/pm8001/
8611
Linus Torvalds1da177e2005-04-16 15:20:36 -07008612POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07008613M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar981c3a42014-01-21 10:59:20 +01008614L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008615T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner5cee9642014-06-22 12:06:40 +02008616S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008617F: fs/timerfd.c
8618F: include/linux/timer*
Thomas Gleixner5cee9642014-06-22 12:06:40 +02008619F: kernel/time/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008620
Rafael J. Wysocki7b06a6d2015-12-05 01:54:47 +01008621POWER MANAGEMENT CORE
8622M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
8623L: linux-pm@vger.kernel.org
8624T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
8625S: Supported
8626F: drivers/base/power/
8627F: include/linux/pm.h
8628F: include/linux/pm_*
8629F: include/linux/powercap.h
8630F: drivers/powercap/
8631
Anton Vorontsov3be86142007-07-15 04:43:36 +04008632POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Sebastian Reichelad8464a2014-07-16 20:14:30 +02008633M: Sebastian Reichel <sre@kernel.org>
Dmitry Eremin-Solenikov57318932014-01-21 03:33:09 +04008634M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008635M: David Woodhouse <dwmw2@infradead.org>
Sebastian Reichelad8464a2014-07-16 20:14:30 +02008636L: linux-pm@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07008637T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04008638S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008639F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07008640F: drivers/power/
Sebastian Reichel26305022015-07-24 23:11:28 +02008641X: drivers/power/avs/
Anton Vorontsov3be86142007-07-15 04:43:36 +04008642
Mark Rutland514f1612015-07-31 15:46:20 +01008643POWER STATE COORDINATION INTERFACE (PSCI)
8644M: Mark Rutland <mark.rutland@arm.com>
8645M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
8646L: linux-arm-kernel@lists.infradead.org
8647S: Maintained
8648F: drivers/firmware/psci.c
8649F: include/linux/psci.h
8650F: include/uapi/linux/psci.h
8651
Linus Torvalds1da177e2005-04-16 15:20:36 -07008652PNP SUPPORT
Joe Perches9c3646d2015-06-25 15:02:00 -07008653M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008654S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008655F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008656
8657PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07008658M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008659L: linux-ppp@vger.kernel.org
8660S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07008661F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008662
8663PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07008664M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008665S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008666F: net/atm/pppoatm.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008667F: include/uapi/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008668
8669PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07008670M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008671S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07008672F: drivers/net/ppp/pppoe.c
8673F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008674
James Chapmana6d23702007-06-27 15:53:17 -07008675PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07008676M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07008677S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07008678F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07008679F: include/linux/if_pppol2tp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008680F: include/uapi/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07008681
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07008682PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07008683M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07008684W: http://wiki.enneenne.com/index.php/LinuxPPS_support
8685L: linuxpps@ml.enneenne.com (subscribers-only)
8686S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07008687F: Documentation/pps/
8688F: drivers/pps/
8689F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07008690
Harry Wei71a6d0a2011-05-11 15:13:33 -07008691PPTP DRIVER
8692M: Dmitry Kozlov <xeb@mail.ru>
8693L: netdev@vger.kernel.org
8694S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07008695F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07008696W: http://sourceforge.net/projects/accel-pptp
8697
Linus Torvalds1da177e2005-04-16 15:20:36 -07008698PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07008699M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008700L: kpreempt-tech@lists.sourceforge.net
8701W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
8702S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008703F: Documentation/preempt-locking.txt
8704F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008705
8706PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008707M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07008708L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04008709W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04008710S: Obsolete
Kalle Valoc12edfe2015-11-18 09:56:45 +02008711F: drivers/net/wireless/intersil/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008712
Masakazu Mokuno02c18892007-07-05 20:11:16 +09008713PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00008714M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09008715L: netdev@vger.kernel.org
Michael Ellermana14ab6b2015-05-01 13:20:25 +10008716L: linuxppc-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00008717S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07008718F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09008719
Geoff Levandf58a9d12006-11-23 00:46:51 +01008720PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00008721M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10008722L: linuxppc-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00008723S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008724F: arch/powerpc/boot/ps3*
8725F: arch/powerpc/include/asm/lv1call.h
8726F: arch/powerpc/include/asm/ps3*.h
8727F: arch/powerpc/platforms/ps3/
8728F: drivers/*/ps3*
8729F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00008730F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07008731F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00008732F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01008733
Jim Pariscffb4add2009-01-06 11:32:10 +00008734PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008735M: Jim Paris <jim@jtan.com>
Geoff Levand3715a5d2015-06-10 18:00:18 +00008736M: Geoff Levand <geoff@infradead.org>
Michael Ellermana14ab6b2015-05-01 13:20:25 +10008737L: linuxppc-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00008738S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07008739F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00008740
Anton Vorontsov8defe592012-08-03 18:07:20 -07008741PSTORE FILESYSTEM
Anton Vorontsov9d5e2a02013-06-09 09:41:23 -07008742M: Anton Vorontsov <anton@enomsg.org>
Anton Vorontsov8defe592012-08-03 18:07:20 -07008743M: Colin Cross <ccross@android.com>
8744M: Kees Cook <keescook@chromium.org>
8745M: Tony Luck <tony.luck@intel.com>
8746S: Maintained
Fengguang Wu9f273c22016-01-20 15:03:25 -08008747T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Anton Vorontsov8defe592012-08-03 18:07:20 -07008748F: fs/pstore/
8749F: include/linux/pstore*
Matt Fleming04851772013-02-08 15:48:51 +00008750F: drivers/firmware/efi/efi-pstore.c
Anton Vorontsov8defe592012-08-03 18:07:20 -07008751F: drivers/acpi/apei/erst.c
8752
Richard Cochran7fbc4152012-03-10 01:55:53 +00008753PTP HARDWARE CLOCK SUPPORT
8754M: Richard Cochran <richardcochran@gmail.com>
Jiri Bence7333e32013-03-26 04:01:12 +00008755L: netdev@vger.kernel.org
Richard Cochran7fbc4152012-03-10 01:55:53 +00008756S: Maintained
8757W: http://linuxptp.sourceforge.net/
8758F: Documentation/ABI/testing/sysfs-ptp
8759F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07008760F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00008761F: drivers/net/phy/dp83640*
8762F: drivers/ptp/*
8763F: include/linux/ptp_cl*
8764
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07008765PTRACE SUPPORT
Richard Weinbergere846ee52014-08-08 14:23:46 -07008766M: Roland McGrath <roland@hack.frob.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008767M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07008768S: Maintained
8769F: include/asm-generic/syscall.h
8770F: include/linux/ptrace.h
8771F: include/linux/regset.h
8772F: include/linux/tracehook.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008773F: include/uapi/linux/ptrace.h
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07008774F: kernel/ptrace.c
8775
Michael Krufky83202042006-07-03 00:24:18 -07008776PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008777M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03008778L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008779L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07008780W: http://www.isely.net/pvrusb2/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008781T: git git://linuxtv.org/media_tree.git
Michael Krufky83202042006-07-03 00:24:18 -07008782S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008783F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008784F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07008785
Hans de Goede39532e62012-11-04 17:05:59 -03008786PWC WEBCAM DRIVER
8787M: Hans de Goede <hdegoede@redhat.com>
8788L: linux-media@vger.kernel.org
8789T: git git://linuxtv.org/media_tree.git
8790S: Maintained
8791F: drivers/media/usb/pwc/*
8792
Kamil Debski93c090b2014-08-20 11:29:23 +02008793PWM FAN DRIVER
8794M: Kamil Debski <k.debski@samsung.com>
8795L: lm-sensors@lm-sensors.org
8796S: Supported
8797F: Documentation/devicetree/bindings/hwmon/pwm-fan.txt
8798F: Documentation/hwmon/pwm-fan
8799F: drivers/hwmon/pwm-fan.c
8800
Thierry Reding200efed2012-03-27 13:16:18 +02008801PWM SUBSYSTEM
Thierry Redingaa3495f2013-05-06 12:50:36 +02008802M: Thierry Reding <thierry.reding@gmail.com>
8803L: linux-pwm@vger.kernel.org
Sascha Hauer0c2498f2011-01-28 09:40:40 +01008804S: Maintained
Thierry Reding006e8542013-11-01 11:15:05 +01008805T: git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
Thierry Reding200efed2012-03-27 13:16:18 +02008806F: Documentation/pwm.txt
8807F: Documentation/devicetree/bindings/pwm/
8808F: include/linux/pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01008809F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07008810F: drivers/video/backlight/pwm_bl.c
8811F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01008812
Eric Miao30ec2612008-06-12 15:21:41 -07008813PXA2xx/PXA3xx SUPPORT
Robert Jarzmik8da5e302014-09-24 23:08:00 +02008814M: Daniel Mack <daniel@zonque.org>
Haojian Zhuanga323f662012-03-14 18:33:07 +08008815M: Haojian Zhuang <haojian.zhuang@gmail.com>
Robert Jarzmik8da5e302014-09-24 23:08:00 +02008816M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -07008817L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08008818T: git git://github.com/hzhuang1/linux.git
Robert Jarzmik8da5e302014-09-24 23:08:00 +02008819T: git git://github.com/rjarzmik/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008820S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008821F: arch/arm/mach-pxa/
Robert Jarzmik820439f2015-05-25 23:29:19 +02008822F: drivers/dma/pxa*
Joe Perches679655d2009-04-07 20:44:32 -07008823F: drivers/pcmcia/pxa2xx*
Robert Jarzmik1403ead2015-11-21 19:04:48 +01008824F: drivers/pinctrl/pxa/
Joe Perches9df92e62012-01-10 15:09:06 -08008825F: drivers/spi/spi-pxa2xx*
Joe Perchesfaf2e1d2014-08-08 14:26:18 -07008826F: drivers/usb/gadget/udc/pxa2*
Joe Perches679655d2009-04-07 20:44:32 -07008827F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01008828F: sound/arm/pxa*
Joe Perches14430812013-09-11 14:23:50 -07008829F: sound/soc/pxa/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008830
Robert Jarzmikf3154a42015-12-18 22:41:34 +01008831PXA GPIO DRIVER
8832M: Robert Jarzmik <robert.jarzmik@free.fr>
8833L: linux-gpio@vger.kernel.org
8834S: Maintained
8835F: drivers/gpio/gpio-pxa.c
8836
Ezequiel Garciaec64d3b2013-12-04 15:28:46 -08008837PXA3xx NAND FLASH DRIVER
8838M: Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
8839L: linux-mtd@lists.infradead.org
8840S: Maintained
Joe Perches9a67f092014-08-08 14:25:10 -07008841F: drivers/mtd/nand/pxa3xx_nand.c
Ezequiel Garciaec64d3b2013-12-04 15:28:46 -08008842
Haojian Zhuang3f640c62011-12-09 09:58:41 +08008843MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07008844M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08008845M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08008846L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08008847T: git git://github.com/hzhuang1/linux.git
8848T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08008849S: Maintained
Haojian Zhuang3f640c62011-12-09 09:58:41 +08008850F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08008851
Pierre Ossman272f1332007-05-14 21:25:26 +02008852PXA MMCI DRIVER
8853S: Orphan
8854
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08008855PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008856M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08008857L: rtc-linux@googlegroups.com
8858S: Maintained
8859
Tadeusz Strukcea40012014-06-05 13:44:39 -07008860QAT DRIVER
Joe Perches49e7d9d2015-04-15 16:17:31 -07008861M: Tadeusz Struk <tadeusz.struk@intel.com>
8862L: qat-linux@intel.com
8863S: Supported
8864F: drivers/crypto/qat/
Tadeusz Strukcea40012014-06-05 13:44:39 -07008865
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07008866QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04008867M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07008868L: linux-rdma@vger.kernel.org
8869S: Supported
8870F: drivers/infiniband/hw/qib/
8871
Jes Sorensen5e9772b2010-06-30 15:37:38 +02008872QLOGIC QLA1280 SCSI DRIVER
8873M: Michael Reed <mdr@sgi.com>
8874L: linux-scsi@vger.kernel.org
8875S: Maintained
8876F: drivers/scsi/qla1280.[ch]
8877
Linus Torvalds1da177e2005-04-16 15:20:36 -07008878QLOGIC QLA2XXX FC-SCSI DRIVER
Saurav Kashyap2c804eb2013-10-30 03:38:28 -04008879M: qla2xxx-upstream@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07008880L: linux-scsi@vger.kernel.org
8881S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008882F: Documentation/scsi/LICENSE.qla2xxx
8883F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008884
Ravi Anand883c98f2010-04-28 11:45:49 +05308885QLOGIC QLA4XXX iSCSI DRIVER
Nilesh Javali1018b8b2015-01-07 00:49:23 -05008886M: QLogic-Storage-Upstream@qlogic.com
Ravi Anand883c98f2010-04-28 11:45:49 +05308887L: linux-scsi@vger.kernel.org
8888S: Supported
Vikas Chaudharybacfb812013-07-11 02:09:43 -04008889F: Documentation/scsi/LICENSE.qla4xxx
Ravi Anand883c98f2010-04-28 11:45:49 +05308890F: drivers/scsi/qla4xxx/
8891
Ron Mercer5a4faa82006-07-25 00:40:21 -07008892QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00008893M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008894M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa82006-07-25 00:40:21 -07008895M: linux-driver@qlogic.com
8896L: netdev@vger.kernel.org
8897S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008898F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07008899F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa82006-07-25 00:40:21 -07008900
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00008901QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Shahed Shaikh9f35a3c2014-08-27 12:43:21 -04008902M: Dept-GELinuxNICDev@qlogic.com
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00008903L: netdev@vger.kernel.org
8904S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07008905F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00008906
Ron Mercerc4e84bd2008-09-18 11:56:28 -04008907QLOGIC QLGE 10Gb ETHERNET DRIVER
Harish Patilc9b1a5b2014-09-18 17:27:25 -04008908M: Harish Patil <harish.patil@qlogic.com>
8909M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
8910M: Dept-GELinuxNICDev@qlogic.com
Joe Perches4cbfbe22009-07-29 15:04:21 -07008911M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04008912L: netdev@vger.kernel.org
8913S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07008914F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04008915
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02008916QLOGIC QL4xxx ETHERNET DRIVER
8917M: Yuval Mintz <Yuval.Mintz@qlogic.com>
8918M: Ariel Elior <Ariel.Elior@qlogic.com>
8919M: everest-linux-l2@qlogic.com
8920L: netdev@vger.kernel.org
8921S: Supported
8922F: drivers/net/ethernet/qlogic/qed/
8923F: include/linux/qed/
8924F: drivers/net/ethernet/qlogic/qede/
8925
Linus Torvalds1da177e2005-04-16 15:20:36 -07008926QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008927M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008928W: http://www.alarsen.net/linux/qnx4fs/
8929S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07008930F: fs/qnx4/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008931F: include/uapi/linux/qnx4_fs.h
8932F: include/uapi/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008933
Antti Palosaari91952bc2012-10-01 12:28:46 -03008934QT1010 MEDIA DRIVER
8935M: Antti Palosaari <crope@iki.fi>
8936L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02008937W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03008938W: http://palosaari.fi/linux/
8939Q: http://patchwork.linuxtv.org/project/linux-media/list/
8940T: git git://linuxtv.org/anttip/media_tree.git
8941S: Maintained
8942F: drivers/media/tuners/qt1010*
8943
Sujith Manoharan966fb5e2013-11-06 10:43:27 +05308944QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
8945M: QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
8946L: linux-wireless@vger.kernel.org
8947L: ath9k-devel@lists.ath9k.org
8948W: http://wireless.kernel.org/en/users/Drivers/ath9k
8949S: Supported
8950F: drivers/net/wireless/ath/ath9k/
8951
Kalle Valo2ea0ffc2013-07-22 12:22:19 +03008952QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
8953M: Kalle Valo <kvalo@qca.qualcomm.com>
8954L: ath10k@lists.infradead.org
8955W: http://wireless.kernel.org/en/users/Drivers/ath10k
Fengguang Wu9f273c22016-01-20 15:03:25 -08008956T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
Kalle Valo2ea0ffc2013-07-22 12:22:19 +03008957S: Supported
8958F: drivers/net/wireless/ath/ath10k/
8959
Richard Kuo4f4567c2011-10-31 18:56:38 -05008960QUALCOMM HEXAGON ARCHITECTURE
8961M: Richard Kuo <rkuo@codeaurora.org>
8962L: linux-hexagon@vger.kernel.org
Fengguang Wu9f273c22016-01-20 15:03:25 -08008963T: git git://git.kernel.org/pub/scm/linux/kernel/git/rkuo/linux-hexagon-kernel.git
Richard Kuo4f4567c2011-10-31 18:56:38 -05008964S: Supported
8965F: arch/hexagon/
8966
Eugene Krasnikov8e84c252013-10-08 21:25:58 +01008967QUALCOMM WCN36XX WIRELESS DRIVER
8968M: Eugene Krasnikov <k.eugene.e@gmail.com>
8969L: wcn36xx@lists.infradead.org
8970W: http://wireless.kernel.org/en/users/Drivers/wcn36xx
8971T: git git://github.com/KrasnikovEugene/wcn36xx.git
8972S: Supported
8973F: drivers/net/wireless/ath/wcn36xx/
8974
Yehuda Sadeh602adf42010-08-12 16:11:25 -07008975RADOS BLOCK DEVICE (RBD)
Sage Weil0f5417c2015-02-19 10:10:40 -08008976M: Ilya Dryomov <idryomov@gmail.com>
8977M: Sage Weil <sage@redhat.com>
Alex Elder527a88b2013-12-26 08:37:43 -06008978M: Alex Elder <elder@kernel.org>
Sage Weil398ecff52015-07-09 11:46:14 -04008979L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07008980W: http://ceph.com/
8981T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil6e67b7a2015-07-09 11:47:37 -04008982T: git git://github.com/ceph/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07008983S: Supported
Sage Weil398ecff52015-07-09 11:46:14 -04008984F: Documentation/ABI/testing/sysfs-bus-rbd
Yehuda Sadeh602adf42010-08-12 16:11:25 -07008985F: drivers/block/rbd.c
8986F: drivers/block/rbd_types.h
8987
Linus Torvalds1da177e2005-04-16 15:20:36 -07008988RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008989M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008990L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008991S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09008992F: drivers/video/fbdev/aty/radeon*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008993F: include/uapi/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008994
Hans de Goedec6c9b342012-11-04 17:03:58 -03008995RADIOSHARK RADIO DRIVER
8996M: Hans de Goede <hdegoede@redhat.com>
8997L: linux-media@vger.kernel.org
8998T: git git://linuxtv.org/media_tree.git
8999S: Maintained
9000F: drivers/media/radio/radio-shark.c
9001
9002RADIOSHARK2 RADIO DRIVER
9003M: Hans de Goede <hdegoede@redhat.com>
9004L: linux-media@vger.kernel.org
9005T: git git://linuxtv.org/media_tree.git
9006S: Maintained
9007F: drivers/media/radio/radio-shark2.c
9008F: drivers/media/radio/radio-tea5777.c
9009
Linus Torvalds1da177e2005-04-16 15:20:36 -07009010RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009011M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01009012L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07009013S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09009014F: drivers/video/fbdev/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07009015
John Crispina0fd81a2016-01-04 20:28:13 +01009016RALINK MIPS ARCHITECTURE
9017M: John Crispin <blogic@openwrt.org>
9018L: linux-mips@linux-mips.org
9019S: Maintained
9020F: arch/mips/ralink
9021
Randy Dunlape7839f22008-10-12 16:11:45 -07009022RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07009023P: rt2x00 project
Stanislaw Gruszkab1824272014-09-28 14:03:06 +02009024M: Stanislaw Gruszka <sgruszka@redhat.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01009025M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07009026L: linux-wireless@vger.kernel.org
Ivo van Doorn95ea3622007-09-25 17:57:13 -07009027S: Maintained
Kalle Valo33aca942015-11-18 10:18:44 +02009028F: drivers/net/wireless/ralink/rt2x00/
Ivo van Doorn95ea3622007-09-25 17:57:13 -07009029
Nick Piggin9db55792008-02-08 04:19:49 -08009030RAMDISK RAM BLOCK DEVICE DRIVER
Ross Zwislerea7618e2015-03-17 12:56:30 -06009031M: Jens Axboe <axboe@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08009032S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009033F: Documentation/blockdev/ramdisk.txt
9034F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08009035
Matt Mackall9e95ce22005-04-16 15:25:56 -07009036RANDOM NUMBER DRIVER
Christoph Hellwig0624bca2014-04-25 01:12:01 -07009037M: "Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07009038S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009039F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07009040
Matt Porter394b7012005-11-07 01:00:15 -08009041RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07009042M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08009043M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08009044S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009045F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08009046
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009047RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009048L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04009049S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07009050F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009051
9052RCUTORTURE MODULE
Josh Triplette0198b22014-07-30 16:08:42 -07009053M: Josh Triplett <josh@joshtriplett.org>
Joe Perches8b58be82009-07-29 15:04:30 -07009054M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +01009055L: linux-kernel@vger.kernel.org
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08009056S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07009057T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07009058F: Documentation/RCU/torture.txt
Joe Perches34e2d562014-07-03 15:08:00 -07009059F: kernel/rcu/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009060
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -07009061RCUTORTURE TEST FRAMEWORK
9062M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyab0afd62014-06-03 08:17:06 -07009063M: Josh Triplett <josh@joshtriplett.org>
Paul E. McKenney4632a192014-05-30 15:37:24 -07009064R: Steven Rostedt <rostedt@goodmis.org>
9065R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Lai Jiangshan96a39bc2015-07-01 15:26:27 +08009066R: Lai Jiangshan <jiangshanlai@gmail.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +01009067L: linux-kernel@vger.kernel.org
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -07009068S: Supported
9069T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9070F: tools/testing/selftests/rcutorture
9071
Florian Fainellic1f766b2008-02-06 22:39:44 +01009072RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07009073M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01009074S: Maintained
9075
Florian Fainellidb17f392007-12-19 11:30:30 +01009076RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009077M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f392007-12-19 11:30:30 +01009078L: netdev@vger.kernel.org
9079S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07009080F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01009081
Andy Grovera09ed662009-02-24 15:30:41 +00009082RDS - RELIABLE DATAGRAM SOCKETS
Venkat Venkatsubra8a85ac42014-01-30 13:28:47 -08009083M: Chien Yen <chien.yen@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00009084L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00009085S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009086F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00009087
Josh Triplett595182b2006-10-04 02:17:21 -07009088READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07009089M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyab0afd62014-06-03 08:17:06 -07009090M: Josh Triplett <josh@joshtriplett.org>
Paul E. McKenney4632a192014-05-30 15:37:24 -07009091R: Steven Rostedt <rostedt@goodmis.org>
9092R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Lai Jiangshan96a39bc2015-07-01 15:26:27 +08009093R: Lai Jiangshan <jiangshanlai@gmail.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +01009094L: linux-kernel@vger.kernel.org
Paul E. McKenney9fab97872012-05-07 09:36:34 -07009095W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07009096S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07009097T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08009098F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07009099X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08009100F: include/linux/rcu*
Paul E. McKenney4102ada2013-10-08 20:23:47 -07009101X: include/linux/srcu.h
9102F: kernel/rcu/
Joe Perches34e2d562014-07-03 15:08:00 -07009103X: kernel/torture.c
Josh Triplett595182b2006-10-04 02:17:21 -07009104
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08009105REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07009106M: Alessandro Zummo <a.zummo@towertech.it>
Alexandre Belloni7c6f84f2015-04-16 12:45:43 -07009107M: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Alessandro Zummo76465492006-12-10 02:19:06 -08009108L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08009109Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alexandre Belloni4733f392015-05-26 11:13:04 +02009110T: git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08009111S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009112F: Documentation/rtc.txt
9113F: drivers/rtc/
9114F: include/linux/rtc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009115F: include/uapi/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08009116
Mark Brown0e400c52014-07-31 12:38:31 +01009117REALTEK AUDIO CODECS
9118M: Bard Liao <bardliao@realtek.com>
9119M: Oder Chiou <oder_chiou@realtek.com>
9120S: Maintained
9121F: sound/soc/codecs/rt*
9122F: include/sound/rt*.h
9123
Linus Torvalds1da177e2005-04-16 15:20:36 -07009124REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07009125L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07009126S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009127F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009128
Mark Brownb83a3132011-05-11 19:59:58 +02009129REGISTER MAP ABSTRACTION
Mark Brownb02e48f2013-04-12 11:39:57 +01009130M: Mark Brown <broonie@kernel.org>
Mark Browndd060bc2014-08-16 12:30:58 +01009131L: linux-kernel@vger.kernel.org
Mark Brownb83a3132011-05-11 19:59:58 +02009132T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
9133S: Supported
9134F: drivers/base/regmap/
9135F: include/linux/regmap.h
9136
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02009137REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
9138M: Ohad Ben-Cohen <ohad@wizery.com>
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03009139T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02009140S: Maintained
9141F: drivers/remoteproc/
9142F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07009143F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02009144
Ohad Ben-Cohend8115db2013-04-16 20:34:49 +03009145REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
9146M: Ohad Ben-Cohen <ohad@wizery.com>
9147T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
9148S: Maintained
9149F: drivers/rpmsg/
9150F: Documentation/rpmsg.txt
9151F: include/linux/rpmsg.h
9152
Sergei Shtylyov8e6569a2015-12-05 04:50:48 +03009153RENESAS ETHERNET DRIVERS
9154R: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
9155L: netdev@vger.kernel.org
Simon Horman4a121092016-01-18 10:04:33 +09009156L: linux-renesas-soc@vger.kernel.org
Sergei Shtylyov8e6569a2015-12-05 04:50:48 +03009157F: drivers/net/ethernet/renesas/
9158F: include/linux/sh_eth.h
9159
Yoshihiro Shimoda3e46c392015-11-30 10:44:33 +09009160RENESAS USB2 PHY DRIVER
9161M: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
Simon Horman4a121092016-01-18 10:04:33 +09009162L: linux-renesas-soc@vger.kernel.org
Yoshihiro Shimoda3e46c392015-11-30 10:44:33 +09009163S: Maintained
9164F: drivers/phy/phy-rcar-gen3-usb2.c
9165
Philipp Zabel1b0fe6b2014-05-27 15:58:09 +02009166RESET CONTROLLER FRAMEWORK
9167M: Philipp Zabel <p.zabel@pengutronix.de>
Fengguang Wu9f273c22016-01-20 15:03:25 -08009168T: git git://git.pengutronix.de/git/pza/linux
Philipp Zabel1b0fe6b2014-05-27 15:58:09 +02009169S: Maintained
9170F: drivers/reset/
9171F: Documentation/devicetree/bindings/reset/
Philipp Zabelb2f6dd72015-02-13 12:14:40 +01009172F: include/dt-bindings/reset/
Philipp Zabel1b0fe6b2014-05-27 15:58:09 +02009173F: include/linux/reset.h
9174F: include/linux/reset-controller.h
9175
Ivo van Doorne08976452008-04-12 19:23:55 +02009176RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07009177M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02009178L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02009179W: http://wireless.kernel.org/
9180T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
9181T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02009182S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08009183F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07009184F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02009185
Thomas Graf933685c2015-01-13 01:01:24 +01009186RHASHTABLE
9187M: Thomas Graf <tgraf@suug.ch>
9188L: netdev@vger.kernel.org
9189S: Maintained
9190F: lib/rhashtable.c
9191F: include/linux/rhashtable.h
9192
Maxim Levitsky67e054e2010-02-22 20:39:42 +02009193RICOH SMARTMEDIA/XD DRIVER
9194M: Maxim Levitsky <maximlevitsky@gmail.com>
9195S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07009196F: drivers/mtd/nand/r852.c
9197F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02009198
Maxim Levitsky92634122011-03-25 01:56:59 -07009199RICOH R5C592 MEMORYSTICK DRIVER
9200M: Maxim Levitsky <maximlevitsky@gmail.com>
9201S: Maintained
9202F: drivers/memstick/host/r592.*
9203
Stefan Achatz27f1d2f2013-09-05 06:36:01 +02009204ROCCAT DRIVERS
9205M: Stefan Achatz <erazor_de@users.sourceforge.net>
9206W: http://sourceforge.net/projects/roccat/
9207S: Maintained
9208F: drivers/hid/hid-roccat*
9209F: include/linux/hid-roccat*
9210F: Documentation/ABI/*/sysfs-driver-hid-roccat*
9211
Jiri Pirko4b8ac962014-11-28 14:34:26 +01009212ROCKER DRIVER
9213M: Jiri Pirko <jiri@resnulli.us>
9214M: Scott Feldman <sfeldma@gmail.com>
9215L: netdev@vger.kernel.org
9216S: Supported
9217F: drivers/net/ethernet/rocker/
9218
Linus Torvalds1da177e2005-04-16 15:20:36 -07009219ROCKETPORT DRIVER
9220P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009221W: http://www.comtrol.com
9222S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009223F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07009224F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009225
Kevin Cernekee7645c2f2014-10-21 15:23:06 -07009226ROCKETPORT EXPRESS/INFINITY DRIVER
9227M: Kevin Cernekee <cernekee@gmail.com>
9228L: linux-serial@vger.kernel.org
9229S: Odd Fixes
9230F: drivers/tty/serial/rp2.*
9231
Linus Torvalds1da177e2005-04-16 15:20:36 -07009232ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07009233M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009234L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02009235W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009236S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009237F: include/net/rose.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009238F: include/uapi/linux/rose.h
Joe Perches679655d2009-04-07 20:44:32 -07009239F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009240
Antti Palosaari91952bc2012-10-01 12:28:46 -03009241RTL2830 MEDIA DRIVER
9242M: Antti Palosaari <crope@iki.fi>
9243L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009244W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03009245W: http://palosaari.fi/linux/
9246Q: http://patchwork.linuxtv.org/project/linux-media/list/
9247T: git git://linuxtv.org/anttip/media_tree.git
9248S: Maintained
9249F: drivers/media/dvb-frontends/rtl2830*
9250
Antti Palosaari27a0aac2013-04-09 20:30:43 -03009251RTL2832 MEDIA DRIVER
9252M: Antti Palosaari <crope@iki.fi>
9253L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009254W: https://linuxtv.org
Antti Palosaari27a0aac2013-04-09 20:30:43 -03009255W: http://palosaari.fi/linux/
9256Q: http://patchwork.linuxtv.org/project/linux-media/list/
9257T: git git://linuxtv.org/anttip/media_tree.git
9258S: Maintained
9259F: drivers/media/dvb-frontends/rtl2832*
9260
Antti Palosaariba6e6f62014-02-03 00:00:32 -03009261RTL2832_SDR MEDIA DRIVER
9262M: Antti Palosaari <crope@iki.fi>
9263L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009264W: https://linuxtv.org
Antti Palosaariba6e6f62014-02-03 00:00:32 -03009265W: http://palosaari.fi/linux/
9266Q: http://patchwork.linuxtv.org/project/linux-media/list/
9267T: git git://linuxtv.org/anttip/media_tree.git
9268S: Maintained
Antti Palosaarib4bb1c22014-07-14 21:19:29 -03009269F: drivers/media/dvb-frontends/rtl2832_sdr*
Antti Palosaariba6e6f62014-02-03 00:00:32 -03009270
Larry Finger59840482008-11-12 17:13:09 -06009271RTL8180 WIRELESS DRIVER
Michael Wu605bebe2007-05-14 01:41:02 -04009272L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02009273W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07009274T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
John W. Linville7be6ff62014-12-04 16:52:41 -05009275S: Orphan
Kalle Valo62141722015-11-18 10:09:24 +02009276F: drivers/net/wireless/realtek/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04009277
Larry Finger59840482008-11-12 17:13:09 -06009278RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03009279M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07009280M: Hin-Tak Leung <htl10@users.sourceforge.net>
9281M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07009282L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02009283W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07009284T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07009285S: Maintained
Kalle Valo62141722015-11-18 10:09:24 +02009286F: drivers/net/wireless/realtek/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06009287
Larry Finger3cf0c8a2010-12-16 09:13:21 -06009288RTL8192CE WIRELESS DRIVER
9289M: Larry Finger <Larry.Finger@lwfinger.net>
9290M: Chaoming Li <chaoming_li@realsil.com.cn>
9291L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02009292W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06009293T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9294S: Maintained
Kalle Valo62141722015-11-18 10:09:24 +02009295F: drivers/net/wireless/realtek/rtlwifi/
9296F: drivers/net/wireless/realtek/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02009297
Jes Sorensen26f1fad2015-10-14 20:44:51 -04009298RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
9299M: Jes Sorensen <Jes.Sorensen@redhat.com>
9300L: linux-wireless@vger.kernel.org
9301T: git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8723au-mac80211
9302S: Maintained
9303F: drivers/net/wireless/realtek/rtl8xxxu/
9304
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08009305S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009306M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01009307L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08009308S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09009309F: drivers/video/fbdev/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08009310
Linus Torvalds1da177e2005-04-16 15:20:36 -07009311S390
Joe Perches8b58be82009-07-29 15:04:30 -07009312M: Martin Schwidefsky <schwidefsky@de.ibm.com>
9313M: Heiko Carstens <heiko.carstens@de.ibm.com>
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01009314L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08009315W: http://www.ibm.com/developerworks/linux/linux390/
Fengguang Wu9f273c22016-01-20 15:03:25 -08009316T: git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
Heiko Carstens5238da42006-02-11 17:56:01 -08009317S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009318F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01009319F: drivers/s390/
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02009320F: Documentation/s390/
9321F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08009322
Sebastian Ott322986c2014-02-17 15:16:30 +01009323S390 COMMON I/O LAYER
9324M: Sebastian Ott <sebott@linux.vnet.ibm.com>
9325M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
9326L: linux-s390@vger.kernel.org
9327W: http://www.ibm.com/developerworks/linux/linux390/
9328S: Supported
9329F: drivers/s390/cio/
9330
9331S390 DASD DRIVER
9332M: Stefan Weinhuber <wein@de.ibm.com>
9333M: Stefan Haberland <stefan.haberland@de.ibm.com>
9334L: linux-s390@vger.kernel.org
9335W: http://www.ibm.com/developerworks/linux/linux390/
9336S: Supported
9337F: drivers/s390/block/dasd*
9338F: block/partitions/ibm.c
9339
Heiko Carstens5238da42006-02-11 17:56:01 -08009340S390 NETWORK DRIVERS
Ursula Braunf0c59af2015-12-11 12:27:52 +01009341M: Ursula Braun <ubraun@linux.vnet.ibm.com>
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01009342L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08009343W: http://www.ibm.com/developerworks/linux/linux390/
9344S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009345F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08009346
Sebastian Ott322986c2014-02-17 15:16:30 +01009347S390 PCI SUBSYSTEM
9348M: Sebastian Ott <sebott@linux.vnet.ibm.com>
9349M: Gerald Schaefer <gerald.schaefer@de.ibm.com>
9350L: linux-s390@vger.kernel.org
9351W: http://www.ibm.com/developerworks/linux/linux390/
9352S: Supported
9353F: arch/s390/pci/
9354F: drivers/pci/hotplug/s390_pci_hpc.c
9355
Felix Beckfeed9b62009-03-26 15:24:23 +01009356S390 ZCRYPT DRIVER
Ingo Tuchscherer5c8d0982013-01-14 10:07:05 +01009357M: Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01009358L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01009359W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01009360S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07009361F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01009362
Heiko Carstens5238da42006-02-11 17:56:01 -08009363S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01009364M: Steffen Maier <maier@linux.vnet.ibm.com>
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01009365L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08009366W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009367S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009368F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009369
Ursula Braundd96df22007-09-19 13:09:02 +02009370S390 IUCV NETWORK LAYER
Ursula Braunf0c59af2015-12-11 12:27:52 +01009371M: Ursula Braun <ubraun@linux.vnet.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02009372L: linux-s390@vger.kernel.org
9373W: http://www.ibm.com/developerworks/linux/linux390/
9374S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009375F: drivers/s390/net/*iucv*
9376F: include/net/iucv/
9377F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02009378
Gerald Schaefer8128f232015-08-27 15:33:03 +02009379S390 IOMMU (PCI)
9380M: Gerald Schaefer <gerald.schaefer@de.ibm.com>
9381L: linux-s390@vger.kernel.org
9382W: http://www.ibm.com/developerworks/linux/linux390/
9383S: Supported
9384F: drivers/iommu/s390-iommu.c
9385
Ben Dooks4dde7f72008-06-30 22:40:38 +01009386S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07009387M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07009388L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01009389S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009390F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01009391
Hans Verkuil1f15a222012-11-23 07:45:29 -03009392SAA6588 RDS RECEIVER DRIVER
9393M: Hans Verkuil <hverkuil@xs4all.nl>
9394L: linux-media@vger.kernel.org
9395T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009396W: https://linuxtv.org
Hans Verkuil1f15a222012-11-23 07:45:29 -03009397S: Odd Fixes
9398F: drivers/media/i2c/saa6588*
9399
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02009400SAA7134 VIDEO4LINUX DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02009401M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02009402L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009403W: https://linuxtv.org
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02009404T: git git://linuxtv.org/media_tree.git
9405S: Odd fixes
Cesar Eduardo Barrose42bf502013-03-02 21:53:47 -03009406F: Documentation/video4linux/*.saa7134
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02009407F: drivers/media/pci/saa7134/
9408
Linus Torvalds1da177e2005-04-16 15:20:36 -07009409SAA7146 VIDEO4LINUX-2 DRIVER
Hans Verkuil566b8152012-11-23 09:58:12 -03009410M: Hans Verkuil <hverkuil@xs4all.nl>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03009411L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02009412T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07009413S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03009414F: drivers/media/common/saa7146/
9415F: drivers/media/pci/saa7146/
9416F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009417
Corentin Chary92304a42011-12-05 12:38:35 -05009418SAMSUNG LAPTOP DRIVER
Corentin Chary5909c652012-12-17 16:00:05 -08009419M: Corentin Chary <corentin.chary@gmail.com>
Corentin Chary92304a42011-12-05 12:38:35 -05009420L: platform-driver-x86@vger.kernel.org
9421S: Maintained
9422F: drivers/platform/x86/samsung-laptop.c
9423
Mark Brown4a109cc2010-09-24 10:50:46 +01009424SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09009425M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01009426L: alsa-devel@alsa-project.org (moderated for non-subscribers)
9427S: Supported
Joe Perches14430812013-09-11 14:23:50 -07009428F: sound/soc/samsung/
Mark Brown4a109cc2010-09-24 10:50:46 +01009429
Jingoo Han0d89a282011-12-19 11:09:35 +09009430SAMSUNG FRAMEBUFFER DRIVER
Jingoo Hanb7701752015-05-14 15:17:07 -07009431M: Jingoo Han <jingoohan1@gmail.com>
Jingoo Han0d89a282011-12-19 11:09:35 +09009432L: linux-fbdev@vger.kernel.org
9433S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09009434F: drivers/video/fbdev/s3c-fb.c
Jingoo Han0d89a282011-12-19 11:09:35 +09009435
Krzysztof Kozlowskib40f0632015-05-06 14:19:36 +09009436SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09009437M: Sangbeom Kim <sbkim73@samsung.com>
Krzysztof Kozlowskib40f0632015-05-06 14:19:36 +09009438M: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09009439L: linux-kernel@vger.kernel.org
Krzysztof Kozlowskib40f0632015-05-06 14:19:36 +09009440L: linux-samsung-soc@vger.kernel.org
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09009441S: Supported
9442F: drivers/mfd/sec*.c
9443F: drivers/regulator/s2m*.c
9444F: drivers/regulator/s5m*.c
Krzysztof Kozlowskib40f0632015-05-06 14:19:36 +09009445F: drivers/clk/clk-s2mps11.c
9446F: drivers/rtc/rtc-s5m.c
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09009447F: include/linux/mfd/samsung/
Krzysztof Kozlowskia13c7c52015-12-04 10:10:03 +09009448F: Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
9449F: Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
Krzysztof Kozlowski27383ca2015-12-04 10:10:04 +09009450F: Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
Krzysztof Kozlowskia13c7c52015-12-04 10:10:03 +09009451F: Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09009452
Sylwester Nawrocki038f5c42013-05-28 18:26:20 -03009453SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
9454M: Kyungmin Park <kyungmin.park@samsung.com>
9455M: Sylwester Nawrocki <s.nawrocki@samsung.com>
9456L: linux-media@vger.kernel.org
9457Q: https://patchwork.linuxtv.org/project/linux-media/list/
9458S: Supported
9459F: drivers/media/platform/exynos4-is/
Sylwester Nawrocki038f5c42013-05-28 18:26:20 -03009460
Sylwester Nawrocki6fd86ab2012-11-15 18:05:15 -03009461SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
9462M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
9463L: linux-media@vger.kernel.org
9464L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9465S: Maintained
9466F: drivers/media/platform/s3c-camif/
Mauro Carvalho Chehabd647f0b2015-11-13 19:40:07 -02009467F: include/media/drv-intf/s3c_camif.h
Sylwester Nawrocki6fd86ab2012-11-15 18:05:15 -03009468
Andrzej Hajdab84ef242013-01-31 07:03:05 -03009469SAMSUNG S5C73M3 CAMERA DRIVER
9470M: Kyungmin Park <kyungmin.park@samsung.com>
9471M: Andrzej Hajda <a.hajda@samsung.com>
9472L: linux-media@vger.kernel.org
9473S: Supported
9474F: drivers/media/i2c/s5c73m3/*
9475
Andrzej Hajda7d459932013-12-05 08:38:39 -03009476SAMSUNG S5K5BAF CAMERA DRIVER
9477M: Kyungmin Park <kyungmin.park@samsung.com>
9478M: Andrzej Hajda <a.hajda@samsung.com>
9479L: linux-media@vger.kernel.org
9480S: Supported
9481F: drivers/media/i2c/s5k5baf.c
9482
Robert Baldygac04c6742015-08-20 17:26:02 +02009483SAMSUNG S3FWRN5 NFC DRIVER
9484M: Robert Baldyga <r.baldyga@samsung.com>
9485L: linux-nfc@lists.01.org (moderated for non-subscribers)
9486S: Supported
9487F: drivers/nfc/s3fwrn5
9488
Tomasz Figa310e39c2013-11-09 03:17:34 +01009489SAMSUNG SOC CLOCK DRIVERS
Tomasz Figafea685e2014-08-26 16:30:53 +02009490M: Sylwester Nawrocki <s.nawrocki@samsung.com>
9491M: Tomasz Figa <tomasz.figa@gmail.com>
Tomasz Figa310e39c2013-11-09 03:17:34 +01009492S: Supported
9493L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9494F: drivers/clk/samsung/
9495
Byungho An66890ed2014-03-25 12:11:07 -07009496SAMSUNG SXGBE DRIVERS
9497M: Byungho An <bh74.an@samsung.com>
9498M: Girish K S <ks.giri@samsung.com>
Byungho An66890ed2014-03-25 12:11:07 -07009499M: Vipul Pandya <vipul.pandya@samsung.com>
9500S: Supported
9501L: netdev@vger.kernel.org
9502F: drivers/net/ethernet/samsung/sxgbe/
9503
Lukasz Majewski93c537a2015-02-24 16:31:28 +01009504SAMSUNG THERMAL DRIVER
9505M: Lukasz Majewski <l.majewski@samsung.com>
9506L: linux-pm@vger.kernel.org
9507L: linux-samsung-soc@vger.kernel.org
9508S: Supported
Fengguang Wu9f273c22016-01-20 15:03:25 -08009509T: git https://github.com/lmajewski/linux-samsung-thermal.git
Lukasz Majewski93c537a2015-02-24 16:31:28 +01009510F: drivers/thermal/samsung/
9511
Kamil Debskie296cd32014-08-21 11:33:37 +02009512SAMSUNG USB2 PHY DRIVER
9513M: Kamil Debski <k.debski@samsung.com>
9514L: linux-kernel@vger.kernel.org
9515S: Supported
9516F: Documentation/devicetree/bindings/phy/samsung-phy.txt
9517F: Documentation/phy/samsung-usb2.txt
9518F: drivers/phy/phy-exynos4210-usb2.c
9519F: drivers/phy/phy-exynos4x12-usb2.c
9520F: drivers/phy/phy-exynos5250-usb2.c
9521F: drivers/phy/phy-s5pv210-usb2.c
9522F: drivers/phy/phy-samsung-usb2.c
9523F: drivers/phy/phy-samsung-usb2.h
9524
Alan Coxca749e22011-03-18 13:56:14 +00009525SERIAL DRIVERS
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08009526M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Alan Coxca749e22011-03-18 13:56:14 +00009527L: linux-serial@vger.kernel.org
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08009528S: Maintained
Joe Perches14430812013-09-11 14:23:50 -07009529F: drivers/tty/serial/
Alan Coxca749e22011-03-18 13:56:14 +00009530
Viresh Kumaraecb7b62011-05-24 14:04:09 +05309531SYNOPSYS DESIGNWARE DMAC DRIVER
Viresh Kumarda899472015-07-17 16:23:50 -07009532M: Viresh Kumar <vireshk@kernel.org>
Viresh Kumar337ae47c2013-07-19 09:13:58 +05309533M: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05309534S: Maintained
Andy Shevchenko1fb200d2015-01-19 18:23:06 +02009535F: include/linux/dma/dw.h
Andy Shevchenko3d598f42014-08-19 20:29:12 +03009536F: include/linux/platform_data/dma-dw.h
Andy Shevchenko61a76492013-06-05 15:26:44 +03009537F: drivers/dma/dw/
Viresh Kumaraecb7b62011-05-24 14:04:09 +05309538
Lars Persson058999c2015-07-28 12:01:50 +02009539SYNOPSYS DESIGNWARE ETHERNET QOS 4.10a driver
9540M: Lars Persson <lars.persson@axis.com>
9541L: netdev@vger.kernel.org
9542S: Supported
9543F: Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt
9544F: drivers/net/ethernet/synopsys/dwc_eth_qos.c
9545
Wolfram Sangfc531d92015-10-15 15:50:15 +02009546SYNOPSYS DESIGNWARE I2C DRIVER
9547M: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9548M: Jarkko Nikula <jarkko.nikula@linux.intel.com>
9549M: Mika Westerberg <mika.westerberg@linux.intel.com>
9550L: linux-i2c@vger.kernel.org
9551S: Maintained
9552F: drivers/i2c/busses/i2c-designware-*
9553F: include/linux/platform_data/i2c-designware.h
9554
Seungwon Jeonf9e37132013-01-17 21:33:23 +09009555SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
Seungwon Jeonf9e37132013-01-17 21:33:23 +09009556M: Jaehoon Chung <jh80.chung@samsung.com>
9557L: linux-mmc@vger.kernel.org
9558S: Maintained
9559F: include/linux/mmc/dw_mmc.h
9560F: drivers/mmc/host/dw_mmc*
9561
Alexander Shishkina961e692015-09-22 15:47:11 +03009562SYSTEM TRACE MODULE CLASS
9563M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
9564S: Maintained
9565F: Documentation/trace/stm.txt
9566F: drivers/hwtracing/stm/
9567F: include/linux/stm.h
9568F: include/uapi/linux/stm.h
9569
Andreas Noever1db121d2014-07-10 18:58:04 +02009570THUNDERBOLT DRIVER
9571M: Andreas Noever <andreas.noever@gmail.com>
9572S: Maintained
9573F: drivers/thunderbolt/
9574
John Stultz34db37c2015-11-13 13:07:31 -08009575TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
John Stultz50363732012-12-13 13:08:47 -05009576M: John Stultz <john.stultz@linaro.org>
Thomas Gleixner88606e82010-12-14 21:37:13 +01009577M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar981c3a42014-01-21 10:59:20 +01009578L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01009579T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01009580S: Supported
9581F: include/linux/clocksource.h
9582F: include/linux/time.h
9583F: include/linux/timex.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009584F: include/uapi/linux/time.h
9585F: include/uapi/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01009586F: kernel/time/clocksource.c
9587F: kernel/time/time*.c
John Stultz34db37c2015-11-13 13:07:31 -08009588F: kernel/time/alarmtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01009589F: kernel/time/ntp.c
John Stultz7fe5f1c2015-03-11 17:40:15 -07009590F: tools/testing/selftests/timers/
Thomas Gleixner88606e82010-12-14 21:37:13 +01009591
Linus Torvalds1da177e2005-04-16 15:20:36 -07009592SC1200 WDT DRIVER
Jean Delvareb3006452013-11-12 15:08:56 -08009593M: Zwane Mwaikambo <zwanem@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009594S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009595F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07009596
9597SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01009598M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07009599M: Peter Zijlstra <peterz@infradead.org>
Ingo Molnar981c3a42014-01-21 10:59:20 +01009600L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01009601T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07009602S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09009603F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07009604F: include/linux/sched.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009605F: include/uapi/linux/sched.h
Peter Zijlstrac2eb5052013-10-02 11:49:47 +02009606F: include/linux/wait.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009607
Chen Liqin6bcf6732009-06-13 15:24:33 +08009608SCORE ARCHITECTURE
Lennox Wued386652013-09-26 01:41:22 +08009609M: Chen Liqin <liqin.linux@gmail.com>
Joe Perchesa2681a72009-10-26 16:49:43 -07009610M: Lennox Wu <lennox.wu@gmail.com>
Lennox Wued386652013-09-26 01:41:22 +08009611W: http://www.sunplus.com
Chen Liqin6bcf6732009-06-13 15:24:33 +08009612S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07009613F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08009614
Sudeep Holla80f390e2015-05-14 11:26:11 +01009615SYSTEM CONTROL & POWER INTERFACE (SCPI) Message Protocol drivers
9616M: Sudeep Holla <sudeep.holla@arm.com>
9617L: linux-arm-kernel@lists.infradead.org
9618S: Maintained
9619F: Documentation/devicetree/bindings/arm/arm,scpi.txt
Sudeep Hollacd52c2a2015-03-30 10:59:52 +01009620F: drivers/clk/clk-scpi.c
Sudeep Holla8def3102015-03-30 10:59:52 +01009621F: drivers/cpufreq/scpi-cpufreq.c
Sudeep Holla8cb7cf52015-03-30 10:59:52 +01009622F: drivers/firmware/arm_scpi.c
9623F: include/linux/scpi_protocol.h
Sudeep Holla80f390e2015-05-14 11:26:11 +01009624
Linus Torvalds1da177e2005-04-16 15:20:36 -07009625SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009626M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009627L: linux-scsi@vger.kernel.org
9628W: http://www.kernel.dk
9629S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009630F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009631
Roland Dreierfb50a832010-10-07 09:54:53 -07009632SCSI RDMA PROTOCOL (SRP) INITIATOR
Bart Van Assche3453bddb2015-02-06 15:27:56 +01009633M: Bart Van Assche <bart.vanassche@sandisk.com>
Roland Dreierfb50a832010-10-07 09:54:53 -07009634L: linux-rdma@vger.kernel.org
9635S: Supported
9636W: http://www.openfabrics.org
9637Q: http://patchwork.kernel.org/project/linux-rdma/list/
9638T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
9639F: drivers/infiniband/ulp/srp/
9640F: include/scsi/srp.h
9641
Linus Torvalds1da177e2005-04-16 15:20:36 -07009642SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009643M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009644L: linux-scsi@vger.kernel.org
Douglas Gilbert59ab3c92013-10-31 09:10:46 -04009645W: http://sg.danny.cz/sg
Linus Torvalds1da177e2005-04-16 15:20:36 -07009646S: Maintained
Douglas Gilbert59ab3c92013-10-31 09:10:46 -04009647F: Documentation/scsi/scsi-generic.txt
Joe Perches679655d2009-04-07 20:44:32 -07009648F: drivers/scsi/sg.c
9649F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009650
9651SCSI SUBSYSTEM
James Bottomley0351b8f2015-04-01 09:09:36 +00009652M: "James E.J. Bottomley" <JBottomley@odin.com>
James Bottomley0351b8f2015-04-01 09:09:36 +00009653T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
Martin K. Petersenf4ab4212015-11-13 16:46:49 -05009654M: "Martin K. Petersen" <martin.petersen@oracle.com>
9655T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
9656L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07009657S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009658F: drivers/scsi/
9659F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009660
9661SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009662M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009663L: linux-scsi@vger.kernel.org
9664S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009665F: Documentation/scsi/st.txt
Jean Delvaref7269cf2013-07-03 15:05:08 -07009666F: drivers/scsi/st.*
9667F: drivers/scsi/st_*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009668
9669SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00009670M: Vlad Yasevich <vyasevich@gmail.com>
Neil Horman02c38d02012-10-24 09:26:51 +00009671M: Neil Horman <nhorman@tuxdriver.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07009672L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07009673W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00009674S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009675F: Documentation/networking/sctp.txt
9676F: include/linux/sctp.h
Daniel Borkmann4d58c022013-07-23 14:51:48 +02009677F: include/uapi/linux/sctp.h
Joe Perches679655d2009-04-07 20:44:32 -07009678F: include/net/sctp/
9679F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009680
9681SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07009682M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07009683S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07009684F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07009685F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07009686F: drivers/watchdog/scx200_wdt.c
9687F: drivers/i2c/busses/scx200*
9688F: drivers/mtd/maps/scx200_docflash.c
9689F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07009690
9691SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009692M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07009693S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009694F: drivers/char/scx200_gpio.c
9695F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07009696
9697SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009698M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07009699S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009700F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07009701
Sascha Sommer6a369132008-07-15 14:21:29 +02009702SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009703M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02009704L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
9705S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009706F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02009707
Randy Dunlape7839f22008-10-12 16:11:45 -07009708SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Joe Perches7a241d62009-10-26 16:49:42 -07009709L: linux-mmc@vger.kernel.org
Ulf Hanssona1cb1d12015-03-13 13:39:03 +01009710S: Orphan
Joe Perches7a241d62009-10-26 16:49:42 -07009711F: drivers/mmc/host/sdhci.*
Joe Perchesd4a45782012-01-10 15:08:54 -08009712F: drivers/mmc/host/sdhci-pltfm.[ch]
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009713
Kees Cookc04f9d62014-07-18 11:28:33 -07009714SECURE COMPUTING
9715M: Kees Cook <keescook@chromium.org>
Kees Cooka0cfd752014-08-12 15:41:17 -07009716R: Andy Lutomirski <luto@amacapital.net>
9717R: Will Drewry <wad@chromium.org>
Kees Cookc04f9d62014-07-18 11:28:33 -07009718T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
9719S: Supported
9720F: kernel/seccomp.c
9721F: include/uapi/linux/seccomp.h
9722F: include/linux/seccomp.h
Kees Cookc99ee512015-06-16 10:54:14 -07009723F: tools/testing/selftests/seccomp/*
Kees Cookc04f9d62014-07-18 11:28:33 -07009724K: \bsecure_computing
9725K: \bTIF_SECCOMP\b
9726
Ben Dooks0d1bb412009-06-14 13:52:37 +01009727SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009728M: Ben Dooks <ben-linux@fluff.org>
Ulf Hanssondc524882015-03-20 10:15:29 +01009729M: Jaehoon Chung <jh80.chung@samsung.com>
Joe Perches7a241d62009-10-26 16:49:42 -07009730L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01009731S: Maintained
Ulf Hanssondc524882015-03-20 10:15:29 +01009732F: drivers/mmc/host/sdhci-s3c*
Ben Dooks0d1bb412009-06-14 13:52:37 +01009733
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07009734SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Viresh Kumarda899472015-07-17 16:23:50 -07009735M: Viresh Kumar <vireshk@kernel.org>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07009736L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07009737L: linux-mmc@vger.kernel.org
9738S: Maintained
9739F: drivers/mmc/host/sdhci-spear.c
9740
James Morris8711cca2008-12-04 03:19:45 +11009741SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11009742M: James Morris <james.l.morris@oracle.com>
Joe Perches9c3646d2015-06-25 15:02:00 -07009743M: "Serge E. Hallyn" <serge@hallyn.com>
James Morris8711cca2008-12-04 03:19:45 +11009744L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11009745T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10009746W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11009747S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07009748F: security/
James Morris8711cca2008-12-04 03:19:45 +11009749
Linus Torvalds1da177e2005-04-16 15:20:36 -07009750SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07009751M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009752S: Supported
9753
9754SELINUX SECURITY MODULE
Paul Moore5a5f2ac2013-09-18 13:14:04 -04009755M: Paul Moore <paul@paul-moore.com>
Paul Mooree0238b42014-02-06 07:51:54 -05009756M: Stephen Smalley <sds@tycho.nsa.gov>
9757M: Eric Paris <eparis@parisplace.org>
9758L: selinux@tycho.nsa.gov (moderated for non-subscribers)
Stephen Smalleyf0589252008-09-11 09:20:26 -04009759W: http://selinuxproject.org
Paul Moore5a5f2ac2013-09-18 13:14:04 -04009760T: git git://git.infradead.org/users/pcmoore/selinux
Linus Torvalds1da177e2005-04-16 15:20:36 -07009761S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009762F: include/linux/selinux*
9763F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04009764F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009765
John Johansenc1c124e2010-07-29 14:48:09 -07009766APPARMOR SECURITY MODULE
9767M: John Johansen <john.johansen@canonical.com>
9768L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
9769W: apparmor.wiki.kernel.org
9770T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
9771S: Supported
9772F: security/apparmor/
9773
Kees Cook730daa12015-07-23 18:02:48 -07009774YAMA SECURITY MODULE
9775M: Kees Cook <keescook@chromium.org>
9776T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
9777S: Supported
9778F: security/yama/
9779
Jiri Slabycef2cf02007-05-08 00:31:45 -07009780SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07009781M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07009782S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009783F: drivers/misc/phantom.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009784F: include/uapi/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07009785
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05309786SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Minh Tran4627de92015-05-14 23:16:17 -07009787M: Jayamohan Kallickal <jayamohan.kallickal@avagotech.com>
Ketan Mukadam9d27e212015-07-04 04:12:23 +05309788M: Ketan Mukadam <ketan.mukadam@avagotech.com>
9789M: John Soni Jose <sony.john@avagotech.com>
Joe Perches3387f652009-11-11 14:26:11 -08009790L: linux-scsi@vger.kernel.org
Minh Tran4627de92015-05-14 23:16:17 -07009791W: http://www.avagotech.com
Joe Perches3387f652009-11-11 14:26:11 -08009792S: Supported
9793F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05309794
Sathya Perla6938f852015-05-12 02:13:50 -04009795Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER
9796M: Sathya Perla <sathya.perla@avagotech.com>
9797M: Ajit Khaparde <ajit.khaparde@avagotech.com>
9798M: Padmanabh Ratnakar <padmanabh.ratnakar@avagotech.com>
9799M: Sriharsha Basavapatna <sriharsha.basavapatna@avagotech.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07009800L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08009801W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07009802S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07009803F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07009804
Selvin Xavierd2928a82015-03-15 00:09:41 +05309805EMULEX ONECONNECT ROCE DRIVER
Laurent Navet2b8e7332015-06-30 14:59:33 -07009806M: Selvin Xavier <selvin.xavier@avagotech.com>
9807M: Devesh Sharma <devesh.sharma@avagotech.com>
9808M: Mitesh Ahuja <mitesh.ahuja@avagotech.com>
Selvin Xavierd2928a82015-03-15 00:09:41 +05309809L: linux-rdma@vger.kernel.org
9810W: http://www.emulex.com
9811S: Supported
9812F: drivers/infiniband/hw/ocrdma/
9813
Ben Hutchings8ceee662008-04-27 12:55:59 +01009814SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00009815M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Shradha Shah8533ccf2014-01-23 13:19:55 +00009816M: Shradha Shah <sshah@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +00009817L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01009818S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07009819F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01009820
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009821SGI GRU DRIVER
Bjorn Helgaascc883af2013-01-29 15:48:37 -07009822M: Dimitri Sivanich <sivanich@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009823S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009824F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009825
9826SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009827M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009828L: linux-ia64@vger.kernel.org
9829S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009830F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08009831F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07009832F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009833
Jack Steiner75312612008-08-15 00:40:42 -07009834SGI XP/XPC/XPNET DRIVER
Robin Holte1803832013-08-16 18:01:42 -05009835M: Cliff Whickman <cpw@sgi.com>
9836M: Robin Holt <robinmholt@gmail.com>
Jack Steiner75312612008-08-15 00:40:42 -07009837S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009838F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07009839
Antti Palosaari46eacf32014-04-15 06:21:03 -03009840SI2157 MEDIA DRIVER
9841M: Antti Palosaari <crope@iki.fi>
9842L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009843W: https://linuxtv.org
Antti Palosaari46eacf32014-04-15 06:21:03 -03009844W: http://palosaari.fi/linux/
9845Q: http://patchwork.linuxtv.org/project/linux-media/list/
9846T: git git://linuxtv.org/anttip/media_tree.git
9847S: Maintained
9848F: drivers/media/tuners/si2157*
9849
Antti Palosaari75e2d5b2014-04-15 06:17:53 -03009850SI2168 MEDIA DRIVER
9851M: Antti Palosaari <crope@iki.fi>
9852L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009853W: https://linuxtv.org
Antti Palosaari75e2d5b2014-04-15 06:17:53 -03009854W: http://palosaari.fi/linux/
9855Q: http://patchwork.linuxtv.org/project/linux-media/list/
9856T: git git://linuxtv.org/anttip/media_tree.git
9857S: Maintained
9858F: drivers/media/dvb-frontends/si2168*
9859
Hans Verkuil49cc6292012-11-30 07:13:29 -03009860SI470X FM RADIO RECEIVER I2C DRIVER
9861M: Hans Verkuil <hverkuil@xs4all.nl>
9862L: linux-media@vger.kernel.org
9863T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009864W: https://linuxtv.org
Hans Verkuil49cc6292012-11-30 07:13:29 -03009865S: Odd Fixes
9866F: drivers/media/radio/si470x/radio-si470x-i2c.c
9867
9868SI470X FM RADIO RECEIVER USB DRIVER
9869M: Hans Verkuil <hverkuil@xs4all.nl>
9870L: linux-media@vger.kernel.org
9871T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009872W: https://linuxtv.org
Hans Verkuil49cc6292012-11-30 07:13:29 -03009873S: Maintained
9874F: drivers/media/radio/si470x/radio-si470x-common.c
9875F: drivers/media/radio/si470x/radio-si470x.h
9876F: drivers/media/radio/si470x/radio-si470x-usb.c
9877
Eduardo Valentinc937ca02013-02-27 10:37:39 -03009878SI4713 FM RADIO TRANSMITTER I2C DRIVER
9879M: Eduardo Valentin <edubezval@gmail.com>
9880L: linux-media@vger.kernel.org
9881T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009882W: https://linuxtv.org
Eduardo Valentinc937ca02013-02-27 10:37:39 -03009883S: Odd Fixes
Dinesh Ram99995de2013-10-15 12:24:43 -03009884F: drivers/media/radio/si4713/si4713.?
Eduardo Valentinc937ca02013-02-27 10:37:39 -03009885
9886SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
9887M: Eduardo Valentin <edubezval@gmail.com>
9888L: linux-media@vger.kernel.org
9889T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009890W: https://linuxtv.org
Eduardo Valentinc937ca02013-02-27 10:37:39 -03009891S: Odd Fixes
Dinesh Ram99995de2013-10-15 12:24:43 -03009892F: drivers/media/radio/si4713/radio-platform-si4713.c
9893
9894SI4713 FM RADIO TRANSMITTER USB DRIVER
9895M: Hans Verkuil <hverkuil@xs4all.nl>
9896L: linux-media@vger.kernel.org
9897T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009898W: https://linuxtv.org
Dinesh Ram99995de2013-10-15 12:24:43 -03009899S: Maintained
9900F: drivers/media/radio/si4713/radio-usb-si4713.c
Eduardo Valentinc937ca02013-02-27 10:37:39 -03009901
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03009902SIANO DVB DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02009903M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03009904L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009905W: https://linuxtv.org
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03009906T: git git://linuxtv.org/media_tree.git
9907S: Odd fixes
9908F: drivers/media/common/siano/
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03009909F: drivers/media/usb/siano/
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03009910F: drivers/media/usb/siano/
Joe Perches14430812013-09-11 14:23:50 -07009911F: drivers/media/mmc/siano/
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03009912
Hans de Goede6f15b602014-11-14 13:26:46 +01009913SIMPLEFB FB DRIVER
9914M: Hans de Goede <hdegoede@redhat.com>
9915L: linux-fbdev@vger.kernel.org
9916S: Maintained
Rob Herring2d799dd2015-11-05 13:40:40 -06009917F: Documentation/devicetree/bindings/display/simple-framebuffer.txt
Hans de Goede6f15b602014-11-14 13:26:46 +01009918F: drivers/video/fbdev/simplefb.c
9919F: include/linux/platform_data/simplefb.h
9920
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03009921SH_VEU V4L2 MEM2MEM DRIVER
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03009922L: linux-media@vger.kernel.org
Guennadi Liakhovetskibb60fcb2013-11-24 17:44:08 -03009923S: Orphan
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03009924F: drivers/media/platform/sh_veu.c
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03009925
9926SH_VOU V4L2 OUTPUT DRIVER
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03009927L: linux-media@vger.kernel.org
Guennadi Liakhovetskibb60fcb2013-11-24 17:44:08 -03009928S: Orphan
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03009929F: drivers/media/platform/sh_vou.c
Mauro Carvalho Chehabd647f0b2015-11-13 19:40:07 -02009930F: include/media/drv-intf/sh_vou.h
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03009931
Len Brown6349d992009-08-14 15:07:14 -04009932SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07009933M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04009934L: sfi-devel@simplefirmware.org
9935W: http://simplefirmware.org/
9936T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009937S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07009938F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04009939F: drivers/sfi/
9940F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009941
Linus Torvalds1da177e2005-04-16 15:20:36 -07009942SIMTEC EB110ATX (Chalice CATS)
9943P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08009944P: Vincent Sanders <vince@simtec.co.uk>
9945M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009946W: http://www.simtec.co.uk/products/EB110ATX/
9947S: Supported
9948
9949SIMTEC EB2410ITX (BAST)
9950P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08009951P: Vincent Sanders <vince@simtec.co.uk>
9952M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009953W: http://www.simtec.co.uk/products/EB2410ITX/
9954S: Supported
Joe Perches15dba382013-09-11 14:23:36 -07009955F: arch/arm/mach-s3c24xx/mach-bast.c
9956F: arch/arm/mach-s3c24xx/bast-ide.c
9957F: arch/arm/mach-s3c24xx/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07009958
Kevin Hilman4c5adde2009-06-19 12:02:33 -07009959TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08009960M: Sekhar Nori <nsekhar@ti.com>
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08009961M: Kevin Hilman <khilman@deeprootsystems.com>
Sekhar Noric9f46a82012-01-27 21:12:20 +05309962T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -08009963Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07009964S: Supported
Joe Perches14430812013-09-11 14:23:50 -07009965F: arch/arm/mach-davinci/
Jean Delvare046d0a32012-01-12 20:32:05 +01009966F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -07009967
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03009968TI DAVINCI SERIES MEDIA DRIVER
Joe Perchese43cdb52015-06-25 15:02:03 -07009969M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03009970L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009971W: https://linuxtv.org
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03009972Q: http://patchwork.linuxtv.org/project/linux-media/list/
9973T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
Lad, Prabhakar9ce5eca2013-04-15 01:32:44 -03009974S: Maintained
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03009975F: drivers/media/platform/davinci/
9976F: include/media/davinci/
9977
Benoit Parrot417d2e52014-12-09 16:43:44 -03009978TI AM437X VPFE DRIVER
Joe Perchese43cdb52015-06-25 15:02:03 -07009979M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
Benoit Parrot417d2e52014-12-09 16:43:44 -03009980L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009981W: https://linuxtv.org
Benoit Parrot417d2e52014-12-09 16:43:44 -03009982Q: http://patchwork.linuxtv.org/project/linux-media/list/
9983T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9984S: Maintained
9985F: drivers/media/platform/am437x/
9986
Benoit Parrotc4c02832015-03-20 18:03:52 -03009987OV2659 OMNIVISION SENSOR DRIVER
Joe Perchese43cdb52015-06-25 15:02:03 -07009988M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
Benoit Parrotc4c02832015-03-20 18:03:52 -03009989L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009990W: https://linuxtv.org
Benoit Parrotc4c02832015-03-20 18:03:52 -03009991Q: http://patchwork.linuxtv.org/project/linux-media/list/
9992T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9993S: Maintained
9994F: drivers/media/i2c/ov2659.c
Mauro Carvalho Chehabb5dcee22015-11-10 12:01:44 -02009995F: include/media/i2c/ov2659.h
Benoit Parrotc4c02832015-03-20 18:03:52 -03009996
Sudip Mukherjee3a6779f2015-08-07 18:31:15 +05309997SILICON MOTION SM712 FRAME BUFFER DRIVER
9998M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
9999M: Teddy Wang <teddy.wang@siliconmotion.com>
10000M: Sudip Mukherjee <sudip@vectorindia.org>
10001L: linux-fbdev@vger.kernel.org
10002S: Maintained
10003F: drivers/video/fbdev/sm712*
10004F: Documentation/fb/sm712fb.txt
10005
Francois Romieu92aab3c2005-07-30 13:11:18 +020010006SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010007M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +020010008L: netdev@vger.kernel.org
10009S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -070010010F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +020010011
Linus Torvalds1da177e2005-04-16 15:20:36 -070010012SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010013M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010014W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -070010015L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070010016S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -070010017F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010018
10019SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010020M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010021W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -030010022S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010023F: Documentation/fb/sisfb.txt
Jingoo Han8a61f012014-07-01 15:36:01 +090010024F: drivers/video/fbdev/sis/
Joe Perches679655d2009-04-07 20:44:32 -070010025F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070010026
10027SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010028M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010029W: http://www.winischhofer.at/linuxsisusbvga.shtml
10030S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010031F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010032
Christoph Lameter415ad262007-07-26 10:40:56 -070010033SLAB ALLOCATOR
Christoph Lameter16e943b2014-06-23 13:22:03 -070010034M: Christoph Lameter <cl@linux.com>
Pekka Enberg2ed1c522011-01-15 13:30:04 +020010035M: Pekka Enberg <penberg@kernel.org>
Christoph Lameter16e943b2014-06-23 13:22:03 -070010036M: David Rientjes <rientjes@google.com>
10037M: Joonsoo Kim <iamjoonsoo.kim@lge.com>
10038M: Andrew Morton <akpm@linux-foundation.org>
Christoph Lameter415ad262007-07-26 10:40:56 -070010039L: linux-mm@kvack.org
10040S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010041F: include/linux/sl?b*.h
Christoph Lameter16e943b2014-06-23 13:22:03 -070010042F: mm/sl?b*
Christoph Lameter415ad262007-07-26 10:40:56 -070010043
Paul E. McKenney9fab97872012-05-07 09:36:34 -070010044SLEEPABLE READ-COPY UPDATE (SRCU)
Lai Jiangshan96a39bc2015-07-01 15:26:27 +080010045M: Lai Jiangshan <jiangshanlai@gmail.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -070010046M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyab0afd62014-06-03 08:17:06 -070010047M: Josh Triplett <josh@joshtriplett.org>
Paul E. McKenney4632a192014-05-30 15:37:24 -070010048R: Steven Rostedt <rostedt@goodmis.org>
10049R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +010010050L: linux-kernel@vger.kernel.org
Paul E. McKenney9fab97872012-05-07 09:36:34 -070010051W: http://www.rdrop.com/users/paulmck/RCU/
10052S: Supported
10053T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenney4102ada2013-10-08 20:23:47 -070010054F: include/linux/srcu.h
10055F: kernel/rcu/srcu.c
Paul E. McKenney9fab97872012-05-07 09:36:34 -070010056
Casey Schaufler66372842012-05-23 18:34:52 -070010057SMACK SECURITY MODULE
10058M: Casey Schaufler <casey@schaufler-ca.com>
10059L: linux-security-module@vger.kernel.org
10060W: http://schaufler-ca.com
10061T: git git://git.gitorious.org/smack-next/kernel.git
10062S: Maintained
10063F: Documentation/security/Smack.txt
10064F: security/smack/
10065
Kevin Hilman20651e02014-09-24 16:30:00 -070010066DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
Kevin Hilman68ace3e2013-08-06 16:57:14 -070010067M: Kevin Hilman <khilman@kernel.org>
10068M: Nishanth Menon <nm@ti.com>
10069S: Maintained
Kevin Hilman20651e02014-09-24 16:30:00 -070010070F: drivers/power/avs/
Kevin Hilman68ace3e2013-08-06 16:57:14 -070010071F: include/linux/power/smartreflex.h
10072L: linux-pm@vger.kernel.org
10073
Linus Torvalds1da177e2005-04-16 15:20:36 -070010074SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -040010075M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -040010076S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -070010077F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010078
Sakari Ailuse8e31622012-11-12 18:14:39 -030010079SMIA AND SMIA++ IMAGE SENSOR DRIVER
10080M: Sakari Ailus <sakari.ailus@iki.fi>
10081L: linux-media@vger.kernel.org
10082S: Maintained
Joe Perches14430812013-09-11 14:23:50 -070010083F: drivers/media/i2c/smiapp/
Mauro Carvalho Chehabb5dcee22015-11-10 12:01:44 -020010084F: include/media/i2c/smiapp.h
Sakari Ailuse8e31622012-11-12 18:14:39 -030010085F: drivers/media/i2c/smiapp-pll.c
10086F: drivers/media/i2c/smiapp-pll.h
Sakari Ailusfd2bfdc2014-11-16 12:08:44 -030010087F: include/uapi/linux/smiapp.h
Sakari Ailusa2cec3c2014-11-06 18:16:13 -030010088F: Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
Sakari Ailuse8e31622012-11-12 18:14:39 -030010089
Guenter Roeck920fa1f2010-08-09 17:21:06 -070010090SMM665 HARDWARE MONITOR DRIVER
10091M: Guenter Roeck <linux@roeck-us.net>
10092L: lm-sensors@lm-sensors.org
10093S: Maintained
10094F: Documentation/hwmon/smm665
10095F: drivers/hwmon/smm665.c
10096
Steve Glendinning9df73052010-08-14 21:08:54 +020010097SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +010010098M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning9df73052010-08-14 21:08:54 +020010099L: lm-sensors@lm-sensors.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +010010100S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +020010101F: Documentation/hwmon/emc2103
10102F: drivers/hwmon/emc2103.c
10103
Hans de Goedea98d5062011-03-21 17:59:36 +010010104SMSC SCH5627 HARDWARE MONITOR DRIVER
10105M: Hans de Goede <hdegoede@redhat.com>
10106L: lm-sensors@lm-sensors.org
10107S: Supported
10108F: Documentation/hwmon/sch5627
10109F: drivers/hwmon/sch5627.c
10110
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -040010111SMSC47B397 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -070010112M: Jean Delvare <jdelvare@suse.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -040010113L: lm-sensors@lm-sensors.org
10114S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010115F: Documentation/hwmon/smsc47b397
10116F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -040010117
Steve Glendinningfd9abb32008-11-05 00:35:37 +000010118SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +010010119M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +000010120L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +010010121S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010122F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -070010123F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +000010124
Steve Glendinning2cb37722008-12-11 20:54:30 -080010125SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +010010126M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -080010127L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +010010128S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -070010129F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -080010130
Steve Glendinning3c8a63e2011-08-18 15:20:07 +010010131SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +010010132M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +010010133L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +010010134S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +090010135F: drivers/video/fbdev/smscufx.c
Steve Glendinning3c8a63e2011-08-18 15:20:07 +010010136
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -030010137SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070010138M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -030010139L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -020010140T: git git://linuxtv.org/media_tree.git
Jean Delvare795fb7e2008-09-20 12:33:08 +020010141S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -030010142F: include/media/soc*
10143F: drivers/media/i2c/soc_camera/
10144F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -030010145
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010146SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -070010147M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010148S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010149F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010150
Joe Perchese3994db2014-07-30 00:38:42 -030010151SOFTLOGIC 6x10 MPEG CODEC
Andrey Utkin9661975d2014-11-17 13:59:23 -030010152M: Bluecherry Maintainers <maintainers@bluecherrydvr.com>
10153M: Andrey Utkin <andrey.utkin@corp.bluecherry.net>
10154M: Andrey Utkin <andrey.krieger.utkin@gmail.com>
Ismael Luceno1f141f62015-01-20 11:43:50 -030010155M: Ismael Luceno <ismael@iodev.co.uk>
Joe Perchese3994db2014-07-30 00:38:42 -030010156L: linux-media@vger.kernel.org
10157S: Supported
10158F: drivers/media/pci/solo6x10/
10159
Linus Torvalds1da177e2005-04-16 15:20:36 -070010160SOFTWARE RAID (Multiple Disks) SUPPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -070010161L: linux-raid@vger.kernel.org
Fengguang Wu9f273c22016-01-20 15:03:25 -080010162T: git git://neil.brown.name/md
NeilBrown524418b2007-01-26 00:57:01 -080010163S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010164F: drivers/md/
10165F: include/linux/raid/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010166F: include/uapi/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010167
Linus Torvalds1da177e2005-04-16 15:20:36 -070010168SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010169M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -070010170L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070010171S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -070010172F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010173
Michael Buesch61e115a2007-09-18 15:12:50 -040010174SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +020010175M: Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -040010176L: netdev@vger.kernel.org
10177S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010178F: drivers/ssb/
10179F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -040010180
Linus Torvalds1da177e2005-04-16 15:20:36 -070010181SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010182M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd0944852010-02-11 10:40:13 -050010183L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +010010184W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -070010185S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010186F: Documentation/laptops/sony-laptop.txt
10187F: drivers/char/sonypi.c
10188F: drivers/platform/x86/sony-laptop.c
10189F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070010190
Alex Dubovbaf85322008-02-09 10:20:54 -080010191SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -070010192M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -080010193W: http://tifmxx.berlios.de/
10194S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010195F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -080010196
Maxim Levitsky0ab30492013-09-11 14:26:02 -070010197SONY MEMORYSTICK STANDARD SUPPORT
10198M: Maxim Levitsky <maximlevitsky@gmail.com>
10199S: Maintained
10200F: drivers/memstick/core/ms_block.*
10201
Linus Torvalds1da177e2005-04-16 15:20:36 -070010202SOUND
Joe Perches8b58be82009-07-29 15:04:30 -070010203M: Jaroslav Kysela <perex@perex.cz>
Jiri Slabyd8130622015-07-17 16:23:20 -070010204M: Takashi Iwai <tiwai@suse.com>
Joe Perches93711662009-06-16 15:34:07 -070010205L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -070010206W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +020010207T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -070010208T: git git://git.alsa-project.org/alsa-kernel.git
Takashi Iwaiff4a8f32014-05-13 14:55:51 +020010209Q: http://patchwork.kernel.org/project/alsa-devel/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010210S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -070010211F: Documentation/sound/
10212F: include/sound/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010213F: include/uapi/sound/
Joe Perches679655d2009-04-07 20:44:32 -070010214F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010215
Mark Brown33bbe142013-08-09 18:10:50 +010010216SOUND - COMPRESSED AUDIO
10217M: Vinod Koul <vinod.koul@intel.com>
10218L: alsa-devel@alsa-project.org (moderated for non-subscribers)
10219T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
10220S: Supported
Vinod Koulf672f312013-08-12 11:15:27 +053010221F: Documentation/sound/alsa/compress_offload.txt
Mark Brown33bbe142013-08-09 18:10:50 +010010222F: include/sound/compress_driver.h
Vinod Koulf672f312013-08-12 11:15:27 +053010223F: include/uapi/sound/compress_*
Mark Brown33bbe142013-08-09 18:10:50 +010010224F: sound/core/compress_offload.c
10225F: sound/soc/soc-compress.c
10226
Mark Brownbd903bd2008-11-19 19:16:05 +000010227SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood6b9cf5c2013-01-15 15:13:27 +000010228M: Liam Girdwood <lgirdwood@gmail.com>
Mark Brownb02e48f2013-04-12 11:39:57 +010010229M: Mark Brown <broonie@kernel.org>
Mark Brown86f14df2011-11-02 21:36:32 +000010230T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -070010231L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +010010232W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +020010233S: Supported
Mark Brown2820f612013-08-11 19:35:11 +010010234F: Documentation/sound/alsa/soc/
Joe Perches679655d2009-04-07 20:44:32 -070010235F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +010010236F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +020010237
Mark Brownd7f87612013-10-19 14:33:54 +010010238SOUND - DMAENGINE HELPERS
10239M: Lars-Peter Clausen <lars@metafoo.de>
10240S: Supported
10241F: include/sound/dmaengine_pcm.h
10242F: sound/core/pcm_dmaengine.c
10243F: sound/soc/soc-generic-dmaengine-pcm.c
10244
Olli Salonen990a6a92014-08-22 13:50:42 -030010245SP2 MEDIA DRIVER
10246M: Olli Salonen <olli.salonen@iki.fi>
10247L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010248W: https://linuxtv.org
Olli Salonen990a6a92014-08-22 13:50:42 -030010249Q: http://patchwork.linuxtv.org/project/linux-media/list/
10250S: Maintained
10251F: drivers/media/dvb-frontends/sp2*
10252
Sam Ravnborg473321f2009-01-04 15:47:49 -080010253SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -070010254M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010255L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -080010256Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -070010257T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
10258T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070010259S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010260F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -070010261F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010262
David S. Miller6404fcc2010-03-16 01:00:17 -070010263SPARC SERIAL DRIVERS
10264M: "David S. Miller" <davem@davemloft.net>
10265L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -070010266T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
10267T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -070010268S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -050010269F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -080010270F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -080010271F: drivers/tty/serial/sunhv.c
10272F: drivers/tty/serial/sunsab.c
10273F: drivers/tty/serial/sunsab.h
10274F: drivers/tty/serial/sunsu.c
10275F: drivers/tty/serial/sunzilog.c
10276F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -070010277
Christopher Li389325b2012-04-05 14:25:14 -070010278SPARSE CHECKER
10279M: "Christopher Li" <sparse@chrisli.org>
10280L: linux-sparse@vger.kernel.org
10281W: https://sparse.wiki.kernel.org/
10282T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
10283T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
10284S: Maintained
10285F: include/linux/compiler.h
10286
viresh kumarfc0c1952010-04-01 12:31:21 +010010287SPEAR PLATFORM SUPPORT
Viresh Kumarda899472015-07-17 16:23:50 -070010288M: Viresh Kumar <vireshk@kernel.org>
Viresh Kumar9cc23682014-04-18 15:07:16 -070010289M: Shiraz Hashim <shiraz.linux.kernel@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -070010290L: spear-devel@list.st.com
10291L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +010010292W: http://www.st.com/spear
10293S: Maintained
Joe Perches281e1922013-09-11 14:23:37 -070010294F: arch/arm/mach-spear/
viresh kumarfc0c1952010-04-01 12:31:21 +010010295
10296SPEAR CLOCK FRAMEWORK SUPPORT
Viresh Kumarda899472015-07-17 16:23:50 -070010297M: Viresh Kumar <vireshk@kernel.org>
Viresh Kumarfbfa0742012-03-15 15:17:09 -070010298L: spear-devel@list.st.com
10299L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +010010300W: http://www.st.com/spear
10301S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +053010302F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +010010303
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010304SPI SUBSYSTEM
Mark Brownb02e48f2013-04-12 11:39:57 +010010305M: Mark Brown <broonie@kernel.org>
Mark Browndfbe4032013-05-17 13:12:52 +010010306L: linux-spi@vger.kernel.org
Mark Browne7e4e132013-04-18 18:18:47 +010010307T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
Joe Perches8a6e2532010-03-05 13:43:11 -080010308Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010309S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010310F: Documentation/spi/
10311F: drivers/spi/
10312F: include/linux/spi/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010313F: include/uapi/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010314
Jim Lewis2752e402006-09-29 02:01:19 -070010315SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -070010316M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
Jim Lewis2752e402006-09-29 02:01:19 -070010317L: netdev@vger.kernel.org
10318S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010319F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -070010320F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -070010321
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010322SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070010323M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +100010324L: linuxppc-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010325W: http://www.ibm.com/developerworks/power/cell/
10326S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010327F: Documentation/filesystems/spufs.txt
10328F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010329
Phillip Lougherfc555842009-01-05 08:46:29 +000010330SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +010010331M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +000010332L: squashfs-devel@lists.sourceforge.net (subscribers-only)
10333W: http://squashfs.org.uk
Fengguang Wu9f273c22016-01-20 15:03:25 -080010334T: git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
Phillip Lougherfc555842009-01-05 08:46:29 +000010335S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010336F: Documentation/filesystems/squashfs.txt
10337F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +000010338
Linus Torvalds1da177e2005-04-16 15:20:36 -070010339SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -070010340M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010341S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010342F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070010343
Linus Torvalds26e9a392008-10-17 09:50:12 -070010344STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -080010345M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -080010346L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -080010347S: Supported
Greg Kroah-Hartman7b175c42013-06-18 12:58:12 -070010348F: Documentation/stable_kernel_rules.txt
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010349
Linus Torvalds26e9a392008-10-17 09:50:12 -070010350STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -080010351M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -070010352T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -070010353L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -080010354S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010355F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -070010356
Joe Perchesebd3d012011-07-05 09:42:02 -070010357STAGING - COMEDI
10358M: Ian Abbott <abbotti@mev.co.uk>
Lidza Louina81b884c2013-07-24 11:29:33 -040010359M: H Hartley Sweeten <hsweeten@visionengravers.com>
Joe Perchesebd3d012011-07-05 09:42:02 -070010360S: Odd Fixes
10361F: drivers/staging/comedi/
10362
Joe Perchesa0138162011-07-05 15:21:34 -070010363STAGING - FLARION FT1000 DRIVERS
10364M: Marek Belisko <marek.belisko@gmail.com>
10365S: Odd Fixes
10366F: drivers/staging/ft1000/
10367
Joe Perches6c1bb422011-07-05 09:42:07 -070010368STAGING - INDUSTRIAL IO
Sachin Kamat030a13d2013-09-11 11:00:00 +010010369M: Jonathan Cameron <jic23@kernel.org>
Joe Perchesa0138162011-07-05 15:21:34 -070010370L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -070010371S: Odd Fixes
10372F: drivers/staging/iio/
10373
Joe Perchesa0138162011-07-05 15:21:34 -070010374STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
10375M: Jarod Wilson <jarod@wilsonet.com>
10376W: http://www.lirc.org/
10377S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -080010378F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -070010379
Oleg Drokinf5e5de12014-08-15 12:48:14 -040010380STAGING - LUSTRE PARALLEL FILESYSTEM
10381M: Oleg Drokin <oleg.drokin@intel.com>
10382M: Andreas Dilger <andreas.dilger@intel.com>
Andreas Dilgerd98229f2015-08-24 11:11:49 -040010383L: lustre-devel@lists.lustre.org (moderated for non-subscribers)
10384W: http://wiki.lustre.org/
Oleg Drokinf5e5de12014-08-15 12:48:14 -040010385S: Maintained
10386F: drivers/staging/lustre
10387
Marc Dietrich7c6b6c72011-09-27 19:00:46 +020010388STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
10389M: Marc Dietrich <marvin24@gmx.de>
10390L: ac100@lists.launchpad.net (moderated for non-subscribers)
Stephen Warren5d96bf42013-02-27 17:02:54 -080010391L: linux-tegra@vger.kernel.org
Marc Dietrich7c6b6c72011-09-27 19:00:46 +020010392S: Maintained
10393F: drivers/staging/nvec/
10394
Joe Perchesa0138162011-07-05 15:21:34 -070010395STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
Jens Frederich3140b452013-08-04 20:57:43 +020010396M: Jens Frederich <jfrederich@gmail.com>
10397M: Daniel Drake <dsd@laptop.org>
Joe Perchesa0138162011-07-05 15:21:34 -070010398M: Jon Nettleton <jon.nettleton@gmail.com>
10399W: http://wiki.laptop.org/go/DCON
Jens Frederich3140b452013-08-04 20:57:43 +020010400S: Maintained
Joe Perchesa0138162011-07-05 15:21:34 -070010401F: drivers/staging/olpc_dcon/
10402
10403STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
Joe Perches29e70172011-07-05 09:42:08 -070010404M: Willy Tarreau <willy@meta-x.org>
10405S: Odd Fixes
10406F: drivers/staging/panel/
10407
Joe Perchesa0138162011-07-05 15:21:34 -070010408STAGING - REALTEK RTL8712U DRIVERS
10409M: Larry Finger <Larry.Finger@lwfinger.net>
10410M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
10411S: Odd Fixes
10412F: drivers/staging/rtl8712/
10413
Jes Sorensen7591ba82014-04-26 18:54:48 +020010414STAGING - REALTEK RTL8723U WIRELESS DRIVER
10415M: Larry Finger <Larry.Finger@lwfinger.net>
10416M: Jes Sorensen <Jes.Sorensen@redhat.com>
10417L: linux-wireless@vger.kernel.org
10418S: Maintained
10419F: drivers/staging/rtl8723au/
10420
Sudip Mukherjee980ac4d2015-03-03 16:21:07 +053010421STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
10422M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10423M: Teddy Wang <teddy.wang@siliconmotion.com>
10424M: Sudip Mukherjee <sudip@vectorindia.org>
10425L: linux-fbdev@vger.kernel.org
10426S: Maintained
10427F: drivers/staging/sm750fb/
10428
Joe Perches510fa4082014-02-10 16:37:56 -080010429STAGING - SLICOSS
10430M: Lior Dotan <liodot@gmail.com>
10431M: Christopher Harrer <charrer@alacritech.com>
10432S: Odd Fixes
10433F: drivers/staging/slicoss/
10434
Joe Perchesa0138162011-07-05 15:21:34 -070010435STAGING - SPEAKUP CONSOLE SPEECH DRIVER
10436M: William Hubbs <w.d.hubbs@gmail.com>
10437M: Chris Brannon <chris@the-brannons.com>
William Hubbsd33bce32013-05-12 13:49:54 -050010438M: Kirk Reiser <kirk@reisers.ca>
Joe Perchesa0138162011-07-05 15:21:34 -070010439M: Samuel Thibault <samuel.thibault@ens-lyon.org>
Samuel Thibaulte6a152e2014-07-17 23:34:58 +020010440L: speakup@linux-speakup.org
Joe Perchesa0138162011-07-05 15:21:34 -070010441W: http://www.linux-speakup.org/
10442S: Odd Fixes
10443F: drivers/staging/speakup/
10444
Joe Perchesb3e871c2011-07-05 09:42:10 -070010445STAGING - VIA VT665X DRIVERS
10446M: Forest Bond <forest@alittletooquiet.net>
10447S: Odd Fixes
10448F: drivers/staging/vt665?/
10449
Johnny Kima30baec2015-05-11 14:30:57 +090010450STAGING - WILC1000 WIFI DRIVER
10451M: Johnny Kim <johnny.kim@atmel.com>
Tony Cho0c9dbce2015-10-28 17:43:27 +090010452M: Austin Shin <austin.shin@atmel.com>
Johnny Kima30baec2015-05-11 14:30:57 +090010453M: Chris Park <chris.park@atmel.com>
Tony Cho06b54862015-09-08 17:08:01 +090010454M: Tony Cho <tony.cho@atmel.com>
10455M: Glen Lee <glen.lee@atmel.com>
10456M: Leo Kim <leo.kim@atmel.com>
Johnny Kima30baec2015-05-11 14:30:57 +090010457L: linux-wireless@vger.kernel.org
10458S: Supported
10459F: drivers/staging/wilc1000/
10460
Joe Perches709bcb02011-07-05 09:42:13 -070010461STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +020010462M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -070010463S: Odd Fixes
10464F: drivers/staging/xgifb/
10465
Mike Marciniszyn77241052015-07-30 15:17:43 -040010466HFI1 DRIVER
10467M: Mike Marciniszyn <infinipath@intel.com>
10468L: linux-rdma@vger.kernel.org
10469S: Supported
10470F: drivers/staging/rdma/hfi1
10471
Linus Torvalds1da177e2005-04-16 15:20:36 -070010472STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010473M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -070010474S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -070010475F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010476
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010477SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -070010478M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010479W: http://sammy.net/sun3/
10480S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010481F: arch/m68k/kernel/*sun3*
10482F: arch/m68k/sun3*/
10483F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -070010484F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010485
Hans de Goedeaf6a5af2014-12-18 09:24:50 -080010486SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
10487M: Hans de Goede <hdegoede@redhat.com>
10488L: linux-input@vger.kernel.org
10489S: Maintained
10490F: Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
10491F: drivers/input/keyboard/sun4i-lradc-keys.c
10492
Denis Kirjanov2bc9ff02013-08-17 09:08:49 +040010493SUNDANCE NETWORK DRIVER
10494M: Denis Kirjanov <kda@linux-powerpc.org>
10495L: netdev@vger.kernel.org
10496S: Maintained
10497F: drivers/net/ethernet/dlink/sundance.c
10498
Paul Mundt2cbb12a2007-11-19 13:08:37 +090010499SUPERH
Rich Felker114bf372016-01-22 15:11:05 -080010500M: Yoshinori Sato <ysato@users.sourceforge.jp>
10501M: Rich Felker <dalias@libc.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +090010502L: linux-sh@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -080010503Q: http://patchwork.kernel.org/project/linux-sh/list/
Rich Felker114bf372016-01-22 15:11:05 -080010504S: Maintained
Paul Mundt066069e2009-04-14 06:32:08 +090010505F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -070010506F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +090010507F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010508
Randy Dunlap4480f15b2008-10-12 16:11:58 -070010509SUSPEND TO RAM
Rafael J. Wysocki7fb06082014-03-20 03:34:47 +010010510M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Joe Perches8b58be82009-07-29 15:04:30 -070010511M: Len Brown <len.brown@intel.com>
10512M: Pavel Machek <pavel@ucw.cz>
WANG Congbf1c1382011-10-08 20:57:50 +020010513L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010514S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010515F: Documentation/power/
10516F: arch/x86/kernel/acpi/
10517F: drivers/base/power/
10518F: kernel/power/
10519F: include/linux/suspend.h
10520F: include/linux/freezer.h
10521F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070010522
10523SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -070010524M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010525L: linux-video@atrey.karlin.mff.cuni.cz
10526S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010527F: Documentation/svga.txt
10528F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010529
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -070010530SWIOTLB SUBSYSTEM
10531M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10532L: linux-kernel@vger.kernel.org
Fengguang Wu9f273c22016-01-20 15:03:25 -080010533T: git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -070010534S: Supported
10535F: lib/swiotlb.c
10536F: arch/*/kernel/pci-swiotlb.c
10537F: include/linux/swiotlb.h
10538
Jiri Pirko007f7902014-11-28 14:34:17 +010010539SWITCHDEV
10540M: Jiri Pirko <jiri@resnulli.us>
10541L: netdev@vger.kernel.org
10542S: Supported
10543F: net/switchdev/
10544F: include/net/switchdev.h
10545
Vineet Guptadb8e35d2013-01-18 15:12:25 +053010546SYNOPSYS ARC ARCHITECTURE
10547M: Vineet Gupta <vgupta@synopsys.com>
Vineet Gupta30b9dbe2015-11-14 12:58:53 +053010548L: linux-snps-arc@lists.infradead.org
Vineet Guptadb8e35d2013-01-18 15:12:25 +053010549S: Supported
10550F: arch/arc/
Vineet Gupta9b288292014-11-18 17:36:11 +053010551F: Documentation/devicetree/bindings/arc/*
Rob Herring2d799dd2015-11-05 13:40:40 -060010552F: Documentation/devicetree/bindings/interrupt-controller/snps,arc*
Joe Perchesc6a0fe42013-09-11 14:23:45 -070010553F: drivers/tty/serial/arc_uart.c
Baruch Siachb7182d12015-08-11 12:08:32 +030010554T: git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
Vineet Guptadb8e35d2013-01-18 15:12:25 +053010555
Alexey Brodkin556cc1c2014-01-27 14:51:34 +010010556SYNOPSYS ARC SDP platform support
10557M: Alexey Brodkin <abrodkin@synopsys.com>
10558S: Supported
10559F: arch/arc/plat-axs10x
10560F: arch/arc/boot/dts/ax*
10561F: Documentation/devicetree/bindings/arc/axs10*
10562
Lee Jones6c284c92015-05-12 14:13:58 +010010563SYSTEM CONFIGURATION (SYSCON)
10564M: Lee Jones <lee.jones@linaro.org>
10565M: Arnd Bergmann <arnd@arndb.de>
10566T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
10567S: Supported
10568F: drivers/mfd/syscon.c
10569
Linus Torvalds1da177e2005-04-16 15:20:36 -070010570SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070010571M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010572S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010573F: Documentation/filesystems/sysv-fs.txt
10574F: fs/sysv/
10575F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070010576
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -070010577TARGET SUBSYSTEM
Joe Perches9c3646d2015-06-25 15:02:00 -070010578M: "Nicholas A. Bellinger" <nab@linux-iscsi.org>
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -070010579L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +000010580L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -070010581W: http://www.linux-iscsi.org
Joe Perchescf015e92014-02-25 15:01:47 -080010582W: http://groups.google.com/group/linux-iscsi-target-dev
Nicholas Bellinger452cf322013-05-11 16:27:56 -070010583T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -070010584S: Supported
10585F: drivers/target/
10586F: include/target/
10587F: Documentation/target/
10588
Alan Cox4e688522008-04-30 00:52:11 -070010589TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -070010590M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -070010591S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010592F: Documentation/accounting/taskstats*
10593F: include/linux/taskstats*
10594F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -070010595
Stephen Hemminger781b456a2006-07-10 20:25:29 -070010596TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +000010597M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-07-10 20:25:29 -070010598L: netdev@vger.kernel.org
10599S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010600F: include/net/pkt_cls.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010601F: include/uapi/linux/pkt_cls.h
Joe Perches679655d2009-04-07 20:44:32 -070010602F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -070010603
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -070010604TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -070010605M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
10606M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -070010607W: http://tcp-lp-mod.sourceforge.net/
10608S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010609F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -070010610
Antti Palosaari91952bc2012-10-01 12:28:46 -030010611TDA10071 MEDIA DRIVER
10612M: Antti Palosaari <crope@iki.fi>
10613L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010614W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -030010615W: http://palosaari.fi/linux/
10616Q: http://patchwork.linuxtv.org/project/linux-media/list/
10617T: git git://linuxtv.org/anttip/media_tree.git
10618S: Maintained
10619F: drivers/media/dvb-frontends/tda10071*
10620
10621TDA18212 MEDIA DRIVER
10622M: Antti Palosaari <crope@iki.fi>
10623L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010624W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -030010625W: http://palosaari.fi/linux/
10626Q: http://patchwork.linuxtv.org/project/linux-media/list/
10627T: git git://linuxtv.org/anttip/media_tree.git
10628S: Maintained
10629F: drivers/media/tuners/tda18212*
10630
10631TDA18218 MEDIA DRIVER
10632M: Antti Palosaari <crope@iki.fi>
10633L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010634W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -030010635W: http://palosaari.fi/linux/
10636Q: http://patchwork.linuxtv.org/project/linux-media/list/
10637T: git git://linuxtv.org/anttip/media_tree.git
10638S: Maintained
10639F: drivers/media/tuners/tda18218*
10640
Michael Krufky3b2f6ab2012-10-02 00:55:32 -030010641TDA18271 MEDIA DRIVER
10642M: Michael Krufky <mkrufky@linuxtv.org>
10643L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010644W: https://linuxtv.org
Michael Krufky3b2f6ab2012-10-02 00:55:32 -030010645W: http://github.com/mkrufky
10646Q: http://patchwork.linuxtv.org/project/linux-media/list/
10647T: git git://linuxtv.org/mkrufky/tuners.git
10648S: Maintained
10649F: drivers/media/tuners/tda18271*
10650
Michael Krufkye48307a2012-10-02 00:56:33 -030010651TDA827x MEDIA DRIVER
10652M: Michael Krufky <mkrufky@linuxtv.org>
10653L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010654W: https://linuxtv.org
Michael Krufkye48307a2012-10-02 00:56:33 -030010655W: http://github.com/mkrufky
10656Q: http://patchwork.linuxtv.org/project/linux-media/list/
10657T: git git://linuxtv.org/mkrufky/tuners.git
10658S: Maintained
10659F: drivers/media/tuners/tda8290.*
10660
Michael Krufky66cf9212012-10-02 00:56:28 -030010661TDA8290 MEDIA DRIVER
10662M: Michael Krufky <mkrufky@linuxtv.org>
10663L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010664W: https://linuxtv.org
Michael Krufky66cf9212012-10-02 00:56:28 -030010665W: http://github.com/mkrufky
10666Q: http://patchwork.linuxtv.org/project/linux-media/list/
10667T: git git://linuxtv.org/mkrufky/tuners.git
10668S: Maintained
10669F: drivers/media/tuners/tda8290.*
10670
Hans Verkuil4b9fba32012-11-23 10:02:05 -030010671TDA9840 MEDIA DRIVER
10672M: Hans Verkuil <hverkuil@xs4all.nl>
10673L: linux-media@vger.kernel.org
10674T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010675W: https://linuxtv.org
Hans Verkuil4b9fba32012-11-23 10:02:05 -030010676S: Maintained
10677F: drivers/media/i2c/tda9840*
10678
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -020010679TEA5761 TUNER DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -020010680M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -020010681L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010682W: https://linuxtv.org
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -020010683T: git git://linuxtv.org/media_tree.git
10684S: Odd fixes
10685F: drivers/media/tuners/tea5761.*
10686
10687TEA5767 TUNER DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -020010688M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -020010689L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010690W: https://linuxtv.org
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -020010691T: git git://linuxtv.org/media_tree.git
10692S: Maintained
10693F: drivers/media/tuners/tea5767.*
10694
Hans Verkuil4b9fba32012-11-23 10:02:05 -030010695TEA6415C MEDIA DRIVER
10696M: Hans Verkuil <hverkuil@xs4all.nl>
10697L: linux-media@vger.kernel.org
10698T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010699W: https://linuxtv.org
Hans Verkuil4b9fba32012-11-23 10:02:05 -030010700S: Maintained
10701F: drivers/media/i2c/tea6415c*
10702
10703TEA6420 MEDIA DRIVER
10704M: Hans Verkuil <hverkuil@xs4all.nl>
10705L: linux-media@vger.kernel.org
10706T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010707W: https://linuxtv.org
Hans Verkuil4b9fba32012-11-23 10:02:05 -030010708S: Maintained
10709F: drivers/media/i2c/tea6420*
10710
Jiri Pirko3d249d42011-11-11 22:16:48 +000010711TEAM DRIVER
Jiri Pirkodca9ab92013-02-15 23:55:05 +000010712M: Jiri Pirko <jiri@resnulli.us>
Jiri Pirko3d249d42011-11-11 22:16:48 +000010713L: netdev@vger.kernel.org
10714S: Supported
10715F: drivers/net/team/
10716F: include/linux/if_team.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010717F: include/uapi/linux/if_team.h
Jiri Pirko3d249d42011-11-11 22:16:48 +000010718
Vivien Didelot7d029122013-01-04 16:18:14 -050010719TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
Joe Perches9c3646d2015-06-25 15:02:00 -070010720M: "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
Vivien Didelot7d029122013-01-04 16:18:14 -050010721S: Maintained
10722F: arch/x86/platform/ts5500/
10723
Sean Young40ad4a32012-11-19 10:32:53 -030010724TECHNOTREND USB IR RECEIVER
10725M: Sean Young <sean@mess.org>
10726L: linux-media@vger.kernel.org
10727S: Maintained
10728F: drivers/media/rc/ttusbir.c
10729
Stephen Warrenadabdb02013-09-13 13:00:57 -060010730TEGRA ARCHITECTURE SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -070010731M: Stephen Warren <swarren@wwwdotorg.org>
Stephen Warrenadabdb02013-09-13 13:00:57 -060010732M: Thierry Reding <thierry.reding@gmail.com>
Stephen Warren554077c2014-10-03 09:50:32 -060010733M: Alexandre Courbot <gnurou@gmail.com>
Erik Gilling84b94142010-06-09 15:35:53 -070010734L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -070010735Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
Andreas Färberb779b882014-07-28 12:06:26 -060010736T: git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
Erik Gilling84b94142010-06-09 15:35:53 -070010737S: Supported
Stephen Warrenbbbe96e2013-04-29 16:17:23 -070010738N: [^a-z]tegra
Erik Gilling84b94142010-06-09 15:35:53 -070010739
Stephen Warrenadabdb02013-09-13 13:00:57 -060010740TEGRA CLOCK DRIVER
10741M: Peter De Schrijver <pdeschrijver@nvidia.com>
10742M: Prashant Gaikwad <pgaikwad@nvidia.com>
10743S: Supported
10744F: drivers/clk/tegra/
10745
10746TEGRA DMA DRIVER
10747M: Laxman Dewangan <ldewangan@nvidia.com>
10748S: Supported
10749F: drivers/dma/tegra20-apb-dma.c
10750
Stephen Warrenadabdb02013-09-13 13:00:57 -060010751TEGRA I2C DRIVER
10752M: Laxman Dewangan <ldewangan@nvidia.com>
10753S: Supported
10754F: drivers/i2c/busses/i2c-tegra.c
10755
10756TEGRA IOMMU DRIVERS
10757M: Hiroshi Doyu <hdoyu@nvidia.com>
10758S: Supported
10759F: drivers/iommu/tegra*
10760
10761TEGRA KBC DRIVER
10762M: Rakesh Iyer <riyer@nvidia.com>
10763M: Laxman Dewangan <ldewangan@nvidia.com>
10764S: Supported
10765F: drivers/input/keyboard/tegra-kbc.c
10766
Stephen Warrenadabdb02013-09-13 13:00:57 -060010767TEGRA PWM DRIVER
10768M: Thierry Reding <thierry.reding@gmail.com>
10769S: Supported
10770F: drivers/pwm/pwm-tegra.c
10771
10772TEGRA SERIAL DRIVER
10773M: Laxman Dewangan <ldewangan@nvidia.com>
10774S: Supported
10775F: drivers/tty/serial/serial-tegra.c
10776
10777TEGRA SPI DRIVER
10778M: Laxman Dewangan <ldewangan@nvidia.com>
10779S: Supported
10780F: drivers/spi/spi-tegra*
10781
Andy Gospodarek1a348cc2007-09-17 18:50:36 -070010782TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010783M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -070010784L: netdev@vger.kernel.org
10785S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -070010786F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -070010787
Alan Cox4e688522008-04-30 00:52:11 -070010788Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -070010789M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -070010790S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010791F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -070010792
Randy Dunlap4480f15b2008-10-12 16:11:58 -070010793TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -070010794M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -070010795M: Max Filippov <jcmvbkbc@gmail.com>
10796L: linux-xtensa@linux-xtensa.org
Fengguang Wu9f273c22016-01-20 15:03:25 -080010797T: git git://github.com/czankel/xtensa-linux.git
Alan Cox4e688522008-04-30 00:52:11 -070010798S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010799F: arch/xtensa/
Max Filippov3dc99852014-04-03 14:48:48 -070010800F: drivers/irqchip/irq-xtensa-*
Alan Cox4e688522008-04-30 00:52:11 -070010801
Hans Verkuil5313ba62013-12-13 09:00:38 -030010802THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
10803M: Hans Verkuil <hverkuil@xs4all.nl>
10804L: linux-media@vger.kernel.org
10805T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010806W: https://linuxtv.org
Hans Verkuil5313ba62013-12-13 09:00:38 -030010807S: Maintained
10808F: drivers/media/radio/radio-raremono.c
10809
Zhang Ruid3fb6952012-11-15 08:58:27 +080010810THERMAL
Joe Perchesb75f0052014-03-03 15:38:37 -080010811M: Zhang Rui <rui.zhang@intel.com>
Lee Jonesf14d1c22014-05-30 11:03:28 +010010812M: Eduardo Valentin <edubezval@gmail.com>
Joe Perchesb75f0052014-03-03 15:38:37 -080010813L: linux-pm@vger.kernel.org
10814T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
10815T: git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
10816Q: https://patchwork.kernel.org/project/linux-pm/list/
10817S: Supported
10818F: drivers/thermal/
10819F: include/linux/thermal.h
Florian Fainelliaf6c9f12014-11-19 18:11:00 -080010820F: include/uapi/linux/thermal.h
Joe Perchesb75f0052014-03-03 15:38:37 -080010821F: include/linux/cpu_cooling.h
10822F: Documentation/devicetree/bindings/thermal/
Zhang Ruid3fb6952012-11-15 08:58:27 +080010823
Viresh Kumar64e05d82015-08-27 07:32:11 +053010824THERMAL/CPU_COOLING
10825M: Amit Daniel Kachhap <amit.kachhap@gmail.com>
10826M: Viresh Kumar <viresh.kumar@linaro.org>
10827M: Javi Merino <javi.merino@arm.com>
10828L: linux-pm@vger.kernel.org
10829S: Supported
10830F: Documentation/thermal/cpu-cooling-api.txt
10831F: drivers/thermal/cpu_cooling.c
10832F: include/linux/cpu_cooling.h
10833
Vivien Didelot30ba2fb2013-01-22 12:01:21 -050010834THINGM BLINK(1) USB RGB LED DRIVER
10835M: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
10836S: Maintained
10837F: drivers/hid/hid-thingm.c
10838
Alan Cox4e688522008-04-30 00:52:11 -070010839THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010840M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -070010841L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -050010842L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -070010843W: http://ibm-acpi.sourceforge.net
10844W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -070010845T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -070010846S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010847F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -070010848
Eduardo Valentin1b46f2a2013-03-15 09:00:34 -040010849TI BANDGAP AND THERMAL DRIVER
Lee Jonesf14d1c22014-05-30 11:03:28 +010010850M: Eduardo Valentin <edubezval@gmail.com>
Eduardo Valentin1b46f2a2013-03-15 09:00:34 -040010851L: linux-pm@vger.kernel.org
Nishanth Menon531ff132015-01-03 13:13:30 -060010852L: linux-omap@vger.kernel.org
Eduardo Valentin5a723e82015-01-05 17:48:13 -040010853S: Maintained
Eduardo Valentin794b2e22013-05-15 15:46:01 +000010854F: drivers/thermal/ti-soc-thermal/
Eduardo Valentin1b46f2a2013-03-15 09:00:34 -040010855
Max Filippov0c7665c2015-01-12 10:20:46 +030010856TI CDCE706 CLOCK DRIVER
10857M: Max Filippov <jcmvbkbc@gmail.com>
10858S: Maintained
10859F: drivers/clk/clk-cdce706.c
10860
Tero Kristo49b6a5e2014-07-02 17:03:50 +030010861TI CLOCK DRIVER
10862M: Tero Kristo <t-kristo@ti.com>
10863L: linux-omap@vger.kernel.org
10864S: Maintained
10865F: drivers/clk/ti/
10866F: include/linux/clk/ti.h
10867
Alex Dubov4020f2d2006-10-04 02:15:37 -070010868TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010869M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020010870S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010871F: drivers/misc/tifm*
10872F: drivers/mmc/host/tifm_sd.c
10873F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -070010874
Santosh Shilimkare0c52402014-07-10 11:30:08 -040010875TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
Santosh Shilimkar97215802014-10-13 14:16:28 -040010876M: Santosh Shilimkar <ssantosh@kernel.org>
Santosh Shilimkare0c52402014-07-10 11:30:08 -040010877L: linux-kernel@vger.kernel.org
10878L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10879S: Maintained
10880F: drivers/soc/ti/*
10881T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
10882
10883
M R Swami Reddy152ad442012-04-02 20:02:31 +053010884TI LM49xxx FAMILY ASoC CODEC DRIVERS
10885M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +053010886M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +053010887L: alsa-devel@alsa-project.org (moderated for non-subscribers)
10888S: Maintained
10889F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +053010890F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +053010891
Kim, Milo0edd8072012-12-17 16:01:17 -080010892TI LP855x BACKLIGHT DRIVER
10893M: Milo Kim <milo.kim@ti.com>
10894S: Maintained
10895F: Documentation/backlight/lp855x-driver.txt
10896F: drivers/video/backlight/lp855x_bl.c
10897F: include/linux/platform_data/lp855x.h
10898
Kim, Milofaf13f62012-12-10 05:27:03 +000010899TI LP8727 CHARGER DRIVER
10900M: Milo Kim <milo.kim@ti.com>
10901S: Maintained
10902F: drivers/power/lp8727_charger.c
10903F: include/linux/platform_data/lp8727.h
10904
Kim, Milo22f12292012-12-10 05:27:55 +000010905TI LP8788 MFD DRIVER
10906M: Milo Kim <milo.kim@ti.com>
10907S: Maintained
10908F: drivers/iio/adc/lp8788_adc.c
10909F: drivers/leds/leds-lp8788.c
10910F: drivers/mfd/lp8788*.c
10911F: drivers/power/lp8788-charger.c
10912F: drivers/regulator/lp8788-*.c
10913F: include/linux/mfd/lp8788*.h
10914
Karicheri, Muralidharan84640e22015-01-15 19:12:50 -050010915TI NETCP ETHERNET DRIVER
10916M: Wingman Kwok <w-kwok2@ti.com>
10917M: Murali Karicheri <m-karicheri2@ti.com>
10918L: netdev@vger.kernel.org
10919S: Maintained
10920F: drivers/net/ethernet/ti/netcp*
10921
Kevin Cernekee217e0ca2015-05-03 17:00:19 -070010922TI TAS571X FAMILY ASoC CODEC DRIVER
10923M: Kevin Cernekee <cernekee@chromium.org>
10924L: alsa-devel@alsa-project.org (moderated for non-subscribers)
10925S: Odd Fixes
10926F: sound/soc/codecs/tas571x*
10927
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +030010928TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +030010929M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +030010930L: alsa-devel@alsa-project.org (moderated for non-subscribers)
10931S: Maintained
10932F: sound/soc/codecs/twl4030*
10933
Luciano Coelho90921012011-11-20 21:40:41 +020010934TI WILINK WIRELESS DRIVERS
Luciano Coelho90921012011-11-20 21:40:41 +020010935L: linux-wireless@vger.kernel.org
10936W: http://wireless.kernel.org/en/users/Drivers/wl12xx
10937W: http://wireless.kernel.org/en/users/Drivers/wl1251
10938T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
Luciano Coelho22d072f2013-12-09 22:28:32 +020010939S: Orphan
Luciano Coelho90921012011-11-20 21:40:41 +020010940F: drivers/net/wireless/ti/
10941F: include/linux/wl12xx.h
10942
Per Lidene86eaa32006-01-12 16:45:18 +010010943TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -070010944M: Jon Maloy <jon.maloy@ericsson.com>
Jon Paul Maloy115403d2015-03-09 14:44:13 -040010945M: Ying Xue <ying.xue@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -050010946L: netdev@vger.kernel.org (core kernel code)
10947L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +010010948W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +010010949S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010950F: include/uapi/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -070010951F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +010010952
Chris Metcalf867e3592010-05-28 23:09:12 -040010953TILE ARCHITECTURE
Chris Metcalfc47b15c2014-11-13 09:41:58 -050010954M: Chris Metcalf <cmetcalf@ezchip.com>
Chris Metcalf740e1432015-02-13 13:16:49 -050010955W: http://www.ezchip.com/scm/
Fengguang Wu7fa129c2015-12-18 10:15:37 -050010956T: git git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile.git
Chris Metcalf867e3592010-05-28 23:09:12 -040010957S: Supported
10958F: arch/tile/
Chris Metcalf6b940602013-08-07 10:45:01 -040010959F: drivers/char/tile-srom.c
Chris Metcalf5c770752011-03-01 13:01:49 -050010960F: drivers/edac/tile_edac.c
Chris Metcalf6b940602013-08-07 10:45:01 -040010961F: drivers/net/ethernet/tile/
10962F: drivers/rtc/rtc-tile.c
10963F: drivers/tty/hvc/hvc_tile.c
Chris Metcalfb5c6c1a2013-08-12 14:11:44 -040010964F: drivers/tty/serial/tilegx.c
Chris Metcalf6b940602013-08-07 10:45:01 -040010965F: drivers/usb/host/*-tilegx.c
10966F: include/linux/usb/tilegx.h
Chris Metcalf867e3592010-05-28 23:09:12 -040010967
Linus Torvalds1da177e2005-04-16 15:20:36 -070010968TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010969M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +080010970L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010971W: http://sourceforge.net/projects/tlan/
10972S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010973F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -070010974F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010975
Kentaro Takedad74db3b2009-02-05 17:18:18 +090010976TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -070010977M: Kentaro Takeda <takedakn@nttdata.co.jp>
10978M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +090010979L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
10980L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +090010981L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
10982L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
10983W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +090010984T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +090010985S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010986F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +090010987
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -030010988TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -030010989M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd0944852010-02-11 10:40:13 -050010990L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -030010991S: Maintained
10992F: drivers/platform/x86/topstar-laptop.c
10993
Linus Torvalds1da177e2005-04-16 15:20:36 -070010994TOSHIBA ACPI EXTRAS DRIVER
Azael Avalos0a63ca12015-03-06 18:14:42 -070010995M: Azael Avalos <coproscefalo@gmail.com>
Matthew Garrettd0944852010-02-11 10:40:13 -050010996L: platform-driver-x86@vger.kernel.org
Azael Avalos0a63ca12015-03-06 18:14:42 -070010997S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010998F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070010999
Azael Avalos0a63ca12015-03-06 18:14:42 -070011000TOSHIBA BLUETOOTH DRIVER
11001M: Azael Avalos <coproscefalo@gmail.com>
11002L: platform-driver-x86@vger.kernel.org
11003S: Maintained
11004F: drivers/platform/x86/toshiba_bluetooth.c
11005
11006TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
11007M: Azael Avalos <coproscefalo@gmail.com>
11008L: platform-driver-x86@vger.kernel.org
11009S: Maintained
11010F: drivers/platform/x86/toshiba_haps.c
11011
Azael Avalos14991fc2015-09-28 20:32:28 -060011012TOSHIBA WMI HOTKEYS DRIVER
11013M: Azael Avalos <coproscefalo@gmail.com>
11014L: platform-driver-x86@vger.kernel.org
11015S: Maintained
11016F: drivers/platform/x86/toshiba-wmi.c
11017
Linus Torvalds1da177e2005-04-16 15:20:36 -070011018TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011019M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011020W: http://www.buzzard.org.uk/toshiba/
11021S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011022F: drivers/char/toshiba.c
11023F: include/linux/toshiba.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011024F: include/uapi/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011025
Mats Randgaardd32d9862015-07-09 05:45:47 -030011026TOSHIBA TC358743 DRIVER
11027M: Mats Randgaard <matrandg@cisco.com>
11028L: linux-media@vger.kernel.org
11029S: Maintained
11030F: drivers/media/i2c/tc358743*
Mauro Carvalho Chehabb5dcee22015-11-10 12:01:44 -020011031F: include/media/i2c/tc358743.h
Mats Randgaardd32d9862015-07-09 05:45:47 -030011032
Pierre Ossmand719f902009-03-24 21:06:09 +010011033TMIO MMC DRIVER
Ben Hutchingsc4b13fb2015-04-27 00:01:53 +010011034M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +020011035L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +010011036S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +020011037F: drivers/mmc/host/tmio_mmc*
11038F: drivers/mmc/host/sh_mobile_sdhi.c
11039F: include/linux/mmc/tmio.h
11040F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +010011041
Guenter Roeck917cc4e2013-05-19 20:44:27 -070011042TMP401 HARDWARE MONITOR DRIVER
11043M: Guenter Roeck <linux@roeck-us.net>
11044L: lm-sensors@lm-sensors.org
11045S: Maintained
11046F: Documentation/hwmon/tmp401
11047F: drivers/hwmon/tmp401.c
11048
Hugh Dickins98f32602009-05-21 20:33:58 +010011049TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -070011050M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +010011051L: linux-mm@kvack.org
11052S: Maintained
11053F: include/linux/shmem_fs.h
11054F: mm/shmem.c
11055
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -020011056TM6000 VIDEO4LINUX DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -020011057M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -020011058L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020011059W: https://linuxtv.org
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -020011060T: git git://linuxtv.org/media_tree.git
11061S: Odd fixes
11062F: drivers/media/usb/tm6000/
11063
Hans Verkuilc65fde12014-08-10 05:16:39 -030011064TW68 VIDEO4LINUX DRIVER
11065M: Hans Verkuil <hverkuil@xs4all.nl>
11066L: linux-media@vger.kernel.org
11067T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020011068W: https://linuxtv.org
Hans Verkuilc65fde12014-08-10 05:16:39 -030011069S: Odd Fixes
11070F: drivers/media/pci/tw68/
11071
Alan Cox4e688522008-04-30 00:52:11 -070011072TPM DEVICE DRIVER
Peter Huewe901486b2013-10-22 19:28:30 +020011073M: Peter Huewe <peterhuewe@gmx.de>
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -030011074M: Marcel Selhorst <tpmdd@selhorst.net>
Jarkko Sakkinen89adb832015-10-16 12:14:28 +030011075M: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
Peter Huewece93b4b2015-03-15 01:05:31 +010011076R: Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
Peter Huewe383dec12013-10-30 20:54:45 +010011077W: http://tpmdd.sourceforge.net
Rajiv Andrade63a10df2008-10-15 22:04:36 -070011078L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Peter Huewef78c81b2015-01-17 15:17:51 +010011079Q: git git://github.com/PeterHuewe/linux-tpmdd.git
Fengguang Wu9f273c22016-01-20 15:03:25 -080011080T: git https://github.com/PeterHuewe/linux-tpmdd
Alan Cox4e688522008-04-30 00:52:11 -070011081S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011082F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -070011083
Ashley Lai1a0f1b22014-12-04 21:01:51 -060011084TPM IBM_VTPM DEVICE DRIVER
11085M: Ashley Lai <ashleydlai@gmail.com>
11086W: http://tpmdd.sourceforge.net
11087L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
11088S: Maintained
11089F: drivers/char/tpm/tpm_ibmvtpm*
11090
Joe Perchesd6f005a2009-10-26 16:49:40 -070011091TRACING
11092M: Steven Rostedt <rostedt@goodmis.org>
Joe Perchesd6f005a2009-10-26 16:49:40 -070011093M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +010011094T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -070011095S: Maintained
11096F: Documentation/trace/ftrace.txt
11097F: arch/*/*/*/ftrace.h
11098F: arch/*/kernel/ftrace.c
11099F: include/*/ftrace.h
11100F: include/linux/trace*.h
11101F: include/trace/
11102F: kernel/trace/
Masami Hiramatsu6e68e6c2014-09-22 23:42:50 +000011103F: tools/testing/selftests/ftrace/
Joe Perchesd6f005a2009-10-26 16:49:40 -070011104
Linus Torvalds1da177e2005-04-16 15:20:36 -070011105TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -070011106M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -070011107T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070011108S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +020011109K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -070011110
Alan Cox4e688522008-04-30 00:52:11 -070011111TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -080011112M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jiri Slabyd8130622015-07-17 16:23:20 -070011113M: Jiri Slaby <jslaby@suse.com>
Greg KH879a5a02012-01-31 20:02:00 -080011114S: Supported
Joe Perches08deed12012-03-23 15:01:57 -070011115T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Baruch Siach84e1eb82015-06-04 10:56:58 +030011116F: Documentation/serial/
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -020011117F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -080011118F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +010011119F: include/linux/serial_core.h
11120F: include/linux/serial.h
11121F: include/linux/tty.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011122F: include/uapi/linux/serial_core.h
11123F: include/uapi/linux/serial.h
11124F: include/uapi/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -070011125
Antti Palosaari91952bc2012-10-01 12:28:46 -030011126TUA9001 MEDIA DRIVER
11127M: Antti Palosaari <crope@iki.fi>
11128L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020011129W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -030011130W: http://palosaari.fi/linux/
11131Q: http://patchwork.linuxtv.org/project/linux-media/list/
11132T: git git://linuxtv.org/anttip/media_tree.git
11133S: Maintained
11134F: drivers/media/tuners/tua9001*
11135
Grant Grundler740db6d2008-02-17 11:53:49 -070011136TULIP NETWORK DRIVERS
Grant Grundler740db6d2008-02-17 11:53:49 -070011137L: netdev@vger.kernel.org
Grant Grundlercf869eb2015-11-19 17:56:12 -080011138L: linux-parisc@vger.kernel.org
11139S: Orphan
Joe Perches0f04e2a2012-01-10 15:08:56 -080011140F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011141
11142TUN/TAP driver
Jiri Slabyba57b6f2012-11-30 07:05:40 +000011143M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011144W: http://vtun.sourceforge.net/tun
11145S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011146F: Documentation/networking/tuntap.txt
11147F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011148
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -080011149TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070011150M: "Maciej W. Rozycki" <macro@linux-mips.org>
Ralf Baechlec4063392014-04-03 13:29:06 +020011151M: Ralf Baechle <ralf@linux-mips.org>
11152L: linux-mips@linux-mips.org
11153Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -080011154S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011155F: drivers/tc/
11156F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -080011157
Linus Torvalds1da177e2005-04-16 15:20:36 -070011158U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011159M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011160L: linux-scsi@vger.kernel.org
11161S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011162F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070011163
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011164UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +030011165M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +030011166M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011167L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +030011168T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011169W: http://www.linux-mtd.infradead.org/doc/ubifs.html
11170S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011171F: Documentation/filesystems/ubifs.txt
11172F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011173
Greg Ungerere1632fa2015-06-19 10:40:03 +100011174UCLINUX (M68KNOMMU AND COLDFIRE)
Joe Perches8b58be82009-07-29 15:04:30 -070011175M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +010011176W: http://www.uclinux.org/
Greg Ungerere1632fa2015-06-19 10:40:03 +100011177L: linux-m68k@lists.linux-m68k.org
Alan Coxcc2020e2008-05-19 14:21:51 +010011178L: uclinux-dev@uclinux.org (subscribers-only)
Greg Ungerere1632fa2015-06-19 10:40:03 +100011179T: git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
Alan Coxcc2020e2008-05-19 14:21:51 +010011180S: Maintained
Greg Ungerere1632fa2015-06-19 10:40:03 +100011181F: arch/m68k/coldfire/
11182F: arch/m68k/68*/
Joe Perches61bc02b2011-04-14 15:22:04 -070011183F: arch/m68k/*/*_no.*
11184F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +010011185
Linus Torvalds1da177e2005-04-16 15:20:36 -070011186UDF FILESYSTEM
Jiri Slabyd8130622015-07-17 16:23:20 -070011187M: Jan Kara <jack@suse.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011188S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011189F: Documentation/filesystems/udf.txt
11190F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011191
Alan Coxcc2020e2008-05-19 14:21:51 +010011192UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070011193M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +010011194S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011195F: Documentation/filesystems/ufs.txt
11196F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +010011197
David Herrmann0a09d3a2012-06-10 15:16:28 +020011198UHID USERSPACE HID IO DRIVER:
11199M: David Herrmann <dh.herrmann@googlemail.com>
11200L: linux-input@vger.kernel.org
11201S: Maintained
11202F: drivers/hid/uhid.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011203F: include/uapi/linux/uhid.h
David Herrmann0a09d3a2012-06-10 15:16:28 +020011204
David Vrabel18332a82008-09-17 16:34:44 +010011205ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +010011206L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +010011207S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +000011208F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -070011209F: include/linux/uwb.h
11210F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +010011211
GuanXuetaob31d8272011-01-16 00:35:49 +080011212UNICORE32 ARCHITECTURE:
11213M: Guan Xuetao <gxt@mprc.pku.edu.cn>
11214W: http://mprc.pku.edu.cn/~guanxuetao/linux
11215S: Maintained
Guan Xuetaoceebf4d2014-05-27 07:53:10 +080011216T: git git://github.com/gxt/linux.git
GuanXuetaob31d8272011-01-16 00:35:49 +080011217F: arch/unicore32/
11218
Tony Finchd8379ab2009-11-27 15:50:30 +000011219UNIFDEF
11220M: Tony Finch <dot@dotat.at>
11221W: http://dotat.at/prog/unifdef
11222S: Maintained
11223F: scripts/unifdef.c
11224
Linus Torvalds1da177e2005-04-16 15:20:36 -070011225UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011226M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011227W: http://www.kernel.dk
11228S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011229F: Documentation/cdrom/
11230F: drivers/cdrom/cdrom.c
11231F: include/linux/cdrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011232F: include/uapi/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011233
Benjamin Romer56df0122014-03-07 13:02:21 -060011234UNISYS S-PAR DRIVERS
Joe Perches49e7d9d2015-04-15 16:17:31 -070011235M: Benjamin Romer <benjamin.romer@unisys.com>
11236M: David Kershner <david.kershner@unisys.com>
11237L: sparmaintainer@unisys.com (Unisys internal)
11238S: Supported
11239F: drivers/staging/unisys/
Benjamin Romer56df0122014-03-07 13:02:21 -060011240
Vinayak Holikatti9941fa62012-04-20 14:11:50 +053011241UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
11242M: Vinayak Holikatti <vinholikatti@gmail.com>
Vinayak Holikatti9941fa62012-04-20 14:11:50 +053011243L: linux-scsi@vger.kernel.org
11244S: Supported
11245F: Documentation/scsi/ufs.txt
11246F: drivers/scsi/ufs/
11247
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011248UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +030011249M: Artem Bityutskiy <dedekind1@gmail.com>
Richard Weinberger346be9b2015-01-28 12:28:24 +010011250M: Richard Weinberger <richard@nod.at>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011251W: http://www.linux-mtd.infradead.org/
11252L: linux-mtd@lists.infradead.org
Artem Bityutskiyb6b44e02014-01-02 16:43:51 +020011253T: git git://git.infradead.org/ubifs-2.6.git
Richard Weinberger346be9b2015-01-28 12:28:24 +010011254S: Supported
Joe Perches80811492009-04-08 20:20:27 -070011255F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -070011256F: include/linux/mtd/ubi.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011257F: include/uapi/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011258
Linus Torvalds1da177e2005-04-16 15:20:36 -070011259USB ACM DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +020011260M: Oliver Neukum <oliver@neukum.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -070011261L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070011262S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011263F: Documentation/usb/acm.txt
11264F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011265
Pontus Fuchsb7d572e2012-10-23 20:33:57 +020011266USB AR5523 WIRELESS DRIVER
11267M: Pontus Fuchs <pontus.fuchs@gmail.com>
11268L: linux-wireless@vger.kernel.org
11269S: Maintained
11270F: drivers/net/wireless/ath/ar5523/
11271
Matthew Wilcox115bb1f2010-10-07 13:05:23 +020011272USB ATTACHED SCSI
Hans de Goedef50a4962013-10-28 10:48:04 +000011273M: Hans de Goede <hdegoede@redhat.com>
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +010011274M: Gerd Hoffmann <kraxel@redhat.com>
Matthew Wilcox115bb1f2010-10-07 13:05:23 +020011275L: linux-usb@vger.kernel.org
11276L: linux-scsi@vger.kernel.org
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +010011277S: Maintained
Matthew Wilcox115bb1f2010-10-07 13:05:23 +020011278F: drivers/usb/storage/uas.c
11279
Linus Torvalds1da177e2005-04-16 15:20:36 -070011280USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +020011281M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011282L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070011283S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011284F: drivers/net/usb/cdc_*.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011285F: include/uapi/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011286
Keith Packard66e3e592015-03-19 20:36:49 -070011287USB CHAOSKEY DRIVER
11288M: Keith Packard <keithp@keithp.com>
11289L: linux-usb@vger.kernel.org
11290S: Maintained
11291F: drivers/usb/misc/chaoskey.c
11292
Peter Korsgaardb02b3712008-04-27 08:59:44 +020011293USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011294M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +020011295L: linux-usb@vger.kernel.org
11296S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011297F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +020011298
Peter Korsgaardd0374f42007-02-16 17:03:54 +010011299USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011300M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +020011301L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +010011302W: http://www.linux-usb.org/usbnet
11303S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011304F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +010011305
Alan Coxcc2020e2008-05-19 14:21:51 +010011306USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011307M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +010011308L: rio500-users@lists.sourceforge.net
11309W: http://rio500.sourceforge.net
11310S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011311F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +010011312
Linus Torvalds1da177e2005-04-16 15:20:36 -070011313USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -040011314M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011315L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -040011316S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011317F: Documentation/usb/ehci.txt
11318F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011319
David Brownell69ae9e32006-11-14 02:03:31 -080011320USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f662011-06-08 19:16:28 +030011321M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011322L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -080011323W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +030011324T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11325S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011326F: drivers/usb/gadget/
11327F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -080011328
Jiri Kosina2dea64b2007-07-11 12:12:11 +020011329USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Jiri Kosinae5f64502015-08-09 09:11:34 +020011330M: Jiri Kosina <jikos@kernel.org>
Jiri Kosina406df152015-11-20 10:16:06 +010011331R: Benjamin Tissoires <benjamin.tissoires@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011332L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -070011333T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070011334S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -070011335F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -070011336F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011337
Olav Kongas959eea22005-11-03 17:38:14 +020011338USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011339M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011340L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +020011341S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011342F: drivers/usb/host/isp116x*
11343F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +020011344
Linus Torvalds1da177e2005-04-16 15:20:36 -070011345USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011346M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011347L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -080011348L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -070011349S: Maintained
11350W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -070011351F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011352
Clemens Ladischaf399172011-01-10 16:32:54 +010011353USB MIDI DRIVER
11354M: Clemens Ladisch <clemens@ladisch.de>
11355L: alsa-devel@alsa-project.org (moderated for non-subscribers)
11356T: git git://git.alsa-project.org/alsa-kernel.git
11357S: Maintained
11358F: sound/usb/midi.*
11359
Joe Perches444ce9d2013-08-01 21:03:32 -070011360USB NETWORKING DRIVERS
11361L: linux-usb@vger.kernel.org
11362S: Odd Fixes
11363F: drivers/net/usb/
11364
Linus Torvalds1da177e2005-04-16 15:20:36 -070011365USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -040011366M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011367L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -040011368S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011369F: Documentation/usb/ohci.txt
11370F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011371
Peter Chen963ffa32015-02-15 12:22:59 +080011372USB OTG FSM (Finite State Machine)
Peter Chen60d77b32015-12-25 15:54:32 +080011373M: Peter Chen <Peter.Chen@nxp.com>
Peter Chen83738562015-03-23 19:57:36 +080011374T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
Peter Chen963ffa32015-02-15 12:22:59 +080011375L: linux-usb@vger.kernel.org
11376S: Maintained
11377F: drivers/usb/common/usb-otg-fsm.c
11378
Valentina Manea563da3a2014-08-20 07:31:02 +030011379USB OVER IP DRIVER
11380M: Valentina Manea <valentina.manea.m@gmail.com>
11381M: Shuah Khan <shuah.kh@samsung.com>
11382L: linux-usb@vger.kernel.org
11383S: Maintained
11384F: drivers/usb/usbip/
11385F: tools/usb/usbip/
11386
Linus Torvalds1da177e2005-04-16 15:20:36 -070011387USB PEGASUS DRIVER
Petko Manolova16b9452013-04-29 16:17:25 -070011388M: Petko Manolov <petkan@nucleusys.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011389L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +020011390L: netdev@vger.kernel.org
Petko Manolov052e3122013-11-15 11:51:54 +020011391T: git git://github.com/petkan/pegasus.git
11392W: https://github.com/petkan/pegasus
Linus Torvalds1da177e2005-04-16 15:20:36 -070011393S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011394F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011395
Felipe Balbid3ad5582012-05-21 16:24:49 +030011396USB PHY LAYER
11397M: Felipe Balbi <balbi@ti.com>
11398L: linux-usb@vger.kernel.org
11399T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11400S: Maintained
11401F: drivers/usb/phy/
Felipe Balbid3ad5582012-05-21 16:24:49 +030011402
Pete Zaitcev73e4fb32007-06-21 15:18:35 -070011403USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -070011404M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011405L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -070011406S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070011407F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070011408
Bjørn Mork4521b472015-12-03 19:24:23 +010011409USB QMI WWAN NETWORK DRIVER
11410M: Bjørn Mork <bjorn@mork.no>
11411L: netdev@vger.kernel.org
11412S: Maintained
11413F: Documentation/ABI/testing/sysfs-class-net-qmi
11414F: drivers/net/usb/qmi_wwan.c
11415
Linus Torvalds1da177e2005-04-16 15:20:36 -070011416USB RTL8150 DRIVER
Petko Manolova16b9452013-04-29 16:17:25 -070011417M: Petko Manolov <petkan@nucleusys.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011418L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +020011419L: netdev@vger.kernel.org
Petko Manolov052e3122013-11-15 11:51:54 +020011420T: git git://github.com/petkan/rtl8150.git
11421W: https://github.com/petkan/rtl8150
Linus Torvalds1da177e2005-04-16 15:20:36 -070011422S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011423F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070011424
Greg KHf896b792013-10-30 11:07:31 -070011425USB SERIAL SUBSYSTEM
Johan Hovold66085692014-06-23 12:33:15 +020011426M: Johan Hovold <johan@kernel.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011427L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -070011428S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011429F: Documentation/usb/usb-serial.txt
Greg KHf896b792013-10-30 11:07:31 -070011430F: drivers/usb/serial/
Joe Perches679655d2009-04-07 20:44:32 -070011431F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011432
Steve Glendinningb3f0db12012-08-15 21:53:38 +000011433USB SMSC75XX ETHERNET DRIVER
11434M: Steve Glendinning <steve.glendinning@shawell.net>
11435L: netdev@vger.kernel.org
11436S: Maintained
11437F: drivers/net/usb/smsc75xx.*
11438
Steve Glendinning2f7ca802008-10-02 05:27:57 +000011439USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +010011440M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +000011441L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +010011442S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011443F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +000011444
Linus Torvalds1da177e2005-04-16 15:20:36 -070011445USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -080011446M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011447L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070011448W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -070011449T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070011450S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070011451F: Documentation/usb/
Joe Perches679655d2009-04-07 20:44:32 -070011452F: drivers/usb/
11453F: include/linux/usb.h
11454F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011455
11456USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011457M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011458L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070011459S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011460F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011461
David Brownell69ae9e32006-11-14 02:03:31 -080011462USB "USBNET" DRIVER FRAMEWORK
Jiri Slabyd8130622015-07-17 16:23:20 -070011463M: Oliver Neukum <oneukum@suse.com>
Peter Korsgaard043600a2007-06-27 21:18:18 +020011464L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -080011465W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -070011466S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011467F: drivers/net/usb/usbnet.c
11468F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011469
Laurent Pinchartc0efd232008-06-30 15:04:50 -030011470USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -070011471M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -030011472L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -030011473L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -020011474T: git git://linuxtv.org/media_tree.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -030011475W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -030011476S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -030011477F: drivers/media/usb/uvc/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -020011478F: include/uapi/linux/uvcvideo.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011479
Hans Verkuilb60b9c42012-11-23 07:54:42 -030011480USB VISION DRIVER
11481M: Hans Verkuil <hverkuil@xs4all.nl>
11482L: linux-media@vger.kernel.org
11483T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020011484W: https://linuxtv.org
Hans Verkuilb60b9c42012-11-23 07:54:42 -030011485S: Odd Fixes
11486F: drivers/media/usb/usbvision/
11487
Laurent Pinchart8282da42012-10-04 02:32:42 +020011488USB WEBCAM GADGET
11489M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11490L: linux-usb@vger.kernel.org
11491S: Maintained
Andrzej Pietrasiewicz3a83c162014-09-09 02:02:09 +030011492F: drivers/usb/gadget/function/*uvc*
Joe Perchesfaf2e1d2014-08-08 14:26:18 -070011493F: drivers/usb/gadget/legacy/webcam.c
Laurent Pinchart8282da42012-10-04 02:32:42 +020011494
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +020011495USB WIRELESS RNDIS DRIVER (rndis_wlan)
Jussi Kivilinnae6146c52013-03-07 22:33:38 +020011496M: Jussi Kivilinna <jussi.kivilinna@iki.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +020011497L: linux-wireless@vger.kernel.org
11498S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011499F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +020011500
Sarah Sharpeb6bab12009-04-29 19:07:13 -070011501USB XHCI DRIVER
Sarah Sharp03d85052014-03-20 16:20:56 -070011502M: Mathias Nyman <mathias.nyman@intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -070011503L: linux-usb@vger.kernel.org
11504S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -080011505F: drivers/usb/host/xhci*
11506F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -070011507
Linus Torvalds1da177e2005-04-16 15:20:36 -070011508USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -040011509L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070011510W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -040011511S: Orphan
Kalle Valoed0ad062015-11-18 07:39:37 +020011512F: drivers/net/wireless/zydas/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011513
Antoine Jacquetb7eee612007-04-27 12:30:59 -030011514USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011515M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011516L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -030011517L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -020011518T: git git://linuxtv.org/media_tree.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -030011519W: http://royale.zerezo.com/zr364xx/
11520S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011521F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -030011522F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -030011523
Heikki Krogerus289fcff2015-05-13 15:26:42 +030011524ULPI BUS
11525M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
11526L: linux-usb@vger.kernel.org
11527S: Maintained
11528F: drivers/usb/common/ulpi.c
11529F: include/linux/ulpi/
11530
Randy Dunlape7839f22008-10-12 16:11:45 -070011531USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -070011532M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +010011533M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011534L: user-mode-linux-devel@lists.sourceforge.net
11535L: user-mode-linux-user@lists.sourceforge.net
11536W: http://user-mode-linux.sourceforge.net
Fengguang Wu9f273c22016-01-20 15:03:25 -080011537T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070011538S: Maintained
Rob Landley61516582011-05-06 09:27:36 -070011539F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -070011540F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +020011541F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -070011542F: fs/hostfs/
11543F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -030011544
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +010011545USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -070011546M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -080011547M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +010011548S: Maintained
Mandeep Sandhu3d3fecb2015-01-10 19:15:45 -080011549T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Joe Perches679655d2009-04-07 20:44:32 -070011550F: Documentation/DocBook/uio-howto.tmpl
11551F: drivers/uio/
11552F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +010011553
Karel Zak256cccb2012-06-01 10:13:09 +020011554UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -070011555M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +020011556L: util-linux@vger.kernel.org
11557W: http://en.wikipedia.org/wiki/Util-linux
11558T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -070011559S: Maintained
11560
Michal Januszewskic1fd1c02008-10-15 22:03:48 -070011561UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011562M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +010011563L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -070011564W: http://dev.gentoo.org/~spock/projects/uvesafb/
11565S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011566F: Documentation/fb/uvesafb.txt
Jingoo Han8a61f012014-07-01 15:36:01 +090011567F: drivers/video/fbdev/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -070011568
Stefan Agner456930d2015-09-02 18:06:33 -070011569VF610 NAND DRIVER
11570M: Stefan Agner <stefan@agner.ch>
11571L: linux-mtd@lists.infradead.org
11572S: Supported
11573F: drivers/mtd/nand/vf610_nfc.c
11574
Randy Dunlap4480f15b2008-10-12 16:11:58 -070011575VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070011576M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011577S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011578F: Documentation/filesystems/vfat.txt
11579F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011580
Alex Williamsoncba33452012-07-31 08:16:22 -060011581VFIO DRIVER
11582M: Alex Williamson <alex.williamson@redhat.com>
11583L: kvm@vger.kernel.org
Fengguang Wu9f273c22016-01-20 15:03:25 -080011584T: git git://github.com/awilliam/linux-vfio.git
Alex Williamsoncba33452012-07-31 08:16:22 -060011585S: Maintained
11586F: Documentation/vfio.txt
11587F: drivers/vfio/
11588F: include/linux/vfio.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011589F: include/uapi/linux/vfio.h
Alex Williamsoncba33452012-07-31 08:16:22 -060011590
Alex Williamsona714ea52015-06-18 11:59:22 -060011591VFIO PLATFORM DRIVER
11592M: Baptiste Reynal <b.reynal@virtualopensystems.com>
11593L: kvm@vger.kernel.org
11594S: Maintained
11595F: drivers/vfio/platform/
11596
Pawel Osciak9e6f3432011-06-15 15:08:32 -070011597VIDEOBUF2 FRAMEWORK
11598M: Pawel Osciak <pawel@osciak.com>
11599M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -030011600M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -070011601L: linux-media@vger.kernel.org
11602S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -030011603F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -070011604F: include/media/videobuf2-*
11605
Stephen Chandler Paul5523662e2015-10-24 13:10:29 -070011606VIRTUAL SERIO DEVICE DRIVER
11607M: Stephen Chandler Paul <thatslyude@gmail.com>
11608S: Maintained
11609F: drivers/input/serio/userio.c
11610F: include/uapi/linux/userio.h
11611
Amit Shah9a824462010-03-23 18:23:09 +053011612VIRTIO CONSOLE DRIVER
11613M: Amit Shah <amit.shah@redhat.com>
11614L: virtualization@lists.linux-foundation.org
11615S: Maintained
11616F: drivers/char/virtio_console.c
11617F: include/linux/virtio_console.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011618F: include/uapi/linux/virtio_console.h
Amit Shah9a824462010-03-23 18:23:09 +053011619
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +103011620VIRTIO CORE, NET AND BLOCK DRIVERS
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +103011621M: "Michael S. Tsirkin" <mst@redhat.com>
11622L: virtualization@lists.linux-foundation.org
11623S: Maintained
11624F: drivers/virtio/
Michael S. Tsirkinc893c8d2013-07-08 11:31:13 +093011625F: tools/virtio/
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +103011626F: drivers/net/virtio_net.c
11627F: drivers/block/virtio_blk.c
11628F: include/linux/virtio_*.h
Amos Kong916cdab2013-04-02 16:42:02 +103011629F: include/uapi/linux/virtio_*.h
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +103011630
Cornelia Huckf2dbda32015-07-01 17:15:37 +020011631VIRTIO DRIVERS FOR S390
11632M: Christian Borntraeger <borntraeger@de.ibm.com>
11633M: Cornelia Huck <cornelia.huck@de.ibm.com>
11634L: linux-s390@vger.kernel.org
11635L: virtualization@lists.linux-foundation.org
11636L: kvm@vger.kernel.org
11637S: Supported
Cornelia Huck1b568d92015-07-07 11:41:01 +020011638F: drivers/s390/virtio/
Cornelia Huckf2dbda32015-07-01 17:15:37 +020011639
Gerd Hoffmann4ad6ee92015-06-02 10:49:03 +020011640VIRTIO GPU DRIVER
11641M: David Airlie <airlied@linux.ie>
11642M: Gerd Hoffmann <kraxel@redhat.com>
11643L: dri-devel@lists.freedesktop.org
11644L: virtualization@lists.linux-foundation.org
11645S: Maintained
11646F: drivers/gpu/drm/virtio/
11647F: include/uapi/linux/virtio_gpu.h
11648
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000011649VIRTIO HOST (VHOST)
11650M: "Michael S. Tsirkin" <mst@redhat.com>
11651L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +000011652L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000011653L: netdev@vger.kernel.org
Fengguang Wu9f273c22016-01-20 15:03:25 -080011654T: git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000011655S: Maintained
11656F: drivers/vhost/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011657F: include/uapi/linux/vhost.h
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000011658
Gerd Hoffmann271c8652015-03-27 12:46:12 +103011659VIRTIO INPUT DRIVER
11660M: Gerd Hoffmann <kraxel@redhat.com>
11661S: Maintained
11662F: drivers/virtio/virtio_input.c
11663F: include/uapi/linux/virtio_input.h
11664
Linus Torvalds1da177e2005-04-16 15:20:36 -070011665VIA RHINE NETWORK DRIVER
Roger Luethi210347e2015-05-26 19:12:54 +020011666S: Orphan
Jeff Kirsherf2148a42011-05-20 20:43:09 -070011667F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070011668
Harald Weltef0bf7f62009-06-17 20:22:39 +020011669VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -080011670M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -070011671M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +020011672S: Maintained
11673F: drivers/mmc/host/via-sdmmc.c
11674
Joseph Chan69e4a7c2008-10-15 22:03:31 -070011675VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +000011676M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +010011677L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -070011678S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +000011679F: include/linux/via-core.h
11680F: include/linux/via-gpio.h
11681F: include/linux/via_i2c.h
Jingoo Han8a61f012014-07-01 15:36:01 +090011682F: drivers/video/fbdev/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -070011683
Francois Romieu01f20732007-01-26 00:57:17 -080011684VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011685M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -080011686L: netdev@vger.kernel.org
11687S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -070011688F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011689
Alex Williamsonf73f8172015-09-18 22:29:39 +080011690VIRT LIB
11691M: Alex Williamson <alex.williamson@redhat.com>
11692M: Paolo Bonzini <pbonzini@redhat.com>
11693L: kvm@vger.kernel.org
11694S: Supported
11695F: virt/lib/
11696
Hans Verkuil77911fd2014-12-10 04:22:37 -030011697VIVID VIRTUAL VIDEO DRIVER
Hans Verkuil0b7bc1f2012-11-23 08:21:50 -030011698M: Hans Verkuil <hverkuil@xs4all.nl>
11699L: linux-media@vger.kernel.org
11700T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020011701W: https://linuxtv.org
Hans Verkuil0b7bc1f2012-11-23 08:21:50 -030011702S: Maintained
Hans Verkuil77911fd2014-12-10 04:22:37 -030011703F: drivers/media/platform/vivid/*
Hans Verkuil0b7bc1f2012-11-23 08:21:50 -030011704
Patrick McHardybe7f8272007-10-23 20:26:36 -070011705VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -070011706M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -070011707L: netdev@vger.kernel.org
11708S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011709F: drivers/net/macvlan.c
11710F: include/linux/if_*vlan.h
11711F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -070011712
Florian Fainelli55e331c2009-06-16 15:33:53 -070011713VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -070011714M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -080011715L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -070011716S: Maintained
11717F: drivers/vlynq/vlynq.c
11718F: include/linux/vlynq.h
11719
Martyn Welch390beae2012-05-03 17:52:36 +010011720VME SUBSYSTEM
Martyn Welch74c600e2015-09-17 20:38:47 +010011721M: Martyn Welch <martyn@welchs.me.uk>
Manohar Vanga1bd289d2012-06-14 15:57:01 +020011722M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +010011723M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11724L: devel@driverdev.osuosl.org
11725S: Maintained
11726T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11727F: Documentation/vme_api.txt
11728F: drivers/staging/vme/
11729F: drivers/vme/
11730F: include/linux/vme*
11731
Alok Kataria4488e092013-09-04 14:23:41 +053011732VMWARE HYPERVISOR INTERFACE
11733M: Alok Kataria <akataria@vmware.com>
11734L: virtualization@lists.linux-foundation.org
11735S: Supported
11736F: arch/x86/kernel/cpu/vmware.c
11737
Dmitry Torokhov73b35d02014-06-20 10:14:58 -070011738VMWARE BALLOON DRIVER
11739M: Xavier Deguillard <xdeguillard@vmware.com>
11740M: Philip Moltmann <moltmann@vmware.com>
11741M: "VMware, Inc." <pv-drivers@vmware.com>
11742L: linux-kernel@vger.kernel.org
11743S: Maintained
11744F: drivers/misc/vmw_balloon.c
11745
Thomas Hellstrom8b8be512015-04-14 10:06:38 -070011746VMWARE VMMOUSE SUBDRIVER
11747M: "VMware Graphics" <linux-graphics-maintainer@vmware.com>
11748M: "VMware, Inc." <pv-drivers@vmware.com>
11749L: linux-input@vger.kernel.org
11750S: Maintained
11751F: drivers/input/mouse/vmmouse.c
11752F: drivers/input/mouse/vmmouse.h
11753
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -070011754VMWARE VMXNET3 ETHERNET DRIVER
Shrikrishna Khare04e1b732015-08-24 14:24:11 -070011755M: Shrikrishna Khare <skhare@vmware.com>
Joe Perches65c8bb52009-11-11 14:26:12 -080011756M: "VMware, Inc." <pv-drivers@vmware.com>
11757L: netdev@vger.kernel.org
11758S: Maintained
11759F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -070011760
Alok Kataria851b1642009-10-13 14:51:05 -070011761VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -080011762M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -070011763M: VMware PV-Drivers <pv-drivers@vmware.com>
11764L: linux-scsi@vger.kernel.org
11765S: Maintained
11766F: drivers/scsi/vmw_pvscsi.c
11767F: drivers/scsi/vmw_pvscsi.h
11768
Liam Girdwoode53e86c2008-07-10 15:48:00 +010011769VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Axel Lin88dd75a2013-03-25 16:49:51 +080011770M: Liam Girdwood <lgirdwood@gmail.com>
Mark Brownb02e48f2013-04-12 11:39:57 +010011771M: Mark Brown <broonie@kernel.org>
Mark Brown5cdeb2c2014-08-16 12:31:11 +010011772L: linux-kernel@vger.kernel.org
Liam Girdwood1dd68f02009-02-02 21:43:31 +000011773W: http://www.slimlogic.co.uk/?p=48
Sachin Kamat6febb5a2013-07-04 12:08:50 +053011774T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +010011775S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070011776F: drivers/regulator/
11777F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +010011778
David Ahern081958e2015-08-25 10:26:22 -070011779VRF
11780M: David Ahern <dsa@cumulusnetworks.com>
11781M: Shrijeet Mukherjee <shm@cumulusnetworks.com>
11782L: netdev@vger.kernel.org
11783S: Maintained
11784F: drivers/net/vrf.c
David Ahern562d8972015-09-15 10:50:14 -060011785F: Documentation/networking/vrf.txt
David Ahern081958e2015-08-25 10:26:22 -070011786
Juerg Haefligerab413192006-09-24 20:54:04 +020011787VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011788M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +020011789L: lm-sensors@lm-sensors.org
11790S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011791F: Documentation/hwmon/vt1211
11792F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +020011793
Roger Lucas1de9e372005-11-26 20:20:05 +010011794VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011795M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +010011796L: lm-sensors@lm-sensors.org
11797S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011798F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +010011799
Tony Olech88095e72011-05-14 16:48:13 -040011800VUB300 USB to SDIO/SD/MMC bridge chip
11801M: Tony Olech <tony.olech@elandigitalsystems.com>
11802L: linux-mmc@vger.kernel.org
11803L: linux-usb@vger.kernel.org
11804S: Supported
11805F: drivers/mmc/host/vub300.c
11806
Linus Torvalds1da177e2005-04-16 15:20:36 -070011807W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -070011808M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011809S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011810F: Documentation/w1/
11811F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011812
Charles Spirakis13927072006-07-05 18:05:15 +020011813W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011814M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +020011815L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -040011816S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011817F: Documentation/hwmon/w83791d
11818F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +020011819
Rudolf Marek61db0112006-12-12 18:18:30 +010011820W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011821M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +010011822L: lm-sensors@lm-sensors.org
11823S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011824F: Documentation/hwmon/w83793
11825F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +010011826
Jean Delvaree3760b42010-10-28 20:31:49 +020011827W83795 HARDWARE MONITORING DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -070011828M: Jean Delvare <jdelvare@suse.com>
Jean Delvaree3760b42010-10-28 20:31:49 +020011829L: lm-sensors@lm-sensors.org
11830S: Maintained
11831F: drivers/hwmon/w83795.c
11832
Linus Torvalds1da177e2005-04-16 15:20:36 -070011833W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011834M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011835S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011836F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011837
Hans de Goedeb4e05922014-07-20 13:35:44 -070011838WACOM PROTOCOL 4 SERIAL TABLETS
11839M: Julian Squires <julian@cipht.net>
11840M: Hans de Goede <hdegoede@redhat.com>
11841L: linux-input@vger.kernel.org
11842S: Maintained
11843F: drivers/input/tablet/wacom_serial4.c
11844
Wim Van Sebroeck35277612006-01-15 21:21:14 +010011845WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -070011846M: Wim Van Sebroeck <wim@iguana.be>
Guenter Roeck1f32f832015-12-05 22:18:25 -080011847R: Guenter Roeck <linux@roeck-us.net>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +000011848L: linux-watchdog@vger.kernel.org
11849W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +010011850T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +010011851S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011852F: Documentation/watchdog/
11853F: drivers/watchdog/
11854F: include/linux/watchdog.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011855F: include/uapi/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +010011856
Linus Torvalds1da177e2005-04-16 15:20:36 -070011857WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011858M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011859L: linux-scsi@vger.kernel.org
11860S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011861F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070011862
David Herrmannb22e00f2011-09-06 13:50:40 +020011863WIIMOTE HID DRIVER
11864M: David Herrmann <dh.herrmann@googlemail.com>
11865L: linux-input@vger.kernel.org
11866S: Maintained
11867F: drivers/hid/hid-wiimote*
11868
David Härdemane258b802009-09-21 17:04:53 -070011869WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -070011870M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -070011871S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -070011872F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -070011873
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -080011874WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -070011875M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -080011876M: linux-wimax@intel.com
Joe Perches49e7d9d2015-04-15 16:17:31 -070011877L: wimax@linuxwimax.org (subscribers-only)
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -080011878S: Supported
11879W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -070011880F: Documentation/wimax/README.wimax
Joe Perches315987d2010-08-09 17:20:50 -070011881F: include/linux/wimax/debug.h
11882F: include/net/wimax.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011883F: include/uapi/linux/wimax.h
Joe Perches315987d2010-08-09 17:20:50 -070011884F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -080011885
Dmitry Torokhov5fc146802005-11-20 00:50:06 -050011886WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011887M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -050011888S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011889F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -050011890
Linus Torvalds1da177e2005-04-16 15:20:36 -070011891WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011892M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -070011893L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -030011894W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -070011895S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011896F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011897
Mark Brown055bcbc2010-08-13 14:18:12 +010011898WOLFSON MICROELECTRONICS DRIVERS
Mark Brownfef95162012-04-04 12:06:24 +010011899L: patches@opensource.wolfsonmicro.com
Richard Fitzgeraldf0e03db2015-09-22 15:30:33 +010011900T: git https://github.com/CirrusLogic/linux-drivers.git
11901W: https://github.com/CirrusLogic/linux-drivers/wiki
Mark Brownb75ea162009-07-02 16:43:08 +010011902S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -080011903F: Documentation/hwmon/wm83??
Charles Keepaxf4949932015-10-27 16:01:59 +000011904F: Documentation/devicetree/bindings/extcon/extcon-arizona.txt
11905F: Documentation/devicetree/bindings/regulator/arizona-regulator.txt
11906F: Documentation/devicetree/bindings/mfd/arizona.txt
Mark Brownaf1c5382011-10-14 21:09:43 +010011907F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +010011908F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +010011909F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +010011910F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +010011911F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +010011912F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -050011913F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +090011914F: drivers/input/misc/wm831x-on.c
11915F: drivers/input/touchscreen/wm831x-ts.c
11916F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +010011917F: drivers/mfd/arizona*
11918F: drivers/mfd/wm*.c
Richard Fitzgerald12ebc132015-11-03 15:08:36 +000011919F: drivers/mfd/cs47l24*
Mark Brownb75ea162009-07-02 16:43:08 +010011920F: drivers/power/wm83*.c
11921F: drivers/rtc/rtc-wm83*.c
11922F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +010011923F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +010011924F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +010011925F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +010011926F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +010011927F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -080011928F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +090011929F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +010011930F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +010011931F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +010011932F: sound/soc/codecs/wm*
Richard Fitzgerald12ebc132015-11-03 15:08:36 +000011933F: sound/soc/codecs/cs47l24*
Mark Brownb75ea162009-07-02 16:43:08 +010011934
Tejun Heo3e6cd7a2010-12-10 17:20:23 +010011935WORKQUEUE
11936M: Tejun Heo <tj@kernel.org>
Lai Jiangshanbadb7f52015-07-01 15:38:04 +080011937R: Lai Jiangshan <jiangshanlai@gmail.com>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +010011938T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
11939S: Maintained
11940F: include/linux/workqueue.h
11941F: kernel/workqueue.c
11942F: Documentation/workqueue.txt
11943
Linus Torvalds1da177e2005-04-16 15:20:36 -070011944X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +000011945M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011946L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +000011947S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -070011948F: Documentation/networking/x25*
11949F: include/net/x25*
11950F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011951
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011952X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -070011953M: Thomas Gleixner <tglx@linutronix.de>
11954M: Ingo Molnar <mingo@redhat.com>
11955M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -080011956M: x86@kernel.org
Ingo Molnar981c3a42014-01-21 10:59:20 +010011957L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +010011958T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011959S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011960F: Documentation/x86/
11961F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011962
Matthew Garrettd0944852010-02-11 10:40:13 -050011963X86 PLATFORM DRIVERS
Darren Harte181ba12014-08-27 23:36:06 -070011964M: Darren Hart <dvhart@infradead.org>
Matthew Garrettd0944852010-02-11 10:40:13 -050011965L: platform-driver-x86@vger.kernel.org
Darren Harte181ba12014-08-27 23:36:06 -070011966T: git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
Matthew Garrettd0944852010-02-11 10:40:13 -050011967S: Maintained
Joe Perches14430812013-09-11 14:23:50 -070011968F: drivers/platform/x86/
Darren Hart3a4bcee2015-10-06 23:17:04 +010011969F: drivers/platform/olpc/
Matthew Garrettd0944852010-02-11 10:40:13 -050011970
Ingo Molnarc1f5c542011-06-18 22:51:13 +020011971X86 MCE INFRASTRUCTURE
11972M: Tony Luck <tony.luck@intel.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +010011973M: Borislav Petkov <bp@alien8.de>
Ingo Molnarc1f5c542011-06-18 22:51:13 +020011974L: linux-edac@vger.kernel.org
11975S: Maintained
11976F: arch/x86/kernel/cpu/mcheck/*
11977
Borislav Petkov79ebdc92015-10-20 11:54:49 +020011978X86 MICROCODE UPDATE SUPPORT
11979M: Borislav Petkov <bp@alien8.de>
11980S: Maintained
11981F: arch/x86/kernel/cpu/microcode/*
11982
Andy Lutomirskif0905c52014-12-12 16:25:47 -080011983X86 VDSO
11984M: Andy Lutomirski <luto@amacapital.net>
11985L: linux-kernel@vger.kernel.org
11986T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
11987S: Maintained
Ingo Molnard603c8e2015-06-03 18:05:44 +020011988F: arch/x86/entry/vdso/
Andy Lutomirskif0905c52014-12-12 16:25:47 -080011989
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -020011990XC2028/3028 TUNER DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -020011991M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -020011992L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020011993W: https://linuxtv.org
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -020011994T: git git://linuxtv.org/media_tree.git
11995S: Maintained
11996F: drivers/media/tuners/tuner-xc2028.*
11997
Ian Campbellc4468082011-04-27 15:26:46 -070011998XEN HYPERVISOR INTERFACE
Ian Campbellc4468082011-04-27 15:26:46 -070011999M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Konrad Rzeszutek Wilk3eeef8f2013-08-05 14:01:49 -040012000M: Boris Ostrovsky <boris.ostrovsky@oracle.com>
12001M: David Vrabel <david.vrabel@citrix.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040012002L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
David Vrabelea70ba32014-01-17 11:51:51 +000012003T: git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
Ian Campbellc4468082011-04-27 15:26:46 -070012004S: Supported
12005F: arch/x86/xen/
12006F: drivers/*/xen-*front.c
12007F: drivers/xen/
12008F: arch/x86/include/asm/xen/
12009F: include/xen/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080012010F: include/uapi/xen/
Ian Campbellc4468082011-04-27 15:26:46 -070012011
Stefano Stabellini77bfb472012-09-14 13:35:15 +000012012XEN HYPERVISOR ARM
12013M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040012014L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
Stefano Stabellini77bfb472012-09-14 13:35:15 +000012015S: Supported
12016F: arch/arm/xen/
12017F: arch/arm/include/asm/xen/
12018
Stefano Stabellinib475e832013-06-04 16:13:23 +000012019XEN HYPERVISOR ARM64
12020M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040012021L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
Stefano Stabellinib475e832013-06-04 16:13:23 +000012022S: Supported
12023F: arch/arm64/xen/
12024F: arch/arm64/include/asm/xen/
12025
Ian Campbell9b57e1a2011-04-03 23:12:23 +000012026XEN NETWORK BACKEND DRIVER
12027M: Ian Campbell <ian.campbell@citrix.com>
Wei Liu83860402013-09-26 12:41:53 +010012028M: Wei Liu <wei.liu2@citrix.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040012029L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
Ian Campbell9b57e1a2011-04-03 23:12:23 +000012030L: netdev@vger.kernel.org
12031S: Supported
12032F: drivers/net/xen-netback/*
12033
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -040012034XEN PCI SUBSYSTEM
12035M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040012036L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +020012037S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -040012038F: arch/x86/pci/*xen*
12039F: drivers/pci/*xen*
12040
Konrad Rzeszutek Wilka2c5ae62014-06-27 10:10:45 -040012041XEN BLOCK SUBSYSTEM
12042M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Roger Pau Monnebcadb692015-01-23 17:14:29 +010012043M: Roger Pau Monné <roger.pau@citrix.com>
Konrad Rzeszutek Wilka2c5ae62014-06-27 10:10:45 -040012044L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
12045S: Supported
12046F: drivers/block/xen-blkback/*
12047F: drivers/block/xen*
12048
Juergen Gross15d03602014-08-28 06:44:13 +020012049XEN PVSCSI DRIVERS
12050M: Juergen Gross <jgross@suse.com>
12051L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
12052L: linux-scsi@vger.kernel.org
12053S: Supported
12054F: drivers/scsi/xen-scsifront.c
12055F: drivers/xen/xen-scsiback.c
12056F: include/xen/interface/io/vscsiif.h
12057
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -040012058XEN SWIOTLB SUBSYSTEM
12059M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040012060L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -040012061S: Supported
12062F: arch/x86/xen/*swiotlb*
12063F: drivers/xen/*swiotlb*
12064
Linus Torvalds1da177e2005-04-16 15:20:36 -070012065XFS FILESYSTEM
12066P: Silicon Graphics Inc
Namjae Jeon809625c2013-12-08 23:33:50 +090012067M: Dave Chinner <david@fromorbit.com>
Ben Myers18caa672012-04-12 17:05:05 +000012068M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +100012069L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -070012070W: http://oss.sgi.com/projects/xfs
Fengguang Wu9f273c22016-01-20 15:03:25 -080012071T: git git://git.kernel.org/pub/scm/linux/kernel/git/dgc/linux-xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070012072S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070012073F: Documentation/filesystems/xfs.txt
12074F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -070012075
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +000012076XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +000012077M: Anirudha Sarangi <anirudh@xilinx.com>
12078M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +000012079S: Maintained
12080F: drivers/net/ethernet/xilinx/xilinx_axienet*
12081
Peter Korsgaard238b8722006-12-06 20:35:17 -080012082XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070012083M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -080012084L: linux-serial@vger.kernel.org
12085S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -080012086F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -080012087
Laurent Pinchartdf330512013-05-15 11:36:19 -030012088XILINX VIDEO IP CORES
12089M: Hyun Kwon <hyun.kwon@xilinx.com>
12090M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12091L: linux-media@vger.kernel.org
12092T: git git://linuxtv.org/media_tree.git
12093S: Supported
12094F: Documentation/devicetree/bindings/media/xilinx/
12095F: drivers/media/platform/xilinx/
Laurent Pincharta5562f62013-05-15 11:36:56 -030012096F: include/uapi/linux/xilinx-v4l2-controls.h
Laurent Pinchartdf330512013-05-15 11:36:19 -030012097
Eli Billauer74316942014-09-09 09:38:01 +030012098XILLYBUS DRIVER
12099M: Eli Billauer <eli.billauer@gmail.com>
12100L: linux-kernel@vger.kernel.org
12101S: Supported
12102F: drivers/char/xillybus/
12103
Max Filippovf620e4b2014-03-12 21:55:26 +040012104XTENSA XTFPGA PLATFORM SUPPORT
12105M: Max Filippov <jcmvbkbc@gmail.com>
12106L: linux-xtensa@linux-xtensa.org
12107S: Maintained
12108F: drivers/spi/spi-xtensa-xtfpga.c
Max Filippov57b70682014-12-26 20:19:38 +030012109F: sound/soc/xtensa/xtfpga-i2s.c
Max Filippovf620e4b2014-03-12 21:55:26 +040012110
Linus Torvalds1da177e2005-04-16 15:20:36 -070012111YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -070012112M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012113L: linux-hams@vger.kernel.org
12114S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070012115F: drivers/net/hamradio/yam*
12116F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070012117
Henkaf64a5e2005-10-12 15:02:56 +020012118YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070012119M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +020012120L: usbb2k-api-dev@nongnu.org
12121S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070012122F: Documentation/input/yealink.txt
12123F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +020012124
Linus Torvalds1da177e2005-04-16 15:20:36 -070012125Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -070012126M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012127W: http://yaina.de/jreuter/
12128W: http://www.qsl.net/dl1bke/
12129L: linux-hams@vger.kernel.org
12130S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070012131F: Documentation/networking/z8530drv.txt
12132F: drivers/net/hamradio/*scc.c
12133F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070012134
Seth Jennings0cf31ec2013-07-08 16:00:05 -070012135ZBUD COMPRESSED PAGE ALLOCATOR
Seth Jennings0e3b7e52014-05-06 12:50:02 -070012136M: Seth Jennings <sjennings@variantweb.net>
Seth Jennings0cf31ec2013-07-08 16:00:05 -070012137L: linux-mm@kvack.org
12138S: Maintained
12139F: mm/zbud.c
12140F: include/linux/zbud.h
12141
Daniel Drake7c0c3af2006-07-16 13:55:17 +010012142ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070012143M: Daniel Drake <dsd@gentoo.org>
12144M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +010012145W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -070012146L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +010012147L: zd1211-devs@lists.sourceforge.net (subscribers-only)
12148S: Maintained
Kalle Valo69483002015-11-18 09:27:32 +020012149F: drivers/net/wireless/zydas/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +010012150
Dan Streetman20263022015-06-30 14:59:57 -070012151ZPOOL COMPRESSED PAGE STORAGE API
12152M: Dan Streetman <ddstreet@ieee.org>
12153L: linux-mm@kvack.org
12154S: Maintained
12155F: mm/zpool.c
12156F: include/linux/zpool.h
12157
Linus Torvalds1da177e2005-04-16 15:20:36 -070012158ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -070012159L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -030012160L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070012161W: http://mjpeg.sourceforge.net/driver-zoran/
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020012162T: hg https://linuxtv.org/hg/v4l-dvb
Trent Piephof63145e2009-01-24 20:52:41 -030012163S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -030012164F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -070012165
Minchan Kim6920f2c2014-01-30 15:45:56 -080012166ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
12167M: Minchan Kim <minchan@kernel.org>
12168M: Nitin Gupta <ngupta@vflare.org>
Minchan Kim74f30372015-05-05 16:23:28 -070012169R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
Minchan Kim6920f2c2014-01-30 15:45:56 -080012170L: linux-kernel@vger.kernel.org
12171S: Maintained
12172F: drivers/block/zram/
12173F: Documentation/blockdev/zram.txt
12174
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -070012175ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070012176M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -070012177S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -080012178F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -070012179
Minchan Kimeae70d02014-01-30 15:45:57 -080012180ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
12181M: Minchan Kim <minchan@kernel.org>
12182M: Nitin Gupta <ngupta@vflare.org>
Sergey Senozhatsky41192a22015-10-22 13:32:13 -070012183R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
Minchan Kimeae70d02014-01-30 15:45:57 -080012184L: linux-mm@kvack.org
12185S: Maintained
12186F: mm/zsmalloc.c
12187F: include/linux/zsmalloc.h
Minchan Kimd02be502015-04-15 16:15:46 -070012188F: Documentation/vm/zsmalloc.txt
Minchan Kimeae70d02014-01-30 15:45:57 -080012189
Seth Jennings0cf31ec2013-07-08 16:00:05 -070012190ZSWAP COMPRESSED SWAP CACHING
Seth Jennings0e3b7e52014-05-06 12:50:02 -070012191M: Seth Jennings <sjennings@variantweb.net>
Seth Jennings0cf31ec2013-07-08 16:00:05 -070012192L: linux-mm@kvack.org
12193S: Maintained
12194F: mm/zswap.c
12195
Linus Torvalds1da177e2005-04-16 15:20:36 -070012196THE REST
Joe Perches8b58be82009-07-29 15:04:30 -070012197M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -070012198L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -080012199Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -040012200T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070012201S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -070012202F: *
12203F: */