blob: 355e1c85bad68a14a7cb4c1a5bdbba6d4689a420 [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 Garrettd09448532010-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 Garrettd09448532010-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 Garrettd09448532010-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 Rapoportd48134e2008-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 Lunn4cfab57e2014-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 Stuebner00250b5292014-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 Kalluriae9b56e32015-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 Garrettd09448532010-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 Skinnemoena1cfac482008-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 Skinnemoena1cfac482008-02-08 04:21:00 -08001945S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001946F: drivers/tty/serial/atmel_serial.c
Haavard Skinnemoena1cfac482008-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 Barrosf2294c2d2013-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 Kirsher9f2f381f2011-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
Sven Eckelmann7b5e7392015-12-06 16:15:07 +01002150W: https://www.open-mesh.org/
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002151S: 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 Anholt10b9e882015-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
Siva Reddy Kallamccad0992016-02-04 15:20:47 +05302427M: Siva Reddy Kallam <siva.kallam@broadcom.com>
Prashant Sreedharan23629472014-06-27 16:21:50 -07002428M: Prashant Sreedharan <prashant@broadcom.com>
Joe Perches8b58be82009-07-29 15:04:30 -07002429M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07002430L: netdev@vger.kernel.org
2431S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07002432F: drivers/net/ethernet/broadcom/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07002433
Henry Ptasinskia9533e72010-09-08 21:04:42 -07002434BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2435M: Brett Rudley <brudley@broadcom.com>
Henry Ptasinski818c07b2010-12-08 13:09:49 -08002436M: Arend van Spriel <arend@broadcom.com>
Roland Vossen85d63682011-06-01 13:44:56 +02002437M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
Arend van Spriel006a8f12012-11-28 21:44:04 +01002438M: Hante Meuleman <meuleman@broadcom.com>
Henry Ptasinskia9533e72010-09-08 21:04:42 -07002439L: linux-wireless@vger.kernel.org
Arend van Spriel56151712012-06-14 14:16:27 +02002440L: brcm80211-dev-list@broadcom.com
Henry Ptasinskia9533e72010-09-08 21:04:42 -07002441S: Supported
Kalle Valo05491d22015-11-17 19:52:05 +02002442F: drivers/net/wireless/broadcom/brcm80211/
Henry Ptasinskia9533e72010-09-08 21:04:42 -07002443
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07002444BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
Vikas Chaudhary3b7f0402014-07-03 08:18:29 -04002445M: QLogic-Storage-Upstream@qlogic.com
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07002446L: linux-scsi@vger.kernel.org
2447S: Supported
2448F: drivers/scsi/bnx2fc/
2449
Eddie Wai6a6b5ad02013-07-11 17:15:56 -07002450BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
Vikas Chaudhary3b7f0402014-07-03 08:18:29 -04002451M: QLogic-Storage-Upstream@qlogic.com
Eddie Wai6a6b5ad02013-07-11 17:15:56 -07002452L: linux-scsi@vger.kernel.org
2453S: Supported
2454F: drivers/scsi/bnx2i/
2455
Jon Mason63f37dd2015-08-26 18:35:30 -04002456BROADCOM IPROC ARM ARCHITECTURE
Scott Branden36c02372014-09-12 16:50:56 -07002457M: Ray Jui <rjui@broadcom.com>
2458M: Scott Branden <sbranden@broadcom.com>
Jon Mason63f37dd2015-08-26 18:35:30 -04002459M: Jon Mason <jonmason@broadcom.com>
Scott Branden36c02372014-09-12 16:50:56 -07002460L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2461L: bcm-kernel-feedback-list@broadcom.com
Florian Fainellieb6725d2015-01-29 15:21:56 -08002462T: git git://github.com/broadcom/cygnus-linux.git
Scott Branden36c02372014-09-12 16:50:56 -07002463S: Maintained
2464N: iproc
2465N: cygnus
Jon Mason63f37dd2015-08-26 18:35:30 -04002466N: nsp
Scott Branden36c02372014-09-12 16:50:56 -07002467N: bcm9113*
2468N: bcm9583*
Jon Mason63f37dd2015-08-26 18:35:30 -04002469N: bcm9585*
2470N: bcm9586*
2471N: bcm988312
Scott Branden36c02372014-09-12 16:50:56 -07002472N: bcm113*
Jon Mason63f37dd2015-08-26 18:35:30 -04002473N: bcm583*
2474N: bcm585*
2475N: bcm586*
2476N: bcm88312
Scott Branden36c02372014-09-12 16:50:56 -07002477
Gregory Fong3b0213d2015-05-28 19:14:05 -07002478BROADCOM BRCMSTB GPIO DRIVER
2479M: Gregory Fong <gregory.0xf0@gmail.com>
Florian Fainelli9c2abe22015-11-18 15:22:13 -08002480L: bcm-kernel-feedback-list@broadcom.com
Gregory Fong3b0213d2015-05-28 19:14:05 -07002481S: Supported
2482F: drivers/gpio/gpio-brcmstb.c
2483F: Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2484
Markus Mayer7b7f5882014-02-12 15:42:27 -08002485BROADCOM KONA GPIO DRIVER
Markus Mayer5e163902014-07-29 11:10:07 -07002486M: Ray Jui <rjui@broadcom.com>
Markus Mayer7b7f5882014-02-12 15:42:27 -08002487L: bcm-kernel-feedback-list@broadcom.com
2488S: Supported
2489F: drivers/gpio/gpio-bcm-kona.c
Joe Perches1db12cd2015-06-30 14:59:45 -07002490F: Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
Markus Mayer7b7f5882014-02-12 15:42:27 -08002491
Rafał Miłeckif6e734a2015-06-10 23:05:08 +02002492BROADCOM NVRAM DRIVER
2493M: Rafał Miłecki <zajec5@gmail.com>
2494L: linux-mips@linux-mips.org
2495S: Maintained
2496F: drivers/firmware/broadcom/*
2497
Brian Norris02787da2015-05-12 17:16:50 -07002498BROADCOM STB NAND FLASH DRIVER
2499M: Brian Norris <computersforpeace@gmail.com>
Kamal Dasu1ddaa022015-11-17 13:50:08 -05002500M: Kamal Dasu <kdasu.kdev@gmail.com>
Brian Norris02787da2015-05-12 17:16:50 -07002501L: linux-mtd@lists.infradead.org
Florian Fainelli12857342015-11-16 15:34:15 -08002502L: bcm-kernel-feedback-list@broadcom.com
Brian Norris02787da2015-05-12 17:16:50 -07002503S: Maintained
2504F: drivers/mtd/nand/brcmnand/
2505
Rafał Miłeckic9678d82012-01-13 22:55:05 +01002506BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2507M: Rafał Miłecki <zajec5@gmail.com>
2508L: linux-wireless@vger.kernel.org
2509S: Maintained
2510F: drivers/bcma/
2511F: include/linux/bcma/
2512
Florian Fainellib8302202014-04-24 18:09:00 -07002513BROADCOM SYSTEMPORT ETHERNET DRIVER
2514M: Florian Fainelli <f.fainelli@gmail.com>
2515L: netdev@vger.kernel.org
2516S: Supported
2517F: drivers/net/ethernet/broadcom/bcmsysport.*
2518
Jing Huang7725ccf2009-09-23 17:46:15 -07002519BROCADE BFA FC SCSI DRIVER
Anil Gurumurthyaa803372014-02-26 06:08:42 -05002520M: Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2521M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
Joe Perches455518e2009-11-11 14:26:10 -08002522L: linux-scsi@vger.kernel.org
2523S: Supported
2524F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07002525
Rasesh Mody8b230ed2010-08-23 20:24:12 -07002526BROCADE BNA 10 GIGABIT ETHERNET DRIVER
Rasesh Mody439e9572014-10-01 17:20:41 -04002527M: Rasesh Mody <rasesh.mody@qlogic.com>
Rasesh Mody8b230ed2010-08-23 20:24:12 -07002528L: netdev@vger.kernel.org
2529S: Supported
Jeff Kirsherf844a0e2011-05-13 01:00:03 -07002530F: drivers/net/ethernet/brocade/bna/
Rasesh Mody8b230ed2010-08-23 20:24:12 -07002531
Jens Axboe5cdf7f72007-07-17 08:58:06 +02002532BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07002533M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02002534L: linux-scsi@vger.kernel.org
2535S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002536F: block/bsg.c
2537F: include/linux/bsg.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002538F: include/uapi/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02002539
Clemens Ladischaf399172011-01-10 16:32:54 +01002540BT87X AUDIO DRIVER
2541M: Clemens Ladisch <clemens@ladisch.de>
2542L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2543T: git git://git.alsa-project.org/alsa-kernel.git
2544S: Maintained
2545F: Documentation/sound/alsa/Bt87x.txt
2546F: sound/pci/bt87x.c
2547
Michael Bueschff1d5c22008-07-25 01:46:10 -07002548BT8XXGPIO DRIVER
Michael Büscheb032b92011-07-04 20:50:05 +02002549M: Michael Buesch <m@bues.ch>
Michael Bueschff1d5c22008-07-25 01:46:10 -07002550W: http://bu3sch.de/btgpio.php
2551S: Maintained
Joe Perches72dbb702012-01-10 15:08:46 -08002552F: drivers/gpio/gpio-bt8xx.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07002553
Joe Percheseb1eb042009-01-21 10:49:16 -05002554BTRFS FILE SYSTEM
Chris Masonc0778e22013-12-03 20:16:03 -05002555M: Chris Mason <clm@fb.com>
2556M: Josef Bacik <jbacik@fb.com>
Jiri Slabyd8130622015-07-17 16:23:20 -07002557M: David Sterba <dsterba@suse.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05002558L: linux-btrfs@vger.kernel.org
2559W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08002560Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Liu Bo9c106402012-06-14 02:23:25 -06002561T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
Joe Percheseb1eb042009-01-21 10:49:16 -05002562S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002563F: Documentation/filesystems/btrfs.txt
2564F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05002565
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02002567M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002568L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02002569W: https://linuxtv.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02002570T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehabf96236e2012-11-02 11:14:18 -02002571S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07002572F: Documentation/video4linux/bttv/
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002573F: drivers/media/pci/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574
Khalid Aziz1f349232013-06-25 09:57:27 -06002575BUSLOGIC SCSI DRIVER
2576M: Khalid Aziz <khalid@gonehiking.org>
2577L: linux-scsi@vger.kernel.org
2578S: Maintained
2579F: drivers/scsi/BusLogic.*
2580F: drivers/scsi/FlashPoint.*
2581
Clemens Ladischaf399172011-01-10 16:32:54 +01002582C-MEDIA CMI8788 DRIVER
2583M: Clemens Ladisch <clemens@ladisch.de>
2584L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2585T: git git://git.alsa-project.org/alsa-kernel.git
2586S: Maintained
2587F: sound/pci/oxygen/
2588
Mark Salter21413552011-10-04 11:21:42 -04002589C6X ARCHITECTURE
2590M: Mark Salter <msalter@redhat.com>
2591M: Aurelien Jacquiot <a-jacquiot@ti.com>
2592L: linux-c6x-dev@linux-c6x.org
2593W: http://www.linux-c6x.org/wiki/index.php/Main_Page
2594S: Maintained
2595F: arch/c6x/
2596
David Howellsa5432f52009-04-20 15:46:45 +01002597CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07002598M: David Howells <dhowells@redhat.com>
Geert Uytterhoevene62d6e22015-11-12 11:46:33 +00002599L: linux-cachefs@redhat.com (moderated for non-subscribers)
David Howellsa5432f52009-04-20 15:46:45 +01002600S: Supported
2601F: Documentation/filesystems/caching/cachefiles.txt
2602F: fs/cachefiles/
2603
Hans Verkuilc815ca32012-11-23 07:05:54 -03002604CADET FM/AM RADIO RECEIVER DRIVER
2605M: Hans Verkuil <hverkuil@xs4all.nl>
2606L: linux-media@vger.kernel.org
2607T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02002608W: https://linuxtv.org
Hans Verkuilc815ca32012-11-23 07:05:54 -03002609S: Maintained
2610F: drivers/media/radio/radio-cadet*
2611
Jonathan Corbet77d51402007-03-22 19:44:17 -03002612CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002613M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002614L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02002615T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03002616S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002617F: Documentation/video4linux/cafe_ccic
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002618F: drivers/media/platform/marvell-ccic/
Jonathan Corbet77d51402007-03-22 19:44:17 -03002619
Joe Perches201b6ba2010-09-07 20:33:24 +00002620CAIF NETWORK LAYER
sjur.brandeland@stericsson.com5c574f52013-04-22 23:57:00 +00002621M: Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
Joe Perches201b6ba2010-09-07 20:33:24 +00002622L: netdev@vger.kernel.org
2623S: Supported
2624F: Documentation/networking/caif/
2625F: drivers/net/caif/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002626F: include/uapi/linux/caif/
Joe Perches201b6ba2010-09-07 20:33:24 +00002627F: include/net/caif/
2628F: net/caif/
2629
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02002630CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07002631M: Muli Ben-Yehuda <muli@il.ibm.com>
2632M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02002633L: discuss@x86-64.org
2634S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002635F: arch/x86/kernel/pci-calgary_64.c
2636F: arch/x86/kernel/tce_64.c
2637F: arch/x86/include/asm/calgary.h
2638F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02002639
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002640CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00002641M: Oliver Hartkopp <socketcan@hartkopp.net>
Marc Kleine-Buddef7214cf2015-03-06 09:00:38 +01002642M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00002643L: linux-can@vger.kernel.org
Marc Kleine-Budde84b0d712015-03-06 08:58:33 +01002644W: https://github.com/linux-can
Marc Kleine-Budde870482a2015-01-15 16:56:26 +01002645T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2646T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002647S: Maintained
John Whitmoref35f6c82013-12-06 12:49:08 +00002648F: Documentation/networking/can.txt
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00002649F: net/can/
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00002650F: include/linux/can/core.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002651F: include/uapi/linux/can.h
2652F: include/uapi/linux/can/bcm.h
2653F: include/uapi/linux/can/raw.h
2654F: include/uapi/linux/can/gw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002655
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00002656CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002657M: Wolfgang Grandegger <wg@grandegger.com>
Oliver Hartkoppec782132012-01-03 08:40:28 +00002658M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00002659L: linux-can@vger.kernel.org
Marc Kleine-Budde84b0d712015-03-06 08:58:33 +01002660W: https://github.com/linux-can
Marc Kleine-Budde870482a2015-01-15 16:56:26 +01002661T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2662T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00002663S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00002664F: drivers/net/can/
2665F: include/linux/can/dev.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00002666F: include/linux/can/platform/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002667F: include/uapi/linux/can/error.h
2668F: include/uapi/linux/can/netlink.h
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00002669
James Morris95d16c72012-03-16 12:05:48 +11002670CAPABILITIES
2671M: Serge Hallyn <serge.hallyn@canonical.com>
2672L: linux-security-module@vger.kernel.org
Joe Perches63059022012-06-07 14:21:10 -07002673S: Supported
James Morris95d16c72012-03-16 12:05:48 +11002674F: include/linux/capability.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002675F: include/uapi/linux/capability.h
Joe Perches63059022012-06-07 14:21:10 -07002676F: security/commoncap.c
James Morris38a94112012-04-09 11:03:36 +10002677F: kernel/capability.c
James Morris95d16c72012-03-16 12:05:48 +11002678
Kevin Tsaib84894c2015-01-15 17:41:04 -08002679CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
2680M: Kevin Tsai <ktsai@capellamicro.com>
2681S: Maintained
2682F: drivers/iio/light/cm*
2683F: Documentation/devicetree/bindings/i2c/trivial-devices.txt
2684
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002685CAVIUM LIQUIDIO NETWORK DRIVER
2686M: Derek Chickles <derek.chickles@caviumnetworks.com>
2687M: Satanand Burla <satananda.burla@caviumnetworks.com>
2688M: Felix Manlunas <felix.manlunas@caviumnetworks.com>
2689M: Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
2690L: netdev@vger.kernel.org
2691W: http://www.cavium.com
2692S: Supported
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002693F: drivers/net/ethernet/cavium/liquidio/
2694
Varka Bhadramef0bbac2014-10-29 16:15:22 +05302695CC2520 IEEE-802.15.4 RADIO DRIVER
2696M: Varka Bhadram <varkabhadram@gmail.com>
2697L: linux-wpan@vger.kernel.org
2698S: Maintained
2699F: drivers/net/ieee802154/cc2520.c
2700F: include/linux/spi/cc2520.h
2701F: Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
2702
Arnd Bergmannb8154542008-05-16 11:10:59 +02002703CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07002704M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002705L: linuxppc-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02002706W: http://www.ibm.com/developerworks/power/cell/
2707S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002708F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07002709F: arch/powerpc/include/asm/spu*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002710F: arch/powerpc/include/uapi/asm/spu*.h
Joe Perches679655d2009-04-07 20:44:32 -07002711F: arch/powerpc/oprofile/*cell*
2712F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02002713
Sage Weil398ecff52015-07-09 11:46:14 -04002714CEPH COMMON CODE (LIBCEPH)
2715M: Ilya Dryomov <idryomov@gmail.com>
Joe Perchese43cdb52015-06-25 15:02:03 -07002716M: "Yan, Zheng" <zyan@redhat.com>
Sage Weil0f5417c2015-02-19 10:10:40 -08002717M: Sage Weil <sage@redhat.com>
Sage Weil82593f82010-03-29 09:53:23 -07002718L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07002719W: http://ceph.com/
Sage Weilfb99f882009-12-03 15:04:08 -08002720T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil6e67b7a2015-07-09 11:47:37 -04002721T: git git://github.com/ceph/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07002722S: Supported
Joe Perches14430812013-09-11 14:23:50 -07002723F: net/ceph/
2724F: include/linux/ceph/
2725F: include/linux/crush/
Sage Weil9030aaf2009-10-06 11:31:15 -07002726
Sage Weil398ecff52015-07-09 11:46:14 -04002727CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
2728M: "Yan, Zheng" <zyan@redhat.com>
2729M: Sage Weil <sage@redhat.com>
2730M: Ilya Dryomov <idryomov@gmail.com>
2731L: ceph-devel@vger.kernel.org
2732W: http://ceph.com/
2733T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil6e67b7a2015-07-09 11:47:37 -04002734T: git git://github.com/ceph/ceph-client.git
Sage Weil398ecff52015-07-09 11:46:14 -04002735S: Supported
2736F: Documentation/filesystems/ceph.txt
2737F: fs/ceph/
2738
David Howellscfc411e2015-08-14 15:20:41 +01002739CERTIFICATE HANDLING:
2740M: David Howells <dhowells@redhat.com>
2741M: David Woodhouse <dwmw2@infradead.org>
David Howellsd8d80382016-01-14 15:50:20 +00002742L: keyrings@vger.kernel.org
David Howellscfc411e2015-08-14 15:20:41 +01002743S: Maintained
2744F: Documentation/module-signing.txt
2745F: certs/
David Howellsd8d80382016-01-14 15:50:20 +00002746F: scripts/sign-file.c
David Howellscfc411e2015-08-14 15:20:41 +01002747F: scripts/extract-cert.c
2748
David Vrabel18332a82008-09-17 16:34:44 +01002749CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01002750L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01002751S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002752F: Documentation/usb/WUSB-Design-overview.txt
2753F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00002754F: drivers/usb/host/hwa-hc.c
2755F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07002756F: drivers/usb/wusbcore/
2757F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01002758
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002759CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002760M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07002761W: http://miguelojeda.es/auxdisplay.htm
2762W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002763S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002764F: drivers/auxdisplay/cfag12864b.c
2765F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002766
2767CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002768M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07002769W: http://miguelojeda.es/auxdisplay.htm
2770W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002771S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002772F: drivers/auxdisplay/cfag12864bfb.c
2773F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002774
Johannes Berg704232c2007-04-23 12:20:05 -07002775CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07002776M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07002777L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02002778W: http://wireless.kernel.org/
2779T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2780T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Johannes Berg704232c2007-04-23 12:20:05 -07002781S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002782F: include/uapi/linux/nl80211.h
Joe Perches679655d2009-04-07 20:44:32 -07002783F: include/net/cfg80211.h
2784F: net/wireless/*
2785X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07002786
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002787CHAR and MISC DRIVERS
2788M: Arnd Bergmann <arnd@arndb.de>
Greg KH879a5a02012-01-31 20:02:00 -08002789M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002790T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Greg KH879a5a02012-01-31 20:02:00 -08002791S: Supported
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002792F: drivers/char/*
2793F: drivers/misc/*
Robert P. J. Day471322a2014-05-16 04:41:09 -04002794F: include/linux/miscdevice.h
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002795
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002796CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07002797M: Andy Whitcroft <apw@canonical.com>
Joe Perches10d83f02013-02-21 16:44:15 -08002798M: Joe Perches <joe@perches.com>
2799S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002800F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002801
Harry Weif8407f262011-02-25 14:44:15 -08002802CHINESE DOCUMENTATION
2803M: Harry Wei <harryxiyou@gmail.com>
Joe Perches97401532012-12-17 16:00:00 -08002804L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
Harry Weif8407f262011-02-25 14:44:15 -08002805L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
2806S: Maintained
2807F: Documentation/zh_CN/
2808
Alexander Shishkin2721ea22012-05-11 17:25:59 +03002809CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
Peter Chen60d77b3d2015-12-25 15:54:32 +08002810M: Peter Chen <Peter.Chen@nxp.com>
Peter Chen83738562015-03-23 19:57:36 +08002811T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
Alexander Shishkin2721ea22012-05-11 17:25:59 +03002812L: linux-usb@vger.kernel.org
2813S: Maintained
2814F: drivers/usb/chipidea/
2815
Hans de Goedea93ad652015-03-21 20:40:45 -07002816CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
2817M: Hans de Goede <hdegoede@redhat.com>
2818L: linux-input@vger.kernel.org
2819S: Maintained
2820F: Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
2821F: drivers/input/touchscreen/chipone_icn8318.c
2822
Olof Johanssonab043102013-11-07 14:25:45 -08002823CHROME HARDWARE PLATFORM SUPPORT
2824M: Olof Johansson <olof@lixom.net>
2825S: Maintained
Fengguang Wu9f273c22016-01-20 15:03:25 -08002826T: git git://git.kernel.org/pub/scm/linux/kernel/git/olof/chrome-platform.git
Olof Johanssonab043102013-11-07 14:25:45 -08002827F: drivers/platform/chrome/
2828
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00002829CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri2360d2e2011-02-04 16:17:26 +00002830M: Christian Benvenuti <benve@cisco.com>
govindarajulu.v001e1c12013-09-04 11:17:18 +05302831M: Sujith Sankar <ssujith@cisco.com>
Govindarajulu Varadarajanc327e8f2014-05-20 03:14:32 +05302832M: Govindarajulu Varadarajan <_govind@gmx.com>
Neel Patel5c6652f2012-02-03 08:25:25 +00002833M: Neel Patel <neepatel@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08002834S: Supported
Jeff Kirshera6a55802011-05-13 22:20:35 -07002835F: drivers/net/ethernet/cisco/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08002836
Upinder Malhie3cf00d2013-09-10 03:38:16 +00002837CISCO VIC LOW LATENCY NIC DRIVER
Dave Goodell \(dgoodell\)35ef4a92015-10-15 20:01:29 -07002838M: Christian Benvenuti <benve@cisco.com>
2839M: Dave Goodell <dgoodell@cisco.com>
Joe Perchesb75f0052014-03-03 15:38:37 -08002840S: Supported
Dave Goodell \(dgoodell\)35ef4a92015-10-15 20:01:29 -07002841F: drivers/infiniband/hw/usnic/
Upinder Malhie3cf00d2013-09-10 03:38:16 +00002842
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002843CIRRUS LOGIC EP93XX ETHERNET DRIVER
H Hartley Sweeten55879122011-06-09 15:00:21 -07002844M: Hartley Sweeten <hsweeten@visionengravers.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002845L: netdev@vger.kernel.org
2846S: Maintained
Jeff Kirsher57d0b7a2011-07-16 23:50:52 -07002847F: drivers/net/ethernet/cirrus/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002848
Mark Brown3d4cfdc2014-02-04 20:28:12 +00002849CIRRUS LOGIC AUDIO CODEC DRIVERS
2850M: Brian Austin <brian.austin@cirrus.com>
2851M: Paul Handrigan <Paul.Handrigan@cirrus.com>
2852L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2853S: Maintained
2854F: sound/soc/codecs/cs*
2855
Konrad Rzeszutek Wilk94574d92012-03-19 11:47:18 -04002856CLEANCACHE API
2857M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2858L: linux-kernel@vger.kernel.org
2859S: Maintained
2860F: mm/cleancache.c
2861F: include/linux/cleancache.h
2862
Russell Kingd4275352009-04-16 14:05:27 +01002863CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07002864M: Russell King <linux@arm.linux.org.uk>
Paul Walmsleyaa571b12015-03-25 18:32:59 +00002865L: linux-clk@vger.kernel.org
Joe Perches37417042012-03-23 15:01:58 -07002866S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01002867F: include/linux/clk.h
2868
John Stultz9222d242013-07-16 16:45:31 +02002869CLOCKSOURCE, CLOCKEVENT DRIVERS
2870M: Daniel Lezcano <daniel.lezcano@linaro.org>
2871M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar981c3a42014-01-21 10:59:20 +01002872L: linux-kernel@vger.kernel.org
John Stultz9222d242013-07-16 16:45:31 +02002873T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
2874S: Supported
2875F: drivers/clocksource
2876
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002877CISCO FCOE HBA DRIVER
Hiral Patel8fc89a72012-12-10 01:21:29 -08002878M: Hiral Patel <hiralpat@cisco.com>
2879M: Suma Ramars <sramars@cisco.com>
Abhijeet Joglekard7e01dc2011-06-13 21:21:17 -07002880M: Brian Uchino <buchino@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002881L: linux-scsi@vger.kernel.org
2882S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07002883F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002884
Narsimhulu Musinic8806b62015-05-29 01:04:01 -07002885CISCO SCSI HBA DRIVER
2886M: Narsimhulu Musini <nmusini@cisco.com>
2887M: Sesidhar Baddela <sebaddel@cisco.com>
2888L: linux-scsi@vger.kernel.org
2889S: Supported
2890F: drivers/scsi/snic/
2891
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002892CMPC ACPI DRIVER
2893M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2894M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd09448532010-02-11 10:40:13 -05002895L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002896S: Supported
2897F: drivers/platform/x86/classmate-laptop.c
2898
Hans Verkuil85756a02015-05-12 08:52:21 -03002899COBALT MEDIA DRIVER
2900M: Hans Verkuil <hans.verkuil@cisco.com>
2901L: linux-media@vger.kernel.org
2902T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02002903W: https://linuxtv.org
Hans Verkuil85756a02015-05-12 08:52:21 -03002904S: Supported
2905F: drivers/media/pci/cobalt/
2906
Nicolas Palix74425ee2010-06-06 17:15:01 +02002907COCCINELLE/Semantic Patches (SmPL)
Nicolas Palix26de9c22012-09-20 22:52:42 +02002908M: Julia Lawall <Julia.Lawall@lip6.fr>
Nicolas Palix74425ee2010-06-06 17:15:01 +02002909M: Gilles Muller <Gilles.Muller@lip6.fr>
Nicolas Palix26de9c22012-09-20 22:52:42 +02002910M: Nicolas Palix <nicolas.palix@imag.fr>
Jiri Slabyd8130622015-07-17 16:23:20 -07002911M: Michal Marek <mmarek@suse.com>
Nicolas Palix26de9c22012-09-20 22:52:42 +02002912L: cocci@systeme.lip6.fr (moderated for non-subscribers)
Nicolas Palixc00b5112013-06-06 23:39:53 +02002913T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
Nicolas Palix74425ee2010-06-06 17:15:01 +02002914W: http://coccinelle.lip6.fr/
2915S: Supported
Nicolas Palix4b92b2a2013-06-20 13:10:55 +02002916F: Documentation/coccinelle.txt
Nicolas Palix74425ee2010-06-06 17:15:01 +02002917F: scripts/coccinelle/
2918F: scripts/coccicheck
2919
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002921M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922M: coda@cs.cmu.edu
2923L: codalist@coda.cs.cmu.edu
2924W: http://www.coda.cs.cmu.edu/
2925S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002926F: Documentation/filesystems/coda.txt
2927F: fs/coda/
2928F: include/linux/coda*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002929F: include/uapi/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930
Philipp Zabel0b142612014-11-04 07:26:35 -03002931CODA V4L2 MEM2MEM DRIVER
2932M: Philipp Zabel <p.zabel@pengutronix.de>
2933L: linux-media@vger.kernel.org
2934S: Maintained
2935F: Documentation/devicetree/bindings/media/coda.txt
2936F: drivers/media/platform/coda/
2937
Mike Turquette7704add2012-05-02 18:37:45 -07002938COMMON CLK FRAMEWORK
Michael Turquettea85fa002015-06-17 13:41:04 -07002939M: Michael Turquette <mturquette@baylibre.com>
Michael Turquettef9561652014-11-12 16:43:47 -08002940M: Stephen Boyd <sboyd@codeaurora.org>
Paul Walmsleyaa571b12015-03-25 18:32:59 +00002941L: linux-clk@vger.kernel.org
Michael Turquettebaeb0d92014-11-13 17:18:20 -08002942T: git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
Mike Turquette7704add2012-05-02 18:37:45 -07002943S: Maintained
Stephen Warren60bea3b2013-06-05 09:50:30 -06002944F: drivers/clk/
2945X: drivers/clk/clkdev.c
Mike Turquette7704add2012-05-02 18:37:45 -07002946F: include/linux/clk-pr*
Stephen Warren60bea3b2013-06-05 09:50:30 -06002947F: include/linux/clk/
Mike Turquette7704add2012-05-02 18:37:45 -07002948
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002949COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07002950M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04002951L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08002952L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002953W: http://linux-cifs.samba.org/
Kevin Cernekeebb1d5dd2014-11-10 13:09:24 -08002954T: git git://git.samba.org/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002955S: Supported
Joe Perchesec421a72014-08-08 14:24:59 -07002956F: Documentation/filesystems/cifs/
Joe Perches679655d2009-04-07 20:44:32 -07002957F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002958
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002960M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002961L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002962S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002963F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964
2965COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002966M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002967L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002968S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002969F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970
2971COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002972M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002973L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002974S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002975F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002977COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002978M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05002979L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002980S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002981F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002982
Simon Arlott949be0f2007-03-06 02:47:46 -08002983CONEXANT ACCESSRUNNER USB DRIVER
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02002984L: accessrunner-general@lists.sourceforge.net
2985W: http://accessrunner.sourceforge.net/
Simon Arlott44243ef2015-11-15 17:12:08 +00002986S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002987F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08002988
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002989CONFIGFS
Joel Beckerd6351db2011-01-07 18:10:32 -08002990M: Joel Becker <jlbec@evilplan.org>
Christoph Hellwig1609bac2016-01-04 12:33:13 +01002991M: Christoph Hellwig <hch@lst.de>
2992T: git git://git.infradead.org/users/hch/configfs.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002993S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002994F: fs/configfs/
2995F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002996
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002997CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07002998M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002999L: netdev@vger.kernel.org
3000S: Maintained
3001F: drivers/connector/
3002
Tejun Heoa3e33542014-05-13 15:49:58 -04003003CONTROL GROUP (CGROUP)
Paul Menage860ca0e2011-11-18 14:22:09 -08003004M: Tejun Heo <tj@kernel.org>
Li Zefanad50c152012-03-29 08:53:30 -07003005M: Li Zefan <lizefan@huawei.com>
Tejun Heo4d205672015-06-12 17:15:23 -05003006M: Johannes Weiner <hannes@cmpxchg.org>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08003007L: cgroups@vger.kernel.org
Paul Menage860ca0e2011-11-18 14:22:09 -08003008T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
Paul Menagefb3a0fb2008-03-04 14:28:28 -08003009S: Maintained
Tejun Heoa3e33542014-05-13 15:49:58 -04003010F: Documentation/cgroups/
Joe Perches679655d2009-04-07 20:44:32 -07003011F: include/linux/cgroup*
3012F: kernel/cgroup*
Tejun Heoa3e33542014-05-13 15:49:58 -04003013
3014CONTROL GROUP - CPUSET
3015M: Li Zefan <lizefan@huawei.com>
3016L: cgroups@vger.kernel.org
3017W: http://www.bullopensource.org/cpuset/
3018W: http://oss.sgi.com/projects/cpusets/
3019T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3020S: Maintained
3021F: Documentation/cgroups/cpusets.txt
3022F: include/linux/cpuset.h
3023F: kernel/cpuset.c
3024
3025CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
3026M: Johannes Weiner <hannes@cmpxchg.org>
Michal Hockofbd7dc72015-07-17 16:23:26 -07003027M: Michal Hocko <mhocko@kernel.org>
Johannes Weinered0f1e22015-12-11 13:40:35 -08003028M: Vladimir Davydov <vdavydov@virtuozzo.com>
Tejun Heoa3e33542014-05-13 15:49:58 -04003029L: cgroups@vger.kernel.org
3030L: linux-mm@kvack.org
3031S: Maintained
3032F: mm/memcontrol.c
Johannes Weiner5d1ea482014-12-10 15:44:55 -08003033F: mm/swap_cgroup.c
Paul Menagefb3a0fb2008-03-04 14:28:28 -08003034
Rudolf Marekbebe4672007-05-08 17:22:02 +02003035CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02003036M: Fenghua Yu <fenghua.yu@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02003037L: lm-sensors@lm-sensors.org
3038S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003039F: Documentation/hwmon/coretemp
3040F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02003041
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003043M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044W: http://www.fi.muni.cz/~kas/cosa/
3045S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003046F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047
Florian Fainelli4371ee32009-06-01 02:43:17 -07003048CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003049M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07003050L: netdev@vger.kernel.org
3051S: Maintained
Jeff Kirsherb544dba2011-06-14 12:56:50 -07003052F: drivers/net/ethernet/ti/cpmac.c
Florian Fainelli4371ee32009-06-01 02:43:17 -07003053
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054CPU FREQUENCY DRIVERS
Joe Perches9c3646d2015-06-25 15:02:00 -07003055M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
viresh kumar45c009a2013-04-26 12:53:16 +00003056M: Viresh Kumar <viresh.kumar@linaro.org>
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02003057L: linux-pm@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058S: Maintained
Viresh Kumar27209d92013-05-29 12:23:14 +05303059T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3060T: git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
Joe Perches679655d2009-04-07 20:44:32 -07003061F: drivers/cpufreq/
3062F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063
Viresh Kumar8a67f0e2013-04-01 12:57:49 +00003064CPU FREQUENCY DRIVERS - ARM BIG LITTLE
3065M: Viresh Kumar <viresh.kumar@linaro.org>
Sudeep Holla171d0ba2014-02-11 11:42:32 +00003066M: Sudeep Holla <sudeep.holla@arm.com>
Viresh Kumar8a67f0e2013-04-01 12:57:49 +00003067L: linux-pm@vger.kernel.org
3068W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php
3069S: Maintained
3070F: drivers/cpufreq/arm_big_little.h
3071F: drivers/cpufreq/arm_big_little.c
3072F: drivers/cpufreq/arm_big_little_dt.c
3073
Lorenzo Pieralisi14d2c342013-06-12 17:40:01 +02003074CPUIDLE DRIVER - ARM BIG LITTLE
Joe Perchesb75f0052014-03-03 15:38:37 -08003075M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
3076M: Daniel Lezcano <daniel.lezcano@linaro.org>
3077L: linux-pm@vger.kernel.org
3078L: linux-arm-kernel@lists.infradead.org
Joe Perchescea83212014-03-03 15:38:38 -08003079T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
Joe Perchesb75f0052014-03-03 15:38:37 -08003080S: Maintained
3081F: drivers/cpuidle/cpuidle-big_little.c
Lorenzo Pieralisi14d2c342013-06-12 17:40:01 +02003082
Bartlomiej Zolnierkiewicz0c570c12014-12-02 16:41:35 +01003083CPUIDLE DRIVER - ARM EXYNOS
3084M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
3085M: Daniel Lezcano <daniel.lezcano@linaro.org>
3086M: Kukjin Kim <kgene@kernel.org>
3087L: linux-pm@vger.kernel.org
3088L: linux-samsung-soc@vger.kernel.org
3089S: Supported
3090F: drivers/cpuidle/cpuidle-exynos.c
3091F: arch/arm/mach-exynos/pm.c
3092
Daniel Lezcanoa8e39c32013-04-26 11:05:44 +00003093CPUIDLE DRIVERS
Joe Perches9c3646d2015-06-25 15:02:00 -07003094M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Daniel Lezcanoa8e39c32013-04-26 11:05:44 +00003095M: Daniel Lezcano <daniel.lezcano@linaro.org>
3096L: linux-pm@vger.kernel.org
3097S: Maintained
Joe Perchescea83212014-03-03 15:38:38 -08003098T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
Daniel Lezcanoa8e39c32013-04-26 11:05:44 +00003099F: drivers/cpuidle/*
3100F: include/linux/cpuidle.h
3101
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003103M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003105F: arch/x86/kernel/cpuid.c
3106F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02003108CPU POWER MONITORING SUBSYSTEM
Jiri Slabyd8130622015-07-17 16:23:20 -07003109M: Thomas Renninger <trenn@suse.com>
Thomas Renninger103f1792014-07-22 16:06:01 +02003110L: linux-pm@vger.kernel.org
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02003111S: Maintained
Joe Perches14430812013-09-11 14:23:50 -07003112F: tools/power/cpupower/
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02003113
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01003115W: http://sourceforge.net/projects/cramfs/
Michael Opdenacker54886a72013-11-12 15:08:35 -08003116S: Orphan / Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07003117F: Documentation/filesystems/cramfs.txt
3118F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119
3120CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003121M: Mikael Starvik <starvik@axis.com>
3122M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02003123L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124W: http://developer.axis.com
Fengguang Wu9f273c22016-01-20 15:03:25 -08003125T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesper/cris.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003127F: arch/cris/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003128F: drivers/tty/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129
3130CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07003131M: Herbert Xu <herbert@gondor.apana.org.au>
3132M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133L: linux-crypto@vger.kernel.org
Fengguang Wu9f273c22016-01-20 15:03:25 -08003134T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
Joe Perches54e58812009-04-07 21:08:10 -07003135T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003137F: Documentation/crypto/
Stephan Mueller2ca87a12015-03-06 21:36:21 +01003138F: Documentation/DocBook/crypto-API.tmpl
Joe Perches679655d2009-04-07 20:44:32 -07003139F: arch/*/crypto/
3140F: crypto/
3141F: drivers/crypto/
3142F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143
Neil Horman5b07bd52009-02-05 16:03:04 +11003144CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003145M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11003146L: linux-crypto@vger.kernel.org
3147S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07003148F: crypto/ansi_cprng.c
3149F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11003150
Hans Verkuilfc279cc2015-11-30 18:05:54 -02003151CS3308 MEDIA DRIVER
3152M: Hans Verkuil <hverkuil@xs4all.nl>
3153L: linux-media@vger.kernel.org
3154T: git git://linuxtv.org/media_tree.git
3155W: http://linuxtv.org
3156S: Odd Fixes
3157F: drivers/media/i2c/cs3308.c
3158F: drivers/media/i2c/cs3308.h
3159
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01003160CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07003161M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01003162S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003163F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01003164
Solomon Peachya910e4a2013-05-24 20:04:38 -04003165CW1200 WLAN driver
Joe Perchesb75f0052014-03-03 15:38:37 -08003166M: Solomon Peachy <pizza@shaftnet.org>
3167S: Maintained
Kalle Valo560424e2015-11-17 20:09:02 +02003168F: drivers/net/wireless/st/cw1200/
Solomon Peachya910e4a2013-05-24 20:04:38 -04003169
Hans Verkuil6d8425b12008-05-05 18:25:22 -03003170CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03003171M: Andy Walls <awalls@md.metrocast.net>
Joe Perches7b212ed2014-12-10 15:51:24 -08003172L: ivtv-devel@ivtvdriver.org (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003173L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003174T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003175W: https://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07003176W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b12008-05-05 18:25:22 -03003177S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003178F: Documentation/video4linux/cx18.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03003179F: drivers/media/pci/cx18/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02003180F: include/uapi/linux/ivtv*
Hans Verkuil6d8425b12008-05-05 18:25:22 -03003181
Hans Verkuil3f101d92012-11-23 07:00:02 -03003182CX2341X MPEG ENCODER HELPER MODULE
3183M: Hans Verkuil <hverkuil@xs4all.nl>
3184L: linux-media@vger.kernel.org
3185T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003186W: https://linuxtv.org
Hans Verkuil3f101d92012-11-23 07:00:02 -03003187S: Maintained
Cesar Eduardo Barrosc368360b2013-03-02 21:53:42 -03003188F: drivers/media/common/cx2341x*
Hans Verkuil3f101d92012-11-23 07:00:02 -03003189F: include/media/cx2341x*
3190
Patrick Boettcherb8fe6e22015-04-28 02:53:13 -03003191CX24120 MEDIA DRIVER
3192M: Jemma Denson <jdenson@gmail.com>
3193M: Patrick Boettcher <patrick.boettcher@posteo.de>
3194L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003195W: https://linuxtv.org
Patrick Boettcherb8fe6e22015-04-28 02:53:13 -03003196Q: http://patchwork.linuxtv.org/project/linux-media/list/
3197S: Maintained
3198F: drivers/media/dvb-frontends/cx24120*
3199
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02003200CX88 VIDEO4LINUX DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02003201M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02003202L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003203W: https://linuxtv.org
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02003204T: git git://linuxtv.org/media_tree.git
3205S: Odd fixes
3206F: Documentation/video4linux/cx88/
3207F: drivers/media/pci/cx88/
Knut Petersen9fa68ea2005-09-09 13:04:56 -07003208
Antti Palosaari91952bc2012-10-01 12:28:46 -03003209CXD2820R MEDIA DRIVER
3210M: Antti Palosaari <crope@iki.fi>
3211L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003212W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03003213W: http://palosaari.fi/linux/
3214Q: http://patchwork.linuxtv.org/project/linux-media/list/
3215T: git git://linuxtv.org/anttip/media_tree.git
3216S: Maintained
3217F: drivers/media/dvb-frontends/cxd2820r*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07003218
Steve Wisee5ec3782008-05-20 14:06:33 -07003219CXGB3 ETHERNET DRIVER (CXGB3)
Divy Le Raycdc99232013-11-11 15:01:39 -08003220M: Santosh Raspatur <santosh@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07003221L: netdev@vger.kernel.org
3222W: http://www.chelsio.com
3223S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07003224F: drivers/net/ethernet/chelsio/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07003225
Anish Bhattd8ae3c32014-11-04 15:19:22 -08003226CXGB3 ISCSI DRIVER (CXGB3I)
Joe Perches49e7d9d2015-04-15 16:17:31 -07003227M: Karen Xie <kxie@chelsio.com>
3228L: linux-scsi@vger.kernel.org
3229W: http://www.chelsio.com
3230S: Supported
3231F: drivers/scsi/cxgbi/cxgb3i
Anish Bhattd8ae3c32014-11-04 15:19:22 -08003232
Steve Wisee5ec3782008-05-20 14:06:33 -07003233CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07003234M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003235L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07003236W: http://www.openfabrics.org
3237S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003238F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07003239
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003240CXGB4 ETHERNET DRIVER (CXGB4)
Dimitris Michailidis56f16c72014-06-13 14:11:14 -07003241M: Hariprasad S <hariprasad@chelsio.com>
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003242L: netdev@vger.kernel.org
3243W: http://www.chelsio.com
3244S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07003245F: drivers/net/ethernet/chelsio/cxgb4/
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003246
Anish Bhattd8ae3c32014-11-04 15:19:22 -08003247CXGB4 ISCSI DRIVER (CXGB4I)
Joe Perches49e7d9d2015-04-15 16:17:31 -07003248M: Karen Xie <kxie@chelsio.com>
3249L: linux-scsi@vger.kernel.org
3250W: http://www.chelsio.com
3251S: Supported
3252F: drivers/scsi/cxgbi/cxgb4i
Anish Bhattd8ae3c32014-11-04 15:19:22 -08003253
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003254CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3255M: Steve Wise <swise@chelsio.com>
3256L: linux-rdma@vger.kernel.org
3257W: http://www.openfabrics.org
3258S: Supported
3259F: drivers/infiniband/hw/cxgb4/
3260
Casey Leedom5c20a5c2010-07-19 17:55:33 -07003261CXGB4VF ETHERNET DRIVER (CXGB4VF)
3262M: Casey Leedom <leedom@chelsio.com>
3263L: netdev@vger.kernel.org
3264W: http://www.chelsio.com
3265S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07003266F: drivers/net/ethernet/chelsio/cxgb4vf/
Casey Leedom5c20a5c2010-07-19 17:55:33 -07003267
Ian Munsiea9282d02014-10-08 19:55:05 +11003268CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3269M: Ian Munsie <imunsie@au1.ibm.com>
3270M: Michael Neuling <mikey@neuling.org>
3271L: linuxppc-dev@lists.ozlabs.org
3272S: Supported
3273F: drivers/misc/cxl/
Michael Neulingec249dd2015-05-27 16:07:16 +10003274F: include/misc/cxl*
Ian Munsiea9282d02014-10-08 19:55:05 +11003275F: include/uapi/misc/cxl.h
3276F: Documentation/powerpc/cxl.txt
3277F: Documentation/powerpc/cxl.txt
3278F: Documentation/ABI/testing/sysfs-class-cxl
3279
Matthew R. Ochs11f43ae2015-10-21 15:15:22 -05003280CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
3281M: Manoj N. Kumar <manoj@linux.vnet.ibm.com>
3282M: Matthew R. Ochs <mrochs@linux.vnet.ibm.com>
3283L: linux-scsi@vger.kernel.org
3284S: Supported
3285F: drivers/scsi/cxlflash/
3286F: include/uapi/scsi/cxlflash_ioctls.h
3287F: Documentation/powerpc/cxlflash.txt
3288
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08003289STMMAC ETHERNET DRIVER
3290M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
3291L: netdev@vger.kernel.org
3292W: http://www.stlinux.com
3293S: Supported
Jeff Kirsher7ac66532011-05-16 00:05:19 -07003294F: drivers/net/ethernet/stmicro/stmmac/
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08003295
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003297M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07003298L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299W: http://www.arm.linux.org.uk/
3300S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09003301F: drivers/video/fbdev/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07003302
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08003305S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07003306F: drivers/tty/cyclades.c
Joe Perches679655d2009-04-07 20:44:32 -07003307F: include/linux/cyclades.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003308F: include/uapi/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309
3310CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08003312S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003313F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314
Antti Palosaari402f6ae2013-04-09 21:30:41 -03003315CYPRESS_FIRMWARE MEDIA DRIVER
3316M: Antti Palosaari <crope@iki.fi>
3317L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003318W: https://linuxtv.org
Antti Palosaari402f6ae2013-04-09 21:30:41 -03003319W: http://palosaari.fi/linux/
3320Q: http://patchwork.linuxtv.org/project/linux-media/list/
3321T: git git://linuxtv.org/anttip/media_tree.git
3322S: Maintained
3323F: drivers/media/common/cypress_firmware*
3324
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08003325CYTTSP TOUCHSCREEN DRIVER
Javier Martinez Canillasbe9a6f42013-08-29 08:43:58 -07003326M: Ferruh Yigit <fery@cypress.com>
Joe Perches63059022012-06-07 14:21:10 -07003327L: linux-input@vger.kernel.org
Javier Martinez Canillasbe9a6f42013-08-29 08:43:58 -07003328S: Supported
Joe Perches63059022012-06-07 14:21:10 -07003329F: drivers/input/touchscreen/cyttsp*
3330F: include/linux/input/cyttsp.h
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08003331
Joshua Kinardaaaf5fb2015-02-16 16:00:26 -08003332DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3333M: Joshua Kinard <kumba@gentoo.org>
3334S: Maintained
3335F: drivers/rtc/rtc-ds1685.c
3336F: include/linux/rtc/ds1685.h
3337
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07003339M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340W: http://yaina.de/jreuter/
3341W: http://www.qsl.net/dl1bke/
3342L: linux-hams@vger.kernel.org
3343S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003344F: net/ax25/af_ax25.c
3345F: net/ax25/ax25_dev.c
3346F: net/ax25/ax25_ds_*
3347F: net/ax25/ax25_in.c
3348F: net/ax25/ax25_out.c
3349F: net/ax25/ax25_timer.c
3350F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003352DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003353L: netdev@vger.kernel.org
Joe Perches5ff77422011-05-24 17:13:22 -07003354S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003355F: Documentation/networking/dmfe.txt
Joe Perches0f04e2a2012-01-10 15:08:56 -08003356F: drivers/net/ethernet/dec/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003357
3358DC390/AM53C974 SCSI driver
Jiri Slabyd8130622015-07-17 16:23:20 -07003359M: Hannes Reinecke <hare@suse.com>
Hannes Reinecke71bd8492014-11-24 15:37:30 +01003360L: linux-scsi@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003361S: Maintained
Hannes Reinecke71bd8492014-11-24 15:37:30 +01003362F: drivers/scsi/am53c974.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003363
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364DC395x SCSI driver
Oliver Neukum61eee9a2012-08-01 14:32:55 +02003365M: Oliver Neukum <oliver@neukum.org>
Joe Perches8b58be82009-07-29 15:04:30 -07003366M: Ali Akcaagac <aliakc@web.de>
3367M: Jamie Lenehan <lenehan@twibble.org>
Randy Dunlapf5df58812006-07-14 00:24:29 -07003368L: dc395x@twibble.org
Joe Perchescf015e92014-02-25 15:01:47 -08003369W: http://twibble.org/dist/dc395x/
3370W: http://lists.twibble.org/mailman/listinfo/dc395x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003372F: Documentation/scsi/dc395x.txt
3373F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003374
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07003375DCCP PROTOCOL
Arnaldo Carvalho de Meloa89d0302011-02-26 16:28:54 +00003376M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07003377L: dccp@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00003378W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07003379S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003380F: include/linux/dccp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003381F: include/uapi/linux/dccp.h
Joe Perches679655d2009-04-07 20:44:32 -07003382F: include/linux/tfrc.h
3383F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07003384
Linus Torvalds1da177e2005-04-16 15:20:36 -07003385DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07003386W: http://linux-decnet.sourceforge.net
3387L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00003388S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003389F: Documentation/networking/decnet.txt
3390F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391
Maciej W. Rozyckiebff05b2014-04-06 23:04:00 +01003392DECSTATION PLATFORM SUPPORT
3393M: "Maciej W. Rozycki" <macro@linux-mips.org>
3394L: linux-mips@linux-mips.org
3395W: http://www.linux-mips.org/wiki/DECstation
3396S: Maintained
3397F: arch/mips/dec/
3398F: arch/mips/include/asm/dec/
3399F: arch/mips/include/asm/mach-dec/
3400
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003402M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403S: Maintained
Jeff Kirsher33f810b2011-07-31 00:06:29 -07003404F: drivers/net/fddi/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405
Matthew Garrettad8f07c2009-01-07 18:08:56 -08003406DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003407M: Matthew Garrett <mjg59@srcf.ucam.org>
Pali Rohárcdbff612015-03-29 15:38:50 +02003408M: Pali Rohár <pali.rohar@gmail.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05003409L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08003410S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003411F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08003412
Pali Rohár817a5cd2015-06-06 10:23:28 +02003413DELL LAPTOP RBTN DRIVER
3414M: Pali Rohár <pali.rohar@gmail.com>
3415S: Maintained
3416F: drivers/platform/x86/dell-rbtn.*
3417
Pali Rohárcdbff612015-03-29 15:38:50 +02003418DELL LAPTOP FREEFALL DRIVER
3419M: Pali Rohár <pali.rohar@gmail.com>
3420S: Maintained
3421F: drivers/platform/x86/dell-smo8800.c
3422
Linus Torvalds1da177e2005-04-16 15:20:36 -07003423DELL LAPTOP SMM DRIVER
Pali Rohára5afba12015-05-14 13:16:36 +02003424M: Pali Rohár <pali.rohar@gmail.com>
Guenter Roeckef3522f2014-12-21 20:54:37 +01003425S: Maintained
Pali Rohára5afba12015-05-14 13:16:36 +02003426F: drivers/hwmon/dell-smm-hwmon.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003427F: include/uapi/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428
Doug Warzecha90563ec2005-09-06 15:17:15 -07003429DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07003430M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07003431S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003432F: Documentation/dcdbas.txt
3433F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07003434
Matthew Garrett0b3f6102009-01-09 20:17:11 +00003435DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003436M: Matthew Garrett <mjg59@srcf.ucam.org>
Pali Rohárcdbff612015-03-29 15:38:50 +02003437M: Pali Rohár <pali.rohar@gmail.com>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00003438S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07003439F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00003440
Paul Zimmerman5efc75e2013-03-11 17:48:03 -07003441DESIGNWARE USB2 DRD IP DRIVER
Paul Zimmerman16272ae2015-01-15 20:14:10 +00003442M: John Youn <johnyoun@synopsys.com>
Paul Zimmerman5efc75e2013-03-11 17:48:03 -07003443L: linux-usb@vger.kernel.org
Paul Zimmerman18f340f2014-09-19 14:49:36 -07003444T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Paul Zimmerman5efc75e2013-03-11 17:48:03 -07003445S: Maintained
Paul Zimmerman197ba5f2014-01-13 13:50:09 -08003446F: drivers/usb/dwc2/
Paul Zimmerman5efc75e2013-03-11 17:48:03 -07003447
Felipe Balbi94ab23d2011-08-19 18:10:59 +03003448DESIGNWARE USB3 DRD IP DRIVER
3449M: Felipe Balbi <balbi@ti.com>
3450L: linux-usb@vger.kernel.org
3451L: linux-omap@vger.kernel.org
3452T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3453S: Maintained
3454F: drivers/usb/dwc3/
3455
Johannes Berg833c9542014-09-12 09:01:56 +02003456DEVICE COREDUMP (DEV_COREDUMP)
3457M: Johannes Berg <johannes@sipsolutions.net>
3458L: linux-kernel@vger.kernel.org
3459S: Maintained
3460F: drivers/base/devcoredump.c
3461F: include/linux/devcoredump.h
3462
Kyungmin Park89d07762012-01-10 15:09:09 -08003463DEVICE FREQUENCY (DEVFREQ)
3464M: MyungJoo Ham <myungjoo.ham@samsung.com>
3465M: Kyungmin Park <kyungmin.park@samsung.com>
MyungJoo Ham88476d32013-03-14 17:28:24 +09003466L: linux-pm@vger.kernel.org
Chanwoo Choi6a3cd722015-11-05 13:30:17 +09003467T: git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
Kyungmin Park89d07762012-01-10 15:09:09 -08003468S: Maintained
3469F: drivers/devfreq/
Chanwoo Choi6a3cd722015-11-05 13:30:17 +09003470F: include/linux/devfreq.h
3471F: Documentation/devicetree/bindings/devfreq/
Kyungmin Park89d07762012-01-10 15:09:09 -08003472
Chanwoo Choi7dbded02015-11-05 13:30:18 +09003473DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
3474M: Chanwoo Choi <cw00.choi@samsung.com>
3475L: linux-pm@vger.kernel.org
3476T: git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3477S: Supported
3478F: drivers/devfreq/event/
3479F: drivers/devfreq/devfreq-event.c
3480F: include/linux/devfreq-event.h
3481F: Documentation/devicetree/bindings/devfreq/event/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003482
3483DEVICE NUMBER REGISTRY
Joe Perches8a6e2532010-03-05 13:43:11 -08003484M: Torben Mathiasen <device@lanana.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003485W: http://lanana.org/docs/device-list/index.html
Joe Perches679655d2009-04-07 20:44:32 -07003486S: Maintained
3487
3488DEVICE-MAPPER (LVM)
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01003489M: Alasdair Kergon <agk@redhat.com>
Alasdair G Kergon8504eed2013-07-10 23:41:19 +01003490M: Mike Snitzer <snitzer@redhat.com>
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01003491M: dm-devel@redhat.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003492L: dm-devel@redhat.com
3493W: http://sources.redhat.com/dm
3494Q: http://patchwork.kernel.org/project/dm-devel/list/
Mike Snitzer41d35d22013-11-04 19:42:38 -05003495T: git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01003496T: quilt http://people.redhat.com/agk/patches/linux/editing/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003497S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003498F: Documentation/device-mapper/
3499F: drivers/md/dm*
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01003500F: drivers/md/persistent-data/
Joe Perches679655d2009-04-07 20:44:32 -07003501F: include/linux/device-mapper.h
3502F: include/linux/dm-*.h
Alasdair G Kergon8504eed2013-07-10 23:41:19 +01003503F: include/uapi/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003504
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003505DIALOG SEMICONDUCTOR DRIVERS
3506M: Support Opensource <support.opensource@diasemi.com>
3507W: http://www.dialog-semiconductor.com/products
3508S: Supported
3509F: Documentation/hwmon/da90??
Adam Thomson7c933772015-09-29 16:44:12 +01003510F: Documentation/devicetree/bindings/sound/da[79]*.txt
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003511F: drivers/gpio/gpio-da90??.c
3512F: drivers/hwmon/da90??-hwmon.c
Adam Thomson7be72c22015-02-18 14:08:37 +00003513F: drivers/iio/adc/da91??-*.c
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003514F: drivers/input/misc/da90??_onkey.c
3515F: drivers/input/touchscreen/da9052_tsi.c
3516F: drivers/leds/leds-da90??.c
3517F: drivers/mfd/da903x.c
3518F: drivers/mfd/da90??-*.c
Adam Thomson7be72c22015-02-18 14:08:37 +00003519F: drivers/mfd/da91??-*.c
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003520F: drivers/power/da9052-battery.c
Adam Thomson7be72c22015-02-18 14:08:37 +00003521F: drivers/power/da91??-*.c
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003522F: drivers/regulator/da903x.c
3523F: drivers/regulator/da9???-regulator.[ch]
3524F: drivers/rtc/rtc-da90??.c
3525F: drivers/video/backlight/da90??_bl.c
3526F: drivers/watchdog/da90??_wdt.c
3527F: include/linux/mfd/da903x.h
3528F: include/linux/mfd/da9052/
3529F: include/linux/mfd/da9055/
3530F: include/linux/mfd/da9063/
Adam Thomson7be72c22015-02-18 14:08:37 +00003531F: include/linux/mfd/da9150/
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003532F: include/sound/da[79]*.h
3533F: sound/soc/codecs/da[79]*.[ch]
3534
Lidza Louina599aa692013-09-23 16:13:15 -04003535DIGI NEO AND CLASSIC PCI PRODUCTS
3536M: Lidza Louina <lidza.louina@gmail.com>
Mark Hounschell542f3d52014-04-25 14:32:15 -04003537M: Mark Hounschell <markh@compro.net>
Lidza Louina599aa692013-09-23 16:13:15 -04003538L: driverdev-devel@linuxdriverproject.org
3539S: Maintained
3540F: drivers/staging/dgnc/
3541
3542DIGI EPCA PCI PRODUCTS
3543M: Lidza Louina <lidza.louina@gmail.com>
Daeseok Youn6d825f72014-07-12 01:25:42 +09003544M: Daeseok Youn <daeseok.youn@gmail.com>
Lidza Louina599aa692013-09-23 16:13:15 -04003545L: driverdev-devel@linuxdriverproject.org
3546S: Maintained
3547F: drivers/staging/dgap/
3548
Guenter Roeck335d7c52011-01-26 11:45:49 -08003549DIOLAN U2C-12 I2C DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07003550M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck335d7c52011-01-26 11:45:49 -08003551L: linux-i2c@vger.kernel.org
3552S: Maintained
3553F: drivers/i2c/busses/i2c-diolan-u2c.c
3554
Matthew Wilcoxd475c632015-02-16 15:58:56 -08003555DIRECT ACCESS (DAX)
3556M: Matthew Wilcox <willy@linux.intel.com>
3557L: linux-fsdevel@vger.kernel.org
3558S: Supported
3559F: fs/dax.c
3560
Randy Dunlape7839f22008-10-12 16:11:45 -07003561DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07003562M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04003563S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003564F: Documentation/filesystems/dnotify.txt
3565F: fs/notify/dnotify/
3566F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003567
3568DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07003569M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003570W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
3571W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
3572W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
3573S: Maintained
3574
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003575DISKQUOTA
Jiri Slabyd8130622015-07-17 16:23:20 -07003576M: Jan Kara <jack@suse.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003578F: Documentation/filesystems/quota.txt
3579F: fs/quota/
3580F: include/linux/quota*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003581F: include/uapi/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003582
Bernie Thompson702686a2012-03-01 13:52:13 -08003583DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
3584M: Bernie Thompson <bernie@plugable.com>
3585L: linux-fbdev@vger.kernel.org
3586S: Maintained
3587W: http://plugable.com/category/projects/udlfb/
Jingoo Han8a61f012014-07-01 15:36:01 +09003588F: drivers/video/fbdev/udlfb.c
Bernie Thompson702686a2012-03-01 13:52:13 -08003589F: include/video/udlfb.h
3590F: Documentation/fb/udlfb.txt
3591
Randy Dunlape7839f22008-10-12 16:11:45 -07003592DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07003593M: Christine Caulfield <ccaulfie@redhat.com>
3594M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04003595L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003596W: http://sources.redhat.com/cluster/
Fengguang Wu9f273c22016-01-20 15:03:25 -08003597T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003598S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003599F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003600
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05303601DMA BUFFER SHARING FRAMEWORK
3602M: Sumit Semwal <sumit.semwal@linaro.org>
3603S: Maintained
3604L: linux-media@vger.kernel.org
3605L: dri-devel@lists.freedesktop.org
Randy Dunlap8ada6d22014-10-13 15:51:19 -07003606L: linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
Maarten Lankhorst35fac7e2014-07-01 12:57:08 +02003607F: drivers/dma-buf/
Joe Perchese46d12c2014-08-08 14:26:16 -07003608F: include/linux/dma-buf*
3609F: include/linux/reservation.h
3610F: include/linux/*fence.h
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05303611F: Documentation/dma-buf-sharing.txt
3612T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
3613
Dan Williamsb3e5f262007-08-07 10:26:35 -07003614DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Dan Williams4abed0a2011-02-14 00:42:08 -08003615M: Vinod Koul <vinod.koul@intel.com>
Vinod Koul17b59562013-10-22 12:58:56 +05303616L: dmaengine@vger.kernel.org
3617Q: https://patchwork.kernel.org/project/linux-dmaengine/list/
Dan Williams08223d82014-08-19 06:07:56 -07003618S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003619F: drivers/dma/
Vinod Koul0ce3c062014-12-22 20:57:13 +05303620F: include/linux/dmaengine.h
Vinod Koul979a281e2014-11-06 11:21:17 +05303621F: Documentation/dmaengine/
3622T: git git://git.infradead.org/users/vkoul/slave-dma.git
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003623
Juerg Haefligerb8250372007-06-09 10:11:16 -04003624DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003625M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04003626L: lm-sensors@lm-sensors.org
3627S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003628F: Documentation/hwmon/dme1737
3629F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04003630
Jean Delvare1f31e1b2015-03-25 15:55:31 -07003631DMI/SMBIOS SUPPORT
Jiri Slabyd8130622015-07-17 16:23:20 -07003632M: Jean Delvare <jdelvare@suse.com>
Jean Delvare1f31e1b2015-03-25 15:55:31 -07003633S: Maintained
Jean Delvared4aeef932015-06-25 09:06:56 +02003634T: quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
Ivan Khoronzhukd7f96f972015-06-25 09:06:56 +02003635F: Documentation/ABI/testing/sysfs-firmware-dmi-tables
Jean Delvare1f31e1b2015-03-25 15:55:31 -07003636F: drivers/firmware/dmi-id.c
3637F: drivers/firmware/dmi_scan.c
3638F: include/linux/dmi.h
3639
Joe Perches7d2c86b2009-04-07 20:59:01 -07003640DOCUMENTATION
Jonathan Corbetad3118b2014-10-17 08:59:26 -04003641M: Jonathan Corbet <corbet@lwn.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02003642L: linux-doc@vger.kernel.org
3643S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003644F: Documentation/
Jonathan Corbet42f41ec2015-09-11 13:23:36 -06003645F: scripts/docproc.c
3646F: scripts/kernel-doc*
Randy Dunlap97be0782014-06-27 18:28:56 -07003647X: Documentation/ABI/
3648X: Documentation/devicetree/
Jonathan Corbet933a46b2015-03-26 10:25:17 -06003649X: Documentation/acpi
3650X: Documentation/power
3651X: Documentation/spi
Jonathan Corbet6c121172015-07-24 15:08:14 +02003652X: Documentation/DocBook/media
Jonathan Corbetc51edfb2015-09-24 16:05:28 -06003653T: git git://git.lwn.net/linux.git docs-next
Randy Dunlapabbaeff2008-07-04 09:59:57 -07003654
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003656M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003657L: blinux-list@redhat.com
3658S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003659F: drivers/char/dtlk.c
3660F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003661
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003662DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003663M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003664L: linux-scsi@vger.kernel.org
3665W: http://www.adaptec.com/
3666S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003667F: drivers/scsi/dpt*
3668F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003669
Philipp Reisnerb411b362009-09-25 16:07:19 -07003670DRBD DRIVER
Roland Kammererbc2c0492015-07-07 16:37:10 +02003671M: Philipp Reisner <philipp.reisner@linbit.com>
3672M: Lars Ellenberg <lars.ellenberg@linbit.com>
3673L: drbd-dev@lists.linbit.com
Joe Perches28b8e8d2010-03-23 13:35:20 -07003674W: http://www.drbd.org
Roland Kammererbc2c0492015-07-07 16:37:10 +02003675T: git git://git.linbit.com/linux-drbd.git
3676T: git git://git.linbit.com/drbd-8.4.git
Joe Perches28b8e8d2010-03-23 13:35:20 -07003677S: Supported
3678F: drivers/block/drbd/
3679F: lib/lru_cache.c
3680F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07003681
Wolfram Sangdc7dfcd2015-04-23 17:20:54 +02003682DRIVER CORE, KOBJECTS, DEBUGFS, KERNFS AND SYSFS
Greg KH879a5a02012-01-31 20:02:00 -08003683M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perches08deed12012-03-23 15:01:57 -07003684T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003686F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07003687F: drivers/base/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07003688F: fs/debugfs/
Wolfram Sangdc7dfcd2015-04-23 17:20:54 +02003689F: fs/kernfs/
3690F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07003691F: include/linux/debugfs.h
Wolfram Sangdc7dfcd2015-04-23 17:20:54 +02003692F: include/linux/kobj*
Joe Perches679655d2009-04-07 20:44:32 -07003693F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003694
3695DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003696M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04003697L: dri-devel@lists.freedesktop.org
Alex Deucherb0447882014-02-18 10:03:44 -05003698T: git git://people.freedesktop.org/~airlied/linux
Linus Torvalds1da177e2005-04-16 15:20:36 -07003699S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003700F: drivers/gpu/drm/
Daniel Vetter433e3b32014-05-26 23:44:42 +02003701F: drivers/gpu/vga/
Joe Perches850e9412010-08-09 17:20:45 -07003702F: include/drm/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003703F: include/uapi/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003704
Alex Deucher566f5932014-02-18 10:03:43 -05003705RADEON DRM DRIVERS
3706M: Alex Deucher <alexander.deucher@amd.com>
3707M: Christian König <christian.koenig@amd.com>
3708L: dri-devel@lists.freedesktop.org
3709T: git git://people.freedesktop.org/~agd5f/linux
3710S: Supported
3711F: drivers/gpu/drm/radeon/
Alex Deucher566f5932014-02-18 10:03:43 -05003712F: include/uapi/drm/radeon*
3713
Thierry Reding03e255b2014-04-04 08:59:18 +02003714DRM PANEL DRIVERS
3715M: Thierry Reding <thierry.reding@gmail.com>
3716L: dri-devel@lists.freedesktop.org
3717T: git git://anongit.freedesktop.org/tegra/linux.git
3718S: Maintained
3719F: drivers/gpu/drm/drm_panel.c
3720F: drivers/gpu/drm/panel/
3721F: include/drm/drm_panel.h
Rob Herring2d799dd2015-11-05 13:40:40 -06003722F: Documentation/devicetree/bindings/display/panel/
Thierry Reding03e255b2014-04-04 08:59:18 +02003723
Chris Wilson8daf7472010-09-28 14:07:26 +01003724INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
Daniel Vettercbce7102014-08-28 12:17:42 +02003725M: Daniel Vetter <daniel.vetter@intel.com>
Daniel Vetter47f95642014-01-07 09:24:31 +01003726M: Jani Nikula <jani.nikula@linux.intel.com>
Daniel Vetter362132d2013-03-13 22:28:46 +01003727L: intel-gfx@lists.freedesktop.org
Chris Wilson8daf7472010-09-28 14:07:26 +01003728L: dri-devel@lists.freedesktop.org
Jani Nikula7564fde2015-10-13 11:16:48 +03003729W: https://01.org/linuxgraphics/
Daniel Vetter47f95642014-01-07 09:24:31 +01003730Q: http://patchwork.freedesktop.org/project/intel-gfx/
Daniel Vetter89258a92014-02-04 19:57:38 +01003731T: git git://anongit.freedesktop.org/drm-intel
Chris Wilson8daf7472010-09-28 14:07:26 +01003732S: Supported
Joe Perches14430812013-09-11 14:23:50 -07003733F: drivers/gpu/drm/i915/
Chris Wilson8daf7472010-09-28 14:07:26 +01003734F: include/drm/i915*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003735F: include/uapi/drm/i915*
Chris Wilson8daf7472010-09-28 14:07:26 +01003736
Boris BREZILLON99763bb2015-10-13 11:55:42 +02003737DRM DRIVERS FOR ATMEL HLCDC
3738M: Boris Brezillon <boris.brezillon@free-electrons.com>
3739L: dri-devel@lists.freedesktop.org
3740S: Supported
3741F: drivers/gpu/drm/atmel-hlcdc/
3742F: Documentation/devicetree/bindings/drm/atmel/
3743
Kyungmin Park398a6d42011-11-02 11:33:16 +09003744DRM DRIVERS FOR EXYNOS
3745M: Inki Dae <inki.dae@samsung.com>
Inki Daef1501302012-01-17 14:08:55 +09003746M: Joonyoung Shim <jy0922.shim@samsung.com>
3747M: Seung-Woo Kim <sw0312.kim@samsung.com>
3748M: Kyungmin Park <kyungmin.park@samsung.com>
Kyungmin Park398a6d42011-11-02 11:33:16 +09003749L: dri-devel@lists.freedesktop.org
Inki Dae25a58032012-10-30 16:08:05 +09003750T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
Kyungmin Park398a6d42011-11-02 11:33:16 +09003751S: Supported
Joe Perches14430812013-09-11 14:23:50 -07003752F: drivers/gpu/drm/exynos/
Kyungmin Park398a6d42011-11-02 11:33:16 +09003753F: include/drm/exynos*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003754F: include/uapi/drm/exynos*
Kyungmin Park398a6d42011-11-02 11:33:16 +09003755
Jianwei Wangb55a1b92015-08-19 22:26:33 -04003756DRM DRIVERS FOR FREESCALE DCU
3757M: Jianwei Wang <jianwei.wang.chn@gmail.com>
3758M: Alison Wang <alison.wang@freescale.com>
3759L: dri-devel@lists.freedesktop.org
3760S: Supported
3761F: drivers/gpu/drm/fsl-dcu/
Rob Herring2d799dd2015-11-05 13:40:40 -06003762F: Documentation/devicetree/bindings/display/fsl,dcu.txt
3763F: Documentation/devicetree/bindings/display/panel/nec,nl4827hc19_05b.txt
Jianwei Wangb55a1b92015-08-19 22:26:33 -04003764
Philipp Zabel0a3d7752014-11-24 16:33:35 +01003765DRM DRIVERS FOR FREESCALE IMX
3766M: Philipp Zabel <p.zabel@pengutronix.de>
3767L: dri-devel@lists.freedesktop.org
3768S: Maintained
3769F: drivers/gpu/drm/imx/
Philipp Zabelef739aa2015-06-19 16:22:38 +02003770F: drivers/gpu/ipu-v3/
Rob Herring2d799dd2015-11-05 13:40:40 -06003771F: Documentation/devicetree/bindings/display/imx/
Philipp Zabel0a3d7752014-11-24 16:33:35 +01003772
Patrik Jakobssonba2199a2015-10-12 23:14:44 +02003773DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
3774M: Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
3775L: dri-devel@lists.freedesktop.org
3776T: git git://github.com/patjak/drm-gma500
3777S: Maintained
3778F: drivers/gpu/drm/gma500
3779F: include/drm/gma500*
3780
Thierry Redingbd3b49f2012-11-28 20:45:28 +01003781DRM DRIVERS FOR NVIDIA TEGRA
Thierry Redinga5ad7a62013-05-19 14:19:21 +02003782M: Thierry Reding <thierry.reding@gmail.com>
3783M: Terje Bergström <tbergstrom@nvidia.com>
Thierry Redingbd3b49f2012-11-28 20:45:28 +01003784L: dri-devel@lists.freedesktop.org
3785L: linux-tegra@vger.kernel.org
Thierry Redinga5ad7a62013-05-19 14:19:21 +02003786T: git git://anongit.freedesktop.org/tegra/linux.git
Stephen Warrenadabdb02013-09-13 13:00:57 -06003787S: Supported
Thierry Redingdee82682013-10-09 10:32:49 +02003788F: drivers/gpu/drm/tegra/
Thierry Redinga5ad7a62013-05-19 14:19:21 +02003789F: drivers/gpu/host1x/
Thierry Redinge1e90642013-09-24 13:59:01 +02003790F: include/linux/host1x.h
Thierry Redinga5ad7a62013-05-19 14:19:21 +02003791F: include/uapi/drm/tegra_drm.h
Rob Herring2d799dd2015-11-05 13:40:40 -06003792F: Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
Thierry Redingbd3b49f2012-11-28 20:45:28 +01003793
Laurent Pincharta284e9d2014-08-19 23:04:31 +02003794DRM DRIVERS FOR RENESAS
3795M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
3796L: dri-devel@lists.freedesktop.org
Simon Horman4a121092016-01-18 10:04:33 +09003797L: linux-renesas-soc@vger.kernel.org
Laurent Pincharta284e9d2014-08-19 23:04:31 +02003798T: git git://people.freedesktop.org/~airlied/linux
3799S: Supported
3800F: drivers/gpu/drm/rcar-du/
3801F: drivers/gpu/drm/shmobile/
Laurent Pincharta284e9d2014-08-19 23:04:31 +02003802F: include/linux/platform_data/shmob_drm.h
3803
Heiko Stuebner625e0342015-04-20 00:59:50 +02003804DRM DRIVERS FOR ROCKCHIP
3805M: Mark Yao <mark.yao@rock-chips.com>
3806L: dri-devel@lists.freedesktop.org
3807S: Maintained
3808F: drivers/gpu/drm/rockchip/
Rob Herring2d799dd2015-11-05 13:40:40 -06003809F: Documentation/devicetree/bindings/display/rockchip*
Heiko Stuebner625e0342015-04-20 00:59:50 +02003810
Benjamin Gaignard7f11c472015-08-14 15:35:24 -07003811DRM DRIVERS FOR STI
3812M: Benjamin Gaignard <benjamin.gaignard@linaro.org>
3813M: Vincent Abriou <vincent.abriou@st.com>
3814L: dri-devel@lists.freedesktop.org
3815T: git http://git.linaro.org/people/benjamin.gaignard/kernel.git
3816S: Maintained
3817F: drivers/gpu/drm/sti
Rob Herring2d799dd2015-11-05 13:40:40 -06003818F: Documentation/devicetree/bindings/display/st,stih4xx.txt
Benjamin Gaignard7f11c472015-08-14 15:35:24 -07003819
Lucas Stach8bb0bce2015-12-03 17:12:07 +01003820DRM DRIVERS FOR VIVANTE GPU IP
3821M: Lucas Stach <l.stach@pengutronix.de>
3822R: Russell King <linux+etnaviv@arm.linux.org.uk>
3823R: Christian Gmeiner <christian.gmeiner@gmail.com>
3824L: dri-devel@lists.freedesktop.org
3825S: Maintained
3826F: drivers/gpu/drm/etnaviv
3827F: Documentation/devicetree/bindings/display/etnaviv
3828
Alexey Klimov598df1a2012-11-28 17:16:32 -03003829DSBR100 USB FM RADIO DRIVER
3830M: Alexey Klimov <klimov.linux@gmail.com>
3831L: linux-media@vger.kernel.org
3832T: git git://linuxtv.org/media_tree.git
3833S: Maintained
3834F: drivers/media/radio/dsbr100.c
3835
Linus Torvalds1da177e2005-04-16 15:20:36 -07003836DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003837M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08003838L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003839S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003840F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841
Hans Verkuilcc11b142015-04-25 12:36:18 -03003842DT3155 MEDIA DRIVER
3843M: Hans Verkuil <hverkuil@xs4all.nl>
3844L: linux-media@vger.kernel.org
3845T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003846W: https://linuxtv.org
Hans Verkuilcc11b142015-04-25 12:36:18 -03003847S: Odd Fixes
3848F: drivers/media/pci/dt3155/
3849
Antti Palosaari91952bc2012-10-01 12:28:46 -03003850DVB_USB_AF9015 MEDIA DRIVER
3851M: Antti Palosaari <crope@iki.fi>
3852L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003853W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03003854W: http://palosaari.fi/linux/
3855Q: http://patchwork.linuxtv.org/project/linux-media/list/
3856T: git git://linuxtv.org/anttip/media_tree.git
3857S: Maintained
3858F: drivers/media/usb/dvb-usb-v2/af9015*
3859
3860DVB_USB_AF9035 MEDIA DRIVER
3861M: Antti Palosaari <crope@iki.fi>
3862L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003863W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03003864W: http://palosaari.fi/linux/
3865Q: http://patchwork.linuxtv.org/project/linux-media/list/
3866T: git git://linuxtv.org/anttip/media_tree.git
3867S: Maintained
3868F: drivers/media/usb/dvb-usb-v2/af9035*
3869
3870DVB_USB_ANYSEE MEDIA DRIVER
3871M: Antti Palosaari <crope@iki.fi>
3872L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003873W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03003874W: http://palosaari.fi/linux/
3875Q: http://patchwork.linuxtv.org/project/linux-media/list/
3876T: git git://linuxtv.org/anttip/media_tree.git
3877S: Maintained
3878F: drivers/media/usb/dvb-usb-v2/anysee*
3879
3880DVB_USB_AU6610 MEDIA DRIVER
3881M: Antti Palosaari <crope@iki.fi>
3882L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003883W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03003884W: http://palosaari.fi/linux/
3885Q: http://patchwork.linuxtv.org/project/linux-media/list/
3886T: git git://linuxtv.org/anttip/media_tree.git
3887S: Maintained
3888F: drivers/media/usb/dvb-usb-v2/au6610*
3889
3890DVB_USB_CE6230 MEDIA DRIVER
3891M: Antti Palosaari <crope@iki.fi>
3892L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003893W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03003894W: http://palosaari.fi/linux/
3895Q: http://patchwork.linuxtv.org/project/linux-media/list/
3896T: git git://linuxtv.org/anttip/media_tree.git
3897S: Maintained
3898F: drivers/media/usb/dvb-usb-v2/ce6230*
3899
Michael Krufkyd099dea2012-10-02 00:56:20 -03003900DVB_USB_CXUSB MEDIA DRIVER
3901M: Michael Krufky <mkrufky@linuxtv.org>
3902L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003903W: https://linuxtv.org
Michael Krufkyd099dea2012-10-02 00:56:20 -03003904W: http://github.com/mkrufky
3905Q: http://patchwork.linuxtv.org/project/linux-media/list/
3906T: git git://linuxtv.org/media_tree.git
3907S: Maintained
Cesar Eduardo Barros9819da62013-01-04 15:35:25 -08003908F: drivers/media/usb/dvb-usb/cxusb*
Michael Krufkyd099dea2012-10-02 00:56:20 -03003909
Antti Palosaari91952bc2012-10-01 12:28:46 -03003910DVB_USB_EC168 MEDIA DRIVER
3911M: Antti Palosaari <crope@iki.fi>
3912L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003913W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03003914W: http://palosaari.fi/linux/
3915Q: http://patchwork.linuxtv.org/project/linux-media/list/
3916T: git git://linuxtv.org/anttip/media_tree.git
3917S: Maintained
3918F: drivers/media/usb/dvb-usb-v2/ec168*
3919
Antti Palosaari55609832013-04-09 20:30:42 -03003920DVB_USB_GL861 MEDIA DRIVER
3921M: Antti Palosaari <crope@iki.fi>
3922L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003923W: https://linuxtv.org
Antti Palosaari55609832013-04-09 20:30:42 -03003924Q: http://patchwork.linuxtv.org/project/linux-media/list/
3925T: git git://linuxtv.org/anttip/media_tree.git
3926S: Maintained
3927F: drivers/media/usb/dvb-usb-v2/gl861*
3928
Michael Krufky8856f5f2012-10-02 00:55:50 -03003929DVB_USB_MXL111SF MEDIA DRIVER
3930M: Michael Krufky <mkrufky@linuxtv.org>
3931L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003932W: https://linuxtv.org
Michael Krufky8856f5f2012-10-02 00:55:50 -03003933W: http://github.com/mkrufky
3934Q: http://patchwork.linuxtv.org/project/linux-media/list/
3935T: git git://linuxtv.org/mkrufky/mxl111sf.git
3936S: Maintained
3937F: drivers/media/usb/dvb-usb-v2/mxl111sf*
3938
Antti Palosaari91952bc2012-10-01 12:28:46 -03003939DVB_USB_RTL28XXU MEDIA DRIVER
3940M: Antti Palosaari <crope@iki.fi>
3941L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003942W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03003943W: http://palosaari.fi/linux/
3944Q: http://patchwork.linuxtv.org/project/linux-media/list/
3945T: git git://linuxtv.org/anttip/media_tree.git
3946S: Maintained
3947F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
3948
3949DVB_USB_V2 MEDIA DRIVER
3950M: Antti Palosaari <crope@iki.fi>
3951L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003952W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03003953W: http://palosaari.fi/linux/
3954Q: http://patchwork.linuxtv.org/project/linux-media/list/
3955T: git git://linuxtv.org/anttip/media_tree.git
3956S: Maintained
3957F: drivers/media/usb/dvb-usb-v2/dvb_usb*
3958F: drivers/media/usb/dvb-usb-v2/usb_urb.c
3959
Jason Baronac0ac382011-08-11 14:36:43 -04003960DYNAMIC DEBUG
Joe Perches5c4a97d2013-07-31 13:53:32 -07003961M: Jason Baron <jbaron@akamai.com>
Jason Baronac0ac382011-08-11 14:36:43 -04003962S: Maintained
3963F: lib/dynamic_debug.c
3964F: include/linux/dynamic_debug.h
3965
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08003966DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003967M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08003968S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003969F: drivers/tty/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08003970
Moritz Fischerf17effb2015-01-10 14:10:59 -08003971E3X0 POWER BUTTON DRIVER
3972M: Moritz Fischer <moritz.fischer@ettus.com>
3973L: usrp-users@lists.ettus.com
3974W: http://www.ettus.com
3975S: Supported
3976F: drivers/input/misc/e3x0-button.c
3977F: Documentation/devicetree/bindings/input/e3x0-button.txt
3978
Antti Palosaari91952bc2012-10-01 12:28:46 -03003979E4000 MEDIA DRIVER
3980M: Antti Palosaari <crope@iki.fi>
3981L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003982W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03003983W: http://palosaari.fi/linux/
3984Q: http://patchwork.linuxtv.org/project/linux-media/list/
3985T: git git://linuxtv.org/anttip/media_tree.git
3986S: Maintained
3987F: drivers/media/tuners/e4000*
3988
Linus Torvalds1da177e2005-04-16 15:20:36 -07003989EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003990M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003991L: linux-scsi@vger.kernel.org
3992S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003993F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003994
Antti Palosaari91952bc2012-10-01 12:28:46 -03003995EC100 MEDIA DRIVER
3996M: Antti Palosaari <crope@iki.fi>
3997L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003998W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03003999W: http://palosaari.fi/linux/
4000Q: http://patchwork.linuxtv.org/project/linux-media/list/
4001T: git git://linuxtv.org/anttip/media_tree.git
4002S: Maintained
4003F: drivers/media/dvb-frontends/ec100*
4004
Michael Halcrow237fead2006-10-04 02:16:22 -07004005ECRYPT FILE SYSTEM
Tyler Hicks0de9adf2011-11-05 09:04:47 -04004006M: Tyler Hicks <tyhicks@canonical.com>
Tyler Hicksa058bfb2011-05-27 11:47:59 -05004007L: ecryptfs@vger.kernel.org
Dustin Kirkland24a923e2013-05-31 10:41:43 -05004008W: http://ecryptfs.org
Michael Halcrow6dc75162008-12-15 13:54:17 -08004009W: https://launchpad.net/ecryptfs
Fengguang Wu9f273c22016-01-20 15:03:25 -08004010T: git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
Michael Halcrow237fead2006-10-04 02:16:22 -07004011S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004012F: Documentation/filesystems/ecryptfs.txt
4013F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07004014
Alan Coxda9bb1d2006-01-18 17:44:13 -08004015EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07004016M: Doug Thompson <dougthompson@xmission.com>
Borislav Petkovaa15aa02014-03-03 15:38:17 -08004017M: Borislav Petkov <bp@alien8.de>
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02004018M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04004019L: linux-edac@vger.kernel.org
Fengguang Wu07cd6bf2015-12-18 15:51:36 +08004020T: git git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git for-next
4021T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-edac.git linux_next
Doug Thompson8c2a6a42006-06-30 01:56:09 -07004022S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004023F: Documentation/edac.txt
Chris Metcalf91445c72012-03-31 09:46:03 -04004024F: drivers/edac/
Joe Perches679655d2009-04-07 20:44:32 -07004025F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08004026
Borislav Petkovc476c232009-05-20 20:31:58 +02004027EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07004028M: Doug Thompson <dougthompson@xmission.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01004029M: Borislav Petkov <bp@alien8.de>
Chris Metcalf91445c72012-03-31 09:46:03 -04004030L: linux-edac@vger.kernel.org
Borislav Petkov487ba8e2012-10-29 18:40:10 +01004031S: Maintained
Borislav Petkovc476c232009-05-20 20:31:58 +02004032F: drivers/edac/amd64_edac*
4033
Robert Richter836dae52013-10-18 09:24:52 +02004034EDAC-CALXEDA
4035M: Doug Thompson <dougthompson@xmission.com>
4036M: Robert Richter <rric@kernel.org>
4037L: linux-edac@vger.kernel.org
Robert Richter836dae52013-10-18 09:24:52 +02004038S: Maintained
4039F: drivers/edac/highbank*
4040
Ralf Baechlef65aad42012-10-17 00:39:09 +02004041EDAC-CAVIUM
4042M: Ralf Baechle <ralf@linux-mips.org>
4043M: David Daney <david.daney@cavium.com>
4044L: linux-edac@vger.kernel.org
4045L: linux-mips@linux-mips.org
Ralf Baechlef65aad42012-10-17 00:39:09 +02004046S: Supported
4047F: drivers/edac/octeon_edac*
4048
Dave Peterson0e438e32006-03-26 01:38:55 -08004049EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07004050M: Mark Gross <mark.gross@intel.com>
4051M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04004052L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08004053S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004054F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08004055
4056EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07004057M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04004058L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08004059S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004060F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08004061
Mauro Carvalho Chehab77c5f5d2013-02-15 06:11:57 -03004062EDAC-GHES
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02004063M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab77c5f5d2013-02-15 06:11:57 -03004064L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab77c5f5d2013-02-15 06:11:57 -03004065S: Maintained
Joe Perches2caa67a2013-09-11 14:23:40 -07004066F: drivers/edac/ghes_edac.c
Mauro Carvalho Chehab77c5f5d2013-02-15 06:11:57 -03004067
Douglas Thompson6bc78402007-07-19 01:50:12 -07004068EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07004069M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04004070L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07004071S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004072F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07004073
4074EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07004075M: Jason Uhlenkott <juhlenko@akamai.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04004076L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07004077S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004078F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07004079
4080EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07004081M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04004082L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07004083S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004084F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07004085
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08004086EDAC-I5400
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02004087M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03004088L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08004089S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004090F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08004091
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03004092EDAC-I7300
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02004093M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03004094L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03004095S: Maintained
4096F: drivers/edac/i7300_edac.c
4097
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03004098EDAC-I7CORE
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02004099M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03004100L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03004101S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03004102F: drivers/edac/i7core_edac.c
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03004103
Douglas Thompsonba9a5912007-07-19 01:50:32 -07004104EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07004105M: Ranganathan Desikan <ravi@jetztechnologies.com>
Arvind R25527882011-01-21 23:13:37 +05304106M: "Arvind R." <arvino55@gmail.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04004107L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07004108S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004109F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07004110
Jason Baron791b4702014-07-09 21:13:11 +00004111EDAC-IE31200
4112M: Jason Baron <jbaron@akamai.com>
4113L: linux-edac@vger.kernel.org
Jason Baron791b4702014-07-09 21:13:11 +00004114S: Maintained
4115F: drivers/edac/ie31200_edac.c
4116
Johannes Thumshirnccdfb972013-11-17 19:25:12 +01004117EDAC-MPC85XX
Johannes Thumshirn30c74692015-05-07 10:21:24 +02004118M: Johannes Thumshirn <morbidrsa@gmail.com>
Johannes Thumshirnccdfb972013-11-17 19:25:12 +01004119L: linux-edac@vger.kernel.org
Johannes Thumshirnccdfb972013-11-17 19:25:12 +01004120S: Maintained
4121F: drivers/edac/mpc85xx_edac.[ch]
4122
Douglas Thompsonba9a5912007-07-19 01:50:32 -07004123EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07004124M: Egor Martovetsky <egor@pasemi.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04004125L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07004126S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004127F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07004128
Dave Peterson0e438e32006-03-26 01:38:55 -08004129EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07004130M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04004131L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08004132S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004133F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08004134
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02004135EDAC-SBRIDGE
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02004136M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02004137L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02004138S: Maintained
4139F: drivers/edac/sb_edac.c
4140
Loc Ho995e1de2015-05-22 17:32:57 -06004141EDAC-XGENE
4142APPLIED MICRO (APM) X-GENE SOC EDAC
4143M: Loc Ho <lho@apm.com>
4144S: Supported
4145F: drivers/edac/xgene_edac.c
4146F: Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
4147
Clemens Ladischaf399172011-01-10 16:32:54 +01004148EDIROL UA-101/UA-1000 DRIVER
4149M: Clemens Ladisch <clemens@ladisch.de>
4150L: alsa-devel@alsa-project.org (moderated for non-subscribers)
4151T: git git://git.alsa-project.org/alsa-kernel.git
4152S: Maintained
4153F: sound/usb/misc/ua101.c
4154
Matt Fleming1f7df952012-10-03 10:04:02 +01004155EXTENSIBLE FIRMWARE INTERFACE (EFI)
Matt Fleming825fcfc2015-10-10 17:22:16 +01004156M: Matt Fleming <matt@codeblueprint.co.uk>
Matt Fleming1f7df952012-10-03 10:04:02 +01004157L: linux-efi@vger.kernel.org
Matt Fleming78bef242012-10-08 11:33:05 +01004158T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
Matt Fleming1f7df952012-10-03 10:04:02 +01004159S: Maintained
Joe Perchesfb2efb52014-08-08 14:25:01 -07004160F: Documentation/efi-stub.txt
Matt Fleming1f7df952012-10-03 10:04:02 +01004161F: arch/ia64/kernel/efi.c
4162F: arch/x86/boot/compressed/eboot.[ch]
4163F: arch/x86/include/asm/efi.h
4164F: arch/x86/platform/efi/*
Tom Gundersena9499fa2013-02-08 15:37:06 +00004165F: drivers/firmware/efi/*
Matt Fleming1f7df952012-10-03 10:04:02 +01004166F: include/linux/efi*.h
4167
Matt Flemingd68772b2013-02-08 16:27:24 +00004168EFI VARIABLE FILESYSTEM
4169M: Matthew Garrett <matthew.garrett@nebula.com>
4170M: Jeremy Kerr <jk@ozlabs.org>
Matt Fleming825fcfc2015-10-10 17:22:16 +01004171M: Matt Fleming <matt@codeblueprint.co.uk>
Matt Flemingd68772b2013-02-08 16:27:24 +00004172T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4173L: linux-efi@vger.kernel.org
4174S: Maintained
4175F: fs/efivarfs/
4176
Peter Jones85a00d92010-09-22 13:05:04 -07004177EFIFB FRAMEBUFFER DRIVER
4178L: linux-fbdev@vger.kernel.org
4179M: Peter Jones <pjones@redhat.com>
4180S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09004181F: drivers/video/fbdev/efifb.c
Peter Jones85a00d92010-09-22 13:05:04 -07004182
Josh Triplett0bee8d22006-07-30 03:03:58 -07004183EFS FILESYSTEM
4184W: http://aeschi.ch.eu.org/efs/
4185S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004186F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07004187
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004188EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004189M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
4190M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004191L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07004192S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004193F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07004194
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07004195EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
Thadeu Lima de Souza Cascardo34b19012011-10-13 09:56:19 +00004196M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07004197L: netdev@vger.kernel.org
4198S: Maintained
Jeff Kirsher9aa32832011-05-13 14:29:12 -07004199F: drivers/net/ethernet/ibm/ehea/
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07004200
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02004201EM28XX VIDEO4LINUX DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02004202M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02004203L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02004204W: https://linuxtv.org
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02004205T: git git://linuxtv.org/media_tree.git
4206S: Maintained
4207F: drivers/media/usb/em28xx/
4208
David Woodhouse3e3a7d62008-05-01 04:34:46 -07004209EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07004210M: Paul Gortmaker <paul.gortmaker@windriver.com>
4211M: Matt Mackall <mpm@selenic.com>
4212M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07004213L: linux-embedded@vger.kernel.org
4214S: Maintained
4215
James Smart32505872015-05-15 13:10:58 -04004216EMULEX/AVAGO LPFC FC/FCOE SCSI DRIVER
4217M: James Smart <james.smart@avagotech.com>
4218M: Dick Kennedy <dick.kennedy@avagotech.com>
Jim Cromiece00f852006-11-30 04:49:44 +01004219L: linux-scsi@vger.kernel.org
James Smart32505872015-05-15 13:10:58 -04004220W: http://www.avagotech.com
Jim Cromiece00f852006-11-30 04:49:44 +01004221S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004222F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04004223
Michał Mirosław5f5bac82009-05-22 20:33:59 +02004224ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004225M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02004226S: Maintained
4227F: drivers/misc/cb710/
4228F: drivers/mmc/host/cb710-mmc.*
4229F: include/linux/cb710.h
4230
Maxim Levitsky931e39a2010-07-31 11:59:26 -03004231ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
4232M: Maxim Levitsky <maximlevitsky@gmail.com>
4233S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07004234F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03004235
Gavin Shanec207dc2013-06-28 21:12:14 +08004236ENHANCED ERROR HANDLING (EEH)
4237M: Gavin Shan <shangw@linux.vnet.ibm.com>
4238L: linuxppc-dev@lists.ozlabs.org
4239S: Supported
4240F: Documentation/powerpc/eeh-pci-error-recovery.txt
4241F: arch/powerpc/kernel/eeh*.c
4242
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07004243EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004244M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07004245S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07004246T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Jingoo Han8a61f012014-07-01 15:36:01 +09004247F: drivers/video/fbdev/s1d13xxxfb.c
Joe Perches679655d2009-04-07 20:44:32 -07004248F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07004249
Mark Einon38df6492014-09-30 22:29:46 +01004250ET131X NETWORK DRIVER
4251M: Mark Einon <mark.einon@gmail.com>
4252S: Odd Fixes
4253F: drivers/net/ethernet/agere/
4254
Linus Torvalds1da177e2005-04-16 15:20:36 -07004255ETHERNET BRIDGE
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08004256M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07004257L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08004258L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00004259W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07004260S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004261F: include/linux/netfilter_bridge/
4262F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004263
Florian Fainelli22f08ad2014-02-18 09:47:49 -08004264ETHERNET PHY LIBRARY
4265M: Florian Fainelli <f.fainelli@gmail.com>
4266L: netdev@vger.kernel.org
4267S: Maintained
4268F: include/linux/phy.h
4269F: include/linux/phy_fixed.h
4270F: drivers/net/phy/
4271F: Documentation/networking/phy.txt
4272F: drivers/of/of_mdio.c
4273F: drivers/of/of_net.c
4274
Linus Torvalds1da177e2005-04-16 15:20:36 -07004275EXT2 FILE SYSTEM
Jiri Slabyd8130622015-07-17 16:23:20 -07004276M: Jan Kara <jack@suse.com>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004277L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004278S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004279F: Documentation/filesystems/ext2.txt
4280F: fs/ext2/
4281F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004282
Erik Mouw72be2cc2006-12-06 20:40:49 -08004283EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004284M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02004285M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004286L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04004287W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004288Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Fengguang Wu9f273c22016-01-20 15:03:25 -08004289T: git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004290S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004291F: Documentation/filesystems/ext4.txt
4292F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004293
Mimi Zoharc5532b02011-08-17 18:52:24 -04004294Extended Verification Module (EVM)
Mimi Zohar74dd7442014-02-27 08:44:45 -05004295M: Mimi Zohar <zohar@linux.vnet.ibm.com>
4296L: linux-ima-devel@lists.sourceforge.net
4297L: linux-security-module@vger.kernel.org
Mimi Zoharc5532b02011-08-17 18:52:24 -04004298S: Supported
4299F: security/integrity/evm/
4300
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09004301EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
4302M: MyungJoo Ham <myungjoo.ham@samsung.com>
4303M: Chanwoo Choi <cw00.choi@samsung.com>
4304L: linux-kernel@vger.kernel.org
Chanwoo Choi81df63a2013-09-28 15:04:37 +09004305T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09004306S: Maintained
4307F: drivers/extcon/
Chanwoo Choicd2c3e72015-11-06 16:30:55 -08004308F: include/linux/extcon/
4309F: include/linux/extcon.h
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09004310F: Documentation/extcon/
Chanwoo Choicd2c3e72015-11-06 16:30:55 -08004311F: Documentation/devicetree/bindings/extcon/
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09004312
Jingoo Hane2a75c42014-04-10 20:24:03 +09004313EXYNOS DP DRIVER
Jingoo Hanb7701752015-05-14 15:17:07 -07004314M: Jingoo Han <jingoohan1@gmail.com>
Jingoo Hane2a75c42014-04-10 20:24:03 +09004315L: dri-devel@lists.freedesktop.org
4316S: Maintained
4317F: drivers/gpu/drm/exynos/exynos_dp*
4318
Donghwa Lee33ad3912012-03-06 11:44:58 +09004319EXYNOS MIPI DISPLAY DRIVERS
4320M: Inki Dae <inki.dae@samsung.com>
4321M: Donghwa Lee <dh09.lee@samsung.com>
4322M: Kyungmin Park <kyungmin.park@samsung.com>
4323L: linux-fbdev@vger.kernel.org
4324S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09004325F: drivers/video/fbdev/exynos/exynos_mipi*
Donghwa Lee33ad3912012-03-06 11:44:58 +09004326F: include/video/exynos_mipi*
4327
Jean Delvaree53004e2006-01-09 23:26:14 +01004328F71805F HARDWARE MONITORING DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07004329M: Jean Delvare <jdelvare@suse.com>
Jean Delvaree53004e2006-01-09 23:26:14 +01004330L: lm-sensors@lm-sensors.org
4331S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004332F: Documentation/hwmon/f71805f
4333F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01004334
Michael Büscheea977e2012-04-02 12:14:32 -03004335FC0011 TUNER DRIVER
4336M: Michael Buesch <m@bues.ch>
4337L: linux-media@vger.kernel.org
4338S: Maintained
Mauro Carvalho Chehabccae7af2012-06-14 16:35:59 -03004339F: drivers/media/tuners/fc0011.h
4340F: drivers/media/tuners/fc0011.c
Michael Büscheea977e2012-04-02 12:14:32 -03004341
Antti Palosaari91952bc2012-10-01 12:28:46 -03004342FC2580 MEDIA DRIVER
4343M: Antti Palosaari <crope@iki.fi>
4344L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02004345W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03004346W: http://palosaari.fi/linux/
4347Q: http://patchwork.linuxtv.org/project/linux-media/list/
4348T: git git://linuxtv.org/anttip/media_tree.git
4349S: Maintained
4350F: drivers/media/tuners/fc2580*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004351
Eric Paris88b2dbd2010-08-18 12:25:50 -04004352FANOTIFY
4353M: Eric Paris <eparis@redhat.com>
4354S: Maintained
4355F: fs/notify/fanotify/
4356F: include/linux/fanotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004357F: include/uapi/linux/fanotify.h
Eric Paris88b2dbd2010-08-18 12:25:50 -04004358
Linus Torvalds1da177e2005-04-16 15:20:36 -07004359FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004360M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004361W: http://www.farsite.co.uk/
4362S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004363F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004364
Akinobu Mitac5408b82007-04-23 14:41:20 -07004365FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004366M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07004367S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004368F: Documentation/fault-injection/
4369F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07004370
Noralf Trønnes053e5142015-01-23 19:29:07 +01004371FBTFT Framebuffer drivers
4372M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4373M: Noralf Trønnes <noralf@tronnes.org>
4374S: Maintained
4375F: drivers/staging/fbtft/
4376
Robert Lovecae727d2010-02-16 12:16:00 -08004377FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
Robert Love3bd746c2014-05-28 14:19:01 -07004378M: Vasu Dev <vasu.dev@intel.com>
Neil Hormanf4aaea62013-05-03 19:38:10 +00004379L: fcoe-devel@open-fcoe.org
Robert Lovecae727d2010-02-16 12:16:00 -08004380W: www.Open-FCoE.org
4381S: Supported
4382F: drivers/scsi/libfc/
4383F: drivers/scsi/fcoe/
4384F: include/scsi/fc/
4385F: include/scsi/libfc.h
4386F: include/scsi/libfcoe.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004387F: include/uapi/scsi/fc/
Robert Lovecae727d2010-02-16 12:16:00 -08004388
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004389FILE LOCKING (flock() and fcntl()/lockf())
Jeff Layton8c836fa2014-04-30 13:28:17 -04004390M: Jeff Layton <jlayton@poochiereds.net>
Joe Perches9c3646d2015-06-25 15:02:00 -07004391M: "J. Bruce Fields" <bfields@fieldses.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004392L: linux-fsdevel@vger.kernel.org
4393S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004394F: include/linux/fcntl.h
4395F: include/linux/fs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004396F: include/uapi/linux/fcntl.h
4397F: include/uapi/linux/fs.h
Joe Perches679655d2009-04-07 20:44:32 -07004398F: fs/fcntl.c
4399F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004400
4401FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07004402M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004403L: linux-fsdevel@vger.kernel.org
4404S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004405F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004406
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004407FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02004408M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004409L: lm-sensors@lm-sensors.org
4410S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07004411F: drivers/hwmon/f75375s.c
4412F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004413
Clemens Ladischa331b0c2011-05-25 09:48:48 +02004414FIREWIRE AUDIO DRIVERS
4415M: Clemens Ladisch <clemens@ladisch.de>
4416L: alsa-devel@alsa-project.org (moderated for non-subscribers)
4417T: git git://git.alsa-project.org/alsa-kernel.git
4418S: Maintained
4419F: sound/firewire/
4420
Stefan Richtereb86ec52012-11-03 09:25:20 +01004421FIREWIRE MEDIA DRIVERS (firedtv)
4422M: Stefan Richter <stefanr@s5r6.in-berlin.de>
4423L: linux-media@vger.kernel.org
4424L: linux1394-devel@lists.sourceforge.net
4425T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
4426S: Maintained
4427F: drivers/media/firewire/
4428
Chris Boota511ce32012-04-14 17:50:35 -07004429FIREWIRE SBP-2 TARGET
4430M: Chris Boot <bootc@bootc.net>
4431L: linux-scsi@vger.kernel.org
4432L: target-devel@vger.kernel.org
4433L: linux1394-devel@lists.sourceforge.net
4434T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
4435S: Maintained
4436F: drivers/target/sbp/
4437
Joe Perches7d2c86b2009-04-07 20:59:01 -07004438FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004439M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004440L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01004441W: http://ieee1394.wiki.kernel.org/
Stefan Richter2ca526b2011-12-20 21:23:28 +01004442T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004443S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004444F: drivers/firewire/
Stefan Richter8f06ce32012-12-17 16:00:07 -08004445F: include/linux/firewire.h
4446F: include/uapi/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02004447F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004448
4449FIRMWARE LOADER (request_firmware)
Ming Lei39e68082012-08-20 19:04:17 +08004450M: Ming Lei <ming.lei@canonical.com>
4451L: linux-kernel@vger.kernel.org
4452S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004453F: Documentation/firmware_class/
4454F: drivers/base/firmware*.c
4455F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004456
Philip J Kelleherf730e3d2013-06-18 14:43:58 -05004457FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
Philip J Kelleher9bb3c442013-02-27 09:24:59 -06004458M: Joshua Morris <josh.h.morris@us.ibm.com>
4459M: Philip Kelleher <pjk1939@linux.vnet.ibm.com>
4460S: Maintained
4461F: drivers/block/rsxx/
4462
Jiri Kosina8206f662012-05-18 13:52:29 +02004463FLOPPY DRIVER
Jiri Kosinae5f64502015-08-09 09:11:34 +02004464M: Jiri Kosina <jikos@kernel.org>
Jiri Kosina8206f662012-05-18 13:52:29 +02004465T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
4466S: Odd fixes
4467F: drivers/block/floppy.c
4468
Alessandro Rubini9c9f32e2013-06-12 09:13:25 +02004469FMC SUBSYSTEM
4470M: Alessandro Rubini <rubini@gnudd.com>
4471W: http://www.ohwr.org/projects/fmc-bus
4472S: Supported
4473F: drivers/fmc/
4474F: include/linux/fmc*.h
4475F: include/linux/ipmi-fru.h
4476K: fmc_d.*register
4477
Alan Tull3c0ed7d2015-10-07 20:49:23 +01004478FPGA MANAGER FRAMEWORK
4479M: Alan Tull <atull@opensource.altera.com>
Moritz Fischerdd7d6642015-11-20 15:56:51 -08004480R: Moritz Fischer <moritz.fischer@ettus.com>
Alan Tull3c0ed7d2015-10-07 20:49:23 +01004481S: Maintained
4482F: drivers/fpga/
4483F: include/linux/fpga/fpga-mgr.h
4484W: http://www.rocketboards.org
4485
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004486FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07004487M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07004488W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004489S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004490F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004491
4492FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004493L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00004494S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004495F: drivers/net/wan/dlci.c
4496F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004497
Linus Torvalds1da177e2005-04-16 15:20:36 -07004498FRAMEBUFFER LAYER
Jean-Christophe PLAGNIOL-VILLARD5489e942013-05-30 22:23:44 +02004499M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
4500M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004501L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004502W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09004503Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Jean-Christophe PLAGNIOL-VILLARD5489e942013-05-30 22:23:44 +02004504T: git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
Paul Mundt56be1412011-03-23 08:29:07 +09004505S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004506F: Documentation/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09004507F: drivers/video/
4508F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07004509F: include/linux/fb.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004510F: include/uapi/video/
4511F: include/uapi/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004512
Timur Tabia57c1882012-10-16 17:33:42 -05004513FREESCALE DIU FRAMEBUFFER DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004514M: Timur Tabi <timur@tabi.org>
Timur Tabia57c1882012-10-16 17:33:42 -05004515L: linux-fbdev@vger.kernel.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004516S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09004517F: drivers/video/fbdev/fsl-diu-fb.*
Timur Tabia57c1882012-10-16 17:33:42 -05004518
Zhang Wei173acc72008-03-01 07:42:48 -07004519FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004520M: Li Yang <leoli@freescale.com>
4521M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004522L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07004523S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004524F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07004525
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02004526FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004527M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004528L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01004529L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02004530S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004531F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02004532
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01004533FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004534M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004535L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07004536L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01004537S: Maintained
Cesar Eduardo Barrosbad985a2013-01-04 15:35:28 -08004538F: include/linux/platform_data/video-imxfb.h
Jingoo Han8a61f012014-07-01 15:36:01 +09004539F: drivers/video/fbdev/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01004540
Han Xu4d8e2ce2015-01-16 03:29:17 +08004541FREESCALE QUAD SPI DRIVER
4542M: Han Xu <han.xu@freescale.com>
4543L: linux-mtd@lists.infradead.org
4544S: Maintained
4545F: drivers/mtd/spi-nor/fsl-quadspi.c
4546
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03004547FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004548M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
4549M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004550L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03004551L: netdev@vger.kernel.org
4552S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07004553F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07004554F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03004555
Timur Tabid9e9d822008-04-24 08:45:26 +10004556FREESCALE QUICC ENGINE LIBRARY
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004557L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004558S: Orphan
Zhao Qiang7aa1aa62015-11-30 10:48:57 +08004559F: drivers/soc/fsl/qe/
4560F: include/soc/fsl/*qe*.h
4561F: include/soc/fsl/*ucc*.h
Timur Tabid9e9d822008-04-24 08:45:26 +10004562
Joe Perchesb55ef9292009-10-26 16:49:46 -07004563FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004564M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07004565L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004566L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07004567S: Maintained
Joe Perchesfaf2e1d2014-08-08 14:26:18 -07004568F: drivers/usb/gadget/udc/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07004569
Li Yangbeaf53b2007-05-25 13:54:02 +08004570FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004571M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08004572L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004573L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08004574S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07004575F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08004576
Claudiu Manoilabb1ed72015-10-23 11:42:01 +03004577FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
4578M: Claudiu Manoil <claudiu.manoil@freescale.com>
4579L: netdev@vger.kernel.org
4580S: Maintained
4581F: drivers/net/ethernet/freescale/gianfar*
4582X: drivers/net/ethernet/freescale/gianfar_ptp.c
4583F: Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
4584
Timur Tabid9e9d822008-04-24 08:45:26 +10004585FREESCALE QUICC ENGINE UCC UART DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004586M: Timur Tabi <timur@tabi.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004587L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004588S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004589F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10004590
4591FREESCALE SOC SOUND DRIVERS
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004592M: Timur Tabi <timur@tabi.org>
Mark Browndc859502014-08-07 10:47:24 +01004593M: Nicolin Chen <nicoleotsuka@gmail.com>
Xiubo Lib4b98292014-12-12 16:54:14 -08004594M: Xiubo Li <Xiubo.Lee@gmail.com>
Joe Perches93711662009-06-16 15:34:07 -07004595L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004596L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004597S: Maintained
Joe Perches69aefce2009-04-09 10:39:22 -07004598F: sound/soc/fsl/fsl*
Mark Browndc859502014-08-07 10:47:24 +01004599F: sound/soc/fsl/imx*
Joe Perches69aefce2009-04-09 10:39:22 -07004600F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10004601
J. German Rivera31c88962015-03-05 19:29:09 -06004602FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER
Joe Perches9c3646d2015-06-25 15:02:00 -07004603M: "J. German Rivera" <German.Rivera@freescale.com>
J. German Rivera31c88962015-03-05 19:29:09 -06004604L: linux-kernel@vger.kernel.org
4605S: Maintained
4606F: drivers/staging/fsl-mc/
4607
Linus Torvalds1da177e2005-04-16 15:20:36 -07004608FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004609M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004610W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
4611S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004612F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004613
Pavel Machek71038f52009-01-15 13:51:02 -08004614FREEZER
Rafael J. Wysocki49db1902013-10-09 01:47:53 +02004615M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Rafael J. Wysocki7fb06082014-03-20 03:34:47 +01004616M: Pavel Machek <pavel@ucw.cz>
WANG Congbf1c1382011-10-08 20:57:50 +02004617L: linux-pm@vger.kernel.org
Pavel Machek71038f52009-01-15 13:51:02 -08004618S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004619F: Documentation/power/freezing-of-tasks.txt
4620F: include/linux/freezer.h
4621F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08004622
Konrad Rzeszutek Wilk839a1f72012-04-16 17:06:35 -04004623FRONTSWAP API
4624M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4625L: linux-kernel@vger.kernel.org
4626S: Maintained
4627F: mm/frontswap.c
4628F: include/linux/frontswap.h
4629
David Howellsa5432f52009-04-20 15:46:45 +01004630FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07004631M: David Howells <dhowells@redhat.com>
Geert Uytterhoevene62d6e22015-11-12 11:46:33 +00004632L: linux-cachefs@redhat.com (moderated for non-subscribers)
David Howellsa5432f52009-04-20 15:46:45 +01004633S: Supported
4634F: Documentation/filesystems/caching/
4635F: fs/fscache/
4636F: include/linux/fscache*.h
4637
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09004638F2FS FILE SYSTEM
Jaegeuk Kim9b29d482014-05-30 08:20:08 +09004639M: Jaegeuk Kim <jaegeuk@kernel.org>
Jaegeuk Kimf6238a72014-05-31 01:00:49 +09004640M: Changman Lee <cm224.lee@samsung.com>
Chao Yu7b2a2462015-08-12 17:47:08 +08004641R: Chao Yu <chao2.yu@samsung.com>
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09004642L: linux-f2fs-devel@lists.sourceforge.net
4643W: http://en.wikipedia.org/wiki/F2FS
4644T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
4645S: Maintained
4646F: Documentation/filesystems/f2fs.txt
Jaegeuk Kim3bac3802014-01-09 21:00:06 +09004647F: Documentation/ABI/testing/sysfs-fs-f2fs
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09004648F: fs/f2fs/
4649F: include/linux/f2fs_fs.h
Chao Yu62d43ee2015-07-06 20:29:46 +08004650F: include/trace/events/f2fs.h
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09004651
David Howells5ab7ffe2007-04-10 15:10:45 +01004652FUJITSU FR-V (FRV) PORT
David Howells0cf03052016-01-20 10:29:00 +00004653S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004654F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004655
Jonathan Woithe20b93732008-06-11 10:14:56 +09304656FUJITSU LAPTOP EXTRAS
Jonathan Woithe409a3e92012-03-27 13:01:01 +10304657M: Jonathan Woithe <jwoithe@just42.net>
Matthew Garrettd09448532010-02-11 10:40:13 -05004658L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09304659S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004660F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09304661
Heungjun Kim4da621b2011-11-11 08:05:33 -03004662FUJITSU M-5MO LS CAMERA ISP DRIVER
4663M: Kyungmin Park <kyungmin.park@samsung.com>
4664M: Heungjun Kim <riverful.kim@samsung.com>
4665L: linux-media@vger.kernel.org
4666S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004667F: drivers/media/i2c/m5mols/
Mauro Carvalho Chehabb5dcee22015-11-10 12:01:44 -02004668F: include/media/i2c/m5mols.h
Heungjun Kim4da621b2011-11-11 08:05:33 -03004669
Robert Gerlach2d24c492012-01-18 14:26:22 +01004670FUJITSU TABLET EXTRAS
4671M: Robert Gerlach <khnz@gmx.de>
4672L: platform-driver-x86@vger.kernel.org
4673S: Maintained
4674F: drivers/platform/x86/fujitsu-tablet.c
4675
Miklos Szeredi04578f12005-09-09 13:10:22 -07004676FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07004677M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07004678L: fuse-devel@lists.sourceforge.net
4679W: http://fuse.sourceforge.net/
Miklos Szeredi0a30f612015-07-01 17:10:36 +02004680T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
Miklos Szeredi04578f12005-09-09 13:10:22 -07004681S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004682F: fs/fuse/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004683F: include/uapi/linux/fuse.h
Miklos Szeredi0a30f612015-07-01 17:10:36 +02004684F: Documentation/filesystems/fuse.txt
Miklos Szeredi04578f12005-09-09 13:10:22 -07004685
Linus Torvalds1da177e2005-04-16 15:20:36 -07004686FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07004687M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004688L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02004689S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07004690F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004691
Peter Oberparleiterd8e21622013-10-16 13:46:49 -07004692GCOV BASED KERNEL PROFILING
4693M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
4694S: Maintained
4695F: kernel/gcov/
4696F: Documentation/gcov.txt
4697
Linus Torvalds1da177e2005-04-16 15:20:36 -07004698GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004699M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004700L: linux-scsi@vger.kernel.org
4701W: http://www.icp-vortex.com/
4702S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004703F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004704
Jan Kiszka158daf12015-02-17 13:47:49 -08004705GDB KERNEL DEBUGGING HELPER SCRIPTS
4706M: Jan Kiszka <jan.kiszka@siemens.com>
4707S: Supported
4708F: scripts/gdb/
4709
Hans Verkuil3169a1c2012-11-23 07:11:58 -03004710GEMTEK FM RADIO RECEIVER DRIVER
4711M: Hans Verkuil <hverkuil@xs4all.nl>
4712L: linux-media@vger.kernel.org
4713T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02004714W: https://linuxtv.org
Hans Verkuil3169a1c2012-11-23 07:11:58 -03004715S: Maintained
4716F: drivers/media/radio/radio-gemtek*
4717
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02004718GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07004719M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02004720S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004721F: drivers/i2c/busses/i2c-gpio.c
4722F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02004723
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01004724GENERIC GPIO I2C MULTIPLEXER DRIVER
4725M: Peter Korsgaard <peter.korsgaard@barco.com>
4726L: linux-i2c@vger.kernel.org
4727S: Supported
Jean Delvaree7065e22012-04-28 15:32:06 +02004728F: drivers/i2c/muxes/i2c-mux-gpio.c
4729F: include/linux/i2c-mux-gpio.h
4730F: Documentation/i2c/muxes/i2c-mux-gpio
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01004731
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004732GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004733M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004734W: http://www.kernel.org/pub/linux/utils/net/hdlc/
4735S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004736F: drivers/net/wan/c101.c
4737F: drivers/net/wan/hd6457*
4738F: drivers/net/wan/hdlc*
4739F: drivers/net/wan/n2.c
4740F: drivers/net/wan/pc300too.c
4741F: drivers/net/wan/pci200syn.c
4742F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004743
Arnd Bergmann1527aab2009-06-14 22:46:16 +02004744GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07004745M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02004746L: linux-arch@vger.kernel.org
4747T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
4748S: Maintained
Joe Perches14430812013-09-11 14:23:50 -07004749F: include/asm-generic/
4750F: include/uapi/asm-generic/
Arnd Bergmann1527aab2009-06-14 22:46:16 +02004751
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +05304752GENERIC PHY FRAMEWORK
4753M: Kishon Vijay Abraham I <kishon@ti.com>
4754L: linux-kernel@vger.kernel.org
4755T: git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
4756S: Supported
4757F: drivers/phy/
4758F: include/linux/phy/
4759
Kevin Hilmaneea97ae2015-03-12 10:33:46 -07004760GENERIC PM DOMAINS
4761M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
4762M: Kevin Hilman <khilman@kernel.org>
4763M: Ulf Hansson <ulf.hansson@linaro.org>
4764L: linux-pm@vger.kernel.org
4765S: Supported
4766F: drivers/base/power/domain*.c
4767F: include/linux/pm_domain.h
4768
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03004769GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07004770M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03004771L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03004772S: Supported
4773F: drivers/uio/uio_pci_generic.c
4774
Joe Perchesf8f1ec72014-06-04 16:05:31 -07004775GET_MAINTAINER SCRIPT
4776M: Joe Perches <joe@perches.com>
4777S: Maintained
4778F: scripts/get_maintainer.pl
4779
Steven Whitehouse5be7b502006-04-28 11:27:32 -04004780GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004781M: Steven Whitehouse <swhiteho@redhat.com>
Bob Peterson28666d62015-02-13 11:23:11 -06004782M: Bob Peterson <rpeterso@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04004783L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04004784W: http://sources.redhat.com/cluster/
Bob Peterson28666d62015-02-13 11:23:11 -06004785T: git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04004786S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004787F: Documentation/filesystems/gfs2*.txt
4788F: fs/gfs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004789F: include/uapi/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04004790
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08004791GIGASET ISDN DRIVERS
Tilman Schmidt6b096fd2015-05-02 19:23:22 +02004792M: Paul Bolle <pebolle@tiscali.nl>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08004793L: gigaset307x-common@lists.sourceforge.net
4794W: http://gigaset307x.sourceforge.net/
Tilman Schmidt6b096fd2015-05-02 19:23:22 +02004795S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004796F: Documentation/isdn/README.gigaset
4797F: drivers/isdn/gigaset/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004798F: include/uapi/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08004799
Joe Perches7eea35f2014-07-30 05:09:23 -03004800GO7007 MPEG CODEC
4801M: Hans Verkuil <hans.verkuil@cisco.com>
4802L: linux-media@vger.kernel.org
4803S: Maintained
4804F: drivers/media/usb/go7007/
4805
Bastien Noceraca96ea82014-10-31 09:26:16 -07004806GOODIX TOUCHSCREEN
4807M: Bastien Nocera <hadess@hadess.net>
4808L: linux-input@vger.kernel.org
4809S: Maintained
4810F: drivers/input/touchscreen/goodix.c
4811
Grant Likelya0dc00b2011-02-12 01:48:14 -07004812GPIO SUBSYSTEM
Linus Walleije4651a92012-08-06 09:52:52 +02004813M: Linus Walleij <linus.walleij@linaro.org>
Linus Walleijf2fa75c2013-12-10 09:43:09 +01004814M: Alexandre Courbot <gnurou@gmail.com>
Alexandre Courbotd15b7172013-05-26 11:50:54 +09004815L: linux-gpio@vger.kernel.org
Linus Walleijf2fa75c2013-12-10 09:43:09 +01004816T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
4817S: Maintained
4818F: Documentation/gpio/
Grant Likelya0dc00b2011-02-12 01:48:14 -07004819F: drivers/gpio/
Alexandre Courbotbdc6e952014-08-04 13:06:58 +09004820F: include/linux/gpio/
4821F: include/linux/gpio.h
Yang Bai9b692342012-10-04 17:12:35 -07004822F: include/asm-generic/gpio.h
Grant Likelya0dc00b2011-02-12 01:48:14 -07004823
Harry Wei71a6d0a2011-05-11 15:13:33 -07004824GRE DEMULTIPLEXER DRIVER
4825M: Dmitry Kozlov <xeb@mail.ru>
4826L: netdev@vger.kernel.org
4827S: Maintained
Joe Perches11c26772013-09-11 14:23:48 -07004828F: net/ipv4/gre_demux.c
4829F: net/ipv4/gre_offload.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07004830F: include/net/gre.h
4831
Kristoffer Glembod4c41132010-02-15 03:33:44 +00004832GRETH 10/100/1G Ethernet MAC device driver
4833M: Kristoffer Glembo <kristoffer@gaisler.com>
4834L: netdev@vger.kernel.org
4835S: Maintained
Joe Perchesa31a96a2012-01-10 15:08:58 -08004836F: drivers/net/ethernet/aeroflex/
Kristoffer Glembod4c41132010-02-15 03:33:44 +00004837
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004838GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004839M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004840L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004841T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004842S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004843F: drivers/media/usb/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004844
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03004845GSPCA GL860 SUBDRIVER
4846M: Olivier Lorin <o.lorin@laposte.net>
4847L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004848T: git git://linuxtv.org/media_tree.git
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03004849S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004850F: drivers/media/usb/gspca/gl860/
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03004851
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004852GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004853M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004854L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004855T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004856S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004857F: drivers/media/usb/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004858
4859GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004860M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004861L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004862T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004863S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004864F: drivers/media/usb/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004865
Brian Johnson261982f2009-07-19 15:58:56 -03004866GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03004867M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03004868L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004869T: git git://linuxtv.org/media_tree.git
Brian Johnson261982f2009-07-19 15:58:56 -03004870S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004871F: drivers/media/usb/gspca/sn9c20x.c
Brian Johnson261982f2009-07-19 15:58:56 -03004872
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004873GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004874M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004875L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004876T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004877S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004878F: drivers/media/usb/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004879
4880GSPCA USB WEBCAM DRIVER
Jean-Francois Moinefc3f9062012-05-24 07:29:41 -03004881M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004882L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004883T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004884S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004885F: drivers/media/usb/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004886
Davidlohr Bueso584ec972013-12-18 17:08:55 -08004887GUID PARTITION TABLE (GPT)
Andrew Morton4f973c62015-06-25 15:02:05 -07004888M: Davidlohr Bueso <dave@stgolabs.net>
Davidlohr Bueso584ec972013-12-18 17:08:55 -08004889L: linux-efi@vger.kernel.org
4890S: Maintained
4891F: block/partitions/efi.*
4892
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03004893STK1160 USB VIDEO CAPTURE DRIVER
Ezequiel Garcia3259aa52015-03-10 11:43:20 -03004894M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03004895L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004896T: git git://linuxtv.org/media_tree.git
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03004897S: Maintained
4898F: drivers/media/usb/stk1160/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004899
Yoshinori Sato4e456b82015-03-11 01:41:38 +09004900H8/300 ARCHITECTURE
4901M: Yoshinori Sato <ysato@users.sourceforge.jp>
Geert Uytterhoevenb992c762015-07-17 16:23:55 -07004902L: uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
Yoshinori Sato4e456b82015-03-11 01:41:38 +09004903W: http://uclinux-h8.sourceforge.jp
4904T: git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
4905S: Maintained
4906F: arch/h8300/
4907F: drivers/clocksource/h8300_*.c
4908F: drivers/clk/h8300/
4909F: drivers/irqchip/irq-renesas-h8*.c
4910
Harry Wei71a6d0a2011-05-11 15:13:33 -07004911HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
4912M: Frank Seidel <frank@f-seidel.de>
4913L: platform-driver-x86@vger.kernel.org
4914W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
4915S: Maintained
4916F: drivers/platform/x86/hdaps.c
4917
Hans Verkuil48fc9e22013-04-11 03:36:49 -03004918HDPVR USB VIDEO ENCODER DRIVER
4919M: Hans Verkuil <hverkuil@xs4all.nl>
4920L: linux-media@vger.kernel.org
4921T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02004922W: https://linuxtv.org
Hans Verkuil48fc9e22013-04-11 03:36:49 -03004923S: Odd Fixes
Joe Perches14430812013-09-11 14:23:50 -07004924F: drivers/media/usb/hdpvr/
Hans Verkuil48fc9e22013-04-11 03:36:49 -03004925
Harry Wei71a6d0a2011-05-11 15:13:33 -07004926HWPOISON MEMORY FAILURE HANDLING
Andi Kleenf9625c42014-06-04 16:05:32 -07004927M: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
Harry Wei71a6d0a2011-05-11 15:13:33 -07004928L: linux-mm@kvack.org
Harry Wei71a6d0a2011-05-11 15:13:33 -07004929S: Maintained
4930F: mm/memory-failure.c
4931F: mm/hwpoison-inject.c
4932
4933HYPERVISOR VIRTUAL CONSOLE DRIVER
4934L: linuxppc-dev@lists.ozlabs.org
4935S: Odd Fixes
4936F: drivers/tty/hvc/
4937
Antti Palosaarie5ab1472014-09-10 04:20:15 -03004938HACKRF MEDIA DRIVER
4939M: Antti Palosaari <crope@iki.fi>
4940L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02004941W: https://linuxtv.org
Antti Palosaarie5ab1472014-09-10 04:20:15 -03004942W: http://palosaari.fi/linux/
4943Q: http://patchwork.linuxtv.org/project/linux-media/list/
4944T: git git://linuxtv.org/anttip/media_tree.git
4945S: Maintained
4946F: drivers/media/usb/hackrf/
4947
Michael Buesch844dd052006-06-26 00:24:59 -07004948HARDWARE MONITORING
Jiri Slabyd8130622015-07-17 16:23:20 -07004949M: Jean Delvare <jdelvare@suse.com>
Guenter Roeckca462082012-06-01 23:28:23 -07004950M: Guenter Roeck <linux@roeck-us.net>
Robert Love860e1d62005-08-31 23:57:59 -04004951L: lm-sensors@lm-sensors.org
4952W: http://www.lm-sensors.org/
Jean Delvarea94ef4e2015-04-27 16:37:39 +02004953T: quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07004954T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02004955S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01004956F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07004957F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01004958F: include/linux/hwmon*.h
Robert Love860e1d62005-08-31 23:57:59 -04004959
4960HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07004961M: Matt Mackall <mpm@selenic.com>
4962M: Herbert Xu <herbert@gondor.apana.org.au>
Michael S. Tsirkin3eda71672015-01-16 09:16:00 +02004963L: linux-crypto@vger.kernel.org
Joe Perchesc0d07872009-09-23 15:57:17 -07004964S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07004965F: Documentation/hw_random.txt
4966F: drivers/char/hw_random/
4967F: include/linux/hw_random.h
Robert Love860e1d62005-08-31 23:57:59 -04004968
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03004969HARDWARE SPINLOCK CORE
4970M: Ohad Ben-Cohen <ohad@wizery.com>
4971S: Maintained
Fengguang Wu9f273c22016-01-20 15:03:25 -08004972T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/hwspinlock.git
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03004973F: Documentation/hwspinlock.txt
4974F: drivers/hwspinlock/hwspinlock_*
4975F: include/linux/hwspinlock.h
4976
Linus Torvalds1da177e2005-04-16 15:20:36 -07004977HARMONY SOUND DRIVER
Kyle McMartinac6aecb2007-12-03 22:04:34 +00004978L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004979S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004980F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004981
Antti Palosaari91952bc2012-10-01 12:28:46 -03004982HD29L2 MEDIA DRIVER
4983M: Antti Palosaari <crope@iki.fi>
4984L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02004985W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03004986W: http://palosaari.fi/linux/
4987Q: http://patchwork.linuxtv.org/project/linux-media/list/
4988T: git git://linuxtv.org/anttip/media_tree.git
4989S: Maintained
4990F: drivers/media/dvb-frontends/hd29l2*
4991
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004992HEWLETT-PACKARD SMART2 RAID DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004993L: iss_storagedev@hp.com
Michael Opdenackeraf9f1b32014-10-13 15:51:28 -07004994S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004995F: Documentation/blockdev/cpqarray.txt
4996F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004997
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05004998HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Don Brace693373d2014-10-15 22:32:41 +00004999M: Don Brace <don.brace@pmcs.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05005000L: iss_storagedev@hp.com
Don Brace693373d2014-10-15 22:32:41 +00005001L: storagedev@pmcs.com
5002L: linux-scsi@vger.kernel.org
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05005003S: Supported
5004F: Documentation/scsi/hpsa.txt
5005F: drivers/scsi/hpsa*.[ch]
5006F: include/linux/cciss*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005007F: include/uapi/linux/cciss*.h
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05005008
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005009HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Don Brace693373d2014-10-15 22:32:41 +00005010M: Don Brace <don.brace@pmcs.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005011L: iss_storagedev@hp.com
Don Brace693373d2014-10-15 22:32:41 +00005012L: storagedev@pmcs.com
5013L: linux-scsi@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005014S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005015F: Documentation/blockdev/cciss.txt
5016F: drivers/block/cciss*
5017F: include/linux/cciss_ioctl.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005018F: include/uapi/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005019
Linus Torvalds1da177e2005-04-16 15:20:36 -07005020HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02005021L: linux-fsdevel@vger.kernel.org
5022S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005023F: Documentation/filesystems/hfs.txt
5024F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005025
Geert Uytterhoevenef575f42014-01-23 15:54:21 -08005026HFSPLUS FILESYSTEM
5027L: linux-fsdevel@vger.kernel.org
5028S: Orphan
5029F: Documentation/filesystems/hfsplus.txt
5030F: fs/hfsplus/
5031
Linus Torvalds1da177e2005-04-16 15:20:36 -07005032HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005033M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005034L: linux-nvidia@lists.surfsouth.com
5035W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
5036S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09005037F: drivers/video/fbdev/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005038
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005039HIBERNATION (aka Software Suspend, aka swsusp)
Rafael J. Wysocki49db1902013-10-09 01:47:53 +02005040M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Rafael J. Wysocki7fb06082014-03-20 03:34:47 +01005041M: Pavel Machek <pavel@ucw.cz>
WANG Congbf1c1382011-10-08 20:57:50 +02005042L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005043S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005044F: arch/x86/power/
5045F: drivers/base/power/
5046F: kernel/power/
5047F: include/linux/suspend.h
5048F: include/linux/freezer.h
5049F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07005050F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005051
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01005052HID CORE LAYER
Jiri Kosinae5f64502015-08-09 09:11:34 +02005053M: Jiri Kosina <jikos@kernel.org>
Jiri Kosina406df152015-11-20 10:16:06 +01005054R: Benjamin Tissoires <benjamin.tissoires@redhat.com>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04005055L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005056T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01005057S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005058F: drivers/hid/
5059F: include/linux/hid*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005060F: include/uapi/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01005061
Srinivas Pandruvada30ee72f2015-05-15 11:35:38 -07005062HID SENSOR HUB DRIVERS
Jiri Kosinae5f64502015-08-09 09:11:34 +02005063M: Jiri Kosina <jikos@kernel.org>
Srinivas Pandruvada30ee72f2015-05-15 11:35:38 -07005064M: Jonathan Cameron <jic23@kernel.org>
5065M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
5066L: linux-input@vger.kernel.org
5067L: linux-iio@vger.kernel.org
5068S: Maintained
5069F: Documentation/hid/hid-sensor*
5070F: drivers/hid/hid-sensor-*
5071F: drivers/iio/*/hid-*
5072F: include/linux/hid-sensor-*
5073
Ingo Molnar38bed542007-02-22 09:09:34 +01005074HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07005075M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar981c3a42014-01-21 10:59:20 +01005076L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005077T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Ingo Molnar38bed542007-02-22 09:09:34 +01005078S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005079F: Documentation/timers/
Thomas Gleixner5cee9642014-06-22 12:06:40 +02005080F: kernel/time/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01005081F: kernel/time/clockevents.c
5082F: kernel/time/tick*.*
5083F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07005084F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07005085F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01005086
Linus Torvalds1da177e2005-04-16 15:20:36 -07005087HIGH-SPEED SCC DRIVER FOR AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -07005088L: linux-hams@vger.kernel.org
Uwe Kleine-König8b64f2a2012-05-29 15:07:11 -07005089S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005090F: drivers/net/hamradio/dmascc.c
5091F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005092
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08005093HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005094M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08005095W: http://www.highpoint-tech.com
5096S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005097F: Documentation/scsi/hptiop.txt
5098F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08005099
Linus Torvalds1da177e2005-04-16 15:20:36 -07005100HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07005101M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005102L: linux-hippi@sunsite.dk
5103S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005104F: include/linux/hippidevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005105F: include/uapi/linux/if_hippi.h
Joe Perches679655d2009-04-07 20:44:32 -07005106F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07005107F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005108
John Garry16c6c252015-11-18 00:50:59 +08005109HISILICON SAS Controller
5110M: John Garry <john.garry@huawei.com>
5111W: http://www.hisilicon.com
5112S: Supported
5113F: drivers/scsi/hisi_sas/
5114F: Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
5115
Jouni Malinenff1d2762005-05-12 22:54:16 -04005116HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005117M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07005118L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07005119L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04005120W: http://hostap.epitest.fi/
5121S: Maintained
Kalle Valoeb4f98d2015-11-18 09:42:58 +02005122F: drivers/net/wireless/intersil/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04005123
Carlos Corbachodd8cd772008-02-05 02:17:15 +00005124HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd09448532010-02-11 10:40:13 -05005125L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01005126S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005127F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00005128
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005129HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07005130M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005131S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07005132F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005133
Joe Perches7d2c86b2009-04-07 20:59:01 -07005134HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07005135M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08005136S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005137F: Documentation/timers/hpet.txt
5138F: drivers/char/hpet.c
5139F: include/linux/hpet.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005140F: include/uapi/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08005141
Jiri Kosinae07b5d72010-03-18 10:59:57 +01005142HPET: x86
Joe Perches9e06f632014-04-03 14:48:53 -07005143S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005144F: arch/x86/kernel/hpet.c
5145F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08005146
Linus Torvalds1da177e2005-04-16 15:20:36 -07005147HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005148M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005149W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
5150S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005151F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005152
Sebastian Reichel3441cde2013-11-27 10:17:22 +01005153HSI SUBSYSTEM
Sebastian Reichel56459ea2014-03-28 19:57:59 +01005154M: Sebastian Reichel <sre@kernel.org>
5155T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
Sebastian Reichel3441cde2013-11-27 10:17:22 +01005156S: Maintained
5157F: Documentation/ABI/testing/sysfs-bus-hsi
Sebastian Reichel56459ea2014-03-28 19:57:59 +01005158F: Documentation/hsi.txt
Sebastian Reichel3441cde2013-11-27 10:17:22 +01005159F: drivers/hsi/
5160F: include/linux/hsi/
5161F: include/uapi/linux/hsi/
5162
Joe Perches7d2c86b2009-04-07 20:59:01 -07005163HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005164M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00005165W: http://www.pharscape.org
5166S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005167F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00005168
Arvid Brodin19990e22013-11-29 23:36:00 +01005169HSR NETWORK PROTOCOL
5170M: Arvid Brodin <arvid.brodin@alten.se>
5171L: netdev@vger.kernel.org
5172S: Maintained
5173F: net/hsr/
5174
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04005175HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005176M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04005177L: linux-input@vger.kernel.org
5178S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005179F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04005180
Linus Torvalds1da177e2005-04-16 15:20:36 -07005181HUGETLB FILESYSTEM
Nadia Yvette Chambers6d49e352012-12-06 10:39:54 +01005182M: Nadia Yvette Chambers <nyc@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005183S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005184F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005185
K. Y. Srinivasan05183182011-12-01 14:31:30 -08005186Hyper-V CORE AND DRIVERS
Joe Perches9c3646d2015-06-25 15:02:00 -07005187M: "K. Y. Srinivasan" <kys@microsoft.com>
K. Y. Srinivasan05183182011-12-01 14:31:30 -08005188M: Haiyang Zhang <haiyangz@microsoft.com>
5189L: devel@linuxdriverproject.org
5190S: Maintained
Haiyang Zhanga4162742013-05-09 14:34:55 -07005191F: arch/x86/include/asm/mshyperv.h
5192F: arch/x86/include/uapi/asm/hyperv.h
5193F: arch/x86/kernel/cpu/mshyperv.c
K. Y. Srinivasan05183182011-12-01 14:31:30 -08005194F: drivers/hid/hid-hyperv.c
Haiyang Zhanga4162742013-05-09 14:34:55 -07005195F: drivers/hv/
Haiyang Zhangf92ca802013-11-21 14:32:10 -08005196F: drivers/input/serio/hyperv-keyboard.c
K. Y. Srinivasan05183182011-12-01 14:31:30 -08005197F: drivers/net/hyperv/
Haiyang Zhanga4162742013-05-09 14:34:55 -07005198F: drivers/scsi/storvsc_drv.c
Jingoo Han8a61f012014-07-01 15:36:01 +09005199F: drivers/video/fbdev/hyperv_fb.c
Haiyang Zhanga4162742013-05-09 14:34:55 -07005200F: include/linux/hyperv.h
5201F: tools/hv/
Dexuan Cui54bf7252015-08-05 00:52:45 -07005202F: Documentation/ABI/stable/sysfs-bus-vmbus
K. Y. Srinivasan05183182011-12-01 14:31:30 -08005203
Jean Delvared85c8a6a2012-11-13 22:27:19 +01005204I2C OVER PARALLEL PORT
Jiri Slabyd8130622015-07-17 16:23:20 -07005205M: Jean Delvare <jdelvare@suse.com>
Jean Delvared85c8a6a2012-11-13 22:27:19 +01005206L: linux-i2c@vger.kernel.org
5207S: Maintained
5208F: Documentation/i2c/busses/i2c-parport
5209F: Documentation/i2c/busses/i2c-parport-light
5210F: drivers/i2c/busses/i2c-parport.c
5211F: drivers/i2c/busses/i2c-parport-light.c
5212
5213I2C/SMBUS CONTROLLER DRIVERS FOR PC
Jiri Slabyd8130622015-07-17 16:23:20 -07005214M: Jean Delvare <jdelvare@suse.com>
Jean Delvared85c8a6a2012-11-13 22:27:19 +01005215L: linux-i2c@vger.kernel.org
5216S: Maintained
5217F: Documentation/i2c/busses/i2c-ali1535
5218F: Documentation/i2c/busses/i2c-ali1563
5219F: Documentation/i2c/busses/i2c-ali15x3
5220F: Documentation/i2c/busses/i2c-amd756
5221F: Documentation/i2c/busses/i2c-amd8111
5222F: Documentation/i2c/busses/i2c-i801
5223F: Documentation/i2c/busses/i2c-nforce2
5224F: Documentation/i2c/busses/i2c-piix4
5225F: Documentation/i2c/busses/i2c-sis5595
5226F: Documentation/i2c/busses/i2c-sis630
5227F: Documentation/i2c/busses/i2c-sis96x
5228F: Documentation/i2c/busses/i2c-via
5229F: Documentation/i2c/busses/i2c-viapro
5230F: drivers/i2c/busses/i2c-ali1535.c
5231F: drivers/i2c/busses/i2c-ali1563.c
5232F: drivers/i2c/busses/i2c-ali15x3.c
5233F: drivers/i2c/busses/i2c-amd756.c
5234F: drivers/i2c/busses/i2c-amd756-s4882.c
5235F: drivers/i2c/busses/i2c-amd8111.c
5236F: drivers/i2c/busses/i2c-i801.c
5237F: drivers/i2c/busses/i2c-isch.c
5238F: drivers/i2c/busses/i2c-nforce2.c
5239F: drivers/i2c/busses/i2c-nforce2-s4985.c
5240F: drivers/i2c/busses/i2c-piix4.c
5241F: drivers/i2c/busses/i2c-sis5595.c
5242F: drivers/i2c/busses/i2c-sis630.c
5243F: drivers/i2c/busses/i2c-sis96x.c
5244F: drivers/i2c/busses/i2c-via.c
5245F: drivers/i2c/busses/i2c-viapro.c
5246
Neil Hormancb7f07a2013-02-10 11:59:03 -05005247I2C/SMBUS ISMT DRIVER
5248M: Seth Heasley <seth.heasley@intel.com>
5249M: Neil Horman <nhorman@tuxdriver.com>
5250L: linux-i2c@vger.kernel.org
5251F: drivers/i2c/busses/i2c-ismt.c
5252F: Documentation/i2c/busses/i2c-ismt
5253
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005254I2C/SMBUS STUB DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07005255M: Jean Delvare <jdelvare@suse.com>
Jean Delvare846557d2008-10-30 15:55:47 +01005256L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005257S: Maintained
Cesar Eduardo Barros8547a5b2012-12-16 21:11:54 +01005258F: drivers/i2c/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005259
Jean Delvare5b543962005-08-15 19:51:02 +02005260I2C SUBSYSTEM
Wolfram Sang14d77c42013-02-08 20:54:40 +01005261M: Wolfram Sang <wsa@the-dreams.de>
Jean Delvare846557d2008-10-30 15:55:47 +01005262L: linux-i2c@vger.kernel.org
Wolfram Sang9d4ea272014-04-02 20:25:59 +02005263W: https://i2c.wiki.kernel.org/
5264Q: https://patchwork.ozlabs.org/project/linux-i2c/list/
Wolfram Sang14d77c42013-02-08 20:54:40 +01005265T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005266S: Maintained
Wolfram Sang40ed1b42014-12-08 10:53:13 +01005267F: Documentation/devicetree/bindings/i2c/
Joe Perches679655d2009-04-07 20:44:32 -07005268F: Documentation/i2c/
5269F: drivers/i2c/
Wolfram Sang630bc462015-10-29 08:25:48 +01005270F: drivers/i2c/*/
Joe Perches679655d2009-04-07 20:44:32 -07005271F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01005272F: include/linux/i2c-*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005273F: include/uapi/linux/i2c.h
5274F: include/uapi/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005275
Wolfram Sang4560d672014-08-19 10:08:35 -05005276I2C ACPI SUPPORT
5277M: Mika Westerberg <mika.westerberg@linux.intel.com>
5278L: linux-i2c@vger.kernel.org
5279L: linux-acpi@vger.kernel.org
5280S: Maintained
Wolfram Sang4560d672014-08-19 10:08:35 -05005281
Jean Delvared85c8a6a2012-11-13 22:27:19 +01005282I2C-TAOS-EVM DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07005283M: Jean Delvare <jdelvare@suse.com>
Jean Delvared85c8a6a2012-11-13 22:27:19 +01005284L: linux-i2c@vger.kernel.org
5285S: Maintained
5286F: Documentation/i2c/busses/i2c-taos-evm
5287F: drivers/i2c/busses/i2c-taos-evm.c
5288
Till Harbaume8c76ee2007-05-01 23:26:35 +02005289I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005290M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01005291L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07005292W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02005293S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005294F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02005295
Linus Torvalds1da177e2005-04-16 15:20:36 -07005296i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07005297M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005298S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005299F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005300
5301i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07005302M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07005303T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005304S: Maintained
5305
Linus Torvalds1da177e2005-04-16 15:20:36 -07005306IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07005307M: Tony Luck <tony.luck@intel.com>
5308M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005309L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07005310T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005311S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005312F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005313
Leonidas Da Silva Barbosa4cd38752015-08-08 18:29:27 -03005314IBM Power VMX Cryptographic instructions
5315M: Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
Paulo Flabiano Smorigo5cd01fe2015-08-10 16:14:17 -03005316M: Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
Leonidas Da Silva Barbosa4cd38752015-08-08 18:29:27 -03005317L: linux-crypto@vger.kernel.org
5318S: Supported
5319F: drivers/crypto/vmx/Makefile
5320F: drivers/crypto/vmx/Kconfig
5321F: drivers/crypto/vmx/vmx.c
5322F: drivers/crypto/vmx/aes*
5323F: drivers/crypto/vmx/ghash*
5324F: drivers/crypto/vmx/ppc-xlate.pl
5325
Kent Yoder956c2032012-09-07 04:17:01 +08005326IBM Power in-Nest Crypto Acceleration
Leonidas Da Silva Barbosa4cd38752015-08-08 18:29:27 -03005327M: Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
Paulo Flabiano Smorigo5cd01fe2015-08-10 16:14:17 -03005328M: Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
Kent Yoder956c2032012-09-07 04:17:01 +08005329L: linux-crypto@vger.kernel.org
5330S: Supported
Dan Streetman28bceea2015-06-18 12:28:32 -04005331F: drivers/crypto/nx/Makefile
5332F: drivers/crypto/nx/Kconfig
5333F: drivers/crypto/nx/nx-aes*
5334F: drivers/crypto/nx/nx-sha*
5335F: drivers/crypto/nx/nx.*
5336F: drivers/crypto/nx/nx_csbcpb.h
5337F: drivers/crypto/nx/nx_debugfs.h
Kent Yoder956c2032012-09-07 04:17:01 +08005338
Seth Jennings0e16aaf2012-07-19 09:42:40 -05005339IBM Power 842 compression accelerator
Dan Streetman41656aa2015-07-29 19:50:46 -04005340M: Dan Streetman <ddstreet@ieee.org>
Seth Jennings0e16aaf2012-07-19 09:42:40 -05005341S: Supported
Dan Streetman28bceea2015-06-18 12:28:32 -04005342F: drivers/crypto/nx/Makefile
5343F: drivers/crypto/nx/Kconfig
Dan Streetman7011a122015-05-07 13:49:17 -04005344F: drivers/crypto/nx/nx-842*
Dan Streetman2da572c2015-05-07 13:49:14 -04005345F: include/linux/sw842.h
Dan Streetman2062c5b2015-05-07 13:49:15 -04005346F: crypto/842.c
Dan Streetman2da572c2015-05-07 13:49:14 -04005347F: lib/842/
Seth Jennings0e16aaf2012-07-19 09:42:40 -05005348
Linus Torvalds1da177e2005-04-16 15:20:36 -07005349IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07005350M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005351S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005352F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005353
Santiago Leon9d348af2010-09-03 18:29:53 +00005354IBM Power Virtual Ethernet Device Driver
Thomas Falconeddd63a2015-01-09 14:29:40 -06005355M: Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
Santiago Leon9d348af2010-09-03 18:29:53 +00005356L: netdev@vger.kernel.org
5357S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07005358F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00005359
Thomas Falcon032c5e82015-12-21 11:26:06 -06005360IBM Power SRIOV Virtual NIC Device Driver
5361M: Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5362M: John Allen <jallen@linux.vnet.ibm.com>
5363L: netdev@vger.kernel.org
5364S: Supported
5365F: drivers/net/ethernet/ibm/ibmvnic.*
5366
Nathan Fontenote6babec2014-04-09 13:32:06 -05005367IBM Power Virtual SCSI Device Drivers
Tyrel Datwylerbcbde522015-01-12 16:31:34 -08005368M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
Robert Jennings4b7652c2012-07-31 12:34:36 -05005369L: linux-scsi@vger.kernel.org
5370S: Supported
Nathan Fontenote6babec2014-04-09 13:32:06 -05005371F: drivers/scsi/ibmvscsi/ibmvscsi*
5372F: drivers/scsi/ibmvscsi/viosrp.h
5373
5374IBM Power Virtual FC Device Drivers
Tyrel Datwyler44b4dad2015-01-12 16:31:35 -08005375M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
Nathan Fontenote6babec2014-04-09 13:32:06 -05005376L: linux-scsi@vger.kernel.org
5377S: Supported
5378F: drivers/scsi/ibmvscsi/ibmvfc*
Robert Jennings4b7652c2012-07-31 12:34:36 -05005379
Linus Torvalds1da177e2005-04-16 15:20:36 -07005380IBM ServeRAID RAID DRIVER
Michael Opdenackerf9213e72014-08-08 14:23:50 -07005381S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005382F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005383
Peter Tyser6ed9f9c2012-04-18 09:48:24 -05005384ICH LPC AND GPIO DRIVER
5385M: Peter Tyser <ptyser@xes-inc.com>
5386S: Maintained
5387F: drivers/mfd/lpc_ich.c
5388F: drivers/gpio/gpio-ich.c
5389
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01005390IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005391M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005392L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005393Q: http://patchwork.ozlabs.org/project/linux-ide/list/
Joe Perches08deed12012-03-23 15:01:57 -07005394T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005395S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005396F: Documentation/ide/
5397F: drivers/ide/
5398F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005399
Ike Panhc6cb8c132011-08-25 22:28:45 +08005400IDEAPAD LAPTOP EXTRAS DRIVER
5401M: Ike Panhc <ike.pan@canonical.com>
5402L: platform-driver-x86@vger.kernel.org
5403W: http://launchpad.net/ideapad-laptop
5404S: Maintained
5405F: drivers/platform/x86/ideapad-laptop.c
5406
Andrey Moiseev1ea4c162013-08-25 22:51:15 -07005407IDEAPAD LAPTOP SLIDEBAR DRIVER
5408M: Andrey Moiseev <o2g.org.ru@gmail.com>
5409L: linux-input@vger.kernel.org
5410W: https://github.com/o2genum/ideapad-slidebar
5411S: Maintained
5412F: drivers/input/misc/ideapad_slidebar.c
5413
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02005414IDE/ATAPI DRIVERS
Borislav Petkov487ba8e2012-10-29 18:40:10 +01005415M: Borislav Petkov <bp@alien8.de>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01005416L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01005417S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005418F: Documentation/cdrom/ide-cd
5419F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005420
Andy Henroid27471fd2008-10-09 11:45:22 -07005421IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07005422M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02005423L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07005424S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005425F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07005426
Sergey Lapin02cf2282009-06-08 12:18:50 +00005427IEEE 802.15.4 SUBSYSTEM
Alexander Aringb6e195f2014-07-03 23:13:19 +02005428M: Alexander Aring <alex.aring@gmail.com>
Varka Bhadramebef9c12014-08-08 17:32:45 +05305429L: linux-wpan@vger.kernel.org
5430W: https://github.com/linux-wpan
5431T: git git://github.com/linux-wpan/linux-wpan-next.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00005432S: Maintained
5433F: net/ieee802154/
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00005434F: net/mac802154/
Cesar Eduardo Barros251741b2013-01-04 15:35:30 -08005435F: drivers/net/ieee802154/
Alexander Aring580947d2014-10-25 09:41:05 +02005436F: include/linux/nl802154.h
5437F: include/linux/ieee802154.h
5438F: include/net/nl802154.h
5439F: include/net/mac802154.h
5440F: include/net/af_ieee802154.h
5441F: include/net/cfg802154.h
5442F: include/net/ieee802154_netdev.h
Varka Bhadramebef9c12014-08-08 17:32:45 +05305443F: Documentation/networking/ieee802154.txt
Sergey Lapin02cf2282009-06-08 12:18:50 +00005444
Sean Youngb1c97192014-10-23 17:58:22 -03005445IGORPLUG-USB IR RECEIVER
5446M: Sean Young <sean@mess.org>
5447L: linux-media@vger.kernel.org
5448S: Maintained
5449F: drivers/media/rc/igorplugusb.c
5450
Sean Young40ad4a32012-11-19 10:32:53 -03005451IGUANAWORKS USB IR TRANSCEIVER
5452M: Sean Young <sean@mess.org>
5453L: linux-media@vger.kernel.org
5454S: Maintained
5455F: drivers/media/rc/iguanair.c
5456
Ameya Palande9545f862012-01-10 09:00:58 -08005457IIO SUBSYSTEM AND DRIVERS
Sachin Kamat030a13d2013-09-11 11:00:00 +01005458M: Jonathan Cameron <jic23@kernel.org>
Lars-Peter Clausenf0d61162014-08-18 09:29:00 +01005459R: Hartmut Knaack <knaack.h@gmx.de>
5460R: Lars-Peter Clausen <lars@metafoo.de>
5461R: Peter Meerwald <pmeerw@pmeerw.net>
Ameya Palande9545f862012-01-10 09:00:58 -08005462L: linux-iio@vger.kernel.org
5463S: Maintained
Lars-Peter Clausen03e7c252012-04-26 13:46:42 +02005464F: drivers/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08005465F: drivers/staging/iio/
Daniel Baluta8fe671f2014-11-13 15:19:47 -08005466F: include/linux/iio/
Roberta Dobrescu817020c2015-02-26 10:49:25 +02005467F: tools/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08005468
Stanislaw Gruszka65519262011-01-08 15:19:40 +01005469IKANOS/ADI EAGLE ADSL USB DRIVER
5470M: Matthieu Castet <castet.matthieu@free.fr>
5471M: Stanislaw Gruszka <stf_xl@wp.pl>
5472S: Maintained
5473F: drivers/usb/atm/ueagle-atm.c
5474
Guenter Roecke89ab512013-03-08 08:13:09 -08005475INA209 HARDWARE MONITOR DRIVER
5476M: Guenter Roeck <linux@roeck-us.net>
5477L: lm-sensors@lm-sensors.org
5478S: Maintained
5479F: Documentation/hwmon/ina209
5480F: Documentation/devicetree/bindings/i2c/ina209.txt
5481F: drivers/hwmon/ina209.c
5482
5483INA2XX HARDWARE MONITOR DRIVER
5484M: Guenter Roeck <linux@roeck-us.net>
5485L: lm-sensors@lm-sensors.org
5486S: Maintained
5487F: Documentation/hwmon/ina2xx
5488F: drivers/hwmon/ina2xx.c
5489F: include/linux/platform_data/ina2xx.h
5490
Samuel Iglesias Gonsalvez14dc1242012-11-16 16:19:59 +01005491INDUSTRY PACK SUBSYSTEM (IPACK)
5492M: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
5493M: Jens Taprogge <jens.taprogge@taprogge.org>
5494M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5495L: industrypack-devel@lists.sourceforge.net
5496W: http://industrypack.sourceforge.net
5497S: Maintained
5498F: drivers/ipack/
5499
Zubair Lutfullah Kakakhel8adc53f2015-03-18 16:16:37 +00005500INGENIC JZ4780 DMA Driver
5501M: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
5502S: Maintained
5503F: drivers/dma/dma-jz4780.c
5504
Mimi Zoharaa7168f2009-02-04 09:07:03 -05005505INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Mimi Zohar74dd7442014-02-27 08:44:45 -05005506M: Mimi Zohar <zohar@linux.vnet.ibm.com>
Dmitry Kasatkinbfd33c42015-01-15 14:18:18 +02005507M: Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
Mimi Zohar74dd7442014-02-27 08:44:45 -05005508L: linux-ima-devel@lists.sourceforge.net
5509L: linux-ima-user@lists.sourceforge.net
5510L: linux-security-module@vger.kernel.org
Fengguang Wu9f273c22016-01-20 15:03:25 -08005511T: git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
Mimi Zoharaa7168f2009-02-04 09:07:03 -05005512S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005513F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05005514
James Hogan9a4ea5a2014-11-17 09:17:49 -03005515IMGTEC IR DECODER DRIVER
5516M: James Hogan <james.hogan@imgtec.com>
5517S: Maintained
5518F: drivers/media/rc/img-ir/
5519
Linus Torvalds1da177e2005-04-16 15:20:36 -07005520IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005521L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09005522S: Orphan
Jingoo Han8a61f012014-07-01 15:36:01 +09005523F: drivers/video/fbdev/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005524
5525INFINIBAND SUBSYSTEM
Doug Ledfordb6b2bbe2015-05-05 12:57:09 -04005526M: Doug Ledford <dledford@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005527M: Sean Hefty <sean.hefty@intel.com>
5528M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07005529L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07005530W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08005531Q: http://patchwork.kernel.org/project/linux-rdma/list/
Doug Ledford2936ae02015-05-11 21:03:36 -04005532T: git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005533S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005534F: Documentation/infiniband/
5535F: drivers/infiniband/
Doug Ledford2dfcad32015-08-27 14:18:57 -04005536F: drivers/staging/rdma/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005537F: include/uapi/linux/if_infiniband.h
Yann Droneaud954138d2015-05-04 14:31:03 +02005538F: include/uapi/rdma/
5539F: include/rdma/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005540
Robert Lovec9f04f52005-07-15 12:21:07 -04005541INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07005542M: John McCutchan <john@johnmccutchan.com>
5543M: Robert Love <rlove@rlove.org>
5544M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04005545S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005546F: Documentation/filesystems/inotify.txt
5547F: fs/notify/inotify/
5548F: include/linux/inotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005549F: include/uapi/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04005550
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005551INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005552M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005553L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005554Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07005555T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005556S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005557F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07005558F: include/linux/input.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005559F: include/uapi/linux/input.h
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07005560F: include/linux/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005561
Henrik Rydberg3267a872010-06-24 19:10:40 -07005562INPUT MULTITOUCH (MT) PROTOCOL
Henrik Rydberg75dd1122015-01-08 14:32:21 -08005563M: Henrik Rydberg <rydberg@bitmath.org>
Henrik Rydberg3267a872010-06-24 19:10:40 -07005564L: linux-input@vger.kernel.org
Henrik Rydberg75dd1122015-01-08 14:32:21 -08005565S: Odd fixes
Henrik Rydberg3267a872010-06-24 19:10:40 -07005566F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01005567F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07005568K: \b(ABS|SYN)_MT_
5569
Jie Yang97fa99a2015-02-02 16:55:27 +08005570INTEL ASoC BDW/HSW DRIVERS
5571M: Jie Yang <yang.jie@linux.intel.com>
Jim Davise5747e42015-06-25 15:01:58 -07005572L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Jie Yang97fa99a2015-02-02 16:55:27 +08005573S: Supported
Joe Perchese8e12252015-06-30 14:59:39 -07005574F: sound/soc/intel/common/sst-dsp*
5575F: sound/soc/intel/common/sst-firmware.c
5576F: sound/soc/intel/boards/broadwell.c
5577F: sound/soc/intel/haswell/
Jie Yang97fa99a2015-02-02 16:55:27 +08005578
Dave Jiang4ac13e12011-07-29 17:16:55 -07005579INTEL C600 SERIES SAS CONTROLLER DRIVER
5580M: Intel SCU Linux support <intel-linux-scu@intel.com>
Lukasz Doraufdc58132014-04-07 15:39:58 -07005581M: Artur Paszkiewicz <artur.paszkiewicz@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07005582L: linux-scsi@vger.kernel.org
Dave Jiang71068912012-09-25 15:24:56 -07005583T: git git://git.code.sf.net/p/intel-sas/isci
5584S: Supported
Dave Jiang4ac13e12011-07-29 17:16:55 -07005585F: drivers/scsi/isci/
Dave Jiang4ac13e12011-07-29 17:16:55 -07005586
Alex Hungecc83e52015-12-18 23:31:10 +08005587INTEL HID EVENT DRIVER
5588M: Alex Hung <alex.hung@canonical.com>
5589L: platform-driver-x86@vger.kernel.org
5590S: Maintained
5591F: drivers/platform/x86/intel-hid.c
5592
Len Brown26717172010-03-08 14:07:30 -05005593INTEL IDLE DRIVER
5594M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02005595L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005596T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05005597S: Supported
5598F: drivers/idle/intel_idle.c
5599
Kristen Carlson Accardi7c1ac182014-12-15 15:58:24 -08005600INTEL PSTATE DRIVER
Srinivas Pandruvada58ac1f62015-11-02 09:45:46 -08005601M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
5602M: Len Brown <lenb@kernel.org>
Kristen Carlson Accardi7c1ac182014-12-15 15:58:24 -08005603L: linux-pm@vger.kernel.org
5604S: Supported
5605F: drivers/cpufreq/intel_pstate.c
5606
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005607INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08005608M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005609L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005610S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005611F: Documentation/fb/intelfb.txt
Jingoo Han8a61f012014-07-01 15:36:01 +09005612F: drivers/video/fbdev/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005613
Linus Torvalds1da177e2005-04-16 15:20:36 -07005614INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005615M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005616L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005617S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09005618F: drivers/video/fbdev/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005619
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05305620INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005621M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05005622L: platform-driver-x86@vger.kernel.org
Rafael J. Wysocki5ca92bd2013-10-10 23:03:44 +02005623W: https://01.org/linux-acpi
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05305624S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005625F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05305626
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07005627INTEL I/OAT DMA DRIVER
Dave Jiang18ebd562013-10-22 15:29:20 -07005628M: Dave Jiang <dave.jiang@intel.com>
Dan Williams08223d82014-08-19 06:07:56 -07005629R: Dan Williams <dan.j.williams@intel.com>
Dave Jiang18ebd562013-10-22 15:29:20 -07005630L: dmaengine@vger.kernel.org
5631Q: https://patchwork.kernel.org/project/linux-dmaengine/list/
5632S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005633F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07005634
David Woodhouse6c8909b2008-10-18 16:12:17 +01005635INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07005636M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01005637L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07005638T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01005639S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07005640F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07005641F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01005642
Dan Williamsb3e5f262007-08-07 10:26:35 -07005643INTEL IOP-ADMA DMA DRIVER
Dan Williams08223d82014-08-19 06:07:56 -07005644R: Dan Williams <dan.j.williams@intel.com>
Dan Williams1dd83722012-08-15 19:20:02 -07005645S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07005646F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07005647
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01005648INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Krzysztof Hałasa5529c2c2014-09-30 10:32:58 +02005649M: Krzysztof Halasa <khalasa@piap.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01005650S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005651F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
5652F: arch/arm/mach-ixp4xx/include/mach/npe.h
5653F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
5654F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07005655F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07005656F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01005657
Michael Buesch844dd052006-06-26 00:24:59 -07005658INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005659M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07005660S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005661F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07005662
Jeff Kirsher2f302322015-03-25 17:01:03 -07005663INTEL ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005664M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Jeff Kirsher2f302322015-03-25 17:01:03 -07005665R: Jesse Brandeburg <jesse.brandeburg@intel.com>
5666R: Shannon Nelson <shannon.nelson@intel.com>
5667R: Carolyn Wyborny <carolyn.wyborny@intel.com>
5668R: Don Skidmore <donald.c.skidmore@intel.com>
Jeff Kirsher6e80a182015-11-10 11:09:06 -08005669R: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher2f302322015-03-25 17:01:03 -07005670R: John Ronciak <john.ronciak@intel.com>
5671R: Mitch Williams <mitch.a.williams@intel.com>
5672L: intel-wired-lan@lists.osuosl.org
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00005673W: http://www.intel.com/support/feedback.htm
Auke Kokd94e6fe2008-03-03 14:37:47 -08005674W: http://e1000.sourceforge.net/
Jeff Kirsher2f302322015-03-25 17:01:03 -07005675Q: http://patchwork.ozlabs.org/project/intel-wired-lan/list/
5676T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
5677T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005678S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00005679F: Documentation/networking/e100.txt
5680F: Documentation/networking/e1000.txt
5681F: Documentation/networking/e1000e.txt
5682F: Documentation/networking/igb.txt
5683F: Documentation/networking/igbvf.txt
5684F: Documentation/networking/ixgb.txt
5685F: Documentation/networking/ixgbe.txt
5686F: Documentation/networking/ixgbevf.txt
Jesse Brandeburg1bff6522013-09-11 08:40:23 +00005687F: Documentation/networking/i40e.txt
Greg Rose105bf2f2013-12-21 06:13:16 +00005688F: Documentation/networking/i40evf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07005689F: drivers/net/ethernet/intel/
Joe Perchesbc90d292014-02-25 13:35:53 -08005690F: drivers/net/ethernet/intel/*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005691
Linus Walleij0963d59b2013-10-19 15:39:17 +02005692INTEL-MID GPIO DRIVER
5693M: David Cohen <david.a.cohen@linux.intel.com>
5694L: linux-gpio@vger.kernel.org
5695S: Maintained
5696F: drivers/gpio/gpio-intel-mid.c
5697
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04005698INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
5699M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07005700L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04005701S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005702F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07005703F: Documentation/networking/README.ipw2200
Kalle Valo367a1092015-11-17 20:24:59 +02005704F: drivers/net/wireless/intel/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06005705
Alexander Shishkin5760b0a2015-09-22 15:47:20 +03005706INTEL(R) TRACE HUB
5707M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
5708S: Supported
5709F: Documentation/trace/intel_th.txt
5710F: drivers/hwtracing/intel_th/
5711
Shane Wang4bd96a72010-03-10 14:36:10 +08005712INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
Wei, Gang74b18e12015-12-02 07:07:20 +00005713M: Ning Sun <ning.sun@intel.com>
Shane Wang4bd96a72010-03-10 14:36:10 +08005714L: tboot-devel@lists.sourceforge.net
5715W: http://tboot.sourceforge.net
Gang Weie9b7d7c2012-09-17 14:08:59 -07005716T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
Shane Wang4bd96a72010-03-10 14:36:10 +08005717S: Supported
5718F: Documentation/intel_txt.txt
5719F: include/linux/tboot.h
5720F: arch/x86/kernel/tboot.c
5721
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08005722INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07005723M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08005724M: linux-wimax@intel.com
Joe Perches49e7d9d2015-04-15 16:17:31 -07005725L: wimax@linuxwimax.org (subscribers-only)
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08005726S: Supported
5727W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07005728F: Documentation/wimax/README.i2400m
5729F: drivers/net/wimax/i2400m/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005730F: include/uapi/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08005731
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01005732INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
5733M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08005734L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01005735S: Supported
Kalle Valo7ac9a362015-11-17 20:37:11 +02005736F: drivers/net/wireless/intel/iwlegacy/
Wey-Yi Guyefa31442011-02-22 16:43:05 -08005737
Zhu Yib481de92007-09-25 17:54:57 -07005738INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07005739M: Johannes Berg <johannes.berg@intel.com>
Johannes Berg6161b022013-07-23 14:03:39 +02005740M: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
Johannes Berg7b9aebf2015-09-08 17:03:20 +02005741M: Intel Linux Wireless <linuxwifi@intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07005742L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07005743W: http://intellinuxwireless.org
Wey-Yi Guyb62ff712011-09-22 15:14:49 -07005744T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07005745S: Supported
Kalle Valoe705c122015-11-17 20:57:38 +02005746F: drivers/net/wireless/intel/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07005747
Tomas Winklerde8fe022012-05-09 16:39:02 +03005748INTEL MANAGEMENT ENGINE (mei)
5749M: Tomas Winkler <tomas.winkler@intel.com>
5750L: linux-kernel@vger.kernel.org
5751S: Supported
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005752F: include/uapi/linux/mei.h
Tomas Winkler5069288b2015-06-13 22:11:33 +03005753F: include/linux/mei_cl_bus.h
Tomas Winklerde8fe022012-05-09 16:39:02 +03005754F: drivers/misc/mei/*
Cesar Eduardo Barrose07950a12013-01-04 15:35:36 -08005755F: Documentation/misc-devices/mei/*
Tomas Winklerde8fe022012-05-09 16:39:02 +03005756
Sudeep Dutt50ceb982015-10-13 11:21:19 -07005757INTEL MIC DRIVERS (mic)
5758M: Sudeep Dutt <sudeep.dutt@intel.com>
5759M: Ashutosh Dixit <ashutosh.dixit@intel.com>
5760S: Supported
5761W: https://github.com/sudeepdutt/mic
5762W: http://software.intel.com/en-us/mic-developer
5763F: include/linux/mic_bus.h
5764F: include/linux/scif.h
5765F: include/uapi/linux/mic_common.h
5766F: include/uapi/linux/mic_ioctl.h
Fengguang Wu9f273c22016-01-20 15:03:25 -08005767F: include/uapi/linux/scif_ioctl.h
Sudeep Dutt50ceb982015-10-13 11:21:19 -07005768F: drivers/misc/mic/
5769F: drivers/dma/mic_x100_dma.c
5770F: drivers/dma/mic_x100_dma.h
Fengguang Wu9f273c22016-01-20 15:03:25 -08005771F: Documentation/mic/
Sudeep Dutt50ceb982015-10-13 11:21:19 -07005772
Qipeng Zhafdca4f12015-12-11 22:45:00 +08005773INTEL PMC/P-Unit IPC DRIVER
qipeng.zha0a8b8352015-06-27 00:32:15 +08005774M: Zha Qipeng<qipeng.zha@intel.com>
5775L: platform-driver-x86@vger.kernel.org
5776S: Maintained
5777F: drivers/platform/x86/intel_pmc_ipc.c
Qipeng Zhafdca4f12015-12-11 22:45:00 +08005778F: drivers/platform/x86/intel_punit_ipc.c
qipeng.zha0a8b8352015-06-27 00:32:15 +08005779F: arch/x86/include/asm/intel_pmc_ipc.h
Qipeng Zhafdca4f12015-12-11 22:45:00 +08005780F: arch/x86/include/asm/intel_punit_ipc.h
qipeng.zha0a8b8352015-06-27 00:32:15 +08005781
Souvik Kumar Chakravarty378f9562016-01-12 16:00:33 +05305782INTEL TELEMETRY DRIVER
5783M: Souvik Kumar Chakravarty <souvik.k.chakravarty@intel.com>
5784L: platform-driver-x86@vger.kernel.org
5785S: Maintained
Souvik Kumar Chakravarty378f9562016-01-12 16:00:33 +05305786F: arch/x86/include/asm/intel_telemetry.h
Souvik Kumar Chakravartyf1fc3cd2016-01-21 09:30:50 +05305787F: drivers/platform/x86/intel_telemetry*
Ralf Baechlecb109a02007-08-30 23:56:30 -07005788
Joe Perches8b58be82009-07-29 15:04:30 -07005789IOC3 ETHERNET DRIVER
Ralf Baechled39e0722010-10-19 18:32:41 +01005790M: Ralf Baechle <ralf@linux-mips.org>
Ralf Baechlecb109a02007-08-30 23:56:30 -07005791L: linux-mips@linux-mips.org
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08005792S: Maintained
Ralf Baechlecb109a02007-08-30 23:56:30 -07005793F: drivers/net/ethernet/sgi/ioc3-eth.c
Stephen Warren0b6e8562013-09-13 13:10:27 -06005794
5795IOC3 SERIAL DRIVER
5796M: Pat Gefre <pfg@sgi.com>
5797L: linux-serial@vger.kernel.org
5798S: Maintained
5799F: drivers/tty/serial/ioc3_serial.c
5800
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005801IOMMU DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005802M: Joerg Roedel <joro@8bytes.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005803L: iommu@lists.linux-foundation.org
Joe Perches679655d2009-04-07 20:44:32 -07005804T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005805S: Maintained
Francois Romieu1202d6f2007-09-17 17:13:55 -07005806F: drivers/iommu/
Joe Perches8b58be82009-07-29 15:04:30 -07005807
5808IP MASQUERADING
Francois Romieu1202d6f2007-09-17 17:13:55 -07005809M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
5810S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07005811F: net/ipv4/netfilter/ipt_MASQUERADE.c
Francois Romieu1202d6f2007-09-17 17:13:55 -07005812
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005813IPATH DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04005814M: Mike Marciniszyn <infinipath@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07005815L: linux-rdma@vger.kernel.org
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07005816S: Maintained
Dennis Dalessandro6f9b3892015-07-30 09:25:42 -04005817F: drivers/staging/rdma/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08005818
Corey Minyard4409ebe2006-04-20 02:43:12 -07005819IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005820M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08005821L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07005822W: http://openipmi.sourceforge.net/
5823S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005824F: Documentation/IPMI.txt
5825F: drivers/char/ipmi/
5826F: include/linux/ipmi*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005827F: include/uapi/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07005828
Kenneth Westfield2d800892015-03-03 16:21:50 -08005829QCOM AUDIO (ASoC) DRIVERS
5830M: Patrick Lai <plai@codeaurora.org>
5831M: Banajit Goswami <bgoswami@codeaurora.org>
5832L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5833S: Supported
5834F: sound/soc/qcom/
5835
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005836IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005837M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005838L: linux-scsi@vger.kernel.org
5839W: http://www.adaptec.com/
5840S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005841F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005842
5843IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07005844M: Wensong Zhang <wensong@linux-vs.org>
5845M: Simon Horman <horms@verge.net.au>
5846M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005847L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005848L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005849S: Maintained
Fengguang Wu9f273c22016-01-20 15:03:25 -08005850T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
5851T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
Joe Perches679655d2009-04-07 20:44:32 -07005852F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07005853F: include/net/ip_vs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005854F: include/uapi/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07005855F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005856
Randy Dunlape7839f22008-10-12 16:11:45 -07005857IPWIRELESS DRIVER
Jiri Kosinae5f64502015-08-09 09:11:34 +02005858M: Jiri Kosina <jikos@kernel.org>
Jiri Slabyd8130622015-07-17 16:23:20 -07005859M: David Sterba <dsterba@suse.com>
Jiri Kosina92094aa2011-11-13 21:41:00 +01005860S: Odd Fixes
Greg Kroah-Hartman282361a2011-02-22 16:23:22 -08005861F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01005862
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005863IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005864M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005865L: netdev@vger.kernel.org
5866S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005867F: include/net/ipx.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005868F: include/uapi/linux/ipx.h
Joe Perches679655d2009-04-07 20:44:32 -07005869F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005870
Linus Torvalds1da177e2005-04-16 15:20:36 -07005871IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005872M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07005873L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01005874L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005875W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07005876S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02005877T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07005878F: Documentation/networking/irda.txt
5879F: drivers/net/irda/
5880F: include/net/irda/
5881F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005882
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02005883IRQ SUBSYSTEM
5884M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar981c3a42014-01-21 10:59:20 +01005885L: linux-kernel@vger.kernel.org
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02005886S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005887T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02005888F: kernel/irq/
Jason Cooper2ed9fd22014-05-13 18:47:01 +00005889
5890IRQCHIP DRIVERS
5891M: Thomas Gleixner <tglx@linutronix.de>
5892M: Jason Cooper <jason@lakedaemon.net>
Thomas Gleixner54d9ffc2015-07-30 12:38:06 +02005893M: Marc Zyngier <marc.zyngier@arm.com>
Jason Cooper2ed9fd22014-05-13 18:47:01 +00005894L: linux-kernel@vger.kernel.org
5895S: Maintained
5896T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5897T: git git://git.infradead.org/users/jcooper/linux.git irqchip/core
Geert Uytterhoeven5b5a9062014-08-28 09:56:47 +02005898F: Documentation/devicetree/bindings/interrupt-controller/
Thomas Petazzoniedd96902012-10-28 10:05:40 +01005899F: drivers/irqchip/
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02005900
Grant Likely7ab3a832012-02-14 14:06:47 -07005901IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
Thomas Gleixnerb09dec22015-07-30 12:40:55 +02005902M: Jiang Liu <jiang.liu@linux.intel.com>
5903M: Marc Zyngier <marc.zyngier@arm.com>
Grant Likely7ab3a832012-02-14 14:06:47 -07005904S: Maintained
Thomas Gleixnerb09dec22015-07-30 12:40:55 +02005905T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Grant Likely7ab3a832012-02-14 14:06:47 -07005906F: Documentation/IRQ-domain.txt
5907F: include/linux/irqdomain.h
5908F: kernel/irq/irqdomain.c
Thomas Gleixnerb09dec22015-07-30 12:40:55 +02005909F: kernel/irq/msi.c
Grant Likely7ab3a832012-02-14 14:06:47 -07005910
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005911ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07005912M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005913S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005914F: Documentation/isapnp.txt
5915F: drivers/pnp/isapnp/
5916F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005917
Hans Verkuild39b84202012-11-23 07:07:02 -03005918ISA RADIO MODULE
5919M: Hans Verkuil <hverkuil@xs4all.nl>
5920L: linux-media@vger.kernel.org
5921T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02005922W: https://linuxtv.org
Hans Verkuild39b84202012-11-23 07:07:02 -03005923S: Maintained
5924F: drivers/media/radio/radio-isa*
5925
Harry Wei71a6d0a2011-05-11 15:13:33 -07005926iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
5927M: Peter Jones <pjones@redhat.com>
5928M: Konrad Rzeszutek Wilk <konrad@kernel.org>
5929S: Maintained
5930F: drivers/firmware/iscsi_ibft*
5931
Mike Christie14816b1e2007-11-28 16:22:06 -08005932ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07005933M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b1e2007-11-28 16:22:06 -08005934L: open-iscsi@googlegroups.com
5935W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07005936T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08005937S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005938F: drivers/scsi/*iscsi*
5939F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08005940
Or Gerlitz1e65eb42013-05-08 12:21:19 +00005941ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
5942M: Or Gerlitz <ogerlitz@mellanox.com>
Or Gerlitzb261aea2014-10-01 14:02:17 +03005943M: Sagi Grimberg <sagig@mellanox.com>
Or Gerlitz1e65eb42013-05-08 12:21:19 +00005944M: Roi Dayan <roid@mellanox.com>
5945L: linux-rdma@vger.kernel.org
5946S: Supported
5947W: http://www.openfabrics.org
5948W: www.open-iscsi.org
5949Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches14430812013-09-11 14:23:50 -07005950F: drivers/infiniband/ulp/iser/
Or Gerlitz1e65eb42013-05-08 12:21:19 +00005951
Sagi Grimberg2b70e5f2015-01-07 12:54:44 +02005952ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
5953M: Sagi Grimberg <sagig@mellanox.com>
5954T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
5955L: linux-rdma@vger.kernel.org
5956L: target-devel@vger.kernel.org
5957S: Supported
5958W: http://www.linux-iscsi.org
5959F: drivers/infiniband/ulp/isert
5960
Linus Torvalds1da177e2005-04-16 15:20:36 -07005961ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005962M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07005963L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07005964L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005965W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07005966T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005967S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005968F: Documentation/isdn/
5969F: drivers/isdn/
5970F: include/linux/isdn.h
5971F: include/linux/isdn/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005972F: include/uapi/linux/isdn.h
5973F: include/uapi/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005974
5975ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07005976M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07005977L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005978W: http://www.melware.de
5979S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005980F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005981
Jean Delvared6248702010-03-05 22:17:20 +01005982IT87 HARDWARE MONITORING DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07005983M: Jean Delvare <jdelvare@suse.com>
Jean Delvared6248702010-03-05 22:17:20 +01005984L: lm-sensors@lm-sensors.org
5985S: Maintained
5986F: Documentation/hwmon/it87
5987F: drivers/hwmon/it87.c
5988
Malcolm Priestley68620bd2012-11-04 19:16:31 +01005989IT913X MEDIA DRIVER
Antti Palosaarid7104bf2013-03-09 22:58:13 -03005990M: Antti Palosaari <crope@iki.fi>
5991L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02005992W: https://linuxtv.org
Antti Palosaarid7104bf2013-03-09 22:58:13 -03005993W: http://palosaari.fi/linux/
5994Q: http://patchwork.linuxtv.org/project/linux-media/list/
5995T: git git://linuxtv.org/anttip/media_tree.git
5996S: Maintained
Antti Palosaari249c6972014-09-01 19:44:59 -03005997F: drivers/media/tuners/it913x*
Antti Palosaarid7104bf2013-03-09 22:58:13 -03005998
Hans Verkuil91821ff2007-12-02 09:35:33 -03005999IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03006000M: Andy Walls <awalls@md.metrocast.net>
Joe Perches7b212ed2014-12-10 15:51:24 -08006001L: ivtv-devel@ivtvdriver.org (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006002L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006003T: git git://linuxtv.org/media_tree.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03006004W: http://www.ivtvdriver.org
6005S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006006F: Documentation/video4linux/*.ivtv
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006007F: drivers/media/pci/ivtv/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006008F: include/uapi/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03006009
Malcolm Priestley68620bd2012-11-04 19:16:31 +01006010IX2505V MEDIA DRIVER
6011M: Malcolm Priestley <tvboxspy@gmail.com>
6012L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006013W: https://linuxtv.org
Malcolm Priestley68620bd2012-11-04 19:16:31 +01006014Q: http://patchwork.linuxtv.org/project/linux-media/list/
6015S: Maintained
6016F: drivers/media/dvb-frontends/ix2505v*
6017
Guenter Roeck4453d732010-08-09 17:21:08 -07006018JC42.4 TEMPERATURE SENSOR DRIVER
6019M: Guenter Roeck <linux@roeck-us.net>
6020L: lm-sensors@lm-sensors.org
6021S: Maintained
6022F: drivers/hwmon/jc42.c
6023F: Documentation/hwmon/jc42
6024
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006025JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06006026M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006027L: jfs-discussion@lists.sourceforge.net
6028W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07006029T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05006030S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006031F: Documentation/filesystems/jfs.txt
6032F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006033
Guo-Fu Tseng95252232008-09-16 01:00:11 +08006034JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006035M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08006036L: netdev@vger.kernel.org
6037S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07006038F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08006039
Linus Torvalds1da177e2005-04-16 15:20:36 -07006040JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07006041M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04006042L: linux-mtd@lists.infradead.org
6043W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07006044S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006045F: fs/jffs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006046F: include/uapi/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006047
Theodore Ts'od183e112011-05-26 09:53:09 -04006048JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
6049M: "Theodore Ts'o" <tytso@mit.edu>
Jan Karac290ea02015-06-18 16:52:29 +02006050M: Jan Kara <jack@suse.com>
Theodore Ts'od183e112011-05-26 09:53:09 -04006051L: linux-ext4@vger.kernel.org
6052S: Maintained
6053F: fs/jbd2/
6054F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07006055
Mikhail Ulyanov207dab52015-07-22 08:23:05 -03006056JPU V4L2 MEM2MEM DRIVER FOR RENESAS
6057M: Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
6058L: linux-media@vger.kernel.org
6059S: Maintained
6060F: drivers/media/platform/rcar_jpu.c
6061
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03006062JSM Neo PCI based serial card
Thadeu Lima de Souza Cascardo9d141cb2013-05-22 15:15:24 -03006063M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03006064L: linux-serial@vger.kernel.org
6065S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006066F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03006067
Clemens Ladischaf399172011-01-10 16:32:54 +01006068K10TEMP HARDWARE MONITORING DRIVER
6069M: Clemens Ladisch <clemens@ladisch.de>
6070L: lm-sensors@lm-sensors.org
6071S: Maintained
6072F: Documentation/hwmon/k10temp
6073F: drivers/hwmon/k10temp.c
6074
Rudolf Marek4660cb32006-10-08 22:01:26 +02006075K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006076M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02006077L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006078S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006079F: Documentation/hwmon/k8temp
6080F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006081
6082KCONFIG
Michal Marek5eb1f992013-10-30 12:02:27 +01006083M: "Yann E. MORIN" <yann.morin.1998@free.fr>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02006084L: linux-kbuild@vger.kernel.org
Joe Perchescea83212014-03-03 15:38:38 -08006085T: git git://gitorious.org/linux-kconfig/linux-kconfig
Michal Marek5eb1f992013-10-30 12:02:27 +01006086S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006087F: Documentation/kbuild/kconfig-language.txt
6088F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006089
Vivek Goyalea6c2082006-05-20 14:59:55 -07006090KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07006091M: Vivek Goyal <vgoyal@redhat.com>
6092M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07006093L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07006094W: http://lse.sourceforge.net/kdump/
6095S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07006096F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07006097
Hans Verkuilf41bf022012-11-23 07:04:36 -03006098KEENE FM RADIO TRANSMITTER DRIVER
6099M: Hans Verkuil <hverkuil@xs4all.nl>
6100L: linux-media@vger.kernel.org
6101T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006102W: https://linuxtv.org
Hans Verkuilf41bf022012-11-23 07:04:36 -03006103S: Maintained
6104F: drivers/media/radio/radio-keene*
6105
Linus Torvalds1da177e2005-04-16 15:20:36 -07006106KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07006107M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08006108L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006109S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006110F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006111
Michal Marek70fb7ba2010-01-29 14:22:43 +01006112KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Jiri Slabyd8130622015-07-17 16:23:20 -07006113M: Michal Marek <mmarek@suse.com>
Joe Perches08deed12012-03-23 15:01:57 -07006114T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
6115T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02006116L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08006117S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006118F: Documentation/kbuild/
6119F: Makefile
6120F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01006121F: scripts/basic/
6122F: scripts/mk*
6123F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006124
6125KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07006126L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07006127W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07006128S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07006129
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04006130KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006131M: "J. Bruce Fields" <bfields@fieldses.org>
J. Bruce Fields883985f62015-08-24 16:44:40 -04006132M: Jeff Layton <jlayton@poochiereds.net>
Neil Brown16141c02007-12-11 16:16:12 -08006133L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006134W: http://nfs.sourceforge.net/
Fengguang Wu9f273c22016-01-20 15:03:25 -08006135T: git git://linux-nfs.org/~bfields/linux.git
NeilBrown98fac232007-01-26 00:56:57 -08006136S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006137F: fs/nfsd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006138F: include/uapi/linux/nfsd/
Joe Perches679655d2009-04-07 20:44:32 -07006139F: fs/lockd/
6140F: fs/nfs_common/
6141F: net/sunrpc/
6142F: include/linux/lockd/
6143F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006144F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006145
Shuah Khan13b122b2014-10-13 15:51:21 -07006146KERNEL SELFTEST FRAMEWORK
6147M: Shuah Khan <shuahkh@osg.samsung.com>
6148L: linux-api@vger.kernel.org
6149T: git git://git.kernel.org/pub/scm/shuah/linux-kselftest
6150S: Maintained
6151F: tools/testing/selftests
6152
Avi Kivity426d62e2006-12-13 00:34:03 -08006153KERNEL VIRTUAL MACHINE (KVM)
Gleb Natapov0a00a772013-11-27 16:35:22 +02006154M: Gleb Natapov <gleb@kernel.org>
Paolo Bonzinic93a64f2013-05-15 19:02:24 +02006155M: Paolo Bonzini <pbonzini@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03006156L: kvm@vger.kernel.org
Ramkumar Ramachandrae3e58472013-10-31 16:16:34 +05306157W: http://www.linux-kvm.org
Ramkumar Ramachandraa94b40a2013-10-31 16:29:23 +05306158T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
Avi Kivity426d62e2006-12-13 00:34:03 -08006159S: Supported
Paolo Bonzinic93a64f2013-05-15 19:02:24 +02006160F: Documentation/*/kvm*.txt
6161F: Documentation/virtual/kvm/
Joe Perches679655d2009-04-07 20:44:32 -07006162F: arch/*/kvm/
Christian Borntraeger1662e862015-03-12 14:59:26 +01006163F: arch/x86/kernel/kvm.c
6164F: arch/x86/kernel/kvmclock.c
Joe Perches679655d2009-04-07 20:44:32 -07006165F: arch/*/include/asm/kvm*
6166F: include/linux/kvm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006167F: include/uapi/linux/kvm*
Joe Perches679655d2009-04-07 20:44:32 -07006168F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08006169
Joerg Roedelad8003d2008-09-10 20:01:07 +02006170KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joerg Roedel7de609c2012-10-29 19:08:21 +01006171M: Joerg Roedel <joro@8bytes.org>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07006172L: kvm@vger.kernel.org
Dirk Müller038161d2015-10-01 13:46:01 +02006173W: http://www.linux-kvm.org/
Joerg Roedel7de609c2012-10-29 19:08:21 +01006174S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006175F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07006176F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07006177
Hollis Blanchard513014b2008-04-16 23:28:08 -05006178KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Jiri Slabyd8130622015-07-17 16:23:20 -07006179M: Alexander Graf <agraf@suse.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03006180L: kvm-ppc@vger.kernel.org
Dirk Müller038161d2015-10-01 13:46:01 +02006181W: http://www.linux-kvm.org/
Michael Ellerman6a7f9722012-10-15 19:01:05 +00006182T: git git://github.com/agraf/linux-2.6.git
Hollis Blanchard513014b2008-04-16 23:28:08 -05006183S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006184F: arch/powerpc/include/asm/kvm*
6185F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05006186
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01006187KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07006188M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02006189M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01006190L: linux-s390@vger.kernel.org
6191W: http://www.ibm.com/developerworks/linux/linux390/
Fengguang Wu9f273c22016-01-20 15:03:25 -08006192T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01006193S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006194F: Documentation/s390/kvm.txt
6195F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07006196F: arch/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01006197
Christoffer Dalla7494742013-01-20 18:42:26 -05006198KERNEL VIRTUAL MACHINE (KVM) FOR ARM
Christoffer Dall0f4ca792013-06-21 13:54:36 -07006199M: Christoffer Dall <christoffer.dall@linaro.org>
Marc Zyngier5c8818b2014-04-26 03:43:01 -07006200M: Marc Zyngier <marc.zyngier@arm.com>
6201L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Christoffer Dalla7494742013-01-20 18:42:26 -05006202L: kvmarm@lists.cs.columbia.edu
6203W: http://systems.cs.columbia.edu/projects/kvm-arm
Fengguang Wu1b1ebe82015-12-18 15:51:44 +08006204T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
Christoffer Dall0f4ca792013-06-21 13:54:36 -07006205S: Supported
Christoffer Dalla7494742013-01-20 18:42:26 -05006206F: arch/arm/include/uapi/asm/kvm*
6207F: arch/arm/include/asm/kvm*
6208F: arch/arm/kvm/
Marc Zyngier5c8818b2014-04-26 03:43:01 -07006209F: virt/kvm/arm/
6210F: include/kvm/arm_*
Christoffer Dalla7494742013-01-20 18:42:26 -05006211
Marc Zyngier6394a3e2013-04-02 17:49:40 +01006212KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
Marc Zyngier5c8818b2014-04-26 03:43:01 -07006213M: Christoffer Dall <christoffer.dall@linaro.org>
Marc Zyngier6394a3e2013-04-02 17:49:40 +01006214M: Marc Zyngier <marc.zyngier@arm.com>
6215L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6216L: kvmarm@lists.cs.columbia.edu
6217S: Maintained
6218F: arch/arm64/include/uapi/asm/kvm*
6219F: arch/arm64/include/asm/kvm*
6220F: arch/arm64/kvm/
6221
James Hoganbfd3d532015-12-16 23:49:41 +00006222KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
6223M: James Hogan <james.hogan@imgtec.com>
6224L: linux-mips@linux-mips.org
6225S: Supported
6226F: arch/mips/include/uapi/asm/kvm*
6227F: arch/mips/include/asm/kvm*
6228F: arch/mips/kvm/
6229
Eric W. Biedermandc009d92005-06-25 14:57:52 -07006230KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07006231M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07006232W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07006233L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07006234S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006235F: include/linux/kexec.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006236F: include/uapi/linux/kexec.h
Joe Perches679655d2009-04-07 20:44:32 -07006237F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07006238
David Howellse9714612010-03-29 23:42:09 +01006239KEYS/KEYRINGS:
6240M: David Howells <dhowells@redhat.com>
David Howellsaa62eff2015-08-11 13:29:48 +01006241L: keyrings@vger.kernel.org
David Howellse9714612010-03-29 23:42:09 +01006242S: Maintained
Randy Dunlapd410fa4e2011-05-19 15:59:38 -07006243F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01006244F: include/linux/key.h
6245F: include/linux/key-type.h
6246F: include/keys/
6247F: security/keys/
6248
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006249KEYS-TRUSTED
Mimi Zohar74dd7442014-02-27 08:44:45 -05006250M: David Safford <safford@us.ibm.com>
6251M: Mimi Zohar <zohar@linux.vnet.ibm.com>
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006252L: linux-security-module@vger.kernel.org
David Howellsaa62eff2015-08-11 13:29:48 +01006253L: keyrings@vger.kernel.org
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006254S: Supported
Randy Dunlapd410fa4e2011-05-19 15:59:38 -07006255F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006256F: include/keys/trusted-type.h
6257F: security/keys/trusted.c
6258F: security/keys/trusted.h
6259
6260KEYS-ENCRYPTED
Mimi Zohar74dd7442014-02-27 08:44:45 -05006261M: Mimi Zohar <zohar@linux.vnet.ibm.com>
6262M: David Safford <safford@us.ibm.com>
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006263L: linux-security-module@vger.kernel.org
David Howellsaa62eff2015-08-11 13:29:48 +01006264L: keyrings@vger.kernel.org
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006265S: Supported
Randy Dunlapd410fa4e2011-05-19 15:59:38 -07006266F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006267F: include/keys/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08006268F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006269
Jason Wessel5b778da2010-05-20 21:04:28 -05006270KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07006271M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05006272W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05006273L: kgdb-bugreport@lists.sourceforge.net
Fengguang Wu9f273c22016-01-20 15:03:25 -08006274T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
Jason Wessele3e2aaf2008-03-20 13:43:45 -05006275S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006276F: Documentation/DocBook/kgdb.tmpl
6277F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006278F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05006279F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07006280F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05006281F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05006282
Pekka Enberg456db8c2008-04-28 22:47:29 +03006283KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07006284M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02006285M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03006286S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08006287F: Documentation/kmemcheck.txt
6288F: arch/x86/include/asm/kmemcheck.h
6289F: arch/x86/mm/kmemcheck/
6290F: include/linux/kmemcheck.h
6291F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03006292
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01006293KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07006294M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01006295S: Maintained
6296F: Documentation/kmemleak.txt
6297F: include/linux/kmemleak.h
6298F: mm/kmemleak.c
6299F: mm/kmemleak-test.c
6300
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07006301KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07006302M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
6303M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
6304M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07006305M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07006306S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006307F: Documentation/kprobes.txt
6308F: include/linux/kprobes.h
6309F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07006310
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08006311KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006312M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07006313W: http://miguelojeda.es/auxdisplay.htm
6314W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08006315S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006316F: Documentation/auxdisplay/ks0108
6317F: drivers/auxdisplay/ks0108.c
6318F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08006319
David Ahern1b69c6d2015-09-29 20:07:11 -07006320L3MDEV
6321M: David Ahern <dsa@cumulusnetworks.com>
6322L: netdev@vger.kernel.org
6323S: Maintained
6324F: net/l3mdev
6325F: include/net/l3mdev.h
6326
John Crispin9ca44352016-01-04 20:28:12 +01006327LANTIQ MIPS ARCHITECTURE
6328M: John Crispin <blogic@openwrt.org>
6329L: linux-mips@linux-mips.org
6330S: Maintained
6331F: arch/mips/lantiq
6332
Linus Torvalds1da177e2005-04-16 15:20:36 -07006333LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07006334L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07006335S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006336F: Documentation/networking/lapb-module.txt
6337F: include/*/lapb.h
6338F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006339
6340LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07006341M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006342L: linux-scsi@vger.kernel.org
6343S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006344F: Documentation/scsi/53c700.txt
6345F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006346
Richard Purdie263de9b2006-05-15 09:44:16 -07006347LED SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006348M: Richard Purdie <rpurdie@rpsys.net>
Andrew Morton48b945a2015-05-05 16:23:30 -07006349M: Jacek Anaszewski <j.anaszewski@samsung.com>
Bryan Wuaa69cb82012-05-31 19:51:37 +08006350L: linux-leds@vger.kernel.org
Jacek Anaszewskib8926ba2015-08-20 08:59:35 +02006351T: git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07006352S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006353F: drivers/leds/
6354F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07006355
Jean Delvareb0461a42011-06-15 15:08:46 -07006356LEGACY EEPROM DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07006357M: Jean Delvare <jdelvare@suse.com>
Jean Delvareb0461a42011-06-15 15:08:46 -07006358S: Maintained
6359F: Documentation/misc-devices/eeprom
6360F: drivers/misc/eeprom/eeprom.c
6361
Linus Torvalds1da177e2005-04-16 15:20:36 -07006362LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07006363M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006364L: legousb-devel@lists.sourceforge.net
6365W: http://legousb.sourceforge.net/
6366S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006367F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006368
Michael Krufky055616a2012-10-02 00:56:06 -03006369LG2160 MEDIA DRIVER
6370M: Michael Krufky <mkrufky@linuxtv.org>
6371L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006372W: https://linuxtv.org
Michael Krufky055616a2012-10-02 00:56:06 -03006373W: http://github.com/mkrufky
6374Q: http://patchwork.linuxtv.org/project/linux-media/list/
6375T: git git://linuxtv.org/mkrufky/tuners.git
6376S: Maintained
6377F: drivers/media/dvb-frontends/lg2160.*
6378
Michael Krufky6f0e7722012-10-02 00:56:00 -03006379LGDT3305 MEDIA DRIVER
6380M: Michael Krufky <mkrufky@linuxtv.org>
6381L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006382W: https://linuxtv.org
Michael Krufky6f0e7722012-10-02 00:56:00 -03006383W: http://github.com/mkrufky
6384Q: http://patchwork.linuxtv.org/project/linux-media/list/
6385T: git git://linuxtv.org/mkrufky/tuners.git
6386S: Maintained
6387F: drivers/media/dvb-frontends/lgdt3305.*
6388
Rusty Russell568a17f2007-10-25 14:12:24 +10006389LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07006390M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006391L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10006392W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06006393S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08006394F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07006395F: arch/x86/lguest/
6396F: drivers/lguest/
6397F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08006398F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10006399
Tejun Heo32ac7cb2015-01-06 18:36:44 -05006400LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
6401M: Tejun Heo <tj@kernel.org>
6402L: linux-ide@vger.kernel.org
6403T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6404S: Maintained
6405F: drivers/ata/
6406F: include/linux/ata.h
6407F: include/linux/libata.h
6408
6409LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
Viresh Kumarda899472015-07-17 16:23:50 -07006410M: Viresh Kumar <vireshk@kernel.org>
Tejun Heo32ac7cb2015-01-06 18:36:44 -05006411L: linux-ide@vger.kernel.org
6412T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6413S: Maintained
6414F: include/linux/pata_arasan_cf_data.h
6415F: drivers/ata/pata_arasan_cf.c
6416
Bartlomiej Zolnierkiewiczc7fa0562014-12-02 17:29:08 +01006417LIBATA PATA DRIVERS
6418M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6419M: Tejun Heo <tj@kernel.org>
6420L: linux-ide@vger.kernel.org
6421T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6422S: Maintained
6423F: drivers/ata/pata_*.c
6424F: drivers/ata/ata_generic.c
6425
Tejun Heo32ac7cb2015-01-06 18:36:44 -05006426LIBATA SATA AHCI PLATFORM devices support
6427M: Hans de Goede <hdegoede@redhat.com>
6428M: Tejun Heo <tj@kernel.org>
6429L: linux-ide@vger.kernel.org
6430T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6431S: Maintained
6432F: drivers/ata/ahci_platform.c
6433F: drivers/ata/libahci_platform.c
6434F: include/linux/ahci_platform.h
6435
6436LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
6437M: Mikael Pettersson <mikpelinux@gmail.com>
6438L: linux-ide@vger.kernel.org
6439T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6440S: Maintained
6441F: drivers/ata/sata_promise.*
6442
Sasha Levin1acd4372013-06-13 18:41:24 -04006443LIBLOCKDEP
6444M: Sasha Levin <sasha.levin@oracle.com>
6445S: Maintained
6446F: tools/lib/lockdep/
6447
Dan Williamsbc301962015-06-25 04:48:19 -04006448LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
6449M: Dan Williams <dan.j.williams@intel.com>
6450L: linux-nvdimm@lists.01.org
6451Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
Fengguang Wu9f273c22016-01-20 15:03:25 -08006452T: git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
Dan Williamsbc301962015-06-25 04:48:19 -04006453S: Supported
6454F: drivers/nvdimm/*
6455F: include/linux/nd.h
6456F: include/linux/libnvdimm.h
6457F: include/uapi/linux/ndctl.h
6458
6459LIBNVDIMM BLK: MMIO-APERTURE DRIVER
6460M: Ross Zwisler <ross.zwisler@linux.intel.com>
6461L: linux-nvdimm@lists.01.org
6462Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
6463S: Supported
6464F: drivers/nvdimm/blk.c
6465F: drivers/nvdimm/region_devs.c
6466F: drivers/acpi/nfit*
6467
6468LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
6469M: Vishal Verma <vishal.l.verma@intel.com>
6470L: linux-nvdimm@lists.01.org
6471Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
6472S: Supported
6473F: drivers/nvdimm/btt*
6474
6475LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
6476M: Ross Zwisler <ross.zwisler@linux.intel.com>
6477L: linux-nvdimm@lists.01.org
6478Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
6479S: Supported
6480F: drivers/nvdimm/pmem.c
Ross Zwislerb864bc12015-07-10 11:06:10 -06006481F: include/linux/pmem.h
Ross Zwisler40603522015-08-18 13:55:36 -06006482F: arch/*/include/asm/pmem.h
Dan Williamsbc301962015-06-25 04:48:19 -04006483
Matias Bjørlingcd9e9802015-10-28 19:54:55 +01006484LIGHTNVM PLATFORM SUPPORT
6485M: Matias Bjorling <mb@lightnvm.io>
6486W: http://github/OpenChannelSSD
Matias Bjørling4ead1a22015-11-16 15:34:35 +01006487L: linux-block@vger.kernel.org
Matias Bjørlingcd9e9802015-10-28 19:54:55 +01006488S: Maintained
6489F: drivers/lightnvm/
6490F: include/linux/lightnvm.h
6491F: include/uapi/linux/lightnvm.h
6492
Linus Torvalds1da177e2005-04-16 15:20:36 -07006493LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07006494M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006495W: http://www.ibm.com/linux/ltc/projects/ppc
6496S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00006497F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006498
Paul Mackerras852bb9f2008-07-04 21:04:42 +10006499LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07006500M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
6501M: Paul Mackerras <paulus@samba.org>
Benjamin Herrenschmidtea668932014-07-28 13:54:37 +10006502M: Michael Ellerman <mpe@ellerman.id.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006503W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006504L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08006505Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Michael Ellerman99580842015-07-07 19:16:23 +10006506T: git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006507S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00006508F: Documentation/powerpc/
6509F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006510
6511LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07006512M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006513W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006514L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006515S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00006516F: arch/powerpc/platforms/powermac/
6517F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006518
Grant Likely77a76362008-07-12 12:11:43 -06006519LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00006520M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006521L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschincba5b1c2014-10-02 16:16:59 -07006522T: git git://git.denx.de/linux-denx-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006523S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00006524F: arch/powerpc/platforms/512x/
6525F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006526
6527LINUX FOR POWERPC EMBEDDED PPC4XX
Joe Perches49e7d9d2015-04-15 16:17:31 -07006528M: Alistair Popple <alistair@popple.id.au>
Joe Perches8b58be82009-07-29 15:04:30 -07006529M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006530W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006531L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006532S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00006533F: arch/powerpc/platforms/40x/
6534F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006535
Grant Likely260c02a2007-10-02 12:15:34 +10006536LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006537L: linuxppc-dev@lists.ozlabs.org
Grant Likelycdeb8992013-07-22 01:38:32 +01006538S: Orphan
Joe Perches11c34c72009-12-04 07:16:59 +00006539F: arch/powerpc/*/*virtex*
6540F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006541
Tom Rinie93adf12005-07-26 12:49:53 -07006542LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07006543M: Vitaly Bordug <vitb@kernel.crashing.org>
Tom Rinie93adf12005-07-26 12:49:53 -07006544W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006545L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07006546S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07006547F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07006548
Linus Torvalds1da177e2005-04-16 15:20:36 -07006549LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Scott Wood44451d42015-12-31 12:57:26 -06006550M: Scott Wood <oss@buserror.net>
Joe Perches8b58be82009-07-29 15:04:30 -07006551M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01006552W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006553L: linuxppc-dev@lists.ozlabs.org
Scott Wooda1e0fb42014-05-05 20:46:43 -05006554T: git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
Jim Cromiece00f852006-11-30 04:49:44 +01006555S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00006556F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03006557F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006558
Olof Johanssonab06ff32006-09-06 14:44:54 -05006559LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07006560M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006561L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00006562S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00006563F: arch/powerpc/platforms/pasemi/
6564F: drivers/*/*pasemi*
6565F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05006566
Linus Torvalds1da177e2005-04-16 15:20:36 -07006567LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07006568M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08006569L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006570S: Supported
6571
Harry Weia23ce6d2011-02-11 16:52:20 +01006572LIS3LV02D ACCELEROMETER DRIVER
6573M: Eric Piel <eric.piel@tremplin-utc.net>
6574S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01006575F: Documentation/misc-devices/lis3lv02d
6576F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07006577F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01006578
Seth Jenningsb700e7f2014-12-16 11:58:19 -06006579LIVE PATCHING
6580M: Josh Poimboeuf <jpoimboe@redhat.com>
6581M: Seth Jennings <sjenning@redhat.com>
Jiri Kosinae5f64502015-08-09 09:11:34 +02006582M: Jiri Kosina <jikos@kernel.org>
Jiri Slabyd8130622015-07-17 16:23:20 -07006583M: Vojtech Pavlik <vojtech@suse.com>
Seth Jenningsb700e7f2014-12-16 11:58:19 -06006584S: Maintained
6585F: kernel/livepatch/
6586F: include/linux/livepatch.h
6587F: arch/x86/include/asm/livepatch.h
6588F: arch/x86/kernel/livepatch.c
6589F: Documentation/ABI/testing/sysfs-kernel-livepatch
Seth Jennings13d1cf72014-12-16 11:58:20 -06006590F: samples/livepatch/
Seth Jenningsb700e7f2014-12-16 11:58:19 -06006591L: live-patching@vger.kernel.org
Jiri Kosina74d50da2014-12-22 13:40:20 +01006592T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
Seth Jenningsb700e7f2014-12-16 11:58:19 -06006593
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006594LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07006595M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006596S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006597F: include/linux/llc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006598F: include/uapi/linux/llc.h
Joe Perches679655d2009-04-07 20:44:32 -07006599F: include/net/llc*
6600F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006601
Adrien Demarez4e233cb2009-12-09 20:35:50 +01006602LM73 HARDWARE MONITOR DRIVER
6603M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
6604L: lm-sensors@lm-sensors.org
6605S: Maintained
6606F: drivers/hwmon/lm73.c
6607
Jean Delvare156e2d12011-07-25 21:46:11 +02006608LM78 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07006609M: Jean Delvare <jdelvare@suse.com>
Jean Delvare156e2d12011-07-25 21:46:11 +02006610L: lm-sensors@lm-sensors.org
6611S: Maintained
6612F: Documentation/hwmon/lm78
6613F: drivers/hwmon/lm78.c
6614
Linus Torvalds1da177e2005-04-16 15:20:36 -07006615LM83 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07006616M: Jean Delvare <jdelvare@suse.com>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02006617L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006618S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006619F: Documentation/hwmon/lm83
6620F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006621
6622LM90 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07006623M: Jean Delvare <jdelvare@suse.com>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02006624L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006625S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006626F: Documentation/hwmon/lm90
Wei Niaae7bce2013-11-15 10:40:39 +01006627F: Documentation/devicetree/bindings/hwmon/lm90.txt
Joe Perches679655d2009-04-07 20:44:32 -07006628F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006629
Guenter Roeck917cc4e2013-05-19 20:44:27 -07006630LM95234 HARDWARE MONITOR DRIVER
6631M: Guenter Roeck <linux@roeck-us.net>
6632L: lm-sensors@lm-sensors.org
6633S: Maintained
6634F: Documentation/hwmon/lm95234
6635F: drivers/hwmon/lm95234.c
6636
Malcolm Priestley68620bd2012-11-04 19:16:31 +01006637LME2510 MEDIA DRIVER
6638M: Malcolm Priestley <tvboxspy@gmail.com>
6639L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006640W: https://linuxtv.org
Malcolm Priestley68620bd2012-11-04 19:16:31 +01006641Q: http://patchwork.linuxtv.org/project/linux-media/list/
6642S: Maintained
6643F: drivers/media/usb/dvb-usb-v2/lmedm04*
6644
Peter Zijlstra512e67f2007-10-11 22:11:11 +02006645LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07006646M: Peter Zijlstra <peterz@infradead.org>
6647M: Ingo Molnar <mingo@redhat.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +01006648L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006649T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02006650S: Maintained
Davidlohr Bueso214e0ae2014-07-30 13:41:55 -07006651F: Documentation/locking/lockdep*.txt
6652F: Documentation/locking/lockstat.txt
Joe Perches679655d2009-04-07 20:44:32 -07006653F: include/linux/lockdep.h
Joe Perches7486d6d2013-11-14 14:59:45 -08006654F: kernel/locking/
Peter Zijlstra512e67f2007-10-11 22:11:11 +02006655
Anton Altaparmakovdde33342007-05-21 09:37:42 +01006656LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07006657M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01006658L: linux-ntfs-dev@lists.sourceforge.net
6659W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006660S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006661F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08006662F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006663
Joern Engelef6ada32009-11-20 22:17:12 +01006664LogFS
6665M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05306666M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01006667L: logfs@logfs.org
6668W: logfs.org
6669S: Maintained
6670F: fs/logfs/
6671
Roland Stiggeb62d7942013-04-02 19:37:11 +02006672LPC32XX MACHINE SUPPORT
6673M: Roland Stigge <stigge@antcom.de>
6674L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6675S: Maintained
6676F: arch/arm/mach-lpc32xx/
6677
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07006678LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
Reddy, Sreekanth3a980502014-06-13 20:48:04 +05306679M: Nagalakshmi Nandigama <nagalakshmi.nandigama@avagotech.com>
6680M: Praveen Krishnamoorthy <praveen.krishnamoorthy@avagotech.com>
6681M: Sreekanth Reddy <sreekanth.reddy@avagotech.com>
6682M: Abhijit Mahajan <abhijit.mahajan@avagotech.com>
6683L: MPT-FusionLinux.pdl@avagotech.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07006684L: linux-scsi@vger.kernel.org
6685W: http://www.lsilogic.com/support
6686S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006687F: drivers/message/fusion/
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05306688F: drivers/scsi/mpt2sas/
6689F: drivers/scsi/mpt3sas/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07006690
Linus Torvalds1da177e2005-04-16 15:20:36 -07006691LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07006692M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006693L: linux-scsi@vger.kernel.org
6694S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006695F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006696
Guenter Roecke5f5c992010-06-25 11:59:54 -07006697LTC4261 HARDWARE MONITOR DRIVER
6698M: Guenter Roeck <linux@roeck-us.net>
6699L: lm-sensors@lm-sensors.org
6700S: Maintained
6701F: Documentation/hwmon/ltc4261
6702F: drivers/hwmon/ltc4261.c
6703
Mike Frysinger81365c32008-10-29 14:01:12 -07006704LTP (Linux Test Project)
Joe Perches28b8e8d2010-03-23 13:35:20 -07006705M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07006706M: Cyril Hrubis <chrubis@suse.cz>
Cyril Hrubis05261092015-09-17 16:01:57 -07006707M: Wanlong Gao <wanlong.gao@gmail.com>
Cyril Hrubisf2eb7f62014-05-09 15:36:58 -07006708M: Jan Stancek <jstancek@redhat.com>
6709M: Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
6710M: Alexey Kodanev <alexey.kodanev@oracle.com>
Cyril Hrubis05261092015-09-17 16:01:57 -07006711L: ltp@lists.linux.it (subscribers-only)
Cyril Hrubisf2eb7f62014-05-09 15:36:58 -07006712W: http://linux-test-project.github.io/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07006713T: git git://github.com/linux-test-project/ltp.git
Mike Frysinger81365c32008-10-29 14:01:12 -07006714S: Maintained
6715
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07006716M32R ARCHITECTURE
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07006717W: http://www.linux-m32r.org/
Michael Opdenackerb4174862014-10-13 15:51:26 -07006718S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006719F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07006720
Linus Torvalds1da177e2005-04-16 15:20:36 -07006721M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07006722M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006723L: linux-m68k@lists.linux-m68k.org
6724W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07006725T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006726S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006727F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07006728F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006729
6730M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07006731M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006732W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01006733L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006734S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07006735F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006736
6737M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07006738M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006739W: http://www.tazenda.demon.co.uk/phil/linux-hp
6740S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006741F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006742
Antti Palosaari74425542013-11-06 14:03:32 -03006743M88DS3103 MEDIA DRIVER
6744M: Antti Palosaari <crope@iki.fi>
6745L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006746W: https://linuxtv.org
Antti Palosaari74425542013-11-06 14:03:32 -03006747W: http://palosaari.fi/linux/
6748Q: http://patchwork.linuxtv.org/project/linux-media/list/
6749T: git git://linuxtv.org/anttip/media_tree.git
6750S: Maintained
6751F: drivers/media/dvb-frontends/m88ds3103*
6752
Malcolm Priestley68620bd2012-11-04 19:16:31 +01006753M88RS2000 MEDIA DRIVER
6754M: Malcolm Priestley <tvboxspy@gmail.com>
6755L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006756W: https://linuxtv.org
Malcolm Priestley68620bd2012-11-04 19:16:31 +01006757Q: http://patchwork.linuxtv.org/project/linux-media/list/
6758S: Maintained
6759F: drivers/media/dvb-frontends/m88rs2000*
6760
Alexey Klimov07a092f2012-11-12 02:57:32 -03006761MA901 MASTERKIT USB FM RADIO DRIVER
Joe Perchesb75f0052014-03-03 15:38:37 -08006762M: Alexey Klimov <klimov.linux@gmail.com>
6763L: linux-media@vger.kernel.org
6764T: git git://linuxtv.org/media_tree.git
6765S: Maintained
6766F: drivers/media/radio/radio-ma901.c
Alexey Klimov07a092f2012-11-12 02:57:32 -03006767
Jiri Benc64a327a2007-05-05 11:47:08 -07006768MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07006769M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07006770L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006771W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02006772T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6773T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07006774S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006775F: Documentation/networking/mac80211-injection.txt
6776F: include/net/mac80211.h
6777F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07006778
Patrick McHardyb863ceb2007-07-14 18:55:06 -07006779MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006780M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07006781L: netdev@vger.kernel.org
6782S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006783F: drivers/net/macvlan.c
6784F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07006785
Jassi Brar2b6d83e2014-06-12 22:31:19 +05306786MAILBOX API
6787M: Jassi Brar <jassisinghbrar@gmail.com>
6788L: linux-kernel@vger.kernel.org
6789S: Maintained
6790F: drivers/mailbox/
6791F: include/linux/mailbox_client.h
6792F: include/linux/mailbox_controller.h
6793
Michael Kerriskfaf16682005-07-31 22:34:47 -07006794MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07006795M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006796W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07006797L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07006798S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07006799
Russell King8427def2014-02-28 22:40:53 +00006800MARVELL ARMADA DRM SUPPORT
6801M: Russell King <rmk+kernel@arm.linux.org.uk>
6802S: Maintained
6803F: drivers/gpu/drm/armada/
6804
Guenter Roeck3ad50cc2014-10-29 10:44:56 -07006805MARVELL 88E6352 DSA support
6806M: Guenter Roeck <linux@roeck-us.net>
6807S: Maintained
6808F: drivers/net/dsa/mv88e6352.c
6809
Thomas Petazzonic4d007b2015-10-09 17:39:02 +02006810MARVELL CRYPTO DRIVER
6811M: Boris Brezillon <boris.brezillon@free-electrons.com>
6812M: Arnaud Ebalard <arno@natisbad.org>
6813F: drivers/crypto/marvell/
6814S: Maintained
6815L: linux-crypto@vger.kernel.org
6816
stephen hemminger44c14c12012-04-02 12:59:47 +00006817MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
6818M: Mirko Lindner <mlindner@marvell.com>
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08006819M: Stephen Hemminger <stephen@networkplumber.org>
stephen hemminger44c14c12012-04-02 12:59:47 +00006820L: netdev@vger.kernel.org
6821S: Maintained
6822F: drivers/net/ethernet/marvell/sk*
6823
Stefano Brivio74cda162007-11-19 20:27:46 +01006824MARVELL LIBERTAS WIRELESS DRIVER
Stefano Brivio74cda162007-11-19 20:27:46 +01006825L: libertas-dev@lists.infradead.org
Dan Williams8ac3e992013-03-26 14:40:51 -05006826S: Orphan
Kalle Valof988d642015-11-17 21:07:19 +02006827F: drivers/net/wireless/marvell/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01006828
Dale Farnsworthb60d6972006-01-16 16:45:45 -07006829MARVELL MV643XX ETHERNET DRIVER
Sebastian Hesselbarth4e3faf82013-10-04 12:56:39 +02006830M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07006831L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00006832S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07006833F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07006834F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006835
Thomas Petazzoni370b8ed2012-09-04 15:06:42 +02006836MARVELL MVNETA ETHERNET DRIVER
6837M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
6838L: netdev@vger.kernel.org
6839S: Maintained
6840F: drivers/net/ethernet/marvell/mvneta.*
6841
Bing Zhaofcad5842011-07-13 13:11:58 -07006842MARVELL MWIFIEX WIRELESS DRIVER
Bing Zhaob9d31702014-07-30 13:57:16 -07006843M: Amitkumar Karwar <akarwar@marvell.com>
Avinash Patil550795f2015-06-24 16:52:21 +05306844M: Nishant Sarmukadam <nishants@marvell.com>
Bing Zhaofcad5842011-07-13 13:11:58 -07006845L: linux-wireless@vger.kernel.org
6846S: Maintained
Kalle Valo277b0242015-11-17 21:14:51 +02006847F: drivers/net/wireless/marvell/mwifiex/
Bing Zhaofcad5842011-07-13 13:11:58 -07006848
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02006849MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01006850M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02006851L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02006852S: Odd Fixes
Kalle Valode60f1d2015-11-17 21:18:12 +02006853F: drivers/net/wireless/marvell/mwl8k.c
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02006854
Pierre Ossman2a695672009-03-16 19:52:26 +01006855MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04006856M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04006857S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07006858F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01006859
Linus Torvalds1da177e2005-04-16 15:20:36 -07006860MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006861L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07006862S: Orphan
Jingoo Han8a61f012014-07-01 15:36:01 +09006863F: drivers/video/fbdev/matrox/matroxfb_*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006864F: include/uapi/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006865
Guenter Roeckca462082012-06-01 23:28:23 -07006866MAX16065 HARDWARE MONITOR DRIVER
6867M: Guenter Roeck <linux@roeck-us.net>
6868L: lm-sensors@lm-sensors.org
6869S: Maintained
6870F: Documentation/hwmon/max16065
6871F: drivers/hwmon/max16065.c
6872
Guenter Roeck1f61cab2015-06-08 11:15:23 -07006873MAX20751 HARDWARE MONITOR DRIVER
6874M: Guenter Roeck <linux@roeck-us.net>
6875L: lm-sensors@lm-sensors.org
6876S: Maintained
6877F: Documentation/hwmon/max20751
6878F: drivers/hwmon/max20751.c
6879
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02006880MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07006881M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02006882L: lm-sensors@lm-sensors.org
6883S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006884F: Documentation/hwmon/max6650
6885F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02006886
Guenter Roecke89ab512013-03-08 08:13:09 -08006887MAX6697 HARDWARE MONITOR DRIVER
6888M: Guenter Roeck <linux@roeck-us.net>
6889L: lm-sensors@lm-sensors.org
6890S: Maintained
6891F: Documentation/hwmon/max6697
6892F: Documentation/devicetree/bindings/i2c/max6697.txt
6893F: drivers/hwmon/max6697.c
6894F: include/linux/platform_data/max6697.h
6895
Krzysztof Kozlowskif8f847b2015-01-20 11:00:56 +01006896MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
6897M: Krzysztof Kozlowski <k.kozlowski@samsung.com>
6898L: linux-pm@vger.kernel.org
6899S: Supported
6900F: drivers/power/max14577_charger.c
6901F: drivers/power/max77693_charger.c
6902
Javier Martinez Canillas38114052015-07-17 10:17:58 +02006903MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS
6904M: Javier Martinez Canillas <javier@osg.samsung.com>
6905L: linux-kernel@vger.kernel.org
6906S: Supported
6907F: drivers/*/*max77802.c
6908F: Documentation/devicetree/bindings/*/*max77802.txt
6909F: include/dt-bindings/*/*max77802.h
6910
Krzysztof Kozlowskibefeb592015-02-16 16:00:23 -08006911MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
6912M: Chanwoo Choi <cw00.choi@samsung.com>
6913M: Krzysztof Kozlowski <k.kozlowski@samsung.com>
6914L: linux-kernel@vger.kernel.org
6915S: Supported
6916F: drivers/*/max14577.c
6917F: drivers/*/max77686.c
6918F: drivers/*/max77693.c
6919F: drivers/extcon/extcon-max14577.c
6920F: drivers/extcon/extcon-max77693.c
6921F: drivers/rtc/rtc-max77686.c
6922F: drivers/clk/clk-max77686.c
6923F: Documentation/devicetree/bindings/mfd/max14577.txt
Javier Martinez Canillas377452f2015-07-17 10:17:57 +02006924F: Documentation/devicetree/bindings/*/max77686.txt
Krzysztof Kozlowskibefeb592015-02-16 16:00:23 -08006925F: Documentation/devicetree/bindings/mfd/max77693.txt
6926F: Documentation/devicetree/bindings/clock/maxim,max77686.txt
6927F: include/linux/mfd/max14577*.h
6928F: include/linux/mfd/max77686*.h
6929F: include/linux/mfd/max77693*.h
6930
Hans Verkuil9be3c9a2012-11-23 07:12:43 -03006931MAXIRADIO FM RADIO RECEIVER DRIVER
6932M: Hans Verkuil <hverkuil@xs4all.nl>
6933L: linux-media@vger.kernel.org
6934T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006935W: https://linuxtv.org
Hans Verkuil9be3c9a2012-11-23 07:12:43 -03006936S: Maintained
6937F: drivers/media/radio/radio-maxiradio*
6938
Peter Rosinc05dc2c2015-09-23 16:26:23 +02006939MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVER
6940M: Peter Rosin <peda@axentia.se>
6941L: linux-iio@vger.kernel.org
6942S: Maintained
6943F: drivers/iio/potentiometer/mcp4531.c
6944
Laurent Pinchart6f32a8c2015-03-04 09:12:20 -03006945MEDIA DRIVERS FOR RENESAS - VSP1
6946M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6947L: linux-media@vger.kernel.org
Simon Horman4a121092016-01-18 10:04:33 +09006948L: linux-renesas-soc@vger.kernel.org
Laurent Pinchart6f32a8c2015-03-04 09:12:20 -03006949T: git git://linuxtv.org/media_tree.git
6950S: Supported
6951F: Documentation/devicetree/bindings/media/renesas,vsp1.txt
6952F: drivers/media/platform/vsp1/
6953
Kozlov Sergeydacf9ce2015-07-28 11:33:01 -03006954MEDIA DRIVERS FOR ASCOT2E
6955M: Sergey Kozlov <serjk@netup.ru>
6956L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006957W: https://linuxtv.org
Kozlov Sergeydacf9ce2015-07-28 11:33:01 -03006958W: http://netup.tv/
6959T: git git://linuxtv.org/media_tree.git
6960S: Supported
6961F: drivers/media/dvb-frontends/ascot2e*
6962
Kozlov Sergeya6dc60ff2015-07-28 11:33:03 -03006963MEDIA DRIVERS FOR CXD2841ER
6964M: Sergey Kozlov <serjk@netup.ru>
6965L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006966W: https://linuxtv.org
Kozlov Sergeya6dc60ff2015-07-28 11:33:03 -03006967W: http://netup.tv/
6968T: git git://linuxtv.org/media_tree.git
6969S: Supported
6970F: drivers/media/dvb-frontends/cxd2841er*
6971
Kozlov Sergeya5d32b32015-07-28 11:33:00 -03006972MEDIA DRIVERS FOR HORUS3A
6973M: Sergey Kozlov <serjk@netup.ru>
6974L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006975W: https://linuxtv.org
Kozlov Sergeya5d32b32015-07-28 11:33:00 -03006976W: http://netup.tv/
6977T: git git://linuxtv.org/media_tree.git
6978S: Supported
6979F: drivers/media/dvb-frontends/horus3a*
6980
Kozlov Sergeye0252732015-07-28 11:33:02 -03006981MEDIA DRIVERS FOR LNBH25
6982M: Sergey Kozlov <serjk@netup.ru>
6983L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006984W: https://linuxtv.org
Kozlov Sergeye0252732015-07-28 11:33:02 -03006985W: http://netup.tv/
6986T: git git://linuxtv.org/media_tree.git
6987S: Supported
6988F: drivers/media/dvb-frontends/lnbh25*
6989
Kozlov Sergey52b1eaf2015-07-28 11:33:04 -03006990MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
6991M: Sergey Kozlov <serjk@netup.ru>
6992L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006993W: https://linuxtv.org
Kozlov Sergey52b1eaf2015-07-28 11:33:04 -03006994W: http://netup.tv/
6995T: git git://linuxtv.org/media_tree.git
6996S: Supported
6997F: drivers/media/pci/netup_unidvb/*
6998
Joe Perches127c49a2009-04-08 08:34:04 -07006999MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02007000M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Joe Perches127c49a2009-04-08 08:34:04 -07007001P: LinuxTV.org Project
7002L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007003W: https://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007004Q: http://patchwork.kernel.org/project/linux-media/list/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02007005T: git git://linuxtv.org/media_tree.git
Joe Perches127c49a2009-04-08 08:34:04 -07007006S: Maintained
7007F: Documentation/dvb/
7008F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02007009F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07007010F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02007011F: drivers/staging/media/
Mauro Carvalho Chehabeb4b0ec2015-11-16 08:35:53 -02007012F: include/linux/platform_data/media/
Joe Perches127c49a2009-04-08 08:34:04 -07007013F: include/media/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02007014F: include/uapi/linux/dvb/
7015F: include/uapi/linux/videodev2.h
7016F: include/uapi/linux/media.h
7017F: include/uapi/linux/v4l2-*
7018F: include/uapi/linux/meye.h
7019F: include/uapi/linux/ivtv*
7020F: include/uapi/linux/uvcvideo.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07007021
Jakub Kicinskic869f772015-05-26 11:16:00 +02007022MEDIATEK MT7601U WIRELESS LAN DRIVER
7023M: Jakub Kicinski <kubakici@wp.pl>
7024L: linux-wireless@vger.kernel.org
7025S: Maintained
7026F: drivers/net/wireless/mediatek/mt7601u/
7027
Sumit.Saxena@avagotech.come3990652014-11-17 15:24:03 +05307028MEGARAID SCSI/SAS DRIVERS
7029M: Kashyap Desai <kashyap.desai@avagotech.com>
7030M: Sumit Saxena <sumit.saxena@avagotech.com>
7031M: Uday Lingala <uday.lingala@avagotech.com>
7032L: megaraidlinux.pdl@avagotech.com
Jean Delvarebaaea1d2008-09-20 12:34:33 +02007033L: linux-scsi@vger.kernel.org
Sumit.Saxena@avagotech.come3990652014-11-17 15:24:03 +05307034W: http://www.lsi.com
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07007035S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007036F: Documentation/scsi/megaraid.txt
7037F: drivers/scsi/megaraid.*
7038F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07007039
Amir Vadai2c46c9d2012-12-02 03:49:21 +00007040MELLANOX ETHERNET DRIVER (mlx4_en)
Or Gerlitze7523a42015-11-17 18:25:07 +02007041M: Eugenia Emantayev <eugenia@mellanox.com>
Joe Perchesb75f0052014-03-03 15:38:37 -08007042L: netdev@vger.kernel.org
Amir Vadai2c46c9d2012-12-02 03:49:21 +00007043S: Supported
7044W: http://www.mellanox.com
7045Q: http://patchwork.ozlabs.org/project/netdev/list/
7046F: drivers/net/ethernet/mellanox/mlx4/en_*
7047
Or Gerlitze7523a42015-11-17 18:25:07 +02007048MELLANOX ETHERNET DRIVER (mlx5e)
7049M: Saeed Mahameed <saeedm@mellanox.com>
7050L: netdev@vger.kernel.org
7051S: Supported
7052W: http://www.mellanox.com
7053Q: http://patchwork.ozlabs.org/project/netdev/list/
7054F: drivers/net/ethernet/mellanox/mlx5/core/en_*
7055
Jiri Pirko93c1edb2015-07-29 23:33:46 +02007056MELLANOX ETHERNET SWITCH DRIVERS
7057M: Jiri Pirko <jiri@mellanox.com>
7058M: Ido Schimmel <idosch@mellanox.com>
7059L: netdev@vger.kernel.org
7060S: Supported
7061W: http://www.mellanox.com
7062Q: http://patchwork.ozlabs.org/project/netdev/list/
7063F: drivers/net/ethernet/mellanox/mlxsw/
7064
Mathieu Desnoyers5b25b132015-09-11 13:07:39 -07007065MEMBARRIER SUPPORT
7066M: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7067M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7068L: linux-kernel@vger.kernel.org
7069S: Supported
7070F: kernel/membarrier.c
7071F: include/uapi/linux/membarrier.h
7072
Steven Rostedt70ea91f2006-07-30 03:03:53 -07007073MEMORY MANAGEMENT
7074L: linux-mm@kvack.org
Steven Rostedt70ea91f2006-07-30 03:03:53 -07007075W: http://www.linux-mm.org
7076S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007077F: include/linux/mm.h
Cody P Schafer551450b2013-02-21 16:43:13 -08007078F: include/linux/gfp.h
7079F: include/linux/mmzone.h
7080F: include/linux/memory_hotplug.h
7081F: include/linux/vmalloc.h
Joe Perches679655d2009-04-07 20:44:32 -07007082F: mm/
Steven Rostedt70ea91f2006-07-30 03:03:53 -07007083
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04007084MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07007085M: David Woodhouse <dwmw2@infradead.org>
Brian Norris242c3252013-12-04 15:28:45 -08007086M: Brian Norris <computersforpeace@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007087L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007088W: http://www.linux-mtd.infradead.org/
7089Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
Brian Norris242c3252013-12-04 15:28:45 -08007090T: git git://git.infradead.org/linux-mtd.git
Brian Norrisab95eac2014-09-15 21:56:17 -07007091T: git git://git.infradead.org/l2-mtd.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007092S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007093F: drivers/mtd/
7094F: include/linux/mtd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007095F: include/uapi/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007096
Johannes Thumshirn26c57ef2013-06-18 17:19:45 +02007097MEN A21 WATCHDOG DRIVER
Johannes Thumshirn30c74692015-05-07 10:21:24 +02007098M: Johannes Thumshirn <morbidrsa@gmail.com>
Johannes Thumshirn26c57ef2013-06-18 17:19:45 +02007099L: linux-watchdog@vger.kernel.org
Johannes Thumshirn30c74692015-05-07 10:21:24 +02007100S: Maintained
Johannes Thumshirn26c57ef2013-06-18 17:19:45 +02007101F: drivers/watchdog/mena21_wdt.c
7102
Johannes Thumshirn3764e822014-02-26 17:29:05 +01007103MEN CHAMELEON BUS (mcb)
Johannes Thumshirn30c74692015-05-07 10:21:24 +02007104M: Johannes Thumshirn <morbidrsa@gmail.com>
7105S: Maintained
Johannes Thumshirn3764e822014-02-26 17:29:05 +01007106F: drivers/mcb/
7107F: include/linux/mcb.h
Johannes Thumshirnb9f2f452015-07-17 12:23:01 +02007108F: Documentation/men-chameleon-bus.txt
Johannes Thumshirn3764e822014-02-26 17:29:05 +01007109
Andreas Werner48b490d2014-09-15 09:36:30 +02007110MEN F21BMC (Board Management Controller)
7111M: Andreas Werner <andreas.werner@men.de>
7112S: Supported
7113F: drivers/mfd/menf21bmc.c
7114F: drivers/watchdog/menf21bmc_wdt.c
7115F: drivers/leds/leds-menf21bmc.c
7116F: drivers/hwmon/menf21bmc_hwmon.c
7117F: Documentation/hwmon/menf21bmc
7118
James Hogan12285942012-10-10 12:59:49 +01007119METAG ARCHITECTURE
7120M: James Hogan <james.hogan@imgtec.com>
James Hogand668d9e2013-07-22 09:51:38 +01007121L: linux-metag@vger.kernel.org
Fengguang Wu9f273c22016-01-20 15:03:25 -08007122T: git git://git.kernel.org/pub/scm/linux/kernel/git/jhogan/metag.git
James Hoganf23d0e22015-11-09 18:40:59 +00007123S: Odd Fixes
James Hogan12285942012-10-10 12:59:49 +01007124F: arch/metag/
7125F: Documentation/metag/
7126F: Documentation/devicetree/bindings/metag/
Rob Herring2d799dd2015-11-05 13:40:40 -06007127F: Documentation/devicetree/bindings/interrupt-controller/img,*
James Hogana2c5d4e2012-10-09 10:54:39 +01007128F: drivers/clocksource/metag_generic.c
James Hogan5698c502012-10-09 10:54:47 +01007129F: drivers/irqchip/irq-metag.c
7130F: drivers/irqchip/irq-metag-ext.c
James Hoganae85ac72012-09-21 17:38:15 +01007131F: drivers/tty/metag_da.c
James Hogan12285942012-10-10 12:59:49 +01007132
Michal Simekc6375b02009-03-27 14:25:52 +01007133MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07007134M: Michal Simek <monstr@monstr.eu>
Michal Simekc6375b02009-03-27 14:25:52 +01007135W: http://www.monstr.eu/fdt/
7136T: git git://git.monstr.eu/linux-2.6-microblaze.git
7137S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02007138F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007139
Chen Yu2508a452015-08-18 23:30:25 +08007140MICROSOFT SURFACE PRO 3 BUTTON DRIVER
7141M: Chen Yu <yu.c.chen@intel.com>
7142L: platform-driver-x86@vger.kernel.org
7143S: Supported
7144F: drivers/platform/x86/surfacepro3_button.c
7145
Linus Torvalds1da177e2005-04-16 15:20:36 -07007146MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007147M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007148S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007149F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007150
7151MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07007152M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007153L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01007154W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00007155T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01007156Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00007157S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007158F: Documentation/mips/
7159F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007160
Hans Verkuil08b76202012-11-23 07:15:42 -03007161MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
7162M: Hans Verkuil <hverkuil@xs4all.nl>
7163L: linux-media@vger.kernel.org
7164T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007165W: https://linuxtv.org
Hans Verkuil08b76202012-11-23 07:15:42 -03007166S: Odd Fixes
7167F: drivers/media/radio/radio-miropcm20*
7168
Or Gerlitzc09befc2015-12-23 18:30:58 +02007169MELLANOX MLX4 core VPI driver
7170M: Yishai Hadas <yishaih@mellanox.com>
Eli Cohene126ba92013-07-07 17:25:49 +03007171L: netdev@vger.kernel.org
7172L: linux-rdma@vger.kernel.org
7173W: http://www.mellanox.com
7174Q: http://patchwork.ozlabs.org/project/netdev/list/
Or Gerlitzc09befc2015-12-23 18:30:58 +02007175S: Supported
7176F: drivers/net/ethernet/mellanox/mlx4/
7177F: include/linux/mlx4/
7178
7179MELLANOX MLX4 IB driver
7180M: Yishai Hadas <yishaih@mellanox.com>
7181L: linux-rdma@vger.kernel.org
7182W: http://www.mellanox.com
Eli Cohene126ba92013-07-07 17:25:49 +03007183Q: http://patchwork.kernel.org/project/linux-rdma/list/
Or Gerlitzc09befc2015-12-23 18:30:58 +02007184S: Supported
7185F: drivers/infiniband/hw/mlx4/
7186F: include/linux/mlx4/
7187
Or Gerlitz595a4d82015-12-23 18:30:57 +02007188MELLANOX MLX5 core VPI driver
7189M: Matan Barak <matanb@mellanox.com>
7190M: Leon Romanovsky <leonro@mellanox.com>
Eli Cohene126ba92013-07-07 17:25:49 +03007191L: netdev@vger.kernel.org
7192L: linux-rdma@vger.kernel.org
7193W: http://www.mellanox.com
7194Q: http://patchwork.ozlabs.org/project/netdev/list/
Eli Cohene126ba92013-07-07 17:25:49 +03007195S: Supported
7196F: drivers/net/ethernet/mellanox/mlx5/core/
7197F: include/linux/mlx5/
7198
Or Gerlitz595a4d82015-12-23 18:30:57 +02007199MELLANOX MLX5 IB driver
7200M: Matan Barak <matanb@mellanox.com>
7201M: Leon Romanovsky <leonro@mellanox.com>
Joe Perchesb75f0052014-03-03 15:38:37 -08007202L: linux-rdma@vger.kernel.org
7203W: http://www.mellanox.com
7204Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perchesb75f0052014-03-03 15:38:37 -08007205S: Supported
Joe Perchesb75f0052014-03-03 15:38:37 -08007206F: drivers/infiniband/hw/mlx5/
Or Gerlitz595a4d82015-12-23 18:30:57 +02007207F: include/linux/mlx5/
Eli Cohene126ba92013-07-07 17:25:49 +03007208
Crt Mori764589b2015-08-17 19:34:33 +02007209MELEXIS MLX90614 DRIVER
7210M: Crt Mori <cmo@melexis.com>
7211L: linux-iio@vger.kernel.org
7212W: http://www.melexis.com
7213S: Supported
7214F: drivers/iio/temperature/mlx90614.c
7215
Antti Palosaari0ce277e2014-11-12 00:35:42 -03007216MN88472 MEDIA DRIVER
7217M: Antti Palosaari <crope@iki.fi>
7218L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007219W: https://linuxtv.org
Antti Palosaari0ce277e2014-11-12 00:35:42 -03007220W: http://palosaari.fi/linux/
7221Q: http://patchwork.linuxtv.org/project/linux-media/list/
7222T: git git://linuxtv.org/anttip/media_tree.git
7223S: Maintained
7224F: drivers/staging/media/mn88472/
7225F: drivers/media/dvb-frontends/mn88472.h
7226
Antti Palosaari4f4d2382014-11-12 00:53:57 -03007227MN88473 MEDIA DRIVER
7228M: Antti Palosaari <crope@iki.fi>
7229L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007230W: https://linuxtv.org
Antti Palosaari4f4d2382014-11-12 00:53:57 -03007231W: http://palosaari.fi/linux/
7232Q: http://patchwork.linuxtv.org/project/linux-media/list/
7233T: git git://linuxtv.org/anttip/media_tree.git
7234S: Maintained
7235F: drivers/staging/media/mn88473/
7236F: drivers/media/dvb-frontends/mn88473.h
7237
Linus Torvalds1da177e2005-04-16 15:20:36 -07007238MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007239M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007240S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007241F: include/linux/module.h
7242F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007243
7244MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07007245W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08007246S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007247F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007248F: drivers/media/pci/meye/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02007249F: include/uapi/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007250
Jiri Slabyb9705b62008-04-30 00:53:48 -07007251MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07007252M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08007253S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007254F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07007255F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08007256
Alexey Klimov889b2f82012-11-16 17:43:59 -03007257MR800 AVERMEDIA USB FM RADIO DRIVER
7258M: Alexey Klimov <klimov.linux@gmail.com>
7259L: linux-media@vger.kernel.org
7260T: git git://linuxtv.org/media_tree.git
7261S: Maintained
7262F: drivers/media/radio/radio-mr800.c
7263
Alan Ottd7155692014-08-16 17:09:03 -04007264MRF24J40 IEEE 802.15.4 RADIO DRIVER
7265M: Alan Ott <alan@signal11.us>
7266L: linux-wpan@vger.kernel.org
7267S: Maintained
7268F: drivers/net/ieee802154/mrf24j40.c
Alexander Aring2e6fd642015-09-21 11:24:26 +02007269F: Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
Alan Ottd7155692014-08-16 17:09:03 -04007270
Lennart Poettering8c4c7312006-10-06 01:27:02 -04007271MSI LAPTOP SUPPORT
Lee, Chun-Yi182ae552012-12-14 16:14:24 +08007272M: "Lee, Chun-Yi" <jlee@suse.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05007273L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04007274S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007275F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04007276
Anisse Astier0f1006b2009-12-17 11:28:49 +01007277MSI WMI SUPPORT
Matthew Garrettd09448532010-02-11 10:40:13 -05007278L: platform-driver-x86@vger.kernel.org
Anisse Astier5ee70412015-06-14 22:32:23 +02007279S: Orphan
Anisse Astier0f1006b2009-12-17 11:28:49 +01007280F: drivers/platform/x86/msi-wmi.c
7281
Antti Palosaari19a628a2014-02-02 23:51:30 -03007282MSI001 MEDIA DRIVER
7283M: Antti Palosaari <crope@iki.fi>
7284L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007285W: https://linuxtv.org
Antti Palosaari19a628a2014-02-02 23:51:30 -03007286W: http://palosaari.fi/linux/
7287Q: http://patchwork.linuxtv.org/project/linux-media/list/
7288T: git git://linuxtv.org/anttip/media_tree.git
7289S: Maintained
Antti Palosaari0185e192014-07-12 08:58:32 -03007290F: drivers/media/tuners/msi001*
Antti Palosaari19a628a2014-02-02 23:51:30 -03007291
Antti Palosaari75705892014-07-13 21:35:47 -03007292MSI2500 MEDIA DRIVER
Antti Palosaari2c572132014-02-02 23:55:12 -03007293M: Antti Palosaari <crope@iki.fi>
7294L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007295W: https://linuxtv.org
Antti Palosaari2c572132014-02-02 23:55:12 -03007296W: http://palosaari.fi/linux/
7297Q: http://patchwork.linuxtv.org/project/linux-media/list/
7298T: git git://linuxtv.org/anttip/media_tree.git
7299S: Maintained
Antti Palosaari75705892014-07-13 21:35:47 -03007300F: drivers/media/usb/msi2500/
Antti Palosaari2c572132014-02-02 23:55:12 -03007301
Robert Jarzmik159eeea2015-06-25 19:14:18 +02007302MSYSTEMS DISKONCHIP G3 MTD DRIVER
7303M: Robert Jarzmik <robert.jarzmik@free.fr>
7304L: linux-mtd@lists.infradead.org
7305S: Maintained
7306F: drivers/mtd/devices/docg3*
7307
Laurent Pinchart62a37dc2013-08-09 08:46:11 -03007308MT9M032 APTINA SENSOR DRIVER
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007309M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7310L: linux-media@vger.kernel.org
7311T: git git://linuxtv.org/media_tree.git
7312S: Maintained
7313F: drivers/media/i2c/mt9m032.c
Mauro Carvalho Chehabb5dcee22015-11-10 12:01:44 -02007314F: include/media/i2c/mt9m032.h
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007315
Laurent Pinchart62a37dc2013-08-09 08:46:11 -03007316MT9P031 APTINA CAMERA SENSOR
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007317M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7318L: linux-media@vger.kernel.org
7319T: git git://linuxtv.org/media_tree.git
7320S: Maintained
7321F: drivers/media/i2c/mt9p031.c
Mauro Carvalho Chehabb5dcee22015-11-10 12:01:44 -02007322F: include/media/i2c/mt9p031.h
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007323
Laurent Pinchart62a37dc2013-08-09 08:46:11 -03007324MT9T001 APTINA CAMERA SENSOR
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007325M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7326L: linux-media@vger.kernel.org
7327T: git git://linuxtv.org/media_tree.git
7328S: Maintained
7329F: drivers/media/i2c/mt9t001.c
Mauro Carvalho Chehabb5dcee22015-11-10 12:01:44 -02007330F: include/media/i2c/mt9t001.h
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007331
Laurent Pinchart62a37dc2013-08-09 08:46:11 -03007332MT9V032 APTINA CAMERA SENSOR
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007333M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7334L: linux-media@vger.kernel.org
7335T: git git://linuxtv.org/media_tree.git
7336S: Maintained
Laurent Pinchartf2272e12014-01-01 14:40:35 -03007337F: Documentation/devicetree/bindings/media/i2c/mt9v032.txt
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007338F: drivers/media/i2c/mt9v032.c
Mauro Carvalho Chehabb5dcee22015-11-10 12:01:44 -02007339F: include/media/i2c/mt9v032.h
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007340
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07007341MULTIFUNCTION DEVICES (MFD)
Samuel Ortizf7d32102013-05-17 00:53:42 +02007342M: Lee Jones <lee.jones@linaro.org>
Lee Jones7caa7992014-07-22 13:24:38 +01007343T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07007344S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007345F: drivers/mfd/
Mark Brown55b59402013-06-28 15:14:11 +01007346F: include/linux/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07007347
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02007348MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Ulf Hanssone18eaf82014-02-19 00:01:05 +01007349M: Ulf Hansson <ulf.hansson@linaro.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07007350L: linux-mmc@vger.kernel.org
Ulf Hansson708dce32014-05-14 14:32:53 +02007351T: git git://git.linaro.org/people/ulf.hansson/mmc.git
Chris Ball245feaa2010-09-10 12:05:24 -04007352S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007353F: drivers/mmc/
7354F: include/linux/mmc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007355F: include/uapi/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01007356
David Brownell15a05802007-08-08 09:12:54 -07007357MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06007358S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007359F: drivers/mmc/host/mmc_spi.c
7360F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07007361
Linus Torvalds1da177e2005-04-16 15:20:36 -07007362MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007363M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007364S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007365F: Documentation/sound/oss/MultiSound
7366F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007367
Jiri Slabyd7354102006-12-08 02:38:35 -08007368MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02007369S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07007370F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07007371F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08007372
Felipe Balbi550a7372008-07-24 12:27:36 +03007373MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03007374M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007375L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03007376T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02007377S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007378F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03007379
Michael Krufkyea0af5f2012-10-02 00:55:41 -03007380MXL5007T MEDIA DRIVER
7381M: Michael Krufky <mkrufky@linuxtv.org>
7382L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007383W: https://linuxtv.org
Michael Krufkyea0af5f2012-10-02 00:55:41 -03007384W: http://github.com/mkrufky
7385Q: http://patchwork.linuxtv.org/project/linux-media/list/
7386T: git git://linuxtv.org/mkrufky/tuners.git
7387S: Maintained
7388F: drivers/media/tuners/mxl5007t.*
7389
Brice Goglin2d3cf582008-05-17 12:45:36 +02007390MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Hyong-Youb Kim205057a2013-08-12 02:20:02 -07007391M: Hyong-Youb Kim <hykim@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02007392L: netdev@vger.kernel.org
Hyong-Youb Kim205057a2013-08-12 02:20:02 -07007393W: https://www.myricom.com/support/downloads/myri10ge.html
Brice Goglin2d3cf582008-05-17 12:45:36 +02007394S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07007395F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02007396
Linus Torvalds1da177e2005-04-16 15:20:36 -07007397NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04007398S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07007399F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007400
Daniel Mack23dc05a2011-05-18 11:28:38 +02007401NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
7402M: Daniel Mack <zonque@gmail.com>
7403S: Maintained
Jim Davise5747e42015-06-25 15:01:58 -07007404L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Daniel Mack23dc05a2011-05-18 11:28:38 +02007405W: http://www.native-instruments.com
7406F: sound/usb/caiaq/
7407
Linus Torvalds1da177e2005-04-16 15:20:36 -07007408NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07007409M: Petr Vandrovec <petr@vandrovec.name>
7410S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07007411F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007412
Finn Thaina79b0322014-05-05 15:35:30 +10007413NCR 5380 SCSI DRIVERS
7414M: Finn Thain <fthain@telegraphics.com.au>
7415M: Michael Schmitz <schmitzmic@gmail.com>
7416L: linux-scsi@vger.kernel.org
7417S: Maintained
7418F: Documentation/scsi/g_NCR5380.txt
7419F: drivers/scsi/NCR5380.*
7420F: drivers/scsi/arm/cumana_1.c
7421F: drivers/scsi/arm/oak.c
7422F: drivers/scsi/atari_NCR5380.c
7423F: drivers/scsi/atari_scsi.*
7424F: drivers/scsi/dmx3191d.c
7425F: drivers/scsi/dtc.*
7426F: drivers/scsi/g_NCR5380.*
7427F: drivers/scsi/g_NCR5380_mmio.c
7428F: drivers/scsi/mac_scsi.*
7429F: drivers/scsi/pas16.*
Finn Thaina79b0322014-05-05 15:35:30 +10007430F: drivers/scsi/sun3_scsi.*
7431F: drivers/scsi/sun3_scsi_vme.c
7432F: drivers/scsi/t128.*
7433
Linus Torvalds1da177e2005-04-16 15:20:36 -07007434NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07007435M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007436L: linux-scsi@vger.kernel.org
7437S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007438F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007439
Guenter Roeck4aa3eb42013-04-03 14:12:11 -07007440NCT6775 HARDWARE MONITOR DRIVER
7441M: Guenter Roeck <linux@roeck-us.net>
7442L: lm-sensors@lm-sensors.org
7443S: Maintained
7444F: Documentation/hwmon/nct6775
7445F: drivers/hwmon/nct6775.c
7446
Glenn Streiff3c2d7742008-02-04 20:20:45 -08007447NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07007448M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07007449L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00007450W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08007451S: Supported
7452F: drivers/infiniband/hw/nes/
7453
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07007454NETEM NETWORK EMULATOR
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08007455M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07007456L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07007457S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007458F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07007459
Jon Masonb2f5a052010-07-15 08:47:27 +00007460NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00007461M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07007462L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07007463S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007464F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00007465F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07007466F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07007467
Pablo Neira Ayusodb9cf3a2014-06-16 13:01:52 +02007468NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01007469M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07007470M: Patrick McHardy <kaber@trash.net>
Pablo Neira Ayuso42010ed2013-05-06 12:22:57 +02007471M: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
Patrick McHardy1a03b812007-09-18 13:19:26 -07007472L: netfilter-devel@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07007473L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007474W: http://www.netfilter.org/
7475W: http://www.iptables.org/
Pablo Neira Ayuso42010ed2013-05-06 12:22:57 +02007476Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/
7477T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
7478T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007479S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007480F: include/linux/netfilter*
7481F: include/linux/netfilter/
7482F: include/net/netfilter/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007483F: include/uapi/linux/netfilter*
7484F: include/uapi/linux/netfilter/
Joe Perches679655d2009-04-07 20:44:32 -07007485F: net/*/netfilter.c
7486F: net/*/netfilter/
7487F: net/netfilter/
Pablo Neira Ayuso91c269a2015-07-06 20:55:35 +02007488F: net/bridge/br_netfilter*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007489
Paul Moore4cc67732006-09-25 15:57:13 -07007490NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00007491M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07007492W: http://netlabel.sf.net
7493L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00007494S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07007495F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07007496F: include/net/netlabel.h
7497F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07007498
Linus Torvalds1da177e2005-04-16 15:20:36 -07007499NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07007500M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007501L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02007502W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007503S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007504F: include/net/netrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007505F: include/uapi/linux/netrom.h
Joe Perches679655d2009-04-07 20:44:32 -07007506F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007507
Jakub Kicinski4c352362015-12-01 14:55:22 +00007508NETRONOME ETHERNET DRIVERS
7509M: Jakub Kicinski <jakub.kicinski@netronome.com>
7510M: Rolf Neugebauer <rolf.neugebauer@netronome.com>
7511L: oss-drivers@netronome.com
7512S: Maintained
7513F: drivers/net/ethernet/netronome/
7514
Pavel Machek5ddb88c2006-09-29 02:01:29 -07007515NETWORK BLOCK DEVICE (NBD)
Markus Pargmann4ca58292015-01-28 19:35:38 +01007516M: Markus Pargmann <mpa@pengutronix.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007517S: Maintained
Wouter Verhelst5e4b2692013-02-27 17:05:27 -08007518L: nbd-general@lists.sourceforge.net
Markus Pargmann4ca58292015-01-28 19:35:38 +01007519T: git git://git.pengutronix.de/git/mpa/linux-nbd.git
Joe Perches679655d2009-04-07 20:44:32 -07007520F: Documentation/blockdev/nbd.txt
7521F: drivers/block/nbd.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007522F: include/uapi/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007523
Neil Horman6e436502009-10-05 03:56:55 +00007524NETWORK DROP MONITOR
7525M: Neil Horman <nhorman@tuxdriver.com>
7526L: netdev@vger.kernel.org
7527S: Maintained
7528W: https://fedorahosted.org/dropwatch/
7529F: net/core/drop_monitor.c
7530
Linus Torvalds1da177e2005-04-16 15:20:36 -07007531NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07007532M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07007533L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00007534W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00007535Q: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00007536T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7537T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007538S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007539F: net/
7540F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00007541F: include/linux/in.h
7542F: include/linux/net.h
7543F: include/linux/netdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007544F: include/uapi/linux/in.h
7545F: include/uapi/linux/net.h
7546F: include/uapi/linux/netdevice.h
Nicolas Dichtel0c7aecd2015-01-15 15:11:15 +01007547F: include/uapi/linux/net_namespace.h
Tobias Klauser7e814a62014-03-11 12:06:24 +01007548F: tools/net/
Daniel Borkmannf4e53f92014-03-13 10:18:53 +01007549F: tools/testing/selftests/net/
Sasha Levin335a67d2014-03-27 02:01:34 -04007550F: lib/random32.c
Daniel Borkmanna101ccd2014-06-10 12:31:10 +02007551F: lib/test_bpf.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007552
7553NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07007554M: "David S. Miller" <davem@davemloft.net>
7555M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07007556M: James Morris <jmorris@namei.org>
7557M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
7558M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07007559L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007560T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007561S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007562F: net/ipv4/
7563F: net/ipv6/
7564F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00007565F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007566
David S. Miller73b76562012-10-16 14:08:40 -04007567NETWORKING [IPSEC]
7568M: Steffen Klassert <steffen.klassert@secunet.com>
7569M: Herbert Xu <herbert@gondor.apana.org.au>
7570M: "David S. Miller" <davem@davemloft.net>
7571L: netdev@vger.kernel.org
Steffen Klassertd1fc5022013-12-13 12:56:05 +01007572T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
7573T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
David S. Miller73b76562012-10-16 14:08:40 -04007574S: Maintained
Fan Du5826bdd2014-01-18 09:55:28 +08007575F: net/core/flow.c
David S. Miller73b76562012-10-16 14:08:40 -04007576F: net/xfrm/
7577F: net/key/
7578F: net/ipv4/xfrm*
Steffen Klassertd1fc5022013-12-13 12:56:05 +01007579F: net/ipv4/esp4.c
7580F: net/ipv4/ah4.c
7581F: net/ipv4/ipcomp.c
7582F: net/ipv4/ip_vti.c
David S. Miller73b76562012-10-16 14:08:40 -04007583F: net/ipv6/xfrm*
Steffen Klassertd1fc5022013-12-13 12:56:05 +01007584F: net/ipv6/esp6.c
7585F: net/ipv6/ah6.c
7586F: net/ipv6/ipcomp6.c
7587F: net/ipv6/ip6_vti.c
David S. Miller73b76562012-10-16 14:08:40 -04007588F: include/uapi/linux/xfrm.h
7589F: include/net/xfrm.h
7590
James Morris10e2ff12007-08-25 14:41:28 -07007591NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00007592M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07007593L: netdev@vger.kernel.org
7594S: Maintained
7595
John W. Linville29f8f632006-01-18 14:52:48 -08007596NETWORKING [WIRELESS]
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08007597L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007598Q: http://patchwork.kernel.org/project/linux-wireless/list/
John W. Linville29f8f632006-01-18 14:52:48 -08007599
Joe Perches788873a2009-04-16 09:38:45 +00007600NETWORKING DRIVERS
7601L: netdev@vger.kernel.org
7602W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00007603Q: http://patchwork.ozlabs.org/project/netdev/list/
Joe Perches08deed12012-03-23 15:01:57 -07007604T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7605T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00007606S: Odd Fixes
7607F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00007608F: include/linux/if_*
Jean Delvare0b63bf12012-10-18 22:11:38 +02007609F: include/linux/netdevice.h
Jean Delvare0b63bf12012-10-18 22:11:38 +02007610F: include/linux/etherdevice.h
7611F: include/linux/fcdevice.h
7612F: include/linux/fddidevice.h
7613F: include/linux/hippidevice.h
7614F: include/linux/inetdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007615F: include/uapi/linux/if_*
7616F: include/uapi/linux/netdevice.h
Joe Perches788873a2009-04-16 09:38:45 +00007617
John W. Linville0e324cf2014-12-17 12:07:05 -05007618NETWORKING DRIVERS (WIRELESS)
7619M: Kalle Valo <kvalo@codeaurora.org>
7620L: linux-wireless@vger.kernel.org
7621Q: http://patchwork.kernel.org/project/linux-wireless/list/
Fengguang Wu9f273c22016-01-20 15:03:25 -08007622T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
7623T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
John W. Linville0e324cf2014-12-17 12:07:05 -05007624S: Maintained
7625F: drivers/net/wireless/
7626
Amit S. Kale3d396eb2006-10-21 15:33:03 -04007627NETXEN (1/10) GbE SUPPORT
Manish Chopra86223152013-03-28 23:54:08 +00007628M: Manish Chopra <manish.chopra@qlogic.com>
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07007629M: Sony Chacko <sony.chacko@qlogic.com>
7630M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04007631L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00007632W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04007633S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07007634F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04007635
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03007636NFC SUBSYSTEM
7637M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
7638M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
7639M: Samuel Ortiz <sameo@linux.intel.com>
7640L: linux-wireless@vger.kernel.org
Dan Carpenter1eb3b212014-08-11 13:14:25 +03007641L: linux-nfc@lists.01.org (subscribers-only)
Samuel Ortiz0293ba22013-06-24 14:39:35 +02007642S: Supported
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03007643F: net/nfc/
Ilan Elias55eb94f2011-09-18 11:19:34 +03007644F: include/net/nfc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007645F: include/uapi/linux/nfc.h
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03007646F: drivers/nfc/
Christophe Ricard397d6492015-12-23 23:45:21 +01007647F: include/linux/platform_data/microread.h
7648F: include/linux/platform_data/nfcmrvl.h
7649F: include/linux/platform_data/nxp-nci.h
Marcel Holtmann08eaa1e2012-10-24 11:45:38 -07007650F: include/linux/platform_data/pn544.h
Christophe Ricard397d6492015-12-23 23:45:21 +01007651F: include/linux/platform_data/st21nfca.h
7652F: include/linux/platform_data/st-nci.h
Mark A. Greer7ebb88e2014-03-10 11:56:25 -07007653F: Documentation/devicetree/bindings/net/nfc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007654
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04007655NFS, SUNRPC, AND LOCKD CLIENTS
Trond Myklebustcd7b9962013-12-04 12:29:49 -05007656M: Trond Myklebust <trond.myklebust@primarydata.com>
Trond Myklebust0e3b1372015-02-03 17:13:58 -05007657M: Anna Schumaker <anna.schumaker@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05007658L: linux-nfs@vger.kernel.org
7659W: http://client.linux-nfs.org
Trond Myklebustcd7b9962013-12-04 12:29:49 -05007660T: git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007661S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007662F: fs/lockd/
7663F: fs/nfs/
7664F: fs/nfs_common/
7665F: net/sunrpc/
7666F: include/linux/lockd/
7667F: include/linux/nfs*
7668F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007669F: include/uapi/linux/nfs*
7670F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007671
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07007672NILFS2 FILESYSTEM
Ryusuke Konishie2126932014-04-03 14:50:25 -07007673M: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09007674L: linux-nilfs@vger.kernel.org
Ryusuke Konishif9472262014-04-03 14:50:32 -07007675W: http://nilfs.sourceforge.net/
Ryusuke Konishie2126932014-04-03 14:50:25 -07007676T: git git://github.com/konis/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07007677S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007678F: Documentation/filesystems/nilfs2.txt
7679F: fs/nilfs2/
7680F: include/linux/nilfs2_fs.h
Ryusuke Konishic35c7ac2015-11-06 16:32:11 -08007681F: include/trace/events/nilfs2.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07007682
Linus Torvalds1da177e2005-04-16 15:20:36 -07007683NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007684M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007685W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7686S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007687F: Documentation/scsi/NinjaSCSI.txt
7688F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007689
7690NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007691M: GOTO Masanori <gotom@debian.or.jp>
7692M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007693W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7694S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007695F: Documentation/scsi/NinjaSCSI.txt
7696F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007697
Ley Foon Tan383b8fb2014-11-06 15:20:14 +08007698NIOS2 ARCHITECTURE
7699M: Ley Foon Tan <lftan@altera.com>
7700L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
Ley Foon Tan0094dc42015-09-08 01:50:05 +08007701T: git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
Ley Foon Tan383b8fb2014-11-06 15:20:14 +08007702S: Maintained
7703F: arch/nios2/
7704
Pali Rohár2a6afdd2015-03-29 15:35:54 +02007705NOKIA N900 POWER SUPPLY DRIVERS
7706M: Pali Rohár <pali.rohar@gmail.com>
7707S: Maintained
7708F: include/linux/power/bq2415x_charger.h
Andrew F. Davis081bab22015-09-22 14:35:06 -05007709F: include/linux/power/bq27xxx_battery.h
Pali Rohár2a6afdd2015-03-29 15:35:54 +02007710F: include/linux/power/isp1704_charger.h
7711F: drivers/power/bq2415x_charger.c
Andrew F. Davis081bab22015-09-22 14:35:06 -05007712F: drivers/power/bq27xxx_battery.c
Pali Rohár2a6afdd2015-03-29 15:35:54 +02007713F: drivers/power/isp1704_charger.c
7714F: drivers/power/rx51_battery.c
7715
Allen Hubbea1bd3ba2015-04-09 10:33:20 -04007716NTB DRIVER CORE
Jon Mason9ef6bf62014-06-19 10:44:24 -07007717M: Jon Mason <jdmason@kudzu.us>
7718M: Dave Jiang <dave.jiang@intel.com>
Allen Hubbea1bd3ba2015-04-09 10:33:20 -04007719M: Allen Hubbe <Allen.Hubbe@emc.com>
Jon Mason5e9fd732015-07-04 14:48:33 -04007720L: linux-ntb@googlegroups.com
Jon Masonfce8a7b2012-11-16 19:27:12 -07007721S: Supported
Jon Mason29844112013-07-30 16:29:48 -07007722W: https://github.com/jonmason/ntb/wiki
7723T: git git://github.com/jonmason/ntb.git
Jon Masonfce8a7b2012-11-16 19:27:12 -07007724F: drivers/ntb/
Jon Mason548c2372012-11-16 19:27:13 -07007725F: drivers/net/ntb_netdev.c
Jon Masonfce8a7b2012-11-16 19:27:12 -07007726F: include/linux/ntb.h
Allen Hubbea1bd3ba2015-04-09 10:33:20 -04007727F: include/linux/ntb_transport.h
Jon Masonfce8a7b2012-11-16 19:27:12 -07007728
Allen Hubbee26a5842015-04-09 10:33:20 -04007729NTB INTEL DRIVER
7730M: Jon Mason <jdmason@kudzu.us>
7731M: Dave Jiang <dave.jiang@intel.com>
Jon Mason5e9fd732015-07-04 14:48:33 -04007732L: linux-ntb@googlegroups.com
Allen Hubbee26a5842015-04-09 10:33:20 -04007733S: Supported
7734W: https://github.com/jonmason/ntb/wiki
7735T: git git://github.com/jonmason/ntb.git
7736F: drivers/ntb/hw/intel/
Joe Perches679655d2009-04-07 20:44:32 -07007737
Xiangliang Yua1b36952016-01-21 19:47:05 +08007738NTB AMD DRIVER
7739M: Xiangliang Yu <Xiangliang.Yu@amd.com>
7740L: linux-ntb@googlegroups.com
7741S: Supported
7742F: drivers/ntb/hw/amd/
7743
Linus Torvalds1da177e2005-04-16 15:20:36 -07007744NTFS FILESYSTEM
7745M: Anton Altaparmakov <anton@tuxera.com>
7746L: linux-ntfs-dev@lists.sourceforge.net
Adrian Bunk169ccbd2008-09-02 14:35:37 -07007747W: http://www.tuxera.com/
Josh Boyer1adc1232005-11-23 15:44:15 -08007748T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007749S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007750F: Documentation/filesystems/ntfs.txt
7751F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007752
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08007753NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007754M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01007755L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01007756S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09007757F: drivers/video/fbdev/riva/
7758F: drivers/video/fbdev/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007759
Matthew Wilcox79461682012-11-10 08:54:53 -05007760NVM EXPRESS DRIVER
Jay Freyenseeb3975e92015-10-28 16:37:51 +09007761M: Keith Busch <keith.busch@intel.com>
7762M: Jens Axboe <axboe@fb.com>
Matthew Wilcox79461682012-11-10 08:54:53 -05007763L: linux-nvme@lists.infradead.org
Jay Freyenseeb3975e92015-10-28 16:37:51 +09007764T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
7765W: https://kernel.googlesource.com/pub/scm/linux/kernel/git/axboe/linux-block/
Matthew Wilcox79461682012-11-10 08:54:53 -05007766S: Supported
Jay Sternberg57dacad2015-10-09 18:17:06 +02007767F: drivers/nvme/host/
Matthew Wilcox79461682012-11-10 08:54:53 -05007768F: include/linux/nvme.h
7769
Srinivas Kandagatlaaee4b9b2015-07-27 12:17:24 +01007770NVMEM FRAMEWORK
7771M: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
7772M: Maxime Ripard <maxime.ripard@free-electrons.com>
7773S: Maintained
7774F: drivers/nvmem/
7775F: Documentation/devicetree/bindings/nvmem/
7776F: include/linux/nvmem-consumer.h
7777F: include/linux/nvmem-provider.h
7778
Clément Perrochauddece4582015-03-09 11:12:04 +01007779NXP-NCI NFC DRIVER
7780M: Clément Perrochaud <clement.perrochaud@effinnov.com>
7781R: Charles Gorand <charles.gorand@effinnov.com>
7782L: linux-nfc@lists.01.org (moderated for non-subscribers)
7783S: Supported
7784F: drivers/nfc/nxp-nci
7785
Russell Kingf50d7142014-03-03 12:18:14 +00007786NXP TDA998X DRM DRIVER
7787M: Russell King <rmk+kernel@arm.linux.org.uk>
7788S: Supported
7789F: drivers/gpu/drm/i2c/tda998x_drv.c
7790F: include/drm/i2c/tda998x.h
7791
Peter Rosinfbace432014-11-08 14:40:17 +01007792NXP TFA9879 DRIVER
7793M: Peter Rosin <peda@axentia.se>
7794L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7795S: Maintained
7796F: sound/soc/codecs/tfa9879*
7797
Tony Lindgrenf5525782009-05-28 13:23:53 -07007798OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07007799M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007800L: linux-omap@vger.kernel.org
7801W: http://www.muru.com/linux/omap/
7802W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08007803Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02007804T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07007805S: Maintained
Felipe Contreras4e04d5a2009-09-21 17:04:25 -07007806F: arch/arm/*omap*/
Felipe Balbi026da812015-01-19 16:13:53 -06007807F: arch/arm/configs/omap1_defconfig
7808F: arch/arm/configs/omap2plus_defconfig
Jean Delvare046d0a32012-01-12 20:32:05 +01007809F: drivers/i2c/busses/i2c-omap.c
Felipe Balbidc68cd12014-11-06 08:37:19 -06007810F: drivers/irqchip/irq-omap-intc.c
7811F: drivers/mfd/*omap*.c
7812F: drivers/mfd/menelaus.c
7813F: drivers/mfd/palmas.c
7814F: drivers/mfd/tps65217.c
7815F: drivers/mfd/tps65218.c
7816F: drivers/mfd/tps65910.c
7817F: drivers/mfd/twl-core.[ch]
7818F: drivers/mfd/twl4030*.c
7819F: drivers/mfd/twl6030*.c
7820F: drivers/mfd/twl6040*.c
7821F: drivers/regulator/palmas-regulator*.c
7822F: drivers/regulator/pbias-regulator.c
7823F: drivers/regulator/tps65217-regulator.c
7824F: drivers/regulator/tps65218-regulator.c
7825F: drivers/regulator/tps65910-regulator.c
7826F: drivers/regulator/twl-regulator.c
Jean Delvare046d0a32012-01-12 20:32:05 +01007827F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07007828
Tony Lindgren50f29fb2012-12-16 11:29:59 -08007829OMAP DEVICE TREE SUPPORT
Benoit Coussoncdb55ab2013-08-09 23:19:15 +02007830M: Benoît Cousson <bcousson@baylibre.com>
Tony Lindgren50f29fb2012-12-16 11:29:59 -08007831M: Tony Lindgren <tony@atomide.com>
7832L: linux-omap@vger.kernel.org
Grant Likelyd0fb18c2013-07-19 20:10:12 -07007833L: devicetree@vger.kernel.org
Tony Lindgren50f29fb2012-12-16 11:29:59 -08007834S: Maintained
7835F: arch/arm/boot/dts/*omap*
7836F: arch/arm/boot/dts/*am3*
Nishanth Menon05eb20f2014-10-21 09:24:22 -05007837F: arch/arm/boot/dts/*am4*
7838F: arch/arm/boot/dts/*am5*
7839F: arch/arm/boot/dts/*dra7*
Tony Lindgren50f29fb2012-12-16 11:29:59 -08007840
Tony Lindgrenf5525782009-05-28 13:23:53 -07007841OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007842M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007843L: linux-omap@vger.kernel.org
7844S: Maintained
7845F: arch/arm/*omap*/*clock*
7846
7847OMAP POWER MANAGEMENT SUPPORT
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08007848M: Kevin Hilman <khilman@deeprootsystems.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007849L: linux-omap@vger.kernel.org
7850S: Maintained
7851F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07007852F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07007853
Joe Perchesd21db562013-09-11 14:23:35 -07007854OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
Paul Walmsley692ab1f2011-03-09 18:44:28 -07007855M: Rajendra Nayak <rnayak@ti.com>
7856M: Paul Walmsley <paul@pwsan.com>
7857L: linux-omap@vger.kernel.org
7858S: Maintained
Joe Perchesd21db562013-09-11 14:23:35 -07007859F: arch/arm/mach-omap2/prm*
Paul Walmsley692ab1f2011-03-09 18:44:28 -07007860
Tony Lindgrenf5525782009-05-28 13:23:53 -07007861OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03007862M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03007863M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Jim Davise5747e42015-06-25 15:01:58 -07007864L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Tony Lindgrenf5525782009-05-28 13:23:53 -07007865L: linux-omap@vger.kernel.org
7866S: Maintained
7867F: sound/soc/omap/
7868
Tony Lindgren18640192014-11-20 09:13:42 -08007869OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
7870M: Roger Quadros <rogerq@ti.com>
7871M: Tony Lindgren <tony@atomide.com>
7872L: linux-omap@vger.kernel.org
7873S: Maintained
7874F: drivers/memory/omap-gpmc.c
7875F: arch/arm/mach-omap2/*gpmc*
7876
Tony Lindgrenf5525782009-05-28 13:23:53 -07007877OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02007878M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01007879L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07007880L: linux-omap@vger.kernel.org
7881S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09007882F: drivers/video/fbdev/omap/
Tony Lindgrenf5525782009-05-28 13:23:53 -07007883
Tomi Valkeinen676eec02010-01-07 13:18:04 +02007884OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02007885M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03007886L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02007887L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03007888S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09007889F: drivers/video/fbdev/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03007890F: Documentation/arm/OMAP/DSS
7891
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03007892OMAP HARDWARE SPINLOCK SUPPORT
7893M: Ohad Ben-Cohen <ohad@wizery.com>
7894L: linux-omap@vger.kernel.org
7895S: Maintained
7896F: drivers/hwspinlock/omap_hwspinlock.c
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03007897
Tony Lindgrenf5525782009-05-28 13:23:53 -07007898OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007899M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007900L: linux-omap@vger.kernel.org
7901S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07007902F: drivers/mmc/host/omap.c
7903
7904OMAP HS MMC SUPPORT
Venkatraman S0a4585c2012-08-17 23:59:53 +05307905L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07007906L: linux-omap@vger.kernel.org
Balaji T Kdfa5d192014-09-17 22:50:11 +05307907S: Orphan
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07007908F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07007909
7910OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007911M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007912S: Maintained
7913F: drivers/char/hw_random/omap-rng.c
7914
Paul Walmsleyf400c822010-12-06 19:08:54 -07007915OMAP HWMOD SUPPORT
Benoit Coussoncdb55ab2013-08-09 23:19:15 +02007916M: Benoît Cousson <bcousson@baylibre.com>
Paul Walmsleyf400c822010-12-06 19:08:54 -07007917M: Paul Walmsley <paul@pwsan.com>
7918L: linux-omap@vger.kernel.org
7919S: Maintained
Zhang Yanfei8fc8b122013-01-11 14:32:03 -08007920F: arch/arm/mach-omap2/omap_hwmod.*
Paul Walmsleyf400c822010-12-06 19:08:54 -07007921
Paul Walmsley8633fb32015-01-19 23:49:50 -07007922OMAP HWMOD DATA
7923M: Paul Walmsley <paul@pwsan.com>
7924L: linux-omap@vger.kernel.org
7925S: Maintained
7926F: arch/arm/mach-omap2/omap_hwmod*data*
7927
Paul Walmsleyf400c822010-12-06 19:08:54 -07007928OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
Benoit Coussoncdb55ab2013-08-09 23:19:15 +02007929M: Benoît Cousson <bcousson@baylibre.com>
Paul Walmsleyf400c822010-12-06 19:08:54 -07007930L: linux-omap@vger.kernel.org
7931S: Maintained
7932F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
7933
Laurent Pinchart0db83ce2014-06-06 12:08:59 -03007934OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03007935M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7936L: linux-media@vger.kernel.org
7937S: Maintained
Sakari Ailus7eec52d2015-03-19 01:50:22 +02007938F: Documentation/devicetree/bindings/media/ti,omap3isp.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007939F: drivers/media/platform/omap3isp/
Laurent Pinchart0db83ce2014-06-06 12:08:59 -03007940F: drivers/staging/media/omap4iss/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03007941
Tony Lindgrenf5525782009-05-28 13:23:53 -07007942OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03007943M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007944L: linux-usb@vger.kernel.org
7945L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03007946T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07007947S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07007948F: drivers/usb/*/*omap*
7949F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07007950
Kevin Hilman6d994712012-07-16 10:05:07 -07007951OMAP GPIO DRIVER
Javier Martinez Canillasfe643522015-11-13 10:35:29 -03007952M: Grygorii Strashko <grygorii.strashko@ti.com>
Santosh Shilimkar97215802014-10-13 14:16:28 -04007953M: Santosh Shilimkar <ssantosh@kernel.org>
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08007954M: Kevin Hilman <khilman@deeprootsystems.com>
Kevin Hilman6d994712012-07-16 10:05:07 -07007955L: linux-omap@vger.kernel.org
7956S: Maintained
Javier Martinez Canillasfe643522015-11-13 10:35:29 -03007957F: Documentation/devicetree/bindings/gpio/gpio-omap.txt
Kevin Hilman6d994712012-07-16 10:05:07 -07007958F: drivers/gpio/gpio-omap.c
7959
Mark Jacksonc351e292013-10-04 09:15:01 +01007960OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
7961M: Mark Jackson <mpfj@newflow.co.uk>
7962L: linux-omap@vger.kernel.org
7963S: Maintained
7964F: arch/arm/boot/dts/am335x-nano.dts
7965
Bob Copeland0ad122d2008-07-25 19:45:18 -07007966OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007967M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07007968L: linux-karma-devel@lists.sourceforge.net
7969S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007970F: Documentation/filesystems/omfs.txt
7971F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07007972
Harald Weltec1986ee2005-11-13 16:06:29 -08007973OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007974M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08007975S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007976F: drivers/char/pcmcia/cm4000_cs.c
7977F: include/linux/cm4000_cs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007978F: include/uapi/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08007979
Harald Welte77c44ab2005-11-13 16:06:26 -08007980OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007981M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08007982S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007983F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08007984
Jonathan Corbet77d51402007-03-22 19:44:17 -03007985OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007986M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007987L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02007988T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03007989S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007990F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03007991
Thomas Gleixner431bca72007-05-02 09:31:35 +02007992ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007993M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02007994L: linux-mtd@lists.infradead.org
7995S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007996F: drivers/mtd/onenand/
7997F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02007998
Linus Torvalds1da177e2005-04-16 15:20:36 -07007999ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008000M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008001L: osst-users@lists.sourceforge.net
8002L: linux-scsi@vger.kernel.org
8003S: Maintained
Jean Delvaref7269cf2013-07-03 15:05:08 -07008004F: Documentation/scsi/osst.txt
8005F: drivers/scsi/osst.*
8006F: drivers/scsi/osst_*.h
8007F: drivers/scsi/st.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008008
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008009OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008010M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01008011L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008012S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008013F: Documentation/i2c/busses/i2c-ocores
8014F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008015
Grant Likely860c44c2009-10-26 16:49:49 -07008016OPEN FIRMWARE AND FLATTENED DEVICE TREE
Rob Herring5d3ad8a2013-12-03 10:20:16 -06008017M: Rob Herring <robh+dt@kernel.org>
Grant Likelyc8fb70a2015-08-23 13:34:08 -07008018M: Frank Rowand <frowand.list@gmail.com>
8019M: Grant Likely <grant.likely@linaro.org>
Grant Likelyd0fb18c2013-07-19 20:10:12 -07008020L: devicetree@vger.kernel.org
Rob Herringa7fefe92014-12-26 14:05:54 -06008021W: http://www.devicetree.org/
8022T: git git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux.git
Grant Likely860c44c2009-10-26 16:49:49 -07008023S: Maintained
Grant Likelyf8828202013-07-19 18:57:39 -07008024F: drivers/of/
Grant Likely860c44c2009-10-26 16:49:49 -07008025F: include/linux/of*.h
Grant Likelyf8828202013-07-19 18:57:39 -07008026F: scripts/dtc/
Grant Likely860c44c2009-10-26 16:49:49 -07008027
Grant Likelyf8828202013-07-19 18:57:39 -07008028OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
Rob Herring5d3ad8a2013-12-03 10:20:16 -06008029M: Rob Herring <robh+dt@kernel.org>
Grant Likelyf8828202013-07-19 18:57:39 -07008030M: Pawel Moll <pawel.moll@arm.com>
8031M: Mark Rutland <mark.rutland@arm.com>
Ian Campbellde809632013-08-30 09:50:42 +01008032M: Ian Campbell <ijc+devicetree@hellion.org.uk>
Kumar Galabdbff6b2013-08-08 10:51:15 -05008033M: Kumar Gala <galak@codeaurora.org>
Grant Likelyf8828202013-07-19 18:57:39 -07008034L: devicetree@vger.kernel.org
Fengguang Wu9f273c22016-01-20 15:03:25 -08008035T: git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
Grant Likelyf8828202013-07-19 18:57:39 -07008036S: Maintained
8037F: Documentation/devicetree/
8038F: arch/*/boot/dts/
8039F: include/dt-bindings/
8040
Pantelis Antoniou2bb65f52015-03-17 22:30:57 +02008041OPEN FIRMWARE AND DEVICE TREE OVERLAYS
8042M: Pantelis Antoniou <pantelis.antoniou@konsulko.com>
8043L: devicetree@vger.kernel.org
8044S: Maintained
8045F: Documentation/devicetree/dynamic-resolution-notes.txt
8046F: Documentation/devicetree/overlay-notes.txt
8047F: drivers/of/overlay.c
8048F: drivers/of/resolver.c
8049
Jonas Bonn19f9d392011-06-04 22:00:38 +03008050OPENRISC ARCHITECTURE
8051M: Jonas Bonn <jonas@southpole.se>
8052W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02008053L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03008054S: Maintained
8055T: git git://openrisc.net/~jonas/linux
Joe Perches14430812013-09-11 14:23:50 -07008056F: arch/openrisc/
Jonas Bonn19f9d392011-06-04 22:00:38 +03008057
Jesse Grossccb13522011-10-25 19:26:31 -07008058OPENVSWITCH
Jesse Gross4f337ed2014-05-16 15:57:59 -07008059M: Pravin Shelar <pshelar@nicira.com>
Pravin B Shelarb422da72015-01-02 11:18:21 -08008060L: netdev@vger.kernel.org
Jesse Grossccb13522011-10-25 19:26:31 -07008061L: dev@openvswitch.org
8062W: http://openvswitch.org
Jesse Grossccb13522011-10-25 19:26:31 -07008063S: Maintained
8064F: net/openvswitch/
Pravin B Shelarb422da72015-01-02 11:18:21 -08008065F: include/uapi/linux/openvswitch.h
Jesse Grossccb13522011-10-25 19:26:31 -07008066
Viresh Kumar875fa6f2015-11-20 15:57:27 -08008067OPERATING PERFORMANCE POINTS (OPP)
8068M: Viresh Kumar <vireshk@kernel.org>
8069M: Nishanth Menon <nm@ti.com>
8070M: Stephen Boyd <sboyd@codeaurora.org>
8071L: linux-pm@vger.kernel.org
8072S: Maintained
8073T: git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
8074F: drivers/base/power/opp/
8075F: include/linux/pm_opp.h
8076F: Documentation/power/opp.txt
8077F: Documentation/devicetree/bindings/opp/
8078
Clemens Ladischaf399172011-01-10 16:32:54 +01008079OPL4 DRIVER
8080M: Clemens Ladisch <clemens@ladisch.de>
8081L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8082T: git git://git.alsa-project.org/alsa-kernel.git
8083S: Maintained
8084F: sound/drivers/opl4/
8085
Linus Torvalds1da177e2005-04-16 15:20:36 -07008086OPROFILE
Robert Richter4cf7e712012-10-29 18:53:25 +01008087M: Robert Richter <rric@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008088L: oprofile-list@lists.sf.net
8089S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02008090F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07008091F: arch/*/oprofile/
8092F: drivers/oprofile/
8093F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008094
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008095ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07008096M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08008097M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008098L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
Mark Fasheh01945fa2015-02-27 15:51:40 -08008099W: http://ocfs2.wiki.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008100S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008101F: Documentation/filesystems/ocfs2.txt
8102F: Documentation/filesystems/dlmfs.txt
8103F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008104
Linus Torvalds1da177e2005-04-16 15:20:36 -07008105ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07008106L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02008107W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07008108W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01008109S: Orphan
Kalle Valo2be45b62015-11-18 09:57:18 +02008110F: drivers/net/wireless/intersil/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008111
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03008112OSD LIBRARY and FILESYSTEM
Boaz Harroshfadc0752014-10-19 19:19:57 +03008113M: Boaz Harrosh <ooo@electrozaur.com>
Benny Halevyf1f66302014-02-10 11:57:29 +02008114M: Benny Halevy <bhalevy@primarydata.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02008115L: osd-dev@open-osd.org
8116W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07008117T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02008118S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03008119F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07008120F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03008121F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02008122
Miklos Szeredief94b182014-11-20 16:39:59 +01008123OVERLAY FILESYSTEM
Neil Brown7c37fbd2014-10-24 00:14:39 +02008124M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi1d113732014-11-20 16:40:01 +01008125L: linux-unionfs@vger.kernel.org
8126T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
Neil Brown7c37fbd2014-10-24 00:14:39 +02008127S: Supported
Miklos Szeredi1d113732014-11-20 16:40:01 +01008128F: fs/overlayfs/
Neil Brown7c37fbd2014-10-24 00:14:39 +02008129F: Documentation/filesystems/overlayfs.txt
8130
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008131P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02008132M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008133L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02008134W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008135S: Maintained
Kalle Valod3466832015-11-18 09:49:59 +02008136F: drivers/net/wireless/intersil/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008137
Olof Johanssonf5cd7872007-01-31 21:43:54 -06008138PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008139M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06008140L: netdev@vger.kernel.org
8141S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07008142F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06008143
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01008144PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008145M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01008146L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01008147S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008148F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01008149
Steffen Klassert48fc2672010-08-13 10:10:46 -04008150PADATA PARALLEL EXECUTION MECHANISM
8151M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04008152L: linux-crypto@vger.kernel.org
8153S: Maintained
8154F: kernel/padata.c
8155F: include/linux/padata.h
8156F: Documentation/padata.txt
8157
Harald Welte709ee532008-09-23 17:46:57 +02008158PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008159M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd09448532010-02-11 10:40:13 -05008160L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02008161S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008162F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02008163
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01008164PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07008165M: David Howells <dhowells@redhat.com>
8166M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01008167L: linux-am33-list@redhat.com (moderated for non-subscribers)
8168W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
8169S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008170F: Documentation/mn10300/
8171F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01008172
Sudip Mukherjee64dfff02015-05-20 20:57:02 +05308173PARALLEL PORT SUBSYSTEM
8174M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
8175M: Sudip Mukherjee <sudip@vectorindia.org>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07008176L: linux-parport@lists.infradead.org (subscribers-only)
Sudip Mukherjee64dfff02015-05-20 20:57:02 +05308177S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008178F: drivers/parport/
8179F: include/linux/parport*.h
8180F: drivers/char/ppdev.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008181F: include/uapi/linux/ppdev.h
Sudip Mukherjee64dfff02015-05-20 20:57:02 +05308182F: Documentation/parport*.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07008183
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008184PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08008185M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07008186M: Chris Wright <chrisw@sous-sol.org>
8187M: Alok Kataria <akataria@vmware.com>
8188M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00008189L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008190S: Supported
Luis R. Rodrigueza2e19992015-02-13 17:13:40 +10308191F: Documentation/virtual/paravirt_ops.txt
Joe Perches679655d2009-04-07 20:44:32 -07008192F: arch/*/kernel/paravirt*
8193F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008194
Linus Torvalds1da177e2005-04-16 15:20:36 -07008195PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07008196M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07008197L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008198S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008199F: Documentation/blockdev/paride.txt
8200F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008201
8202PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00008203M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05008204M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00008205L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008206W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08008207Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07008208T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Helge Dellerfbb46caa2013-05-16 21:00:16 +00008209T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008210S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008211F: arch/parisc/
Helge Deller2b6bac92013-05-30 13:48:07 +00008212F: Documentation/parisc/
Joe Perches679655d2009-04-07 20:44:32 -07008213F: drivers/parisc/
Helge Deller2b6bac92013-05-30 13:48:07 +00008214F: drivers/char/agp/parisc-agp.c
8215F: drivers/input/serio/gscps2.c
8216F: drivers/parport/parport_gsc.*
8217F: drivers/tty/serial/8250/8250_gsc.c
Jingoo Han8a61f012014-07-01 15:36:01 +09008218F: drivers/video/fbdev/sti*
Helge Deller2b6bac92013-05-30 13:48:07 +00008219F: drivers/video/console/sti*
8220F: drivers/video/logo/logo_parisc*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008221
Jim Cromie1662d322006-10-06 00:43:59 -07008222PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008223M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07008224L: lm-sensors@lm-sensors.org
8225S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008226F: Documentation/hwmon/pc87360
8227F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07008228
8229PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008230M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07008231S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008232F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07008233
Jean Delvare1ad107f2010-08-14 21:09:00 +02008234PC87427 HARDWARE MONITORING DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07008235M: Jean Delvare <jdelvare@suse.com>
Jean Delvare1ad107f2010-08-14 21:09:00 +02008236L: lm-sensors@lm-sensors.org
8237S: Maintained
8238F: Documentation/hwmon/pc87427
8239F: drivers/hwmon/pc87427.c
8240
Riku Voipiob26e0ed2009-03-03 21:37:17 +02008241PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008242M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02008243S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07008244F: drivers/leds/leds-pca9532.c
8245F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02008246
Guenter Roeck5ce914a2010-10-24 18:16:59 +02008247PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07008248M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02008249L: linux-i2c@vger.kernel.org
8250S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02008251F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02008252
Khalid Aziz3971dae2012-04-12 12:49:13 -07008253PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07008254M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07008255S: Maintained
8256F: drivers/firmware/pcdp.*
8257
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06008258PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07008259M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07008260L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06008261S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008262F: Documentation/PCI/pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06008263
Linus Torvalds1da177e2005-04-16 15:20:36 -07008264PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07008265M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07008266L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06008267Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06008268T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008269S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008270F: Documentation/PCI/
8271F: drivers/pci/
8272F: include/linux/pci*
Bjorn Helgaas6b49ee42013-10-09 14:39:08 -06008273F: arch/x86/pci/
Bjorn Helgaascad01f92014-04-05 15:07:00 -06008274F: arch/x86/kernel/quirks.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008275
Ley Foon Taneaa61112015-10-23 18:27:12 +08008276PCI DRIVER FOR ALTERA PCIE IP
8277M: Ley Foon Tan <lftan@altera.com>
8278L: rfi@lists.rocketboards.org (moderated for non-subscribers)
8279L: linux-pci@vger.kernel.org
8280S: Supported
8281F: Documentation/devicetree/bindings/pci/altera-pcie.txt
8282F: drivers/pci/host/pcie-altera.c
8283
Rob Herringb7e78172015-01-28 10:16:18 -06008284PCI DRIVER FOR ARM VERSATILE PLATFORM
8285M: Rob Herring <robh@kernel.org>
8286L: linux-pci@vger.kernel.org
8287L: linux-arm-kernel@lists.infradead.org
8288S: Maintained
8289F: Documentation/devicetree/bindings/pci/versatile.txt
8290F: drivers/pci/host/pci-versatile.c
8291
Tanmay Inamdar5f6b6cc2014-10-01 13:01:35 -06008292PCI DRIVER FOR APPLIEDMICRO XGENE
8293M: Tanmay Inamdar <tinamdar@apm.com>
8294L: linux-pci@vger.kernel.org
8295L: linux-arm-kernel@lists.infradead.org
8296S: Maintained
8297F: Documentation/devicetree/bindings/pci/xgene-pci.txt
8298F: drivers/pci/host/pci-xgene.c
8299
Minghuan Lian62d0ff832014-11-05 16:45:11 +08008300PCI DRIVER FOR FREESCALE LAYERSCAPE
8301M: Minghuan Lian <minghuan.Lian@freescale.com>
8302M: Mingkai Hu <mingkai.hu@freescale.com>
8303M: Roy Zang <tie-fei.zang@freescale.com>
8304L: linuxppc-dev@lists.ozlabs.org
8305L: linux-pci@vger.kernel.org
8306L: linux-arm-kernel@lists.infradead.org
8307S: Maintained
8308F: drivers/pci/host/*layerscape*
8309
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008310PCI DRIVER FOR IMX6
Lucas Stachf175aa22015-01-19 11:17:31 +01008311M: Richard Zhu <Richard.Zhu@freescale.com>
Lucas Stach1ba55f52014-07-31 20:16:04 +02008312M: Lucas Stach <l.stach@pengutronix.de>
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008313L: linux-pci@vger.kernel.org
8314L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8315S: Maintained
8316F: drivers/pci/host/*imx6*
8317
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -06008318PCI DRIVER FOR TI KEYSTONE
8319M: Murali Karicheri <m-karicheri2@ti.com>
8320L: linux-pci@vger.kernel.org
8321L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8322S: Maintained
8323F: drivers/pci/host/*keystone*
8324
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008325PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
8326M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8327M: Jason Cooper <jason@lakedaemon.net>
8328L: linux-pci@vger.kernel.org
8329L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8330S: Maintained
8331F: drivers/pci/host/*mvebu*
8332
Thierry Reding0447cfd2013-08-09 16:49:32 +02008333PCI DRIVER FOR NVIDIA TEGRA
8334M: Thierry Reding <thierry.reding@gmail.com>
8335L: linux-tegra@vger.kernel.org
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008336L: linux-pci@vger.kernel.org
Thierry Reding0447cfd2013-08-09 16:49:32 +02008337S: Supported
8338F: Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
8339F: drivers/pci/host/pci-tegra.c
8340
Kishon Vijay Abraham I47ff3de2014-07-22 15:23:45 -06008341PCI DRIVER FOR TI DRA7XX
8342M: Kishon Vijay Abraham I <kishon@ti.com>
8343L: linux-omap@vger.kernel.org
8344L: linux-pci@vger.kernel.org
8345S: Supported
8346F: Documentation/devicetree/bindings/pci/ti-pci.txt
8347F: drivers/pci/host/pci-dra7xx.c
8348
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008349PCI DRIVER FOR RENESAS R-CAR
8350M: Simon Horman <horms@verge.net.au>
8351L: linux-pci@vger.kernel.org
Simon Horman4a121092016-01-18 10:04:33 +09008352L: linux-renesas-soc@vger.kernel.org
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008353S: Maintained
8354F: drivers/pci/host/*rcar*
8355
Jingoo Han4af82252013-09-12 20:29:24 +09008356PCI DRIVER FOR SAMSUNG EXYNOS
Jingoo Hanb7701752015-05-14 15:17:07 -07008357M: Jingoo Han <jingoohan1@gmail.com>
Jingoo Han4af82252013-09-12 20:29:24 +09008358L: linux-pci@vger.kernel.org
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008359L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8360L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Jingoo Han4af82252013-09-12 20:29:24 +09008361S: Maintained
8362F: drivers/pci/host/pci-exynos.c
8363
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008364PCI DRIVER FOR SYNOPSIS DESIGNWARE
Jingoo Hanb7701752015-05-14 15:17:07 -07008365M: Jingoo Han <jingoohan1@gmail.com>
Pratyush Anand110baab2015-04-30 09:46:07 +05308366M: Pratyush Anand <pratyush.anand@gmail.com>
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008367L: linux-pci@vger.kernel.org
8368S: Maintained
8369F: drivers/pci/host/*designware*
8370
Will Deaconcf288552014-05-01 12:04:28 +01008371PCI DRIVER FOR GENERIC OF HOSTS
8372M: Will Deacon <will.deacon@arm.com>
8373L: linux-pci@vger.kernel.org
8374L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8375S: Maintained
8376F: Documentation/devicetree/bindings/pci/host-generic-pci.txt
8377F: drivers/pci/host/pci-host-generic.c
8378
Keith Busch185a3832016-01-12 13:18:10 -07008379PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
8380M: Keith Busch <keith.busch@intel.com>
8381L: linux-pci@vger.kernel.org
8382S: Supported
8383F: arch/x86/pci/vmd.c
8384
Pratyush Anand51b66a62014-02-11 11:39:26 +05308385PCIE DRIVER FOR ST SPEAR13XX
Pratyush Anand110baab2015-04-30 09:46:07 +05308386M: Pratyush Anand <pratyush.anand@gmail.com>
Pratyush Anand51b66a62014-02-11 11:39:26 +05308387L: linux-pci@vger.kernel.org
Pratyush Anand110baab2015-04-30 09:46:07 +05308388S: Maintained
Pratyush Anand51b66a62014-02-11 11:39:26 +05308389F: drivers/pci/host/*spear*
8390
Ley Foon Tanaf1169b2015-10-23 18:27:13 +08008391PCI MSI DRIVER FOR ALTERA MSI IP
8392M: Ley Foon Tan <lftan@altera.com>
8393L: rfi@lists.rocketboards.org (moderated for non-subscribers)
8394L: linux-pci@vger.kernel.org
8395S: Supported
8396F: Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
8397F: drivers/pci/host/pcie-altera-msi.c
8398
Duc Dangdcd19de2015-06-05 15:56:34 -05008399PCI MSI DRIVER FOR APPLIEDMICRO XGENE
8400M: Duc Dang <dhdang@apm.com>
8401L: linux-pci@vger.kernel.org
8402L: linux-arm-kernel@lists.infradead.org
8403S: Maintained
8404F: Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
8405F: drivers/pci/host/pci-xgene-msi.c
8406
Zhou Wang500a1d92015-10-29 20:02:51 -05008407PCIE DRIVER FOR HISILICON
8408M: Zhou Wang <wangzhou1@hisilicon.com>
Gabriele Paoloni5930fe42015-11-27 01:17:05 +08008409M: Gabriele Paoloni <gabriele.paoloni@huawei.com>
Zhou Wang500a1d92015-10-29 20:02:51 -05008410L: linux-pci@vger.kernel.org
8411S: Maintained
8412F: Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
8413F: drivers/pci/host/pcie-hisi.c
8414
Stanimir Varbanov82a82382015-12-18 14:38:57 +02008415PCIE DRIVER FOR QUALCOMM MSM
8416M: Stanimir Varbanov <svarbanov@mm-sol.com>
8417L: linux-pci@vger.kernel.org
8418L: linux-arm-msm@vger.kernel.org
8419S: Maintained
8420F: drivers/pci/host/*qcom*
8421
Linus Torvalds1da177e2005-04-16 15:20:36 -07008422PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07008423P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07008424L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08008425W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Fengguang Wu9f273c22016-01-20 15:03:25 -08008426T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07008427S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008428F: Documentation/pcmcia/
8429F: drivers/pcmcia/
8430F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008431
8432PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08008433M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07008434L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008435S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07008436F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008437
Steffen Klassert48fc2672010-08-13 10:10:46 -04008438PCRYPT PARALLEL CRYPTO ENGINE
8439M: Steffen Klassert <steffen.klassert@secunet.com>
8440L: linux-crypto@vger.kernel.org
8441S: Maintained
8442F: crypto/pcrypt.c
8443F: include/crypto/pcrypt.h
8444
Tejun Heoe72df0b2010-12-10 17:02:49 +01008445PER-CPU MEMORY ALLOCATOR
8446M: Tejun Heo <tj@kernel.org>
8447M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01008448T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
8449S: Maintained
8450F: include/linux/percpu*.h
8451F: mm/percpu*.c
8452F: arch/*/include/asm/percpu.h
8453
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07008454PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07008455M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07008456S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008457F: include/linux/delayacct.h
8458F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07008459
Ingo Molnar57c0c152009-09-21 12:20:38 +02008460PERFORMANCE EVENTS SUBSYSTEM
Peter Zijlstradaecbd2672015-11-16 11:07:44 +01008461M: Peter Zijlstra <peterz@infradead.org>
Ingo Molnardd9b2382012-03-19 21:03:46 +01008462M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melof80c5392014-03-27 17:36:14 -03008463M: Arnaldo Carvalho de Melo <acme@kernel.org>
Ingo Molnar981c3a42014-01-21 10:59:20 +01008464L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008465T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10008466S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09008467F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02008468F: include/linux/perf_event.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008469F: include/uapi/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01008470F: arch/*/kernel/perf_event*.c
8471F: arch/*/kernel/*/perf_event*.c
8472F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02008473F: arch/*/include/asm/perf_event.h
Vincent Legolla0032362009-10-13 14:48:14 +02008474F: arch/*/kernel/perf_callchain.c
8475F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10008476
Jim Cromiedd49d0f2006-03-24 18:08:17 +01008477PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07008478M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01008479L: linux-abi-devel@lists.sourceforge.net
8480S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008481F: include/linux/personality.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008482F: include/uapi/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01008483
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00008484PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00008485M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00008486S: Supported
8487F: Documentation/networking/phonet.txt
8488F: include/linux/phonet.h
8489F: include/net/phonet/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008490F: include/uapi/linux/phonet.h
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00008491F: net/phonet/
8492
Linus Torvalds1da177e2005-04-16 15:20:36 -07008493PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008494M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008495L: linux-mtd@lists.infradead.org
8496S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008497F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008498
Bruno Prémontefdbb102012-07-30 21:39:03 +02008499PICOLCD HID DRIVER
8500M: Bruno Prémont <bonbons@linux-vserver.org>
8501L: linux-input@vger.kernel.org
8502S: Maintained
8503F: drivers/hid/hid-picolcd*
8504
Jamie Ilesa53bfa02011-12-12 20:28:42 +00008505PICOXCELL SUPPORT
8506M: Jamie Iles <jamie@jamieiles.com>
8507L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8508T: git git://github.com/jamieiles/linux-2.6-ji.git
8509S: Supported
Joe Perchesb8733982014-08-08 14:25:12 -07008510F: arch/arm/boot/dts/picoxcell*
Joe Perches14430812013-09-11 14:23:50 -07008511F: arch/arm/mach-picoxcell/
Joe Perchesb8733982014-08-08 14:25:12 -07008512F: drivers/crypto/picoxcell*
Jamie Ilesa53bfa02011-12-12 20:28:42 +00008513
Linus Walleij2744e8a2011-05-02 20:50:54 +02008514PIN CONTROL SUBSYSTEM
8515M: Linus Walleij <linus.walleij@linaro.org>
David Cohenc11f0422014-10-16 19:06:59 -07008516L: linux-gpio@vger.kernel.org
Linus Walleijdbe752a2015-01-19 11:27:19 +01008517T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
Linus Walleij2744e8a2011-05-02 20:50:54 +02008518S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07008519F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02008520F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02008521
Jean-Christophe PLAGNIOL-VILLARD2201bbb2012-10-27 19:53:12 +02008522PIN CONTROLLER - ATMEL AT91
8523M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
8524L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8525S: Maintained
Alexandre Bellonic654b6b2014-10-17 11:49:40 +02008526F: drivers/pinctrl/pinctrl-at91.*
Jean-Christophe PLAGNIOL-VILLARD2201bbb2012-10-27 19:53:12 +02008527
Ludovic Desroches33d36902015-09-16 17:36:59 +02008528PIN CONTROLLER - ATMEL AT91 PIO4
8529M: Ludovic Desroches <ludovic.desroches@atmel.com>
8530L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8531L: linux-gpio@vger.kernel.org
8532S: Supported
8533F: drivers/pinctrl/pinctrl-at91-pio4.*
8534
Mika Westerbergcbd1b652014-10-24 15:16:53 +03008535PIN CONTROLLER - INTEL
8536M: Mika Westerberg <mika.westerberg@linux.intel.com>
8537M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
8538S: Maintained
8539F: drivers/pinctrl/intel/
Viresh Kumardeda8282012-03-28 22:27:07 +05308540
Laurent Pinchart9963b532014-07-02 16:33:31 +02008541PIN CONTROLLER - RENESAS
8542M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Geert Uytterhoeven1a4ca6d2015-12-16 08:47:11 +01008543M: Geert Uytterhoeven <geert+renesas@glider.be>
Simon Horman4a121092016-01-18 10:04:33 +09008544L: linux-renesas-soc@vger.kernel.org
Laurent Pinchart9963b532014-07-02 16:33:31 +02008545S: Maintained
8546F: drivers/pinctrl/sh-pfc/
8547
Doug Andersonb75e60d2013-06-16 15:17:46 -07008548PIN CONTROLLER - SAMSUNG
Tomasz Figafea685e2014-08-26 16:30:53 +02008549M: Tomasz Figa <tomasz.figa@gmail.com>
Doug Andersonb75e60d2013-06-16 15:17:46 -07008550L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8551L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8552S: Maintained
Sachin Kamat9b5b33f2014-07-11 14:29:50 +05308553F: drivers/pinctrl/samsung/
Doug Andersonb75e60d2013-06-16 15:17:46 -07008554
Tony Lindgren13cbd902015-12-10 14:27:32 -08008555PIN CONTROLLER - SINGLE
8556M: Tony Lindgren <tony@atomide.com>
8557M: Haojian Zhuang <haojian.zhuang@linaro.org>
8558L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8559L: linux-omap@vger.kernel.org
8560S: Maintained
8561F: drivers/pinctrl/pinctrl-single.c
8562
Viresh Kumardeda8282012-03-28 22:27:07 +05308563PIN CONTROLLER - ST SPEAR
Viresh Kumarda899472015-07-17 16:23:50 -07008564M: Viresh Kumar <vireshk@kernel.org>
Viresh Kumardeda8282012-03-28 22:27:07 +05308565L: spear-devel@list.st.com
8566L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8567W: http://www.st.com/spear
8568S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02008569F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05308570
Peter Osterlund249a6772005-09-27 21:45:30 -07008571PKTCDVD DRIVER
Jiri Kosinae5f64502015-08-09 09:11:34 +02008572M: Jiri Kosina <jikos@kernel.org>
Peter Osterlund249a6772005-09-27 21:45:30 -07008573S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008574F: drivers/block/pktcdvd.c
8575F: include/linux/pktcdvd.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008576F: include/uapi/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07008577
GuanXuetaob31d8272011-01-16 00:35:49 +08008578PKUNITY SOC DRIVERS
8579M: Guan Xuetao <gxt@mprc.pku.edu.cn>
8580W: http://mprc.pku.edu.cn/~guanxuetao/linux
8581S: Maintained
Guan Xuetaoceebf4d2014-05-27 07:53:10 +08008582T: git git://github.com/gxt/linux.git
GuanXuetaob31d8272011-01-16 00:35:49 +08008583F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08008584F: drivers/i2c/busses/i2c-puv3.c
Jingoo Han8a61f012014-07-01 15:36:01 +09008585F: drivers/video/fbdev/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08008586F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08008587
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07008588PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07008589M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07008590L: lm-sensors@lm-sensors.org
8591W: http://www.lm-sensors.org/
8592W: http://www.roeck-us.net/linux/drivers/
8593T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8594S: Maintained
8595F: Documentation/hwmon/pmbus
8596F: drivers/hwmon/pmbus/
8597F: include/linux/i2c/pmbus.h
8598
Anil Ravindranath89a36812009-08-25 17:35:18 -07008599PMC SIERRA MaxRAID DRIVER
Anil Ravindranath89a36812009-08-25 17:35:18 -07008600L: linux-scsi@vger.kernel.org
8601W: http://www.pmc-sierra.com/
Joe Perches3cdea4d712015-09-09 15:36:14 -07008602S: Orphan
Anil Ravindranath89a36812009-08-25 17:35:18 -07008603F: drivers/scsi/pmcraid.*
8604
jack wangdbf9bfe2009-10-14 16:19:21 +08008605PMC SIERRA PM8001 DRIVER
Jack Wangd32477e2015-07-29 12:02:50 +02008606M: Jack Wang <jinpu.wang@profitbricks.com>
jack wangdbf9bfe2009-10-14 16:19:21 +08008607M: lindar_liu@usish.com
Suresh Thiagarajanf5a7b522014-07-30 17:37:43 +05308608L: pmchba@pmcs.com
jack wangdbf9bfe2009-10-14 16:19:21 +08008609L: linux-scsi@vger.kernel.org
8610S: Supported
8611F: drivers/scsi/pm8001/
8612
Linus Torvalds1da177e2005-04-16 15:20:36 -07008613POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07008614M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar981c3a42014-01-21 10:59:20 +01008615L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008616T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner5cee9642014-06-22 12:06:40 +02008617S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008618F: fs/timerfd.c
8619F: include/linux/timer*
Thomas Gleixner5cee9642014-06-22 12:06:40 +02008620F: kernel/time/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008621
Rafael J. Wysocki7b06a6d2015-12-05 01:54:47 +01008622POWER MANAGEMENT CORE
8623M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
8624L: linux-pm@vger.kernel.org
8625T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
8626S: Supported
8627F: drivers/base/power/
8628F: include/linux/pm.h
8629F: include/linux/pm_*
8630F: include/linux/powercap.h
8631F: drivers/powercap/
8632
Anton Vorontsov3be86142007-07-15 04:43:36 +04008633POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Sebastian Reichelad8464a2014-07-16 20:14:30 +02008634M: Sebastian Reichel <sre@kernel.org>
Dmitry Eremin-Solenikov57318932014-01-21 03:33:09 +04008635M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008636M: David Woodhouse <dwmw2@infradead.org>
Sebastian Reichelad8464a2014-07-16 20:14:30 +02008637L: linux-pm@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07008638T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04008639S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008640F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07008641F: drivers/power/
Sebastian Reichel26305022015-07-24 23:11:28 +02008642X: drivers/power/avs/
Anton Vorontsov3be86142007-07-15 04:43:36 +04008643
Mark Rutland514f1612015-07-31 15:46:20 +01008644POWER STATE COORDINATION INTERFACE (PSCI)
8645M: Mark Rutland <mark.rutland@arm.com>
8646M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
8647L: linux-arm-kernel@lists.infradead.org
8648S: Maintained
8649F: drivers/firmware/psci.c
8650F: include/linux/psci.h
8651F: include/uapi/linux/psci.h
8652
Linus Torvalds1da177e2005-04-16 15:20:36 -07008653PNP SUPPORT
Joe Perches9c3646d2015-06-25 15:02:00 -07008654M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008655S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008656F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008657
8658PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07008659M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008660L: linux-ppp@vger.kernel.org
8661S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07008662F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008663
8664PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07008665M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008666S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008667F: net/atm/pppoatm.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008668F: include/uapi/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008669
8670PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07008671M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008672S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07008673F: drivers/net/ppp/pppoe.c
8674F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008675
James Chapmana6d23702007-06-27 15:53:17 -07008676PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07008677M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07008678S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07008679F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07008680F: include/linux/if_pppol2tp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008681F: include/uapi/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07008682
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07008683PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07008684M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07008685W: http://wiki.enneenne.com/index.php/LinuxPPS_support
8686L: linuxpps@ml.enneenne.com (subscribers-only)
8687S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07008688F: Documentation/pps/
8689F: drivers/pps/
8690F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07008691
Harry Wei71a6d0a2011-05-11 15:13:33 -07008692PPTP DRIVER
8693M: Dmitry Kozlov <xeb@mail.ru>
8694L: netdev@vger.kernel.org
8695S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07008696F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07008697W: http://sourceforge.net/projects/accel-pptp
8698
Linus Torvalds1da177e2005-04-16 15:20:36 -07008699PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07008700M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008701L: kpreempt-tech@lists.sourceforge.net
8702W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
8703S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008704F: Documentation/preempt-locking.txt
8705F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008706
8707PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008708M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07008709L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04008710W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04008711S: Obsolete
Kalle Valoc12edfe2015-11-18 09:56:45 +02008712F: drivers/net/wireless/intersil/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008713
Masakazu Mokuno02c18892007-07-05 20:11:16 +09008714PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00008715M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09008716L: netdev@vger.kernel.org
Michael Ellermana14ab6b2015-05-01 13:20:25 +10008717L: linuxppc-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00008718S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07008719F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09008720
Geoff Levandf58a9d12006-11-23 00:46:51 +01008721PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00008722M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10008723L: linuxppc-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00008724S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008725F: arch/powerpc/boot/ps3*
8726F: arch/powerpc/include/asm/lv1call.h
8727F: arch/powerpc/include/asm/ps3*.h
8728F: arch/powerpc/platforms/ps3/
8729F: drivers/*/ps3*
8730F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00008731F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07008732F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00008733F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01008734
Jim Pariscffb4add2009-01-06 11:32:10 +00008735PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008736M: Jim Paris <jim@jtan.com>
Geoff Levand3715a5d2015-06-10 18:00:18 +00008737M: Geoff Levand <geoff@infradead.org>
Michael Ellermana14ab6b2015-05-01 13:20:25 +10008738L: linuxppc-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00008739S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07008740F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00008741
Anton Vorontsov8defe592012-08-03 18:07:20 -07008742PSTORE FILESYSTEM
Anton Vorontsov9d5e2a02013-06-09 09:41:23 -07008743M: Anton Vorontsov <anton@enomsg.org>
Anton Vorontsov8defe592012-08-03 18:07:20 -07008744M: Colin Cross <ccross@android.com>
8745M: Kees Cook <keescook@chromium.org>
8746M: Tony Luck <tony.luck@intel.com>
8747S: Maintained
Fengguang Wu9f273c22016-01-20 15:03:25 -08008748T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Anton Vorontsov8defe592012-08-03 18:07:20 -07008749F: fs/pstore/
8750F: include/linux/pstore*
Matt Fleming04851772013-02-08 15:48:51 +00008751F: drivers/firmware/efi/efi-pstore.c
Anton Vorontsov8defe592012-08-03 18:07:20 -07008752F: drivers/acpi/apei/erst.c
8753
Richard Cochran7fbc4152012-03-10 01:55:53 +00008754PTP HARDWARE CLOCK SUPPORT
8755M: Richard Cochran <richardcochran@gmail.com>
Jiri Bence7333e32013-03-26 04:01:12 +00008756L: netdev@vger.kernel.org
Richard Cochran7fbc4152012-03-10 01:55:53 +00008757S: Maintained
8758W: http://linuxptp.sourceforge.net/
8759F: Documentation/ABI/testing/sysfs-ptp
8760F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07008761F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00008762F: drivers/net/phy/dp83640*
8763F: drivers/ptp/*
8764F: include/linux/ptp_cl*
8765
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07008766PTRACE SUPPORT
Richard Weinbergere846ee52014-08-08 14:23:46 -07008767M: Roland McGrath <roland@hack.frob.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008768M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07008769S: Maintained
8770F: include/asm-generic/syscall.h
8771F: include/linux/ptrace.h
8772F: include/linux/regset.h
8773F: include/linux/tracehook.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008774F: include/uapi/linux/ptrace.h
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07008775F: kernel/ptrace.c
8776
Michael Krufky83202042006-07-03 00:24:18 -07008777PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008778M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03008779L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008780L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07008781W: http://www.isely.net/pvrusb2/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008782T: git git://linuxtv.org/media_tree.git
Michael Krufky83202042006-07-03 00:24:18 -07008783S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008784F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008785F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07008786
Hans de Goede39532e62012-11-04 17:05:59 -03008787PWC WEBCAM DRIVER
8788M: Hans de Goede <hdegoede@redhat.com>
8789L: linux-media@vger.kernel.org
8790T: git git://linuxtv.org/media_tree.git
8791S: Maintained
8792F: drivers/media/usb/pwc/*
8793
Kamil Debski93c090b2014-08-20 11:29:23 +02008794PWM FAN DRIVER
8795M: Kamil Debski <k.debski@samsung.com>
8796L: lm-sensors@lm-sensors.org
8797S: Supported
8798F: Documentation/devicetree/bindings/hwmon/pwm-fan.txt
8799F: Documentation/hwmon/pwm-fan
8800F: drivers/hwmon/pwm-fan.c
8801
Thierry Reding200efed2012-03-27 13:16:18 +02008802PWM SUBSYSTEM
Thierry Redingaa3495f2013-05-06 12:50:36 +02008803M: Thierry Reding <thierry.reding@gmail.com>
8804L: linux-pwm@vger.kernel.org
Sascha Hauer0c2498f2011-01-28 09:40:40 +01008805S: Maintained
Thierry Reding006e8542013-11-01 11:15:05 +01008806T: git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
Thierry Reding200efed2012-03-27 13:16:18 +02008807F: Documentation/pwm.txt
8808F: Documentation/devicetree/bindings/pwm/
8809F: include/linux/pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01008810F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07008811F: drivers/video/backlight/pwm_bl.c
8812F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01008813
Eric Miao30ec2612008-06-12 15:21:41 -07008814PXA2xx/PXA3xx SUPPORT
Robert Jarzmik8da5e302014-09-24 23:08:00 +02008815M: Daniel Mack <daniel@zonque.org>
Haojian Zhuanga323f662012-03-14 18:33:07 +08008816M: Haojian Zhuang <haojian.zhuang@gmail.com>
Robert Jarzmik8da5e302014-09-24 23:08:00 +02008817M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -07008818L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08008819T: git git://github.com/hzhuang1/linux.git
Robert Jarzmik8da5e302014-09-24 23:08:00 +02008820T: git git://github.com/rjarzmik/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008821S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008822F: arch/arm/mach-pxa/
Robert Jarzmik820439f2015-05-25 23:29:19 +02008823F: drivers/dma/pxa*
Joe Perches679655d2009-04-07 20:44:32 -07008824F: drivers/pcmcia/pxa2xx*
Robert Jarzmik1403ead2015-11-21 19:04:48 +01008825F: drivers/pinctrl/pxa/
Joe Perches9df92e62012-01-10 15:09:06 -08008826F: drivers/spi/spi-pxa2xx*
Joe Perchesfaf2e1d2014-08-08 14:26:18 -07008827F: drivers/usb/gadget/udc/pxa2*
Joe Perches679655d2009-04-07 20:44:32 -07008828F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01008829F: sound/arm/pxa*
Joe Perches14430812013-09-11 14:23:50 -07008830F: sound/soc/pxa/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008831
Robert Jarzmikf3154a42015-12-18 22:41:34 +01008832PXA GPIO DRIVER
8833M: Robert Jarzmik <robert.jarzmik@free.fr>
8834L: linux-gpio@vger.kernel.org
8835S: Maintained
8836F: drivers/gpio/gpio-pxa.c
8837
Ezequiel Garciaec64d3b2013-12-04 15:28:46 -08008838PXA3xx NAND FLASH DRIVER
8839M: Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
8840L: linux-mtd@lists.infradead.org
8841S: Maintained
Joe Perches9a67f092014-08-08 14:25:10 -07008842F: drivers/mtd/nand/pxa3xx_nand.c
Ezequiel Garciaec64d3b2013-12-04 15:28:46 -08008843
Haojian Zhuang3f640c62011-12-09 09:58:41 +08008844MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07008845M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08008846M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08008847L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08008848T: git git://github.com/hzhuang1/linux.git
8849T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08008850S: Maintained
Haojian Zhuang3f640c62011-12-09 09:58:41 +08008851F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08008852
Pierre Ossman272f1332007-05-14 21:25:26 +02008853PXA MMCI DRIVER
8854S: Orphan
8855
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08008856PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008857M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08008858L: rtc-linux@googlegroups.com
8859S: Maintained
8860
Tadeusz Strukcea40012014-06-05 13:44:39 -07008861QAT DRIVER
Joe Perches49e7d9d2015-04-15 16:17:31 -07008862M: Tadeusz Struk <tadeusz.struk@intel.com>
8863L: qat-linux@intel.com
8864S: Supported
8865F: drivers/crypto/qat/
Tadeusz Strukcea40012014-06-05 13:44:39 -07008866
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07008867QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04008868M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07008869L: linux-rdma@vger.kernel.org
8870S: Supported
8871F: drivers/infiniband/hw/qib/
8872
Jes Sorensen5e9772b2010-06-30 15:37:38 +02008873QLOGIC QLA1280 SCSI DRIVER
8874M: Michael Reed <mdr@sgi.com>
8875L: linux-scsi@vger.kernel.org
8876S: Maintained
8877F: drivers/scsi/qla1280.[ch]
8878
Linus Torvalds1da177e2005-04-16 15:20:36 -07008879QLOGIC QLA2XXX FC-SCSI DRIVER
Saurav Kashyap2c804eb2013-10-30 03:38:28 -04008880M: qla2xxx-upstream@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07008881L: linux-scsi@vger.kernel.org
8882S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008883F: Documentation/scsi/LICENSE.qla2xxx
8884F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008885
Ravi Anand883c98f2010-04-28 11:45:49 +05308886QLOGIC QLA4XXX iSCSI DRIVER
Nilesh Javali1018b8b2015-01-07 00:49:23 -05008887M: QLogic-Storage-Upstream@qlogic.com
Ravi Anand883c98f2010-04-28 11:45:49 +05308888L: linux-scsi@vger.kernel.org
8889S: Supported
Vikas Chaudharybacfb812013-07-11 02:09:43 -04008890F: Documentation/scsi/LICENSE.qla4xxx
Ravi Anand883c98f2010-04-28 11:45:49 +05308891F: drivers/scsi/qla4xxx/
8892
Ron Mercer5a4faa872006-07-25 00:40:21 -07008893QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00008894M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008895M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa872006-07-25 00:40:21 -07008896M: linux-driver@qlogic.com
8897L: netdev@vger.kernel.org
8898S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008899F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07008900F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07008901
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00008902QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Shahed Shaikh9f35a3c2014-08-27 12:43:21 -04008903M: Dept-GELinuxNICDev@qlogic.com
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00008904L: netdev@vger.kernel.org
8905S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07008906F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00008907
Ron Mercerc4e84bd2008-09-18 11:56:28 -04008908QLOGIC QLGE 10Gb ETHERNET DRIVER
Harish Patilc9b1a5b2014-09-18 17:27:25 -04008909M: Harish Patil <harish.patil@qlogic.com>
8910M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
8911M: Dept-GELinuxNICDev@qlogic.com
Joe Perches4cbfbe22009-07-29 15:04:21 -07008912M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04008913L: netdev@vger.kernel.org
8914S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07008915F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04008916
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02008917QLOGIC QL4xxx ETHERNET DRIVER
8918M: Yuval Mintz <Yuval.Mintz@qlogic.com>
8919M: Ariel Elior <Ariel.Elior@qlogic.com>
8920M: everest-linux-l2@qlogic.com
8921L: netdev@vger.kernel.org
8922S: Supported
8923F: drivers/net/ethernet/qlogic/qed/
8924F: include/linux/qed/
8925F: drivers/net/ethernet/qlogic/qede/
8926
Linus Torvalds1da177e2005-04-16 15:20:36 -07008927QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008928M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008929W: http://www.alarsen.net/linux/qnx4fs/
8930S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07008931F: fs/qnx4/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008932F: include/uapi/linux/qnx4_fs.h
8933F: include/uapi/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008934
Antti Palosaari91952bc2012-10-01 12:28:46 -03008935QT1010 MEDIA DRIVER
8936M: Antti Palosaari <crope@iki.fi>
8937L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02008938W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03008939W: http://palosaari.fi/linux/
8940Q: http://patchwork.linuxtv.org/project/linux-media/list/
8941T: git git://linuxtv.org/anttip/media_tree.git
8942S: Maintained
8943F: drivers/media/tuners/qt1010*
8944
Sujith Manoharan966fb5e2013-11-06 10:43:27 +05308945QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
8946M: QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
8947L: linux-wireless@vger.kernel.org
8948L: ath9k-devel@lists.ath9k.org
8949W: http://wireless.kernel.org/en/users/Drivers/ath9k
8950S: Supported
8951F: drivers/net/wireless/ath/ath9k/
8952
Kalle Valo2ea0ffc2013-07-22 12:22:19 +03008953QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
8954M: Kalle Valo <kvalo@qca.qualcomm.com>
8955L: ath10k@lists.infradead.org
8956W: http://wireless.kernel.org/en/users/Drivers/ath10k
Fengguang Wu9f273c22016-01-20 15:03:25 -08008957T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
Kalle Valo2ea0ffc2013-07-22 12:22:19 +03008958S: Supported
8959F: drivers/net/wireless/ath/ath10k/
8960
Richard Kuo4f4567c2011-10-31 18:56:38 -05008961QUALCOMM HEXAGON ARCHITECTURE
8962M: Richard Kuo <rkuo@codeaurora.org>
8963L: linux-hexagon@vger.kernel.org
Fengguang Wu9f273c22016-01-20 15:03:25 -08008964T: git git://git.kernel.org/pub/scm/linux/kernel/git/rkuo/linux-hexagon-kernel.git
Richard Kuo4f4567c2011-10-31 18:56:38 -05008965S: Supported
8966F: arch/hexagon/
8967
Eugene Krasnikov8e84c252013-10-08 21:25:58 +01008968QUALCOMM WCN36XX WIRELESS DRIVER
8969M: Eugene Krasnikov <k.eugene.e@gmail.com>
8970L: wcn36xx@lists.infradead.org
8971W: http://wireless.kernel.org/en/users/Drivers/wcn36xx
8972T: git git://github.com/KrasnikovEugene/wcn36xx.git
8973S: Supported
8974F: drivers/net/wireless/ath/wcn36xx/
8975
Yehuda Sadeh602adf42010-08-12 16:11:25 -07008976RADOS BLOCK DEVICE (RBD)
Sage Weil0f5417c2015-02-19 10:10:40 -08008977M: Ilya Dryomov <idryomov@gmail.com>
8978M: Sage Weil <sage@redhat.com>
Alex Elder527a88b2013-12-26 08:37:43 -06008979M: Alex Elder <elder@kernel.org>
Sage Weil398ecff52015-07-09 11:46:14 -04008980L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07008981W: http://ceph.com/
8982T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil6e67b7a2015-07-09 11:47:37 -04008983T: git git://github.com/ceph/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07008984S: Supported
Sage Weil398ecff52015-07-09 11:46:14 -04008985F: Documentation/ABI/testing/sysfs-bus-rbd
Yehuda Sadeh602adf42010-08-12 16:11:25 -07008986F: drivers/block/rbd.c
8987F: drivers/block/rbd_types.h
8988
Linus Torvalds1da177e2005-04-16 15:20:36 -07008989RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008990M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008991L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008992S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09008993F: drivers/video/fbdev/aty/radeon*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008994F: include/uapi/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008995
Hans de Goedec6c9b342012-11-04 17:03:58 -03008996RADIOSHARK RADIO DRIVER
8997M: Hans de Goede <hdegoede@redhat.com>
8998L: linux-media@vger.kernel.org
8999T: git git://linuxtv.org/media_tree.git
9000S: Maintained
9001F: drivers/media/radio/radio-shark.c
9002
9003RADIOSHARK2 RADIO DRIVER
9004M: Hans de Goede <hdegoede@redhat.com>
9005L: linux-media@vger.kernel.org
9006T: git git://linuxtv.org/media_tree.git
9007S: Maintained
9008F: drivers/media/radio/radio-shark2.c
9009F: drivers/media/radio/radio-tea5777.c
9010
Linus Torvalds1da177e2005-04-16 15:20:36 -07009011RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009012M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01009013L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07009014S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09009015F: drivers/video/fbdev/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07009016
John Crispina0fd81a2016-01-04 20:28:13 +01009017RALINK MIPS ARCHITECTURE
9018M: John Crispin <blogic@openwrt.org>
9019L: linux-mips@linux-mips.org
9020S: Maintained
9021F: arch/mips/ralink
9022
Randy Dunlape7839f22008-10-12 16:11:45 -07009023RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07009024P: rt2x00 project
Stanislaw Gruszkab1824272014-09-28 14:03:06 +02009025M: Stanislaw Gruszka <sgruszka@redhat.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01009026M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07009027L: linux-wireless@vger.kernel.org
Ivo van Doorn95ea3622007-09-25 17:57:13 -07009028S: Maintained
Kalle Valo33aca942015-11-18 10:18:44 +02009029F: drivers/net/wireless/ralink/rt2x00/
Ivo van Doorn95ea3622007-09-25 17:57:13 -07009030
Nick Piggin9db55792008-02-08 04:19:49 -08009031RAMDISK RAM BLOCK DEVICE DRIVER
Ross Zwislerea7618e2015-03-17 12:56:30 -06009032M: Jens Axboe <axboe@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08009033S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009034F: Documentation/blockdev/ramdisk.txt
9035F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08009036
Matt Mackall9e95ce22005-04-16 15:25:56 -07009037RANDOM NUMBER DRIVER
Christoph Hellwig0624bca2014-04-25 01:12:01 -07009038M: "Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07009039S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009040F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07009041
Matt Porter394b7012005-11-07 01:00:15 -08009042RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07009043M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08009044M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08009045S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009046F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08009047
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009048RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009049L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04009050S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07009051F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009052
9053RCUTORTURE MODULE
Josh Triplette0198b22014-07-30 16:08:42 -07009054M: Josh Triplett <josh@joshtriplett.org>
Joe Perches8b58be82009-07-29 15:04:30 -07009055M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +01009056L: linux-kernel@vger.kernel.org
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08009057S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07009058T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07009059F: Documentation/RCU/torture.txt
Joe Perches34e2d562014-07-03 15:08:00 -07009060F: kernel/rcu/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009061
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -07009062RCUTORTURE TEST FRAMEWORK
9063M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyab0afd62014-06-03 08:17:06 -07009064M: Josh Triplett <josh@joshtriplett.org>
Paul E. McKenney4632a192014-05-30 15:37:24 -07009065R: Steven Rostedt <rostedt@goodmis.org>
9066R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Lai Jiangshan96a39bc2015-07-01 15:26:27 +08009067R: Lai Jiangshan <jiangshanlai@gmail.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +01009068L: linux-kernel@vger.kernel.org
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -07009069S: Supported
9070T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9071F: tools/testing/selftests/rcutorture
9072
Florian Fainellic1f766b2008-02-06 22:39:44 +01009073RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07009074M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01009075S: Maintained
9076
Florian Fainellidb17f392007-12-19 11:30:30 +01009077RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009078M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f392007-12-19 11:30:30 +01009079L: netdev@vger.kernel.org
9080S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07009081F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01009082
Andy Grovera09ed662009-02-24 15:30:41 +00009083RDS - RELIABLE DATAGRAM SOCKETS
Venkat Venkatsubra8a85ac42014-01-30 13:28:47 -08009084M: Chien Yen <chien.yen@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00009085L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00009086S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009087F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00009088
Josh Triplett595182b2006-10-04 02:17:21 -07009089READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07009090M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyab0afd62014-06-03 08:17:06 -07009091M: Josh Triplett <josh@joshtriplett.org>
Paul E. McKenney4632a192014-05-30 15:37:24 -07009092R: Steven Rostedt <rostedt@goodmis.org>
9093R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Lai Jiangshan96a39bc2015-07-01 15:26:27 +08009094R: Lai Jiangshan <jiangshanlai@gmail.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +01009095L: linux-kernel@vger.kernel.org
Paul E. McKenney9fab97872012-05-07 09:36:34 -07009096W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07009097S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07009098T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08009099F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07009100X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08009101F: include/linux/rcu*
Paul E. McKenney4102ada2013-10-08 20:23:47 -07009102X: include/linux/srcu.h
9103F: kernel/rcu/
Joe Perches34e2d562014-07-03 15:08:00 -07009104X: kernel/torture.c
Josh Triplett595182b2006-10-04 02:17:21 -07009105
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08009106REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07009107M: Alessandro Zummo <a.zummo@towertech.it>
Alexandre Belloni7c6f84f2015-04-16 12:45:43 -07009108M: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Alessandro Zummo76465492006-12-10 02:19:06 -08009109L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08009110Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alexandre Belloni4733f392015-05-26 11:13:04 +02009111T: git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08009112S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009113F: Documentation/rtc.txt
9114F: drivers/rtc/
9115F: include/linux/rtc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009116F: include/uapi/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08009117
Mark Brown0e400c52014-07-31 12:38:31 +01009118REALTEK AUDIO CODECS
9119M: Bard Liao <bardliao@realtek.com>
9120M: Oder Chiou <oder_chiou@realtek.com>
9121S: Maintained
9122F: sound/soc/codecs/rt*
9123F: include/sound/rt*.h
9124
Linus Torvalds1da177e2005-04-16 15:20:36 -07009125REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07009126L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07009127S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009128F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009129
Mark Brownb83a3132011-05-11 19:59:58 +02009130REGISTER MAP ABSTRACTION
Mark Brownb02e48f2013-04-12 11:39:57 +01009131M: Mark Brown <broonie@kernel.org>
Mark Browndd060bc2014-08-16 12:30:58 +01009132L: linux-kernel@vger.kernel.org
Mark Brownb83a3132011-05-11 19:59:58 +02009133T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
9134S: Supported
9135F: drivers/base/regmap/
9136F: include/linux/regmap.h
9137
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02009138REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
9139M: Ohad Ben-Cohen <ohad@wizery.com>
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03009140T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02009141S: Maintained
9142F: drivers/remoteproc/
9143F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07009144F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02009145
Ohad Ben-Cohend8115db2013-04-16 20:34:49 +03009146REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
9147M: Ohad Ben-Cohen <ohad@wizery.com>
9148T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
9149S: Maintained
9150F: drivers/rpmsg/
9151F: Documentation/rpmsg.txt
9152F: include/linux/rpmsg.h
9153
Sergei Shtylyov8e6569a2015-12-05 04:50:48 +03009154RENESAS ETHERNET DRIVERS
9155R: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
9156L: netdev@vger.kernel.org
Simon Horman4a121092016-01-18 10:04:33 +09009157L: linux-renesas-soc@vger.kernel.org
Sergei Shtylyov8e6569a2015-12-05 04:50:48 +03009158F: drivers/net/ethernet/renesas/
9159F: include/linux/sh_eth.h
9160
Yoshihiro Shimoda3e46c392015-11-30 10:44:33 +09009161RENESAS USB2 PHY DRIVER
9162M: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
Simon Horman4a121092016-01-18 10:04:33 +09009163L: linux-renesas-soc@vger.kernel.org
Yoshihiro Shimoda3e46c392015-11-30 10:44:33 +09009164S: Maintained
9165F: drivers/phy/phy-rcar-gen3-usb2.c
9166
Philipp Zabel1b0fe6b2014-05-27 15:58:09 +02009167RESET CONTROLLER FRAMEWORK
9168M: Philipp Zabel <p.zabel@pengutronix.de>
Fengguang Wu9f273c22016-01-20 15:03:25 -08009169T: git git://git.pengutronix.de/git/pza/linux
Philipp Zabel1b0fe6b2014-05-27 15:58:09 +02009170S: Maintained
9171F: drivers/reset/
9172F: Documentation/devicetree/bindings/reset/
Philipp Zabelb2f6dd72015-02-13 12:14:40 +01009173F: include/dt-bindings/reset/
Philipp Zabel1b0fe6b2014-05-27 15:58:09 +02009174F: include/linux/reset.h
9175F: include/linux/reset-controller.h
9176
Ivo van Doorne08976452008-04-12 19:23:55 +02009177RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07009178M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02009179L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02009180W: http://wireless.kernel.org/
9181T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
9182T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02009183S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08009184F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07009185F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02009186
Thomas Graf933685c2015-01-13 01:01:24 +01009187RHASHTABLE
9188M: Thomas Graf <tgraf@suug.ch>
9189L: netdev@vger.kernel.org
9190S: Maintained
9191F: lib/rhashtable.c
9192F: include/linux/rhashtable.h
9193
Maxim Levitsky67e054e2010-02-22 20:39:42 +02009194RICOH SMARTMEDIA/XD DRIVER
9195M: Maxim Levitsky <maximlevitsky@gmail.com>
9196S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07009197F: drivers/mtd/nand/r852.c
9198F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02009199
Maxim Levitsky92634122011-03-25 01:56:59 -07009200RICOH R5C592 MEMORYSTICK DRIVER
9201M: Maxim Levitsky <maximlevitsky@gmail.com>
9202S: Maintained
9203F: drivers/memstick/host/r592.*
9204
Stefan Achatz27f1d2f2013-09-05 06:36:01 +02009205ROCCAT DRIVERS
9206M: Stefan Achatz <erazor_de@users.sourceforge.net>
9207W: http://sourceforge.net/projects/roccat/
9208S: Maintained
9209F: drivers/hid/hid-roccat*
9210F: include/linux/hid-roccat*
9211F: Documentation/ABI/*/sysfs-driver-hid-roccat*
9212
Jiri Pirko4b8ac962014-11-28 14:34:26 +01009213ROCKER DRIVER
9214M: Jiri Pirko <jiri@resnulli.us>
9215M: Scott Feldman <sfeldma@gmail.com>
9216L: netdev@vger.kernel.org
9217S: Supported
9218F: drivers/net/ethernet/rocker/
9219
Linus Torvalds1da177e2005-04-16 15:20:36 -07009220ROCKETPORT DRIVER
9221P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009222W: http://www.comtrol.com
9223S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009224F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07009225F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009226
Kevin Cernekee7645c2f2014-10-21 15:23:06 -07009227ROCKETPORT EXPRESS/INFINITY DRIVER
9228M: Kevin Cernekee <cernekee@gmail.com>
9229L: linux-serial@vger.kernel.org
9230S: Odd Fixes
9231F: drivers/tty/serial/rp2.*
9232
Linus Torvalds1da177e2005-04-16 15:20:36 -07009233ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07009234M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009235L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02009236W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009237S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009238F: include/net/rose.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009239F: include/uapi/linux/rose.h
Joe Perches679655d2009-04-07 20:44:32 -07009240F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009241
Antti Palosaari91952bc2012-10-01 12:28:46 -03009242RTL2830 MEDIA DRIVER
9243M: Antti Palosaari <crope@iki.fi>
9244L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009245W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03009246W: http://palosaari.fi/linux/
9247Q: http://patchwork.linuxtv.org/project/linux-media/list/
9248T: git git://linuxtv.org/anttip/media_tree.git
9249S: Maintained
9250F: drivers/media/dvb-frontends/rtl2830*
9251
Antti Palosaari27a0aac2013-04-09 20:30:43 -03009252RTL2832 MEDIA DRIVER
9253M: Antti Palosaari <crope@iki.fi>
9254L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009255W: https://linuxtv.org
Antti Palosaari27a0aac2013-04-09 20:30:43 -03009256W: http://palosaari.fi/linux/
9257Q: http://patchwork.linuxtv.org/project/linux-media/list/
9258T: git git://linuxtv.org/anttip/media_tree.git
9259S: Maintained
9260F: drivers/media/dvb-frontends/rtl2832*
9261
Antti Palosaariba6e6f62014-02-03 00:00:32 -03009262RTL2832_SDR MEDIA DRIVER
9263M: Antti Palosaari <crope@iki.fi>
9264L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009265W: https://linuxtv.org
Antti Palosaariba6e6f62014-02-03 00:00:32 -03009266W: http://palosaari.fi/linux/
9267Q: http://patchwork.linuxtv.org/project/linux-media/list/
9268T: git git://linuxtv.org/anttip/media_tree.git
9269S: Maintained
Antti Palosaarib4bb1c22014-07-14 21:19:29 -03009270F: drivers/media/dvb-frontends/rtl2832_sdr*
Antti Palosaariba6e6f62014-02-03 00:00:32 -03009271
Larry Finger59840482008-11-12 17:13:09 -06009272RTL8180 WIRELESS DRIVER
Michael Wu605bebe2007-05-14 01:41:02 -04009273L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02009274W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07009275T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
John W. Linville7be6ff62014-12-04 16:52:41 -05009276S: Orphan
Kalle Valo62141722015-11-18 10:09:24 +02009277F: drivers/net/wireless/realtek/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04009278
Larry Finger59840482008-11-12 17:13:09 -06009279RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03009280M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07009281M: Hin-Tak Leung <htl10@users.sourceforge.net>
9282M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07009283L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02009284W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07009285T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07009286S: Maintained
Kalle Valo62141722015-11-18 10:09:24 +02009287F: drivers/net/wireless/realtek/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06009288
Larry Finger3cf0c8a2010-12-16 09:13:21 -06009289RTL8192CE WIRELESS DRIVER
9290M: Larry Finger <Larry.Finger@lwfinger.net>
9291M: Chaoming Li <chaoming_li@realsil.com.cn>
9292L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02009293W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06009294T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9295S: Maintained
Kalle Valo62141722015-11-18 10:09:24 +02009296F: drivers/net/wireless/realtek/rtlwifi/
9297F: drivers/net/wireless/realtek/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02009298
Jes Sorensen26f1fad2015-10-14 20:44:51 -04009299RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
9300M: Jes Sorensen <Jes.Sorensen@redhat.com>
9301L: linux-wireless@vger.kernel.org
9302T: git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8723au-mac80211
9303S: Maintained
9304F: drivers/net/wireless/realtek/rtl8xxxu/
9305
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08009306S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009307M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01009308L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08009309S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09009310F: drivers/video/fbdev/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08009311
Linus Torvalds1da177e2005-04-16 15:20:36 -07009312S390
Joe Perches8b58be82009-07-29 15:04:30 -07009313M: Martin Schwidefsky <schwidefsky@de.ibm.com>
9314M: Heiko Carstens <heiko.carstens@de.ibm.com>
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01009315L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08009316W: http://www.ibm.com/developerworks/linux/linux390/
Fengguang Wu9f273c22016-01-20 15:03:25 -08009317T: git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
Heiko Carstens5238da42006-02-11 17:56:01 -08009318S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009319F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01009320F: drivers/s390/
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02009321F: Documentation/s390/
9322F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08009323
Sebastian Ott322986c2014-02-17 15:16:30 +01009324S390 COMMON I/O LAYER
9325M: Sebastian Ott <sebott@linux.vnet.ibm.com>
9326M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
9327L: linux-s390@vger.kernel.org
9328W: http://www.ibm.com/developerworks/linux/linux390/
9329S: Supported
9330F: drivers/s390/cio/
9331
9332S390 DASD DRIVER
9333M: Stefan Weinhuber <wein@de.ibm.com>
9334M: Stefan Haberland <stefan.haberland@de.ibm.com>
9335L: linux-s390@vger.kernel.org
9336W: http://www.ibm.com/developerworks/linux/linux390/
9337S: Supported
9338F: drivers/s390/block/dasd*
9339F: block/partitions/ibm.c
9340
Heiko Carstens5238da42006-02-11 17:56:01 -08009341S390 NETWORK DRIVERS
Ursula Braunf0c59af2015-12-11 12:27:52 +01009342M: Ursula Braun <ubraun@linux.vnet.ibm.com>
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01009343L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08009344W: http://www.ibm.com/developerworks/linux/linux390/
9345S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009346F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08009347
Sebastian Ott322986c2014-02-17 15:16:30 +01009348S390 PCI SUBSYSTEM
9349M: Sebastian Ott <sebott@linux.vnet.ibm.com>
9350M: Gerald Schaefer <gerald.schaefer@de.ibm.com>
9351L: linux-s390@vger.kernel.org
9352W: http://www.ibm.com/developerworks/linux/linux390/
9353S: Supported
9354F: arch/s390/pci/
9355F: drivers/pci/hotplug/s390_pci_hpc.c
9356
Felix Beckfeed9b62009-03-26 15:24:23 +01009357S390 ZCRYPT DRIVER
Ingo Tuchscherer5c8d0982013-01-14 10:07:05 +01009358M: Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01009359L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01009360W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01009361S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07009362F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01009363
Heiko Carstens5238da42006-02-11 17:56:01 -08009364S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01009365M: Steffen Maier <maier@linux.vnet.ibm.com>
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01009366L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08009367W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009368S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009369F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009370
Ursula Braundd96df22007-09-19 13:09:02 +02009371S390 IUCV NETWORK LAYER
Ursula Braunf0c59af2015-12-11 12:27:52 +01009372M: Ursula Braun <ubraun@linux.vnet.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02009373L: linux-s390@vger.kernel.org
9374W: http://www.ibm.com/developerworks/linux/linux390/
9375S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009376F: drivers/s390/net/*iucv*
9377F: include/net/iucv/
9378F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02009379
Gerald Schaefer8128f23c2015-08-27 15:33:03 +02009380S390 IOMMU (PCI)
9381M: Gerald Schaefer <gerald.schaefer@de.ibm.com>
9382L: linux-s390@vger.kernel.org
9383W: http://www.ibm.com/developerworks/linux/linux390/
9384S: Supported
9385F: drivers/iommu/s390-iommu.c
9386
Ben Dooks4dde7f72008-06-30 22:40:38 +01009387S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07009388M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07009389L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01009390S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009391F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01009392
Hans Verkuil1f15a222012-11-23 07:45:29 -03009393SAA6588 RDS RECEIVER DRIVER
9394M: Hans Verkuil <hverkuil@xs4all.nl>
9395L: linux-media@vger.kernel.org
9396T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009397W: https://linuxtv.org
Hans Verkuil1f15a222012-11-23 07:45:29 -03009398S: Odd Fixes
9399F: drivers/media/i2c/saa6588*
9400
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02009401SAA7134 VIDEO4LINUX DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02009402M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02009403L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009404W: https://linuxtv.org
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02009405T: git git://linuxtv.org/media_tree.git
9406S: Odd fixes
Cesar Eduardo Barrose42bf502013-03-02 21:53:47 -03009407F: Documentation/video4linux/*.saa7134
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02009408F: drivers/media/pci/saa7134/
9409
Linus Torvalds1da177e2005-04-16 15:20:36 -07009410SAA7146 VIDEO4LINUX-2 DRIVER
Hans Verkuil566b8152012-11-23 09:58:12 -03009411M: Hans Verkuil <hverkuil@xs4all.nl>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03009412L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02009413T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07009414S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03009415F: drivers/media/common/saa7146/
9416F: drivers/media/pci/saa7146/
9417F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009418
Corentin Chary92304a42011-12-05 12:38:35 -05009419SAMSUNG LAPTOP DRIVER
Corentin Chary5909c652012-12-17 16:00:05 -08009420M: Corentin Chary <corentin.chary@gmail.com>
Corentin Chary92304a42011-12-05 12:38:35 -05009421L: platform-driver-x86@vger.kernel.org
9422S: Maintained
9423F: drivers/platform/x86/samsung-laptop.c
9424
Mark Brown4a109cc2010-09-24 10:50:46 +01009425SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09009426M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01009427L: alsa-devel@alsa-project.org (moderated for non-subscribers)
9428S: Supported
Joe Perches14430812013-09-11 14:23:50 -07009429F: sound/soc/samsung/
Mark Brown4a109cc2010-09-24 10:50:46 +01009430
Jingoo Han0d89a282011-12-19 11:09:35 +09009431SAMSUNG FRAMEBUFFER DRIVER
Jingoo Hanb7701752015-05-14 15:17:07 -07009432M: Jingoo Han <jingoohan1@gmail.com>
Jingoo Han0d89a282011-12-19 11:09:35 +09009433L: linux-fbdev@vger.kernel.org
9434S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09009435F: drivers/video/fbdev/s3c-fb.c
Jingoo Han0d89a282011-12-19 11:09:35 +09009436
Krzysztof Kozlowskib40f0632015-05-06 14:19:36 +09009437SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09009438M: Sangbeom Kim <sbkim73@samsung.com>
Krzysztof Kozlowskib40f0632015-05-06 14:19:36 +09009439M: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09009440L: linux-kernel@vger.kernel.org
Krzysztof Kozlowskib40f0632015-05-06 14:19:36 +09009441L: linux-samsung-soc@vger.kernel.org
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09009442S: Supported
9443F: drivers/mfd/sec*.c
9444F: drivers/regulator/s2m*.c
9445F: drivers/regulator/s5m*.c
Krzysztof Kozlowskib40f0632015-05-06 14:19:36 +09009446F: drivers/clk/clk-s2mps11.c
9447F: drivers/rtc/rtc-s5m.c
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09009448F: include/linux/mfd/samsung/
Krzysztof Kozlowskia13c7c52015-12-04 10:10:03 +09009449F: Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
9450F: Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
Krzysztof Kozlowski27383ca2015-12-04 10:10:04 +09009451F: Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
Krzysztof Kozlowskia13c7c52015-12-04 10:10:03 +09009452F: Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09009453
Sylwester Nawrocki038f5c42013-05-28 18:26:20 -03009454SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
9455M: Kyungmin Park <kyungmin.park@samsung.com>
9456M: Sylwester Nawrocki <s.nawrocki@samsung.com>
9457L: linux-media@vger.kernel.org
9458Q: https://patchwork.linuxtv.org/project/linux-media/list/
9459S: Supported
9460F: drivers/media/platform/exynos4-is/
Sylwester Nawrocki038f5c42013-05-28 18:26:20 -03009461
Sylwester Nawrocki6fd86ab2012-11-15 18:05:15 -03009462SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
9463M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
9464L: linux-media@vger.kernel.org
9465L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9466S: Maintained
9467F: drivers/media/platform/s3c-camif/
Mauro Carvalho Chehabd647f0b2015-11-13 19:40:07 -02009468F: include/media/drv-intf/s3c_camif.h
Sylwester Nawrocki6fd86ab2012-11-15 18:05:15 -03009469
Andrzej Hajdab84ef242013-01-31 07:03:05 -03009470SAMSUNG S5C73M3 CAMERA DRIVER
9471M: Kyungmin Park <kyungmin.park@samsung.com>
9472M: Andrzej Hajda <a.hajda@samsung.com>
9473L: linux-media@vger.kernel.org
9474S: Supported
9475F: drivers/media/i2c/s5c73m3/*
9476
Andrzej Hajda7d4599372013-12-05 08:38:39 -03009477SAMSUNG S5K5BAF CAMERA DRIVER
9478M: Kyungmin Park <kyungmin.park@samsung.com>
9479M: Andrzej Hajda <a.hajda@samsung.com>
9480L: linux-media@vger.kernel.org
9481S: Supported
9482F: drivers/media/i2c/s5k5baf.c
9483
Robert Baldygac04c6742015-08-20 17:26:02 +02009484SAMSUNG S3FWRN5 NFC DRIVER
9485M: Robert Baldyga <r.baldyga@samsung.com>
9486L: linux-nfc@lists.01.org (moderated for non-subscribers)
9487S: Supported
9488F: drivers/nfc/s3fwrn5
9489
Tomasz Figa310e39c2013-11-09 03:17:34 +01009490SAMSUNG SOC CLOCK DRIVERS
Tomasz Figafea685e2014-08-26 16:30:53 +02009491M: Sylwester Nawrocki <s.nawrocki@samsung.com>
9492M: Tomasz Figa <tomasz.figa@gmail.com>
Tomasz Figa310e39c2013-11-09 03:17:34 +01009493S: Supported
9494L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9495F: drivers/clk/samsung/
9496
Byungho An66890ed2014-03-25 12:11:07 -07009497SAMSUNG SXGBE DRIVERS
9498M: Byungho An <bh74.an@samsung.com>
9499M: Girish K S <ks.giri@samsung.com>
Byungho An66890ed2014-03-25 12:11:07 -07009500M: Vipul Pandya <vipul.pandya@samsung.com>
9501S: Supported
9502L: netdev@vger.kernel.org
9503F: drivers/net/ethernet/samsung/sxgbe/
9504
Lukasz Majewski93c537a2015-02-24 16:31:28 +01009505SAMSUNG THERMAL DRIVER
9506M: Lukasz Majewski <l.majewski@samsung.com>
9507L: linux-pm@vger.kernel.org
9508L: linux-samsung-soc@vger.kernel.org
9509S: Supported
Fengguang Wu9f273c22016-01-20 15:03:25 -08009510T: git https://github.com/lmajewski/linux-samsung-thermal.git
Lukasz Majewski93c537a2015-02-24 16:31:28 +01009511F: drivers/thermal/samsung/
9512
Kamil Debskie296cd32014-08-21 11:33:37 +02009513SAMSUNG USB2 PHY DRIVER
9514M: Kamil Debski <k.debski@samsung.com>
9515L: linux-kernel@vger.kernel.org
9516S: Supported
9517F: Documentation/devicetree/bindings/phy/samsung-phy.txt
9518F: Documentation/phy/samsung-usb2.txt
9519F: drivers/phy/phy-exynos4210-usb2.c
9520F: drivers/phy/phy-exynos4x12-usb2.c
9521F: drivers/phy/phy-exynos5250-usb2.c
9522F: drivers/phy/phy-s5pv210-usb2.c
9523F: drivers/phy/phy-samsung-usb2.c
9524F: drivers/phy/phy-samsung-usb2.h
9525
Alan Coxca749e22011-03-18 13:56:14 +00009526SERIAL DRIVERS
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08009527M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Alan Coxca749e22011-03-18 13:56:14 +00009528L: linux-serial@vger.kernel.org
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08009529S: Maintained
Joe Perches14430812013-09-11 14:23:50 -07009530F: drivers/tty/serial/
Alan Coxca749e22011-03-18 13:56:14 +00009531
Viresh Kumaraecb7b62011-05-24 14:04:09 +05309532SYNOPSYS DESIGNWARE DMAC DRIVER
Viresh Kumarda899472015-07-17 16:23:50 -07009533M: Viresh Kumar <vireshk@kernel.org>
Viresh Kumar337ae472013-07-19 09:13:58 +05309534M: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05309535S: Maintained
Andy Shevchenko1fb200d2015-01-19 18:23:06 +02009536F: include/linux/dma/dw.h
Andy Shevchenko3d598f42014-08-19 20:29:12 +03009537F: include/linux/platform_data/dma-dw.h
Andy Shevchenko61a76492013-06-05 15:26:44 +03009538F: drivers/dma/dw/
Viresh Kumaraecb7b62011-05-24 14:04:09 +05309539
Lars Persson058999c2015-07-28 12:01:50 +02009540SYNOPSYS DESIGNWARE ETHERNET QOS 4.10a driver
9541M: Lars Persson <lars.persson@axis.com>
9542L: netdev@vger.kernel.org
9543S: Supported
9544F: Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt
9545F: drivers/net/ethernet/synopsys/dwc_eth_qos.c
9546
Wolfram Sangfc531d92015-10-15 15:50:15 +02009547SYNOPSYS DESIGNWARE I2C DRIVER
9548M: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9549M: Jarkko Nikula <jarkko.nikula@linux.intel.com>
9550M: Mika Westerberg <mika.westerberg@linux.intel.com>
9551L: linux-i2c@vger.kernel.org
9552S: Maintained
9553F: drivers/i2c/busses/i2c-designware-*
9554F: include/linux/platform_data/i2c-designware.h
9555
Seungwon Jeonf9e37132013-01-17 21:33:23 +09009556SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
Seungwon Jeonf9e37132013-01-17 21:33:23 +09009557M: Jaehoon Chung <jh80.chung@samsung.com>
9558L: linux-mmc@vger.kernel.org
9559S: Maintained
9560F: include/linux/mmc/dw_mmc.h
9561F: drivers/mmc/host/dw_mmc*
9562
Alexander Shishkina961e692015-09-22 15:47:11 +03009563SYSTEM TRACE MODULE CLASS
9564M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
9565S: Maintained
9566F: Documentation/trace/stm.txt
9567F: drivers/hwtracing/stm/
9568F: include/linux/stm.h
9569F: include/uapi/linux/stm.h
9570
Andreas Noever1db121d2014-07-10 18:58:04 +02009571THUNDERBOLT DRIVER
9572M: Andreas Noever <andreas.noever@gmail.com>
9573S: Maintained
9574F: drivers/thunderbolt/
9575
John Stultz34db37c2015-11-13 13:07:31 -08009576TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
John Stultz50363732012-12-13 13:08:47 -05009577M: John Stultz <john.stultz@linaro.org>
Thomas Gleixner88606e82010-12-14 21:37:13 +01009578M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar981c3a42014-01-21 10:59:20 +01009579L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01009580T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01009581S: Supported
9582F: include/linux/clocksource.h
9583F: include/linux/time.h
9584F: include/linux/timex.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009585F: include/uapi/linux/time.h
9586F: include/uapi/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01009587F: kernel/time/clocksource.c
9588F: kernel/time/time*.c
John Stultz34db37c2015-11-13 13:07:31 -08009589F: kernel/time/alarmtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01009590F: kernel/time/ntp.c
John Stultz7fe5f1c2015-03-11 17:40:15 -07009591F: tools/testing/selftests/timers/
Thomas Gleixner88606e82010-12-14 21:37:13 +01009592
Linus Torvalds1da177e2005-04-16 15:20:36 -07009593SC1200 WDT DRIVER
Jean Delvareb3006452013-11-12 15:08:56 -08009594M: Zwane Mwaikambo <zwanem@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009595S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009596F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07009597
9598SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01009599M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07009600M: Peter Zijlstra <peterz@infradead.org>
Ingo Molnar981c3a42014-01-21 10:59:20 +01009601L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01009602T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07009603S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09009604F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07009605F: include/linux/sched.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009606F: include/uapi/linux/sched.h
Peter Zijlstrac2eb5052013-10-02 11:49:47 +02009607F: include/linux/wait.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009608
Chen Liqin6bcf6732009-06-13 15:24:33 +08009609SCORE ARCHITECTURE
Lennox Wued386652013-09-26 01:41:22 +08009610M: Chen Liqin <liqin.linux@gmail.com>
Joe Perchesa2681a72009-10-26 16:49:43 -07009611M: Lennox Wu <lennox.wu@gmail.com>
Lennox Wued386652013-09-26 01:41:22 +08009612W: http://www.sunplus.com
Chen Liqin6bcf6732009-06-13 15:24:33 +08009613S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07009614F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08009615
Sudeep Holla80f390e2015-05-14 11:26:11 +01009616SYSTEM CONTROL & POWER INTERFACE (SCPI) Message Protocol drivers
9617M: Sudeep Holla <sudeep.holla@arm.com>
9618L: linux-arm-kernel@lists.infradead.org
9619S: Maintained
9620F: Documentation/devicetree/bindings/arm/arm,scpi.txt
Sudeep Hollacd52c2a2015-03-30 10:59:52 +01009621F: drivers/clk/clk-scpi.c
Sudeep Holla8def3102015-03-30 10:59:52 +01009622F: drivers/cpufreq/scpi-cpufreq.c
Sudeep Holla8cb7cf52015-03-30 10:59:52 +01009623F: drivers/firmware/arm_scpi.c
9624F: include/linux/scpi_protocol.h
Sudeep Holla80f390e2015-05-14 11:26:11 +01009625
Linus Torvalds1da177e2005-04-16 15:20:36 -07009626SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009627M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009628L: linux-scsi@vger.kernel.org
9629W: http://www.kernel.dk
9630S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009631F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009632
Roland Dreierfb50a832010-10-07 09:54:53 -07009633SCSI RDMA PROTOCOL (SRP) INITIATOR
Bart Van Assche3453bddb2015-02-06 15:27:56 +01009634M: Bart Van Assche <bart.vanassche@sandisk.com>
Roland Dreierfb50a832010-10-07 09:54:53 -07009635L: linux-rdma@vger.kernel.org
9636S: Supported
9637W: http://www.openfabrics.org
9638Q: http://patchwork.kernel.org/project/linux-rdma/list/
9639T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
9640F: drivers/infiniband/ulp/srp/
9641F: include/scsi/srp.h
9642
Linus Torvalds1da177e2005-04-16 15:20:36 -07009643SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009644M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009645L: linux-scsi@vger.kernel.org
Douglas Gilbert59ab3c92013-10-31 09:10:46 -04009646W: http://sg.danny.cz/sg
Linus Torvalds1da177e2005-04-16 15:20:36 -07009647S: Maintained
Douglas Gilbert59ab3c92013-10-31 09:10:46 -04009648F: Documentation/scsi/scsi-generic.txt
Joe Perches679655d2009-04-07 20:44:32 -07009649F: drivers/scsi/sg.c
9650F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009651
9652SCSI SUBSYSTEM
James Bottomley0351b8f2015-04-01 09:09:36 +00009653M: "James E.J. Bottomley" <JBottomley@odin.com>
James Bottomley0351b8f2015-04-01 09:09:36 +00009654T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
Martin K. Petersenf4ab4212015-11-13 16:46:49 -05009655M: "Martin K. Petersen" <martin.petersen@oracle.com>
9656T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
9657L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07009658S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009659F: drivers/scsi/
9660F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009661
9662SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009663M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009664L: linux-scsi@vger.kernel.org
9665S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009666F: Documentation/scsi/st.txt
Jean Delvaref7269cf2013-07-03 15:05:08 -07009667F: drivers/scsi/st.*
9668F: drivers/scsi/st_*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009669
9670SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00009671M: Vlad Yasevich <vyasevich@gmail.com>
Neil Horman02c38d02012-10-24 09:26:51 +00009672M: Neil Horman <nhorman@tuxdriver.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07009673L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07009674W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00009675S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009676F: Documentation/networking/sctp.txt
9677F: include/linux/sctp.h
Daniel Borkmann4d58c022013-07-23 14:51:48 +02009678F: include/uapi/linux/sctp.h
Joe Perches679655d2009-04-07 20:44:32 -07009679F: include/net/sctp/
9680F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009681
9682SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07009683M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07009684S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07009685F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07009686F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07009687F: drivers/watchdog/scx200_wdt.c
9688F: drivers/i2c/busses/scx200*
9689F: drivers/mtd/maps/scx200_docflash.c
9690F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07009691
9692SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009693M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07009694S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009695F: drivers/char/scx200_gpio.c
9696F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07009697
9698SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009699M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07009700S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009701F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07009702
Sascha Sommer6a369132008-07-15 14:21:29 +02009703SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009704M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02009705L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
9706S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009707F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02009708
Randy Dunlape7839f22008-10-12 16:11:45 -07009709SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Joe Perches7a241d62009-10-26 16:49:42 -07009710L: linux-mmc@vger.kernel.org
Ulf Hanssona1cb1d12015-03-13 13:39:03 +01009711S: Orphan
Joe Perches7a241d62009-10-26 16:49:42 -07009712F: drivers/mmc/host/sdhci.*
Joe Perchesd4a45782012-01-10 15:08:54 -08009713F: drivers/mmc/host/sdhci-pltfm.[ch]
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009714
Kees Cookc04f9d62014-07-18 11:28:33 -07009715SECURE COMPUTING
9716M: Kees Cook <keescook@chromium.org>
Kees Cooka0cfd752014-08-12 15:41:17 -07009717R: Andy Lutomirski <luto@amacapital.net>
9718R: Will Drewry <wad@chromium.org>
Kees Cookc04f9d62014-07-18 11:28:33 -07009719T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
9720S: Supported
9721F: kernel/seccomp.c
9722F: include/uapi/linux/seccomp.h
9723F: include/linux/seccomp.h
Kees Cookc99ee512015-06-16 10:54:14 -07009724F: tools/testing/selftests/seccomp/*
Kees Cookc04f9d62014-07-18 11:28:33 -07009725K: \bsecure_computing
9726K: \bTIF_SECCOMP\b
9727
Ben Dooks0d1bb412009-06-14 13:52:37 +01009728SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009729M: Ben Dooks <ben-linux@fluff.org>
Ulf Hanssondc524882015-03-20 10:15:29 +01009730M: Jaehoon Chung <jh80.chung@samsung.com>
Joe Perches7a241d62009-10-26 16:49:42 -07009731L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01009732S: Maintained
Ulf Hanssondc524882015-03-20 10:15:29 +01009733F: drivers/mmc/host/sdhci-s3c*
Ben Dooks0d1bb412009-06-14 13:52:37 +01009734
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07009735SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Viresh Kumarda899472015-07-17 16:23:50 -07009736M: Viresh Kumar <vireshk@kernel.org>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07009737L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07009738L: linux-mmc@vger.kernel.org
9739S: Maintained
9740F: drivers/mmc/host/sdhci-spear.c
9741
James Morris8711cca2008-12-04 03:19:45 +11009742SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11009743M: James Morris <james.l.morris@oracle.com>
Joe Perches9c3646d2015-06-25 15:02:00 -07009744M: "Serge E. Hallyn" <serge@hallyn.com>
James Morris8711cca2008-12-04 03:19:45 +11009745L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11009746T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10009747W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11009748S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07009749F: security/
James Morris8711cca2008-12-04 03:19:45 +11009750
Linus Torvalds1da177e2005-04-16 15:20:36 -07009751SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07009752M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009753S: Supported
9754
9755SELINUX SECURITY MODULE
Paul Moore5a5f2ac2013-09-18 13:14:04 -04009756M: Paul Moore <paul@paul-moore.com>
Paul Mooree0238b42014-02-06 07:51:54 -05009757M: Stephen Smalley <sds@tycho.nsa.gov>
9758M: Eric Paris <eparis@parisplace.org>
9759L: selinux@tycho.nsa.gov (moderated for non-subscribers)
Stephen Smalleyf0589252008-09-11 09:20:26 -04009760W: http://selinuxproject.org
Paul Moore5a5f2ac2013-09-18 13:14:04 -04009761T: git git://git.infradead.org/users/pcmoore/selinux
Linus Torvalds1da177e2005-04-16 15:20:36 -07009762S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009763F: include/linux/selinux*
9764F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04009765F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009766
John Johansenc1c124e2010-07-29 14:48:09 -07009767APPARMOR SECURITY MODULE
9768M: John Johansen <john.johansen@canonical.com>
9769L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
9770W: apparmor.wiki.kernel.org
9771T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
9772S: Supported
9773F: security/apparmor/
9774
Kees Cook730daa12015-07-23 18:02:48 -07009775YAMA SECURITY MODULE
9776M: Kees Cook <keescook@chromium.org>
9777T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
9778S: Supported
9779F: security/yama/
9780
Jiri Slabycef2cf02007-05-08 00:31:45 -07009781SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07009782M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07009783S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009784F: drivers/misc/phantom.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009785F: include/uapi/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07009786
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05309787SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Minh Tran4627de92015-05-14 23:16:17 -07009788M: Jayamohan Kallickal <jayamohan.kallickal@avagotech.com>
Ketan Mukadam9d27e212015-07-04 04:12:23 +05309789M: Ketan Mukadam <ketan.mukadam@avagotech.com>
9790M: John Soni Jose <sony.john@avagotech.com>
Joe Perches3387f652009-11-11 14:26:11 -08009791L: linux-scsi@vger.kernel.org
Minh Tran4627de92015-05-14 23:16:17 -07009792W: http://www.avagotech.com
Joe Perches3387f652009-11-11 14:26:11 -08009793S: Supported
9794F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05309795
Sathya Perla6938f852015-05-12 02:13:50 -04009796Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER
9797M: Sathya Perla <sathya.perla@avagotech.com>
9798M: Ajit Khaparde <ajit.khaparde@avagotech.com>
9799M: Padmanabh Ratnakar <padmanabh.ratnakar@avagotech.com>
9800M: Sriharsha Basavapatna <sriharsha.basavapatna@avagotech.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07009801L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08009802W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07009803S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07009804F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07009805
Selvin Xavierd2928a82015-03-15 00:09:41 +05309806EMULEX ONECONNECT ROCE DRIVER
Laurent Navet2b8e7332015-06-30 14:59:33 -07009807M: Selvin Xavier <selvin.xavier@avagotech.com>
9808M: Devesh Sharma <devesh.sharma@avagotech.com>
9809M: Mitesh Ahuja <mitesh.ahuja@avagotech.com>
Selvin Xavierd2928a82015-03-15 00:09:41 +05309810L: linux-rdma@vger.kernel.org
9811W: http://www.emulex.com
9812S: Supported
9813F: drivers/infiniband/hw/ocrdma/
9814
Ben Hutchings8ceee662008-04-27 12:55:59 +01009815SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00009816M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Shradha Shah8533ccf2014-01-23 13:19:55 +00009817M: Shradha Shah <sshah@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +00009818L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01009819S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07009820F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01009821
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009822SGI GRU DRIVER
Bjorn Helgaascc883af2013-01-29 15:48:37 -07009823M: Dimitri Sivanich <sivanich@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009824S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009825F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009826
9827SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009828M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009829L: linux-ia64@vger.kernel.org
9830S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009831F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08009832F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07009833F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009834
Jack Steiner75312612008-08-15 00:40:42 -07009835SGI XP/XPC/XPNET DRIVER
Robin Holte1803832013-08-16 18:01:42 -05009836M: Cliff Whickman <cpw@sgi.com>
9837M: Robin Holt <robinmholt@gmail.com>
Jack Steiner75312612008-08-15 00:40:42 -07009838S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009839F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07009840
Antti Palosaari46eacf32014-04-15 06:21:03 -03009841SI2157 MEDIA DRIVER
9842M: Antti Palosaari <crope@iki.fi>
9843L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009844W: https://linuxtv.org
Antti Palosaari46eacf32014-04-15 06:21:03 -03009845W: http://palosaari.fi/linux/
9846Q: http://patchwork.linuxtv.org/project/linux-media/list/
9847T: git git://linuxtv.org/anttip/media_tree.git
9848S: Maintained
9849F: drivers/media/tuners/si2157*
9850
Antti Palosaari75e2d5b2014-04-15 06:17:53 -03009851SI2168 MEDIA DRIVER
9852M: Antti Palosaari <crope@iki.fi>
9853L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009854W: https://linuxtv.org
Antti Palosaari75e2d5b2014-04-15 06:17:53 -03009855W: http://palosaari.fi/linux/
9856Q: http://patchwork.linuxtv.org/project/linux-media/list/
9857T: git git://linuxtv.org/anttip/media_tree.git
9858S: Maintained
9859F: drivers/media/dvb-frontends/si2168*
9860
Hans Verkuil49cc6292012-11-30 07:13:29 -03009861SI470X FM RADIO RECEIVER I2C DRIVER
9862M: Hans Verkuil <hverkuil@xs4all.nl>
9863L: linux-media@vger.kernel.org
9864T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009865W: https://linuxtv.org
Hans Verkuil49cc6292012-11-30 07:13:29 -03009866S: Odd Fixes
9867F: drivers/media/radio/si470x/radio-si470x-i2c.c
9868
9869SI470X FM RADIO RECEIVER USB DRIVER
9870M: Hans Verkuil <hverkuil@xs4all.nl>
9871L: linux-media@vger.kernel.org
9872T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009873W: https://linuxtv.org
Hans Verkuil49cc6292012-11-30 07:13:29 -03009874S: Maintained
9875F: drivers/media/radio/si470x/radio-si470x-common.c
9876F: drivers/media/radio/si470x/radio-si470x.h
9877F: drivers/media/radio/si470x/radio-si470x-usb.c
9878
Eduardo Valentinc937ca02013-02-27 10:37:39 -03009879SI4713 FM RADIO TRANSMITTER I2C DRIVER
9880M: Eduardo Valentin <edubezval@gmail.com>
9881L: linux-media@vger.kernel.org
9882T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009883W: https://linuxtv.org
Eduardo Valentinc937ca02013-02-27 10:37:39 -03009884S: Odd Fixes
Dinesh Ram99995de2013-10-15 12:24:43 -03009885F: drivers/media/radio/si4713/si4713.?
Eduardo Valentinc937ca02013-02-27 10:37:39 -03009886
9887SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
9888M: Eduardo Valentin <edubezval@gmail.com>
9889L: linux-media@vger.kernel.org
9890T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009891W: https://linuxtv.org
Eduardo Valentinc937ca02013-02-27 10:37:39 -03009892S: Odd Fixes
Dinesh Ram99995de2013-10-15 12:24:43 -03009893F: drivers/media/radio/si4713/radio-platform-si4713.c
9894
9895SI4713 FM RADIO TRANSMITTER USB DRIVER
9896M: Hans Verkuil <hverkuil@xs4all.nl>
9897L: linux-media@vger.kernel.org
9898T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009899W: https://linuxtv.org
Dinesh Ram99995de2013-10-15 12:24:43 -03009900S: Maintained
9901F: drivers/media/radio/si4713/radio-usb-si4713.c
Eduardo Valentinc937ca02013-02-27 10:37:39 -03009902
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03009903SIANO DVB DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02009904M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03009905L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009906W: https://linuxtv.org
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03009907T: git git://linuxtv.org/media_tree.git
9908S: Odd fixes
9909F: drivers/media/common/siano/
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03009910F: drivers/media/usb/siano/
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03009911F: drivers/media/usb/siano/
Joe Perches14430812013-09-11 14:23:50 -07009912F: drivers/media/mmc/siano/
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03009913
Hans de Goede6f15b602014-11-14 13:26:46 +01009914SIMPLEFB FB DRIVER
9915M: Hans de Goede <hdegoede@redhat.com>
9916L: linux-fbdev@vger.kernel.org
9917S: Maintained
Rob Herring2d799dd2015-11-05 13:40:40 -06009918F: Documentation/devicetree/bindings/display/simple-framebuffer.txt
Hans de Goede6f15b602014-11-14 13:26:46 +01009919F: drivers/video/fbdev/simplefb.c
9920F: include/linux/platform_data/simplefb.h
9921
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03009922SH_VEU V4L2 MEM2MEM DRIVER
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03009923L: linux-media@vger.kernel.org
Guennadi Liakhovetskibb60fcb2013-11-24 17:44:08 -03009924S: Orphan
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03009925F: drivers/media/platform/sh_veu.c
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03009926
9927SH_VOU V4L2 OUTPUT DRIVER
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03009928L: linux-media@vger.kernel.org
Guennadi Liakhovetskibb60fcb2013-11-24 17:44:08 -03009929S: Orphan
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03009930F: drivers/media/platform/sh_vou.c
Mauro Carvalho Chehabd647f0b2015-11-13 19:40:07 -02009931F: include/media/drv-intf/sh_vou.h
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03009932
Len Brown6349d992009-08-14 15:07:14 -04009933SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07009934M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04009935L: sfi-devel@simplefirmware.org
9936W: http://simplefirmware.org/
9937T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009938S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07009939F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04009940F: drivers/sfi/
9941F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009942
Linus Torvalds1da177e2005-04-16 15:20:36 -07009943SIMTEC EB110ATX (Chalice CATS)
9944P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08009945P: Vincent Sanders <vince@simtec.co.uk>
9946M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009947W: http://www.simtec.co.uk/products/EB110ATX/
9948S: Supported
9949
9950SIMTEC EB2410ITX (BAST)
9951P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08009952P: Vincent Sanders <vince@simtec.co.uk>
9953M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009954W: http://www.simtec.co.uk/products/EB2410ITX/
9955S: Supported
Joe Perches15dba382013-09-11 14:23:36 -07009956F: arch/arm/mach-s3c24xx/mach-bast.c
9957F: arch/arm/mach-s3c24xx/bast-ide.c
9958F: arch/arm/mach-s3c24xx/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07009959
Kevin Hilman4c5adde2009-06-19 12:02:33 -07009960TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08009961M: Sekhar Nori <nsekhar@ti.com>
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08009962M: Kevin Hilman <khilman@deeprootsystems.com>
Sekhar Noric9f46a82012-01-27 21:12:20 +05309963T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -08009964Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07009965S: Supported
Joe Perches14430812013-09-11 14:23:50 -07009966F: arch/arm/mach-davinci/
Jean Delvare046d0a32012-01-12 20:32:05 +01009967F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -07009968
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03009969TI DAVINCI SERIES MEDIA DRIVER
Joe Perchese43cdb52015-06-25 15:02:03 -07009970M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03009971L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009972W: https://linuxtv.org
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03009973Q: http://patchwork.linuxtv.org/project/linux-media/list/
9974T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
Lad, Prabhakar9ce5eca2013-04-15 01:32:44 -03009975S: Maintained
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03009976F: drivers/media/platform/davinci/
9977F: include/media/davinci/
9978
Benoit Parrot417d2e52014-12-09 16:43:44 -03009979TI AM437X VPFE DRIVER
Joe Perchese43cdb52015-06-25 15:02:03 -07009980M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
Benoit Parrot417d2e52014-12-09 16:43:44 -03009981L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009982W: https://linuxtv.org
Benoit Parrot417d2e52014-12-09 16:43:44 -03009983Q: http://patchwork.linuxtv.org/project/linux-media/list/
9984T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9985S: Maintained
9986F: drivers/media/platform/am437x/
9987
Benoit Parrotc4c02832015-03-20 18:03:52 -03009988OV2659 OMNIVISION SENSOR DRIVER
Joe Perchese43cdb52015-06-25 15:02:03 -07009989M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
Benoit Parrotc4c02832015-03-20 18:03:52 -03009990L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009991W: https://linuxtv.org
Benoit Parrotc4c02832015-03-20 18:03:52 -03009992Q: http://patchwork.linuxtv.org/project/linux-media/list/
9993T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9994S: Maintained
9995F: drivers/media/i2c/ov2659.c
Mauro Carvalho Chehabb5dcee22015-11-10 12:01:44 -02009996F: include/media/i2c/ov2659.h
Benoit Parrotc4c02832015-03-20 18:03:52 -03009997
Sudip Mukherjee3a6779f2015-08-07 18:31:15 +05309998SILICON MOTION SM712 FRAME BUFFER DRIVER
9999M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10000M: Teddy Wang <teddy.wang@siliconmotion.com>
10001M: Sudip Mukherjee <sudip@vectorindia.org>
10002L: linux-fbdev@vger.kernel.org
10003S: Maintained
10004F: drivers/video/fbdev/sm712*
10005F: Documentation/fb/sm712fb.txt
10006
Francois Romieu92aab3c2005-07-30 13:11:18 +020010007SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010008M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +020010009L: netdev@vger.kernel.org
10010S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -070010011F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +020010012
Linus Torvalds1da177e2005-04-16 15:20:36 -070010013SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010014M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010015W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -070010016L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070010017S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -070010018F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010019
10020SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010021M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010022W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -030010023S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010024F: Documentation/fb/sisfb.txt
Jingoo Han8a61f012014-07-01 15:36:01 +090010025F: drivers/video/fbdev/sis/
Joe Perches679655d2009-04-07 20:44:32 -070010026F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070010027
10028SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010029M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010030W: http://www.winischhofer.at/linuxsisusbvga.shtml
10031S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010032F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010033
Christoph Lameter415ad262007-07-26 10:40:56 -070010034SLAB ALLOCATOR
Christoph Lameter16e943b2014-06-23 13:22:03 -070010035M: Christoph Lameter <cl@linux.com>
Pekka Enberg2ed1c522011-01-15 13:30:04 +020010036M: Pekka Enberg <penberg@kernel.org>
Christoph Lameter16e943b2014-06-23 13:22:03 -070010037M: David Rientjes <rientjes@google.com>
10038M: Joonsoo Kim <iamjoonsoo.kim@lge.com>
10039M: Andrew Morton <akpm@linux-foundation.org>
Christoph Lameter415ad262007-07-26 10:40:56 -070010040L: linux-mm@kvack.org
10041S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010042F: include/linux/sl?b*.h
Christoph Lameter16e943b2014-06-23 13:22:03 -070010043F: mm/sl?b*
Christoph Lameter415ad262007-07-26 10:40:56 -070010044
Paul E. McKenney9fab97872012-05-07 09:36:34 -070010045SLEEPABLE READ-COPY UPDATE (SRCU)
Lai Jiangshan96a39bc2015-07-01 15:26:27 +080010046M: Lai Jiangshan <jiangshanlai@gmail.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -070010047M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyab0afd62014-06-03 08:17:06 -070010048M: Josh Triplett <josh@joshtriplett.org>
Paul E. McKenney4632a192014-05-30 15:37:24 -070010049R: Steven Rostedt <rostedt@goodmis.org>
10050R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +010010051L: linux-kernel@vger.kernel.org
Paul E. McKenney9fab97872012-05-07 09:36:34 -070010052W: http://www.rdrop.com/users/paulmck/RCU/
10053S: Supported
10054T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenney4102ada2013-10-08 20:23:47 -070010055F: include/linux/srcu.h
10056F: kernel/rcu/srcu.c
Paul E. McKenney9fab97872012-05-07 09:36:34 -070010057
Casey Schaufler66372842012-05-23 18:34:52 -070010058SMACK SECURITY MODULE
10059M: Casey Schaufler <casey@schaufler-ca.com>
10060L: linux-security-module@vger.kernel.org
10061W: http://schaufler-ca.com
10062T: git git://git.gitorious.org/smack-next/kernel.git
10063S: Maintained
10064F: Documentation/security/Smack.txt
10065F: security/smack/
10066
Kevin Hilman20651e02014-09-24 16:30:00 -070010067DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
Kevin Hilman68ace3e2013-08-06 16:57:14 -070010068M: Kevin Hilman <khilman@kernel.org>
10069M: Nishanth Menon <nm@ti.com>
10070S: Maintained
Kevin Hilman20651e02014-09-24 16:30:00 -070010071F: drivers/power/avs/
Kevin Hilman68ace3e2013-08-06 16:57:14 -070010072F: include/linux/power/smartreflex.h
10073L: linux-pm@vger.kernel.org
10074
Linus Torvalds1da177e2005-04-16 15:20:36 -070010075SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -040010076M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -040010077S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -070010078F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010079
Sakari Ailuse8e31622012-11-12 18:14:39 -030010080SMIA AND SMIA++ IMAGE SENSOR DRIVER
10081M: Sakari Ailus <sakari.ailus@iki.fi>
10082L: linux-media@vger.kernel.org
10083S: Maintained
Joe Perches14430812013-09-11 14:23:50 -070010084F: drivers/media/i2c/smiapp/
Mauro Carvalho Chehabb5dcee22015-11-10 12:01:44 -020010085F: include/media/i2c/smiapp.h
Sakari Ailuse8e31622012-11-12 18:14:39 -030010086F: drivers/media/i2c/smiapp-pll.c
10087F: drivers/media/i2c/smiapp-pll.h
Sakari Ailusfd2bfdc2014-11-16 12:08:44 -030010088F: include/uapi/linux/smiapp.h
Sakari Ailusa2cec3c2014-11-06 18:16:13 -030010089F: Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
Sakari Ailuse8e31622012-11-12 18:14:39 -030010090
Guenter Roeck920fa1f2010-08-09 17:21:06 -070010091SMM665 HARDWARE MONITOR DRIVER
10092M: Guenter Roeck <linux@roeck-us.net>
10093L: lm-sensors@lm-sensors.org
10094S: Maintained
10095F: Documentation/hwmon/smm665
10096F: drivers/hwmon/smm665.c
10097
Steve Glendinning9df73052010-08-14 21:08:54 +020010098SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +010010099M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning9df73052010-08-14 21:08:54 +020010100L: lm-sensors@lm-sensors.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +010010101S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +020010102F: Documentation/hwmon/emc2103
10103F: drivers/hwmon/emc2103.c
10104
Hans de Goedea98d5062011-03-21 17:59:36 +010010105SMSC SCH5627 HARDWARE MONITOR DRIVER
10106M: Hans de Goede <hdegoede@redhat.com>
10107L: lm-sensors@lm-sensors.org
10108S: Supported
10109F: Documentation/hwmon/sch5627
10110F: drivers/hwmon/sch5627.c
10111
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -040010112SMSC47B397 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -070010113M: Jean Delvare <jdelvare@suse.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -040010114L: lm-sensors@lm-sensors.org
10115S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010116F: Documentation/hwmon/smsc47b397
10117F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -040010118
Steve Glendinningfd9abb32008-11-05 00:35:37 +000010119SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +010010120M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +000010121L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +010010122S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010123F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -070010124F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +000010125
Steve Glendinning2cb37722008-12-11 20:54:30 -080010126SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +010010127M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -080010128L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +010010129S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -070010130F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -080010131
Steve Glendinning3c8a63e2011-08-18 15:20:07 +010010132SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +010010133M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +010010134L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +010010135S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +090010136F: drivers/video/fbdev/smscufx.c
Steve Glendinning3c8a63e2011-08-18 15:20:07 +010010137
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -030010138SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070010139M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -030010140L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -020010141T: git git://linuxtv.org/media_tree.git
Jean Delvare795fb7e2008-09-20 12:33:08 +020010142S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -030010143F: include/media/soc*
10144F: drivers/media/i2c/soc_camera/
10145F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -030010146
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010147SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -070010148M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010149S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010150F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010151
Joe Perchese3994db2014-07-30 00:38:42 -030010152SOFTLOGIC 6x10 MPEG CODEC
Andrey Utkin9661975d2014-11-17 13:59:23 -030010153M: Bluecherry Maintainers <maintainers@bluecherrydvr.com>
10154M: Andrey Utkin <andrey.utkin@corp.bluecherry.net>
10155M: Andrey Utkin <andrey.krieger.utkin@gmail.com>
Ismael Luceno1f141f62015-01-20 11:43:50 -030010156M: Ismael Luceno <ismael@iodev.co.uk>
Joe Perchese3994db2014-07-30 00:38:42 -030010157L: linux-media@vger.kernel.org
10158S: Supported
10159F: drivers/media/pci/solo6x10/
10160
Linus Torvalds1da177e2005-04-16 15:20:36 -070010161SOFTWARE RAID (Multiple Disks) SUPPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -070010162L: linux-raid@vger.kernel.org
Fengguang Wu9f273c22016-01-20 15:03:25 -080010163T: git git://neil.brown.name/md
NeilBrown524418b2007-01-26 00:57:01 -080010164S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010165F: drivers/md/
10166F: include/linux/raid/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010167F: include/uapi/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010168
Linus Torvalds1da177e2005-04-16 15:20:36 -070010169SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010170M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -070010171L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070010172S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -070010173F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010174
Michael Buesch61e115a2007-09-18 15:12:50 -040010175SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +020010176M: Michael Buesch <m@bues.ch>
Michael Büsche7828b22016-01-18 17:53:03 +010010177L: linux-wireless@vger.kernel.org
Michael Buesch61e115a2007-09-18 15:12:50 -040010178S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010179F: drivers/ssb/
10180F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -040010181
Linus Torvalds1da177e2005-04-16 15:20:36 -070010182SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010183M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd09448532010-02-11 10:40:13 -050010184L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +010010185W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -070010186S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010187F: Documentation/laptops/sony-laptop.txt
10188F: drivers/char/sonypi.c
10189F: drivers/platform/x86/sony-laptop.c
10190F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070010191
Alex Dubovbaf85322008-02-09 10:20:54 -080010192SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -070010193M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -080010194W: http://tifmxx.berlios.de/
10195S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010196F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -080010197
Maxim Levitsky0ab30492013-09-11 14:26:02 -070010198SONY MEMORYSTICK STANDARD SUPPORT
10199M: Maxim Levitsky <maximlevitsky@gmail.com>
10200S: Maintained
10201F: drivers/memstick/core/ms_block.*
10202
Linus Torvalds1da177e2005-04-16 15:20:36 -070010203SOUND
Joe Perches8b58be82009-07-29 15:04:30 -070010204M: Jaroslav Kysela <perex@perex.cz>
Jiri Slabyd8130622015-07-17 16:23:20 -070010205M: Takashi Iwai <tiwai@suse.com>
Joe Perches93711662009-06-16 15:34:07 -070010206L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -070010207W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +020010208T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -070010209T: git git://git.alsa-project.org/alsa-kernel.git
Takashi Iwaiff4a8f32014-05-13 14:55:51 +020010210Q: http://patchwork.kernel.org/project/alsa-devel/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010211S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -070010212F: Documentation/sound/
10213F: include/sound/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010214F: include/uapi/sound/
Joe Perches679655d2009-04-07 20:44:32 -070010215F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010216
Mark Brown33bbe142013-08-09 18:10:50 +010010217SOUND - COMPRESSED AUDIO
10218M: Vinod Koul <vinod.koul@intel.com>
10219L: alsa-devel@alsa-project.org (moderated for non-subscribers)
10220T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
10221S: Supported
Vinod Koulf672f312013-08-12 11:15:27 +053010222F: Documentation/sound/alsa/compress_offload.txt
Mark Brown33bbe142013-08-09 18:10:50 +010010223F: include/sound/compress_driver.h
Vinod Koulf672f312013-08-12 11:15:27 +053010224F: include/uapi/sound/compress_*
Mark Brown33bbe142013-08-09 18:10:50 +010010225F: sound/core/compress_offload.c
10226F: sound/soc/soc-compress.c
10227
Mark Brownbd903bd2008-11-19 19:16:05 +000010228SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood6b9cf5c2013-01-15 15:13:27 +000010229M: Liam Girdwood <lgirdwood@gmail.com>
Mark Brownb02e48f2013-04-12 11:39:57 +010010230M: Mark Brown <broonie@kernel.org>
Mark Brown86f14df2011-11-02 21:36:32 +000010231T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -070010232L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +010010233W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +020010234S: Supported
Mark Brown2820f612013-08-11 19:35:11 +010010235F: Documentation/sound/alsa/soc/
Joe Perches679655d2009-04-07 20:44:32 -070010236F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +010010237F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +020010238
Mark Brownd7f87612013-10-19 14:33:54 +010010239SOUND - DMAENGINE HELPERS
10240M: Lars-Peter Clausen <lars@metafoo.de>
10241S: Supported
10242F: include/sound/dmaengine_pcm.h
10243F: sound/core/pcm_dmaengine.c
10244F: sound/soc/soc-generic-dmaengine-pcm.c
10245
Olli Salonen990a6a92014-08-22 13:50:42 -030010246SP2 MEDIA DRIVER
10247M: Olli Salonen <olli.salonen@iki.fi>
10248L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010249W: https://linuxtv.org
Olli Salonen990a6a92014-08-22 13:50:42 -030010250Q: http://patchwork.linuxtv.org/project/linux-media/list/
10251S: Maintained
10252F: drivers/media/dvb-frontends/sp2*
10253
Sam Ravnborg473321f2009-01-04 15:47:49 -080010254SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -070010255M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010256L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -080010257Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -070010258T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
10259T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070010260S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010261F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -070010262F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010263
David S. Miller6404fcc2010-03-16 01:00:17 -070010264SPARC SERIAL DRIVERS
10265M: "David S. Miller" <davem@davemloft.net>
10266L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -070010267T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
10268T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -070010269S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -050010270F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -080010271F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -080010272F: drivers/tty/serial/sunhv.c
10273F: drivers/tty/serial/sunsab.c
10274F: drivers/tty/serial/sunsab.h
10275F: drivers/tty/serial/sunsu.c
10276F: drivers/tty/serial/sunzilog.c
10277F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -070010278
Christopher Li389325b2012-04-05 14:25:14 -070010279SPARSE CHECKER
10280M: "Christopher Li" <sparse@chrisli.org>
10281L: linux-sparse@vger.kernel.org
10282W: https://sparse.wiki.kernel.org/
10283T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
10284T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
10285S: Maintained
10286F: include/linux/compiler.h
10287
viresh kumarfc0c1952010-04-01 12:31:21 +010010288SPEAR PLATFORM SUPPORT
Viresh Kumarda899472015-07-17 16:23:50 -070010289M: Viresh Kumar <vireshk@kernel.org>
Viresh Kumar9cc23682014-04-18 15:07:16 -070010290M: Shiraz Hashim <shiraz.linux.kernel@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -070010291L: spear-devel@list.st.com
10292L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +010010293W: http://www.st.com/spear
10294S: Maintained
Joe Perches281e1922013-09-11 14:23:37 -070010295F: arch/arm/mach-spear/
viresh kumarfc0c1952010-04-01 12:31:21 +010010296
10297SPEAR CLOCK FRAMEWORK SUPPORT
Viresh Kumarda899472015-07-17 16:23:50 -070010298M: Viresh Kumar <vireshk@kernel.org>
Viresh Kumarfbfa0742012-03-15 15:17:09 -070010299L: spear-devel@list.st.com
10300L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +010010301W: http://www.st.com/spear
10302S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +053010303F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +010010304
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010305SPI SUBSYSTEM
Mark Brownb02e48f2013-04-12 11:39:57 +010010306M: Mark Brown <broonie@kernel.org>
Mark Browndfbe4032013-05-17 13:12:52 +010010307L: linux-spi@vger.kernel.org
Mark Browne7e4e132013-04-18 18:18:47 +010010308T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
Joe Perches8a6e2532010-03-05 13:43:11 -080010309Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010310S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010311F: Documentation/spi/
10312F: drivers/spi/
10313F: include/linux/spi/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010314F: include/uapi/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010315
Jim Lewis2752e4012006-09-29 02:01:19 -070010316SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -070010317M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
Jim Lewis2752e4012006-09-29 02:01:19 -070010318L: netdev@vger.kernel.org
10319S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010320F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -070010321F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e4012006-09-29 02:01:19 -070010322
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010323SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070010324M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +100010325L: linuxppc-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010326W: http://www.ibm.com/developerworks/power/cell/
10327S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010328F: Documentation/filesystems/spufs.txt
10329F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010330
Phillip Lougherfc555842009-01-05 08:46:29 +000010331SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +010010332M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +000010333L: squashfs-devel@lists.sourceforge.net (subscribers-only)
10334W: http://squashfs.org.uk
Fengguang Wu9f273c22016-01-20 15:03:25 -080010335T: git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
Phillip Lougherfc555842009-01-05 08:46:29 +000010336S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010337F: Documentation/filesystems/squashfs.txt
10338F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +000010339
Linus Torvalds1da177e2005-04-16 15:20:36 -070010340SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -070010341M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010342S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010343F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070010344
Linus Torvalds26e9a392008-10-17 09:50:12 -070010345STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -080010346M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -080010347L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -080010348S: Supported
Greg Kroah-Hartman7b175c42013-06-18 12:58:12 -070010349F: Documentation/stable_kernel_rules.txt
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010350
Linus Torvalds26e9a392008-10-17 09:50:12 -070010351STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -080010352M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -070010353T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -070010354L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -080010355S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010356F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -070010357
Joe Perchesebd3d012011-07-05 09:42:02 -070010358STAGING - COMEDI
10359M: Ian Abbott <abbotti@mev.co.uk>
Lidza Louina81b884c2013-07-24 11:29:33 -040010360M: H Hartley Sweeten <hsweeten@visionengravers.com>
Joe Perchesebd3d012011-07-05 09:42:02 -070010361S: Odd Fixes
10362F: drivers/staging/comedi/
10363
Joe Perchesa0138162011-07-05 15:21:34 -070010364STAGING - FLARION FT1000 DRIVERS
10365M: Marek Belisko <marek.belisko@gmail.com>
10366S: Odd Fixes
10367F: drivers/staging/ft1000/
10368
Joe Perches6c1bb422011-07-05 09:42:07 -070010369STAGING - INDUSTRIAL IO
Sachin Kamat030a13d2013-09-11 11:00:00 +010010370M: Jonathan Cameron <jic23@kernel.org>
Joe Perchesa0138162011-07-05 15:21:34 -070010371L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -070010372S: Odd Fixes
10373F: drivers/staging/iio/
10374
Joe Perchesa0138162011-07-05 15:21:34 -070010375STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
10376M: Jarod Wilson <jarod@wilsonet.com>
10377W: http://www.lirc.org/
10378S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -080010379F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -070010380
Oleg Drokinf5e5de12014-08-15 12:48:14 -040010381STAGING - LUSTRE PARALLEL FILESYSTEM
10382M: Oleg Drokin <oleg.drokin@intel.com>
10383M: Andreas Dilger <andreas.dilger@intel.com>
Andreas Dilgerd98229f2015-08-24 11:11:49 -040010384L: lustre-devel@lists.lustre.org (moderated for non-subscribers)
10385W: http://wiki.lustre.org/
Oleg Drokinf5e5de12014-08-15 12:48:14 -040010386S: Maintained
10387F: drivers/staging/lustre
10388
Marc Dietrich7c6b6c72011-09-27 19:00:46 +020010389STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
10390M: Marc Dietrich <marvin24@gmx.de>
10391L: ac100@lists.launchpad.net (moderated for non-subscribers)
Stephen Warren5d96bf42013-02-27 17:02:54 -080010392L: linux-tegra@vger.kernel.org
Marc Dietrich7c6b6c72011-09-27 19:00:46 +020010393S: Maintained
10394F: drivers/staging/nvec/
10395
Joe Perchesa0138162011-07-05 15:21:34 -070010396STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
Jens Frederich3140b452013-08-04 20:57:43 +020010397M: Jens Frederich <jfrederich@gmail.com>
10398M: Daniel Drake <dsd@laptop.org>
Joe Perchesa0138162011-07-05 15:21:34 -070010399M: Jon Nettleton <jon.nettleton@gmail.com>
10400W: http://wiki.laptop.org/go/DCON
Jens Frederich3140b452013-08-04 20:57:43 +020010401S: Maintained
Joe Perchesa0138162011-07-05 15:21:34 -070010402F: drivers/staging/olpc_dcon/
10403
10404STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
Joe Perches29e70172011-07-05 09:42:08 -070010405M: Willy Tarreau <willy@meta-x.org>
10406S: Odd Fixes
10407F: drivers/staging/panel/
10408
Joe Perchesa0138162011-07-05 15:21:34 -070010409STAGING - REALTEK RTL8712U DRIVERS
10410M: Larry Finger <Larry.Finger@lwfinger.net>
10411M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
10412S: Odd Fixes
10413F: drivers/staging/rtl8712/
10414
Jes Sorensen7591ba82014-04-26 18:54:48 +020010415STAGING - REALTEK RTL8723U WIRELESS DRIVER
10416M: Larry Finger <Larry.Finger@lwfinger.net>
10417M: Jes Sorensen <Jes.Sorensen@redhat.com>
10418L: linux-wireless@vger.kernel.org
10419S: Maintained
10420F: drivers/staging/rtl8723au/
10421
Sudip Mukherjee980ac4d2015-03-03 16:21:07 +053010422STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
10423M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10424M: Teddy Wang <teddy.wang@siliconmotion.com>
10425M: Sudip Mukherjee <sudip@vectorindia.org>
10426L: linux-fbdev@vger.kernel.org
10427S: Maintained
10428F: drivers/staging/sm750fb/
10429
Joe Perches510fa4082014-02-10 16:37:56 -080010430STAGING - SLICOSS
10431M: Lior Dotan <liodot@gmail.com>
10432M: Christopher Harrer <charrer@alacritech.com>
10433S: Odd Fixes
10434F: drivers/staging/slicoss/
10435
Joe Perchesa0138162011-07-05 15:21:34 -070010436STAGING - SPEAKUP CONSOLE SPEECH DRIVER
10437M: William Hubbs <w.d.hubbs@gmail.com>
10438M: Chris Brannon <chris@the-brannons.com>
William Hubbsd33bce32013-05-12 13:49:54 -050010439M: Kirk Reiser <kirk@reisers.ca>
Joe Perchesa0138162011-07-05 15:21:34 -070010440M: Samuel Thibault <samuel.thibault@ens-lyon.org>
Samuel Thibaulte6a152e2014-07-17 23:34:58 +020010441L: speakup@linux-speakup.org
Joe Perchesa0138162011-07-05 15:21:34 -070010442W: http://www.linux-speakup.org/
10443S: Odd Fixes
10444F: drivers/staging/speakup/
10445
Joe Perchesb3e871c2011-07-05 09:42:10 -070010446STAGING - VIA VT665X DRIVERS
10447M: Forest Bond <forest@alittletooquiet.net>
10448S: Odd Fixes
10449F: drivers/staging/vt665?/
10450
Johnny Kima30baec2015-05-11 14:30:57 +090010451STAGING - WILC1000 WIFI DRIVER
10452M: Johnny Kim <johnny.kim@atmel.com>
Tony Cho0c9dbce2015-10-28 17:43:27 +090010453M: Austin Shin <austin.shin@atmel.com>
Johnny Kima30baec2015-05-11 14:30:57 +090010454M: Chris Park <chris.park@atmel.com>
Tony Cho06b54862015-09-08 17:08:01 +090010455M: Tony Cho <tony.cho@atmel.com>
10456M: Glen Lee <glen.lee@atmel.com>
10457M: Leo Kim <leo.kim@atmel.com>
Johnny Kima30baec2015-05-11 14:30:57 +090010458L: linux-wireless@vger.kernel.org
10459S: Supported
10460F: drivers/staging/wilc1000/
10461
Joe Perches709bcb02011-07-05 09:42:13 -070010462STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +020010463M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -070010464S: Odd Fixes
10465F: drivers/staging/xgifb/
10466
Mike Marciniszyn77241052015-07-30 15:17:43 -040010467HFI1 DRIVER
10468M: Mike Marciniszyn <infinipath@intel.com>
10469L: linux-rdma@vger.kernel.org
10470S: Supported
10471F: drivers/staging/rdma/hfi1
10472
Linus Torvalds1da177e2005-04-16 15:20:36 -070010473STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010474M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -070010475S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -070010476F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010477
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010478SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -070010479M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010480W: http://sammy.net/sun3/
10481S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010482F: arch/m68k/kernel/*sun3*
10483F: arch/m68k/sun3*/
10484F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -070010485F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010486
Hans de Goedeaf6a5af2014-12-18 09:24:50 -080010487SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
10488M: Hans de Goede <hdegoede@redhat.com>
10489L: linux-input@vger.kernel.org
10490S: Maintained
10491F: Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
10492F: drivers/input/keyboard/sun4i-lradc-keys.c
10493
Denis Kirjanov2bc9ff02013-08-17 09:08:49 +040010494SUNDANCE NETWORK DRIVER
10495M: Denis Kirjanov <kda@linux-powerpc.org>
10496L: netdev@vger.kernel.org
10497S: Maintained
10498F: drivers/net/ethernet/dlink/sundance.c
10499
Paul Mundt2cbb12a2007-11-19 13:08:37 +090010500SUPERH
Rich Felker114bf372016-01-22 15:11:05 -080010501M: Yoshinori Sato <ysato@users.sourceforge.jp>
10502M: Rich Felker <dalias@libc.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +090010503L: linux-sh@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -080010504Q: http://patchwork.kernel.org/project/linux-sh/list/
Rich Felker114bf372016-01-22 15:11:05 -080010505S: Maintained
Paul Mundt066069e2009-04-14 06:32:08 +090010506F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -070010507F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +090010508F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010509
Randy Dunlap4480f15b2008-10-12 16:11:58 -070010510SUSPEND TO RAM
Rafael J. Wysocki7fb06082014-03-20 03:34:47 +010010511M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Joe Perches8b58be82009-07-29 15:04:30 -070010512M: Len Brown <len.brown@intel.com>
10513M: Pavel Machek <pavel@ucw.cz>
WANG Congbf1c1382011-10-08 20:57:50 +020010514L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010515S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010516F: Documentation/power/
10517F: arch/x86/kernel/acpi/
10518F: drivers/base/power/
10519F: kernel/power/
10520F: include/linux/suspend.h
10521F: include/linux/freezer.h
10522F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070010523
10524SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -070010525M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010526L: linux-video@atrey.karlin.mff.cuni.cz
10527S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010528F: Documentation/svga.txt
10529F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010530
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -070010531SWIOTLB SUBSYSTEM
10532M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10533L: linux-kernel@vger.kernel.org
Fengguang Wu9f273c22016-01-20 15:03:25 -080010534T: git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -070010535S: Supported
10536F: lib/swiotlb.c
10537F: arch/*/kernel/pci-swiotlb.c
10538F: include/linux/swiotlb.h
10539
Jiri Pirko007f7902014-11-28 14:34:17 +010010540SWITCHDEV
10541M: Jiri Pirko <jiri@resnulli.us>
10542L: netdev@vger.kernel.org
10543S: Supported
10544F: net/switchdev/
10545F: include/net/switchdev.h
10546
Vineet Guptadb8e35d2013-01-18 15:12:25 +053010547SYNOPSYS ARC ARCHITECTURE
10548M: Vineet Gupta <vgupta@synopsys.com>
Vineet Gupta30b9dbe2015-11-14 12:58:53 +053010549L: linux-snps-arc@lists.infradead.org
Vineet Guptadb8e35d2013-01-18 15:12:25 +053010550S: Supported
10551F: arch/arc/
Vineet Gupta9b288292014-11-18 17:36:11 +053010552F: Documentation/devicetree/bindings/arc/*
Rob Herring2d799dd2015-11-05 13:40:40 -060010553F: Documentation/devicetree/bindings/interrupt-controller/snps,arc*
Joe Perchesc6a0fe42013-09-11 14:23:45 -070010554F: drivers/tty/serial/arc_uart.c
Baruch Siachb7182d12015-08-11 12:08:32 +030010555T: git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
Vineet Guptadb8e35d2013-01-18 15:12:25 +053010556
Alexey Brodkin556cc1c2014-01-27 14:51:34 +010010557SYNOPSYS ARC SDP platform support
10558M: Alexey Brodkin <abrodkin@synopsys.com>
10559S: Supported
10560F: arch/arc/plat-axs10x
10561F: arch/arc/boot/dts/ax*
10562F: Documentation/devicetree/bindings/arc/axs10*
10563
Lee Jones6c284c92015-05-12 14:13:58 +010010564SYSTEM CONFIGURATION (SYSCON)
10565M: Lee Jones <lee.jones@linaro.org>
10566M: Arnd Bergmann <arnd@arndb.de>
10567T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
10568S: Supported
10569F: drivers/mfd/syscon.c
10570
Linus Torvalds1da177e2005-04-16 15:20:36 -070010571SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070010572M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010573S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010574F: Documentation/filesystems/sysv-fs.txt
10575F: fs/sysv/
10576F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070010577
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -070010578TARGET SUBSYSTEM
Joe Perches9c3646d2015-06-25 15:02:00 -070010579M: "Nicholas A. Bellinger" <nab@linux-iscsi.org>
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -070010580L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +000010581L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -070010582W: http://www.linux-iscsi.org
Joe Perchescf015e92014-02-25 15:01:47 -080010583W: http://groups.google.com/group/linux-iscsi-target-dev
Nicholas Bellinger452cf322013-05-11 16:27:56 -070010584T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -070010585S: Supported
10586F: drivers/target/
10587F: include/target/
10588F: Documentation/target/
10589
Alan Cox4e688522008-04-30 00:52:11 -070010590TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -070010591M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -070010592S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010593F: Documentation/accounting/taskstats*
10594F: include/linux/taskstats*
10595F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -070010596
Stephen Hemminger781b456a2006-07-10 20:25:29 -070010597TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +000010598M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-07-10 20:25:29 -070010599L: netdev@vger.kernel.org
10600S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010601F: include/net/pkt_cls.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010602F: include/uapi/linux/pkt_cls.h
Joe Perches679655d2009-04-07 20:44:32 -070010603F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -070010604
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -070010605TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -070010606M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
10607M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -070010608W: http://tcp-lp-mod.sourceforge.net/
10609S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010610F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -070010611
Antti Palosaari91952bc2012-10-01 12:28:46 -030010612TDA10071 MEDIA DRIVER
10613M: Antti Palosaari <crope@iki.fi>
10614L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010615W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -030010616W: http://palosaari.fi/linux/
10617Q: http://patchwork.linuxtv.org/project/linux-media/list/
10618T: git git://linuxtv.org/anttip/media_tree.git
10619S: Maintained
10620F: drivers/media/dvb-frontends/tda10071*
10621
10622TDA18212 MEDIA DRIVER
10623M: Antti Palosaari <crope@iki.fi>
10624L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010625W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -030010626W: http://palosaari.fi/linux/
10627Q: http://patchwork.linuxtv.org/project/linux-media/list/
10628T: git git://linuxtv.org/anttip/media_tree.git
10629S: Maintained
10630F: drivers/media/tuners/tda18212*
10631
10632TDA18218 MEDIA DRIVER
10633M: Antti Palosaari <crope@iki.fi>
10634L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010635W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -030010636W: http://palosaari.fi/linux/
10637Q: http://patchwork.linuxtv.org/project/linux-media/list/
10638T: git git://linuxtv.org/anttip/media_tree.git
10639S: Maintained
10640F: drivers/media/tuners/tda18218*
10641
Michael Krufky3b2f6ab2012-10-02 00:55:32 -030010642TDA18271 MEDIA DRIVER
10643M: Michael Krufky <mkrufky@linuxtv.org>
10644L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010645W: https://linuxtv.org
Michael Krufky3b2f6ab2012-10-02 00:55:32 -030010646W: http://github.com/mkrufky
10647Q: http://patchwork.linuxtv.org/project/linux-media/list/
10648T: git git://linuxtv.org/mkrufky/tuners.git
10649S: Maintained
10650F: drivers/media/tuners/tda18271*
10651
Michael Krufkye48307a2012-10-02 00:56:33 -030010652TDA827x MEDIA DRIVER
10653M: Michael Krufky <mkrufky@linuxtv.org>
10654L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010655W: https://linuxtv.org
Michael Krufkye48307a2012-10-02 00:56:33 -030010656W: http://github.com/mkrufky
10657Q: http://patchwork.linuxtv.org/project/linux-media/list/
10658T: git git://linuxtv.org/mkrufky/tuners.git
10659S: Maintained
10660F: drivers/media/tuners/tda8290.*
10661
Michael Krufky66cf9212012-10-02 00:56:28 -030010662TDA8290 MEDIA DRIVER
10663M: Michael Krufky <mkrufky@linuxtv.org>
10664L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010665W: https://linuxtv.org
Michael Krufky66cf9212012-10-02 00:56:28 -030010666W: http://github.com/mkrufky
10667Q: http://patchwork.linuxtv.org/project/linux-media/list/
10668T: git git://linuxtv.org/mkrufky/tuners.git
10669S: Maintained
10670F: drivers/media/tuners/tda8290.*
10671
Hans Verkuil4b9fba32012-11-23 10:02:05 -030010672TDA9840 MEDIA DRIVER
10673M: Hans Verkuil <hverkuil@xs4all.nl>
10674L: linux-media@vger.kernel.org
10675T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010676W: https://linuxtv.org
Hans Verkuil4b9fba32012-11-23 10:02:05 -030010677S: Maintained
10678F: drivers/media/i2c/tda9840*
10679
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -020010680TEA5761 TUNER DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -020010681M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -020010682L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010683W: https://linuxtv.org
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -020010684T: git git://linuxtv.org/media_tree.git
10685S: Odd fixes
10686F: drivers/media/tuners/tea5761.*
10687
10688TEA5767 TUNER DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -020010689M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -020010690L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010691W: https://linuxtv.org
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -020010692T: git git://linuxtv.org/media_tree.git
10693S: Maintained
10694F: drivers/media/tuners/tea5767.*
10695
Hans Verkuil4b9fba32012-11-23 10:02:05 -030010696TEA6415C MEDIA DRIVER
10697M: Hans Verkuil <hverkuil@xs4all.nl>
10698L: linux-media@vger.kernel.org
10699T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010700W: https://linuxtv.org
Hans Verkuil4b9fba32012-11-23 10:02:05 -030010701S: Maintained
10702F: drivers/media/i2c/tea6415c*
10703
10704TEA6420 MEDIA DRIVER
10705M: Hans Verkuil <hverkuil@xs4all.nl>
10706L: linux-media@vger.kernel.org
10707T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010708W: https://linuxtv.org
Hans Verkuil4b9fba32012-11-23 10:02:05 -030010709S: Maintained
10710F: drivers/media/i2c/tea6420*
10711
Jiri Pirko3d249d42011-11-11 22:16:48 +000010712TEAM DRIVER
Jiri Pirkodca9ab92013-02-15 23:55:05 +000010713M: Jiri Pirko <jiri@resnulli.us>
Jiri Pirko3d249d42011-11-11 22:16:48 +000010714L: netdev@vger.kernel.org
10715S: Supported
10716F: drivers/net/team/
10717F: include/linux/if_team.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010718F: include/uapi/linux/if_team.h
Jiri Pirko3d249d42011-11-11 22:16:48 +000010719
Vivien Didelot7d029122013-01-04 16:18:14 -050010720TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
Joe Perches9c3646d2015-06-25 15:02:00 -070010721M: "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
Vivien Didelot7d029122013-01-04 16:18:14 -050010722S: Maintained
10723F: arch/x86/platform/ts5500/
10724
Sean Young40ad4a32012-11-19 10:32:53 -030010725TECHNOTREND USB IR RECEIVER
10726M: Sean Young <sean@mess.org>
10727L: linux-media@vger.kernel.org
10728S: Maintained
10729F: drivers/media/rc/ttusbir.c
10730
Stephen Warrenadabdb02013-09-13 13:00:57 -060010731TEGRA ARCHITECTURE SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -070010732M: Stephen Warren <swarren@wwwdotorg.org>
Stephen Warrenadabdb02013-09-13 13:00:57 -060010733M: Thierry Reding <thierry.reding@gmail.com>
Stephen Warren554077c2014-10-03 09:50:32 -060010734M: Alexandre Courbot <gnurou@gmail.com>
Erik Gilling84b94142010-06-09 15:35:53 -070010735L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -070010736Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
Andreas Färberb779b882014-07-28 12:06:26 -060010737T: git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
Erik Gilling84b94142010-06-09 15:35:53 -070010738S: Supported
Stephen Warrenbbbe96e2013-04-29 16:17:23 -070010739N: [^a-z]tegra
Erik Gilling84b94142010-06-09 15:35:53 -070010740
Stephen Warrenadabdb02013-09-13 13:00:57 -060010741TEGRA CLOCK DRIVER
10742M: Peter De Schrijver <pdeschrijver@nvidia.com>
10743M: Prashant Gaikwad <pgaikwad@nvidia.com>
10744S: Supported
10745F: drivers/clk/tegra/
10746
10747TEGRA DMA DRIVER
10748M: Laxman Dewangan <ldewangan@nvidia.com>
10749S: Supported
10750F: drivers/dma/tegra20-apb-dma.c
10751
Stephen Warrenadabdb02013-09-13 13:00:57 -060010752TEGRA I2C DRIVER
10753M: Laxman Dewangan <ldewangan@nvidia.com>
10754S: Supported
10755F: drivers/i2c/busses/i2c-tegra.c
10756
10757TEGRA IOMMU DRIVERS
10758M: Hiroshi Doyu <hdoyu@nvidia.com>
10759S: Supported
10760F: drivers/iommu/tegra*
10761
10762TEGRA KBC DRIVER
10763M: Rakesh Iyer <riyer@nvidia.com>
10764M: Laxman Dewangan <ldewangan@nvidia.com>
10765S: Supported
10766F: drivers/input/keyboard/tegra-kbc.c
10767
Stephen Warrenadabdb02013-09-13 13:00:57 -060010768TEGRA PWM DRIVER
10769M: Thierry Reding <thierry.reding@gmail.com>
10770S: Supported
10771F: drivers/pwm/pwm-tegra.c
10772
10773TEGRA SERIAL DRIVER
10774M: Laxman Dewangan <ldewangan@nvidia.com>
10775S: Supported
10776F: drivers/tty/serial/serial-tegra.c
10777
10778TEGRA SPI DRIVER
10779M: Laxman Dewangan <ldewangan@nvidia.com>
10780S: Supported
10781F: drivers/spi/spi-tegra*
10782
Andy Gospodarek1a348cc2007-09-17 18:50:36 -070010783TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010784M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -070010785L: netdev@vger.kernel.org
10786S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -070010787F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -070010788
Alan Cox4e688522008-04-30 00:52:11 -070010789Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -070010790M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -070010791S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010792F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -070010793
Randy Dunlap4480f15b2008-10-12 16:11:58 -070010794TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -070010795M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -070010796M: Max Filippov <jcmvbkbc@gmail.com>
10797L: linux-xtensa@linux-xtensa.org
Fengguang Wu9f273c22016-01-20 15:03:25 -080010798T: git git://github.com/czankel/xtensa-linux.git
Alan Cox4e688522008-04-30 00:52:11 -070010799S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010800F: arch/xtensa/
Max Filippov3dc99852014-04-03 14:48:48 -070010801F: drivers/irqchip/irq-xtensa-*
Alan Cox4e688522008-04-30 00:52:11 -070010802
Hans Verkuil5313ba62013-12-13 09:00:38 -030010803THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
10804M: Hans Verkuil <hverkuil@xs4all.nl>
10805L: linux-media@vger.kernel.org
10806T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010807W: https://linuxtv.org
Hans Verkuil5313ba62013-12-13 09:00:38 -030010808S: Maintained
10809F: drivers/media/radio/radio-raremono.c
10810
Zhang Ruid3fb6952012-11-15 08:58:27 +080010811THERMAL
Joe Perchesb75f0052014-03-03 15:38:37 -080010812M: Zhang Rui <rui.zhang@intel.com>
Lee Jonesf14d1c22014-05-30 11:03:28 +010010813M: Eduardo Valentin <edubezval@gmail.com>
Joe Perchesb75f0052014-03-03 15:38:37 -080010814L: linux-pm@vger.kernel.org
10815T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
10816T: git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
10817Q: https://patchwork.kernel.org/project/linux-pm/list/
10818S: Supported
10819F: drivers/thermal/
10820F: include/linux/thermal.h
Florian Fainelliaf6c9f12014-11-19 18:11:00 -080010821F: include/uapi/linux/thermal.h
Joe Perchesb75f0052014-03-03 15:38:37 -080010822F: include/linux/cpu_cooling.h
10823F: Documentation/devicetree/bindings/thermal/
Zhang Ruid3fb6952012-11-15 08:58:27 +080010824
Viresh Kumar64e05d82015-08-27 07:32:11 +053010825THERMAL/CPU_COOLING
10826M: Amit Daniel Kachhap <amit.kachhap@gmail.com>
10827M: Viresh Kumar <viresh.kumar@linaro.org>
10828M: Javi Merino <javi.merino@arm.com>
10829L: linux-pm@vger.kernel.org
10830S: Supported
10831F: Documentation/thermal/cpu-cooling-api.txt
10832F: drivers/thermal/cpu_cooling.c
10833F: include/linux/cpu_cooling.h
10834
Vivien Didelot30ba2fb2013-01-22 12:01:21 -050010835THINGM BLINK(1) USB RGB LED DRIVER
10836M: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
10837S: Maintained
10838F: drivers/hid/hid-thingm.c
10839
Alan Cox4e688522008-04-30 00:52:11 -070010840THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010841M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -070010842L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd09448532010-02-11 10:40:13 -050010843L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -070010844W: http://ibm-acpi.sourceforge.net
10845W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -070010846T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -070010847S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010848F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -070010849
Eduardo Valentin1b46f2a2013-03-15 09:00:34 -040010850TI BANDGAP AND THERMAL DRIVER
Lee Jonesf14d1c22014-05-30 11:03:28 +010010851M: Eduardo Valentin <edubezval@gmail.com>
Eduardo Valentin1b46f2a2013-03-15 09:00:34 -040010852L: linux-pm@vger.kernel.org
Nishanth Menon531ff132015-01-03 13:13:30 -060010853L: linux-omap@vger.kernel.org
Eduardo Valentin5a723e82015-01-05 17:48:13 -040010854S: Maintained
Eduardo Valentin794b2e22013-05-15 15:46:01 +000010855F: drivers/thermal/ti-soc-thermal/
Eduardo Valentin1b46f2a2013-03-15 09:00:34 -040010856
Max Filippov0c7665c2015-01-12 10:20:46 +030010857TI CDCE706 CLOCK DRIVER
10858M: Max Filippov <jcmvbkbc@gmail.com>
10859S: Maintained
10860F: drivers/clk/clk-cdce706.c
10861
Tero Kristo49b6a5e2014-07-02 17:03:50 +030010862TI CLOCK DRIVER
10863M: Tero Kristo <t-kristo@ti.com>
10864L: linux-omap@vger.kernel.org
10865S: Maintained
10866F: drivers/clk/ti/
10867F: include/linux/clk/ti.h
10868
Alex Dubov4020f2d2006-10-04 02:15:37 -070010869TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010870M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020010871S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010872F: drivers/misc/tifm*
10873F: drivers/mmc/host/tifm_sd.c
10874F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -070010875
Santosh Shilimkare0c52402014-07-10 11:30:08 -040010876TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
Santosh Shilimkar97215802014-10-13 14:16:28 -040010877M: Santosh Shilimkar <ssantosh@kernel.org>
Santosh Shilimkare0c52402014-07-10 11:30:08 -040010878L: linux-kernel@vger.kernel.org
10879L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10880S: Maintained
10881F: drivers/soc/ti/*
10882T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
10883
10884
M R Swami Reddy152ad442012-04-02 20:02:31 +053010885TI LM49xxx FAMILY ASoC CODEC DRIVERS
10886M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +053010887M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +053010888L: alsa-devel@alsa-project.org (moderated for non-subscribers)
10889S: Maintained
10890F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +053010891F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +053010892
Kim, Milo0edd8072012-12-17 16:01:17 -080010893TI LP855x BACKLIGHT DRIVER
10894M: Milo Kim <milo.kim@ti.com>
10895S: Maintained
10896F: Documentation/backlight/lp855x-driver.txt
10897F: drivers/video/backlight/lp855x_bl.c
10898F: include/linux/platform_data/lp855x.h
10899
Kim, Milofaf13f62012-12-10 05:27:03 +000010900TI LP8727 CHARGER DRIVER
10901M: Milo Kim <milo.kim@ti.com>
10902S: Maintained
10903F: drivers/power/lp8727_charger.c
10904F: include/linux/platform_data/lp8727.h
10905
Kim, Milo22f12292012-12-10 05:27:55 +000010906TI LP8788 MFD DRIVER
10907M: Milo Kim <milo.kim@ti.com>
10908S: Maintained
10909F: drivers/iio/adc/lp8788_adc.c
10910F: drivers/leds/leds-lp8788.c
10911F: drivers/mfd/lp8788*.c
10912F: drivers/power/lp8788-charger.c
10913F: drivers/regulator/lp8788-*.c
10914F: include/linux/mfd/lp8788*.h
10915
Karicheri, Muralidharan84640e22015-01-15 19:12:50 -050010916TI NETCP ETHERNET DRIVER
10917M: Wingman Kwok <w-kwok2@ti.com>
10918M: Murali Karicheri <m-karicheri2@ti.com>
10919L: netdev@vger.kernel.org
10920S: Maintained
10921F: drivers/net/ethernet/ti/netcp*
10922
Kevin Cernekee217e0ca2015-05-03 17:00:19 -070010923TI TAS571X FAMILY ASoC CODEC DRIVER
10924M: Kevin Cernekee <cernekee@chromium.org>
10925L: alsa-devel@alsa-project.org (moderated for non-subscribers)
10926S: Odd Fixes
10927F: sound/soc/codecs/tas571x*
10928
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +030010929TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +030010930M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +030010931L: alsa-devel@alsa-project.org (moderated for non-subscribers)
10932S: Maintained
10933F: sound/soc/codecs/twl4030*
10934
Luciano Coelho90921012011-11-20 21:40:41 +020010935TI WILINK WIRELESS DRIVERS
Luciano Coelho90921012011-11-20 21:40:41 +020010936L: linux-wireless@vger.kernel.org
10937W: http://wireless.kernel.org/en/users/Drivers/wl12xx
10938W: http://wireless.kernel.org/en/users/Drivers/wl1251
10939T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
Luciano Coelho22d072f2013-12-09 22:28:32 +020010940S: Orphan
Luciano Coelho90921012011-11-20 21:40:41 +020010941F: drivers/net/wireless/ti/
10942F: include/linux/wl12xx.h
10943
Per Lidene86eaa32006-01-12 16:45:18 +010010944TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -070010945M: Jon Maloy <jon.maloy@ericsson.com>
Jon Paul Maloy115403d2015-03-09 14:44:13 -040010946M: Ying Xue <ying.xue@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -050010947L: netdev@vger.kernel.org (core kernel code)
10948L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +010010949W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +010010950S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010951F: include/uapi/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -070010952F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +010010953
Chris Metcalf867e3592010-05-28 23:09:12 -040010954TILE ARCHITECTURE
Chris Metcalfc47b15c2014-11-13 09:41:58 -050010955M: Chris Metcalf <cmetcalf@ezchip.com>
Chris Metcalf740e1432015-02-13 13:16:49 -050010956W: http://www.ezchip.com/scm/
Fengguang Wu7fa129c2015-12-18 10:15:37 -050010957T: git git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile.git
Chris Metcalf867e3592010-05-28 23:09:12 -040010958S: Supported
10959F: arch/tile/
Chris Metcalf6b940602013-08-07 10:45:01 -040010960F: drivers/char/tile-srom.c
Chris Metcalf5c770752011-03-01 13:01:49 -050010961F: drivers/edac/tile_edac.c
Chris Metcalf6b940602013-08-07 10:45:01 -040010962F: drivers/net/ethernet/tile/
10963F: drivers/rtc/rtc-tile.c
10964F: drivers/tty/hvc/hvc_tile.c
Chris Metcalfb5c6c1a2013-08-12 14:11:44 -040010965F: drivers/tty/serial/tilegx.c
Chris Metcalf6b940602013-08-07 10:45:01 -040010966F: drivers/usb/host/*-tilegx.c
10967F: include/linux/usb/tilegx.h
Chris Metcalf867e3592010-05-28 23:09:12 -040010968
Linus Torvalds1da177e2005-04-16 15:20:36 -070010969TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010970M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +080010971L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010972W: http://sourceforge.net/projects/tlan/
10973S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010974F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -070010975F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010976
Kentaro Takedad74db3b2009-02-05 17:18:18 +090010977TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -070010978M: Kentaro Takeda <takedakn@nttdata.co.jp>
10979M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +090010980L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
10981L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +090010982L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
10983L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
10984W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +090010985T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +090010986S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010987F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +090010988
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -030010989TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -030010990M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd09448532010-02-11 10:40:13 -050010991L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -030010992S: Maintained
10993F: drivers/platform/x86/topstar-laptop.c
10994
Linus Torvalds1da177e2005-04-16 15:20:36 -070010995TOSHIBA ACPI EXTRAS DRIVER
Azael Avalos0a63ca12015-03-06 18:14:42 -070010996M: Azael Avalos <coproscefalo@gmail.com>
Matthew Garrettd09448532010-02-11 10:40:13 -050010997L: platform-driver-x86@vger.kernel.org
Azael Avalos0a63ca12015-03-06 18:14:42 -070010998S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010999F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070011000
Azael Avalos0a63ca12015-03-06 18:14:42 -070011001TOSHIBA BLUETOOTH DRIVER
11002M: Azael Avalos <coproscefalo@gmail.com>
11003L: platform-driver-x86@vger.kernel.org
11004S: Maintained
11005F: drivers/platform/x86/toshiba_bluetooth.c
11006
11007TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
11008M: Azael Avalos <coproscefalo@gmail.com>
11009L: platform-driver-x86@vger.kernel.org
11010S: Maintained
11011F: drivers/platform/x86/toshiba_haps.c
11012
Azael Avalos14991fc2015-09-28 20:32:28 -060011013TOSHIBA WMI HOTKEYS DRIVER
11014M: Azael Avalos <coproscefalo@gmail.com>
11015L: platform-driver-x86@vger.kernel.org
11016S: Maintained
11017F: drivers/platform/x86/toshiba-wmi.c
11018
Linus Torvalds1da177e2005-04-16 15:20:36 -070011019TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011020M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011021W: http://www.buzzard.org.uk/toshiba/
11022S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011023F: drivers/char/toshiba.c
11024F: include/linux/toshiba.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011025F: include/uapi/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011026
Mats Randgaardd32d9862015-07-09 05:45:47 -030011027TOSHIBA TC358743 DRIVER
11028M: Mats Randgaard <matrandg@cisco.com>
11029L: linux-media@vger.kernel.org
11030S: Maintained
11031F: drivers/media/i2c/tc358743*
Mauro Carvalho Chehabb5dcee22015-11-10 12:01:44 -020011032F: include/media/i2c/tc358743.h
Mats Randgaardd32d9862015-07-09 05:45:47 -030011033
Pierre Ossmand719f902009-03-24 21:06:09 +010011034TMIO MMC DRIVER
Ben Hutchingsc4b13fb2015-04-27 00:01:53 +010011035M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +020011036L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +010011037S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +020011038F: drivers/mmc/host/tmio_mmc*
11039F: drivers/mmc/host/sh_mobile_sdhi.c
11040F: include/linux/mmc/tmio.h
11041F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +010011042
Guenter Roeck917cc4e2013-05-19 20:44:27 -070011043TMP401 HARDWARE MONITOR DRIVER
11044M: Guenter Roeck <linux@roeck-us.net>
11045L: lm-sensors@lm-sensors.org
11046S: Maintained
11047F: Documentation/hwmon/tmp401
11048F: drivers/hwmon/tmp401.c
11049
Hugh Dickins98f32602009-05-21 20:33:58 +010011050TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -070011051M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +010011052L: linux-mm@kvack.org
11053S: Maintained
11054F: include/linux/shmem_fs.h
11055F: mm/shmem.c
11056
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -020011057TM6000 VIDEO4LINUX DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -020011058M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -020011059L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020011060W: https://linuxtv.org
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -020011061T: git git://linuxtv.org/media_tree.git
11062S: Odd fixes
11063F: drivers/media/usb/tm6000/
11064
Hans Verkuilc65fde12014-08-10 05:16:39 -030011065TW68 VIDEO4LINUX DRIVER
11066M: Hans Verkuil <hverkuil@xs4all.nl>
11067L: linux-media@vger.kernel.org
11068T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020011069W: https://linuxtv.org
Hans Verkuilc65fde12014-08-10 05:16:39 -030011070S: Odd Fixes
11071F: drivers/media/pci/tw68/
11072
Alan Cox4e688522008-04-30 00:52:11 -070011073TPM DEVICE DRIVER
Peter Huewe901486b2013-10-22 19:28:30 +020011074M: Peter Huewe <peterhuewe@gmx.de>
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -030011075M: Marcel Selhorst <tpmdd@selhorst.net>
Jarkko Sakkinen89adb832015-10-16 12:14:28 +030011076M: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
Peter Huewece93b4b2015-03-15 01:05:31 +010011077R: Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
Peter Huewe383dec12013-10-30 20:54:45 +010011078W: http://tpmdd.sourceforge.net
Rajiv Andrade63a10df2008-10-15 22:04:36 -070011079L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Peter Huewef78c81b2015-01-17 15:17:51 +010011080Q: git git://github.com/PeterHuewe/linux-tpmdd.git
Fengguang Wu9f273c22016-01-20 15:03:25 -080011081T: git https://github.com/PeterHuewe/linux-tpmdd
Alan Cox4e688522008-04-30 00:52:11 -070011082S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011083F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -070011084
Ashley Lai1a0f1b22014-12-04 21:01:51 -060011085TPM IBM_VTPM DEVICE DRIVER
11086M: Ashley Lai <ashleydlai@gmail.com>
11087W: http://tpmdd.sourceforge.net
11088L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
11089S: Maintained
11090F: drivers/char/tpm/tpm_ibmvtpm*
11091
Joe Perchesd6f005a2009-10-26 16:49:40 -070011092TRACING
11093M: Steven Rostedt <rostedt@goodmis.org>
Joe Perchesd6f005a2009-10-26 16:49:40 -070011094M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +010011095T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -070011096S: Maintained
11097F: Documentation/trace/ftrace.txt
11098F: arch/*/*/*/ftrace.h
11099F: arch/*/kernel/ftrace.c
11100F: include/*/ftrace.h
11101F: include/linux/trace*.h
11102F: include/trace/
11103F: kernel/trace/
Masami Hiramatsu6e68e6c2014-09-22 23:42:50 +000011104F: tools/testing/selftests/ftrace/
Joe Perchesd6f005a2009-10-26 16:49:40 -070011105
Linus Torvalds1da177e2005-04-16 15:20:36 -070011106TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -070011107M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -070011108T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070011109S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +020011110K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -070011111
Alan Cox4e688522008-04-30 00:52:11 -070011112TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -080011113M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jiri Slabyd8130622015-07-17 16:23:20 -070011114M: Jiri Slaby <jslaby@suse.com>
Greg KH879a5a02012-01-31 20:02:00 -080011115S: Supported
Joe Perches08deed12012-03-23 15:01:57 -070011116T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Baruch Siach84e1eb82015-06-04 10:56:58 +030011117F: Documentation/serial/
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -020011118F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -080011119F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +010011120F: include/linux/serial_core.h
11121F: include/linux/serial.h
11122F: include/linux/tty.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011123F: include/uapi/linux/serial_core.h
11124F: include/uapi/linux/serial.h
11125F: include/uapi/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -070011126
Antti Palosaari91952bc2012-10-01 12:28:46 -030011127TUA9001 MEDIA DRIVER
11128M: Antti Palosaari <crope@iki.fi>
11129L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020011130W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -030011131W: http://palosaari.fi/linux/
11132Q: http://patchwork.linuxtv.org/project/linux-media/list/
11133T: git git://linuxtv.org/anttip/media_tree.git
11134S: Maintained
11135F: drivers/media/tuners/tua9001*
11136
Grant Grundler740db6d2008-02-17 11:53:49 -070011137TULIP NETWORK DRIVERS
Grant Grundler740db6d2008-02-17 11:53:49 -070011138L: netdev@vger.kernel.org
Grant Grundlercf869eb2015-11-19 17:56:12 -080011139L: linux-parisc@vger.kernel.org
11140S: Orphan
Joe Perches0f04e2a2012-01-10 15:08:56 -080011141F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011142
11143TUN/TAP driver
Jiri Slabyba57b6f2012-11-30 07:05:40 +000011144M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011145W: http://vtun.sourceforge.net/tun
11146S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011147F: Documentation/networking/tuntap.txt
11148F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011149
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -080011150TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070011151M: "Maciej W. Rozycki" <macro@linux-mips.org>
Ralf Baechlec4063392014-04-03 13:29:06 +020011152M: Ralf Baechle <ralf@linux-mips.org>
11153L: linux-mips@linux-mips.org
11154Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -080011155S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011156F: drivers/tc/
11157F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -080011158
Linus Torvalds1da177e2005-04-16 15:20:36 -070011159U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011160M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011161L: linux-scsi@vger.kernel.org
11162S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011163F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070011164
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011165UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +030011166M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +030011167M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011168L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +030011169T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011170W: http://www.linux-mtd.infradead.org/doc/ubifs.html
11171S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011172F: Documentation/filesystems/ubifs.txt
11173F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011174
Greg Ungerere1632fa2015-06-19 10:40:03 +100011175UCLINUX (M68KNOMMU AND COLDFIRE)
Joe Perches8b58be82009-07-29 15:04:30 -070011176M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +010011177W: http://www.uclinux.org/
Greg Ungerere1632fa2015-06-19 10:40:03 +100011178L: linux-m68k@lists.linux-m68k.org
Alan Coxcc2020e2008-05-19 14:21:51 +010011179L: uclinux-dev@uclinux.org (subscribers-only)
Greg Ungerere1632fa2015-06-19 10:40:03 +100011180T: git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
Alan Coxcc2020e2008-05-19 14:21:51 +010011181S: Maintained
Greg Ungerere1632fa2015-06-19 10:40:03 +100011182F: arch/m68k/coldfire/
11183F: arch/m68k/68*/
Joe Perches61bc02b2011-04-14 15:22:04 -070011184F: arch/m68k/*/*_no.*
11185F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +010011186
Linus Torvalds1da177e2005-04-16 15:20:36 -070011187UDF FILESYSTEM
Jiri Slabyd8130622015-07-17 16:23:20 -070011188M: Jan Kara <jack@suse.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011189S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011190F: Documentation/filesystems/udf.txt
11191F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011192
Alan Coxcc2020e2008-05-19 14:21:51 +010011193UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070011194M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +010011195S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011196F: Documentation/filesystems/ufs.txt
11197F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +010011198
David Herrmann0a09d3a2012-06-10 15:16:28 +020011199UHID USERSPACE HID IO DRIVER:
11200M: David Herrmann <dh.herrmann@googlemail.com>
11201L: linux-input@vger.kernel.org
11202S: Maintained
11203F: drivers/hid/uhid.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011204F: include/uapi/linux/uhid.h
David Herrmann0a09d3a2012-06-10 15:16:28 +020011205
David Vrabel18332a82008-09-17 16:34:44 +010011206ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +010011207L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +010011208S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +000011209F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -070011210F: include/linux/uwb.h
11211F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +010011212
GuanXuetaob31d8272011-01-16 00:35:49 +080011213UNICORE32 ARCHITECTURE:
11214M: Guan Xuetao <gxt@mprc.pku.edu.cn>
11215W: http://mprc.pku.edu.cn/~guanxuetao/linux
11216S: Maintained
Guan Xuetaoceebf4d2014-05-27 07:53:10 +080011217T: git git://github.com/gxt/linux.git
GuanXuetaob31d8272011-01-16 00:35:49 +080011218F: arch/unicore32/
11219
Tony Finchd8379ab2009-11-27 15:50:30 +000011220UNIFDEF
11221M: Tony Finch <dot@dotat.at>
11222W: http://dotat.at/prog/unifdef
11223S: Maintained
11224F: scripts/unifdef.c
11225
Linus Torvalds1da177e2005-04-16 15:20:36 -070011226UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011227M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011228W: http://www.kernel.dk
11229S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011230F: Documentation/cdrom/
11231F: drivers/cdrom/cdrom.c
11232F: include/linux/cdrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011233F: include/uapi/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011234
Benjamin Romer56df0122014-03-07 13:02:21 -060011235UNISYS S-PAR DRIVERS
Joe Perches49e7d9d2015-04-15 16:17:31 -070011236M: Benjamin Romer <benjamin.romer@unisys.com>
11237M: David Kershner <david.kershner@unisys.com>
11238L: sparmaintainer@unisys.com (Unisys internal)
11239S: Supported
11240F: drivers/staging/unisys/
Benjamin Romer56df0122014-03-07 13:02:21 -060011241
Vinayak Holikatti9941fa62012-04-20 14:11:50 +053011242UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
11243M: Vinayak Holikatti <vinholikatti@gmail.com>
Vinayak Holikatti9941fa62012-04-20 14:11:50 +053011244L: linux-scsi@vger.kernel.org
11245S: Supported
11246F: Documentation/scsi/ufs.txt
11247F: drivers/scsi/ufs/
11248
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011249UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +030011250M: Artem Bityutskiy <dedekind1@gmail.com>
Richard Weinberger346be9b2015-01-28 12:28:24 +010011251M: Richard Weinberger <richard@nod.at>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011252W: http://www.linux-mtd.infradead.org/
11253L: linux-mtd@lists.infradead.org
Artem Bityutskiyb6b44e02014-01-02 16:43:51 +020011254T: git git://git.infradead.org/ubifs-2.6.git
Richard Weinberger346be9b2015-01-28 12:28:24 +010011255S: Supported
Joe Perches80811492009-04-08 20:20:27 -070011256F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -070011257F: include/linux/mtd/ubi.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011258F: include/uapi/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011259
Linus Torvalds1da177e2005-04-16 15:20:36 -070011260USB ACM DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +020011261M: Oliver Neukum <oliver@neukum.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -070011262L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070011263S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011264F: Documentation/usb/acm.txt
11265F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011266
Pontus Fuchsb7d572e2012-10-23 20:33:57 +020011267USB AR5523 WIRELESS DRIVER
11268M: Pontus Fuchs <pontus.fuchs@gmail.com>
11269L: linux-wireless@vger.kernel.org
11270S: Maintained
11271F: drivers/net/wireless/ath/ar5523/
11272
Matthew Wilcox115bb1f2010-10-07 13:05:23 +020011273USB ATTACHED SCSI
Hans de Goedef50a4962013-10-28 10:48:04 +000011274M: Hans de Goede <hdegoede@redhat.com>
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +010011275M: Gerd Hoffmann <kraxel@redhat.com>
Matthew Wilcox115bb1f2010-10-07 13:05:23 +020011276L: linux-usb@vger.kernel.org
11277L: linux-scsi@vger.kernel.org
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +010011278S: Maintained
Matthew Wilcox115bb1f2010-10-07 13:05:23 +020011279F: drivers/usb/storage/uas.c
11280
Linus Torvalds1da177e2005-04-16 15:20:36 -070011281USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +020011282M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011283L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070011284S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011285F: drivers/net/usb/cdc_*.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011286F: include/uapi/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011287
Keith Packard66e3e592015-03-19 20:36:49 -070011288USB CHAOSKEY DRIVER
11289M: Keith Packard <keithp@keithp.com>
11290L: linux-usb@vger.kernel.org
11291S: Maintained
11292F: drivers/usb/misc/chaoskey.c
11293
Peter Korsgaardb02b3712008-04-27 08:59:44 +020011294USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011295M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +020011296L: linux-usb@vger.kernel.org
11297S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011298F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +020011299
Peter Korsgaardd0374f42007-02-16 17:03:54 +010011300USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011301M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +020011302L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +010011303W: http://www.linux-usb.org/usbnet
11304S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011305F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +010011306
Alan Coxcc2020e2008-05-19 14:21:51 +010011307USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011308M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +010011309L: rio500-users@lists.sourceforge.net
11310W: http://rio500.sourceforge.net
11311S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011312F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +010011313
Linus Torvalds1da177e2005-04-16 15:20:36 -070011314USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -040011315M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011316L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -040011317S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011318F: Documentation/usb/ehci.txt
11319F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011320
David Brownell69ae9e32006-11-14 02:03:31 -080011321USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f665a2011-06-08 19:16:28 +030011322M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011323L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -080011324W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f665a2011-06-08 19:16:28 +030011325T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11326S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011327F: drivers/usb/gadget/
11328F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -080011329
Jiri Kosina2dea64b2007-07-11 12:12:11 +020011330USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Jiri Kosinae5f64502015-08-09 09:11:34 +020011331M: Jiri Kosina <jikos@kernel.org>
Jiri Kosina406df152015-11-20 10:16:06 +010011332R: Benjamin Tissoires <benjamin.tissoires@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011333L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -070011334T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070011335S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -070011336F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -070011337F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011338
Olav Kongas959eea22005-11-03 17:38:14 +020011339USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011340M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011341L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +020011342S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011343F: drivers/usb/host/isp116x*
11344F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +020011345
Linus Torvalds1da177e2005-04-16 15:20:36 -070011346USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011347M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011348L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -080011349L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -070011350S: Maintained
11351W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -070011352F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011353
Clemens Ladischaf399172011-01-10 16:32:54 +010011354USB MIDI DRIVER
11355M: Clemens Ladisch <clemens@ladisch.de>
11356L: alsa-devel@alsa-project.org (moderated for non-subscribers)
11357T: git git://git.alsa-project.org/alsa-kernel.git
11358S: Maintained
11359F: sound/usb/midi.*
11360
Joe Perches444ce9d2013-08-01 21:03:32 -070011361USB NETWORKING DRIVERS
11362L: linux-usb@vger.kernel.org
11363S: Odd Fixes
11364F: drivers/net/usb/
11365
Linus Torvalds1da177e2005-04-16 15:20:36 -070011366USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -040011367M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011368L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -040011369S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011370F: Documentation/usb/ohci.txt
11371F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011372
Peter Chen963ffa32015-02-15 12:22:59 +080011373USB OTG FSM (Finite State Machine)
Peter Chen60d77b3d2015-12-25 15:54:32 +080011374M: Peter Chen <Peter.Chen@nxp.com>
Peter Chen83738562015-03-23 19:57:36 +080011375T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
Peter Chen963ffa32015-02-15 12:22:59 +080011376L: linux-usb@vger.kernel.org
11377S: Maintained
11378F: drivers/usb/common/usb-otg-fsm.c
11379
Valentina Manea563da3a2014-08-20 07:31:02 +030011380USB OVER IP DRIVER
11381M: Valentina Manea <valentina.manea.m@gmail.com>
11382M: Shuah Khan <shuah.kh@samsung.com>
11383L: linux-usb@vger.kernel.org
11384S: Maintained
11385F: drivers/usb/usbip/
11386F: tools/usb/usbip/
11387
Linus Torvalds1da177e2005-04-16 15:20:36 -070011388USB PEGASUS DRIVER
Petko Manolova16b9452013-04-29 16:17:25 -070011389M: Petko Manolov <petkan@nucleusys.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011390L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +020011391L: netdev@vger.kernel.org
Petko Manolov052e3122013-11-15 11:51:54 +020011392T: git git://github.com/petkan/pegasus.git
11393W: https://github.com/petkan/pegasus
Linus Torvalds1da177e2005-04-16 15:20:36 -070011394S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011395F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011396
Felipe Balbid3ad5582012-05-21 16:24:49 +030011397USB PHY LAYER
11398M: Felipe Balbi <balbi@ti.com>
11399L: linux-usb@vger.kernel.org
11400T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11401S: Maintained
11402F: drivers/usb/phy/
Felipe Balbid3ad5582012-05-21 16:24:49 +030011403
Pete Zaitcev73e4fb32007-06-21 15:18:35 -070011404USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -070011405M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011406L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -070011407S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070011408F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070011409
Bjørn Mork4521b472015-12-03 19:24:23 +010011410USB QMI WWAN NETWORK DRIVER
11411M: Bjørn Mork <bjorn@mork.no>
11412L: netdev@vger.kernel.org
11413S: Maintained
11414F: Documentation/ABI/testing/sysfs-class-net-qmi
11415F: drivers/net/usb/qmi_wwan.c
11416
Linus Torvalds1da177e2005-04-16 15:20:36 -070011417USB RTL8150 DRIVER
Petko Manolova16b9452013-04-29 16:17:25 -070011418M: Petko Manolov <petkan@nucleusys.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011419L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +020011420L: netdev@vger.kernel.org
Petko Manolov052e3122013-11-15 11:51:54 +020011421T: git git://github.com/petkan/rtl8150.git
11422W: https://github.com/petkan/rtl8150
Linus Torvalds1da177e2005-04-16 15:20:36 -070011423S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011424F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070011425
Greg KHf896b792013-10-30 11:07:31 -070011426USB SERIAL SUBSYSTEM
Johan Hovold66085692014-06-23 12:33:15 +020011427M: Johan Hovold <johan@kernel.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011428L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -070011429S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011430F: Documentation/usb/usb-serial.txt
Greg KHf896b792013-10-30 11:07:31 -070011431F: drivers/usb/serial/
Joe Perches679655d2009-04-07 20:44:32 -070011432F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011433
Steve Glendinningb3f0db12012-08-15 21:53:38 +000011434USB SMSC75XX ETHERNET DRIVER
11435M: Steve Glendinning <steve.glendinning@shawell.net>
11436L: netdev@vger.kernel.org
11437S: Maintained
11438F: drivers/net/usb/smsc75xx.*
11439
Steve Glendinning2f7ca802008-10-02 05:27:57 +000011440USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +010011441M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +000011442L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +010011443S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011444F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +000011445
Linus Torvalds1da177e2005-04-16 15:20:36 -070011446USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -080011447M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011448L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070011449W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -070011450T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070011451S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070011452F: Documentation/usb/
Joe Perches679655d2009-04-07 20:44:32 -070011453F: drivers/usb/
11454F: include/linux/usb.h
11455F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011456
11457USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011458M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011459L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070011460S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011461F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011462
David Brownell69ae9e32006-11-14 02:03:31 -080011463USB "USBNET" DRIVER FRAMEWORK
Jiri Slabyd8130622015-07-17 16:23:20 -070011464M: Oliver Neukum <oneukum@suse.com>
Peter Korsgaard043600a2007-06-27 21:18:18 +020011465L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -080011466W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -070011467S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011468F: drivers/net/usb/usbnet.c
11469F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011470
Laurent Pinchartc0efd232008-06-30 15:04:50 -030011471USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -070011472M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -030011473L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -030011474L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -020011475T: git git://linuxtv.org/media_tree.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -030011476W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -030011477S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -030011478F: drivers/media/usb/uvc/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -020011479F: include/uapi/linux/uvcvideo.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011480
Hans Verkuilb60b9c42012-11-23 07:54:42 -030011481USB VISION DRIVER
11482M: Hans Verkuil <hverkuil@xs4all.nl>
11483L: linux-media@vger.kernel.org
11484T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020011485W: https://linuxtv.org
Hans Verkuilb60b9c42012-11-23 07:54:42 -030011486S: Odd Fixes
11487F: drivers/media/usb/usbvision/
11488
Laurent Pinchart8282da42012-10-04 02:32:42 +020011489USB WEBCAM GADGET
11490M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11491L: linux-usb@vger.kernel.org
11492S: Maintained
Andrzej Pietrasiewicz3a83c162014-09-09 02:02:09 +030011493F: drivers/usb/gadget/function/*uvc*
Joe Perchesfaf2e1d2014-08-08 14:26:18 -070011494F: drivers/usb/gadget/legacy/webcam.c
Laurent Pinchart8282da42012-10-04 02:32:42 +020011495
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +020011496USB WIRELESS RNDIS DRIVER (rndis_wlan)
Jussi Kivilinnae6146c52013-03-07 22:33:38 +020011497M: Jussi Kivilinna <jussi.kivilinna@iki.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +020011498L: linux-wireless@vger.kernel.org
11499S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011500F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +020011501
Sarah Sharpeb6bab12009-04-29 19:07:13 -070011502USB XHCI DRIVER
Sarah Sharp03d85052014-03-20 16:20:56 -070011503M: Mathias Nyman <mathias.nyman@intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -070011504L: linux-usb@vger.kernel.org
11505S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -080011506F: drivers/usb/host/xhci*
11507F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -070011508
Linus Torvalds1da177e2005-04-16 15:20:36 -070011509USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -040011510L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070011511W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -040011512S: Orphan
Kalle Valoed0ad062015-11-18 07:39:37 +020011513F: drivers/net/wireless/zydas/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011514
Antoine Jacquetb7eee612007-04-27 12:30:59 -030011515USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011516M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011517L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -030011518L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -020011519T: git git://linuxtv.org/media_tree.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -030011520W: http://royale.zerezo.com/zr364xx/
11521S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011522F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -030011523F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -030011524
Heikki Krogerus289fcff2015-05-13 15:26:42 +030011525ULPI BUS
11526M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
11527L: linux-usb@vger.kernel.org
11528S: Maintained
11529F: drivers/usb/common/ulpi.c
11530F: include/linux/ulpi/
11531
Randy Dunlape7839f22008-10-12 16:11:45 -070011532USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -070011533M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +010011534M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011535L: user-mode-linux-devel@lists.sourceforge.net
11536L: user-mode-linux-user@lists.sourceforge.net
11537W: http://user-mode-linux.sourceforge.net
Fengguang Wu9f273c22016-01-20 15:03:25 -080011538T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070011539S: Maintained
Rob Landley61516582011-05-06 09:27:36 -070011540F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -070011541F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +020011542F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -070011543F: fs/hostfs/
11544F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -030011545
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +010011546USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -070011547M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -080011548M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +010011549S: Maintained
Mandeep Sandhu3d3fecb2015-01-10 19:15:45 -080011550T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Joe Perches679655d2009-04-07 20:44:32 -070011551F: Documentation/DocBook/uio-howto.tmpl
11552F: drivers/uio/
11553F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +010011554
Karel Zak256cccb2012-06-01 10:13:09 +020011555UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -070011556M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +020011557L: util-linux@vger.kernel.org
11558W: http://en.wikipedia.org/wiki/Util-linux
11559T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -070011560S: Maintained
11561
Michal Januszewskic1fd1c02008-10-15 22:03:48 -070011562UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011563M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +010011564L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -070011565W: http://dev.gentoo.org/~spock/projects/uvesafb/
11566S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011567F: Documentation/fb/uvesafb.txt
Jingoo Han8a61f012014-07-01 15:36:01 +090011568F: drivers/video/fbdev/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -070011569
Stefan Agner456930d2015-09-02 18:06:33 -070011570VF610 NAND DRIVER
11571M: Stefan Agner <stefan@agner.ch>
11572L: linux-mtd@lists.infradead.org
11573S: Supported
11574F: drivers/mtd/nand/vf610_nfc.c
11575
Randy Dunlap4480f15b2008-10-12 16:11:58 -070011576VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070011577M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011578S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011579F: Documentation/filesystems/vfat.txt
11580F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011581
Alex Williamsoncba33452012-07-31 08:16:22 -060011582VFIO DRIVER
11583M: Alex Williamson <alex.williamson@redhat.com>
11584L: kvm@vger.kernel.org
Fengguang Wu9f273c22016-01-20 15:03:25 -080011585T: git git://github.com/awilliam/linux-vfio.git
Alex Williamsoncba33452012-07-31 08:16:22 -060011586S: Maintained
11587F: Documentation/vfio.txt
11588F: drivers/vfio/
11589F: include/linux/vfio.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011590F: include/uapi/linux/vfio.h
Alex Williamsoncba33452012-07-31 08:16:22 -060011591
Alex Williamsona714ea52015-06-18 11:59:22 -060011592VFIO PLATFORM DRIVER
11593M: Baptiste Reynal <b.reynal@virtualopensystems.com>
11594L: kvm@vger.kernel.org
11595S: Maintained
11596F: drivers/vfio/platform/
11597
Pawel Osciak9e6f3432011-06-15 15:08:32 -070011598VIDEOBUF2 FRAMEWORK
11599M: Pawel Osciak <pawel@osciak.com>
11600M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -030011601M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -070011602L: linux-media@vger.kernel.org
11603S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -030011604F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -070011605F: include/media/videobuf2-*
11606
Stephen Chandler Paul5523662e2015-10-24 13:10:29 -070011607VIRTUAL SERIO DEVICE DRIVER
11608M: Stephen Chandler Paul <thatslyude@gmail.com>
11609S: Maintained
11610F: drivers/input/serio/userio.c
11611F: include/uapi/linux/userio.h
11612
Amit Shah9a824462010-03-23 18:23:09 +053011613VIRTIO CONSOLE DRIVER
11614M: Amit Shah <amit.shah@redhat.com>
11615L: virtualization@lists.linux-foundation.org
11616S: Maintained
11617F: drivers/char/virtio_console.c
11618F: include/linux/virtio_console.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011619F: include/uapi/linux/virtio_console.h
Amit Shah9a824462010-03-23 18:23:09 +053011620
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +103011621VIRTIO CORE, NET AND BLOCK DRIVERS
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +103011622M: "Michael S. Tsirkin" <mst@redhat.com>
11623L: virtualization@lists.linux-foundation.org
11624S: Maintained
11625F: drivers/virtio/
Michael S. Tsirkinc893c8d2013-07-08 11:31:13 +093011626F: tools/virtio/
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +103011627F: drivers/net/virtio_net.c
11628F: drivers/block/virtio_blk.c
11629F: include/linux/virtio_*.h
Amos Kong916cdab2013-04-02 16:42:02 +103011630F: include/uapi/linux/virtio_*.h
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +103011631
Cornelia Huckf2dbda32015-07-01 17:15:37 +020011632VIRTIO DRIVERS FOR S390
11633M: Christian Borntraeger <borntraeger@de.ibm.com>
11634M: Cornelia Huck <cornelia.huck@de.ibm.com>
11635L: linux-s390@vger.kernel.org
11636L: virtualization@lists.linux-foundation.org
11637L: kvm@vger.kernel.org
11638S: Supported
Cornelia Huck1b568d92015-07-07 11:41:01 +020011639F: drivers/s390/virtio/
Cornelia Huckf2dbda32015-07-01 17:15:37 +020011640
Gerd Hoffmann4ad6ee92015-06-02 10:49:03 +020011641VIRTIO GPU DRIVER
11642M: David Airlie <airlied@linux.ie>
11643M: Gerd Hoffmann <kraxel@redhat.com>
11644L: dri-devel@lists.freedesktop.org
11645L: virtualization@lists.linux-foundation.org
11646S: Maintained
11647F: drivers/gpu/drm/virtio/
11648F: include/uapi/linux/virtio_gpu.h
11649
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000011650VIRTIO HOST (VHOST)
11651M: "Michael S. Tsirkin" <mst@redhat.com>
11652L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +000011653L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000011654L: netdev@vger.kernel.org
Fengguang Wu9f273c22016-01-20 15:03:25 -080011655T: git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000011656S: Maintained
11657F: drivers/vhost/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011658F: include/uapi/linux/vhost.h
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000011659
Gerd Hoffmann271c8652015-03-27 12:46:12 +103011660VIRTIO INPUT DRIVER
11661M: Gerd Hoffmann <kraxel@redhat.com>
11662S: Maintained
11663F: drivers/virtio/virtio_input.c
11664F: include/uapi/linux/virtio_input.h
11665
Linus Torvalds1da177e2005-04-16 15:20:36 -070011666VIA RHINE NETWORK DRIVER
Roger Luethi210347e2015-05-26 19:12:54 +020011667S: Orphan
Jeff Kirsherf2148a42011-05-20 20:43:09 -070011668F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070011669
Harald Weltef0bf7f62009-06-17 20:22:39 +020011670VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -080011671M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -070011672M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +020011673S: Maintained
11674F: drivers/mmc/host/via-sdmmc.c
11675
Joseph Chan69e4a7c2008-10-15 22:03:31 -070011676VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +000011677M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +010011678L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -070011679S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +000011680F: include/linux/via-core.h
11681F: include/linux/via-gpio.h
11682F: include/linux/via_i2c.h
Jingoo Han8a61f012014-07-01 15:36:01 +090011683F: drivers/video/fbdev/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -070011684
Francois Romieu01f20732007-01-26 00:57:17 -080011685VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011686M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -080011687L: netdev@vger.kernel.org
11688S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -070011689F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011690
Alex Williamsonf73f8172015-09-18 22:29:39 +080011691VIRT LIB
11692M: Alex Williamson <alex.williamson@redhat.com>
11693M: Paolo Bonzini <pbonzini@redhat.com>
11694L: kvm@vger.kernel.org
11695S: Supported
11696F: virt/lib/
11697
Hans Verkuil77911fd2014-12-10 04:22:37 -030011698VIVID VIRTUAL VIDEO DRIVER
Hans Verkuil0b7bc1f2012-11-23 08:21:50 -030011699M: Hans Verkuil <hverkuil@xs4all.nl>
11700L: linux-media@vger.kernel.org
11701T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020011702W: https://linuxtv.org
Hans Verkuil0b7bc1f2012-11-23 08:21:50 -030011703S: Maintained
Hans Verkuil77911fd2014-12-10 04:22:37 -030011704F: drivers/media/platform/vivid/*
Hans Verkuil0b7bc1f2012-11-23 08:21:50 -030011705
Patrick McHardybe7f8272007-10-23 20:26:36 -070011706VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -070011707M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -070011708L: netdev@vger.kernel.org
11709S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011710F: drivers/net/macvlan.c
11711F: include/linux/if_*vlan.h
11712F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -070011713
Florian Fainelli55e331c2009-06-16 15:33:53 -070011714VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -070011715M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -080011716L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -070011717S: Maintained
11718F: drivers/vlynq/vlynq.c
11719F: include/linux/vlynq.h
11720
Martyn Welch390beae2012-05-03 17:52:36 +010011721VME SUBSYSTEM
Martyn Welch74c600e2015-09-17 20:38:47 +010011722M: Martyn Welch <martyn@welchs.me.uk>
Manohar Vanga1bd289d2012-06-14 15:57:01 +020011723M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +010011724M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11725L: devel@driverdev.osuosl.org
11726S: Maintained
11727T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11728F: Documentation/vme_api.txt
11729F: drivers/staging/vme/
11730F: drivers/vme/
11731F: include/linux/vme*
11732
Alok Kataria4488e092013-09-04 14:23:41 +053011733VMWARE HYPERVISOR INTERFACE
11734M: Alok Kataria <akataria@vmware.com>
11735L: virtualization@lists.linux-foundation.org
11736S: Supported
11737F: arch/x86/kernel/cpu/vmware.c
11738
Dmitry Torokhov73b35d02014-06-20 10:14:58 -070011739VMWARE BALLOON DRIVER
11740M: Xavier Deguillard <xdeguillard@vmware.com>
11741M: Philip Moltmann <moltmann@vmware.com>
11742M: "VMware, Inc." <pv-drivers@vmware.com>
11743L: linux-kernel@vger.kernel.org
11744S: Maintained
11745F: drivers/misc/vmw_balloon.c
11746
Thomas Hellstrom8b8be512015-04-14 10:06:38 -070011747VMWARE VMMOUSE SUBDRIVER
11748M: "VMware Graphics" <linux-graphics-maintainer@vmware.com>
11749M: "VMware, Inc." <pv-drivers@vmware.com>
11750L: linux-input@vger.kernel.org
11751S: Maintained
11752F: drivers/input/mouse/vmmouse.c
11753F: drivers/input/mouse/vmmouse.h
11754
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -070011755VMWARE VMXNET3 ETHERNET DRIVER
Shrikrishna Khare04e1b732015-08-24 14:24:11 -070011756M: Shrikrishna Khare <skhare@vmware.com>
Joe Perches65c8bb52009-11-11 14:26:12 -080011757M: "VMware, Inc." <pv-drivers@vmware.com>
11758L: netdev@vger.kernel.org
11759S: Maintained
11760F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -070011761
Alok Kataria851b1642009-10-13 14:51:05 -070011762VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -080011763M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -070011764M: VMware PV-Drivers <pv-drivers@vmware.com>
11765L: linux-scsi@vger.kernel.org
11766S: Maintained
11767F: drivers/scsi/vmw_pvscsi.c
11768F: drivers/scsi/vmw_pvscsi.h
11769
Liam Girdwoode53e86c2008-07-10 15:48:00 +010011770VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Axel Lin88dd75a2013-03-25 16:49:51 +080011771M: Liam Girdwood <lgirdwood@gmail.com>
Mark Brownb02e48f2013-04-12 11:39:57 +010011772M: Mark Brown <broonie@kernel.org>
Mark Brown5cdeb2c2014-08-16 12:31:11 +010011773L: linux-kernel@vger.kernel.org
Liam Girdwood1dd68f02009-02-02 21:43:31 +000011774W: http://www.slimlogic.co.uk/?p=48
Sachin Kamat6febb5a2013-07-04 12:08:50 +053011775T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +010011776S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070011777F: drivers/regulator/
11778F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +010011779
David Ahern081958e2015-08-25 10:26:22 -070011780VRF
11781M: David Ahern <dsa@cumulusnetworks.com>
11782M: Shrijeet Mukherjee <shm@cumulusnetworks.com>
11783L: netdev@vger.kernel.org
11784S: Maintained
11785F: drivers/net/vrf.c
David Ahern562d8972015-09-15 10:50:14 -060011786F: Documentation/networking/vrf.txt
David Ahern081958e2015-08-25 10:26:22 -070011787
Juerg Haefligerab413192006-09-24 20:54:04 +020011788VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011789M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +020011790L: lm-sensors@lm-sensors.org
11791S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011792F: Documentation/hwmon/vt1211
11793F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +020011794
Roger Lucas1de9e372005-11-26 20:20:05 +010011795VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011796M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +010011797L: lm-sensors@lm-sensors.org
11798S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011799F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +010011800
Tony Olech88095e72011-05-14 16:48:13 -040011801VUB300 USB to SDIO/SD/MMC bridge chip
11802M: Tony Olech <tony.olech@elandigitalsystems.com>
11803L: linux-mmc@vger.kernel.org
11804L: linux-usb@vger.kernel.org
11805S: Supported
11806F: drivers/mmc/host/vub300.c
11807
Linus Torvalds1da177e2005-04-16 15:20:36 -070011808W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -070011809M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011810S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011811F: Documentation/w1/
11812F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011813
Charles Spirakis13927072006-07-05 18:05:15 +020011814W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011815M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +020011816L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -040011817S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011818F: Documentation/hwmon/w83791d
11819F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +020011820
Rudolf Marek61db0112006-12-12 18:18:30 +010011821W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011822M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +010011823L: lm-sensors@lm-sensors.org
11824S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011825F: Documentation/hwmon/w83793
11826F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +010011827
Jean Delvaree3760b42010-10-28 20:31:49 +020011828W83795 HARDWARE MONITORING DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -070011829M: Jean Delvare <jdelvare@suse.com>
Jean Delvaree3760b42010-10-28 20:31:49 +020011830L: lm-sensors@lm-sensors.org
11831S: Maintained
11832F: drivers/hwmon/w83795.c
11833
Linus Torvalds1da177e2005-04-16 15:20:36 -070011834W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011835M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011836S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011837F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011838
Hans de Goedeb4e05922014-07-20 13:35:44 -070011839WACOM PROTOCOL 4 SERIAL TABLETS
11840M: Julian Squires <julian@cipht.net>
11841M: Hans de Goede <hdegoede@redhat.com>
11842L: linux-input@vger.kernel.org
11843S: Maintained
11844F: drivers/input/tablet/wacom_serial4.c
11845
Wim Van Sebroeck35277612006-01-15 21:21:14 +010011846WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -070011847M: Wim Van Sebroeck <wim@iguana.be>
Guenter Roeck1f32f832015-12-05 22:18:25 -080011848R: Guenter Roeck <linux@roeck-us.net>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +000011849L: linux-watchdog@vger.kernel.org
11850W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +010011851T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +010011852S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011853F: Documentation/watchdog/
11854F: drivers/watchdog/
11855F: include/linux/watchdog.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011856F: include/uapi/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +010011857
Linus Torvalds1da177e2005-04-16 15:20:36 -070011858WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011859M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011860L: linux-scsi@vger.kernel.org
11861S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011862F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070011863
David Herrmannb22e00f2011-09-06 13:50:40 +020011864WIIMOTE HID DRIVER
11865M: David Herrmann <dh.herrmann@googlemail.com>
11866L: linux-input@vger.kernel.org
11867S: Maintained
11868F: drivers/hid/hid-wiimote*
11869
David Härdemane258b802009-09-21 17:04:53 -070011870WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -070011871M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -070011872S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -070011873F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -070011874
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -080011875WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -070011876M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -080011877M: linux-wimax@intel.com
Joe Perches49e7d9d2015-04-15 16:17:31 -070011878L: wimax@linuxwimax.org (subscribers-only)
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -080011879S: Supported
11880W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -070011881F: Documentation/wimax/README.wimax
Joe Perches315987d2010-08-09 17:20:50 -070011882F: include/linux/wimax/debug.h
11883F: include/net/wimax.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011884F: include/uapi/linux/wimax.h
Joe Perches315987d2010-08-09 17:20:50 -070011885F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -080011886
Dmitry Torokhov5fc146802005-11-20 00:50:06 -050011887WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011888M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -050011889S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011890F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -050011891
Linus Torvalds1da177e2005-04-16 15:20:36 -070011892WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011893M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -070011894L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -030011895W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -070011896S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011897F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011898
Mark Brown055bcbc2010-08-13 14:18:12 +010011899WOLFSON MICROELECTRONICS DRIVERS
Mark Brownfef95162012-04-04 12:06:24 +010011900L: patches@opensource.wolfsonmicro.com
Richard Fitzgeraldf0e03db2015-09-22 15:30:33 +010011901T: git https://github.com/CirrusLogic/linux-drivers.git
11902W: https://github.com/CirrusLogic/linux-drivers/wiki
Mark Brownb75ea162009-07-02 16:43:08 +010011903S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -080011904F: Documentation/hwmon/wm83??
Charles Keepaxf4949932015-10-27 16:01:59 +000011905F: Documentation/devicetree/bindings/extcon/extcon-arizona.txt
11906F: Documentation/devicetree/bindings/regulator/arizona-regulator.txt
11907F: Documentation/devicetree/bindings/mfd/arizona.txt
Mark Brownaf1c5382011-10-14 21:09:43 +010011908F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +010011909F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +010011910F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +010011911F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +010011912F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +010011913F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -050011914F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +090011915F: drivers/input/misc/wm831x-on.c
11916F: drivers/input/touchscreen/wm831x-ts.c
11917F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +010011918F: drivers/mfd/arizona*
11919F: drivers/mfd/wm*.c
Richard Fitzgerald12ebc132015-11-03 15:08:36 +000011920F: drivers/mfd/cs47l24*
Mark Brownb75ea162009-07-02 16:43:08 +010011921F: drivers/power/wm83*.c
11922F: drivers/rtc/rtc-wm83*.c
11923F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +010011924F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +010011925F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +010011926F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +010011927F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +010011928F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -080011929F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +090011930F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +010011931F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +010011932F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +010011933F: sound/soc/codecs/wm*
Richard Fitzgerald12ebc132015-11-03 15:08:36 +000011934F: sound/soc/codecs/cs47l24*
Mark Brownb75ea162009-07-02 16:43:08 +010011935
Tejun Heo3e6cd7a2010-12-10 17:20:23 +010011936WORKQUEUE
11937M: Tejun Heo <tj@kernel.org>
Lai Jiangshanbadb7f52015-07-01 15:38:04 +080011938R: Lai Jiangshan <jiangshanlai@gmail.com>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +010011939T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
11940S: Maintained
11941F: include/linux/workqueue.h
11942F: kernel/workqueue.c
11943F: Documentation/workqueue.txt
11944
Linus Torvalds1da177e2005-04-16 15:20:36 -070011945X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +000011946M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011947L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +000011948S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -070011949F: Documentation/networking/x25*
11950F: include/net/x25*
11951F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011952
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011953X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -070011954M: Thomas Gleixner <tglx@linutronix.de>
11955M: Ingo Molnar <mingo@redhat.com>
11956M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -080011957M: x86@kernel.org
Ingo Molnar981c3a42014-01-21 10:59:20 +010011958L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +010011959T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011960S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011961F: Documentation/x86/
11962F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011963
Matthew Garrettd09448532010-02-11 10:40:13 -050011964X86 PLATFORM DRIVERS
Darren Harte181ba12014-08-27 23:36:06 -070011965M: Darren Hart <dvhart@infradead.org>
Matthew Garrettd09448532010-02-11 10:40:13 -050011966L: platform-driver-x86@vger.kernel.org
Darren Harte181ba12014-08-27 23:36:06 -070011967T: git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
Matthew Garrettd09448532010-02-11 10:40:13 -050011968S: Maintained
Joe Perches14430812013-09-11 14:23:50 -070011969F: drivers/platform/x86/
Darren Hart3a4bcee2015-10-06 23:17:04 +010011970F: drivers/platform/olpc/
Matthew Garrettd09448532010-02-11 10:40:13 -050011971
Ingo Molnarc1f5c542011-06-18 22:51:13 +020011972X86 MCE INFRASTRUCTURE
11973M: Tony Luck <tony.luck@intel.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +010011974M: Borislav Petkov <bp@alien8.de>
Ingo Molnarc1f5c542011-06-18 22:51:13 +020011975L: linux-edac@vger.kernel.org
11976S: Maintained
11977F: arch/x86/kernel/cpu/mcheck/*
11978
Borislav Petkov79ebdc92015-10-20 11:54:49 +020011979X86 MICROCODE UPDATE SUPPORT
11980M: Borislav Petkov <bp@alien8.de>
11981S: Maintained
11982F: arch/x86/kernel/cpu/microcode/*
11983
Andy Lutomirskif0905c52014-12-12 16:25:47 -080011984X86 VDSO
11985M: Andy Lutomirski <luto@amacapital.net>
11986L: linux-kernel@vger.kernel.org
11987T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
11988S: Maintained
Ingo Molnard603c8e2015-06-03 18:05:44 +020011989F: arch/x86/entry/vdso/
Andy Lutomirskif0905c52014-12-12 16:25:47 -080011990
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -020011991XC2028/3028 TUNER DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -020011992M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -020011993L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020011994W: https://linuxtv.org
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -020011995T: git git://linuxtv.org/media_tree.git
11996S: Maintained
11997F: drivers/media/tuners/tuner-xc2028.*
11998
Ian Campbellc4468082011-04-27 15:26:46 -070011999XEN HYPERVISOR INTERFACE
Ian Campbellc4468082011-04-27 15:26:46 -070012000M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Konrad Rzeszutek Wilk3eeef8f2013-08-05 14:01:49 -040012001M: Boris Ostrovsky <boris.ostrovsky@oracle.com>
12002M: David Vrabel <david.vrabel@citrix.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040012003L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
David Vrabelea70ba32014-01-17 11:51:51 +000012004T: git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
Ian Campbellc4468082011-04-27 15:26:46 -070012005S: Supported
12006F: arch/x86/xen/
12007F: drivers/*/xen-*front.c
12008F: drivers/xen/
12009F: arch/x86/include/asm/xen/
12010F: include/xen/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080012011F: include/uapi/xen/
Ian Campbellc4468082011-04-27 15:26:46 -070012012
Stefano Stabellini77bfb472012-09-14 13:35:15 +000012013XEN HYPERVISOR ARM
12014M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040012015L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
Stefano Stabellini77bfb472012-09-14 13:35:15 +000012016S: Supported
12017F: arch/arm/xen/
12018F: arch/arm/include/asm/xen/
12019
Stefano Stabellinib475e832013-06-04 16:13:23 +000012020XEN HYPERVISOR ARM64
12021M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040012022L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
Stefano Stabellinib475e832013-06-04 16:13:23 +000012023S: Supported
12024F: arch/arm64/xen/
12025F: arch/arm64/include/asm/xen/
12026
Ian Campbell9b57e1a2011-04-03 23:12:23 +000012027XEN NETWORK BACKEND DRIVER
12028M: Ian Campbell <ian.campbell@citrix.com>
Wei Liu83860402013-09-26 12:41:53 +010012029M: Wei Liu <wei.liu2@citrix.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040012030L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
Ian Campbell9b57e1a2011-04-03 23:12:23 +000012031L: netdev@vger.kernel.org
12032S: Supported
12033F: drivers/net/xen-netback/*
12034
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -040012035XEN PCI SUBSYSTEM
12036M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040012037L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +020012038S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -040012039F: arch/x86/pci/*xen*
12040F: drivers/pci/*xen*
12041
Konrad Rzeszutek Wilka2c5ae62014-06-27 10:10:45 -040012042XEN BLOCK SUBSYSTEM
12043M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Roger Pau Monnebcadb692015-01-23 17:14:29 +010012044M: Roger Pau Monné <roger.pau@citrix.com>
Konrad Rzeszutek Wilka2c5ae62014-06-27 10:10:45 -040012045L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
12046S: Supported
12047F: drivers/block/xen-blkback/*
12048F: drivers/block/xen*
12049
Juergen Gross15d03602014-08-28 06:44:13 +020012050XEN PVSCSI DRIVERS
12051M: Juergen Gross <jgross@suse.com>
12052L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
12053L: linux-scsi@vger.kernel.org
12054S: Supported
12055F: drivers/scsi/xen-scsifront.c
12056F: drivers/xen/xen-scsiback.c
12057F: include/xen/interface/io/vscsiif.h
12058
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -040012059XEN SWIOTLB SUBSYSTEM
12060M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040012061L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -040012062S: Supported
12063F: arch/x86/xen/*swiotlb*
12064F: drivers/xen/*swiotlb*
12065
Linus Torvalds1da177e2005-04-16 15:20:36 -070012066XFS FILESYSTEM
12067P: Silicon Graphics Inc
Namjae Jeon809625c2013-12-08 23:33:50 +090012068M: Dave Chinner <david@fromorbit.com>
Ben Myers18caa672012-04-12 17:05:05 +000012069M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +100012070L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -070012071W: http://oss.sgi.com/projects/xfs
Fengguang Wu9f273c22016-01-20 15:03:25 -080012072T: git git://git.kernel.org/pub/scm/linux/kernel/git/dgc/linux-xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070012073S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070012074F: Documentation/filesystems/xfs.txt
12075F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -070012076
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +000012077XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +000012078M: Anirudha Sarangi <anirudh@xilinx.com>
12079M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +000012080S: Maintained
12081F: drivers/net/ethernet/xilinx/xilinx_axienet*
12082
Peter Korsgaard238b8722006-12-06 20:35:17 -080012083XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070012084M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -080012085L: linux-serial@vger.kernel.org
12086S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -080012087F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -080012088
Laurent Pinchartdf330512013-05-15 11:36:19 -030012089XILINX VIDEO IP CORES
12090M: Hyun Kwon <hyun.kwon@xilinx.com>
12091M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12092L: linux-media@vger.kernel.org
12093T: git git://linuxtv.org/media_tree.git
12094S: Supported
12095F: Documentation/devicetree/bindings/media/xilinx/
12096F: drivers/media/platform/xilinx/
Laurent Pincharta5562f62013-05-15 11:36:56 -030012097F: include/uapi/linux/xilinx-v4l2-controls.h
Laurent Pinchartdf330512013-05-15 11:36:19 -030012098
Eli Billauer74316942014-09-09 09:38:01 +030012099XILLYBUS DRIVER
12100M: Eli Billauer <eli.billauer@gmail.com>
12101L: linux-kernel@vger.kernel.org
12102S: Supported
12103F: drivers/char/xillybus/
12104
Max Filippovf620e4b2014-03-12 21:55:26 +040012105XTENSA XTFPGA PLATFORM SUPPORT
12106M: Max Filippov <jcmvbkbc@gmail.com>
12107L: linux-xtensa@linux-xtensa.org
12108S: Maintained
12109F: drivers/spi/spi-xtensa-xtfpga.c
Max Filippov57b70682014-12-26 20:19:38 +030012110F: sound/soc/xtensa/xtfpga-i2s.c
Max Filippovf620e4b2014-03-12 21:55:26 +040012111
Linus Torvalds1da177e2005-04-16 15:20:36 -070012112YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -070012113M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012114L: linux-hams@vger.kernel.org
12115S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070012116F: drivers/net/hamradio/yam*
12117F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070012118
Henkaf64a5e2005-10-12 15:02:56 +020012119YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070012120M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +020012121L: usbb2k-api-dev@nongnu.org
12122S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070012123F: Documentation/input/yealink.txt
12124F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +020012125
Linus Torvalds1da177e2005-04-16 15:20:36 -070012126Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -070012127M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012128W: http://yaina.de/jreuter/
12129W: http://www.qsl.net/dl1bke/
12130L: linux-hams@vger.kernel.org
12131S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070012132F: Documentation/networking/z8530drv.txt
12133F: drivers/net/hamradio/*scc.c
12134F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070012135
Seth Jennings0cf31ec2013-07-08 16:00:05 -070012136ZBUD COMPRESSED PAGE ALLOCATOR
Seth Jennings0e3b7e52014-05-06 12:50:02 -070012137M: Seth Jennings <sjennings@variantweb.net>
Seth Jennings0cf31ec2013-07-08 16:00:05 -070012138L: linux-mm@kvack.org
12139S: Maintained
12140F: mm/zbud.c
12141F: include/linux/zbud.h
12142
Daniel Drake7c0c3af2006-07-16 13:55:17 +010012143ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070012144M: Daniel Drake <dsd@gentoo.org>
12145M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +010012146W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -070012147L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +010012148L: zd1211-devs@lists.sourceforge.net (subscribers-only)
12149S: Maintained
Kalle Valo69483002015-11-18 09:27:32 +020012150F: drivers/net/wireless/zydas/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +010012151
Dan Streetman20263022015-06-30 14:59:57 -070012152ZPOOL COMPRESSED PAGE STORAGE API
12153M: Dan Streetman <ddstreet@ieee.org>
12154L: linux-mm@kvack.org
12155S: Maintained
12156F: mm/zpool.c
12157F: include/linux/zpool.h
12158
Linus Torvalds1da177e2005-04-16 15:20:36 -070012159ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -070012160L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -030012161L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070012162W: http://mjpeg.sourceforge.net/driver-zoran/
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020012163T: hg https://linuxtv.org/hg/v4l-dvb
Trent Piephof63145e2009-01-24 20:52:41 -030012164S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -030012165F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -070012166
Minchan Kim6920f2c2014-01-30 15:45:56 -080012167ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
12168M: Minchan Kim <minchan@kernel.org>
12169M: Nitin Gupta <ngupta@vflare.org>
Minchan Kim74f30372015-05-05 16:23:28 -070012170R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
Minchan Kim6920f2c2014-01-30 15:45:56 -080012171L: linux-kernel@vger.kernel.org
12172S: Maintained
12173F: drivers/block/zram/
12174F: Documentation/blockdev/zram.txt
12175
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -070012176ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070012177M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -070012178S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -080012179F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -070012180
Minchan Kimeae70d02014-01-30 15:45:57 -080012181ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
12182M: Minchan Kim <minchan@kernel.org>
12183M: Nitin Gupta <ngupta@vflare.org>
Sergey Senozhatsky41192a22015-10-22 13:32:13 -070012184R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
Minchan Kimeae70d02014-01-30 15:45:57 -080012185L: linux-mm@kvack.org
12186S: Maintained
12187F: mm/zsmalloc.c
12188F: include/linux/zsmalloc.h
Minchan Kimd02be502015-04-15 16:15:46 -070012189F: Documentation/vm/zsmalloc.txt
Minchan Kimeae70d02014-01-30 15:45:57 -080012190
Seth Jennings0cf31ec2013-07-08 16:00:05 -070012191ZSWAP COMPRESSED SWAP CACHING
Seth Jennings0e3b7e52014-05-06 12:50:02 -070012192M: Seth Jennings <sjennings@variantweb.net>
Seth Jennings0cf31ec2013-07-08 16:00:05 -070012193L: linux-mm@kvack.org
12194S: Maintained
12195F: mm/zswap.c
12196
Linus Torvalds1da177e2005-04-16 15:20:36 -070012197THE REST
Joe Perches8b58be82009-07-29 15:04:30 -070012198M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -070012199L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -080012200Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -040012201T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070012202S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -070012203F: *
12204F: */